From 638028ed3db76016373169b9965ca8a610d7f777 Mon Sep 17 00:00:00 2001 From: Luke Policinski Date: Tue, 30 Jun 2026 17:13:40 -0400 Subject: [PATCH 1/5] feature: bot presence --- generated/schema.graphql | 748 + generated/schema.ts | 1091 +- generated/types.ts | 61078 ++++++++-------- .../claim_free_steam_account.sql | 6 +- hasura/metadata/actions.graphql | 64 + hasura/metadata/actions.yaml | 44 + .../public_player_steam_bot_friend.yaml | 22 + .../tables/public_steam_presence_events.yaml | 14 + .../databases/default/tables/tables.yaml | 2 + .../1865000000000_steam_presence/down.sql | 10 + .../1865000000000_steam_presence/up.sql | 39 + .../down.sql | 3 + .../up.sql | 17 + src/app.module.ts | 2 + src/hasura/hasura.service.ts | 6 + .../match-import.service.ts | 36 + .../steam-match-history.module.ts | 2 + src/steam-presence/presence.spec.ts | 174 + src/steam-presence/presence.ts | 102 + .../steam-presence.controller.ts | 116 + src/steam-presence/steam-presence.module.ts | 24 + src/steam-presence/steam-presence.service.ts | 927 + src/types/steam-user.d.ts | 27 + 23 files changed, 34563 insertions(+), 29991 deletions(-) create mode 100644 hasura/metadata/databases/default/tables/public_player_steam_bot_friend.yaml create mode 100644 hasura/metadata/databases/default/tables/public_steam_presence_events.yaml create mode 100644 hasura/migrations/default/1865000000000_steam_presence/down.sql create mode 100644 hasura/migrations/default/1865000000000_steam_presence/up.sql create mode 100644 hasura/migrations/default/1866000000000_steam_presence_events/down.sql create mode 100644 hasura/migrations/default/1866000000000_steam_presence_events/up.sql create mode 100644 src/steam-presence/presence.spec.ts create mode 100644 src/steam-presence/presence.ts create mode 100644 src/steam-presence/steam-presence.controller.ts create mode 100644 src/steam-presence/steam-presence.module.ts create mode 100644 src/steam-presence/steam-presence.service.ts diff --git a/generated/schema.graphql b/generated/schema.graphql index e90c6b76..7bea4ddd 100644 --- a/generated/schema.graphql +++ b/generated/schema.graphql @@ -540,6 +540,47 @@ type SteamMatchHistoryPollOutput { success: Boolean! } +type SteamPresenceAdminStatusOutput { + bots: [SteamPresenceBot!]! + enabled: Boolean! + events: [SteamPresenceEvent!]! + pool: SteamPresencePool! +} + +type SteamPresenceBot { + assigned: Int! + capacity: Int! + guardLastWrong: Boolean! + guardType: String + id: String! + needs2fa: Boolean! + online: Boolean! + steamId: String + username: String! + watching: Int! +} + +type SteamPresenceBotAssignment { + addUrl: String + enabled: Boolean! + status: String + steamId: String +} + +type SteamPresenceEvent { + message: String! + ts: String! + type: String! +} + +type SteamPresencePool { + bots: Int! + capacity: Int! + online: Int! + pending: Int! + watching: Int! +} + type StorageStats { summary: StorageSummary! tables: [TableSizeInfo!]! @@ -24496,8 +24537,14 @@ type mutation_root { """addDraftPlayer""" addDraftPlayer(draftGameId: uuid!, steamId: String!): SuccessOutput + + """Add a friends-role presence bot account to the pool""" + addSteamPresenceBotAccount(bot_secret: String!, friend_capacity: Int, username: String!): SuccessOutput approveNameChange(name: String!, steam_id: bigint!): SuccessOutput + """Assign the presence bot a user should add as a friend""" + assignSteamPresenceBot: SteamPresenceBotAssignment + """ Dev-only — attach the demo player to a standing dev game-streamer pod (no Job boot) """ @@ -25677,6 +25724,19 @@ type mutation_root { """ delete_player_stats_by_pk(player_steam_id: bigint!): player_stats + """ + delete data from the table: "player_steam_bot_friend" + """ + delete_player_steam_bot_friend( + """filter the rows which have to be deleted""" + where: player_steam_bot_friend_bool_exp! + ): player_steam_bot_friend_mutation_response + + """ + delete single row from the table: "player_steam_bot_friend" + """ + delete_player_steam_bot_friend_by_pk(steam_id: bigint!): player_steam_bot_friend + """ delete data from the table: "player_steam_match_auth" """ @@ -27959,6 +28019,28 @@ type mutation_root { on_conflict: player_stats_on_conflict ): player_stats + """ + insert data into the table: "player_steam_bot_friend" + """ + insert_player_steam_bot_friend( + """the rows to be inserted""" + objects: [player_steam_bot_friend_insert_input!]! + + """upsert condition""" + on_conflict: player_steam_bot_friend_on_conflict + ): player_steam_bot_friend_mutation_response + + """ + insert a single row into the table: "player_steam_bot_friend" + """ + insert_player_steam_bot_friend_one( + """the row to be inserted""" + object: player_steam_bot_friend_insert_input! + + """upsert condition""" + on_conflict: player_steam_bot_friend_on_conflict + ): player_steam_bot_friend + """ insert data into the table: "player_steam_match_auth" """ @@ -28755,6 +28837,9 @@ type mutation_root { """Remove dev fixture data (dev only)""" removeFixtures: SuccessOutput + """Remove a friends-role presence bot account""" + removeSteamPresenceBotAccount(account_id: String!): SuccessOutput + """Rename file or directory on game server""" renameServerItem(new_path: String!, node_id: String!, old_path: String!, server_id: String): SuccessOutput @@ -28846,6 +28931,9 @@ type mutation_root { stopGpuSession(game_server_node_id: uuid!): SuccessOutput stopLive(match_id: uuid!): SuccessOutput stopWatchDemo(match_map_id: uuid!): SuccessOutput + + """Submit a Steam Guard code for a presence bot account""" + submitSteamPresenceSteamGuard(account_id: String!, code: String!): SuccessOutput swapLineups(match_id: uuid!): SuccessOutput switchLineup(match_id: String!): SuccessOutput switchLiveMatch(from_match_id: uuid!, mode: String!, to_match_id: uuid!): SuccessOutput @@ -31825,6 +31913,82 @@ type mutation_root { updates: [player_stats_updates!]! ): [player_stats_mutation_response] + """ + update data of the table: "player_steam_bot_friend" + """ + update_player_steam_bot_friend( + """append existing jsonb value of filtered columns with new jsonb value""" + _append: player_steam_bot_friend_append_input + + """ + delete the field or element with specified path (for JSON arrays, negative integers count from the end) + """ + _delete_at_path: player_steam_bot_friend_delete_at_path_input + + """ + delete the array element with specified index (negative integers count from the end). throws an error if top level container is not an array + """ + _delete_elem: player_steam_bot_friend_delete_elem_input + + """ + delete key/value pair or string element. key/value pairs are matched based on their key value + """ + _delete_key: player_steam_bot_friend_delete_key_input + + """increments the numeric columns with given value of the filtered values""" + _inc: player_steam_bot_friend_inc_input + + """prepend existing jsonb value of filtered columns with new jsonb value""" + _prepend: player_steam_bot_friend_prepend_input + + """sets the columns of the filtered rows to the given values""" + _set: player_steam_bot_friend_set_input + + """filter the rows which have to be updated""" + where: player_steam_bot_friend_bool_exp! + ): player_steam_bot_friend_mutation_response + + """ + update single row of the table: "player_steam_bot_friend" + """ + update_player_steam_bot_friend_by_pk( + """append existing jsonb value of filtered columns with new jsonb value""" + _append: player_steam_bot_friend_append_input + + """ + delete the field or element with specified path (for JSON arrays, negative integers count from the end) + """ + _delete_at_path: player_steam_bot_friend_delete_at_path_input + + """ + delete the array element with specified index (negative integers count from the end). throws an error if top level container is not an array + """ + _delete_elem: player_steam_bot_friend_delete_elem_input + + """ + delete key/value pair or string element. key/value pairs are matched based on their key value + """ + _delete_key: player_steam_bot_friend_delete_key_input + + """increments the numeric columns with given value of the filtered values""" + _inc: player_steam_bot_friend_inc_input + + """prepend existing jsonb value of filtered columns with new jsonb value""" + _prepend: player_steam_bot_friend_prepend_input + + """sets the columns of the filtered rows to the given values""" + _set: player_steam_bot_friend_set_input + pk_columns: player_steam_bot_friend_pk_columns_input! + ): player_steam_bot_friend + + """ + update multiples rows of table: "player_steam_bot_friend" + """ + update_player_steam_bot_friend_many( + """updates to execute, in order""" + updates: [player_steam_bot_friend_updates!]! + ): [player_steam_bot_friend_mutation_response] + """ update data of the table: "player_steam_match_auth" """ @@ -32117,6 +32281,9 @@ type mutation_root { update data of the table: "steam_accounts" """ update_steam_accounts( + """increments the numeric columns with given value of the filtered values""" + _inc: steam_accounts_inc_input + """sets the columns of the filtered rows to the given values""" _set: steam_accounts_set_input @@ -32128,6 +32295,9 @@ type mutation_root { update single row of the table: "steam_accounts" """ update_steam_accounts_by_pk( + """increments the numeric columns with given value of the filtered values""" + _inc: steam_accounts_inc_input + """sets the columns of the filtered rows to the given values""" _set: steam_accounts_set_input pk_columns: steam_accounts_pk_columns_input! @@ -48440,6 +48610,368 @@ type player_stats_variance_fields { player_steam_id: Float } +""" +columns and relationships of "player_steam_bot_friend" +""" +type player_steam_bot_friend { + bot_steam_account_id: uuid + bot_steamid64: bigint + created_at: timestamptz! + friended_at: timestamptz + last_presence_state( + """JSON select path""" + path: String + ): jsonb + + """An object relationship""" + player: players! + status: String! + steam_id: bigint! + updated_at: timestamptz! +} + +""" +aggregated selection of "player_steam_bot_friend" +""" +type player_steam_bot_friend_aggregate { + aggregate: player_steam_bot_friend_aggregate_fields + nodes: [player_steam_bot_friend!]! +} + +""" +aggregate fields of "player_steam_bot_friend" +""" +type player_steam_bot_friend_aggregate_fields { + avg: player_steam_bot_friend_avg_fields + count(columns: [player_steam_bot_friend_select_column!], distinct: Boolean): Int! + max: player_steam_bot_friend_max_fields + min: player_steam_bot_friend_min_fields + stddev: player_steam_bot_friend_stddev_fields + stddev_pop: player_steam_bot_friend_stddev_pop_fields + stddev_samp: player_steam_bot_friend_stddev_samp_fields + sum: player_steam_bot_friend_sum_fields + var_pop: player_steam_bot_friend_var_pop_fields + var_samp: player_steam_bot_friend_var_samp_fields + variance: player_steam_bot_friend_variance_fields +} + +"""append existing jsonb value of filtered columns with new jsonb value""" +input player_steam_bot_friend_append_input { + last_presence_state: jsonb +} + +"""aggregate avg on columns""" +type player_steam_bot_friend_avg_fields { + bot_steamid64: Float + steam_id: Float +} + +""" +Boolean expression to filter rows from the table "player_steam_bot_friend". All fields are combined with a logical 'AND'. +""" +input player_steam_bot_friend_bool_exp { + _and: [player_steam_bot_friend_bool_exp!] + _not: player_steam_bot_friend_bool_exp + _or: [player_steam_bot_friend_bool_exp!] + bot_steam_account_id: uuid_comparison_exp + bot_steamid64: bigint_comparison_exp + created_at: timestamptz_comparison_exp + friended_at: timestamptz_comparison_exp + last_presence_state: jsonb_comparison_exp + player: players_bool_exp + status: String_comparison_exp + steam_id: bigint_comparison_exp + updated_at: timestamptz_comparison_exp +} + +""" +unique or primary key constraints on table "player_steam_bot_friend" +""" +enum player_steam_bot_friend_constraint { + """ + unique or primary key constraint on columns "steam_id" + """ + player_steam_bot_friend_pkey +} + +""" +delete the field or element with specified path (for JSON arrays, negative integers count from the end) +""" +input player_steam_bot_friend_delete_at_path_input { + last_presence_state: [String!] +} + +""" +delete the array element with specified index (negative integers count from the end). throws an error if top level container is not an array +""" +input player_steam_bot_friend_delete_elem_input { + last_presence_state: Int +} + +""" +delete key/value pair or string element. key/value pairs are matched based on their key value +""" +input player_steam_bot_friend_delete_key_input { + last_presence_state: String +} + +""" +input type for incrementing numeric columns in table "player_steam_bot_friend" +""" +input player_steam_bot_friend_inc_input { + bot_steamid64: bigint + steam_id: bigint +} + +""" +input type for inserting data into table "player_steam_bot_friend" +""" +input player_steam_bot_friend_insert_input { + bot_steam_account_id: uuid + bot_steamid64: bigint + created_at: timestamptz + friended_at: timestamptz + last_presence_state: jsonb + player: players_obj_rel_insert_input + status: String + steam_id: bigint + updated_at: timestamptz +} + +"""aggregate max on columns""" +type player_steam_bot_friend_max_fields { + bot_steam_account_id: uuid + bot_steamid64: bigint + created_at: timestamptz + friended_at: timestamptz + status: String + steam_id: bigint + updated_at: timestamptz +} + +"""aggregate min on columns""" +type player_steam_bot_friend_min_fields { + bot_steam_account_id: uuid + bot_steamid64: bigint + created_at: timestamptz + friended_at: timestamptz + status: String + steam_id: bigint + updated_at: timestamptz +} + +""" +response of any mutation on the table "player_steam_bot_friend" +""" +type player_steam_bot_friend_mutation_response { + """number of rows affected by the mutation""" + affected_rows: Int! + + """data from the rows affected by the mutation""" + returning: [player_steam_bot_friend!]! +} + +""" +on_conflict condition type for table "player_steam_bot_friend" +""" +input player_steam_bot_friend_on_conflict { + constraint: player_steam_bot_friend_constraint! + update_columns: [player_steam_bot_friend_update_column!]! = [] + where: player_steam_bot_friend_bool_exp +} + +"""Ordering options when selecting data from "player_steam_bot_friend".""" +input player_steam_bot_friend_order_by { + bot_steam_account_id: order_by + bot_steamid64: order_by + created_at: order_by + friended_at: order_by + last_presence_state: order_by + player: players_order_by + status: order_by + steam_id: order_by + updated_at: order_by +} + +"""primary key columns input for table: player_steam_bot_friend""" +input player_steam_bot_friend_pk_columns_input { + steam_id: bigint! +} + +"""prepend existing jsonb value of filtered columns with new jsonb value""" +input player_steam_bot_friend_prepend_input { + last_presence_state: jsonb +} + +""" +select columns of table "player_steam_bot_friend" +""" +enum player_steam_bot_friend_select_column { + """column name""" + bot_steam_account_id + + """column name""" + bot_steamid64 + + """column name""" + created_at + + """column name""" + friended_at + + """column name""" + last_presence_state + + """column name""" + status + + """column name""" + steam_id + + """column name""" + updated_at +} + +""" +input type for updating data in table "player_steam_bot_friend" +""" +input player_steam_bot_friend_set_input { + bot_steam_account_id: uuid + bot_steamid64: bigint + created_at: timestamptz + friended_at: timestamptz + last_presence_state: jsonb + status: String + steam_id: bigint + updated_at: timestamptz +} + +"""aggregate stddev on columns""" +type player_steam_bot_friend_stddev_fields { + bot_steamid64: Float + steam_id: Float +} + +"""aggregate stddev_pop on columns""" +type player_steam_bot_friend_stddev_pop_fields { + bot_steamid64: Float + steam_id: Float +} + +"""aggregate stddev_samp on columns""" +type player_steam_bot_friend_stddev_samp_fields { + bot_steamid64: Float + steam_id: Float +} + +""" +Streaming cursor of the table "player_steam_bot_friend" +""" +input player_steam_bot_friend_stream_cursor_input { + """Stream column input with initial value""" + initial_value: player_steam_bot_friend_stream_cursor_value_input! + + """cursor ordering""" + ordering: cursor_ordering +} + +"""Initial value of the column from where the streaming should start""" +input player_steam_bot_friend_stream_cursor_value_input { + bot_steam_account_id: uuid + bot_steamid64: bigint + created_at: timestamptz + friended_at: timestamptz + last_presence_state: jsonb + status: String + steam_id: bigint + updated_at: timestamptz +} + +"""aggregate sum on columns""" +type player_steam_bot_friend_sum_fields { + bot_steamid64: bigint + steam_id: bigint +} + +""" +update columns of table "player_steam_bot_friend" +""" +enum player_steam_bot_friend_update_column { + """column name""" + bot_steam_account_id + + """column name""" + bot_steamid64 + + """column name""" + created_at + + """column name""" + friended_at + + """column name""" + last_presence_state + + """column name""" + status + + """column name""" + steam_id + + """column name""" + updated_at +} + +input player_steam_bot_friend_updates { + """append existing jsonb value of filtered columns with new jsonb value""" + _append: player_steam_bot_friend_append_input + + """ + delete the field or element with specified path (for JSON arrays, negative integers count from the end) + """ + _delete_at_path: player_steam_bot_friend_delete_at_path_input + + """ + delete the array element with specified index (negative integers count from the end). throws an error if top level container is not an array + """ + _delete_elem: player_steam_bot_friend_delete_elem_input + + """ + delete key/value pair or string element. key/value pairs are matched based on their key value + """ + _delete_key: player_steam_bot_friend_delete_key_input + + """increments the numeric columns with given value of the filtered values""" + _inc: player_steam_bot_friend_inc_input + + """prepend existing jsonb value of filtered columns with new jsonb value""" + _prepend: player_steam_bot_friend_prepend_input + + """sets the columns of the filtered rows to the given values""" + _set: player_steam_bot_friend_set_input + + """filter the rows which have to be updated""" + where: player_steam_bot_friend_bool_exp! +} + +"""aggregate var_pop on columns""" +type player_steam_bot_friend_var_pop_fields { + bot_steamid64: Float + steam_id: Float +} + +"""aggregate var_samp on columns""" +type player_steam_bot_friend_var_samp_fields { + bot_steamid64: Float + steam_id: Float +} + +"""aggregate variance on columns""" +type player_steam_bot_friend_variance_fields { + bot_steamid64: Float + steam_id: Float +} + """ columns and relationships of "player_steam_match_auth" """ @@ -57076,6 +57608,51 @@ type query_root { """fetch data from the table: "player_stats" using primary key columns""" player_stats_by_pk(player_steam_id: bigint!): player_stats + """ + fetch data from the table: "player_steam_bot_friend" + """ + player_steam_bot_friend( + """distinct select on columns""" + distinct_on: [player_steam_bot_friend_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: [player_steam_bot_friend_order_by!] + + """filter the rows returned""" + where: player_steam_bot_friend_bool_exp + ): [player_steam_bot_friend!]! + + """ + fetch aggregated fields from the table: "player_steam_bot_friend" + """ + player_steam_bot_friend_aggregate( + """distinct select on columns""" + distinct_on: [player_steam_bot_friend_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: [player_steam_bot_friend_order_by!] + + """filter the rows returned""" + where: player_steam_bot_friend_bool_exp + ): player_steam_bot_friend_aggregate! + + """ + fetch data from the table: "player_steam_bot_friend" using primary key columns + """ + player_steam_bot_friend_by_pk(steam_id: bigint!): player_steam_bot_friend + """ fetch data from the table: "player_steam_match_auth" """ @@ -57462,6 +58039,9 @@ type query_root { """fetch data from the table: "settings" using primary key columns""" settings_by_pk(name: String!): settings + """Steam presence bot admin dashboard status""" + steamPresenceAdminStatus: SteamPresenceAdminStatusOutput! + """ fetch data from the table: "steam_account_claims" """ @@ -61241,12 +61821,15 @@ type steam_accounts { where: steam_account_claims_bool_exp ): steam_account_claims_aggregate! created_at: timestamptz! + friend_capacity: Int! id: uuid! """An object relationship""" last_node: game_server_nodes last_node_id: String password: String! + role: String! + steamid64: bigint updated_at: timestamptz! username: String! } @@ -61263,9 +61846,23 @@ type steam_accounts_aggregate { aggregate fields of "steam_accounts" """ type steam_accounts_aggregate_fields { + avg: steam_accounts_avg_fields count(columns: [steam_accounts_select_column!], distinct: Boolean): Int! max: steam_accounts_max_fields min: steam_accounts_min_fields + stddev: steam_accounts_stddev_fields + stddev_pop: steam_accounts_stddev_pop_fields + stddev_samp: steam_accounts_stddev_samp_fields + sum: steam_accounts_sum_fields + var_pop: steam_accounts_var_pop_fields + var_samp: steam_accounts_var_samp_fields + variance: steam_accounts_variance_fields +} + +"""aggregate avg on columns""" +type steam_accounts_avg_fields { + friend_capacity: Float + steamid64: Float } """ @@ -61278,10 +61875,13 @@ input steam_accounts_bool_exp { claims: steam_account_claims_bool_exp claims_aggregate: steam_account_claims_aggregate_bool_exp created_at: timestamptz_comparison_exp + friend_capacity: Int_comparison_exp id: uuid_comparison_exp last_node: game_server_nodes_bool_exp last_node_id: String_comparison_exp password: String_comparison_exp + role: String_comparison_exp + steamid64: bigint_comparison_exp updated_at: timestamptz_comparison_exp username: String_comparison_exp } @@ -61301,16 +61901,27 @@ enum steam_accounts_constraint { steam_accounts_username_key } +""" +input type for incrementing numeric columns in table "steam_accounts" +""" +input steam_accounts_inc_input { + friend_capacity: Int + steamid64: bigint +} + """ input type for inserting data into table "steam_accounts" """ input steam_accounts_insert_input { claims: steam_account_claims_arr_rel_insert_input created_at: timestamptz + friend_capacity: Int id: uuid last_node: game_server_nodes_obj_rel_insert_input last_node_id: String password: String + role: String + steamid64: bigint updated_at: timestamptz username: String } @@ -61318,9 +61929,12 @@ input steam_accounts_insert_input { """aggregate max on columns""" type steam_accounts_max_fields { created_at: timestamptz + friend_capacity: Int id: uuid last_node_id: String password: String + role: String + steamid64: bigint updated_at: timestamptz username: String } @@ -61328,9 +61942,12 @@ type steam_accounts_max_fields { """aggregate min on columns""" type steam_accounts_min_fields { created_at: timestamptz + friend_capacity: Int id: uuid last_node_id: String password: String + role: String + steamid64: bigint updated_at: timestamptz username: String } @@ -61369,10 +61986,13 @@ input steam_accounts_on_conflict { input steam_accounts_order_by { claims_aggregate: steam_account_claims_aggregate_order_by created_at: order_by + friend_capacity: order_by id: order_by last_node: game_server_nodes_order_by last_node_id: order_by password: order_by + role: order_by + steamid64: order_by updated_at: order_by username: order_by } @@ -61389,6 +62009,9 @@ enum steam_accounts_select_column { """column name""" created_at + """column name""" + friend_capacity + """column name""" id @@ -61398,6 +62021,12 @@ enum steam_accounts_select_column { """column name""" password + """column name""" + role + + """column name""" + steamid64 + """column name""" updated_at @@ -61410,13 +62039,34 @@ input type for updating data in table "steam_accounts" """ input steam_accounts_set_input { created_at: timestamptz + friend_capacity: Int id: uuid last_node_id: String password: String + role: String + steamid64: bigint updated_at: timestamptz username: String } +"""aggregate stddev on columns""" +type steam_accounts_stddev_fields { + friend_capacity: Float + steamid64: Float +} + +"""aggregate stddev_pop on columns""" +type steam_accounts_stddev_pop_fields { + friend_capacity: Float + steamid64: Float +} + +"""aggregate stddev_samp on columns""" +type steam_accounts_stddev_samp_fields { + friend_capacity: Float + steamid64: Float +} + """ Streaming cursor of the table "steam_accounts" """ @@ -61431,13 +62081,22 @@ input steam_accounts_stream_cursor_input { """Initial value of the column from where the streaming should start""" input steam_accounts_stream_cursor_value_input { created_at: timestamptz + friend_capacity: Int id: uuid last_node_id: String password: String + role: String + steamid64: bigint updated_at: timestamptz username: String } +"""aggregate sum on columns""" +type steam_accounts_sum_fields { + friend_capacity: Int + steamid64: bigint +} + """ update columns of table "steam_accounts" """ @@ -61445,6 +62104,9 @@ enum steam_accounts_update_column { """column name""" created_at + """column name""" + friend_capacity + """column name""" id @@ -61454,6 +62116,12 @@ enum steam_accounts_update_column { """column name""" password + """column name""" + role + + """column name""" + steamid64 + """column name""" updated_at @@ -61462,6 +62130,9 @@ enum steam_accounts_update_column { } input steam_accounts_updates { + """increments the numeric columns with given value of the filtered values""" + _inc: steam_accounts_inc_input + """sets the columns of the filtered rows to the given values""" _set: steam_accounts_set_input @@ -61469,6 +62140,24 @@ input steam_accounts_updates { where: steam_accounts_bool_exp! } +"""aggregate var_pop on columns""" +type steam_accounts_var_pop_fields { + friend_capacity: Float + steamid64: Float +} + +"""aggregate var_samp on columns""" +type steam_accounts_var_samp_fields { + friend_capacity: Float + steamid64: Float +} + +"""aggregate variance on columns""" +type steam_accounts_variance_fields { + friend_capacity: Float + steamid64: Float +} + type subscription_root { """ fetch data from the table: "_map_pool" @@ -66646,6 +67335,65 @@ type subscription_root { where: player_stats_bool_exp ): [player_stats!]! + """ + fetch data from the table: "player_steam_bot_friend" + """ + player_steam_bot_friend( + """distinct select on columns""" + distinct_on: [player_steam_bot_friend_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: [player_steam_bot_friend_order_by!] + + """filter the rows returned""" + where: player_steam_bot_friend_bool_exp + ): [player_steam_bot_friend!]! + + """ + fetch aggregated fields from the table: "player_steam_bot_friend" + """ + player_steam_bot_friend_aggregate( + """distinct select on columns""" + distinct_on: [player_steam_bot_friend_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: [player_steam_bot_friend_order_by!] + + """filter the rows returned""" + where: player_steam_bot_friend_bool_exp + ): player_steam_bot_friend_aggregate! + + """ + fetch data from the table: "player_steam_bot_friend" using primary key columns + """ + player_steam_bot_friend_by_pk(steam_id: bigint!): player_steam_bot_friend + + """ + fetch data from the table in a streaming manner: "player_steam_bot_friend" + """ + player_steam_bot_friend_stream( + """maximum number of rows returned in a single batch""" + batch_size: Int! + + """cursor to stream the results returned by the query""" + cursor: [player_steam_bot_friend_stream_cursor_input]! + + """filter the rows returned""" + where: player_steam_bot_friend_bool_exp + ): [player_steam_bot_friend!]! + """ fetch data from the table: "player_steam_match_auth" """ diff --git a/generated/schema.ts b/generated/schema.ts index 2f180948..69c678e8 100644 --- a/generated/schema.ts +++ b/generated/schema.ts @@ -516,6 +516,52 @@ export interface SteamMatchHistoryPollOutput { __typename: 'SteamMatchHistoryPollOutput' } +export interface SteamPresenceAdminStatusOutput { + bots: SteamPresenceBot[] + enabled: Scalars['Boolean'] + events: SteamPresenceEvent[] + pool: SteamPresencePool + __typename: 'SteamPresenceAdminStatusOutput' +} + +export interface SteamPresenceBot { + assigned: Scalars['Int'] + capacity: Scalars['Int'] + guardLastWrong: Scalars['Boolean'] + guardType: (Scalars['String'] | null) + id: Scalars['String'] + needs2fa: Scalars['Boolean'] + online: Scalars['Boolean'] + steamId: (Scalars['String'] | null) + username: Scalars['String'] + watching: Scalars['Int'] + __typename: 'SteamPresenceBot' +} + +export interface SteamPresenceBotAssignment { + addUrl: (Scalars['String'] | null) + enabled: Scalars['Boolean'] + status: (Scalars['String'] | null) + steamId: (Scalars['String'] | null) + __typename: 'SteamPresenceBotAssignment' +} + +export interface SteamPresenceEvent { + message: Scalars['String'] + ts: Scalars['String'] + type: Scalars['String'] + __typename: 'SteamPresenceEvent' +} + +export interface SteamPresencePool { + bots: Scalars['Int'] + capacity: Scalars['Int'] + online: Scalars['Int'] + pending: Scalars['Int'] + watching: Scalars['Int'] + __typename: 'SteamPresencePool' +} + export interface StorageStats { summary: StorageSummary tables: TableSizeInfo[] @@ -8087,7 +8133,11 @@ export interface mutation_root { acceptInvite: (SuccessOutput | null) /** addDraftPlayer */ addDraftPlayer: (SuccessOutput | null) + /** Add a friends-role presence bot account to the pool */ + addSteamPresenceBotAccount: (SuccessOutput | null) approveNameChange: (SuccessOutput | null) + /** Assign the presence bot a user should add as a friend */ + assignSteamPresenceBot: (SteamPresenceBotAssignment | null) /** Dev-only — attach the demo player to a standing dev game-streamer pod (no Job boot) */ attachDemo: (WatchDemoOutput | null) /** Launch a Vulkan shader pre-bake Job on a GPU node */ @@ -8472,6 +8522,10 @@ export interface mutation_root { delete_player_stats: (player_stats_mutation_response | null) /** delete single row from the table: "player_stats" */ delete_player_stats_by_pk: (player_stats | null) + /** delete data from the table: "player_steam_bot_friend" */ + delete_player_steam_bot_friend: (player_steam_bot_friend_mutation_response | null) + /** delete single row from the table: "player_steam_bot_friend" */ + delete_player_steam_bot_friend_by_pk: (player_steam_bot_friend | null) /** delete data from the table: "player_steam_match_auth" */ delete_player_steam_match_auth: (player_steam_match_auth_mutation_response | null) /** delete single row from the table: "player_steam_match_auth" */ @@ -8945,6 +8999,10 @@ export interface mutation_root { insert_player_stats: (player_stats_mutation_response | null) /** insert a single row into the table: "player_stats" */ insert_player_stats_one: (player_stats | null) + /** insert data into the table: "player_steam_bot_friend" */ + insert_player_steam_bot_friend: (player_steam_bot_friend_mutation_response | null) + /** insert a single row into the table: "player_steam_bot_friend" */ + insert_player_steam_bot_friend_one: (player_steam_bot_friend | null) /** insert data into the table: "player_steam_match_auth" */ insert_player_steam_match_auth: (player_steam_match_auth_mutation_response | null) /** insert a single row into the table: "player_steam_match_auth" */ @@ -9115,6 +9173,8 @@ export interface mutation_root { registerName: (SuccessOutput | null) /** Remove dev fixture data (dev only) */ removeFixtures: (SuccessOutput | null) + /** Remove a friends-role presence bot account */ + removeSteamPresenceBotAccount: (SuccessOutput | null) /** Rename file or directory on game server */ renameServerItem: (SuccessOutput | null) /** Re-parse every demo in the system (admin only). Runs one demo at a time in the background; this can take a very long time. Track via reparseAllDemosStatus. */ @@ -9174,6 +9234,8 @@ export interface mutation_root { stopGpuSession: (SuccessOutput | null) stopLive: (SuccessOutput | null) stopWatchDemo: (SuccessOutput | null) + /** Submit a Steam Guard code for a presence bot account */ + submitSteamPresenceSteamGuard: (SuccessOutput | null) swapLineups: (SuccessOutput | null) switchLineup: (SuccessOutput | null) switchLiveMatch: (SuccessOutput | null) @@ -9694,6 +9756,12 @@ export interface mutation_root { update_player_stats_by_pk: (player_stats | null) /** update multiples rows of table: "player_stats" */ update_player_stats_many: ((player_stats_mutation_response | null)[] | null) + /** update data of the table: "player_steam_bot_friend" */ + update_player_steam_bot_friend: (player_steam_bot_friend_mutation_response | null) + /** update single row of the table: "player_steam_bot_friend" */ + update_player_steam_bot_friend_by_pk: (player_steam_bot_friend | null) + /** update multiples rows of table: "player_steam_bot_friend" */ + update_player_steam_bot_friend_many: ((player_steam_bot_friend_mutation_response | null)[] | null) /** update data of the table: "player_steam_match_auth" */ update_player_steam_match_auth: (player_steam_match_auth_mutation_response | null) /** update single row of the table: "player_steam_match_auth" */ @@ -16139,6 +16207,159 @@ export interface player_stats_variance_fields { } +/** columns and relationships of "player_steam_bot_friend" */ +export interface player_steam_bot_friend { + bot_steam_account_id: (Scalars['uuid'] | null) + bot_steamid64: (Scalars['bigint'] | null) + created_at: Scalars['timestamptz'] + friended_at: (Scalars['timestamptz'] | null) + last_presence_state: (Scalars['jsonb'] | null) + /** An object relationship */ + player: players + status: Scalars['String'] + steam_id: Scalars['bigint'] + updated_at: Scalars['timestamptz'] + __typename: 'player_steam_bot_friend' +} + + +/** aggregated selection of "player_steam_bot_friend" */ +export interface player_steam_bot_friend_aggregate { + aggregate: (player_steam_bot_friend_aggregate_fields | null) + nodes: player_steam_bot_friend[] + __typename: 'player_steam_bot_friend_aggregate' +} + + +/** aggregate fields of "player_steam_bot_friend" */ +export interface player_steam_bot_friend_aggregate_fields { + avg: (player_steam_bot_friend_avg_fields | null) + count: Scalars['Int'] + max: (player_steam_bot_friend_max_fields | null) + min: (player_steam_bot_friend_min_fields | null) + stddev: (player_steam_bot_friend_stddev_fields | null) + stddev_pop: (player_steam_bot_friend_stddev_pop_fields | null) + stddev_samp: (player_steam_bot_friend_stddev_samp_fields | null) + sum: (player_steam_bot_friend_sum_fields | null) + var_pop: (player_steam_bot_friend_var_pop_fields | null) + var_samp: (player_steam_bot_friend_var_samp_fields | null) + variance: (player_steam_bot_friend_variance_fields | null) + __typename: 'player_steam_bot_friend_aggregate_fields' +} + + +/** aggregate avg on columns */ +export interface player_steam_bot_friend_avg_fields { + bot_steamid64: (Scalars['Float'] | null) + steam_id: (Scalars['Float'] | null) + __typename: 'player_steam_bot_friend_avg_fields' +} + + +/** unique or primary key constraints on table "player_steam_bot_friend" */ +export type player_steam_bot_friend_constraint = 'player_steam_bot_friend_pkey' + + +/** aggregate max on columns */ +export interface player_steam_bot_friend_max_fields { + bot_steam_account_id: (Scalars['uuid'] | null) + bot_steamid64: (Scalars['bigint'] | null) + created_at: (Scalars['timestamptz'] | null) + friended_at: (Scalars['timestamptz'] | null) + status: (Scalars['String'] | null) + steam_id: (Scalars['bigint'] | null) + updated_at: (Scalars['timestamptz'] | null) + __typename: 'player_steam_bot_friend_max_fields' +} + + +/** aggregate min on columns */ +export interface player_steam_bot_friend_min_fields { + bot_steam_account_id: (Scalars['uuid'] | null) + bot_steamid64: (Scalars['bigint'] | null) + created_at: (Scalars['timestamptz'] | null) + friended_at: (Scalars['timestamptz'] | null) + status: (Scalars['String'] | null) + steam_id: (Scalars['bigint'] | null) + updated_at: (Scalars['timestamptz'] | null) + __typename: 'player_steam_bot_friend_min_fields' +} + + +/** response of any mutation on the table "player_steam_bot_friend" */ +export interface player_steam_bot_friend_mutation_response { + /** number of rows affected by the mutation */ + affected_rows: Scalars['Int'] + /** data from the rows affected by the mutation */ + returning: player_steam_bot_friend[] + __typename: 'player_steam_bot_friend_mutation_response' +} + + +/** select columns of table "player_steam_bot_friend" */ +export type player_steam_bot_friend_select_column = 'bot_steam_account_id' | 'bot_steamid64' | 'created_at' | 'friended_at' | 'last_presence_state' | 'status' | 'steam_id' | 'updated_at' + + +/** aggregate stddev on columns */ +export interface player_steam_bot_friend_stddev_fields { + bot_steamid64: (Scalars['Float'] | null) + steam_id: (Scalars['Float'] | null) + __typename: 'player_steam_bot_friend_stddev_fields' +} + + +/** aggregate stddev_pop on columns */ +export interface player_steam_bot_friend_stddev_pop_fields { + bot_steamid64: (Scalars['Float'] | null) + steam_id: (Scalars['Float'] | null) + __typename: 'player_steam_bot_friend_stddev_pop_fields' +} + + +/** aggregate stddev_samp on columns */ +export interface player_steam_bot_friend_stddev_samp_fields { + bot_steamid64: (Scalars['Float'] | null) + steam_id: (Scalars['Float'] | null) + __typename: 'player_steam_bot_friend_stddev_samp_fields' +} + + +/** aggregate sum on columns */ +export interface player_steam_bot_friend_sum_fields { + bot_steamid64: (Scalars['bigint'] | null) + steam_id: (Scalars['bigint'] | null) + __typename: 'player_steam_bot_friend_sum_fields' +} + + +/** update columns of table "player_steam_bot_friend" */ +export type player_steam_bot_friend_update_column = 'bot_steam_account_id' | 'bot_steamid64' | 'created_at' | 'friended_at' | 'last_presence_state' | 'status' | 'steam_id' | 'updated_at' + + +/** aggregate var_pop on columns */ +export interface player_steam_bot_friend_var_pop_fields { + bot_steamid64: (Scalars['Float'] | null) + steam_id: (Scalars['Float'] | null) + __typename: 'player_steam_bot_friend_var_pop_fields' +} + + +/** aggregate var_samp on columns */ +export interface player_steam_bot_friend_var_samp_fields { + bot_steamid64: (Scalars['Float'] | null) + steam_id: (Scalars['Float'] | null) + __typename: 'player_steam_bot_friend_var_samp_fields' +} + + +/** aggregate variance on columns */ +export interface player_steam_bot_friend_variance_fields { + bot_steamid64: (Scalars['Float'] | null) + steam_id: (Scalars['Float'] | null) + __typename: 'player_steam_bot_friend_variance_fields' +} + + /** columns and relationships of "player_steam_match_auth" */ export interface player_steam_match_auth { auth_code: Scalars['String'] @@ -18109,6 +18330,12 @@ export interface query_root { player_stats_aggregate: player_stats_aggregate /** fetch data from the table: "player_stats" using primary key columns */ player_stats_by_pk: (player_stats | null) + /** fetch data from the table: "player_steam_bot_friend" */ + player_steam_bot_friend: player_steam_bot_friend[] + /** fetch aggregated fields from the table: "player_steam_bot_friend" */ + player_steam_bot_friend_aggregate: player_steam_bot_friend_aggregate + /** fetch data from the table: "player_steam_bot_friend" using primary key columns */ + player_steam_bot_friend_by_pk: (player_steam_bot_friend | null) /** fetch data from the table: "player_steam_match_auth" */ player_steam_match_auth: player_steam_match_auth[] /** fetch aggregated fields from the table: "player_steam_match_auth" */ @@ -18165,6 +18392,8 @@ export interface query_root { settings_aggregate: settings_aggregate /** fetch data from the table: "settings" using primary key columns */ settings_by_pk: (settings | null) + /** Steam presence bot admin dashboard status */ + steamPresenceAdminStatus: SteamPresenceAdminStatusOutput /** fetch data from the table: "steam_account_claims" */ steam_account_claims: steam_account_claims[] /** fetch aggregated fields from the table: "steam_account_claims" */ @@ -18967,11 +19196,14 @@ export interface steam_accounts { /** An aggregate relationship */ claims_aggregate: steam_account_claims_aggregate created_at: Scalars['timestamptz'] + friend_capacity: Scalars['Int'] id: Scalars['uuid'] /** An object relationship */ last_node: (game_server_nodes | null) last_node_id: (Scalars['String'] | null) password: Scalars['String'] + role: Scalars['String'] + steamid64: (Scalars['bigint'] | null) updated_at: Scalars['timestamptz'] username: Scalars['String'] __typename: 'steam_accounts' @@ -18988,13 +19220,29 @@ export interface steam_accounts_aggregate { /** aggregate fields of "steam_accounts" */ export interface steam_accounts_aggregate_fields { + avg: (steam_accounts_avg_fields | null) count: Scalars['Int'] max: (steam_accounts_max_fields | null) min: (steam_accounts_min_fields | null) + stddev: (steam_accounts_stddev_fields | null) + stddev_pop: (steam_accounts_stddev_pop_fields | null) + stddev_samp: (steam_accounts_stddev_samp_fields | null) + sum: (steam_accounts_sum_fields | null) + var_pop: (steam_accounts_var_pop_fields | null) + var_samp: (steam_accounts_var_samp_fields | null) + variance: (steam_accounts_variance_fields | null) __typename: 'steam_accounts_aggregate_fields' } +/** aggregate avg on columns */ +export interface steam_accounts_avg_fields { + friend_capacity: (Scalars['Float'] | null) + steamid64: (Scalars['Float'] | null) + __typename: 'steam_accounts_avg_fields' +} + + /** unique or primary key constraints on table "steam_accounts" */ export type steam_accounts_constraint = 'steam_accounts_pkey' | 'steam_accounts_username_key' @@ -19002,9 +19250,12 @@ export type steam_accounts_constraint = 'steam_accounts_pkey' | 'steam_accounts_ /** aggregate max on columns */ export interface steam_accounts_max_fields { created_at: (Scalars['timestamptz'] | null) + friend_capacity: (Scalars['Int'] | null) id: (Scalars['uuid'] | null) last_node_id: (Scalars['String'] | null) password: (Scalars['String'] | null) + role: (Scalars['String'] | null) + steamid64: (Scalars['bigint'] | null) updated_at: (Scalars['timestamptz'] | null) username: (Scalars['String'] | null) __typename: 'steam_accounts_max_fields' @@ -19014,9 +19265,12 @@ export interface steam_accounts_max_fields { /** aggregate min on columns */ export interface steam_accounts_min_fields { created_at: (Scalars['timestamptz'] | null) + friend_capacity: (Scalars['Int'] | null) id: (Scalars['uuid'] | null) last_node_id: (Scalars['String'] | null) password: (Scalars['String'] | null) + role: (Scalars['String'] | null) + steamid64: (Scalars['bigint'] | null) updated_at: (Scalars['timestamptz'] | null) username: (Scalars['String'] | null) __typename: 'steam_accounts_min_fields' @@ -19034,11 +19288,67 @@ export interface steam_accounts_mutation_response { /** select columns of table "steam_accounts" */ -export type steam_accounts_select_column = 'created_at' | 'id' | 'last_node_id' | 'password' | 'updated_at' | 'username' +export type steam_accounts_select_column = 'created_at' | 'friend_capacity' | 'id' | 'last_node_id' | 'password' | 'role' | 'steamid64' | 'updated_at' | 'username' + + +/** aggregate stddev on columns */ +export interface steam_accounts_stddev_fields { + friend_capacity: (Scalars['Float'] | null) + steamid64: (Scalars['Float'] | null) + __typename: 'steam_accounts_stddev_fields' +} + + +/** aggregate stddev_pop on columns */ +export interface steam_accounts_stddev_pop_fields { + friend_capacity: (Scalars['Float'] | null) + steamid64: (Scalars['Float'] | null) + __typename: 'steam_accounts_stddev_pop_fields' +} + + +/** aggregate stddev_samp on columns */ +export interface steam_accounts_stddev_samp_fields { + friend_capacity: (Scalars['Float'] | null) + steamid64: (Scalars['Float'] | null) + __typename: 'steam_accounts_stddev_samp_fields' +} + + +/** aggregate sum on columns */ +export interface steam_accounts_sum_fields { + friend_capacity: (Scalars['Int'] | null) + steamid64: (Scalars['bigint'] | null) + __typename: 'steam_accounts_sum_fields' +} /** update columns of table "steam_accounts" */ -export type steam_accounts_update_column = 'created_at' | 'id' | 'last_node_id' | 'password' | 'updated_at' | 'username' +export type steam_accounts_update_column = 'created_at' | 'friend_capacity' | 'id' | 'last_node_id' | 'password' | 'role' | 'steamid64' | 'updated_at' | 'username' + + +/** aggregate var_pop on columns */ +export interface steam_accounts_var_pop_fields { + friend_capacity: (Scalars['Float'] | null) + steamid64: (Scalars['Float'] | null) + __typename: 'steam_accounts_var_pop_fields' +} + + +/** aggregate var_samp on columns */ +export interface steam_accounts_var_samp_fields { + friend_capacity: (Scalars['Float'] | null) + steamid64: (Scalars['Float'] | null) + __typename: 'steam_accounts_var_samp_fields' +} + + +/** aggregate variance on columns */ +export interface steam_accounts_variance_fields { + friend_capacity: (Scalars['Float'] | null) + steamid64: (Scalars['Float'] | null) + __typename: 'steam_accounts_variance_fields' +} export interface subscription_root { /** fetch data from the table: "_map_pool" */ @@ -19747,6 +20057,14 @@ export interface subscription_root { player_stats_by_pk: (player_stats | null) /** fetch data from the table in a streaming manner: "player_stats" */ player_stats_stream: player_stats[] + /** fetch data from the table: "player_steam_bot_friend" */ + player_steam_bot_friend: player_steam_bot_friend[] + /** fetch aggregated fields from the table: "player_steam_bot_friend" */ + player_steam_bot_friend_aggregate: player_steam_bot_friend_aggregate + /** fetch data from the table: "player_steam_bot_friend" using primary key columns */ + player_steam_bot_friend_by_pk: (player_steam_bot_friend | null) + /** fetch data from the table in a streaming manner: "player_steam_bot_friend" */ + player_steam_bot_friend_stream: player_steam_bot_friend[] /** fetch data from the table: "player_steam_match_auth" */ player_steam_match_auth: player_steam_match_auth[] /** fetch aggregated fields from the table: "player_steam_match_auth" */ @@ -29158,6 +29476,57 @@ export interface SteamMatchHistoryPollOutputGenqlSelection{ __scalar?: boolean | number } +export interface SteamPresenceAdminStatusOutputGenqlSelection{ + bots?: SteamPresenceBotGenqlSelection + enabled?: boolean | number + events?: SteamPresenceEventGenqlSelection + pool?: SteamPresencePoolGenqlSelection + __typename?: boolean | number + __scalar?: boolean | number +} + +export interface SteamPresenceBotGenqlSelection{ + assigned?: boolean | number + capacity?: boolean | number + guardLastWrong?: boolean | number + guardType?: boolean | number + id?: boolean | number + needs2fa?: boolean | number + online?: boolean | number + steamId?: boolean | number + username?: boolean | number + watching?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + +export interface SteamPresenceBotAssignmentGenqlSelection{ + addUrl?: boolean | number + enabled?: boolean | number + status?: boolean | number + steamId?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + +export interface SteamPresenceEventGenqlSelection{ + message?: boolean | number + ts?: boolean | number + type?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + +export interface SteamPresencePoolGenqlSelection{ + bots?: boolean | number + capacity?: boolean | number + online?: boolean | number + pending?: boolean | number + watching?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + export interface StorageStatsGenqlSelection{ summary?: StorageSummaryGenqlSelection tables?: TableSizeInfoGenqlSelection @@ -42039,7 +42408,11 @@ export interface mutation_rootGenqlSelection{ acceptInvite?: (SuccessOutputGenqlSelection & { __args: {invite_id: Scalars['uuid'], type: Scalars['String']} }) /** addDraftPlayer */ addDraftPlayer?: (SuccessOutputGenqlSelection & { __args: {draftGameId: Scalars['uuid'], steamId: Scalars['String']} }) + /** Add a friends-role presence bot account to the pool */ + addSteamPresenceBotAccount?: (SuccessOutputGenqlSelection & { __args: {bot_secret: Scalars['String'], friend_capacity?: (Scalars['Int'] | null), username: Scalars['String']} }) approveNameChange?: (SuccessOutputGenqlSelection & { __args: {name: Scalars['String'], steam_id: Scalars['bigint']} }) + /** Assign the presence bot a user should add as a friend */ + assignSteamPresenceBot?: SteamPresenceBotAssignmentGenqlSelection /** Dev-only — attach the demo player to a standing dev game-streamer pod (no Job boot) */ attachDemo?: WatchDemoOutputGenqlSelection /** Launch a Vulkan shader pre-bake Job on a GPU node */ @@ -42594,6 +42967,12 @@ export interface mutation_rootGenqlSelection{ where: player_stats_bool_exp} }) /** delete single row from the table: "player_stats" */ delete_player_stats_by_pk?: (player_statsGenqlSelection & { __args: {player_steam_id: Scalars['bigint']} }) + /** delete data from the table: "player_steam_bot_friend" */ + delete_player_steam_bot_friend?: (player_steam_bot_friend_mutation_responseGenqlSelection & { __args: { + /** filter the rows which have to be deleted */ + where: player_steam_bot_friend_bool_exp} }) + /** delete single row from the table: "player_steam_bot_friend" */ + delete_player_steam_bot_friend_by_pk?: (player_steam_bot_friendGenqlSelection & { __args: {steam_id: Scalars['bigint']} }) /** delete data from the table: "player_steam_match_auth" */ delete_player_steam_match_auth?: (player_steam_match_auth_mutation_responseGenqlSelection & { __args: { /** filter the rows which have to be deleted */ @@ -43803,6 +44182,18 @@ export interface mutation_rootGenqlSelection{ object: player_stats_insert_input, /** upsert condition */ on_conflict?: (player_stats_on_conflict | null)} }) + /** insert data into the table: "player_steam_bot_friend" */ + insert_player_steam_bot_friend?: (player_steam_bot_friend_mutation_responseGenqlSelection & { __args: { + /** the rows to be inserted */ + objects: player_steam_bot_friend_insert_input[], + /** upsert condition */ + on_conflict?: (player_steam_bot_friend_on_conflict | null)} }) + /** insert a single row into the table: "player_steam_bot_friend" */ + insert_player_steam_bot_friend_one?: (player_steam_bot_friendGenqlSelection & { __args: { + /** the row to be inserted */ + object: player_steam_bot_friend_insert_input, + /** upsert condition */ + on_conflict?: (player_steam_bot_friend_on_conflict | null)} }) /** insert data into the table: "player_steam_match_auth" */ insert_player_steam_match_auth?: (player_steam_match_auth_mutation_responseGenqlSelection & { __args: { /** the rows to be inserted */ @@ -44241,6 +44632,8 @@ export interface mutation_rootGenqlSelection{ registerName?: (SuccessOutputGenqlSelection & { __args: {name: Scalars['String']} }) /** Remove dev fixture data (dev only) */ removeFixtures?: SuccessOutputGenqlSelection + /** Remove a friends-role presence bot account */ + removeSteamPresenceBotAccount?: (SuccessOutputGenqlSelection & { __args: {account_id: Scalars['String']} }) /** Rename file or directory on game server */ renameServerItem?: (SuccessOutputGenqlSelection & { __args: {new_path: Scalars['String'], node_id: Scalars['String'], old_path: Scalars['String'], server_id?: (Scalars['String'] | null)} }) /** Re-parse every demo in the system (admin only). Runs one demo at a time in the background; this can take a very long time. Track via reparseAllDemosStatus. */ @@ -44300,6 +44693,8 @@ export interface mutation_rootGenqlSelection{ stopGpuSession?: (SuccessOutputGenqlSelection & { __args: {game_server_node_id: Scalars['uuid']} }) stopLive?: (SuccessOutputGenqlSelection & { __args: {match_id: Scalars['uuid']} }) stopWatchDemo?: (SuccessOutputGenqlSelection & { __args: {match_map_id: Scalars['uuid']} }) + /** Submit a Steam Guard code for a presence bot account */ + submitSteamPresenceSteamGuard?: (SuccessOutputGenqlSelection & { __args: {account_id: Scalars['String'], code: Scalars['String']} }) swapLineups?: (SuccessOutputGenqlSelection & { __args: {match_id: Scalars['uuid']} }) switchLineup?: (SuccessOutputGenqlSelection & { __args: {match_id: Scalars['String']} }) switchLiveMatch?: (SuccessOutputGenqlSelection & { __args: {from_match_id: Scalars['uuid'], mode: Scalars['String'], to_match_id: Scalars['uuid']} }) @@ -45830,6 +46225,44 @@ export interface mutation_rootGenqlSelection{ update_player_stats_many?: (player_stats_mutation_responseGenqlSelection & { __args: { /** updates to execute, in order */ updates: player_stats_updates[]} }) + /** update data of the table: "player_steam_bot_friend" */ + update_player_steam_bot_friend?: (player_steam_bot_friend_mutation_responseGenqlSelection & { __args: { + /** append existing jsonb value of filtered columns with new jsonb value */ + _append?: (player_steam_bot_friend_append_input | null), + /** delete the field or element with specified path (for JSON arrays, negative integers count from the end) */ + _delete_at_path?: (player_steam_bot_friend_delete_at_path_input | null), + /** delete the array element with specified index (negative integers count from the end). throws an error if top level container is not an array */ + _delete_elem?: (player_steam_bot_friend_delete_elem_input | null), + /** delete key/value pair or string element. key/value pairs are matched based on their key value */ + _delete_key?: (player_steam_bot_friend_delete_key_input | null), + /** increments the numeric columns with given value of the filtered values */ + _inc?: (player_steam_bot_friend_inc_input | null), + /** prepend existing jsonb value of filtered columns with new jsonb value */ + _prepend?: (player_steam_bot_friend_prepend_input | null), + /** sets the columns of the filtered rows to the given values */ + _set?: (player_steam_bot_friend_set_input | null), + /** filter the rows which have to be updated */ + where: player_steam_bot_friend_bool_exp} }) + /** update single row of the table: "player_steam_bot_friend" */ + update_player_steam_bot_friend_by_pk?: (player_steam_bot_friendGenqlSelection & { __args: { + /** append existing jsonb value of filtered columns with new jsonb value */ + _append?: (player_steam_bot_friend_append_input | null), + /** delete the field or element with specified path (for JSON arrays, negative integers count from the end) */ + _delete_at_path?: (player_steam_bot_friend_delete_at_path_input | null), + /** delete the array element with specified index (negative integers count from the end). throws an error if top level container is not an array */ + _delete_elem?: (player_steam_bot_friend_delete_elem_input | null), + /** delete key/value pair or string element. key/value pairs are matched based on their key value */ + _delete_key?: (player_steam_bot_friend_delete_key_input | null), + /** increments the numeric columns with given value of the filtered values */ + _inc?: (player_steam_bot_friend_inc_input | null), + /** prepend existing jsonb value of filtered columns with new jsonb value */ + _prepend?: (player_steam_bot_friend_prepend_input | null), + /** sets the columns of the filtered rows to the given values */ + _set?: (player_steam_bot_friend_set_input | null), pk_columns: player_steam_bot_friend_pk_columns_input} }) + /** update multiples rows of table: "player_steam_bot_friend" */ + update_player_steam_bot_friend_many?: (player_steam_bot_friend_mutation_responseGenqlSelection & { __args: { + /** updates to execute, in order */ + updates: player_steam_bot_friend_updates[]} }) /** update data of the table: "player_steam_match_auth" */ update_player_steam_match_auth?: (player_steam_match_auth_mutation_responseGenqlSelection & { __args: { /** increments the numeric columns with given value of the filtered values */ @@ -45982,12 +46415,16 @@ export interface mutation_rootGenqlSelection{ updates: steam_account_claims_updates[]} }) /** update data of the table: "steam_accounts" */ update_steam_accounts?: (steam_accounts_mutation_responseGenqlSelection & { __args: { + /** increments the numeric columns with given value of the filtered values */ + _inc?: (steam_accounts_inc_input | null), /** sets the columns of the filtered rows to the given values */ _set?: (steam_accounts_set_input | null), /** filter the rows which have to be updated */ where: steam_accounts_bool_exp} }) /** update single row of the table: "steam_accounts" */ update_steam_accounts_by_pk?: (steam_accountsGenqlSelection & { __args: { + /** increments the numeric columns with given value of the filtered values */ + _inc?: (steam_accounts_inc_input | null), /** sets the columns of the filtered rows to the given values */ _set?: (steam_accounts_set_input | null), pk_columns: steam_accounts_pk_columns_input} }) /** update multiples rows of table: "steam_accounts" */ @@ -54668,6 +55105,241 @@ export interface player_stats_variance_fieldsGenqlSelection{ } +/** columns and relationships of "player_steam_bot_friend" */ +export interface player_steam_bot_friendGenqlSelection{ + bot_steam_account_id?: boolean | number + bot_steamid64?: boolean | number + created_at?: boolean | number + friended_at?: boolean | number + last_presence_state?: { __args: { + /** JSON select path */ + path?: (Scalars['String'] | null)} } | boolean | number + /** An object relationship */ + player?: playersGenqlSelection + status?: boolean | number + steam_id?: boolean | number + updated_at?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** aggregated selection of "player_steam_bot_friend" */ +export interface player_steam_bot_friend_aggregateGenqlSelection{ + aggregate?: player_steam_bot_friend_aggregate_fieldsGenqlSelection + nodes?: player_steam_bot_friendGenqlSelection + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** aggregate fields of "player_steam_bot_friend" */ +export interface player_steam_bot_friend_aggregate_fieldsGenqlSelection{ + avg?: player_steam_bot_friend_avg_fieldsGenqlSelection + count?: { __args: {columns?: (player_steam_bot_friend_select_column[] | null), distinct?: (Scalars['Boolean'] | null)} } | boolean | number + max?: player_steam_bot_friend_max_fieldsGenqlSelection + min?: player_steam_bot_friend_min_fieldsGenqlSelection + stddev?: player_steam_bot_friend_stddev_fieldsGenqlSelection + stddev_pop?: player_steam_bot_friend_stddev_pop_fieldsGenqlSelection + stddev_samp?: player_steam_bot_friend_stddev_samp_fieldsGenqlSelection + sum?: player_steam_bot_friend_sum_fieldsGenqlSelection + var_pop?: player_steam_bot_friend_var_pop_fieldsGenqlSelection + var_samp?: player_steam_bot_friend_var_samp_fieldsGenqlSelection + variance?: player_steam_bot_friend_variance_fieldsGenqlSelection + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** append existing jsonb value of filtered columns with new jsonb value */ +export interface player_steam_bot_friend_append_input {last_presence_state?: (Scalars['jsonb'] | null)} + + +/** aggregate avg on columns */ +export interface player_steam_bot_friend_avg_fieldsGenqlSelection{ + bot_steamid64?: boolean | number + steam_id?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** Boolean expression to filter rows from the table "player_steam_bot_friend". All fields are combined with a logical 'AND'. */ +export interface player_steam_bot_friend_bool_exp {_and?: (player_steam_bot_friend_bool_exp[] | null),_not?: (player_steam_bot_friend_bool_exp | null),_or?: (player_steam_bot_friend_bool_exp[] | null),bot_steam_account_id?: (uuid_comparison_exp | null),bot_steamid64?: (bigint_comparison_exp | null),created_at?: (timestamptz_comparison_exp | null),friended_at?: (timestamptz_comparison_exp | null),last_presence_state?: (jsonb_comparison_exp | null),player?: (players_bool_exp | null),status?: (String_comparison_exp | null),steam_id?: (bigint_comparison_exp | null),updated_at?: (timestamptz_comparison_exp | null)} + + +/** delete the field or element with specified path (for JSON arrays, negative integers count from the end) */ +export interface player_steam_bot_friend_delete_at_path_input {last_presence_state?: (Scalars['String'][] | null)} + + +/** delete the array element with specified index (negative integers count from the end). throws an error if top level container is not an array */ +export interface player_steam_bot_friend_delete_elem_input {last_presence_state?: (Scalars['Int'] | null)} + + +/** delete key/value pair or string element. key/value pairs are matched based on their key value */ +export interface player_steam_bot_friend_delete_key_input {last_presence_state?: (Scalars['String'] | null)} + + +/** input type for incrementing numeric columns in table "player_steam_bot_friend" */ +export interface player_steam_bot_friend_inc_input {bot_steamid64?: (Scalars['bigint'] | null),steam_id?: (Scalars['bigint'] | null)} + + +/** input type for inserting data into table "player_steam_bot_friend" */ +export interface player_steam_bot_friend_insert_input {bot_steam_account_id?: (Scalars['uuid'] | null),bot_steamid64?: (Scalars['bigint'] | null),created_at?: (Scalars['timestamptz'] | null),friended_at?: (Scalars['timestamptz'] | null),last_presence_state?: (Scalars['jsonb'] | null),player?: (players_obj_rel_insert_input | null),status?: (Scalars['String'] | null),steam_id?: (Scalars['bigint'] | null),updated_at?: (Scalars['timestamptz'] | null)} + + +/** aggregate max on columns */ +export interface player_steam_bot_friend_max_fieldsGenqlSelection{ + bot_steam_account_id?: boolean | number + bot_steamid64?: boolean | number + created_at?: boolean | number + friended_at?: boolean | number + status?: boolean | number + steam_id?: boolean | number + updated_at?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** aggregate min on columns */ +export interface player_steam_bot_friend_min_fieldsGenqlSelection{ + bot_steam_account_id?: boolean | number + bot_steamid64?: boolean | number + created_at?: boolean | number + friended_at?: boolean | number + status?: boolean | number + steam_id?: boolean | number + updated_at?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** response of any mutation on the table "player_steam_bot_friend" */ +export interface player_steam_bot_friend_mutation_responseGenqlSelection{ + /** number of rows affected by the mutation */ + affected_rows?: boolean | number + /** data from the rows affected by the mutation */ + returning?: player_steam_bot_friendGenqlSelection + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** on_conflict condition type for table "player_steam_bot_friend" */ +export interface player_steam_bot_friend_on_conflict {constraint: player_steam_bot_friend_constraint,update_columns?: player_steam_bot_friend_update_column[],where?: (player_steam_bot_friend_bool_exp | null)} + + +/** Ordering options when selecting data from "player_steam_bot_friend". */ +export interface player_steam_bot_friend_order_by {bot_steam_account_id?: (order_by | null),bot_steamid64?: (order_by | null),created_at?: (order_by | null),friended_at?: (order_by | null),last_presence_state?: (order_by | null),player?: (players_order_by | null),status?: (order_by | null),steam_id?: (order_by | null),updated_at?: (order_by | null)} + + +/** primary key columns input for table: player_steam_bot_friend */ +export interface player_steam_bot_friend_pk_columns_input {steam_id: Scalars['bigint']} + + +/** prepend existing jsonb value of filtered columns with new jsonb value */ +export interface player_steam_bot_friend_prepend_input {last_presence_state?: (Scalars['jsonb'] | null)} + + +/** input type for updating data in table "player_steam_bot_friend" */ +export interface player_steam_bot_friend_set_input {bot_steam_account_id?: (Scalars['uuid'] | null),bot_steamid64?: (Scalars['bigint'] | null),created_at?: (Scalars['timestamptz'] | null),friended_at?: (Scalars['timestamptz'] | null),last_presence_state?: (Scalars['jsonb'] | null),status?: (Scalars['String'] | null),steam_id?: (Scalars['bigint'] | null),updated_at?: (Scalars['timestamptz'] | null)} + + +/** aggregate stddev on columns */ +export interface player_steam_bot_friend_stddev_fieldsGenqlSelection{ + bot_steamid64?: boolean | number + steam_id?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** aggregate stddev_pop on columns */ +export interface player_steam_bot_friend_stddev_pop_fieldsGenqlSelection{ + bot_steamid64?: boolean | number + steam_id?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** aggregate stddev_samp on columns */ +export interface player_steam_bot_friend_stddev_samp_fieldsGenqlSelection{ + bot_steamid64?: boolean | number + steam_id?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** Streaming cursor of the table "player_steam_bot_friend" */ +export interface player_steam_bot_friend_stream_cursor_input { +/** Stream column input with initial value */ +initial_value: player_steam_bot_friend_stream_cursor_value_input, +/** cursor ordering */ +ordering?: (cursor_ordering | null)} + + +/** Initial value of the column from where the streaming should start */ +export interface player_steam_bot_friend_stream_cursor_value_input {bot_steam_account_id?: (Scalars['uuid'] | null),bot_steamid64?: (Scalars['bigint'] | null),created_at?: (Scalars['timestamptz'] | null),friended_at?: (Scalars['timestamptz'] | null),last_presence_state?: (Scalars['jsonb'] | null),status?: (Scalars['String'] | null),steam_id?: (Scalars['bigint'] | null),updated_at?: (Scalars['timestamptz'] | null)} + + +/** aggregate sum on columns */ +export interface player_steam_bot_friend_sum_fieldsGenqlSelection{ + bot_steamid64?: boolean | number + steam_id?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + +export interface player_steam_bot_friend_updates { +/** append existing jsonb value of filtered columns with new jsonb value */ +_append?: (player_steam_bot_friend_append_input | null), +/** delete the field or element with specified path (for JSON arrays, negative integers count from the end) */ +_delete_at_path?: (player_steam_bot_friend_delete_at_path_input | null), +/** delete the array element with specified index (negative integers count from the end). throws an error if top level container is not an array */ +_delete_elem?: (player_steam_bot_friend_delete_elem_input | null), +/** delete key/value pair or string element. key/value pairs are matched based on their key value */ +_delete_key?: (player_steam_bot_friend_delete_key_input | null), +/** increments the numeric columns with given value of the filtered values */ +_inc?: (player_steam_bot_friend_inc_input | null), +/** prepend existing jsonb value of filtered columns with new jsonb value */ +_prepend?: (player_steam_bot_friend_prepend_input | null), +/** sets the columns of the filtered rows to the given values */ +_set?: (player_steam_bot_friend_set_input | null), +/** filter the rows which have to be updated */ +where: player_steam_bot_friend_bool_exp} + + +/** aggregate var_pop on columns */ +export interface player_steam_bot_friend_var_pop_fieldsGenqlSelection{ + bot_steamid64?: boolean | number + steam_id?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** aggregate var_samp on columns */ +export interface player_steam_bot_friend_var_samp_fieldsGenqlSelection{ + bot_steamid64?: boolean | number + steam_id?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** aggregate variance on columns */ +export interface player_steam_bot_friend_variance_fieldsGenqlSelection{ + bot_steamid64?: boolean | number + steam_id?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + /** columns and relationships of "player_steam_match_auth" */ export interface player_steam_match_authGenqlSelection{ auth_code?: boolean | number @@ -59699,6 +60371,32 @@ export interface query_rootGenqlSelection{ where?: (player_stats_bool_exp | null)} }) /** fetch data from the table: "player_stats" using primary key columns */ player_stats_by_pk?: (player_statsGenqlSelection & { __args: {player_steam_id: Scalars['bigint']} }) + /** fetch data from the table: "player_steam_bot_friend" */ + player_steam_bot_friend?: (player_steam_bot_friendGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (player_steam_bot_friend_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?: (player_steam_bot_friend_order_by[] | null), + /** filter the rows returned */ + where?: (player_steam_bot_friend_bool_exp | null)} }) + /** fetch aggregated fields from the table: "player_steam_bot_friend" */ + player_steam_bot_friend_aggregate?: (player_steam_bot_friend_aggregateGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (player_steam_bot_friend_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?: (player_steam_bot_friend_order_by[] | null), + /** filter the rows returned */ + where?: (player_steam_bot_friend_bool_exp | null)} }) + /** fetch data from the table: "player_steam_bot_friend" using primary key columns */ + player_steam_bot_friend_by_pk?: (player_steam_bot_friendGenqlSelection & { __args: {steam_id: Scalars['bigint']} }) /** fetch data from the table: "player_steam_match_auth" */ player_steam_match_auth?: (player_steam_match_authGenqlSelection & { __args?: { /** distinct select on columns */ @@ -59935,6 +60633,8 @@ export interface query_rootGenqlSelection{ where?: (settings_bool_exp | null)} }) /** fetch data from the table: "settings" using primary key columns */ settings_by_pk?: (settingsGenqlSelection & { __args: {name: Scalars['String']} }) + /** Steam presence bot admin dashboard status */ + steamPresenceAdminStatus?: SteamPresenceAdminStatusOutputGenqlSelection /** fetch data from the table: "steam_account_claims" */ steam_account_claims?: (steam_account_claimsGenqlSelection & { __args?: { /** distinct select on columns */ @@ -62050,11 +62750,14 @@ export interface steam_accountsGenqlSelection{ /** filter the rows returned */ where?: (steam_account_claims_bool_exp | null)} }) created_at?: boolean | number + friend_capacity?: boolean | number id?: boolean | number /** An object relationship */ last_node?: game_server_nodesGenqlSelection last_node_id?: boolean | number password?: boolean | number + role?: boolean | number + steamid64?: boolean | number updated_at?: boolean | number username?: boolean | number __typename?: boolean | number @@ -62073,28 +62776,52 @@ export interface steam_accounts_aggregateGenqlSelection{ /** aggregate fields of "steam_accounts" */ export interface steam_accounts_aggregate_fieldsGenqlSelection{ + avg?: steam_accounts_avg_fieldsGenqlSelection count?: { __args: {columns?: (steam_accounts_select_column[] | null), distinct?: (Scalars['Boolean'] | null)} } | boolean | number max?: steam_accounts_max_fieldsGenqlSelection min?: steam_accounts_min_fieldsGenqlSelection + stddev?: steam_accounts_stddev_fieldsGenqlSelection + stddev_pop?: steam_accounts_stddev_pop_fieldsGenqlSelection + stddev_samp?: steam_accounts_stddev_samp_fieldsGenqlSelection + sum?: steam_accounts_sum_fieldsGenqlSelection + var_pop?: steam_accounts_var_pop_fieldsGenqlSelection + var_samp?: steam_accounts_var_samp_fieldsGenqlSelection + variance?: steam_accounts_variance_fieldsGenqlSelection + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** aggregate avg on columns */ +export interface steam_accounts_avg_fieldsGenqlSelection{ + friend_capacity?: boolean | number + steamid64?: boolean | number __typename?: boolean | number __scalar?: boolean | number } /** Boolean expression to filter rows from the table "steam_accounts". All fields are combined with a logical 'AND'. */ -export interface steam_accounts_bool_exp {_and?: (steam_accounts_bool_exp[] | null),_not?: (steam_accounts_bool_exp | null),_or?: (steam_accounts_bool_exp[] | null),claims?: (steam_account_claims_bool_exp | null),claims_aggregate?: (steam_account_claims_aggregate_bool_exp | null),created_at?: (timestamptz_comparison_exp | null),id?: (uuid_comparison_exp | null),last_node?: (game_server_nodes_bool_exp | null),last_node_id?: (String_comparison_exp | null),password?: (String_comparison_exp | null),updated_at?: (timestamptz_comparison_exp | null),username?: (String_comparison_exp | null)} +export interface steam_accounts_bool_exp {_and?: (steam_accounts_bool_exp[] | null),_not?: (steam_accounts_bool_exp | null),_or?: (steam_accounts_bool_exp[] | null),claims?: (steam_account_claims_bool_exp | null),claims_aggregate?: (steam_account_claims_aggregate_bool_exp | null),created_at?: (timestamptz_comparison_exp | null),friend_capacity?: (Int_comparison_exp | null),id?: (uuid_comparison_exp | null),last_node?: (game_server_nodes_bool_exp | null),last_node_id?: (String_comparison_exp | null),password?: (String_comparison_exp | null),role?: (String_comparison_exp | null),steamid64?: (bigint_comparison_exp | null),updated_at?: (timestamptz_comparison_exp | null),username?: (String_comparison_exp | null)} + + +/** input type for incrementing numeric columns in table "steam_accounts" */ +export interface steam_accounts_inc_input {friend_capacity?: (Scalars['Int'] | null),steamid64?: (Scalars['bigint'] | null)} /** input type for inserting data into table "steam_accounts" */ -export interface steam_accounts_insert_input {claims?: (steam_account_claims_arr_rel_insert_input | null),created_at?: (Scalars['timestamptz'] | null),id?: (Scalars['uuid'] | null),last_node?: (game_server_nodes_obj_rel_insert_input | null),last_node_id?: (Scalars['String'] | null),password?: (Scalars['String'] | null),updated_at?: (Scalars['timestamptz'] | null),username?: (Scalars['String'] | null)} +export interface steam_accounts_insert_input {claims?: (steam_account_claims_arr_rel_insert_input | null),created_at?: (Scalars['timestamptz'] | null),friend_capacity?: (Scalars['Int'] | null),id?: (Scalars['uuid'] | null),last_node?: (game_server_nodes_obj_rel_insert_input | null),last_node_id?: (Scalars['String'] | null),password?: (Scalars['String'] | null),role?: (Scalars['String'] | null),steamid64?: (Scalars['bigint'] | null),updated_at?: (Scalars['timestamptz'] | null),username?: (Scalars['String'] | null)} /** aggregate max on columns */ export interface steam_accounts_max_fieldsGenqlSelection{ created_at?: boolean | number + friend_capacity?: boolean | number id?: boolean | number last_node_id?: boolean | number password?: boolean | number + role?: boolean | number + steamid64?: boolean | number updated_at?: boolean | number username?: boolean | number __typename?: boolean | number @@ -62105,9 +62832,12 @@ export interface steam_accounts_max_fieldsGenqlSelection{ /** aggregate min on columns */ export interface steam_accounts_min_fieldsGenqlSelection{ created_at?: boolean | number + friend_capacity?: boolean | number id?: boolean | number last_node_id?: boolean | number password?: boolean | number + role?: boolean | number + steamid64?: boolean | number updated_at?: boolean | number username?: boolean | number __typename?: boolean | number @@ -62137,7 +62867,7 @@ export interface steam_accounts_on_conflict {constraint: steam_accounts_constrai /** Ordering options when selecting data from "steam_accounts". */ -export interface steam_accounts_order_by {claims_aggregate?: (steam_account_claims_aggregate_order_by | null),created_at?: (order_by | null),id?: (order_by | null),last_node?: (game_server_nodes_order_by | null),last_node_id?: (order_by | null),password?: (order_by | null),updated_at?: (order_by | null),username?: (order_by | null)} +export interface steam_accounts_order_by {claims_aggregate?: (steam_account_claims_aggregate_order_by | null),created_at?: (order_by | null),friend_capacity?: (order_by | null),id?: (order_by | null),last_node?: (game_server_nodes_order_by | null),last_node_id?: (order_by | null),password?: (order_by | null),role?: (order_by | null),steamid64?: (order_by | null),updated_at?: (order_by | null),username?: (order_by | null)} /** primary key columns input for table: steam_accounts */ @@ -62145,7 +62875,34 @@ export interface steam_accounts_pk_columns_input {id: Scalars['uuid']} /** input type for updating data in table "steam_accounts" */ -export interface steam_accounts_set_input {created_at?: (Scalars['timestamptz'] | null),id?: (Scalars['uuid'] | null),last_node_id?: (Scalars['String'] | null),password?: (Scalars['String'] | null),updated_at?: (Scalars['timestamptz'] | null),username?: (Scalars['String'] | null)} +export interface steam_accounts_set_input {created_at?: (Scalars['timestamptz'] | null),friend_capacity?: (Scalars['Int'] | null),id?: (Scalars['uuid'] | null),last_node_id?: (Scalars['String'] | null),password?: (Scalars['String'] | null),role?: (Scalars['String'] | null),steamid64?: (Scalars['bigint'] | null),updated_at?: (Scalars['timestamptz'] | null),username?: (Scalars['String'] | null)} + + +/** aggregate stddev on columns */ +export interface steam_accounts_stddev_fieldsGenqlSelection{ + friend_capacity?: boolean | number + steamid64?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** aggregate stddev_pop on columns */ +export interface steam_accounts_stddev_pop_fieldsGenqlSelection{ + friend_capacity?: boolean | number + steamid64?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** aggregate stddev_samp on columns */ +export interface steam_accounts_stddev_samp_fieldsGenqlSelection{ + friend_capacity?: boolean | number + steamid64?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} /** Streaming cursor of the table "steam_accounts" */ @@ -62157,14 +62914,52 @@ ordering?: (cursor_ordering | null)} /** Initial value of the column from where the streaming should start */ -export interface steam_accounts_stream_cursor_value_input {created_at?: (Scalars['timestamptz'] | null),id?: (Scalars['uuid'] | null),last_node_id?: (Scalars['String'] | null),password?: (Scalars['String'] | null),updated_at?: (Scalars['timestamptz'] | null),username?: (Scalars['String'] | null)} +export interface steam_accounts_stream_cursor_value_input {created_at?: (Scalars['timestamptz'] | null),friend_capacity?: (Scalars['Int'] | null),id?: (Scalars['uuid'] | null),last_node_id?: (Scalars['String'] | null),password?: (Scalars['String'] | null),role?: (Scalars['String'] | null),steamid64?: (Scalars['bigint'] | null),updated_at?: (Scalars['timestamptz'] | null),username?: (Scalars['String'] | null)} + + +/** aggregate sum on columns */ +export interface steam_accounts_sum_fieldsGenqlSelection{ + friend_capacity?: boolean | number + steamid64?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} export interface steam_accounts_updates { +/** increments the numeric columns with given value of the filtered values */ +_inc?: (steam_accounts_inc_input | null), /** sets the columns of the filtered rows to the given values */ _set?: (steam_accounts_set_input | null), /** filter the rows which have to be updated */ where: steam_accounts_bool_exp} + +/** aggregate var_pop on columns */ +export interface steam_accounts_var_pop_fieldsGenqlSelection{ + friend_capacity?: boolean | number + steamid64?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** aggregate var_samp on columns */ +export interface steam_accounts_var_samp_fieldsGenqlSelection{ + friend_capacity?: boolean | number + steamid64?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** aggregate variance on columns */ +export interface steam_accounts_variance_fieldsGenqlSelection{ + friend_capacity?: boolean | number + steamid64?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + export interface subscription_rootGenqlSelection{ /** fetch data from the table: "_map_pool" */ _map_pool?: (_map_poolGenqlSelection & { __args?: { @@ -65234,6 +66029,40 @@ export interface subscription_rootGenqlSelection{ cursor: (player_stats_stream_cursor_input | null)[], /** filter the rows returned */ where?: (player_stats_bool_exp | null)} }) + /** fetch data from the table: "player_steam_bot_friend" */ + player_steam_bot_friend?: (player_steam_bot_friendGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (player_steam_bot_friend_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?: (player_steam_bot_friend_order_by[] | null), + /** filter the rows returned */ + where?: (player_steam_bot_friend_bool_exp | null)} }) + /** fetch aggregated fields from the table: "player_steam_bot_friend" */ + player_steam_bot_friend_aggregate?: (player_steam_bot_friend_aggregateGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (player_steam_bot_friend_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?: (player_steam_bot_friend_order_by[] | null), + /** filter the rows returned */ + where?: (player_steam_bot_friend_bool_exp | null)} }) + /** fetch data from the table: "player_steam_bot_friend" using primary key columns */ + player_steam_bot_friend_by_pk?: (player_steam_bot_friendGenqlSelection & { __args: {steam_id: Scalars['bigint']} }) + /** fetch data from the table in a streaming manner: "player_steam_bot_friend" */ + player_steam_bot_friend_stream?: (player_steam_bot_friendGenqlSelection & { __args: { + /** maximum number of rows returned in a single batch */ + batch_size: Scalars['Int'], + /** cursor to stream the results returned by the query */ + cursor: (player_steam_bot_friend_stream_cursor_input | null)[], + /** filter the rows returned */ + where?: (player_steam_bot_friend_bool_exp | null)} }) /** fetch data from the table: "player_steam_match_auth" */ player_steam_match_auth?: (player_steam_match_authGenqlSelection & { __args?: { /** distinct select on columns */ @@ -79593,6 +80422,46 @@ export type SubscriptionGenqlSelection = subscription_rootGenqlSelection + const SteamPresenceAdminStatusOutput_possibleTypes: string[] = ['SteamPresenceAdminStatusOutput'] + export const isSteamPresenceAdminStatusOutput = (obj?: { __typename?: any } | null): obj is SteamPresenceAdminStatusOutput => { + if (!obj?.__typename) throw new Error('__typename is missing in "isSteamPresenceAdminStatusOutput"') + return SteamPresenceAdminStatusOutput_possibleTypes.includes(obj.__typename) + } + + + + const SteamPresenceBot_possibleTypes: string[] = ['SteamPresenceBot'] + export const isSteamPresenceBot = (obj?: { __typename?: any } | null): obj is SteamPresenceBot => { + if (!obj?.__typename) throw new Error('__typename is missing in "isSteamPresenceBot"') + return SteamPresenceBot_possibleTypes.includes(obj.__typename) + } + + + + const SteamPresenceBotAssignment_possibleTypes: string[] = ['SteamPresenceBotAssignment'] + export const isSteamPresenceBotAssignment = (obj?: { __typename?: any } | null): obj is SteamPresenceBotAssignment => { + if (!obj?.__typename) throw new Error('__typename is missing in "isSteamPresenceBotAssignment"') + return SteamPresenceBotAssignment_possibleTypes.includes(obj.__typename) + } + + + + const SteamPresenceEvent_possibleTypes: string[] = ['SteamPresenceEvent'] + export const isSteamPresenceEvent = (obj?: { __typename?: any } | null): obj is SteamPresenceEvent => { + if (!obj?.__typename) throw new Error('__typename is missing in "isSteamPresenceEvent"') + return SteamPresenceEvent_possibleTypes.includes(obj.__typename) + } + + + + const SteamPresencePool_possibleTypes: string[] = ['SteamPresencePool'] + export const isSteamPresencePool = (obj?: { __typename?: any } | null): obj is SteamPresencePool => { + if (!obj?.__typename) throw new Error('__typename is missing in "isSteamPresencePool"') + return SteamPresencePool_possibleTypes.includes(obj.__typename) + } + + + const StorageStats_possibleTypes: string[] = ['StorageStats'] export const isStorageStats = (obj?: { __typename?: any } | null): obj is StorageStats => { if (!obj?.__typename) throw new Error('__typename is missing in "isStorageStats"') @@ -86945,6 +87814,118 @@ export type SubscriptionGenqlSelection = subscription_rootGenqlSelection + const player_steam_bot_friend_possibleTypes: string[] = ['player_steam_bot_friend'] + export const isplayer_steam_bot_friend = (obj?: { __typename?: any } | null): obj is player_steam_bot_friend => { + if (!obj?.__typename) throw new Error('__typename is missing in "isplayer_steam_bot_friend"') + return player_steam_bot_friend_possibleTypes.includes(obj.__typename) + } + + + + const player_steam_bot_friend_aggregate_possibleTypes: string[] = ['player_steam_bot_friend_aggregate'] + export const isplayer_steam_bot_friend_aggregate = (obj?: { __typename?: any } | null): obj is player_steam_bot_friend_aggregate => { + if (!obj?.__typename) throw new Error('__typename is missing in "isplayer_steam_bot_friend_aggregate"') + return player_steam_bot_friend_aggregate_possibleTypes.includes(obj.__typename) + } + + + + const player_steam_bot_friend_aggregate_fields_possibleTypes: string[] = ['player_steam_bot_friend_aggregate_fields'] + export const isplayer_steam_bot_friend_aggregate_fields = (obj?: { __typename?: any } | null): obj is player_steam_bot_friend_aggregate_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isplayer_steam_bot_friend_aggregate_fields"') + return player_steam_bot_friend_aggregate_fields_possibleTypes.includes(obj.__typename) + } + + + + const player_steam_bot_friend_avg_fields_possibleTypes: string[] = ['player_steam_bot_friend_avg_fields'] + export const isplayer_steam_bot_friend_avg_fields = (obj?: { __typename?: any } | null): obj is player_steam_bot_friend_avg_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isplayer_steam_bot_friend_avg_fields"') + return player_steam_bot_friend_avg_fields_possibleTypes.includes(obj.__typename) + } + + + + const player_steam_bot_friend_max_fields_possibleTypes: string[] = ['player_steam_bot_friend_max_fields'] + export const isplayer_steam_bot_friend_max_fields = (obj?: { __typename?: any } | null): obj is player_steam_bot_friend_max_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isplayer_steam_bot_friend_max_fields"') + return player_steam_bot_friend_max_fields_possibleTypes.includes(obj.__typename) + } + + + + const player_steam_bot_friend_min_fields_possibleTypes: string[] = ['player_steam_bot_friend_min_fields'] + export const isplayer_steam_bot_friend_min_fields = (obj?: { __typename?: any } | null): obj is player_steam_bot_friend_min_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isplayer_steam_bot_friend_min_fields"') + return player_steam_bot_friend_min_fields_possibleTypes.includes(obj.__typename) + } + + + + const player_steam_bot_friend_mutation_response_possibleTypes: string[] = ['player_steam_bot_friend_mutation_response'] + export const isplayer_steam_bot_friend_mutation_response = (obj?: { __typename?: any } | null): obj is player_steam_bot_friend_mutation_response => { + if (!obj?.__typename) throw new Error('__typename is missing in "isplayer_steam_bot_friend_mutation_response"') + return player_steam_bot_friend_mutation_response_possibleTypes.includes(obj.__typename) + } + + + + const player_steam_bot_friend_stddev_fields_possibleTypes: string[] = ['player_steam_bot_friend_stddev_fields'] + export const isplayer_steam_bot_friend_stddev_fields = (obj?: { __typename?: any } | null): obj is player_steam_bot_friend_stddev_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isplayer_steam_bot_friend_stddev_fields"') + return player_steam_bot_friend_stddev_fields_possibleTypes.includes(obj.__typename) + } + + + + const player_steam_bot_friend_stddev_pop_fields_possibleTypes: string[] = ['player_steam_bot_friend_stddev_pop_fields'] + export const isplayer_steam_bot_friend_stddev_pop_fields = (obj?: { __typename?: any } | null): obj is player_steam_bot_friend_stddev_pop_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isplayer_steam_bot_friend_stddev_pop_fields"') + return player_steam_bot_friend_stddev_pop_fields_possibleTypes.includes(obj.__typename) + } + + + + const player_steam_bot_friend_stddev_samp_fields_possibleTypes: string[] = ['player_steam_bot_friend_stddev_samp_fields'] + export const isplayer_steam_bot_friend_stddev_samp_fields = (obj?: { __typename?: any } | null): obj is player_steam_bot_friend_stddev_samp_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isplayer_steam_bot_friend_stddev_samp_fields"') + return player_steam_bot_friend_stddev_samp_fields_possibleTypes.includes(obj.__typename) + } + + + + const player_steam_bot_friend_sum_fields_possibleTypes: string[] = ['player_steam_bot_friend_sum_fields'] + export const isplayer_steam_bot_friend_sum_fields = (obj?: { __typename?: any } | null): obj is player_steam_bot_friend_sum_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isplayer_steam_bot_friend_sum_fields"') + return player_steam_bot_friend_sum_fields_possibleTypes.includes(obj.__typename) + } + + + + const player_steam_bot_friend_var_pop_fields_possibleTypes: string[] = ['player_steam_bot_friend_var_pop_fields'] + export const isplayer_steam_bot_friend_var_pop_fields = (obj?: { __typename?: any } | null): obj is player_steam_bot_friend_var_pop_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isplayer_steam_bot_friend_var_pop_fields"') + return player_steam_bot_friend_var_pop_fields_possibleTypes.includes(obj.__typename) + } + + + + const player_steam_bot_friend_var_samp_fields_possibleTypes: string[] = ['player_steam_bot_friend_var_samp_fields'] + export const isplayer_steam_bot_friend_var_samp_fields = (obj?: { __typename?: any } | null): obj is player_steam_bot_friend_var_samp_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isplayer_steam_bot_friend_var_samp_fields"') + return player_steam_bot_friend_var_samp_fields_possibleTypes.includes(obj.__typename) + } + + + + const player_steam_bot_friend_variance_fields_possibleTypes: string[] = ['player_steam_bot_friend_variance_fields'] + export const isplayer_steam_bot_friend_variance_fields = (obj?: { __typename?: any } | null): obj is player_steam_bot_friend_variance_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isplayer_steam_bot_friend_variance_fields"') + return player_steam_bot_friend_variance_fields_possibleTypes.includes(obj.__typename) + } + + + const player_steam_match_auth_possibleTypes: string[] = ['player_steam_match_auth'] export const isplayer_steam_match_auth = (obj?: { __typename?: any } | null): obj is player_steam_match_auth => { if (!obj?.__typename) throw new Error('__typename is missing in "isplayer_steam_match_auth"') @@ -87961,6 +88942,14 @@ export type SubscriptionGenqlSelection = subscription_rootGenqlSelection + const steam_accounts_avg_fields_possibleTypes: string[] = ['steam_accounts_avg_fields'] + export const issteam_accounts_avg_fields = (obj?: { __typename?: any } | null): obj is steam_accounts_avg_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "issteam_accounts_avg_fields"') + return steam_accounts_avg_fields_possibleTypes.includes(obj.__typename) + } + + + const steam_accounts_max_fields_possibleTypes: string[] = ['steam_accounts_max_fields'] export const issteam_accounts_max_fields = (obj?: { __typename?: any } | null): obj is steam_accounts_max_fields => { if (!obj?.__typename) throw new Error('__typename is missing in "issteam_accounts_max_fields"') @@ -87985,6 +88974,62 @@ export type SubscriptionGenqlSelection = subscription_rootGenqlSelection + const steam_accounts_stddev_fields_possibleTypes: string[] = ['steam_accounts_stddev_fields'] + export const issteam_accounts_stddev_fields = (obj?: { __typename?: any } | null): obj is steam_accounts_stddev_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "issteam_accounts_stddev_fields"') + return steam_accounts_stddev_fields_possibleTypes.includes(obj.__typename) + } + + + + const steam_accounts_stddev_pop_fields_possibleTypes: string[] = ['steam_accounts_stddev_pop_fields'] + export const issteam_accounts_stddev_pop_fields = (obj?: { __typename?: any } | null): obj is steam_accounts_stddev_pop_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "issteam_accounts_stddev_pop_fields"') + return steam_accounts_stddev_pop_fields_possibleTypes.includes(obj.__typename) + } + + + + const steam_accounts_stddev_samp_fields_possibleTypes: string[] = ['steam_accounts_stddev_samp_fields'] + export const issteam_accounts_stddev_samp_fields = (obj?: { __typename?: any } | null): obj is steam_accounts_stddev_samp_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "issteam_accounts_stddev_samp_fields"') + return steam_accounts_stddev_samp_fields_possibleTypes.includes(obj.__typename) + } + + + + const steam_accounts_sum_fields_possibleTypes: string[] = ['steam_accounts_sum_fields'] + export const issteam_accounts_sum_fields = (obj?: { __typename?: any } | null): obj is steam_accounts_sum_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "issteam_accounts_sum_fields"') + return steam_accounts_sum_fields_possibleTypes.includes(obj.__typename) + } + + + + const steam_accounts_var_pop_fields_possibleTypes: string[] = ['steam_accounts_var_pop_fields'] + export const issteam_accounts_var_pop_fields = (obj?: { __typename?: any } | null): obj is steam_accounts_var_pop_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "issteam_accounts_var_pop_fields"') + return steam_accounts_var_pop_fields_possibleTypes.includes(obj.__typename) + } + + + + const steam_accounts_var_samp_fields_possibleTypes: string[] = ['steam_accounts_var_samp_fields'] + export const issteam_accounts_var_samp_fields = (obj?: { __typename?: any } | null): obj is steam_accounts_var_samp_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "issteam_accounts_var_samp_fields"') + return steam_accounts_var_samp_fields_possibleTypes.includes(obj.__typename) + } + + + + const steam_accounts_variance_fields_possibleTypes: string[] = ['steam_accounts_variance_fields'] + export const issteam_accounts_variance_fields = (obj?: { __typename?: any } | null): obj is steam_accounts_variance_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "issteam_accounts_variance_fields"') + return steam_accounts_variance_fields_possibleTypes.includes(obj.__typename) + } + + + const subscription_root_possibleTypes: string[] = ['subscription_root'] export const issubscription_root = (obj?: { __typename?: any } | null): obj is subscription_root => { if (!obj?.__typename) throw new Error('__typename is missing in "issubscription_root"') @@ -95810,6 +96855,32 @@ export const enumPlayerStatsUpdateColumn = { player_steam_id: 'player_steam_id' as const } +export const enumPlayerSteamBotFriendConstraint = { + player_steam_bot_friend_pkey: 'player_steam_bot_friend_pkey' as const +} + +export const enumPlayerSteamBotFriendSelectColumn = { + bot_steam_account_id: 'bot_steam_account_id' as const, + bot_steamid64: 'bot_steamid64' as const, + created_at: 'created_at' as const, + friended_at: 'friended_at' as const, + last_presence_state: 'last_presence_state' as const, + status: 'status' as const, + steam_id: 'steam_id' as const, + updated_at: 'updated_at' as const +} + +export const enumPlayerSteamBotFriendUpdateColumn = { + bot_steam_account_id: 'bot_steam_account_id' as const, + bot_steamid64: 'bot_steamid64' as const, + created_at: 'created_at' as const, + friended_at: 'friended_at' as const, + last_presence_state: 'last_presence_state' as const, + status: 'status' as const, + steam_id: 'steam_id' as const, + updated_at: 'updated_at' as const +} + export const enumPlayerSteamMatchAuthConstraint = { player_steam_match_auth_pkey: 'player_steam_match_auth_pkey' as const } @@ -96113,18 +97184,24 @@ export const enumSteamAccountsConstraint = { export const enumSteamAccountsSelectColumn = { created_at: 'created_at' as const, + friend_capacity: 'friend_capacity' as const, id: 'id' as const, last_node_id: 'last_node_id' as const, password: 'password' as const, + role: 'role' as const, + steamid64: 'steamid64' as const, updated_at: 'updated_at' as const, username: 'username' as const } export const enumSteamAccountsUpdateColumn = { created_at: 'created_at' as const, + friend_capacity: 'friend_capacity' as const, id: 'id' as const, last_node_id: 'last_node_id' as const, password: 'password' as const, + role: 'role' as const, + steamid64: 'steamid64' as const, updated_at: 'updated_at' as const, username: 'username' as const } diff --git a/generated/types.ts b/generated/types.ts index 9d2fcca9..a5d4b215 100644 --- a/generated/types.ts +++ b/generated/types.ts @@ -3,539 +3,542 @@ export default { 3, 29, 38, - 70, - 87, - 95, - 99, - 111, - 122, - 134, - 147, - 156, - 164, + 75, + 92, + 100, + 104, + 116, + 127, + 139, + 152, + 161, 169, - 172, - 187, - 202, - 203, - 204, - 216, - 224, - 230, - 239, - 247, - 264, - 275, - 276, - 277, - 289, - 309, - 320, - 321, - 322, - 334, - 354, - 366, - 367, - 368, - 380, - 392, - 393, - 402, - 406, - 412, - 413, - 423, - 427, - 433, - 434, - 444, - 448, - 454, - 455, - 465, - 469, - 475, - 476, - 486, - 490, - 496, - 497, - 507, - 511, - 517, - 518, - 528, - 532, - 538, - 539, - 548, - 552, - 558, - 559, - 569, - 573, - 579, - 580, - 590, - 594, - 600, - 601, - 610, - 614, - 620, - 621, - 631, - 635, - 641, - 642, - 651, - 655, - 661, - 662, - 672, - 676, - 682, - 683, - 692, - 696, - 702, - 703, - 713, - 717, - 723, - 724, - 734, - 738, - 744, - 745, - 754, - 758, - 764, - 765, - 774, - 778, - 784, - 785, - 794, - 798, - 804, - 805, - 814, - 818, - 824, - 825, - 835, - 839, - 845, - 846, - 855, - 859, - 865, - 866, - 875, - 879, - 885, - 886, - 895, - 899, - 905, - 906, - 915, - 919, - 925, - 926, - 936, - 940, - 946, - 947, - 956, - 960, - 966, - 967, - 976, - 980, - 986, - 987, - 997, - 1001, - 1007, - 1008, - 1018, - 1022, - 1028, - 1029, - 1038, - 1042, - 1048, - 1049, - 1058, - 1062, - 1068, - 1069, - 1078, - 1082, - 1084, - 1091, - 1100, - 1108, - 1126, - 1142, - 1143, - 1144, - 1156, - 1170, - 1184, - 1192, - 1203, - 1216, - 1224, - 1231, - 1233, - 1235, - 1249, - 1265, - 1274, - 1278, - 1292, - 1303, - 1304, - 1305, - 1317, - 1329, - 1338, - 1342, - 1354, - 1365, - 1366, - 1367, + 174, + 177, + 192, + 207, + 208, + 209, + 221, + 229, + 235, + 244, + 252, + 269, + 280, + 281, + 282, + 294, + 314, + 325, + 326, + 327, + 339, + 359, + 371, + 372, + 373, + 385, + 397, + 398, + 407, + 411, + 417, + 418, + 428, + 432, + 438, + 439, + 449, + 453, + 459, + 460, + 470, + 474, + 480, + 481, + 491, + 495, + 501, + 502, + 512, + 516, + 522, + 523, + 533, + 537, + 543, + 544, + 553, + 557, + 563, + 564, + 574, + 578, + 584, + 585, + 595, + 599, + 605, + 606, + 615, + 619, + 625, + 626, + 636, + 640, + 646, + 647, + 656, + 660, + 666, + 667, + 677, + 681, + 687, + 688, + 697, + 701, + 707, + 708, + 718, + 722, + 728, + 729, + 739, + 743, + 749, + 750, + 759, + 763, + 769, + 770, + 779, + 783, + 789, + 790, + 799, + 803, + 809, + 810, + 819, + 823, + 829, + 830, + 840, + 844, + 850, + 851, + 860, + 864, + 870, + 871, + 880, + 884, + 890, + 891, + 900, + 904, + 910, + 911, + 920, + 924, + 930, + 931, + 941, + 945, + 951, + 952, + 961, + 965, + 971, + 972, + 981, + 985, + 991, + 992, + 1002, + 1006, + 1012, + 1013, + 1023, + 1027, + 1033, + 1034, + 1043, + 1047, + 1053, + 1054, + 1063, + 1067, + 1073, + 1074, + 1083, + 1087, + 1089, + 1096, + 1105, + 1113, + 1131, + 1147, + 1148, + 1149, + 1161, + 1175, + 1189, + 1197, + 1208, + 1221, + 1229, + 1236, + 1238, + 1240, + 1254, + 1270, + 1279, + 1283, + 1297, + 1308, + 1309, + 1310, + 1322, + 1334, + 1343, + 1347, + 1359, + 1370, 1371, - 1383, - 1395, - 1407, - 1426, - 1441, - 1453, - 1473, - 1484, - 1485, - 1486, - 1498, - 1516, - 1528, - 1540, - 1561, - 1577, - 1578, - 1579, - 1591, - 1609, - 1620, - 1632, - 1648, - 1658, - 1662, - 1674, - 1686, - 1698, - 1711, - 1721, - 1729, - 1742, - 1752, - 1756, - 1771, - 1786, - 1787, - 1788, - 1800, - 1812, - 1820, - 1824, - 1836, - 1848, - 1860, - 1872, - 1880, - 1884, - 1911, - 1912, - 1913, - 1937, - 1946, - 1954, - 1972, - 1987, - 1988, - 1989, - 2001, - 2009, - 2011, - 2022, - 2033, - 2045, - 2058, - 2068, - 2076, - 2086, - 2095, - 2103, - 2118, - 2129, - 2141, - 2161, - 2172, - 2173, - 2174, - 2186, - 2202, - 2222, - 2233, - 2245, - 2258, - 2267, - 2275, - 2290, - 2301, - 2313, - 2333, - 2344, - 2345, - 2346, - 2358, - 2388, - 2399, - 2411, - 2419, - 2430, - 2431, - 2432, - 2444, - 2463, - 2485, - 2496, - 2508, - 2524, - 2550, - 2577, - 2588, - 2600, - 2616, - 2636, - 2647, - 2659, - 2677, - 2688, - 2700, - 2713, - 2723, - 2731, - 2741, - 2750, - 2758, - 2773, - 2784, - 2796, - 2814, - 2825, - 2837, - 2861, - 2883, - 2893, - 2901, - 2911, + 1372, + 1376, + 1388, + 1400, + 1412, + 1431, + 1446, + 1458, + 1478, + 1489, + 1490, + 1491, + 1503, + 1521, + 1533, + 1545, + 1566, + 1582, + 1583, + 1584, + 1596, + 1614, + 1625, + 1637, + 1653, + 1663, + 1667, + 1679, + 1691, + 1703, + 1716, + 1726, + 1734, + 1747, + 1757, + 1761, + 1776, + 1791, + 1792, + 1793, + 1805, + 1817, + 1825, + 1829, + 1841, + 1853, + 1865, + 1877, + 1885, + 1889, + 1916, + 1917, + 1918, + 1942, + 1951, + 1959, + 1977, + 1992, + 1993, + 1994, + 2006, + 2014, + 2016, + 2027, + 2038, + 2050, + 2063, + 2073, + 2081, + 2091, + 2100, + 2108, + 2123, + 2134, + 2146, + 2166, + 2177, + 2178, + 2179, + 2191, + 2207, + 2227, + 2238, + 2250, + 2263, + 2272, + 2280, + 2295, + 2306, + 2318, + 2338, + 2349, + 2350, + 2351, + 2363, + 2393, + 2404, + 2416, + 2424, + 2435, + 2436, + 2437, + 2449, + 2468, + 2490, + 2501, + 2513, + 2529, + 2555, + 2582, + 2593, + 2605, + 2621, + 2641, + 2652, + 2664, + 2682, + 2693, + 2705, + 2718, + 2728, + 2736, + 2747, + 2760, + 2768, + 2778, + 2787, + 2795, + 2810, + 2821, + 2833, + 2851, + 2862, + 2874, + 2898, 2920, - 2928, - 2939, + 2930, + 2938, 2948, - 2956, - 2973, + 2957, + 2965, + 2976, 2985, - 2986, - 2987, - 2999, - 3011, - 3019, + 2993, + 3010, + 3022, 3023, - 3033, - 3043, - 3047, - 3053, - 3062, - 3066, - 3073, - 3082, - 3090, - 3105, - 3116, + 3024, + 3036, + 3048, + 3056, + 3060, + 3070, + 3080, + 3084, + 3091, + 3101, + 3109, + 3119, 3128, - 3148, - 3159, - 3160, - 3161, - 3173, - 3186, - 3195, - 3203, - 3218, - 3228, - 3229, - 3230, - 3234, - 3246, - 3257, - 3269, - 3289, - 3301, - 3302, + 3136, + 3151, + 3162, + 3174, + 3194, + 3205, + 3206, + 3207, + 3219, + 3232, + 3241, + 3249, + 3264, + 3274, + 3275, + 3276, + 3280, + 3292, 3303, 3315, - 3328, - 3338, - 3346, - 3356, - 3365, - 3373, - 3388, - 3400, - 3412, - 3420, - 3421, - 3435, - 3447, - 3448, - 3449, - 3461, - 3479, - 3490, - 3502, - 3523, - 3539, - 3540, - 3541, - 3553, - 3571, - 3582, - 3594, - 3612, - 3623, - 3635, - 3653, - 3665, - 3677, - 3697, - 3708, - 3709, - 3710, - 3722, - 3740, - 3752, - 3764, - 3784, - 3796, - 3797, + 3335, + 3347, + 3348, + 3349, + 3361, + 3374, + 3384, + 3392, + 3402, + 3411, + 3419, + 3434, + 3446, + 3458, + 3466, + 3467, + 3481, + 3493, + 3494, + 3495, + 3507, + 3525, + 3536, + 3548, + 3569, + 3585, + 3586, + 3587, + 3599, + 3617, + 3628, + 3640, + 3658, + 3669, + 3681, + 3699, + 3711, + 3723, + 3743, + 3754, + 3755, + 3756, + 3768, + 3786, 3798, 3810, - 3818, - 3829, - 3851, - 3879, - 3904, - 3922, - 3940, - 3961, - 3981, + 3830, + 3842, + 3843, + 3844, + 3856, + 3864, + 3875, + 3897, + 3925, + 3950, + 3968, + 3986, 4007, - 4032, - 4050, - 4086, - 4087, - 4088, - 4089, - 4090, - 4091, - 4092, - 4093, - 4094, - 4119, + 4027, + 4053, + 4078, + 4096, + 4132, + 4133, + 4134, + 4135, + 4136, 4137, - 4155, + 4138, + 4139, + 4140, + 4165, 4183, - 4210, - 4228, - 4246, - 4272, - 4297, - 4315, - 4342, + 4201, + 4229, + 4256, + 4274, + 4292, + 4318, 4343, - 4344, - 4357, - 4377, - 4397, - 4427, - 4439, - 4440, - 4441, - 4442, + 4361, + 4388, + 4389, + 4390, + 4403, + 4423, 4443, - 4444, - 4445, - 4446, - 4447, - 4459, + 4473, + 4485, + 4486, + 4487, + 4488, + 4489, + 4490, + 4491, + 4492, 4493, - 4494, - 4495, - 4496, - 4497, - 4498, - 4499, - 4500, - 4501, + 4505, + 4539, + 4540, + 4541, + 4542, + 4543, 4544, 4545, 4546, 4547, - 4548, - 4549, - 4550, - 4551, - 4552 + 4590, + 4591, + 4592, + 4593, + 4594, + 4595, + 4596, + 4597, + 4598 ], "types": { "ActiveConnection": { "application_name": [ - 70 + 75 ], "client_addr": [ - 70 + 75 ], "pid": [ 38 ], "query": [ - 70 + 75 ], "query_start": [ - 3420 + 3466 ], "state": [ - 70 + 75 ], "usename": [ - 70 + 75 ], "__typename": [ - 70 + 75 ] }, "ActiveQuery": { "application_name": [ - 70 + 75 ], "client_addr": [ - 70 + 75 ], "duration_seconds": [ 29 @@ -544,33 +547,33 @@ export default { 38 ], "query": [ - 70 + 75 ], "query_start": [ - 3420 + 3466 ], "state": [ - 70 + 75 ], "usename": [ - 70 + 75 ], "wait_event": [ - 70 + 75 ], "wait_event_type": [ - 70 + 75 ], "__typename": [ - 70 + 75 ] }, "ApiKeyResponse": { "key": [ - 70 + 75 ], "__typename": [ - 70 + 75 ] }, "Boolean": {}, @@ -603,7 +606,7 @@ export default { 3 ], "__typename": [ - 70 + 75 ] }, "ClipAudioInput": { @@ -617,27 +620,27 @@ export default { 38 ], "track_url": [ - 70 + 75 ], "volume": [ 29 ], "__typename": [ - 70 + 75 ] }, "ClipOutputInput": { "format": [ - 70 + 75 ], "fps": [ 38 ], "resolution": [ - 70 + 75 ], "__typename": [ - 70 + 75 ] }, "ClipOverlayInput": { @@ -645,16 +648,16 @@ export default { 38 ], "payload": [ - 1235 + 1240 ], "start_ms": [ 38 ], "type": [ - 70 + 75 ], "__typename": [ - 70 + 75 ] }, "ClipSegmentInput": { @@ -662,13 +665,13 @@ export default { 38 ], "pov_steam_id": [ - 70 + 75 ], "start_tick": [ 38 ], "__typename": [ - 70 + 75 ] }, "ClipSpecInput": { @@ -676,10 +679,10 @@ export default { 5 ], "destination": [ - 70 + 75 ], "match_map_id": [ - 3818 + 3864 ], "output": [ 6 @@ -691,10 +694,10 @@ export default { 8 ], "title": [ - 70 + 75 ], "__typename": [ - 70 + 75 ] }, "ConnectionByState": { @@ -702,16 +705,16 @@ export default { 38 ], "state": [ - 70 + 75 ], "wait_event_type": [ - 70 + 75 ], "waiting_count": [ 38 ], "__typename": [ - 70 + 75 ] }, "ConnectionStats": { @@ -734,51 +737,51 @@ export default { 38 ], "__typename": [ - 70 + 75 ] }, "CpuStat": { "time": [ - 3420 + 3466 ], "total": [ - 169 + 174 ], "used": [ - 169 + 174 ], "window": [ 29 ], "__typename": [ - 70 + 75 ] }, "CreateClipRenderOutput": { "job_id": [ - 3818 + 3864 ], "success": [ 3 ], "__typename": [ - 70 + 75 ] }, "CreateDraftGameOutput": { "draftGameId": [ - 3818 + 3864 ], "__typename": [ - 70 + 75 ] }, "CreateScheduledMatchOutput": { "matchId": [ - 3818 + 3864 ], "__typename": [ - 70 + 75 ] }, "DatabaseStats": { @@ -795,7 +798,7 @@ export default { 38 ], "datname": [ - 70 + 75 ], "deadlocks": [ 38 @@ -825,7 +828,7 @@ export default { 38 ], "__typename": [ - 70 + 75 ] }, "DbStats": { @@ -848,10 +851,10 @@ export default { 29 ], "query": [ - 70 + 75 ], "queryid": [ - 70 + 75 ], "shared_blks_hit": [ 38 @@ -866,24 +869,24 @@ export default { 38 ], "__typename": [ - 70 + 75 ] }, "DedicatedSeverInfo": { "id": [ - 70 + 75 ], "lastPing": [ - 70 + 75 ], "map": [ - 70 + 75 ], "players": [ 38 ], "__typename": [ - 70 + 75 ] }, "DeleteOrphansOutput": { @@ -900,30 +903,30 @@ export default { 3 ], "__typename": [ - 70 + 75 ] }, "DiskStat": { "available": [ - 70 + 75 ], "filesystem": [ - 70 + 75 ], "mountpoint": [ - 70 + 75 ], "size": [ - 70 + 75 ], "used": [ - 70 + 75 ], "usedPercent": [ - 70 + 75 ], "__typename": [ - 70 + 75 ] }, "DiskStats": { @@ -931,10 +934,10 @@ export default { 20 ], "time": [ - 3420 + 3466 ], "__typename": [ - 70 + 75 ] }, "DraftGamePreviewOutput": { @@ -942,25 +945,25 @@ export default { 38 ], "access": [ - 70 + 75 ], "capacity": [ 38 ], "host_avatar_url": [ - 70 + 75 ], "host_name": [ - 70 + 75 ], "host_steam_id": [ - 70 + 75 ], "id": [ - 3818 + 3864 ], "mode": [ - 70 + 75 ], "players": [ 23 @@ -969,30 +972,30 @@ export default { 3 ], "status": [ - 70 + 75 ], "type": [ - 70 + 75 ], "__typename": [ - 70 + 75 ] }, "DraftGamePreviewPlayer": { "avatar_url": [ - 70 + 75 ], "name": [ - 70 + 75 ], "status": [ - 70 + 75 ], "steam_id": [ - 70 + 75 ], "__typename": [ - 70 + 75 ] }, "FaceitTestOutput": { @@ -1003,32 +1006,32 @@ export default { 25 ], "__typename": [ - 70 + 75 ] }, "FaceitTestResult": { "detail": [ - 70 + 75 ], "ok": [ 3 ], "__typename": [ - 70 + 75 ] }, "FileContentResponse": { "content": [ - 70 + 75 ], "path": [ - 70 + 75 ], "size": [ - 169 + 174 ], "__typename": [ - 70 + 75 ] }, "FileItem": { @@ -1036,33 +1039,33 @@ export default { 3 ], "modified": [ - 3420 + 3466 ], "name": [ - 70 + 75 ], "path": [ - 70 + 75 ], "size": [ - 169 + 174 ], "type": [ - 70 + 75 ], "__typename": [ - 70 + 75 ] }, "FileListResponse": { "currentPath": [ - 70 + 75 ], "items": [ 27 ], "__typename": [ - 70 + 75 ] }, "Float": {}, @@ -1095,18 +1098,18 @@ export default { 29 ], "__typename": [ - 70 + 75 ] }, "GetTestUploadResponse": { "error": [ - 70 + 75 ], "link": [ - 70 + 75 ], "__typename": [ - 70 + 75 ] }, "GpuDeviceStat": { @@ -1120,7 +1123,7 @@ export default { 38 ], "name": [ - 70 + 75 ], "power_w": [ 38 @@ -1132,7 +1135,7 @@ export default { 38 ], "__typename": [ - 70 + 75 ] }, "GpuStats": { @@ -1140,10 +1143,10 @@ export default { 32 ], "time": [ - 3420 + 3466 ], "__typename": [ - 70 + 75 ] }, "HighlightPresetAvailability": { @@ -1163,7 +1166,7 @@ export default { 3 ], "__typename": [ - 70 + 75 ] }, "HypertableInfo": { @@ -1171,13 +1174,13 @@ export default { 3 ], "hypertable_name": [ - 70 + 75 ], "num_chunks": [ 38 ], "__typename": [ - 70 + 75 ] }, "IndexIOStat": { @@ -1188,16 +1191,16 @@ export default { 38 ], "indexname": [ - 70 + 75 ], "schemaname": [ - 70 + 75 ], "tablename": [ - 70 + 75 ], "__typename": [ - 70 + 75 ] }, "IndexStat": { @@ -1214,19 +1217,19 @@ export default { 38 ], "indexname": [ - 70 + 75 ], "schemaname": [ - 70 + 75 ], "table_size": [ 38 ], "tablename": [ - 70 + 75 ], "__typename": [ - 70 + 75 ] }, "Int": {}, @@ -1259,7 +1262,7 @@ export default { 38 ], "__typename": [ - 70 + 75 ] }, "KickResult": { @@ -1267,45 +1270,45 @@ export default { 3 ], "message": [ - 70 + 75 ], "__typename": [ - 70 + 75 ] }, "LiveSpecGsi": { "map_name": [ - 70 + 75 ], "map_phase": [ - 70 + 75 ], "round_number": [ 38 ], "round_phase": [ - 70 + 75 ], "spec_slots": [ 42 ], "spectated_steam_id": [ - 70 + 75 ], "team_ct_name": [ - 70 + 75 ], "team_ct_score": [ 38 ], "team_t_name": [ - 70 + 75 ], "team_t_score": [ 38 ], "__typename": [ - 70 + 75 ] }, "LiveSpecSlot": { @@ -1316,19 +1319,19 @@ export default { 38 ], "name": [ - 70 + 75 ], "slot": [ 38 ], "steam_id": [ - 70 + 75 ], "team": [ - 70 + 75 ], "__typename": [ - 70 + 75 ] }, "LiveStreamSpecState": { @@ -1336,7 +1339,7 @@ export default { 41 ], "__typename": [ - 70 + 75 ] }, "LockInfo": { @@ -1344,71 +1347,71 @@ export default { 3 ], "locktype": [ - 70 + 75 ], "mode": [ - 70 + 75 ], "pid": [ 38 ], "query": [ - 70 + 75 ], "relation": [ - 70 + 75 ], "usename": [ - 70 + 75 ], "__typename": [ - 70 + 75 ] }, "MeResponse": { "avatar_url": [ - 70 + 75 ], "country": [ - 70 + 75 ], "discord_id": [ - 70 + 75 ], "language": [ - 70 + 75 ], "name": [ - 70 + 75 ], "player": [ - 2878 + 2915 ], "profile_url": [ - 70 + 75 ], "role": [ - 70 + 75 ], "steam_id": [ - 70 + 75 ], "__typename": [ - 70 + 75 ] }, "MemoryStat": { "time": [ - 3420 + 3466 ], "total": [ - 169 + 174 ], "used": [ - 169 + 174 ], "__typename": [ - 70 + 75 ] }, "NetworkStats": { @@ -1416,65 +1419,65 @@ export default { 49 ], "time": [ - 3420 + 3466 ], "__typename": [ - 70 + 75 ] }, "NewsPost": { "author_steam_id": [ - 70 + 75 ], "content_markdown": [ - 70 + 75 ], "cover_image_url": [ - 70 + 75 ], "created_at": [ - 70 + 75 ], "id": [ - 3818 + 3864 ], "published_at": [ - 70 + 75 ], "slug": [ - 70 + 75 ], "status": [ - 70 + 75 ], "teaser": [ - 70 + 75 ], "title": [ - 70 + 75 ], "updated_at": [ - 70 + 75 ], "view_count": [ - 169 + 174 ], "__typename": [ - 70 + 75 ] }, "NicStat": { "name": [ - 70 + 75 ], "rx": [ - 169 + 174 ], "tx": [ - 169 + 174 ], "__typename": [ - 70 + 75 ] }, "NodeStats": { @@ -1494,26 +1497,26 @@ export default { 47 ], "node": [ - 70 + 75 ], "__typename": [ - 70 + 75 ] }, "OrphanObject": { "key": [ - 70 + 75 ], "size": [ 29 ], "__typename": [ - 70 + 75 ] }, "OrphanScanResultOutput": { "bucket": [ - 70 + 75 ], "clip_bytes": [ 29 @@ -1546,7 +1549,7 @@ export default { 38 ], "scanned_at": [ - 70 + 75 ], "scanning": [ 3 @@ -1564,18 +1567,18 @@ export default { 38 ], "__typename": [ - 70 + 75 ] }, "PendingMatchImportActionOutput": { "error": [ - 70 + 75 ], "success": [ 3 ], "__typename": [ - 70 + 75 ] }, "PodStats": { @@ -1586,38 +1589,38 @@ export default { 46 ], "name": [ - 70 + 75 ], "node": [ - 70 + 75 ], "__typename": [ - 70 + 75 ] }, "PreviewTournamentMatchResetOutput": { "impacts": [ - 81 + 86 ], "__typename": [ - 70 + 75 ] }, "QueryDetail": { "explain_plan": [ - 70 + 75 ], "query": [ - 70 + 75 ], "queryid": [ - 70 + 75 ], "stats": [ 57 ], "__typename": [ - 70 + 75 ] }, "QueryStat": { @@ -1643,10 +1646,10 @@ export default { 29 ], "query": [ - 70 + 75 ], "queryid": [ - 70 + 75 ], "shared_blks_hit": [ 38 @@ -1667,7 +1670,7 @@ export default { 38 ], "__typename": [ - 70 + 75 ] }, "ReparseAllStartedOutput": { @@ -1678,7 +1681,7 @@ export default { 3 ], "__typename": [ - 70 + 75 ] }, "ReparseAllStatusOutput": { @@ -1689,25 +1692,25 @@ export default { 38 ], "current_demo_id": [ - 70 + 75 ], "failed": [ 38 ], "finished_at": [ - 70 + 75 ], "running": [ 3 ], "started_at": [ - 70 + 75 ], "total": [ 38 ], "__typename": [ - 70 + 75 ] }, "SanctionResult": { @@ -1715,13 +1718,13 @@ export default { 3 ], "id": [ - 70 + 75 ], "message": [ - 70 + 75 ], "__typename": [ - 70 + 75 ] }, "ScanStartedOutput": { @@ -1732,59 +1735,59 @@ export default { 3 ], "__typename": [ - 70 + 75 ] }, "ScheduledLineupInput": { "steam_ids": [ - 70 + 75 ], "team_id": [ - 70 + 75 ], "__typename": [ - 70 + 75 ] }, "ScrimCalendarOutput": { "url": [ - 70 + 75 ], "__typename": [ - 70 + 75 ] }, "ServerPlayer": { "name": [ - 70 + 75 ], "steam_id": [ - 70 + 75 ], "__typename": [ - 70 + 75 ] }, "SetupGameServeOutput": { "gameServerId": [ - 70 + 75 ], "link": [ - 70 + 75 ], "__typename": [ - 70 + 75 ] }, "SteamMatchHistoryLinkOutput": { "error": [ - 70 + 75 ], "success": [ 3 ], "__typename": [ - 70 + 75 ] }, "SteamMatchHistoryPollOutput": { @@ -1792,24 +1795,127 @@ export default { 38 ], "error": [ - 70 + 75 ], "success": [ 3 ], "__typename": [ - 70 + 75 + ] + }, + "SteamPresenceAdminStatusOutput": { + "bots": [ + 69 + ], + "enabled": [ + 3 + ], + "events": [ + 71 + ], + "pool": [ + 72 + ], + "__typename": [ + 75 + ] + }, + "SteamPresenceBot": { + "assigned": [ + 38 + ], + "capacity": [ + 38 + ], + "guardLastWrong": [ + 3 + ], + "guardType": [ + 75 + ], + "id": [ + 75 + ], + "needs2fa": [ + 3 + ], + "online": [ + 3 + ], + "steamId": [ + 75 + ], + "username": [ + 75 + ], + "watching": [ + 38 + ], + "__typename": [ + 75 + ] + }, + "SteamPresenceBotAssignment": { + "addUrl": [ + 75 + ], + "enabled": [ + 3 + ], + "status": [ + 75 + ], + "steamId": [ + 75 + ], + "__typename": [ + 75 + ] + }, + "SteamPresenceEvent": { + "message": [ + 75 + ], + "ts": [ + 75 + ], + "type": [ + 75 + ], + "__typename": [ + 75 + ] + }, + "SteamPresencePool": { + "bots": [ + 38 + ], + "capacity": [ + 38 + ], + "online": [ + 38 + ], + "pending": [ + 38 + ], + "watching": [ + 38 + ], + "__typename": [ + 75 ] }, "StorageStats": { "summary": [ - 69 + 74 ], "tables": [ - 75 + 80 ], "__typename": [ - 70 + 75 ] }, "StorageSummary": { @@ -1826,108 +1932,108 @@ export default { 29 ], "__typename": [ - 70 + 75 ] }, "String": {}, "String_array_comparison_exp": { "_contained_in": [ - 70 + 75 ], "_contains": [ - 70 + 75 ], "_eq": [ - 70 + 75 ], "_gt": [ - 70 + 75 ], "_gte": [ - 70 + 75 ], "_in": [ - 70 + 75 ], "_is_null": [ 3 ], "_lt": [ - 70 + 75 ], "_lte": [ - 70 + 75 ], "_neq": [ - 70 + 75 ], "_nin": [ - 70 + 75 ], "__typename": [ - 70 + 75 ] }, "String_comparison_exp": { "_eq": [ - 70 + 75 ], "_gt": [ - 70 + 75 ], "_gte": [ - 70 + 75 ], "_ilike": [ - 70 + 75 ], "_in": [ - 70 + 75 ], "_iregex": [ - 70 + 75 ], "_is_null": [ 3 ], "_like": [ - 70 + 75 ], "_lt": [ - 70 + 75 ], "_lte": [ - 70 + 75 ], "_neq": [ - 70 + 75 ], "_nilike": [ - 70 + 75 ], "_nin": [ - 70 + 75 ], "_niregex": [ - 70 + 75 ], "_nlike": [ - 70 + 75 ], "_nregex": [ - 70 + 75 ], "_nsimilar": [ - 70 + 75 ], "_regex": [ - 70 + 75 ], "_similar": [ - 70 + 75 ], "__typename": [ - 70 + 75 ] }, "SuccessOutput": { @@ -1935,7 +2041,7 @@ export default { 3 ], "__typename": [ - 70 + 75 ] }, "TableIOStat": { @@ -1955,13 +2061,13 @@ export default { 38 ], "relname": [ - 70 + 75 ], "schemaname": [ - 70 + 75 ], "__typename": [ - 70 + 75 ] }, "TableSizeInfo": { @@ -1978,19 +2084,19 @@ export default { 38 ], "schemaname": [ - 70 + 75 ], "table_size": [ 29 ], "tablename": [ - 70 + 75 ], "total_size": [ 29 ], "__typename": [ - 70 + 75 ] }, "TableStat": { @@ -2001,16 +2107,16 @@ export default { 38 ], "last_analyze": [ - 3420 + 3466 ], "last_autoanalyze": [ - 3420 + 3466 ], "last_autovacuum": [ - 3420 + 3466 ], "last_vacuum": [ - 3420 + 3466 ], "n_dead_tup": [ 38 @@ -2031,10 +2137,10 @@ export default { 38 ], "relname": [ - 70 + 75 ], "schemaname": [ - 70 + 75 ], "seq_scan": [ 38 @@ -2043,7 +2149,7 @@ export default { 38 ], "__typename": [ - 70 + 75 ] }, "TelemetryStats": { @@ -2051,35 +2157,35 @@ export default { 38 ], "__typename": [ - 70 + 75 ] }, "TestUploadResponse": { "error": [ - 70 + 75 ], "__typename": [ - 70 + 75 ] }, "TimescaleJob": { "hypertable_name": [ - 70 + 75 ], "job_id": [ 38 ], "job_type": [ - 70 + 75 ], "last_run_status": [ - 70 + 75 ], "next_start": [ - 3420 + 3466 ], "__typename": [ - 70 + 75 ] }, "TimescaleStats": { @@ -2090,15 +2196,15 @@ export default { 35 ], "jobs": [ - 79 + 84 ], "__typename": [ - 70 + 75 ] }, "TournamentMatchResetImpact": { "bracket_id": [ - 3818 + 3864 ], "depth": [ 38 @@ -2107,67 +2213,67 @@ export default { 3 ], "match_id": [ - 3818 + 3864 ], "match_number": [ 38 ], "match_status": [ - 70 + 75 ], "path": [ - 70 + 75 ], "round": [ 38 ], "stage_type": [ - 70 + 75 ], "will_delete_match": [ 3 ], "__typename": [ - 70 + 75 ] }, "WatchDemoOutput": { "match_map_id": [ - 70 + 75 ], "session_id": [ - 70 + 75 ], "stream_url": [ - 70 + 75 ], "success": [ 3 ], "__typename": [ - 70 + 75 ] }, "_map_pool": { "map_id": [ - 3818 + 3864 ], "map_pool_id": [ - 3818 + 3864 ], "__typename": [ - 70 + 75 ] }, "_map_pool_aggregate": { "aggregate": [ - 85 + 90 ], "nodes": [ - 83 + 88 ], "__typename": [ - 70 + 75 ] }, "_map_pool_aggregate_fields": { @@ -2175,7 +2281,7 @@ export default { 38, { "columns": [ - 95, + 100, "[_map_pool_select_column!]" ], "distinct": [ @@ -2184,67 +2290,67 @@ export default { } ], "max": [ - 89 + 94 ], "min": [ - 90 + 95 ], "__typename": [ - 70 + 75 ] }, "_map_pool_bool_exp": { "_and": [ - 86 + 91 ], "_not": [ - 86 + 91 ], "_or": [ - 86 + 91 ], "map_id": [ - 3820 + 3866 ], "map_pool_id": [ - 3820 + 3866 ], "__typename": [ - 70 + 75 ] }, "_map_pool_constraint": {}, "_map_pool_insert_input": { "map_id": [ - 3818 + 3864 ], "map_pool_id": [ - 3818 + 3864 ], "__typename": [ - 70 + 75 ] }, "_map_pool_max_fields": { "map_id": [ - 3818 + 3864 ], "map_pool_id": [ - 3818 + 3864 ], "__typename": [ - 70 + 75 ] }, "_map_pool_min_fields": { "map_id": [ - 3818 + 3864 ], "map_pool_id": [ - 3818 + 3864 ], "__typename": [ - 70 + 75 ] }, "_map_pool_mutation_response": { @@ -2252,153 +2358,153 @@ export default { 38 ], "returning": [ - 83 + 88 ], "__typename": [ - 70 + 75 ] }, "_map_pool_on_conflict": { "constraint": [ - 87 + 92 ], "update_columns": [ - 99 + 104 ], "where": [ - 86 + 91 ], "__typename": [ - 70 + 75 ] }, "_map_pool_order_by": { "map_id": [ - 2011 + 2016 ], "map_pool_id": [ - 2011 + 2016 ], "__typename": [ - 70 + 75 ] }, "_map_pool_pk_columns_input": { "map_id": [ - 3818 + 3864 ], "map_pool_id": [ - 3818 + 3864 ], "__typename": [ - 70 + 75 ] }, "_map_pool_select_column": {}, "_map_pool_set_input": { "map_id": [ - 3818 + 3864 ], "map_pool_id": [ - 3818 + 3864 ], "__typename": [ - 70 + 75 ] }, "_map_pool_stream_cursor_input": { "initial_value": [ - 98 + 103 ], "ordering": [ - 224 + 229 ], "__typename": [ - 70 + 75 ] }, "_map_pool_stream_cursor_value_input": { "map_id": [ - 3818 + 3864 ], "map_pool_id": [ - 3818 + 3864 ], "__typename": [ - 70 + 75 ] }, "_map_pool_update_column": {}, "_map_pool_updates": { "_set": [ - 96 + 101 ], "where": [ - 86 + 91 ], "__typename": [ - 70 + 75 ] }, "abandoned_matches": { "abandoned_at": [ - 3421 + 3467 ], "id": [ - 3818 + 3864 ], "steam_id": [ - 169 + 174 ], "__typename": [ - 70 + 75 ] }, "abandoned_matches_aggregate": { "aggregate": [ - 105 + 110 ], "nodes": [ - 101 + 106 ], "__typename": [ - 70 + 75 ] }, "abandoned_matches_aggregate_bool_exp": { "count": [ - 104 + 109 ], "__typename": [ - 70 + 75 ] }, "abandoned_matches_aggregate_bool_exp_count": { "arguments": [ - 122 + 127 ], "distinct": [ 3 ], "filter": [ - 110 + 115 ], "predicate": [ 39 ], "__typename": [ - 70 + 75 ] }, "abandoned_matches_aggregate_fields": { "avg": [ - 108 + 113 ], "count": [ 38, { "columns": [ - 122, + 127, "[abandoned_matches_select_column!]" ], "distinct": [ @@ -2407,83 +2513,83 @@ export default { } ], "max": [ - 114 + 119 ], "min": [ - 116 + 121 ], "stddev": [ - 124 + 129 ], "stddev_pop": [ - 126 + 131 ], "stddev_samp": [ - 128 + 133 ], "sum": [ - 132 + 137 ], "var_pop": [ - 136 + 141 ], "var_samp": [ - 138 + 143 ], "variance": [ - 140 + 145 ], "__typename": [ - 70 + 75 ] }, "abandoned_matches_aggregate_order_by": { "avg": [ - 109 + 114 ], "count": [ - 2011 + 2016 ], "max": [ - 115 + 120 ], "min": [ - 117 + 122 ], "stddev": [ - 125 + 130 ], "stddev_pop": [ - 127 + 132 ], "stddev_samp": [ - 129 + 134 ], "sum": [ - 133 + 138 ], "var_pop": [ - 137 + 142 ], "var_samp": [ - 139 + 144 ], "variance": [ - 141 + 146 ], "__typename": [ - 70 + 75 ] }, "abandoned_matches_arr_rel_insert_input": { "data": [ - 113 + 118 ], "on_conflict": [ - 119 + 124 ], "__typename": [ - 70 + 75 ] }, "abandoned_matches_avg_fields": { @@ -2491,117 +2597,117 @@ export default { 29 ], "__typename": [ - 70 + 75 ] }, "abandoned_matches_avg_order_by": { "steam_id": [ - 2011 + 2016 ], "__typename": [ - 70 + 75 ] }, "abandoned_matches_bool_exp": { "_and": [ - 110 + 115 ], "_not": [ - 110 + 115 ], "_or": [ - 110 + 115 ], "abandoned_at": [ - 3422 + 3468 ], "id": [ - 3820 + 3866 ], "steam_id": [ - 171 + 176 ], "__typename": [ - 70 + 75 ] }, "abandoned_matches_constraint": {}, "abandoned_matches_inc_input": { "steam_id": [ - 169 + 174 ], "__typename": [ - 70 + 75 ] }, "abandoned_matches_insert_input": { "abandoned_at": [ - 3421 + 3467 ], "id": [ - 3818 + 3864 ], "steam_id": [ - 169 + 174 ], "__typename": [ - 70 + 75 ] }, "abandoned_matches_max_fields": { "abandoned_at": [ - 3421 + 3467 ], "id": [ - 3818 + 3864 ], "steam_id": [ - 169 + 174 ], "__typename": [ - 70 + 75 ] }, "abandoned_matches_max_order_by": { "abandoned_at": [ - 2011 + 2016 ], "id": [ - 2011 + 2016 ], "steam_id": [ - 2011 + 2016 ], "__typename": [ - 70 + 75 ] }, "abandoned_matches_min_fields": { "abandoned_at": [ - 3421 + 3467 ], "id": [ - 3818 + 3864 ], "steam_id": [ - 169 + 174 ], "__typename": [ - 70 + 75 ] }, "abandoned_matches_min_order_by": { "abandoned_at": [ - 2011 + 2016 ], "id": [ - 2011 + 2016 ], "steam_id": [ - 2011 + 2016 ], "__typename": [ - 70 + 75 ] }, "abandoned_matches_mutation_response": { @@ -2609,61 +2715,61 @@ export default { 38 ], "returning": [ - 101 + 106 ], "__typename": [ - 70 + 75 ] }, "abandoned_matches_on_conflict": { "constraint": [ - 111 + 116 ], "update_columns": [ - 134 + 139 ], "where": [ - 110 + 115 ], "__typename": [ - 70 + 75 ] }, "abandoned_matches_order_by": { "abandoned_at": [ - 2011 + 2016 ], "id": [ - 2011 + 2016 ], "steam_id": [ - 2011 + 2016 ], "__typename": [ - 70 + 75 ] }, "abandoned_matches_pk_columns_input": { "id": [ - 3818 + 3864 ], "__typename": [ - 70 + 75 ] }, "abandoned_matches_select_column": {}, "abandoned_matches_set_input": { "abandoned_at": [ - 3421 + 3467 ], "id": [ - 3818 + 3864 ], "steam_id": [ - 169 + 174 ], "__typename": [ - 70 + 75 ] }, "abandoned_matches_stddev_fields": { @@ -2671,15 +2777,15 @@ export default { 29 ], "__typename": [ - 70 + 75 ] }, "abandoned_matches_stddev_order_by": { "steam_id": [ - 2011 + 2016 ], "__typename": [ - 70 + 75 ] }, "abandoned_matches_stddev_pop_fields": { @@ -2687,15 +2793,15 @@ export default { 29 ], "__typename": [ - 70 + 75 ] }, "abandoned_matches_stddev_pop_order_by": { "steam_id": [ - 2011 + 2016 ], "__typename": [ - 70 + 75 ] }, "abandoned_matches_stddev_samp_fields": { @@ -2703,71 +2809,71 @@ export default { 29 ], "__typename": [ - 70 + 75 ] }, "abandoned_matches_stddev_samp_order_by": { "steam_id": [ - 2011 + 2016 ], "__typename": [ - 70 + 75 ] }, "abandoned_matches_stream_cursor_input": { "initial_value": [ - 131 + 136 ], "ordering": [ - 224 + 229 ], "__typename": [ - 70 + 75 ] }, "abandoned_matches_stream_cursor_value_input": { "abandoned_at": [ - 3421 + 3467 ], "id": [ - 3818 + 3864 ], "steam_id": [ - 169 + 174 ], "__typename": [ - 70 + 75 ] }, "abandoned_matches_sum_fields": { "steam_id": [ - 169 + 174 ], "__typename": [ - 70 + 75 ] }, "abandoned_matches_sum_order_by": { "steam_id": [ - 2011 + 2016 ], "__typename": [ - 70 + 75 ] }, "abandoned_matches_update_column": {}, "abandoned_matches_updates": { "_inc": [ - 112 + 117 ], "_set": [ - 123 + 128 ], "where": [ - 110 + 115 ], "__typename": [ - 70 + 75 ] }, "abandoned_matches_var_pop_fields": { @@ -2775,15 +2881,15 @@ export default { 29 ], "__typename": [ - 70 + 75 ] }, "abandoned_matches_var_pop_order_by": { "steam_id": [ - 2011 + 2016 ], "__typename": [ - 70 + 75 ] }, "abandoned_matches_var_samp_fields": { @@ -2791,15 +2897,15 @@ export default { 29 ], "__typename": [ - 70 + 75 ] }, "abandoned_matches_var_samp_order_by": { "steam_id": [ - 2011 + 2016 ], "__typename": [ - 70 + 75 ] }, "abandoned_matches_variance_fields": { @@ -2807,57 +2913,57 @@ export default { 29 ], "__typename": [ - 70 + 75 ] }, "abandoned_matches_variance_order_by": { "steam_id": [ - 2011 + 2016 ], "__typename": [ - 70 + 75 ] }, "api_keys": { "created_at": [ - 3421 + 3467 ], "id": [ - 3818 + 3864 ], "label": [ - 70 + 75 ], "last_used_at": [ - 3421 + 3467 ], "steam_id": [ - 169 + 174 ], "__typename": [ - 70 + 75 ] }, "api_keys_aggregate": { "aggregate": [ - 144 + 149 ], "nodes": [ - 142 + 147 ], "__typename": [ - 70 + 75 ] }, "api_keys_aggregate_fields": { "avg": [ - 145 + 150 ], "count": [ 38, { "columns": [ - 156, + 161, "[api_keys_select_column!]" ], "distinct": [ @@ -2866,34 +2972,34 @@ export default { } ], "max": [ - 150 + 155 ], "min": [ - 151 + 156 ], "stddev": [ - 158 + 163 ], "stddev_pop": [ - 159 + 164 ], "stddev_samp": [ - 160 + 165 ], "sum": [ - 163 + 168 ], "var_pop": [ - 166 + 171 ], "var_samp": [ - 167 + 172 ], "variance": [ - 168 + 173 ], "__typename": [ - 70 + 75 ] }, "api_keys_avg_fields": { @@ -2901,105 +3007,105 @@ export default { 29 ], "__typename": [ - 70 + 75 ] }, "api_keys_bool_exp": { "_and": [ - 146 + 151 ], "_not": [ - 146 + 151 ], "_or": [ - 146 + 151 ], "created_at": [ - 3422 + 3468 ], "id": [ - 3820 + 3866 ], "label": [ - 72 + 77 ], "last_used_at": [ - 3422 + 3468 ], "steam_id": [ - 171 + 176 ], "__typename": [ - 70 + 75 ] }, "api_keys_constraint": {}, "api_keys_inc_input": { "steam_id": [ - 169 + 174 ], "__typename": [ - 70 + 75 ] }, "api_keys_insert_input": { "created_at": [ - 3421 + 3467 ], "id": [ - 3818 + 3864 ], "label": [ - 70 + 75 ], "last_used_at": [ - 3421 + 3467 ], "steam_id": [ - 169 + 174 ], "__typename": [ - 70 + 75 ] }, "api_keys_max_fields": { "created_at": [ - 3421 + 3467 ], "id": [ - 3818 + 3864 ], "label": [ - 70 + 75 ], "last_used_at": [ - 3421 + 3467 ], "steam_id": [ - 169 + 174 ], "__typename": [ - 70 + 75 ] }, "api_keys_min_fields": { "created_at": [ - 3421 + 3467 ], "id": [ - 3818 + 3864 ], "label": [ - 70 + 75 ], "last_used_at": [ - 3421 + 3467 ], "steam_id": [ - 169 + 174 ], "__typename": [ - 70 + 75 ] }, "api_keys_mutation_response": { @@ -3007,73 +3113,73 @@ export default { 38 ], "returning": [ - 142 + 147 ], "__typename": [ - 70 + 75 ] }, "api_keys_on_conflict": { "constraint": [ - 147 + 152 ], "update_columns": [ - 164 + 169 ], "where": [ - 146 + 151 ], "__typename": [ - 70 + 75 ] }, "api_keys_order_by": { "created_at": [ - 2011 + 2016 ], "id": [ - 2011 + 2016 ], "label": [ - 2011 + 2016 ], "last_used_at": [ - 2011 + 2016 ], "steam_id": [ - 2011 + 2016 ], "__typename": [ - 70 + 75 ] }, "api_keys_pk_columns_input": { "id": [ - 3818 + 3864 ], "__typename": [ - 70 + 75 ] }, "api_keys_select_column": {}, "api_keys_set_input": { "created_at": [ - 3421 + 3467 ], "id": [ - 3818 + 3864 ], "label": [ - 70 + 75 ], "last_used_at": [ - 3421 + 3467 ], "steam_id": [ - 169 + 174 ], "__typename": [ - 70 + 75 ] }, "api_keys_stddev_fields": { @@ -3081,7 +3187,7 @@ export default { 29 ], "__typename": [ - 70 + 75 ] }, "api_keys_stddev_pop_fields": { @@ -3089,7 +3195,7 @@ export default { 29 ], "__typename": [ - 70 + 75 ] }, "api_keys_stddev_samp_fields": { @@ -3097,61 +3203,61 @@ export default { 29 ], "__typename": [ - 70 + 75 ] }, "api_keys_stream_cursor_input": { "initial_value": [ - 162 + 167 ], "ordering": [ - 224 + 229 ], "__typename": [ - 70 + 75 ] }, "api_keys_stream_cursor_value_input": { "created_at": [ - 3421 + 3467 ], "id": [ - 3818 + 3864 ], "label": [ - 70 + 75 ], "last_used_at": [ - 3421 + 3467 ], "steam_id": [ - 169 + 174 ], "__typename": [ - 70 + 75 ] }, "api_keys_sum_fields": { "steam_id": [ - 169 + 174 ], "__typename": [ - 70 + 75 ] }, "api_keys_update_column": {}, "api_keys_updates": { "_inc": [ - 148 + 153 ], "_set": [ - 157 + 162 ], "where": [ - 146 + 151 ], "__typename": [ - 70 + 75 ] }, "api_keys_var_pop_fields": { @@ -3159,7 +3265,7 @@ export default { 29 ], "__typename": [ - 70 + 75 ] }, "api_keys_var_samp_fields": { @@ -3167,7 +3273,7 @@ export default { 29 ], "__typename": [ - 70 + 75 ] }, "api_keys_variance_fields": { @@ -3175,279 +3281,279 @@ export default { 29 ], "__typename": [ - 70 + 75 ] }, "bigint": {}, "bigint_array_comparison_exp": { "_contained_in": [ - 169 + 174 ], "_contains": [ - 169 + 174 ], "_eq": [ - 169 + 174 ], "_gt": [ - 169 + 174 ], "_gte": [ - 169 + 174 ], "_in": [ - 169 + 174 ], "_is_null": [ 3 ], "_lt": [ - 169 + 174 ], "_lte": [ - 169 + 174 ], "_neq": [ - 169 + 174 ], "_nin": [ - 169 + 174 ], "__typename": [ - 70 + 75 ] }, "bigint_comparison_exp": { "_eq": [ - 169 + 174 ], "_gt": [ - 169 + 174 ], "_gte": [ - 169 + 174 ], "_in": [ - 169 + 174 ], "_is_null": [ 3 ], "_lt": [ - 169 + 174 ], "_lte": [ - 169 + 174 ], "_neq": [ - 169 + 174 ], "_nin": [ - 169 + 174 ], "__typename": [ - 70 + 75 ] }, "bytea": {}, "bytea_comparison_exp": { "_eq": [ - 172 + 177 ], "_gt": [ - 172 + 177 ], "_gte": [ - 172 + 177 ], "_in": [ - 172 + 177 ], "_is_null": [ 3 ], "_lt": [ - 172 + 177 ], "_lte": [ - 172 + 177 ], "_neq": [ - 172 + 177 ], "_nin": [ - 172 + 177 ], "__typename": [ - 70 + 75 ] }, "clip_render_jobs": { "clip": [ - 1373 + 1378 ], "clip_id": [ - 3818 + 3864 ], "created_at": [ - 3421 + 3467 ], "error_message": [ - 70 + 75 ], "game_server_node": [ - 1113 + 1118 ], "game_server_node_id": [ - 70 + 75 ], "id": [ - 3818 + 3864 ], "k8s_job_name": [ - 70 + 75 ], "last_status_at": [ - 3421 + 3467 ], "match_map": [ - 1664 + 1669 ], "match_map_demo": [ - 1548 + 1553 ], "match_map_demo_id": [ - 3818 + 3864 ], "match_map_id": [ - 3818 + 3864 ], "paused": [ 3 ], "progress": [ - 2009 + 2014 ], "session_token": [ - 70 + 75 ], "sort_index": [ 38 ], "spec": [ - 1235, + 1240, { "path": [ - 70 + 75 ] } ], "status": [ - 70 + 75 ], "status_history": [ - 1235, + 1240, { "path": [ - 70 + 75 ] } ], "user": [ - 2878 + 2915 ], "user_steam_id": [ - 169 + 174 ], "__typename": [ - 70 + 75 ] }, "clip_render_jobs_aggregate": { "aggregate": [ - 180 + 185 ], "nodes": [ - 174 + 179 ], "__typename": [ - 70 + 75 ] }, "clip_render_jobs_aggregate_bool_exp": { "bool_and": [ - 177 + 182 ], "bool_or": [ - 178 + 183 ], "count": [ - 179 + 184 ], "__typename": [ - 70 + 75 ] }, "clip_render_jobs_aggregate_bool_exp_bool_and": { "arguments": [ - 203 + 208 ], "distinct": [ 3 ], "filter": [ - 186 + 191 ], "predicate": [ 4 ], "__typename": [ - 70 + 75 ] }, "clip_render_jobs_aggregate_bool_exp_bool_or": { "arguments": [ - 204 + 209 ], "distinct": [ 3 ], "filter": [ - 186 + 191 ], "predicate": [ 4 ], "__typename": [ - 70 + 75 ] }, "clip_render_jobs_aggregate_bool_exp_count": { "arguments": [ - 202 + 207 ], "distinct": [ 3 ], "filter": [ - 186 + 191 ], "predicate": [ 39 ], "__typename": [ - 70 + 75 ] }, "clip_render_jobs_aggregate_fields": { "avg": [ - 184 + 189 ], "count": [ 38, { "columns": [ - 202, + 207, "[clip_render_jobs_select_column!]" ], "distinct": [ @@ -3456,94 +3562,94 @@ export default { } ], "max": [ - 193 + 198 ], "min": [ - 195 + 200 ], "stddev": [ - 206 + 211 ], "stddev_pop": [ - 208 + 213 ], "stddev_samp": [ - 210 + 215 ], "sum": [ - 214 + 219 ], "var_pop": [ - 218 + 223 ], "var_samp": [ - 220 + 225 ], "variance": [ - 222 + 227 ], "__typename": [ - 70 + 75 ] }, "clip_render_jobs_aggregate_order_by": { "avg": [ - 185 + 190 ], "count": [ - 2011 + 2016 ], "max": [ - 194 + 199 ], "min": [ - 196 + 201 ], "stddev": [ - 207 + 212 ], "stddev_pop": [ - 209 + 214 ], "stddev_samp": [ - 211 + 216 ], "sum": [ - 215 + 220 ], "var_pop": [ - 219 + 224 ], "var_samp": [ - 221 + 226 ], "variance": [ - 223 + 228 ], "__typename": [ - 70 + 75 ] }, "clip_render_jobs_append_input": { "spec": [ - 1235 + 1240 ], "status_history": [ - 1235 + 1240 ], "__typename": [ - 70 + 75 ] }, "clip_render_jobs_arr_rel_insert_input": { "data": [ - 192 + 197 ], "on_conflict": [ - 198 + 203 ], "__typename": [ - 70 + 75 ] }, "clip_render_jobs_avg_fields": { @@ -3557,113 +3663,113 @@ export default { 29 ], "__typename": [ - 70 + 75 ] }, "clip_render_jobs_avg_order_by": { "progress": [ - 2011 + 2016 ], "sort_index": [ - 2011 + 2016 ], "user_steam_id": [ - 2011 + 2016 ], "__typename": [ - 70 + 75 ] }, "clip_render_jobs_bool_exp": { "_and": [ - 186 + 191 ], "_not": [ - 186 + 191 ], "_or": [ - 186 + 191 ], "clip": [ - 1382 + 1387 ], "clip_id": [ - 3820 + 3866 ], "created_at": [ - 3422 + 3468 ], "error_message": [ - 72 + 77 ], "game_server_node": [ - 1125 + 1130 ], "game_server_node_id": [ - 72 + 77 ], "id": [ - 3820 + 3866 ], "k8s_job_name": [ - 72 + 77 ], "last_status_at": [ - 3422 + 3468 ], "match_map": [ - 1673 + 1678 ], "match_map_demo": [ - 1560 + 1565 ], "match_map_demo_id": [ - 3820 + 3866 ], "match_map_id": [ - 3820 + 3866 ], "paused": [ 4 ], "progress": [ - 2010 + 2015 ], "session_token": [ - 72 + 77 ], "sort_index": [ 39 ], "spec": [ - 1237 + 1242 ], "status": [ - 72 + 77 ], "status_history": [ - 1237 + 1242 ], "user": [ - 2882 + 2919 ], "user_steam_id": [ - 171 + 176 ], "__typename": [ - 70 + 75 ] }, "clip_render_jobs_constraint": {}, "clip_render_jobs_delete_at_path_input": { "spec": [ - 70 + 75 ], "status_history": [ - 70 + 75 ], "__typename": [ - 70 + 75 ] }, "clip_render_jobs_delete_elem_input": { @@ -3674,291 +3780,291 @@ export default { 38 ], "__typename": [ - 70 + 75 ] }, "clip_render_jobs_delete_key_input": { "spec": [ - 70 + 75 ], "status_history": [ - 70 + 75 ], "__typename": [ - 70 + 75 ] }, "clip_render_jobs_inc_input": { "progress": [ - 2009 + 2014 ], "sort_index": [ 38 ], "user_steam_id": [ - 169 + 174 ], "__typename": [ - 70 + 75 ] }, "clip_render_jobs_insert_input": { "clip": [ - 1391 + 1396 ], "clip_id": [ - 3818 + 3864 ], "created_at": [ - 3421 + 3467 ], "error_message": [ - 70 + 75 ], "game_server_node": [ - 1137 + 1142 ], "game_server_node_id": [ - 70 + 75 ], "id": [ - 3818 + 3864 ], "k8s_job_name": [ - 70 + 75 ], "last_status_at": [ - 3421 + 3467 ], "match_map": [ - 1682 + 1687 ], "match_map_demo": [ - 1572 + 1577 ], "match_map_demo_id": [ - 3818 + 3864 ], "match_map_id": [ - 3818 + 3864 ], "paused": [ 3 ], "progress": [ - 2009 + 2014 ], "session_token": [ - 70 + 75 ], "sort_index": [ 38 ], "spec": [ - 1235 + 1240 ], "status": [ - 70 + 75 ], "status_history": [ - 1235 + 1240 ], "user": [ - 2889 + 2926 ], "user_steam_id": [ - 169 + 174 ], "__typename": [ - 70 + 75 ] }, "clip_render_jobs_max_fields": { "clip_id": [ - 3818 + 3864 ], "created_at": [ - 3421 + 3467 ], "error_message": [ - 70 + 75 ], "game_server_node_id": [ - 70 + 75 ], "id": [ - 3818 + 3864 ], "k8s_job_name": [ - 70 + 75 ], "last_status_at": [ - 3421 + 3467 ], "match_map_demo_id": [ - 3818 + 3864 ], "match_map_id": [ - 3818 + 3864 ], "progress": [ - 2009 + 2014 ], "session_token": [ - 70 + 75 ], "sort_index": [ 38 ], "status": [ - 70 + 75 ], "user_steam_id": [ - 169 + 174 ], "__typename": [ - 70 + 75 ] }, "clip_render_jobs_max_order_by": { "clip_id": [ - 2011 + 2016 ], "created_at": [ - 2011 + 2016 ], "error_message": [ - 2011 + 2016 ], "game_server_node_id": [ - 2011 + 2016 ], "id": [ - 2011 + 2016 ], "k8s_job_name": [ - 2011 + 2016 ], "last_status_at": [ - 2011 + 2016 ], "match_map_demo_id": [ - 2011 + 2016 ], "match_map_id": [ - 2011 + 2016 ], "progress": [ - 2011 + 2016 ], "session_token": [ - 2011 + 2016 ], "sort_index": [ - 2011 + 2016 ], "status": [ - 2011 + 2016 ], "user_steam_id": [ - 2011 + 2016 ], "__typename": [ - 70 + 75 ] }, "clip_render_jobs_min_fields": { "clip_id": [ - 3818 + 3864 ], "created_at": [ - 3421 + 3467 ], "error_message": [ - 70 + 75 ], "game_server_node_id": [ - 70 + 75 ], "id": [ - 3818 + 3864 ], "k8s_job_name": [ - 70 + 75 ], "last_status_at": [ - 3421 + 3467 ], "match_map_demo_id": [ - 3818 + 3864 ], "match_map_id": [ - 3818 + 3864 ], "progress": [ - 2009 + 2014 ], "session_token": [ - 70 + 75 ], "sort_index": [ 38 ], "status": [ - 70 + 75 ], "user_steam_id": [ - 169 + 174 ], "__typename": [ - 70 + 75 ] }, "clip_render_jobs_min_order_by": { "clip_id": [ - 2011 + 2016 ], "created_at": [ - 2011 + 2016 ], "error_message": [ - 2011 + 2016 ], "game_server_node_id": [ - 2011 + 2016 ], "id": [ - 2011 + 2016 ], "k8s_job_name": [ - 2011 + 2016 ], "last_status_at": [ - 2011 + 2016 ], "match_map_demo_id": [ - 2011 + 2016 ], "match_map_id": [ - 2011 + 2016 ], "progress": [ - 2011 + 2016 ], "session_token": [ - 2011 + 2016 ], "sort_index": [ - 2011 + 2016 ], "status": [ - 2011 + 2016 ], "user_steam_id": [ - 2011 + 2016 ], "__typename": [ - 70 + 75 ] }, "clip_render_jobs_mutation_response": { @@ -3966,114 +4072,114 @@ export default { 38 ], "returning": [ - 174 + 179 ], "__typename": [ - 70 + 75 ] }, "clip_render_jobs_on_conflict": { "constraint": [ - 187 + 192 ], "update_columns": [ - 216 + 221 ], "where": [ - 186 + 191 ], "__typename": [ - 70 + 75 ] }, "clip_render_jobs_order_by": { "clip": [ - 1393 + 1398 ], "clip_id": [ - 2011 + 2016 ], "created_at": [ - 2011 + 2016 ], "error_message": [ - 2011 + 2016 ], "game_server_node": [ - 1139 + 1144 ], "game_server_node_id": [ - 2011 + 2016 ], "id": [ - 2011 + 2016 ], "k8s_job_name": [ - 2011 + 2016 ], "last_status_at": [ - 2011 + 2016 ], "match_map": [ - 1684 + 1689 ], "match_map_demo": [ - 1574 + 1579 ], "match_map_demo_id": [ - 2011 + 2016 ], "match_map_id": [ - 2011 + 2016 ], "paused": [ - 2011 + 2016 ], "progress": [ - 2011 + 2016 ], "session_token": [ - 2011 + 2016 ], "sort_index": [ - 2011 + 2016 ], "spec": [ - 2011 + 2016 ], "status": [ - 2011 + 2016 ], "status_history": [ - 2011 + 2016 ], "user": [ - 2891 + 2928 ], "user_steam_id": [ - 2011 + 2016 ], "__typename": [ - 70 + 75 ] }, "clip_render_jobs_pk_columns_input": { "id": [ - 3818 + 3864 ], "__typename": [ - 70 + 75 ] }, "clip_render_jobs_prepend_input": { "spec": [ - 1235 + 1240 ], "status_history": [ - 1235 + 1240 ], "__typename": [ - 70 + 75 ] }, "clip_render_jobs_select_column": {}, @@ -4081,58 +4187,58 @@ export default { "clip_render_jobs_select_column_clip_render_jobs_aggregate_bool_exp_bool_or_arguments_columns": {}, "clip_render_jobs_set_input": { "clip_id": [ - 3818 + 3864 ], "created_at": [ - 3421 + 3467 ], "error_message": [ - 70 + 75 ], "game_server_node_id": [ - 70 + 75 ], "id": [ - 3818 + 3864 ], "k8s_job_name": [ - 70 + 75 ], "last_status_at": [ - 3421 + 3467 ], "match_map_demo_id": [ - 3818 + 3864 ], "match_map_id": [ - 3818 + 3864 ], "paused": [ 3 ], "progress": [ - 2009 + 2014 ], "session_token": [ - 70 + 75 ], "sort_index": [ 38 ], "spec": [ - 1235 + 1240 ], "status": [ - 70 + 75 ], "status_history": [ - 1235 + 1240 ], "user_steam_id": [ - 169 + 174 ], "__typename": [ - 70 + 75 ] }, "clip_render_jobs_stddev_fields": { @@ -4146,21 +4252,21 @@ export default { 29 ], "__typename": [ - 70 + 75 ] }, "clip_render_jobs_stddev_order_by": { "progress": [ - 2011 + 2016 ], "sort_index": [ - 2011 + 2016 ], "user_steam_id": [ - 2011 + 2016 ], "__typename": [ - 70 + 75 ] }, "clip_render_jobs_stddev_pop_fields": { @@ -4174,21 +4280,21 @@ export default { 29 ], "__typename": [ - 70 + 75 ] }, "clip_render_jobs_stddev_pop_order_by": { "progress": [ - 2011 + 2016 ], "sort_index": [ - 2011 + 2016 ], "user_steam_id": [ - 2011 + 2016 ], "__typename": [ - 70 + 75 ] }, "clip_render_jobs_stddev_samp_fields": { @@ -4202,146 +4308,146 @@ export default { 29 ], "__typename": [ - 70 + 75 ] }, "clip_render_jobs_stddev_samp_order_by": { "progress": [ - 2011 + 2016 ], "sort_index": [ - 2011 + 2016 ], "user_steam_id": [ - 2011 + 2016 ], "__typename": [ - 70 + 75 ] }, "clip_render_jobs_stream_cursor_input": { "initial_value": [ - 213 + 218 ], "ordering": [ - 224 + 229 ], "__typename": [ - 70 + 75 ] }, "clip_render_jobs_stream_cursor_value_input": { "clip_id": [ - 3818 + 3864 ], "created_at": [ - 3421 + 3467 ], "error_message": [ - 70 + 75 ], "game_server_node_id": [ - 70 + 75 ], "id": [ - 3818 + 3864 ], "k8s_job_name": [ - 70 + 75 ], "last_status_at": [ - 3421 + 3467 ], "match_map_demo_id": [ - 3818 + 3864 ], "match_map_id": [ - 3818 + 3864 ], "paused": [ 3 ], "progress": [ - 2009 + 2014 ], "session_token": [ - 70 + 75 ], "sort_index": [ 38 ], "spec": [ - 1235 + 1240 ], "status": [ - 70 + 75 ], "status_history": [ - 1235 + 1240 ], "user_steam_id": [ - 169 + 174 ], "__typename": [ - 70 + 75 ] }, "clip_render_jobs_sum_fields": { "progress": [ - 2009 + 2014 ], "sort_index": [ 38 ], "user_steam_id": [ - 169 + 174 ], "__typename": [ - 70 + 75 ] }, "clip_render_jobs_sum_order_by": { "progress": [ - 2011 + 2016 ], "sort_index": [ - 2011 + 2016 ], "user_steam_id": [ - 2011 + 2016 ], "__typename": [ - 70 + 75 ] }, "clip_render_jobs_update_column": {}, "clip_render_jobs_updates": { "_append": [ - 182 + 187 ], "_delete_at_path": [ - 188 + 193 ], "_delete_elem": [ - 189 + 194 ], "_delete_key": [ - 190 + 195 ], "_inc": [ - 191 + 196 ], "_prepend": [ - 201 + 206 ], "_set": [ - 205 + 210 ], "where": [ - 186 + 191 ], "__typename": [ - 70 + 75 ] }, "clip_render_jobs_var_pop_fields": { @@ -4355,21 +4461,21 @@ export default { 29 ], "__typename": [ - 70 + 75 ] }, "clip_render_jobs_var_pop_order_by": { "progress": [ - 2011 + 2016 ], "sort_index": [ - 2011 + 2016 ], "user_steam_id": [ - 2011 + 2016 ], "__typename": [ - 70 + 75 ] }, "clip_render_jobs_var_samp_fields": { @@ -4383,21 +4489,21 @@ export default { 29 ], "__typename": [ - 70 + 75 ] }, "clip_render_jobs_var_samp_order_by": { "progress": [ - 2011 + 2016 ], "sort_index": [ - 2011 + 2016 ], "user_steam_id": [ - 2011 + 2016 ], "__typename": [ - 70 + 75 ] }, "clip_render_jobs_variance_fields": { @@ -4411,61 +4517,61 @@ export default { 29 ], "__typename": [ - 70 + 75 ] }, "clip_render_jobs_variance_order_by": { "progress": [ - 2011 + 2016 ], "sort_index": [ - 2011 + 2016 ], "user_steam_id": [ - 2011 + 2016 ], "__typename": [ - 70 + 75 ] }, "cursor_ordering": {}, "db_backups": { "created_at": [ - 3421 + 3467 ], "id": [ - 3818 + 3864 ], "name": [ - 70 + 75 ], "size": [ 38 ], "__typename": [ - 70 + 75 ] }, "db_backups_aggregate": { "aggregate": [ - 227 + 232 ], "nodes": [ - 225 + 230 ], "__typename": [ - 70 + 75 ] }, "db_backups_aggregate_fields": { "avg": [ - 228 + 233 ], "count": [ 38, { "columns": [ - 239, + 244, "[db_backups_select_column!]" ], "distinct": [ @@ -4474,34 +4580,34 @@ export default { } ], "max": [ - 233 + 238 ], "min": [ - 234 + 239 ], "stddev": [ - 241 + 246 ], "stddev_pop": [ - 242 + 247 ], "stddev_samp": [ - 243 + 248 ], "sum": [ - 246 + 251 ], "var_pop": [ - 249 + 254 ], "var_samp": [ - 250 + 255 ], "variance": [ - 251 + 256 ], "__typename": [ - 70 + 75 ] }, "db_backups_avg_fields": { @@ -4509,33 +4615,33 @@ export default { 29 ], "__typename": [ - 70 + 75 ] }, "db_backups_bool_exp": { "_and": [ - 229 + 234 ], "_not": [ - 229 + 234 ], "_or": [ - 229 + 234 ], "created_at": [ - 3422 + 3468 ], "id": [ - 3820 + 3866 ], "name": [ - 72 + 77 ], "size": [ 39 ], "__typename": [ - 70 + 75 ] }, "db_backups_constraint": {}, @@ -4544,58 +4650,58 @@ export default { 38 ], "__typename": [ - 70 + 75 ] }, "db_backups_insert_input": { "created_at": [ - 3421 + 3467 ], "id": [ - 3818 + 3864 ], "name": [ - 70 + 75 ], "size": [ 38 ], "__typename": [ - 70 + 75 ] }, "db_backups_max_fields": { "created_at": [ - 3421 + 3467 ], "id": [ - 3818 + 3864 ], "name": [ - 70 + 75 ], "size": [ 38 ], "__typename": [ - 70 + 75 ] }, "db_backups_min_fields": { "created_at": [ - 3421 + 3467 ], "id": [ - 3818 + 3864 ], "name": [ - 70 + 75 ], "size": [ 38 ], "__typename": [ - 70 + 75 ] }, "db_backups_mutation_response": { @@ -4603,67 +4709,67 @@ export default { 38 ], "returning": [ - 225 + 230 ], "__typename": [ - 70 + 75 ] }, "db_backups_on_conflict": { "constraint": [ - 230 + 235 ], "update_columns": [ - 247 + 252 ], "where": [ - 229 + 234 ], "__typename": [ - 70 + 75 ] }, "db_backups_order_by": { "created_at": [ - 2011 + 2016 ], "id": [ - 2011 + 2016 ], "name": [ - 2011 + 2016 ], "size": [ - 2011 + 2016 ], "__typename": [ - 70 + 75 ] }, "db_backups_pk_columns_input": { "id": [ - 3818 + 3864 ], "__typename": [ - 70 + 75 ] }, "db_backups_select_column": {}, "db_backups_set_input": { "created_at": [ - 3421 + 3467 ], "id": [ - 3818 + 3864 ], "name": [ - 70 + 75 ], "size": [ 38 ], "__typename": [ - 70 + 75 ] }, "db_backups_stddev_fields": { @@ -4671,7 +4777,7 @@ export default { 29 ], "__typename": [ - 70 + 75 ] }, "db_backups_stddev_pop_fields": { @@ -4679,7 +4785,7 @@ export default { 29 ], "__typename": [ - 70 + 75 ] }, "db_backups_stddev_samp_fields": { @@ -4687,35 +4793,35 @@ export default { 29 ], "__typename": [ - 70 + 75 ] }, "db_backups_stream_cursor_input": { "initial_value": [ - 245 + 250 ], "ordering": [ - 224 + 229 ], "__typename": [ - 70 + 75 ] }, "db_backups_stream_cursor_value_input": { "created_at": [ - 3421 + 3467 ], "id": [ - 3818 + 3864 ], "name": [ - 70 + 75 ], "size": [ 38 ], "__typename": [ - 70 + 75 ] }, "db_backups_sum_fields": { @@ -4723,22 +4829,22 @@ export default { 38 ], "__typename": [ - 70 + 75 ] }, "db_backups_update_column": {}, "db_backups_updates": { "_inc": [ - 231 + 236 ], "_set": [ - 240 + 245 ], "where": [ - 229 + 234 ], "__typename": [ - 70 + 75 ] }, "db_backups_var_pop_fields": { @@ -4746,7 +4852,7 @@ export default { 29 ], "__typename": [ - 70 + 75 ] }, "db_backups_var_samp_fields": { @@ -4754,7 +4860,7 @@ export default { 29 ], "__typename": [ - 70 + 75 ] }, "db_backups_variance_fields": { @@ -4762,7 +4868,7 @@ export default { 29 ], "__typename": [ - 70 + 75 ] }, "draft_game_picks": { @@ -4770,22 +4876,22 @@ export default { 3 ], "captain": [ - 2878 + 2915 ], "captain_steam_id": [ - 169 + 174 ], "created_at": [ - 3421 + 3467 ], "draft_game": [ - 342 + 347 ], "draft_game_id": [ - 3818 + 3864 ], "id": [ - 3818 + 3864 ], "is_organizer": [ 3 @@ -4794,100 +4900,100 @@ export default { 38 ], "picked": [ - 2878 + 2915 ], "picked_steam_id": [ - 169 + 174 ], "__typename": [ - 70 + 75 ] }, "draft_game_picks_aggregate": { "aggregate": [ - 258 + 263 ], "nodes": [ - 252 + 257 ], "__typename": [ - 70 + 75 ] }, "draft_game_picks_aggregate_bool_exp": { "bool_and": [ - 255 + 260 ], "bool_or": [ - 256 + 261 ], "count": [ - 257 + 262 ], "__typename": [ - 70 + 75 ] }, "draft_game_picks_aggregate_bool_exp_bool_and": { "arguments": [ - 276 + 281 ], "distinct": [ 3 ], "filter": [ - 263 + 268 ], "predicate": [ 4 ], "__typename": [ - 70 + 75 ] }, "draft_game_picks_aggregate_bool_exp_bool_or": { "arguments": [ - 277 + 282 ], "distinct": [ 3 ], "filter": [ - 263 + 268 ], "predicate": [ 4 ], "__typename": [ - 70 + 75 ] }, "draft_game_picks_aggregate_bool_exp_count": { "arguments": [ - 275 + 280 ], "distinct": [ 3 ], "filter": [ - 263 + 268 ], "predicate": [ 39 ], "__typename": [ - 70 + 75 ] }, "draft_game_picks_aggregate_fields": { "avg": [ - 261 + 266 ], "count": [ 38, { "columns": [ - 275, + 280, "[draft_game_picks_select_column!]" ], "distinct": [ @@ -4896,83 +5002,83 @@ export default { } ], "max": [ - 267 + 272 ], "min": [ - 269 + 274 ], "stddev": [ - 279 + 284 ], "stddev_pop": [ - 281 + 286 ], "stddev_samp": [ - 283 + 288 ], "sum": [ - 287 + 292 ], "var_pop": [ - 291 + 296 ], "var_samp": [ - 293 + 298 ], "variance": [ - 295 + 300 ], "__typename": [ - 70 + 75 ] }, "draft_game_picks_aggregate_order_by": { "avg": [ - 262 + 267 ], "count": [ - 2011 + 2016 ], "max": [ - 268 + 273 ], "min": [ - 270 + 275 ], "stddev": [ - 280 + 285 ], "stddev_pop": [ - 282 + 287 ], "stddev_samp": [ - 284 + 289 ], "sum": [ - 288 + 293 ], "var_pop": [ - 292 + 297 ], "var_samp": [ - 294 + 299 ], "variance": [ - 296 + 301 ], "__typename": [ - 70 + 75 ] }, "draft_game_picks_arr_rel_insert_input": { "data": [ - 266 + 271 ], "on_conflict": [ - 272 + 277 ], "__typename": [ - 70 + 75 ] }, "draft_game_picks_avg_fields": { @@ -4986,53 +5092,53 @@ export default { 29 ], "__typename": [ - 70 + 75 ] }, "draft_game_picks_avg_order_by": { "captain_steam_id": [ - 2011 + 2016 ], "lineup": [ - 2011 + 2016 ], "picked_steam_id": [ - 2011 + 2016 ], "__typename": [ - 70 + 75 ] }, "draft_game_picks_bool_exp": { "_and": [ - 263 + 268 ], "_not": [ - 263 + 268 ], "_or": [ - 263 + 268 ], "auto_picked": [ 4 ], "captain": [ - 2882 + 2919 ], "captain_steam_id": [ - 171 + 176 ], "created_at": [ - 3422 + 3468 ], "draft_game": [ - 353 + 358 ], "draft_game_id": [ - 3820 + 3866 ], "id": [ - 3820 + 3866 ], "is_organizer": [ 4 @@ -5041,28 +5147,28 @@ export default { 39 ], "picked": [ - 2882 + 2919 ], "picked_steam_id": [ - 171 + 176 ], "__typename": [ - 70 + 75 ] }, "draft_game_picks_constraint": {}, "draft_game_picks_inc_input": { "captain_steam_id": [ - 169 + 174 ], "lineup": [ 38 ], "picked_steam_id": [ - 169 + 174 ], "__typename": [ - 70 + 75 ] }, "draft_game_picks_insert_input": { @@ -5070,126 +5176,126 @@ export default { 3 ], "captain": [ - 2889 + 2926 ], "captain_steam_id": [ - 169 + 174 ], "created_at": [ - 3421 + 3467 ], "draft_game": [ - 362 + 367 ], "draft_game_id": [ - 3818 + 3864 ], "id": [ - 3818 + 3864 ], "lineup": [ 38 ], "picked": [ - 2889 + 2926 ], "picked_steam_id": [ - 169 + 174 ], "__typename": [ - 70 + 75 ] }, "draft_game_picks_max_fields": { "captain_steam_id": [ - 169 + 174 ], "created_at": [ - 3421 + 3467 ], "draft_game_id": [ - 3818 + 3864 ], "id": [ - 3818 + 3864 ], "lineup": [ 38 ], "picked_steam_id": [ - 169 + 174 ], "__typename": [ - 70 + 75 ] }, "draft_game_picks_max_order_by": { "captain_steam_id": [ - 2011 + 2016 ], "created_at": [ - 2011 + 2016 ], "draft_game_id": [ - 2011 + 2016 ], "id": [ - 2011 + 2016 ], "lineup": [ - 2011 + 2016 ], "picked_steam_id": [ - 2011 + 2016 ], "__typename": [ - 70 + 75 ] }, "draft_game_picks_min_fields": { "captain_steam_id": [ - 169 + 174 ], "created_at": [ - 3421 + 3467 ], "draft_game_id": [ - 3818 + 3864 ], "id": [ - 3818 + 3864 ], "lineup": [ 38 ], "picked_steam_id": [ - 169 + 174 ], "__typename": [ - 70 + 75 ] }, "draft_game_picks_min_order_by": { "captain_steam_id": [ - 2011 + 2016 ], "created_at": [ - 2011 + 2016 ], "draft_game_id": [ - 2011 + 2016 ], "id": [ - 2011 + 2016 ], "lineup": [ - 2011 + 2016 ], "picked_steam_id": [ - 2011 + 2016 ], "__typename": [ - 70 + 75 ] }, "draft_game_picks_mutation_response": { @@ -5197,70 +5303,70 @@ export default { 38 ], "returning": [ - 252 + 257 ], "__typename": [ - 70 + 75 ] }, "draft_game_picks_on_conflict": { "constraint": [ - 264 + 269 ], "update_columns": [ - 289 + 294 ], "where": [ - 263 + 268 ], "__typename": [ - 70 + 75 ] }, "draft_game_picks_order_by": { "auto_picked": [ - 2011 + 2016 ], "captain": [ - 2891 + 2928 ], "captain_steam_id": [ - 2011 + 2016 ], "created_at": [ - 2011 + 2016 ], "draft_game": [ - 364 + 369 ], "draft_game_id": [ - 2011 + 2016 ], "id": [ - 2011 + 2016 ], "is_organizer": [ - 2011 + 2016 ], "lineup": [ - 2011 + 2016 ], "picked": [ - 2891 + 2928 ], "picked_steam_id": [ - 2011 + 2016 ], "__typename": [ - 70 + 75 ] }, "draft_game_picks_pk_columns_input": { "id": [ - 3818 + 3864 ], "__typename": [ - 70 + 75 ] }, "draft_game_picks_select_column": {}, @@ -5271,25 +5377,25 @@ export default { 3 ], "captain_steam_id": [ - 169 + 174 ], "created_at": [ - 3421 + 3467 ], "draft_game_id": [ - 3818 + 3864 ], "id": [ - 3818 + 3864 ], "lineup": [ 38 ], "picked_steam_id": [ - 169 + 174 ], "__typename": [ - 70 + 75 ] }, "draft_game_picks_stddev_fields": { @@ -5303,21 +5409,21 @@ export default { 29 ], "__typename": [ - 70 + 75 ] }, "draft_game_picks_stddev_order_by": { "captain_steam_id": [ - 2011 + 2016 ], "lineup": [ - 2011 + 2016 ], "picked_steam_id": [ - 2011 + 2016 ], "__typename": [ - 70 + 75 ] }, "draft_game_picks_stddev_pop_fields": { @@ -5331,21 +5437,21 @@ export default { 29 ], "__typename": [ - 70 + 75 ] }, "draft_game_picks_stddev_pop_order_by": { "captain_steam_id": [ - 2011 + 2016 ], "lineup": [ - 2011 + 2016 ], "picked_steam_id": [ - 2011 + 2016 ], "__typename": [ - 70 + 75 ] }, "draft_game_picks_stddev_samp_fields": { @@ -5359,32 +5465,32 @@ export default { 29 ], "__typename": [ - 70 + 75 ] }, "draft_game_picks_stddev_samp_order_by": { "captain_steam_id": [ - 2011 + 2016 ], "lineup": [ - 2011 + 2016 ], "picked_steam_id": [ - 2011 + 2016 ], "__typename": [ - 70 + 75 ] }, "draft_game_picks_stream_cursor_input": { "initial_value": [ - 286 + 291 ], "ordering": [ - 224 + 229 ], "__typename": [ - 70 + 75 ] }, "draft_game_picks_stream_cursor_value_input": { @@ -5392,68 +5498,68 @@ export default { 3 ], "captain_steam_id": [ - 169 + 174 ], "created_at": [ - 3421 + 3467 ], "draft_game_id": [ - 3818 + 3864 ], "id": [ - 3818 + 3864 ], "lineup": [ 38 ], "picked_steam_id": [ - 169 + 174 ], "__typename": [ - 70 + 75 ] }, "draft_game_picks_sum_fields": { "captain_steam_id": [ - 169 + 174 ], "lineup": [ 38 ], "picked_steam_id": [ - 169 + 174 ], "__typename": [ - 70 + 75 ] }, "draft_game_picks_sum_order_by": { "captain_steam_id": [ - 2011 + 2016 ], "lineup": [ - 2011 + 2016 ], "picked_steam_id": [ - 2011 + 2016 ], "__typename": [ - 70 + 75 ] }, "draft_game_picks_update_column": {}, "draft_game_picks_updates": { "_inc": [ - 265 + 270 ], "_set": [ - 278 + 283 ], "where": [ - 263 + 268 ], "__typename": [ - 70 + 75 ] }, "draft_game_picks_var_pop_fields": { @@ -5467,21 +5573,21 @@ export default { 29 ], "__typename": [ - 70 + 75 ] }, "draft_game_picks_var_pop_order_by": { "captain_steam_id": [ - 2011 + 2016 ], "lineup": [ - 2011 + 2016 ], "picked_steam_id": [ - 2011 + 2016 ], "__typename": [ - 70 + 75 ] }, "draft_game_picks_var_samp_fields": { @@ -5495,21 +5601,21 @@ export default { 29 ], "__typename": [ - 70 + 75 ] }, "draft_game_picks_var_samp_order_by": { "captain_steam_id": [ - 2011 + 2016 ], "lineup": [ - 2011 + 2016 ], "picked_steam_id": [ - 2011 + 2016 ], "__typename": [ - 70 + 75 ] }, "draft_game_picks_variance_fields": { @@ -5523,32 +5629,32 @@ export default { 29 ], "__typename": [ - 70 + 75 ] }, "draft_game_picks_variance_order_by": { "captain_steam_id": [ - 2011 + 2016 ], "lineup": [ - 2011 + 2016 ], "picked_steam_id": [ - 2011 + 2016 ], "__typename": [ - 70 + 75 ] }, "draft_game_players": { "draft_game": [ - 342 + 347 ], "draft_game_id": [ - 3818 + 3864 ], "e_draft_game_player_status": [ - 471 + 476 ], "elo_snapshot": [ 38 @@ -5560,7 +5666,7 @@ export default { 3 ], "joined_at": [ - 3421 + 3467 ], "lineup": [ 38 @@ -5569,103 +5675,103 @@ export default { 38 ], "player": [ - 2878 + 2915 ], "status": [ - 476 + 481 ], "steam_id": [ - 169 + 174 ], "__typename": [ - 70 + 75 ] }, "draft_game_players_aggregate": { "aggregate": [ - 303 + 308 ], "nodes": [ - 297 + 302 ], "__typename": [ - 70 + 75 ] }, "draft_game_players_aggregate_bool_exp": { "bool_and": [ - 300 + 305 ], "bool_or": [ - 301 + 306 ], "count": [ - 302 + 307 ], "__typename": [ - 70 + 75 ] }, "draft_game_players_aggregate_bool_exp_bool_and": { "arguments": [ - 321 + 326 ], "distinct": [ 3 ], "filter": [ - 308 + 313 ], "predicate": [ 4 ], "__typename": [ - 70 + 75 ] }, "draft_game_players_aggregate_bool_exp_bool_or": { "arguments": [ - 322 + 327 ], "distinct": [ 3 ], "filter": [ - 308 + 313 ], "predicate": [ 4 ], "__typename": [ - 70 + 75 ] }, "draft_game_players_aggregate_bool_exp_count": { "arguments": [ - 320 + 325 ], "distinct": [ 3 ], "filter": [ - 308 + 313 ], "predicate": [ 39 ], "__typename": [ - 70 + 75 ] }, "draft_game_players_aggregate_fields": { "avg": [ - 306 + 311 ], "count": [ 38, { "columns": [ - 320, + 325, "[draft_game_players_select_column!]" ], "distinct": [ @@ -5674,83 +5780,83 @@ export default { } ], "max": [ - 312 + 317 ], "min": [ - 314 + 319 ], "stddev": [ - 324 + 329 ], "stddev_pop": [ - 326 + 331 ], "stddev_samp": [ - 328 + 333 ], "sum": [ - 332 + 337 ], "var_pop": [ - 336 + 341 ], "var_samp": [ - 338 + 343 ], "variance": [ - 340 + 345 ], "__typename": [ - 70 + 75 ] }, "draft_game_players_aggregate_order_by": { "avg": [ - 307 + 312 ], "count": [ - 2011 + 2016 ], "max": [ - 313 + 318 ], "min": [ - 315 + 320 ], "stddev": [ - 325 + 330 ], "stddev_pop": [ - 327 + 332 ], "stddev_samp": [ - 329 + 334 ], "sum": [ - 333 + 338 ], "var_pop": [ - 337 + 342 ], "var_samp": [ - 339 + 344 ], "variance": [ - 341 + 346 ], "__typename": [ - 70 + 75 ] }, "draft_game_players_arr_rel_insert_input": { "data": [ - 311 + 316 ], "on_conflict": [ - 317 + 322 ], "__typename": [ - 70 + 75 ] }, "draft_game_players_avg_fields": { @@ -5767,44 +5873,44 @@ export default { 29 ], "__typename": [ - 70 + 75 ] }, "draft_game_players_avg_order_by": { "elo_snapshot": [ - 2011 + 2016 ], "lineup": [ - 2011 + 2016 ], "pick_order": [ - 2011 + 2016 ], "steam_id": [ - 2011 + 2016 ], "__typename": [ - 70 + 75 ] }, "draft_game_players_bool_exp": { "_and": [ - 308 + 313 ], "_not": [ - 308 + 313 ], "_or": [ - 308 + 313 ], "draft_game": [ - 353 + 358 ], "draft_game_id": [ - 3820 + 3866 ], "e_draft_game_player_status": [ - 474 + 479 ], "elo_snapshot": [ 39 @@ -5816,7 +5922,7 @@ export default { 4 ], "joined_at": [ - 3422 + 3468 ], "lineup": [ 39 @@ -5825,16 +5931,16 @@ export default { 39 ], "player": [ - 2882 + 2919 ], "status": [ - 477 + 482 ], "steam_id": [ - 171 + 176 ], "__typename": [ - 70 + 75 ] }, "draft_game_players_constraint": {}, @@ -5849,21 +5955,21 @@ export default { 38 ], "steam_id": [ - 169 + 174 ], "__typename": [ - 70 + 75 ] }, "draft_game_players_insert_input": { "draft_game": [ - 362 + 367 ], "draft_game_id": [ - 3818 + 3864 ], "e_draft_game_player_status": [ - 482 + 487 ], "elo_snapshot": [ 38 @@ -5872,7 +5978,7 @@ export default { 3 ], "joined_at": [ - 3421 + 3467 ], "lineup": [ 38 @@ -5881,27 +5987,27 @@ export default { 38 ], "player": [ - 2889 + 2926 ], "status": [ - 476 + 481 ], "steam_id": [ - 169 + 174 ], "__typename": [ - 70 + 75 ] }, "draft_game_players_max_fields": { "draft_game_id": [ - 3818 + 3864 ], "elo_snapshot": [ 38 ], "joined_at": [ - 3421 + 3467 ], "lineup": [ 38 @@ -5910,44 +6016,44 @@ export default { 38 ], "steam_id": [ - 169 + 174 ], "__typename": [ - 70 + 75 ] }, "draft_game_players_max_order_by": { "draft_game_id": [ - 2011 + 2016 ], "elo_snapshot": [ - 2011 + 2016 ], "joined_at": [ - 2011 + 2016 ], "lineup": [ - 2011 + 2016 ], "pick_order": [ - 2011 + 2016 ], "steam_id": [ - 2011 + 2016 ], "__typename": [ - 70 + 75 ] }, "draft_game_players_min_fields": { "draft_game_id": [ - 3818 + 3864 ], "elo_snapshot": [ 38 ], "joined_at": [ - 3421 + 3467 ], "lineup": [ 38 @@ -5956,33 +6062,33 @@ export default { 38 ], "steam_id": [ - 169 + 174 ], "__typename": [ - 70 + 75 ] }, "draft_game_players_min_order_by": { "draft_game_id": [ - 2011 + 2016 ], "elo_snapshot": [ - 2011 + 2016 ], "joined_at": [ - 2011 + 2016 ], "lineup": [ - 2011 + 2016 ], "pick_order": [ - 2011 + 2016 ], "steam_id": [ - 2011 + 2016 ], "__typename": [ - 70 + 75 ] }, "draft_game_players_mutation_response": { @@ -5990,76 +6096,76 @@ export default { 38 ], "returning": [ - 297 + 302 ], "__typename": [ - 70 + 75 ] }, "draft_game_players_on_conflict": { "constraint": [ - 309 + 314 ], "update_columns": [ - 334 + 339 ], "where": [ - 308 + 313 ], "__typename": [ - 70 + 75 ] }, "draft_game_players_order_by": { "draft_game": [ - 364 + 369 ], "draft_game_id": [ - 2011 + 2016 ], "e_draft_game_player_status": [ - 484 + 489 ], "elo_snapshot": [ - 2011 + 2016 ], "is_captain": [ - 2011 + 2016 ], "is_organizer": [ - 2011 + 2016 ], "joined_at": [ - 2011 + 2016 ], "lineup": [ - 2011 + 2016 ], "pick_order": [ - 2011 + 2016 ], "player": [ - 2891 + 2928 ], "status": [ - 2011 + 2016 ], "steam_id": [ - 2011 + 2016 ], "__typename": [ - 70 + 75 ] }, "draft_game_players_pk_columns_input": { "draft_game_id": [ - 3818 + 3864 ], "steam_id": [ - 169 + 174 ], "__typename": [ - 70 + 75 ] }, "draft_game_players_select_column": {}, @@ -6067,7 +6173,7 @@ export default { "draft_game_players_select_column_draft_game_players_aggregate_bool_exp_bool_or_arguments_columns": {}, "draft_game_players_set_input": { "draft_game_id": [ - 3818 + 3864 ], "elo_snapshot": [ 38 @@ -6076,7 +6182,7 @@ export default { 3 ], "joined_at": [ - 3421 + 3467 ], "lineup": [ 38 @@ -6085,13 +6191,13 @@ export default { 38 ], "status": [ - 476 + 481 ], "steam_id": [ - 169 + 174 ], "__typename": [ - 70 + 75 ] }, "draft_game_players_stddev_fields": { @@ -6108,24 +6214,24 @@ export default { 29 ], "__typename": [ - 70 + 75 ] }, "draft_game_players_stddev_order_by": { "elo_snapshot": [ - 2011 + 2016 ], "lineup": [ - 2011 + 2016 ], "pick_order": [ - 2011 + 2016 ], "steam_id": [ - 2011 + 2016 ], "__typename": [ - 70 + 75 ] }, "draft_game_players_stddev_pop_fields": { @@ -6142,24 +6248,24 @@ export default { 29 ], "__typename": [ - 70 + 75 ] }, "draft_game_players_stddev_pop_order_by": { "elo_snapshot": [ - 2011 + 2016 ], "lineup": [ - 2011 + 2016 ], "pick_order": [ - 2011 + 2016 ], "steam_id": [ - 2011 + 2016 ], "__typename": [ - 70 + 75 ] }, "draft_game_players_stddev_samp_fields": { @@ -6176,40 +6282,40 @@ export default { 29 ], "__typename": [ - 70 + 75 ] }, "draft_game_players_stddev_samp_order_by": { "elo_snapshot": [ - 2011 + 2016 ], "lineup": [ - 2011 + 2016 ], "pick_order": [ - 2011 + 2016 ], "steam_id": [ - 2011 + 2016 ], "__typename": [ - 70 + 75 ] }, "draft_game_players_stream_cursor_input": { "initial_value": [ - 331 + 336 ], "ordering": [ - 224 + 229 ], "__typename": [ - 70 + 75 ] }, "draft_game_players_stream_cursor_value_input": { "draft_game_id": [ - 3818 + 3864 ], "elo_snapshot": [ 38 @@ -6218,7 +6324,7 @@ export default { 3 ], "joined_at": [ - 3421 + 3467 ], "lineup": [ 38 @@ -6227,13 +6333,13 @@ export default { 38 ], "status": [ - 476 + 481 ], "steam_id": [ - 169 + 174 ], "__typename": [ - 70 + 75 ] }, "draft_game_players_sum_fields": { @@ -6247,42 +6353,42 @@ export default { 38 ], "steam_id": [ - 169 + 174 ], "__typename": [ - 70 + 75 ] }, "draft_game_players_sum_order_by": { "elo_snapshot": [ - 2011 + 2016 ], "lineup": [ - 2011 + 2016 ], "pick_order": [ - 2011 + 2016 ], "steam_id": [ - 2011 + 2016 ], "__typename": [ - 70 + 75 ] }, "draft_game_players_update_column": {}, "draft_game_players_updates": { "_inc": [ - 310 + 315 ], "_set": [ - 323 + 328 ], "where": [ - 308 + 313 ], "__typename": [ - 70 + 75 ] }, "draft_game_players_var_pop_fields": { @@ -6299,24 +6405,24 @@ export default { 29 ], "__typename": [ - 70 + 75 ] }, "draft_game_players_var_pop_order_by": { "elo_snapshot": [ - 2011 + 2016 ], "lineup": [ - 2011 + 2016 ], "pick_order": [ - 2011 + 2016 ], "steam_id": [ - 2011 + 2016 ], "__typename": [ - 70 + 75 ] }, "draft_game_players_var_samp_fields": { @@ -6333,24 +6439,24 @@ export default { 29 ], "__typename": [ - 70 + 75 ] }, "draft_game_players_var_samp_order_by": { "elo_snapshot": [ - 2011 + 2016 ], "lineup": [ - 2011 + 2016 ], "pick_order": [ - 2011 + 2016 ], "steam_id": [ - 2011 + 2016 ], "__typename": [ - 70 + 75 ] }, "draft_game_players_variance_fields": { @@ -6367,95 +6473,95 @@ export default { 29 ], "__typename": [ - 70 + 75 ] }, "draft_game_players_variance_order_by": { "elo_snapshot": [ - 2011 + 2016 ], "lineup": [ - 2011 + 2016 ], "pick_order": [ - 2011 + 2016 ], "steam_id": [ - 2011 + 2016 ], "__typename": [ - 70 + 75 ] }, "draft_games": { "access": [ - 580 + 585 ], "capacity": [ 38 ], "captain_selection": [ - 413 + 418 ], "created_at": [ - 3421 + 3467 ], "current_pick_lineup": [ 38 ], "draft_order": [ - 434 + 439 ], "e_draft_game_captain_selection": [ - 408 + 413 ], "e_draft_game_draft_order": [ - 429 + 434 ], "e_draft_game_mode": [ - 450 + 455 ], "e_draft_game_status": [ - 492 + 497 ], "e_lobby_access": [ - 575 + 580 ], "expires_at": [ - 3421 + 3467 ], "host": [ - 2878 + 2915 ], "host_steam_id": [ - 169 + 174 ], "id": [ - 3818 + 3864 ], "inner_squad": [ 3 ], "invite_code": [ - 3818 + 3864 ], "is_organizer": [ 3 ], "map_pool": [ - 1325 + 1330 ], "map_pool_id": [ - 3818 + 3864 ], "match": [ - 1826 + 1831 ], "match_id": [ - 3818 + 3864 ], "match_options_id": [ - 3818 + 3864 ], "max_elo": [ 38 @@ -6464,19 +6570,19 @@ export default { 38 ], "mode": [ - 455 + 460 ], "options": [ - 1706 + 1711 ], "pick_deadline": [ - 3421 + 3467 ], "picks": [ - 252, + 257, { "distinct_on": [ - 275, + 280, "[draft_game_picks_select_column!]" ], "limit": [ @@ -6486,19 +6592,19 @@ export default { 38 ], "order_by": [ - 273, + 278, "[draft_game_picks_order_by!]" ], "where": [ - 263 + 268 ] } ], "picks_aggregate": [ - 253, + 258, { "distinct_on": [ - 275, + 280, "[draft_game_picks_select_column!]" ], "limit": [ @@ -6508,19 +6614,19 @@ export default { 38 ], "order_by": [ - 273, + 278, "[draft_game_picks_order_by!]" ], "where": [ - 263 + 268 ] } ], "players": [ - 297, + 302, { "distinct_on": [ - 320, + 325, "[draft_game_players_select_column!]" ], "limit": [ @@ -6530,19 +6636,19 @@ export default { 38 ], "order_by": [ - 318, + 323, "[draft_game_players_order_by!]" ], "where": [ - 308 + 313 ] } ], "players_aggregate": [ - 298, + 303, { "distinct_on": [ - 320, + 325, "[draft_game_players_select_column!]" ], "limit": [ @@ -6552,133 +6658,133 @@ export default { 38 ], "order_by": [ - 318, + 323, "[draft_game_players_order_by!]" ], "where": [ - 308 + 313 ] } ], "regions": [ - 70 + 75 ], "require_approval": [ 3 ], "scheduled_at": [ - 3421 + 3467 ], "status": [ - 497 + 502 ], "team_1": [ - 3378 + 3424 ], "team_1_id": [ - 3818 + 3864 ], "team_2": [ - 3378 + 3424 ], "team_2_id": [ - 3818 + 3864 ], "type": [ - 724 + 729 ], "updated_at": [ - 3421 + 3467 ], "__typename": [ - 70 + 75 ] }, "draft_games_aggregate": { "aggregate": [ - 348 + 353 ], "nodes": [ - 342 + 347 ], "__typename": [ - 70 + 75 ] }, "draft_games_aggregate_bool_exp": { "bool_and": [ - 345 + 350 ], "bool_or": [ - 346 + 351 ], "count": [ - 347 + 352 ], "__typename": [ - 70 + 75 ] }, "draft_games_aggregate_bool_exp_bool_and": { "arguments": [ - 367 + 372 ], "distinct": [ 3 ], "filter": [ - 353 + 358 ], "predicate": [ 4 ], "__typename": [ - 70 + 75 ] }, "draft_games_aggregate_bool_exp_bool_or": { "arguments": [ - 368 + 373 ], "distinct": [ 3 ], "filter": [ - 353 + 358 ], "predicate": [ 4 ], "__typename": [ - 70 + 75 ] }, "draft_games_aggregate_bool_exp_count": { "arguments": [ - 366 + 371 ], "distinct": [ 3 ], "filter": [ - 353 + 358 ], "predicate": [ 39 ], "__typename": [ - 70 + 75 ] }, "draft_games_aggregate_fields": { "avg": [ - 351 + 356 ], "count": [ 38, { "columns": [ - 366, + 371, "[draft_games_select_column!]" ], "distinct": [ @@ -6687,83 +6793,83 @@ export default { } ], "max": [ - 357 + 362 ], "min": [ - 359 + 364 ], "stddev": [ - 370 + 375 ], "stddev_pop": [ - 372 + 377 ], "stddev_samp": [ - 374 + 379 ], "sum": [ - 378 + 383 ], "var_pop": [ - 382 + 387 ], "var_samp": [ - 384 + 389 ], "variance": [ - 386 + 391 ], "__typename": [ - 70 + 75 ] }, "draft_games_aggregate_order_by": { "avg": [ - 352 + 357 ], "count": [ - 2011 + 2016 ], "max": [ - 358 + 363 ], "min": [ - 360 + 365 ], "stddev": [ - 371 + 376 ], "stddev_pop": [ - 373 + 378 ], "stddev_samp": [ - 375 + 380 ], "sum": [ - 379 + 384 ], "var_pop": [ - 383 + 388 ], "var_samp": [ - 385 + 390 ], "variance": [ - 387 + 392 ], "__typename": [ - 70 + 75 ] }, "draft_games_arr_rel_insert_input": { "data": [ - 356 + 361 ], "on_conflict": [ - 363 + 368 ], "__typename": [ - 70 + 75 ] }, "draft_games_avg_fields": { @@ -6783,107 +6889,107 @@ export default { 29 ], "__typename": [ - 70 + 75 ] }, "draft_games_avg_order_by": { "capacity": [ - 2011 + 2016 ], "current_pick_lineup": [ - 2011 + 2016 ], "host_steam_id": [ - 2011 + 2016 ], "max_elo": [ - 2011 + 2016 ], "min_elo": [ - 2011 + 2016 ], "__typename": [ - 70 + 75 ] }, "draft_games_bool_exp": { "_and": [ - 353 + 358 ], "_not": [ - 353 + 358 ], "_or": [ - 353 + 358 ], "access": [ - 581 + 586 ], "capacity": [ 39 ], "captain_selection": [ - 414 + 419 ], "created_at": [ - 3422 + 3468 ], "current_pick_lineup": [ 39 ], "draft_order": [ - 435 + 440 ], "e_draft_game_captain_selection": [ - 411 + 416 ], "e_draft_game_draft_order": [ - 432 + 437 ], "e_draft_game_mode": [ - 453 + 458 ], "e_draft_game_status": [ - 495 + 500 ], "e_lobby_access": [ - 578 + 583 ], "expires_at": [ - 3422 + 3468 ], "host": [ - 2882 + 2919 ], "host_steam_id": [ - 171 + 176 ], "id": [ - 3820 + 3866 ], "inner_squad": [ 4 ], "invite_code": [ - 3820 + 3866 ], "is_organizer": [ 4 ], "map_pool": [ - 1328 + 1333 ], "map_pool_id": [ - 3820 + 3866 ], "match": [ - 1835 + 1840 ], "match_id": [ - 3820 + 3866 ], "match_options_id": [ - 3820 + 3866 ], "max_elo": [ 39 @@ -6892,58 +6998,58 @@ export default { 39 ], "mode": [ - 456 + 461 ], "options": [ - 1710 + 1715 ], "pick_deadline": [ - 3422 + 3468 ], "picks": [ - 263 + 268 ], "picks_aggregate": [ - 254 + 259 ], "players": [ - 308 + 313 ], "players_aggregate": [ - 299 + 304 ], "regions": [ - 71 + 76 ], "require_approval": [ 4 ], "scheduled_at": [ - 3422 + 3468 ], "status": [ - 498 + 503 ], "team_1": [ - 3387 + 3433 ], "team_1_id": [ - 3820 + 3866 ], "team_2": [ - 3387 + 3433 ], "team_2_id": [ - 3820 + 3866 ], "type": [ - 725 + 730 ], "updated_at": [ - 3422 + 3468 ], "__typename": [ - 70 + 75 ] }, "draft_games_constraint": {}, @@ -6955,7 +7061,7 @@ export default { 38 ], "host_steam_id": [ - 169 + 174 ], "max_elo": [ 38 @@ -6964,75 +7070,75 @@ export default { 38 ], "__typename": [ - 70 + 75 ] }, "draft_games_insert_input": { "access": [ - 580 + 585 ], "capacity": [ 38 ], "captain_selection": [ - 413 + 418 ], "created_at": [ - 3421 + 3467 ], "current_pick_lineup": [ 38 ], "draft_order": [ - 434 + 439 ], "e_draft_game_captain_selection": [ - 419 + 424 ], "e_draft_game_draft_order": [ - 440 + 445 ], "e_draft_game_mode": [ - 461 + 466 ], "e_draft_game_status": [ - 503 + 508 ], "e_lobby_access": [ - 586 + 591 ], "expires_at": [ - 3421 + 3467 ], "host": [ - 2889 + 2926 ], "host_steam_id": [ - 169 + 174 ], "id": [ - 3818 + 3864 ], "inner_squad": [ 3 ], "invite_code": [ - 3818 + 3864 ], "map_pool": [ - 1334 + 1339 ], "map_pool_id": [ - 3818 + 3864 ], "match": [ - 1844 + 1849 ], "match_id": [ - 3818 + 3864 ], "match_options_id": [ - 3818 + 3864 ], "max_elo": [ 38 @@ -7041,52 +7147,52 @@ export default { 38 ], "mode": [ - 455 + 460 ], "options": [ - 1717 + 1722 ], "pick_deadline": [ - 3421 + 3467 ], "picks": [ - 260 + 265 ], "players": [ - 305 + 310 ], "regions": [ - 70 + 75 ], "require_approval": [ 3 ], "scheduled_at": [ - 3421 + 3467 ], "status": [ - 497 + 502 ], "team_1": [ - 3396 + 3442 ], "team_1_id": [ - 3818 + 3864 ], "team_2": [ - 3396 + 3442 ], "team_2_id": [ - 3818 + 3864 ], "type": [ - 724 + 729 ], "updated_at": [ - 3421 + 3467 ], "__typename": [ - 70 + 75 ] }, "draft_games_max_fields": { @@ -7094,31 +7200,31 @@ export default { 38 ], "created_at": [ - 3421 + 3467 ], "current_pick_lineup": [ 38 ], "expires_at": [ - 3421 + 3467 ], "host_steam_id": [ - 169 + 174 ], "id": [ - 3818 + 3864 ], "invite_code": [ - 3818 + 3864 ], "map_pool_id": [ - 3818 + 3864 ], "match_id": [ - 3818 + 3864 ], "match_options_id": [ - 3818 + 3864 ], "max_elo": [ 38 @@ -7127,84 +7233,84 @@ export default { 38 ], "pick_deadline": [ - 3421 + 3467 ], "regions": [ - 70 + 75 ], "scheduled_at": [ - 3421 + 3467 ], "team_1_id": [ - 3818 + 3864 ], "team_2_id": [ - 3818 + 3864 ], "updated_at": [ - 3421 + 3467 ], "__typename": [ - 70 + 75 ] }, "draft_games_max_order_by": { "capacity": [ - 2011 + 2016 ], "created_at": [ - 2011 + 2016 ], "current_pick_lineup": [ - 2011 + 2016 ], "expires_at": [ - 2011 + 2016 ], "host_steam_id": [ - 2011 + 2016 ], "id": [ - 2011 + 2016 ], "invite_code": [ - 2011 + 2016 ], "map_pool_id": [ - 2011 + 2016 ], "match_id": [ - 2011 + 2016 ], "match_options_id": [ - 2011 + 2016 ], "max_elo": [ - 2011 + 2016 ], "min_elo": [ - 2011 + 2016 ], "pick_deadline": [ - 2011 + 2016 ], "regions": [ - 2011 + 2016 ], "scheduled_at": [ - 2011 + 2016 ], "team_1_id": [ - 2011 + 2016 ], "team_2_id": [ - 2011 + 2016 ], "updated_at": [ - 2011 + 2016 ], "__typename": [ - 70 + 75 ] }, "draft_games_min_fields": { @@ -7212,31 +7318,31 @@ export default { 38 ], "created_at": [ - 3421 + 3467 ], "current_pick_lineup": [ 38 ], "expires_at": [ - 3421 + 3467 ], "host_steam_id": [ - 169 + 174 ], "id": [ - 3818 + 3864 ], "invite_code": [ - 3818 + 3864 ], "map_pool_id": [ - 3818 + 3864 ], "match_id": [ - 3818 + 3864 ], "match_options_id": [ - 3818 + 3864 ], "max_elo": [ 38 @@ -7245,84 +7351,84 @@ export default { 38 ], "pick_deadline": [ - 3421 + 3467 ], "regions": [ - 70 + 75 ], "scheduled_at": [ - 3421 + 3467 ], "team_1_id": [ - 3818 + 3864 ], "team_2_id": [ - 3818 + 3864 ], "updated_at": [ - 3421 + 3467 ], "__typename": [ - 70 + 75 ] }, "draft_games_min_order_by": { "capacity": [ - 2011 + 2016 ], "created_at": [ - 2011 + 2016 ], "current_pick_lineup": [ - 2011 + 2016 ], "expires_at": [ - 2011 + 2016 ], "host_steam_id": [ - 2011 + 2016 ], "id": [ - 2011 + 2016 ], "invite_code": [ - 2011 + 2016 ], "map_pool_id": [ - 2011 + 2016 ], "match_id": [ - 2011 + 2016 ], "match_options_id": [ - 2011 + 2016 ], "max_elo": [ - 2011 + 2016 ], "min_elo": [ - 2011 + 2016 ], "pick_deadline": [ - 2011 + 2016 ], "regions": [ - 2011 + 2016 ], "scheduled_at": [ - 2011 + 2016 ], "team_1_id": [ - 2011 + 2016 ], "team_2_id": [ - 2011 + 2016 ], "updated_at": [ - 2011 + 2016 ], "__typename": [ - 70 + 75 ] }, "draft_games_mutation_response": { @@ -7330,168 +7436,168 @@ export default { 38 ], "returning": [ - 342 + 347 ], "__typename": [ - 70 + 75 ] }, "draft_games_obj_rel_insert_input": { "data": [ - 356 + 361 ], "on_conflict": [ - 363 + 368 ], "__typename": [ - 70 + 75 ] }, "draft_games_on_conflict": { "constraint": [ - 354 + 359 ], "update_columns": [ - 380 + 385 ], "where": [ - 353 + 358 ], "__typename": [ - 70 + 75 ] }, "draft_games_order_by": { "access": [ - 2011 + 2016 ], "capacity": [ - 2011 + 2016 ], "captain_selection": [ - 2011 + 2016 ], "created_at": [ - 2011 + 2016 ], "current_pick_lineup": [ - 2011 + 2016 ], "draft_order": [ - 2011 + 2016 ], "e_draft_game_captain_selection": [ - 421 + 426 ], "e_draft_game_draft_order": [ - 442 + 447 ], "e_draft_game_mode": [ - 463 + 468 ], "e_draft_game_status": [ - 505 + 510 ], "e_lobby_access": [ - 588 + 593 ], "expires_at": [ - 2011 + 2016 ], "host": [ - 2891 + 2928 ], "host_steam_id": [ - 2011 + 2016 ], "id": [ - 2011 + 2016 ], "inner_squad": [ - 2011 + 2016 ], "invite_code": [ - 2011 + 2016 ], "is_organizer": [ - 2011 + 2016 ], "map_pool": [ - 1336 + 1341 ], "map_pool_id": [ - 2011 + 2016 ], "match": [ - 1846 + 1851 ], "match_id": [ - 2011 + 2016 ], "match_options_id": [ - 2011 + 2016 ], "max_elo": [ - 2011 + 2016 ], "min_elo": [ - 2011 + 2016 ], "mode": [ - 2011 + 2016 ], "options": [ - 1719 + 1724 ], "pick_deadline": [ - 2011 + 2016 ], "picks_aggregate": [ - 259 + 264 ], "players_aggregate": [ - 304 + 309 ], "regions": [ - 2011 + 2016 ], "require_approval": [ - 2011 + 2016 ], "scheduled_at": [ - 2011 + 2016 ], "status": [ - 2011 + 2016 ], "team_1": [ - 3398 + 3444 ], "team_1_id": [ - 2011 + 2016 ], "team_2": [ - 3398 + 3444 ], "team_2_id": [ - 2011 + 2016 ], "type": [ - 2011 + 2016 ], "updated_at": [ - 2011 + 2016 ], "__typename": [ - 70 + 75 ] }, "draft_games_pk_columns_input": { "id": [ - 3818 + 3864 ], "__typename": [ - 70 + 75 ] }, "draft_games_select_column": {}, @@ -7499,46 +7605,46 @@ export default { "draft_games_select_column_draft_games_aggregate_bool_exp_bool_or_arguments_columns": {}, "draft_games_set_input": { "access": [ - 580 + 585 ], "capacity": [ 38 ], "captain_selection": [ - 413 + 418 ], "created_at": [ - 3421 + 3467 ], "current_pick_lineup": [ 38 ], "draft_order": [ - 434 + 439 ], "expires_at": [ - 3421 + 3467 ], "host_steam_id": [ - 169 + 174 ], "id": [ - 3818 + 3864 ], "inner_squad": [ 3 ], "invite_code": [ - 3818 + 3864 ], "map_pool_id": [ - 3818 + 3864 ], "match_id": [ - 3818 + 3864 ], "match_options_id": [ - 3818 + 3864 ], "max_elo": [ 38 @@ -7547,37 +7653,37 @@ export default { 38 ], "mode": [ - 455 + 460 ], "pick_deadline": [ - 3421 + 3467 ], "regions": [ - 70 + 75 ], "require_approval": [ 3 ], "scheduled_at": [ - 3421 + 3467 ], "status": [ - 497 + 502 ], "team_1_id": [ - 3818 + 3864 ], "team_2_id": [ - 3818 + 3864 ], "type": [ - 724 + 729 ], "updated_at": [ - 3421 + 3467 ], "__typename": [ - 70 + 75 ] }, "draft_games_stddev_fields": { @@ -7597,27 +7703,27 @@ export default { 29 ], "__typename": [ - 70 + 75 ] }, "draft_games_stddev_order_by": { "capacity": [ - 2011 + 2016 ], "current_pick_lineup": [ - 2011 + 2016 ], "host_steam_id": [ - 2011 + 2016 ], "max_elo": [ - 2011 + 2016 ], "min_elo": [ - 2011 + 2016 ], "__typename": [ - 70 + 75 ] }, "draft_games_stddev_pop_fields": { @@ -7637,27 +7743,27 @@ export default { 29 ], "__typename": [ - 70 + 75 ] }, "draft_games_stddev_pop_order_by": { "capacity": [ - 2011 + 2016 ], "current_pick_lineup": [ - 2011 + 2016 ], "host_steam_id": [ - 2011 + 2016 ], "max_elo": [ - 2011 + 2016 ], "min_elo": [ - 2011 + 2016 ], "__typename": [ - 70 + 75 ] }, "draft_games_stddev_samp_fields": { @@ -7677,82 +7783,82 @@ export default { 29 ], "__typename": [ - 70 + 75 ] }, "draft_games_stddev_samp_order_by": { "capacity": [ - 2011 + 2016 ], "current_pick_lineup": [ - 2011 + 2016 ], "host_steam_id": [ - 2011 + 2016 ], "max_elo": [ - 2011 + 2016 ], "min_elo": [ - 2011 + 2016 ], "__typename": [ - 70 + 75 ] }, "draft_games_stream_cursor_input": { "initial_value": [ - 377 + 382 ], "ordering": [ - 224 + 229 ], "__typename": [ - 70 + 75 ] }, "draft_games_stream_cursor_value_input": { "access": [ - 580 + 585 ], "capacity": [ 38 ], "captain_selection": [ - 413 + 418 ], "created_at": [ - 3421 + 3467 ], "current_pick_lineup": [ 38 ], "draft_order": [ - 434 + 439 ], "expires_at": [ - 3421 + 3467 ], "host_steam_id": [ - 169 + 174 ], "id": [ - 3818 + 3864 ], "inner_squad": [ 3 ], "invite_code": [ - 3818 + 3864 ], "map_pool_id": [ - 3818 + 3864 ], "match_id": [ - 3818 + 3864 ], "match_options_id": [ - 3818 + 3864 ], "max_elo": [ 38 @@ -7761,37 +7867,37 @@ export default { 38 ], "mode": [ - 455 + 460 ], "pick_deadline": [ - 3421 + 3467 ], "regions": [ - 70 + 75 ], "require_approval": [ 3 ], "scheduled_at": [ - 3421 + 3467 ], "status": [ - 497 + 502 ], "team_1_id": [ - 3818 + 3864 ], "team_2_id": [ - 3818 + 3864 ], "type": [ - 724 + 729 ], "updated_at": [ - 3421 + 3467 ], "__typename": [ - 70 + 75 ] }, "draft_games_sum_fields": { @@ -7802,7 +7908,7 @@ export default { 38 ], "host_steam_id": [ - 169 + 174 ], "max_elo": [ 38 @@ -7811,42 +7917,42 @@ export default { 38 ], "__typename": [ - 70 + 75 ] }, "draft_games_sum_order_by": { "capacity": [ - 2011 + 2016 ], "current_pick_lineup": [ - 2011 + 2016 ], "host_steam_id": [ - 2011 + 2016 ], "max_elo": [ - 2011 + 2016 ], "min_elo": [ - 2011 + 2016 ], "__typename": [ - 70 + 75 ] }, "draft_games_update_column": {}, "draft_games_updates": { "_inc": [ - 355 + 360 ], "_set": [ - 369 + 374 ], "where": [ - 353 + 358 ], "__typename": [ - 70 + 75 ] }, "draft_games_var_pop_fields": { @@ -7866,27 +7972,27 @@ export default { 29 ], "__typename": [ - 70 + 75 ] }, "draft_games_var_pop_order_by": { "capacity": [ - 2011 + 2016 ], "current_pick_lineup": [ - 2011 + 2016 ], "host_steam_id": [ - 2011 + 2016 ], "max_elo": [ - 2011 + 2016 ], "min_elo": [ - 2011 + 2016 ], "__typename": [ - 70 + 75 ] }, "draft_games_var_samp_fields": { @@ -7906,27 +8012,27 @@ export default { 29 ], "__typename": [ - 70 + 75 ] }, "draft_games_var_samp_order_by": { "capacity": [ - 2011 + 2016 ], "current_pick_lineup": [ - 2011 + 2016 ], "host_steam_id": [ - 2011 + 2016 ], "max_elo": [ - 2011 + 2016 ], "min_elo": [ - 2011 + 2016 ], "__typename": [ - 70 + 75 ] }, "draft_games_variance_fields": { @@ -7946,49 +8052,49 @@ export default { 29 ], "__typename": [ - 70 + 75 ] }, "draft_games_variance_order_by": { "capacity": [ - 2011 + 2016 ], "current_pick_lineup": [ - 2011 + 2016 ], "host_steam_id": [ - 2011 + 2016 ], "max_elo": [ - 2011 + 2016 ], "min_elo": [ - 2011 + 2016 ], "__typename": [ - 70 + 75 ] }, "e_check_in_settings": { "description": [ - 70 + 75 ], "value": [ - 70 + 75 ], "__typename": [ - 70 + 75 ] }, "e_check_in_settings_aggregate": { "aggregate": [ - 390 + 395 ], "nodes": [ - 388 + 393 ], "__typename": [ - 70 + 75 ] }, "e_check_in_settings_aggregate_fields": { @@ -7996,7 +8102,7 @@ export default { 38, { "columns": [ - 402, + 407, "[e_check_in_settings_select_column!]" ], "distinct": [ @@ -8005,88 +8111,88 @@ export default { } ], "max": [ - 396 + 401 ], "min": [ - 397 + 402 ], "__typename": [ - 70 + 75 ] }, "e_check_in_settings_bool_exp": { "_and": [ - 391 + 396 ], "_not": [ - 391 + 396 ], "_or": [ - 391 + 396 ], "description": [ - 72 + 77 ], "value": [ - 72 + 77 ], "__typename": [ - 70 + 75 ] }, "e_check_in_settings_constraint": {}, "e_check_in_settings_enum": {}, "e_check_in_settings_enum_comparison_exp": { "_eq": [ - 393 + 398 ], "_in": [ - 393 + 398 ], "_is_null": [ 3 ], "_neq": [ - 393 + 398 ], "_nin": [ - 393 + 398 ], "__typename": [ - 70 + 75 ] }, "e_check_in_settings_insert_input": { "description": [ - 70 + 75 ], "value": [ - 70 + 75 ], "__typename": [ - 70 + 75 ] }, "e_check_in_settings_max_fields": { "description": [ - 70 + 75 ], "value": [ - 70 + 75 ], "__typename": [ - 70 + 75 ] }, "e_check_in_settings_min_fields": { "description": [ - 70 + 75 ], "value": [ - 70 + 75 ], "__typename": [ - 70 + 75 ] }, "e_check_in_settings_mutation_response": { @@ -8094,111 +8200,111 @@ export default { 38 ], "returning": [ - 388 + 393 ], "__typename": [ - 70 + 75 ] }, "e_check_in_settings_on_conflict": { "constraint": [ - 392 + 397 ], "update_columns": [ - 406 + 411 ], "where": [ - 391 + 396 ], "__typename": [ - 70 + 75 ] }, "e_check_in_settings_order_by": { "description": [ - 2011 + 2016 ], "value": [ - 2011 + 2016 ], "__typename": [ - 70 + 75 ] }, "e_check_in_settings_pk_columns_input": { "value": [ - 70 + 75 ], "__typename": [ - 70 + 75 ] }, "e_check_in_settings_select_column": {}, "e_check_in_settings_set_input": { "description": [ - 70 + 75 ], "value": [ - 70 + 75 ], "__typename": [ - 70 + 75 ] }, "e_check_in_settings_stream_cursor_input": { "initial_value": [ - 405 + 410 ], "ordering": [ - 224 + 229 ], "__typename": [ - 70 + 75 ] }, "e_check_in_settings_stream_cursor_value_input": { "description": [ - 70 + 75 ], "value": [ - 70 + 75 ], "__typename": [ - 70 + 75 ] }, "e_check_in_settings_update_column": {}, "e_check_in_settings_updates": { "_set": [ - 403 + 408 ], "where": [ - 391 + 396 ], "__typename": [ - 70 + 75 ] }, "e_draft_game_captain_selection": { "description": [ - 70 + 75 ], "value": [ - 70 + 75 ], "__typename": [ - 70 + 75 ] }, "e_draft_game_captain_selection_aggregate": { "aggregate": [ - 410 + 415 ], "nodes": [ - 408 + 413 ], "__typename": [ - 70 + 75 ] }, "e_draft_game_captain_selection_aggregate_fields": { @@ -8206,7 +8312,7 @@ export default { 38, { "columns": [ - 423, + 428, "[e_draft_game_captain_selection_select_column!]" ], "distinct": [ @@ -8215,88 +8321,88 @@ export default { } ], "max": [ - 416 + 421 ], "min": [ - 417 + 422 ], "__typename": [ - 70 + 75 ] }, "e_draft_game_captain_selection_bool_exp": { "_and": [ - 411 + 416 ], "_not": [ - 411 + 416 ], "_or": [ - 411 + 416 ], "description": [ - 72 + 77 ], "value": [ - 72 + 77 ], "__typename": [ - 70 + 75 ] }, "e_draft_game_captain_selection_constraint": {}, "e_draft_game_captain_selection_enum": {}, "e_draft_game_captain_selection_enum_comparison_exp": { "_eq": [ - 413 + 418 ], "_in": [ - 413 + 418 ], "_is_null": [ 3 ], "_neq": [ - 413 + 418 ], "_nin": [ - 413 + 418 ], "__typename": [ - 70 + 75 ] }, "e_draft_game_captain_selection_insert_input": { "description": [ - 70 + 75 ], "value": [ - 70 + 75 ], "__typename": [ - 70 + 75 ] }, "e_draft_game_captain_selection_max_fields": { "description": [ - 70 + 75 ], "value": [ - 70 + 75 ], "__typename": [ - 70 + 75 ] }, "e_draft_game_captain_selection_min_fields": { "description": [ - 70 + 75 ], "value": [ - 70 + 75 ], "__typename": [ - 70 + 75 ] }, "e_draft_game_captain_selection_mutation_response": { @@ -8304,122 +8410,122 @@ export default { 38 ], "returning": [ - 408 + 413 ], "__typename": [ - 70 + 75 ] }, "e_draft_game_captain_selection_obj_rel_insert_input": { "data": [ - 415 + 420 ], "on_conflict": [ - 420 + 425 ], "__typename": [ - 70 + 75 ] }, "e_draft_game_captain_selection_on_conflict": { "constraint": [ - 412 + 417 ], "update_columns": [ - 427 + 432 ], "where": [ - 411 + 416 ], "__typename": [ - 70 + 75 ] }, "e_draft_game_captain_selection_order_by": { "description": [ - 2011 + 2016 ], "value": [ - 2011 + 2016 ], "__typename": [ - 70 + 75 ] }, "e_draft_game_captain_selection_pk_columns_input": { "value": [ - 70 + 75 ], "__typename": [ - 70 + 75 ] }, "e_draft_game_captain_selection_select_column": {}, "e_draft_game_captain_selection_set_input": { "description": [ - 70 + 75 ], "value": [ - 70 + 75 ], "__typename": [ - 70 + 75 ] }, "e_draft_game_captain_selection_stream_cursor_input": { "initial_value": [ - 426 + 431 ], "ordering": [ - 224 + 229 ], "__typename": [ - 70 + 75 ] }, "e_draft_game_captain_selection_stream_cursor_value_input": { "description": [ - 70 + 75 ], "value": [ - 70 + 75 ], "__typename": [ - 70 + 75 ] }, "e_draft_game_captain_selection_update_column": {}, "e_draft_game_captain_selection_updates": { "_set": [ - 424 + 429 ], "where": [ - 411 + 416 ], "__typename": [ - 70 + 75 ] }, "e_draft_game_draft_order": { "description": [ - 70 + 75 ], "value": [ - 70 + 75 ], "__typename": [ - 70 + 75 ] }, "e_draft_game_draft_order_aggregate": { "aggregate": [ - 431 + 436 ], "nodes": [ - 429 + 434 ], "__typename": [ - 70 + 75 ] }, "e_draft_game_draft_order_aggregate_fields": { @@ -8427,7 +8533,7 @@ export default { 38, { "columns": [ - 444, + 449, "[e_draft_game_draft_order_select_column!]" ], "distinct": [ @@ -8436,88 +8542,88 @@ export default { } ], "max": [ - 437 + 442 ], "min": [ - 438 + 443 ], "__typename": [ - 70 + 75 ] }, "e_draft_game_draft_order_bool_exp": { "_and": [ - 432 + 437 ], "_not": [ - 432 + 437 ], "_or": [ - 432 + 437 ], "description": [ - 72 + 77 ], "value": [ - 72 + 77 ], "__typename": [ - 70 + 75 ] }, "e_draft_game_draft_order_constraint": {}, "e_draft_game_draft_order_enum": {}, "e_draft_game_draft_order_enum_comparison_exp": { "_eq": [ - 434 + 439 ], "_in": [ - 434 + 439 ], "_is_null": [ 3 ], "_neq": [ - 434 + 439 ], "_nin": [ - 434 + 439 ], "__typename": [ - 70 + 75 ] }, "e_draft_game_draft_order_insert_input": { "description": [ - 70 + 75 ], "value": [ - 70 + 75 ], "__typename": [ - 70 + 75 ] }, "e_draft_game_draft_order_max_fields": { "description": [ - 70 + 75 ], "value": [ - 70 + 75 ], "__typename": [ - 70 + 75 ] }, "e_draft_game_draft_order_min_fields": { "description": [ - 70 + 75 ], "value": [ - 70 + 75 ], "__typename": [ - 70 + 75 ] }, "e_draft_game_draft_order_mutation_response": { @@ -8525,122 +8631,122 @@ export default { 38 ], "returning": [ - 429 + 434 ], "__typename": [ - 70 + 75 ] }, "e_draft_game_draft_order_obj_rel_insert_input": { "data": [ - 436 + 441 ], "on_conflict": [ - 441 + 446 ], "__typename": [ - 70 + 75 ] }, "e_draft_game_draft_order_on_conflict": { "constraint": [ - 433 + 438 ], "update_columns": [ - 448 + 453 ], "where": [ - 432 + 437 ], "__typename": [ - 70 + 75 ] }, "e_draft_game_draft_order_order_by": { "description": [ - 2011 + 2016 ], "value": [ - 2011 + 2016 ], "__typename": [ - 70 + 75 ] }, "e_draft_game_draft_order_pk_columns_input": { "value": [ - 70 + 75 ], "__typename": [ - 70 + 75 ] }, "e_draft_game_draft_order_select_column": {}, "e_draft_game_draft_order_set_input": { "description": [ - 70 + 75 ], "value": [ - 70 + 75 ], "__typename": [ - 70 + 75 ] }, "e_draft_game_draft_order_stream_cursor_input": { "initial_value": [ - 447 + 452 ], "ordering": [ - 224 + 229 ], "__typename": [ - 70 + 75 ] }, "e_draft_game_draft_order_stream_cursor_value_input": { "description": [ - 70 + 75 ], "value": [ - 70 + 75 ], "__typename": [ - 70 + 75 ] }, "e_draft_game_draft_order_update_column": {}, "e_draft_game_draft_order_updates": { "_set": [ - 445 + 450 ], "where": [ - 432 + 437 ], "__typename": [ - 70 + 75 ] }, "e_draft_game_mode": { "description": [ - 70 + 75 ], "value": [ - 70 + 75 ], "__typename": [ - 70 + 75 ] }, "e_draft_game_mode_aggregate": { "aggregate": [ - 452 + 457 ], "nodes": [ - 450 + 455 ], "__typename": [ - 70 + 75 ] }, "e_draft_game_mode_aggregate_fields": { @@ -8648,7 +8754,7 @@ export default { 38, { "columns": [ - 465, + 470, "[e_draft_game_mode_select_column!]" ], "distinct": [ @@ -8657,88 +8763,88 @@ export default { } ], "max": [ - 458 + 463 ], "min": [ - 459 + 464 ], "__typename": [ - 70 + 75 ] }, "e_draft_game_mode_bool_exp": { "_and": [ - 453 + 458 ], "_not": [ - 453 + 458 ], "_or": [ - 453 + 458 ], "description": [ - 72 + 77 ], "value": [ - 72 + 77 ], "__typename": [ - 70 + 75 ] }, "e_draft_game_mode_constraint": {}, "e_draft_game_mode_enum": {}, "e_draft_game_mode_enum_comparison_exp": { "_eq": [ - 455 + 460 ], "_in": [ - 455 + 460 ], "_is_null": [ 3 ], "_neq": [ - 455 + 460 ], "_nin": [ - 455 + 460 ], "__typename": [ - 70 + 75 ] }, "e_draft_game_mode_insert_input": { "description": [ - 70 + 75 ], "value": [ - 70 + 75 ], "__typename": [ - 70 + 75 ] }, "e_draft_game_mode_max_fields": { "description": [ - 70 + 75 ], "value": [ - 70 + 75 ], "__typename": [ - 70 + 75 ] }, "e_draft_game_mode_min_fields": { "description": [ - 70 + 75 ], "value": [ - 70 + 75 ], "__typename": [ - 70 + 75 ] }, "e_draft_game_mode_mutation_response": { @@ -8746,122 +8852,122 @@ export default { 38 ], "returning": [ - 450 + 455 ], "__typename": [ - 70 + 75 ] }, "e_draft_game_mode_obj_rel_insert_input": { "data": [ - 457 + 462 ], "on_conflict": [ - 462 + 467 ], "__typename": [ - 70 + 75 ] }, "e_draft_game_mode_on_conflict": { "constraint": [ - 454 + 459 ], "update_columns": [ - 469 + 474 ], "where": [ - 453 + 458 ], "__typename": [ - 70 + 75 ] }, "e_draft_game_mode_order_by": { "description": [ - 2011 + 2016 ], "value": [ - 2011 + 2016 ], "__typename": [ - 70 + 75 ] }, "e_draft_game_mode_pk_columns_input": { "value": [ - 70 + 75 ], "__typename": [ - 70 + 75 ] }, "e_draft_game_mode_select_column": {}, "e_draft_game_mode_set_input": { "description": [ - 70 + 75 ], "value": [ - 70 + 75 ], "__typename": [ - 70 + 75 ] }, "e_draft_game_mode_stream_cursor_input": { "initial_value": [ - 468 + 473 ], "ordering": [ - 224 + 229 ], "__typename": [ - 70 + 75 ] }, "e_draft_game_mode_stream_cursor_value_input": { "description": [ - 70 + 75 ], "value": [ - 70 + 75 ], "__typename": [ - 70 + 75 ] }, "e_draft_game_mode_update_column": {}, "e_draft_game_mode_updates": { "_set": [ - 466 + 471 ], "where": [ - 453 + 458 ], "__typename": [ - 70 + 75 ] }, "e_draft_game_player_status": { "description": [ - 70 + 75 ], "value": [ - 70 + 75 ], "__typename": [ - 70 + 75 ] }, "e_draft_game_player_status_aggregate": { "aggregate": [ - 473 + 478 ], "nodes": [ - 471 + 476 ], "__typename": [ - 70 + 75 ] }, "e_draft_game_player_status_aggregate_fields": { @@ -8869,7 +8975,7 @@ export default { 38, { "columns": [ - 486, + 491, "[e_draft_game_player_status_select_column!]" ], "distinct": [ @@ -8878,88 +8984,88 @@ export default { } ], "max": [ - 479 + 484 ], "min": [ - 480 + 485 ], "__typename": [ - 70 + 75 ] }, "e_draft_game_player_status_bool_exp": { "_and": [ - 474 + 479 ], "_not": [ - 474 + 479 ], "_or": [ - 474 + 479 ], "description": [ - 72 + 77 ], "value": [ - 72 + 77 ], "__typename": [ - 70 + 75 ] }, "e_draft_game_player_status_constraint": {}, "e_draft_game_player_status_enum": {}, "e_draft_game_player_status_enum_comparison_exp": { "_eq": [ - 476 + 481 ], "_in": [ - 476 + 481 ], "_is_null": [ 3 ], "_neq": [ - 476 + 481 ], "_nin": [ - 476 + 481 ], "__typename": [ - 70 + 75 ] }, "e_draft_game_player_status_insert_input": { "description": [ - 70 + 75 ], "value": [ - 70 + 75 ], "__typename": [ - 70 + 75 ] }, "e_draft_game_player_status_max_fields": { "description": [ - 70 + 75 ], "value": [ - 70 + 75 ], "__typename": [ - 70 + 75 ] }, "e_draft_game_player_status_min_fields": { "description": [ - 70 + 75 ], "value": [ - 70 + 75 ], "__typename": [ - 70 + 75 ] }, "e_draft_game_player_status_mutation_response": { @@ -8967,122 +9073,122 @@ export default { 38 ], "returning": [ - 471 + 476 ], "__typename": [ - 70 + 75 ] }, "e_draft_game_player_status_obj_rel_insert_input": { "data": [ - 478 + 483 ], "on_conflict": [ - 483 + 488 ], "__typename": [ - 70 + 75 ] }, "e_draft_game_player_status_on_conflict": { "constraint": [ - 475 + 480 ], "update_columns": [ - 490 + 495 ], "where": [ - 474 + 479 ], "__typename": [ - 70 + 75 ] }, "e_draft_game_player_status_order_by": { "description": [ - 2011 + 2016 ], "value": [ - 2011 + 2016 ], "__typename": [ - 70 + 75 ] }, "e_draft_game_player_status_pk_columns_input": { "value": [ - 70 + 75 ], "__typename": [ - 70 + 75 ] }, "e_draft_game_player_status_select_column": {}, "e_draft_game_player_status_set_input": { "description": [ - 70 + 75 ], "value": [ - 70 + 75 ], "__typename": [ - 70 + 75 ] }, "e_draft_game_player_status_stream_cursor_input": { "initial_value": [ - 489 + 494 ], "ordering": [ - 224 + 229 ], "__typename": [ - 70 + 75 ] }, "e_draft_game_player_status_stream_cursor_value_input": { "description": [ - 70 + 75 ], "value": [ - 70 + 75 ], "__typename": [ - 70 + 75 ] }, "e_draft_game_player_status_update_column": {}, "e_draft_game_player_status_updates": { "_set": [ - 487 + 492 ], "where": [ - 474 + 479 ], "__typename": [ - 70 + 75 ] }, "e_draft_game_status": { "description": [ - 70 + 75 ], "value": [ - 70 + 75 ], "__typename": [ - 70 + 75 ] }, "e_draft_game_status_aggregate": { "aggregate": [ - 494 + 499 ], "nodes": [ - 492 + 497 ], "__typename": [ - 70 + 75 ] }, "e_draft_game_status_aggregate_fields": { @@ -9090,7 +9196,7 @@ export default { 38, { "columns": [ - 507, + 512, "[e_draft_game_status_select_column!]" ], "distinct": [ @@ -9099,88 +9205,88 @@ export default { } ], "max": [ - 500 + 505 ], "min": [ - 501 + 506 ], "__typename": [ - 70 + 75 ] }, "e_draft_game_status_bool_exp": { "_and": [ - 495 + 500 ], "_not": [ - 495 + 500 ], "_or": [ - 495 + 500 ], "description": [ - 72 + 77 ], "value": [ - 72 + 77 ], "__typename": [ - 70 + 75 ] }, "e_draft_game_status_constraint": {}, "e_draft_game_status_enum": {}, "e_draft_game_status_enum_comparison_exp": { "_eq": [ - 497 + 502 ], "_in": [ - 497 + 502 ], "_is_null": [ 3 ], "_neq": [ - 497 + 502 ], "_nin": [ - 497 + 502 ], "__typename": [ - 70 + 75 ] }, "e_draft_game_status_insert_input": { "description": [ - 70 + 75 ], "value": [ - 70 + 75 ], "__typename": [ - 70 + 75 ] }, "e_draft_game_status_max_fields": { "description": [ - 70 + 75 ], "value": [ - 70 + 75 ], "__typename": [ - 70 + 75 ] }, "e_draft_game_status_min_fields": { "description": [ - 70 + 75 ], "value": [ - 70 + 75 ], "__typename": [ - 70 + 75 ] }, "e_draft_game_status_mutation_response": { @@ -9188,122 +9294,122 @@ export default { 38 ], "returning": [ - 492 + 497 ], "__typename": [ - 70 + 75 ] }, "e_draft_game_status_obj_rel_insert_input": { "data": [ - 499 + 504 ], "on_conflict": [ - 504 + 509 ], "__typename": [ - 70 + 75 ] }, "e_draft_game_status_on_conflict": { "constraint": [ - 496 + 501 ], "update_columns": [ - 511 + 516 ], "where": [ - 495 + 500 ], "__typename": [ - 70 + 75 ] }, "e_draft_game_status_order_by": { "description": [ - 2011 + 2016 ], "value": [ - 2011 + 2016 ], "__typename": [ - 70 + 75 ] }, "e_draft_game_status_pk_columns_input": { "value": [ - 70 + 75 ], "__typename": [ - 70 + 75 ] }, "e_draft_game_status_select_column": {}, "e_draft_game_status_set_input": { "description": [ - 70 + 75 ], "value": [ - 70 + 75 ], "__typename": [ - 70 + 75 ] }, "e_draft_game_status_stream_cursor_input": { "initial_value": [ - 510 + 515 ], "ordering": [ - 224 + 229 ], "__typename": [ - 70 + 75 ] }, "e_draft_game_status_stream_cursor_value_input": { "description": [ - 70 + 75 ], "value": [ - 70 + 75 ], "__typename": [ - 70 + 75 ] }, "e_draft_game_status_update_column": {}, "e_draft_game_status_updates": { "_set": [ - 508 + 513 ], "where": [ - 495 + 500 ], "__typename": [ - 70 + 75 ] }, "e_friend_status": { "description": [ - 70 + 75 ], "value": [ - 70 + 75 ], "__typename": [ - 70 + 75 ] }, "e_friend_status_aggregate": { "aggregate": [ - 515 + 520 ], "nodes": [ - 513 + 518 ], "__typename": [ - 70 + 75 ] }, "e_friend_status_aggregate_fields": { @@ -9311,7 +9417,7 @@ export default { 38, { "columns": [ - 528, + 533, "[e_friend_status_select_column!]" ], "distinct": [ @@ -9320,88 +9426,88 @@ export default { } ], "max": [ - 521 + 526 ], "min": [ - 522 + 527 ], "__typename": [ - 70 + 75 ] }, "e_friend_status_bool_exp": { "_and": [ - 516 + 521 ], "_not": [ - 516 + 521 ], "_or": [ - 516 + 521 ], "description": [ - 72 + 77 ], "value": [ - 72 + 77 ], "__typename": [ - 70 + 75 ] }, "e_friend_status_constraint": {}, "e_friend_status_enum": {}, "e_friend_status_enum_comparison_exp": { "_eq": [ - 518 + 523 ], "_in": [ - 518 + 523 ], "_is_null": [ 3 ], "_neq": [ - 518 + 523 ], "_nin": [ - 518 + 523 ], "__typename": [ - 70 + 75 ] }, "e_friend_status_insert_input": { "description": [ - 70 + 75 ], "value": [ - 70 + 75 ], "__typename": [ - 70 + 75 ] }, "e_friend_status_max_fields": { "description": [ - 70 + 75 ], "value": [ - 70 + 75 ], "__typename": [ - 70 + 75 ] }, "e_friend_status_min_fields": { "description": [ - 70 + 75 ], "value": [ - 70 + 75 ], "__typename": [ - 70 + 75 ] }, "e_friend_status_mutation_response": { @@ -9409,122 +9515,122 @@ export default { 38 ], "returning": [ - 513 + 518 ], "__typename": [ - 70 + 75 ] }, "e_friend_status_obj_rel_insert_input": { "data": [ - 520 + 525 ], "on_conflict": [ - 525 + 530 ], "__typename": [ - 70 + 75 ] }, "e_friend_status_on_conflict": { "constraint": [ - 517 + 522 ], "update_columns": [ - 532 + 537 ], "where": [ - 516 + 521 ], "__typename": [ - 70 + 75 ] }, "e_friend_status_order_by": { "description": [ - 2011 + 2016 ], "value": [ - 2011 + 2016 ], "__typename": [ - 70 + 75 ] }, "e_friend_status_pk_columns_input": { "value": [ - 70 + 75 ], "__typename": [ - 70 + 75 ] }, "e_friend_status_select_column": {}, "e_friend_status_set_input": { "description": [ - 70 + 75 ], "value": [ - 70 + 75 ], "__typename": [ - 70 + 75 ] }, "e_friend_status_stream_cursor_input": { "initial_value": [ - 531 + 536 ], "ordering": [ - 224 + 229 ], "__typename": [ - 70 + 75 ] }, "e_friend_status_stream_cursor_value_input": { "description": [ - 70 + 75 ], "value": [ - 70 + 75 ], "__typename": [ - 70 + 75 ] }, "e_friend_status_update_column": {}, "e_friend_status_updates": { "_set": [ - 529 + 534 ], "where": [ - 516 + 521 ], "__typename": [ - 70 + 75 ] }, "e_game_cfg_types": { "description": [ - 70 + 75 ], "value": [ - 70 + 75 ], "__typename": [ - 70 + 75 ] }, "e_game_cfg_types_aggregate": { "aggregate": [ - 536 + 541 ], "nodes": [ - 534 + 539 ], "__typename": [ - 70 + 75 ] }, "e_game_cfg_types_aggregate_fields": { @@ -9532,7 +9638,7 @@ export default { 38, { "columns": [ - 548, + 553, "[e_game_cfg_types_select_column!]" ], "distinct": [ @@ -9541,88 +9647,88 @@ export default { } ], "max": [ - 542 + 547 ], "min": [ - 543 + 548 ], "__typename": [ - 70 + 75 ] }, "e_game_cfg_types_bool_exp": { "_and": [ - 537 + 542 ], "_not": [ - 537 + 542 ], "_or": [ - 537 + 542 ], "description": [ - 72 + 77 ], "value": [ - 72 + 77 ], "__typename": [ - 70 + 75 ] }, "e_game_cfg_types_constraint": {}, "e_game_cfg_types_enum": {}, "e_game_cfg_types_enum_comparison_exp": { "_eq": [ - 539 + 544 ], "_in": [ - 539 + 544 ], "_is_null": [ 3 ], "_neq": [ - 539 + 544 ], "_nin": [ - 539 + 544 ], "__typename": [ - 70 + 75 ] }, "e_game_cfg_types_insert_input": { "description": [ - 70 + 75 ], "value": [ - 70 + 75 ], "__typename": [ - 70 + 75 ] }, "e_game_cfg_types_max_fields": { "description": [ - 70 + 75 ], "value": [ - 70 + 75 ], "__typename": [ - 70 + 75 ] }, "e_game_cfg_types_min_fields": { "description": [ - 70 + 75 ], "value": [ - 70 + 75 ], "__typename": [ - 70 + 75 ] }, "e_game_cfg_types_mutation_response": { @@ -9630,111 +9736,111 @@ export default { 38 ], "returning": [ - 534 + 539 ], "__typename": [ - 70 + 75 ] }, "e_game_cfg_types_on_conflict": { "constraint": [ - 538 + 543 ], "update_columns": [ - 552 + 557 ], "where": [ - 537 + 542 ], "__typename": [ - 70 + 75 ] }, "e_game_cfg_types_order_by": { "description": [ - 2011 + 2016 ], "value": [ - 2011 + 2016 ], "__typename": [ - 70 + 75 ] }, "e_game_cfg_types_pk_columns_input": { "value": [ - 70 + 75 ], "__typename": [ - 70 + 75 ] }, "e_game_cfg_types_select_column": {}, "e_game_cfg_types_set_input": { "description": [ - 70 + 75 ], "value": [ - 70 + 75 ], "__typename": [ - 70 + 75 ] }, "e_game_cfg_types_stream_cursor_input": { "initial_value": [ - 551 + 556 ], "ordering": [ - 224 + 229 ], "__typename": [ - 70 + 75 ] }, "e_game_cfg_types_stream_cursor_value_input": { "description": [ - 70 + 75 ], "value": [ - 70 + 75 ], "__typename": [ - 70 + 75 ] }, "e_game_cfg_types_update_column": {}, "e_game_cfg_types_updates": { "_set": [ - 549 + 554 ], "where": [ - 537 + 542 ], "__typename": [ - 70 + 75 ] }, "e_game_server_node_statuses": { "description": [ - 70 + 75 ], "value": [ - 70 + 75 ], "__typename": [ - 70 + 75 ] }, "e_game_server_node_statuses_aggregate": { "aggregate": [ - 556 + 561 ], "nodes": [ - 554 + 559 ], "__typename": [ - 70 + 75 ] }, "e_game_server_node_statuses_aggregate_fields": { @@ -9742,7 +9848,7 @@ export default { 38, { "columns": [ - 569, + 574, "[e_game_server_node_statuses_select_column!]" ], "distinct": [ @@ -9751,88 +9857,88 @@ export default { } ], "max": [ - 562 + 567 ], "min": [ - 563 + 568 ], "__typename": [ - 70 + 75 ] }, "e_game_server_node_statuses_bool_exp": { "_and": [ - 557 + 562 ], "_not": [ - 557 + 562 ], "_or": [ - 557 + 562 ], "description": [ - 72 + 77 ], "value": [ - 72 + 77 ], "__typename": [ - 70 + 75 ] }, "e_game_server_node_statuses_constraint": {}, "e_game_server_node_statuses_enum": {}, "e_game_server_node_statuses_enum_comparison_exp": { "_eq": [ - 559 + 564 ], "_in": [ - 559 + 564 ], "_is_null": [ 3 ], "_neq": [ - 559 + 564 ], "_nin": [ - 559 + 564 ], "__typename": [ - 70 + 75 ] }, "e_game_server_node_statuses_insert_input": { "description": [ - 70 + 75 ], "value": [ - 70 + 75 ], "__typename": [ - 70 + 75 ] }, "e_game_server_node_statuses_max_fields": { "description": [ - 70 + 75 ], "value": [ - 70 + 75 ], "__typename": [ - 70 + 75 ] }, "e_game_server_node_statuses_min_fields": { "description": [ - 70 + 75 ], "value": [ - 70 + 75 ], "__typename": [ - 70 + 75 ] }, "e_game_server_node_statuses_mutation_response": { @@ -9840,122 +9946,122 @@ export default { 38 ], "returning": [ - 554 + 559 ], "__typename": [ - 70 + 75 ] }, "e_game_server_node_statuses_obj_rel_insert_input": { "data": [ - 561 + 566 ], "on_conflict": [ - 566 + 571 ], "__typename": [ - 70 + 75 ] }, "e_game_server_node_statuses_on_conflict": { "constraint": [ - 558 + 563 ], "update_columns": [ - 573 + 578 ], "where": [ - 557 + 562 ], "__typename": [ - 70 + 75 ] }, "e_game_server_node_statuses_order_by": { "description": [ - 2011 + 2016 ], "value": [ - 2011 + 2016 ], "__typename": [ - 70 + 75 ] }, "e_game_server_node_statuses_pk_columns_input": { "value": [ - 70 + 75 ], "__typename": [ - 70 + 75 ] }, "e_game_server_node_statuses_select_column": {}, "e_game_server_node_statuses_set_input": { "description": [ - 70 + 75 ], "value": [ - 70 + 75 ], "__typename": [ - 70 + 75 ] }, "e_game_server_node_statuses_stream_cursor_input": { "initial_value": [ - 572 + 577 ], "ordering": [ - 224 + 229 ], "__typename": [ - 70 + 75 ] }, "e_game_server_node_statuses_stream_cursor_value_input": { "description": [ - 70 + 75 ], "value": [ - 70 + 75 ], "__typename": [ - 70 + 75 ] }, "e_game_server_node_statuses_update_column": {}, "e_game_server_node_statuses_updates": { "_set": [ - 570 + 575 ], "where": [ - 557 + 562 ], "__typename": [ - 70 + 75 ] }, "e_lobby_access": { "description": [ - 70 + 75 ], "value": [ - 70 + 75 ], "__typename": [ - 70 + 75 ] }, "e_lobby_access_aggregate": { "aggregate": [ - 577 + 582 ], "nodes": [ - 575 + 580 ], "__typename": [ - 70 + 75 ] }, "e_lobby_access_aggregate_fields": { @@ -9963,7 +10069,7 @@ export default { 38, { "columns": [ - 590, + 595, "[e_lobby_access_select_column!]" ], "distinct": [ @@ -9972,88 +10078,88 @@ export default { } ], "max": [ - 583 + 588 ], "min": [ - 584 + 589 ], "__typename": [ - 70 + 75 ] }, "e_lobby_access_bool_exp": { "_and": [ - 578 + 583 ], "_not": [ - 578 + 583 ], "_or": [ - 578 + 583 ], "description": [ - 72 + 77 ], "value": [ - 72 + 77 ], "__typename": [ - 70 + 75 ] }, "e_lobby_access_constraint": {}, "e_lobby_access_enum": {}, "e_lobby_access_enum_comparison_exp": { "_eq": [ - 580 + 585 ], "_in": [ - 580 + 585 ], "_is_null": [ 3 ], "_neq": [ - 580 + 585 ], "_nin": [ - 580 + 585 ], "__typename": [ - 70 + 75 ] }, "e_lobby_access_insert_input": { "description": [ - 70 + 75 ], "value": [ - 70 + 75 ], "__typename": [ - 70 + 75 ] }, "e_lobby_access_max_fields": { "description": [ - 70 + 75 ], "value": [ - 70 + 75 ], "__typename": [ - 70 + 75 ] }, "e_lobby_access_min_fields": { "description": [ - 70 + 75 ], "value": [ - 70 + 75 ], "__typename": [ - 70 + 75 ] }, "e_lobby_access_mutation_response": { @@ -10061,122 +10167,122 @@ export default { 38 ], "returning": [ - 575 + 580 ], "__typename": [ - 70 + 75 ] }, "e_lobby_access_obj_rel_insert_input": { "data": [ - 582 + 587 ], "on_conflict": [ - 587 + 592 ], "__typename": [ - 70 + 75 ] }, "e_lobby_access_on_conflict": { "constraint": [ - 579 + 584 ], "update_columns": [ - 594 + 599 ], "where": [ - 578 + 583 ], "__typename": [ - 70 + 75 ] }, "e_lobby_access_order_by": { "description": [ - 2011 + 2016 ], "value": [ - 2011 + 2016 ], "__typename": [ - 70 + 75 ] }, "e_lobby_access_pk_columns_input": { "value": [ - 70 + 75 ], "__typename": [ - 70 + 75 ] }, "e_lobby_access_select_column": {}, "e_lobby_access_set_input": { "description": [ - 70 + 75 ], "value": [ - 70 + 75 ], "__typename": [ - 70 + 75 ] }, "e_lobby_access_stream_cursor_input": { "initial_value": [ - 593 + 598 ], "ordering": [ - 224 + 229 ], "__typename": [ - 70 + 75 ] }, "e_lobby_access_stream_cursor_value_input": { "description": [ - 70 + 75 ], "value": [ - 70 + 75 ], "__typename": [ - 70 + 75 ] }, "e_lobby_access_update_column": {}, "e_lobby_access_updates": { "_set": [ - 591 + 596 ], "where": [ - 578 + 583 ], "__typename": [ - 70 + 75 ] }, "e_lobby_player_status": { "description": [ - 70 + 75 ], "value": [ - 70 + 75 ], "__typename": [ - 70 + 75 ] }, "e_lobby_player_status_aggregate": { "aggregate": [ - 598 + 603 ], "nodes": [ - 596 + 601 ], "__typename": [ - 70 + 75 ] }, "e_lobby_player_status_aggregate_fields": { @@ -10184,7 +10290,7 @@ export default { 38, { "columns": [ - 610, + 615, "[e_lobby_player_status_select_column!]" ], "distinct": [ @@ -10193,88 +10299,88 @@ export default { } ], "max": [ - 604 + 609 ], "min": [ - 605 + 610 ], "__typename": [ - 70 + 75 ] }, "e_lobby_player_status_bool_exp": { "_and": [ - 599 + 604 ], "_not": [ - 599 + 604 ], "_or": [ - 599 + 604 ], "description": [ - 72 + 77 ], "value": [ - 72 + 77 ], "__typename": [ - 70 + 75 ] }, "e_lobby_player_status_constraint": {}, "e_lobby_player_status_enum": {}, "e_lobby_player_status_enum_comparison_exp": { "_eq": [ - 601 + 606 ], "_in": [ - 601 + 606 ], "_is_null": [ 3 ], "_neq": [ - 601 + 606 ], "_nin": [ - 601 + 606 ], "__typename": [ - 70 + 75 ] }, "e_lobby_player_status_insert_input": { "description": [ - 70 + 75 ], "value": [ - 70 + 75 ], "__typename": [ - 70 + 75 ] }, "e_lobby_player_status_max_fields": { "description": [ - 70 + 75 ], "value": [ - 70 + 75 ], "__typename": [ - 70 + 75 ] }, "e_lobby_player_status_min_fields": { "description": [ - 70 + 75 ], "value": [ - 70 + 75 ], "__typename": [ - 70 + 75 ] }, "e_lobby_player_status_mutation_response": { @@ -10282,111 +10388,111 @@ export default { 38 ], "returning": [ - 596 + 601 ], "__typename": [ - 70 + 75 ] }, "e_lobby_player_status_on_conflict": { "constraint": [ - 600 + 605 ], "update_columns": [ - 614 + 619 ], "where": [ - 599 + 604 ], "__typename": [ - 70 + 75 ] }, "e_lobby_player_status_order_by": { "description": [ - 2011 + 2016 ], "value": [ - 2011 + 2016 ], "__typename": [ - 70 + 75 ] }, "e_lobby_player_status_pk_columns_input": { "value": [ - 70 + 75 ], "__typename": [ - 70 + 75 ] }, "e_lobby_player_status_select_column": {}, "e_lobby_player_status_set_input": { "description": [ - 70 + 75 ], "value": [ - 70 + 75 ], "__typename": [ - 70 + 75 ] }, "e_lobby_player_status_stream_cursor_input": { "initial_value": [ - 613 + 618 ], "ordering": [ - 224 + 229 ], "__typename": [ - 70 + 75 ] }, "e_lobby_player_status_stream_cursor_value_input": { "description": [ - 70 + 75 ], "value": [ - 70 + 75 ], "__typename": [ - 70 + 75 ] }, "e_lobby_player_status_update_column": {}, "e_lobby_player_status_updates": { "_set": [ - 611 + 616 ], "where": [ - 599 + 604 ], "__typename": [ - 70 + 75 ] }, "e_map_pool_types": { "description": [ - 70 + 75 ], "value": [ - 70 + 75 ], "__typename": [ - 70 + 75 ] }, "e_map_pool_types_aggregate": { "aggregate": [ - 618 + 623 ], "nodes": [ - 616 + 621 ], "__typename": [ - 70 + 75 ] }, "e_map_pool_types_aggregate_fields": { @@ -10394,7 +10500,7 @@ export default { 38, { "columns": [ - 631, + 636, "[e_map_pool_types_select_column!]" ], "distinct": [ @@ -10403,88 +10509,88 @@ export default { } ], "max": [ - 624 + 629 ], "min": [ - 625 + 630 ], "__typename": [ - 70 + 75 ] }, "e_map_pool_types_bool_exp": { "_and": [ - 619 + 624 ], "_not": [ - 619 + 624 ], "_or": [ - 619 + 624 ], "description": [ - 72 + 77 ], "value": [ - 72 + 77 ], "__typename": [ - 70 + 75 ] }, "e_map_pool_types_constraint": {}, "e_map_pool_types_enum": {}, "e_map_pool_types_enum_comparison_exp": { "_eq": [ - 621 + 626 ], "_in": [ - 621 + 626 ], "_is_null": [ 3 ], "_neq": [ - 621 + 626 ], "_nin": [ - 621 + 626 ], "__typename": [ - 70 + 75 ] }, "e_map_pool_types_insert_input": { "description": [ - 70 + 75 ], "value": [ - 70 + 75 ], "__typename": [ - 70 + 75 ] }, "e_map_pool_types_max_fields": { "description": [ - 70 + 75 ], "value": [ - 70 + 75 ], "__typename": [ - 70 + 75 ] }, "e_map_pool_types_min_fields": { "description": [ - 70 + 75 ], "value": [ - 70 + 75 ], "__typename": [ - 70 + 75 ] }, "e_map_pool_types_mutation_response": { @@ -10492,111 +10598,111 @@ export default { 38 ], "returning": [ - 616 + 621 ], "__typename": [ - 70 + 75 ] }, "e_map_pool_types_obj_rel_insert_input": { "data": [ - 623 + 628 ], "on_conflict": [ - 628 + 633 ], "__typename": [ - 70 + 75 ] }, "e_map_pool_types_on_conflict": { "constraint": [ - 620 + 625 ], "update_columns": [ - 635 + 640 ], "where": [ - 619 + 624 ], "__typename": [ - 70 + 75 ] }, "e_map_pool_types_order_by": { "description": [ - 2011 + 2016 ], "value": [ - 2011 + 2016 ], "__typename": [ - 70 + 75 ] }, "e_map_pool_types_pk_columns_input": { "value": [ - 70 + 75 ], "__typename": [ - 70 + 75 ] }, "e_map_pool_types_select_column": {}, "e_map_pool_types_set_input": { "description": [ - 70 + 75 ], "value": [ - 70 + 75 ], "__typename": [ - 70 + 75 ] }, "e_map_pool_types_stream_cursor_input": { "initial_value": [ - 634 + 639 ], "ordering": [ - 224 + 229 ], "__typename": [ - 70 + 75 ] }, "e_map_pool_types_stream_cursor_value_input": { "description": [ - 70 + 75 ], "value": [ - 70 + 75 ], "__typename": [ - 70 + 75 ] }, "e_map_pool_types_update_column": {}, "e_map_pool_types_updates": { "_set": [ - 632 + 637 ], "where": [ - 619 + 624 ], "__typename": [ - 70 + 75 ] }, "e_match_clip_visibility": { "description": [ - 70 + 75 ], "match_clips": [ - 1373, + 1378, { "distinct_on": [ - 1395, + 1400, "[match_clips_select_column!]" ], "limit": [ @@ -10606,19 +10712,19 @@ export default { 38 ], "order_by": [ - 1393, + 1398, "[match_clips_order_by!]" ], "where": [ - 1382 + 1387 ] } ], "match_clips_aggregate": [ - 1374, + 1379, { "distinct_on": [ - 1395, + 1400, "[match_clips_select_column!]" ], "limit": [ @@ -10628,30 +10734,30 @@ export default { 38 ], "order_by": [ - 1393, + 1398, "[match_clips_order_by!]" ], "where": [ - 1382 + 1387 ] } ], "value": [ - 70 + 75 ], "__typename": [ - 70 + 75 ] }, "e_match_clip_visibility_aggregate": { "aggregate": [ - 639 + 644 ], "nodes": [ - 637 + 642 ], "__typename": [ - 70 + 75 ] }, "e_match_clip_visibility_aggregate_fields": { @@ -10659,7 +10765,7 @@ export default { 38, { "columns": [ - 651, + 656, "[e_match_clip_visibility_select_column!]" ], "distinct": [ @@ -10668,97 +10774,97 @@ export default { } ], "max": [ - 645 + 650 ], "min": [ - 646 + 651 ], "__typename": [ - 70 + 75 ] }, "e_match_clip_visibility_bool_exp": { "_and": [ - 640 + 645 ], "_not": [ - 640 + 645 ], "_or": [ - 640 + 645 ], "description": [ - 72 + 77 ], "match_clips": [ - 1382 + 1387 ], "match_clips_aggregate": [ - 1375 + 1380 ], "value": [ - 72 + 77 ], "__typename": [ - 70 + 75 ] }, "e_match_clip_visibility_constraint": {}, "e_match_clip_visibility_enum": {}, "e_match_clip_visibility_enum_comparison_exp": { "_eq": [ - 642 + 647 ], "_in": [ - 642 + 647 ], "_is_null": [ 3 ], "_neq": [ - 642 + 647 ], "_nin": [ - 642 + 647 ], "__typename": [ - 70 + 75 ] }, "e_match_clip_visibility_insert_input": { "description": [ - 70 + 75 ], "match_clips": [ - 1379 + 1384 ], "value": [ - 70 + 75 ], "__typename": [ - 70 + 75 ] }, "e_match_clip_visibility_max_fields": { "description": [ - 70 + 75 ], "value": [ - 70 + 75 ], "__typename": [ - 70 + 75 ] }, "e_match_clip_visibility_min_fields": { "description": [ - 70 + 75 ], "value": [ - 70 + 75 ], "__typename": [ - 70 + 75 ] }, "e_match_clip_visibility_mutation_response": { @@ -10766,103 +10872,103 @@ export default { 38 ], "returning": [ - 637 + 642 ], "__typename": [ - 70 + 75 ] }, "e_match_clip_visibility_on_conflict": { "constraint": [ - 641 + 646 ], "update_columns": [ - 655 + 660 ], "where": [ - 640 + 645 ], "__typename": [ - 70 + 75 ] }, "e_match_clip_visibility_order_by": { "description": [ - 2011 + 2016 ], "match_clips_aggregate": [ - 1378 + 1383 ], "value": [ - 2011 + 2016 ], "__typename": [ - 70 + 75 ] }, "e_match_clip_visibility_pk_columns_input": { "value": [ - 70 + 75 ], "__typename": [ - 70 + 75 ] }, "e_match_clip_visibility_select_column": {}, "e_match_clip_visibility_set_input": { "description": [ - 70 + 75 ], "value": [ - 70 + 75 ], "__typename": [ - 70 + 75 ] }, "e_match_clip_visibility_stream_cursor_input": { "initial_value": [ - 654 + 659 ], "ordering": [ - 224 + 229 ], "__typename": [ - 70 + 75 ] }, "e_match_clip_visibility_stream_cursor_value_input": { "description": [ - 70 + 75 ], "value": [ - 70 + 75 ], "__typename": [ - 70 + 75 ] }, "e_match_clip_visibility_update_column": {}, "e_match_clip_visibility_updates": { "_set": [ - 652 + 657 ], "where": [ - 640 + 645 ], "__typename": [ - 70 + 75 ] }, "e_match_map_status": { "description": [ - 70 + 75 ], "match_maps": [ - 1664, + 1669, { "distinct_on": [ - 1686, + 1691, "[match_maps_select_column!]" ], "limit": [ @@ -10872,19 +10978,19 @@ export default { 38 ], "order_by": [ - 1684, + 1689, "[match_maps_order_by!]" ], "where": [ - 1673 + 1678 ] } ], "match_maps_aggregate": [ - 1665, + 1670, { "distinct_on": [ - 1686, + 1691, "[match_maps_select_column!]" ], "limit": [ @@ -10894,30 +11000,30 @@ export default { 38 ], "order_by": [ - 1684, + 1689, "[match_maps_order_by!]" ], "where": [ - 1673 + 1678 ] } ], "value": [ - 70 + 75 ], "__typename": [ - 70 + 75 ] }, "e_match_map_status_aggregate": { "aggregate": [ - 659 + 664 ], "nodes": [ - 657 + 662 ], "__typename": [ - 70 + 75 ] }, "e_match_map_status_aggregate_fields": { @@ -10925,7 +11031,7 @@ export default { 38, { "columns": [ - 672, + 677, "[e_match_map_status_select_column!]" ], "distinct": [ @@ -10934,97 +11040,97 @@ export default { } ], "max": [ - 665 + 670 ], "min": [ - 666 + 671 ], "__typename": [ - 70 + 75 ] }, "e_match_map_status_bool_exp": { "_and": [ - 660 + 665 ], "_not": [ - 660 + 665 ], "_or": [ - 660 + 665 ], "description": [ - 72 + 77 ], "match_maps": [ - 1673 + 1678 ], "match_maps_aggregate": [ - 1666 + 1671 ], "value": [ - 72 + 77 ], "__typename": [ - 70 + 75 ] }, "e_match_map_status_constraint": {}, "e_match_map_status_enum": {}, "e_match_map_status_enum_comparison_exp": { "_eq": [ - 662 + 667 ], "_in": [ - 662 + 667 ], "_is_null": [ 3 ], "_neq": [ - 662 + 667 ], "_nin": [ - 662 + 667 ], "__typename": [ - 70 + 75 ] }, "e_match_map_status_insert_input": { "description": [ - 70 + 75 ], "match_maps": [ - 1670 + 1675 ], "value": [ - 70 + 75 ], "__typename": [ - 70 + 75 ] }, "e_match_map_status_max_fields": { "description": [ - 70 + 75 ], "value": [ - 70 + 75 ], "__typename": [ - 70 + 75 ] }, "e_match_map_status_min_fields": { "description": [ - 70 + 75 ], "value": [ - 70 + 75 ], "__typename": [ - 70 + 75 ] }, "e_match_map_status_mutation_response": { @@ -11032,125 +11138,125 @@ export default { 38 ], "returning": [ - 657 + 662 ], "__typename": [ - 70 + 75 ] }, "e_match_map_status_obj_rel_insert_input": { "data": [ - 664 + 669 ], "on_conflict": [ - 669 + 674 ], "__typename": [ - 70 + 75 ] }, "e_match_map_status_on_conflict": { "constraint": [ - 661 + 666 ], "update_columns": [ - 676 + 681 ], "where": [ - 660 + 665 ], "__typename": [ - 70 + 75 ] }, "e_match_map_status_order_by": { "description": [ - 2011 + 2016 ], "match_maps_aggregate": [ - 1669 + 1674 ], "value": [ - 2011 + 2016 ], "__typename": [ - 70 + 75 ] }, "e_match_map_status_pk_columns_input": { "value": [ - 70 + 75 ], "__typename": [ - 70 + 75 ] }, "e_match_map_status_select_column": {}, "e_match_map_status_set_input": { "description": [ - 70 + 75 ], "value": [ - 70 + 75 ], "__typename": [ - 70 + 75 ] }, "e_match_map_status_stream_cursor_input": { "initial_value": [ - 675 + 680 ], "ordering": [ - 224 + 229 ], "__typename": [ - 70 + 75 ] }, "e_match_map_status_stream_cursor_value_input": { "description": [ - 70 + 75 ], "value": [ - 70 + 75 ], "__typename": [ - 70 + 75 ] }, "e_match_map_status_update_column": {}, "e_match_map_status_updates": { "_set": [ - 673 + 678 ], "where": [ - 660 + 665 ], "__typename": [ - 70 + 75 ] }, "e_match_mode": { "description": [ - 70 + 75 ], "value": [ - 70 + 75 ], "__typename": [ - 70 + 75 ] }, "e_match_mode_aggregate": { "aggregate": [ - 680 + 685 ], "nodes": [ - 678 + 683 ], "__typename": [ - 70 + 75 ] }, "e_match_mode_aggregate_fields": { @@ -11158,7 +11264,7 @@ export default { 38, { "columns": [ - 692, + 697, "[e_match_mode_select_column!]" ], "distinct": [ @@ -11167,88 +11273,88 @@ export default { } ], "max": [ - 686 + 691 ], "min": [ - 687 + 692 ], "__typename": [ - 70 + 75 ] }, "e_match_mode_bool_exp": { "_and": [ - 681 + 686 ], "_not": [ - 681 + 686 ], "_or": [ - 681 + 686 ], "description": [ - 72 + 77 ], "value": [ - 72 + 77 ], "__typename": [ - 70 + 75 ] }, "e_match_mode_constraint": {}, "e_match_mode_enum": {}, "e_match_mode_enum_comparison_exp": { "_eq": [ - 683 + 688 ], "_in": [ - 683 + 688 ], "_is_null": [ 3 ], "_neq": [ - 683 + 688 ], "_nin": [ - 683 + 688 ], "__typename": [ - 70 + 75 ] }, "e_match_mode_insert_input": { "description": [ - 70 + 75 ], "value": [ - 70 + 75 ], "__typename": [ - 70 + 75 ] }, "e_match_mode_max_fields": { "description": [ - 70 + 75 ], "value": [ - 70 + 75 ], "__typename": [ - 70 + 75 ] }, "e_match_mode_min_fields": { "description": [ - 70 + 75 ], "value": [ - 70 + 75 ], "__typename": [ - 70 + 75 ] }, "e_match_mode_mutation_response": { @@ -11256,100 +11362,100 @@ export default { 38 ], "returning": [ - 678 + 683 ], "__typename": [ - 70 + 75 ] }, "e_match_mode_on_conflict": { "constraint": [ - 682 + 687 ], "update_columns": [ - 696 + 701 ], "where": [ - 681 + 686 ], "__typename": [ - 70 + 75 ] }, "e_match_mode_order_by": { "description": [ - 2011 + 2016 ], "value": [ - 2011 + 2016 ], "__typename": [ - 70 + 75 ] }, "e_match_mode_pk_columns_input": { "value": [ - 70 + 75 ], "__typename": [ - 70 + 75 ] }, "e_match_mode_select_column": {}, "e_match_mode_set_input": { "description": [ - 70 + 75 ], "value": [ - 70 + 75 ], "__typename": [ - 70 + 75 ] }, "e_match_mode_stream_cursor_input": { "initial_value": [ - 695 + 700 ], "ordering": [ - 224 + 229 ], "__typename": [ - 70 + 75 ] }, "e_match_mode_stream_cursor_value_input": { "description": [ - 70 + 75 ], "value": [ - 70 + 75 ], "__typename": [ - 70 + 75 ] }, "e_match_mode_update_column": {}, "e_match_mode_updates": { "_set": [ - 693 + 698 ], "where": [ - 681 + 686 ], "__typename": [ - 70 + 75 ] }, "e_match_status": { "description": [ - 70 + 75 ], "matches": [ - 1826, + 1831, { "distinct_on": [ - 1848, + 1853, "[matches_select_column!]" ], "limit": [ @@ -11359,19 +11465,19 @@ export default { 38 ], "order_by": [ - 1846, + 1851, "[matches_order_by!]" ], "where": [ - 1835 + 1840 ] } ], "matches_aggregate": [ - 1827, + 1832, { "distinct_on": [ - 1848, + 1853, "[matches_select_column!]" ], "limit": [ @@ -11381,30 +11487,30 @@ export default { 38 ], "order_by": [ - 1846, + 1851, "[matches_order_by!]" ], "where": [ - 1835 + 1840 ] } ], "value": [ - 70 + 75 ], "__typename": [ - 70 + 75 ] }, "e_match_status_aggregate": { "aggregate": [ - 700 + 705 ], "nodes": [ - 698 + 703 ], "__typename": [ - 70 + 75 ] }, "e_match_status_aggregate_fields": { @@ -11412,7 +11518,7 @@ export default { 38, { "columns": [ - 713, + 718, "[e_match_status_select_column!]" ], "distinct": [ @@ -11421,97 +11527,97 @@ export default { } ], "max": [ - 706 + 711 ], "min": [ - 707 + 712 ], "__typename": [ - 70 + 75 ] }, "e_match_status_bool_exp": { "_and": [ - 701 + 706 ], "_not": [ - 701 + 706 ], "_or": [ - 701 + 706 ], "description": [ - 72 + 77 ], "matches": [ - 1835 + 1840 ], "matches_aggregate": [ - 1828 + 1833 ], "value": [ - 72 + 77 ], "__typename": [ - 70 + 75 ] }, "e_match_status_constraint": {}, "e_match_status_enum": {}, "e_match_status_enum_comparison_exp": { "_eq": [ - 703 + 708 ], "_in": [ - 703 + 708 ], "_is_null": [ 3 ], "_neq": [ - 703 + 708 ], "_nin": [ - 703 + 708 ], "__typename": [ - 70 + 75 ] }, "e_match_status_insert_input": { "description": [ - 70 + 75 ], "matches": [ - 1832 + 1837 ], "value": [ - 70 + 75 ], "__typename": [ - 70 + 75 ] }, "e_match_status_max_fields": { "description": [ - 70 + 75 ], "value": [ - 70 + 75 ], "__typename": [ - 70 + 75 ] }, "e_match_status_min_fields": { "description": [ - 70 + 75 ], "value": [ - 70 + 75 ], "__typename": [ - 70 + 75 ] }, "e_match_status_mutation_response": { @@ -11519,114 +11625,114 @@ export default { 38 ], "returning": [ - 698 + 703 ], "__typename": [ - 70 + 75 ] }, "e_match_status_obj_rel_insert_input": { "data": [ - 705 + 710 ], "on_conflict": [ - 710 + 715 ], "__typename": [ - 70 + 75 ] }, "e_match_status_on_conflict": { "constraint": [ - 702 + 707 ], "update_columns": [ - 717 + 722 ], "where": [ - 701 + 706 ], "__typename": [ - 70 + 75 ] }, "e_match_status_order_by": { "description": [ - 2011 + 2016 ], "matches_aggregate": [ - 1831 + 1836 ], "value": [ - 2011 + 2016 ], "__typename": [ - 70 + 75 ] }, "e_match_status_pk_columns_input": { "value": [ - 70 + 75 ], "__typename": [ - 70 + 75 ] }, "e_match_status_select_column": {}, "e_match_status_set_input": { "description": [ - 70 + 75 ], "value": [ - 70 + 75 ], "__typename": [ - 70 + 75 ] }, "e_match_status_stream_cursor_input": { "initial_value": [ - 716 + 721 ], "ordering": [ - 224 + 229 ], "__typename": [ - 70 + 75 ] }, "e_match_status_stream_cursor_value_input": { "description": [ - 70 + 75 ], "value": [ - 70 + 75 ], "__typename": [ - 70 + 75 ] }, "e_match_status_update_column": {}, "e_match_status_updates": { "_set": [ - 714 + 719 ], "where": [ - 701 + 706 ], "__typename": [ - 70 + 75 ] }, "e_match_types": { "description": [ - 70 + 75 ], "maps": [ - 1344, + 1349, { "distinct_on": [ - 1365, + 1370, "[maps_select_column!]" ], "limit": [ @@ -11636,19 +11742,19 @@ export default { 38 ], "order_by": [ - 1363, + 1368, "[maps_order_by!]" ], "where": [ - 1353 + 1358 ] } ], "maps_aggregate": [ - 1345, + 1350, { "distinct_on": [ - 1365, + 1370, "[maps_select_column!]" ], "limit": [ @@ -11658,30 +11764,30 @@ export default { 38 ], "order_by": [ - 1363, + 1368, "[maps_order_by!]" ], "where": [ - 1353 + 1358 ] } ], "value": [ - 70 + 75 ], "__typename": [ - 70 + 75 ] }, "e_match_types_aggregate": { "aggregate": [ - 721 + 726 ], "nodes": [ - 719 + 724 ], "__typename": [ - 70 + 75 ] }, "e_match_types_aggregate_fields": { @@ -11689,7 +11795,7 @@ export default { 38, { "columns": [ - 734, + 739, "[e_match_types_select_column!]" ], "distinct": [ @@ -11698,97 +11804,97 @@ export default { } ], "max": [ - 727 + 732 ], "min": [ - 728 + 733 ], "__typename": [ - 70 + 75 ] }, "e_match_types_bool_exp": { "_and": [ - 722 + 727 ], "_not": [ - 722 + 727 ], "_or": [ - 722 + 727 ], "description": [ - 72 + 77 ], "maps": [ - 1353 + 1358 ], "maps_aggregate": [ - 1346 + 1351 ], "value": [ - 72 + 77 ], "__typename": [ - 70 + 75 ] }, "e_match_types_constraint": {}, "e_match_types_enum": {}, "e_match_types_enum_comparison_exp": { "_eq": [ - 724 + 729 ], "_in": [ - 724 + 729 ], "_is_null": [ 3 ], "_neq": [ - 724 + 729 ], "_nin": [ - 724 + 729 ], "__typename": [ - 70 + 75 ] }, "e_match_types_insert_input": { "description": [ - 70 + 75 ], "maps": [ - 1352 + 1357 ], "value": [ - 70 + 75 ], "__typename": [ - 70 + 75 ] }, "e_match_types_max_fields": { "description": [ - 70 + 75 ], "value": [ - 70 + 75 ], "__typename": [ - 70 + 75 ] }, "e_match_types_min_fields": { "description": [ - 70 + 75 ], "value": [ - 70 + 75 ], "__typename": [ - 70 + 75 ] }, "e_match_types_mutation_response": { @@ -11796,125 +11902,125 @@ export default { 38 ], "returning": [ - 719 + 724 ], "__typename": [ - 70 + 75 ] }, "e_match_types_obj_rel_insert_input": { "data": [ - 726 + 731 ], "on_conflict": [ - 731 + 736 ], "__typename": [ - 70 + 75 ] }, "e_match_types_on_conflict": { "constraint": [ - 723 + 728 ], "update_columns": [ - 738 + 743 ], "where": [ - 722 + 727 ], "__typename": [ - 70 + 75 ] }, "e_match_types_order_by": { "description": [ - 2011 + 2016 ], "maps_aggregate": [ - 1351 + 1356 ], "value": [ - 2011 + 2016 ], "__typename": [ - 70 + 75 ] }, "e_match_types_pk_columns_input": { "value": [ - 70 + 75 ], "__typename": [ - 70 + 75 ] }, "e_match_types_select_column": {}, "e_match_types_set_input": { "description": [ - 70 + 75 ], "value": [ - 70 + 75 ], "__typename": [ - 70 + 75 ] }, "e_match_types_stream_cursor_input": { "initial_value": [ - 737 + 742 ], "ordering": [ - 224 + 229 ], "__typename": [ - 70 + 75 ] }, "e_match_types_stream_cursor_value_input": { "description": [ - 70 + 75 ], "value": [ - 70 + 75 ], "__typename": [ - 70 + 75 ] }, "e_match_types_update_column": {}, "e_match_types_updates": { "_set": [ - 735 + 740 ], "where": [ - 722 + 727 ], "__typename": [ - 70 + 75 ] }, "e_notification_types": { "description": [ - 70 + 75 ], "value": [ - 70 + 75 ], "__typename": [ - 70 + 75 ] }, "e_notification_types_aggregate": { "aggregate": [ - 742 + 747 ], "nodes": [ - 740 + 745 ], "__typename": [ - 70 + 75 ] }, "e_notification_types_aggregate_fields": { @@ -11922,7 +12028,7 @@ export default { 38, { "columns": [ - 754, + 759, "[e_notification_types_select_column!]" ], "distinct": [ @@ -11931,88 +12037,88 @@ export default { } ], "max": [ - 748 + 753 ], "min": [ - 749 + 754 ], "__typename": [ - 70 + 75 ] }, "e_notification_types_bool_exp": { "_and": [ - 743 + 748 ], "_not": [ - 743 + 748 ], "_or": [ - 743 + 748 ], "description": [ - 72 + 77 ], "value": [ - 72 + 77 ], "__typename": [ - 70 + 75 ] }, "e_notification_types_constraint": {}, "e_notification_types_enum": {}, "e_notification_types_enum_comparison_exp": { "_eq": [ - 745 + 750 ], "_in": [ - 745 + 750 ], "_is_null": [ 3 ], "_neq": [ - 745 + 750 ], "_nin": [ - 745 + 750 ], "__typename": [ - 70 + 75 ] }, "e_notification_types_insert_input": { "description": [ - 70 + 75 ], "value": [ - 70 + 75 ], "__typename": [ - 70 + 75 ] }, "e_notification_types_max_fields": { "description": [ - 70 + 75 ], "value": [ - 70 + 75 ], "__typename": [ - 70 + 75 ] }, "e_notification_types_min_fields": { "description": [ - 70 + 75 ], "value": [ - 70 + 75 ], "__typename": [ - 70 + 75 ] }, "e_notification_types_mutation_response": { @@ -12020,100 +12126,100 @@ export default { 38 ], "returning": [ - 740 + 745 ], "__typename": [ - 70 + 75 ] }, "e_notification_types_on_conflict": { "constraint": [ - 744 + 749 ], "update_columns": [ - 758 + 763 ], "where": [ - 743 + 748 ], "__typename": [ - 70 + 75 ] }, "e_notification_types_order_by": { "description": [ - 2011 + 2016 ], "value": [ - 2011 + 2016 ], "__typename": [ - 70 + 75 ] }, "e_notification_types_pk_columns_input": { "value": [ - 70 + 75 ], "__typename": [ - 70 + 75 ] }, "e_notification_types_select_column": {}, "e_notification_types_set_input": { "description": [ - 70 + 75 ], "value": [ - 70 + 75 ], "__typename": [ - 70 + 75 ] }, "e_notification_types_stream_cursor_input": { "initial_value": [ - 757 + 762 ], "ordering": [ - 224 + 229 ], "__typename": [ - 70 + 75 ] }, "e_notification_types_stream_cursor_value_input": { "description": [ - 70 + 75 ], "value": [ - 70 + 75 ], "__typename": [ - 70 + 75 ] }, "e_notification_types_update_column": {}, "e_notification_types_updates": { "_set": [ - 755 + 760 ], "where": [ - 743 + 748 ], "__typename": [ - 70 + 75 ] }, "e_objective_types": { "description": [ - 70 + 75 ], "player_objectives": [ - 2567, + 2572, { "distinct_on": [ - 2588, + 2593, "[player_objectives_select_column!]" ], "limit": [ @@ -12123,19 +12229,19 @@ export default { 38 ], "order_by": [ - 2586, + 2591, "[player_objectives_order_by!]" ], "where": [ - 2576 + 2581 ] } ], "player_objectives_aggregate": [ - 2568, + 2573, { "distinct_on": [ - 2588, + 2593, "[player_objectives_select_column!]" ], "limit": [ @@ -12145,30 +12251,30 @@ export default { 38 ], "order_by": [ - 2586, + 2591, "[player_objectives_order_by!]" ], "where": [ - 2576 + 2581 ] } ], "value": [ - 70 + 75 ], "__typename": [ - 70 + 75 ] }, "e_objective_types_aggregate": { "aggregate": [ - 762 + 767 ], "nodes": [ - 760 + 765 ], "__typename": [ - 70 + 75 ] }, "e_objective_types_aggregate_fields": { @@ -12176,7 +12282,7 @@ export default { 38, { "columns": [ - 774, + 779, "[e_objective_types_select_column!]" ], "distinct": [ @@ -12185,97 +12291,97 @@ export default { } ], "max": [ - 768 + 773 ], "min": [ - 769 + 774 ], "__typename": [ - 70 + 75 ] }, "e_objective_types_bool_exp": { "_and": [ - 763 + 768 ], "_not": [ - 763 + 768 ], "_or": [ - 763 + 768 ], "description": [ - 72 + 77 ], "player_objectives": [ - 2576 + 2581 ], "player_objectives_aggregate": [ - 2569 + 2574 ], "value": [ - 72 + 77 ], "__typename": [ - 70 + 75 ] }, "e_objective_types_constraint": {}, "e_objective_types_enum": {}, "e_objective_types_enum_comparison_exp": { "_eq": [ - 765 + 770 ], "_in": [ - 765 + 770 ], "_is_null": [ 3 ], "_neq": [ - 765 + 770 ], "_nin": [ - 765 + 770 ], "__typename": [ - 70 + 75 ] }, "e_objective_types_insert_input": { "description": [ - 70 + 75 ], "player_objectives": [ - 2573 + 2578 ], "value": [ - 70 + 75 ], "__typename": [ - 70 + 75 ] }, "e_objective_types_max_fields": { "description": [ - 70 + 75 ], "value": [ - 70 + 75 ], "__typename": [ - 70 + 75 ] }, "e_objective_types_min_fields": { "description": [ - 70 + 75 ], "value": [ - 70 + 75 ], "__typename": [ - 70 + 75 ] }, "e_objective_types_mutation_response": { @@ -12283,114 +12389,114 @@ export default { 38 ], "returning": [ - 760 + 765 ], "__typename": [ - 70 + 75 ] }, "e_objective_types_on_conflict": { "constraint": [ - 764 + 769 ], "update_columns": [ - 778 + 783 ], "where": [ - 763 + 768 ], "__typename": [ - 70 + 75 ] }, "e_objective_types_order_by": { "description": [ - 2011 + 2016 ], "player_objectives_aggregate": [ - 2572 + 2577 ], "value": [ - 2011 + 2016 ], "__typename": [ - 70 + 75 ] }, "e_objective_types_pk_columns_input": { "value": [ - 70 + 75 ], "__typename": [ - 70 + 75 ] }, "e_objective_types_select_column": {}, "e_objective_types_set_input": { "description": [ - 70 + 75 ], "value": [ - 70 + 75 ], "__typename": [ - 70 + 75 ] }, "e_objective_types_stream_cursor_input": { "initial_value": [ - 777 + 782 ], "ordering": [ - 224 + 229 ], "__typename": [ - 70 + 75 ] }, "e_objective_types_stream_cursor_value_input": { "description": [ - 70 + 75 ], "value": [ - 70 + 75 ], "__typename": [ - 70 + 75 ] }, "e_objective_types_update_column": {}, "e_objective_types_updates": { "_set": [ - 775 + 780 ], "where": [ - 763 + 768 ], "__typename": [ - 70 + 75 ] }, "e_player_roles": { "description": [ - 70 + 75 ], "value": [ - 70 + 75 ], "__typename": [ - 70 + 75 ] }, "e_player_roles_aggregate": { "aggregate": [ - 782 + 787 ], "nodes": [ - 780 + 785 ], "__typename": [ - 70 + 75 ] }, "e_player_roles_aggregate_fields": { @@ -12398,7 +12504,7 @@ export default { 38, { "columns": [ - 794, + 799, "[e_player_roles_select_column!]" ], "distinct": [ @@ -12407,88 +12513,88 @@ export default { } ], "max": [ - 788 + 793 ], "min": [ - 789 + 794 ], "__typename": [ - 70 + 75 ] }, "e_player_roles_bool_exp": { "_and": [ - 783 + 788 ], "_not": [ - 783 + 788 ], "_or": [ - 783 + 788 ], "description": [ - 72 + 77 ], "value": [ - 72 + 77 ], "__typename": [ - 70 + 75 ] }, "e_player_roles_constraint": {}, "e_player_roles_enum": {}, "e_player_roles_enum_comparison_exp": { "_eq": [ - 785 + 790 ], "_in": [ - 785 + 790 ], "_is_null": [ 3 ], "_neq": [ - 785 + 790 ], "_nin": [ - 785 + 790 ], "__typename": [ - 70 + 75 ] }, "e_player_roles_insert_input": { "description": [ - 70 + 75 ], "value": [ - 70 + 75 ], "__typename": [ - 70 + 75 ] }, "e_player_roles_max_fields": { "description": [ - 70 + 75 ], "value": [ - 70 + 75 ], "__typename": [ - 70 + 75 ] }, "e_player_roles_min_fields": { "description": [ - 70 + 75 ], "value": [ - 70 + 75 ], "__typename": [ - 70 + 75 ] }, "e_player_roles_mutation_response": { @@ -12496,111 +12602,111 @@ export default { 38 ], "returning": [ - 780 + 785 ], "__typename": [ - 70 + 75 ] }, "e_player_roles_on_conflict": { "constraint": [ - 784 + 789 ], "update_columns": [ - 798 + 803 ], "where": [ - 783 + 788 ], "__typename": [ - 70 + 75 ] }, "e_player_roles_order_by": { "description": [ - 2011 + 2016 ], "value": [ - 2011 + 2016 ], "__typename": [ - 70 + 75 ] }, "e_player_roles_pk_columns_input": { "value": [ - 70 + 75 ], "__typename": [ - 70 + 75 ] }, "e_player_roles_select_column": {}, "e_player_roles_set_input": { "description": [ - 70 + 75 ], "value": [ - 70 + 75 ], "__typename": [ - 70 + 75 ] }, "e_player_roles_stream_cursor_input": { "initial_value": [ - 797 + 802 ], "ordering": [ - 224 + 229 ], "__typename": [ - 70 + 75 ] }, "e_player_roles_stream_cursor_value_input": { "description": [ - 70 + 75 ], "value": [ - 70 + 75 ], "__typename": [ - 70 + 75 ] }, "e_player_roles_update_column": {}, "e_player_roles_updates": { "_set": [ - 795 + 800 ], "where": [ - 783 + 788 ], "__typename": [ - 70 + 75 ] }, "e_ready_settings": { "description": [ - 70 + 75 ], "value": [ - 70 + 75 ], "__typename": [ - 70 + 75 ] }, "e_ready_settings_aggregate": { "aggregate": [ - 802 + 807 ], "nodes": [ - 800 + 805 ], "__typename": [ - 70 + 75 ] }, "e_ready_settings_aggregate_fields": { @@ -12608,7 +12714,7 @@ export default { 38, { "columns": [ - 814, + 819, "[e_ready_settings_select_column!]" ], "distinct": [ @@ -12617,88 +12723,88 @@ export default { } ], "max": [ - 808 + 813 ], "min": [ - 809 + 814 ], "__typename": [ - 70 + 75 ] }, "e_ready_settings_bool_exp": { "_and": [ - 803 + 808 ], "_not": [ - 803 + 808 ], "_or": [ - 803 + 808 ], "description": [ - 72 + 77 ], "value": [ - 72 + 77 ], "__typename": [ - 70 + 75 ] }, "e_ready_settings_constraint": {}, "e_ready_settings_enum": {}, "e_ready_settings_enum_comparison_exp": { "_eq": [ - 805 + 810 ], "_in": [ - 805 + 810 ], "_is_null": [ 3 ], "_neq": [ - 805 + 810 ], "_nin": [ - 805 + 810 ], "__typename": [ - 70 + 75 ] }, "e_ready_settings_insert_input": { "description": [ - 70 + 75 ], "value": [ - 70 + 75 ], "__typename": [ - 70 + 75 ] }, "e_ready_settings_max_fields": { "description": [ - 70 + 75 ], "value": [ - 70 + 75 ], "__typename": [ - 70 + 75 ] }, "e_ready_settings_min_fields": { "description": [ - 70 + 75 ], "value": [ - 70 + 75 ], "__typename": [ - 70 + 75 ] }, "e_ready_settings_mutation_response": { @@ -12706,111 +12812,111 @@ export default { 38 ], "returning": [ - 800 + 805 ], "__typename": [ - 70 + 75 ] }, "e_ready_settings_on_conflict": { "constraint": [ - 804 + 809 ], "update_columns": [ - 818 + 823 ], "where": [ - 803 + 808 ], "__typename": [ - 70 + 75 ] }, "e_ready_settings_order_by": { "description": [ - 2011 + 2016 ], "value": [ - 2011 + 2016 ], "__typename": [ - 70 + 75 ] }, "e_ready_settings_pk_columns_input": { "value": [ - 70 + 75 ], "__typename": [ - 70 + 75 ] }, "e_ready_settings_select_column": {}, "e_ready_settings_set_input": { "description": [ - 70 + 75 ], "value": [ - 70 + 75 ], "__typename": [ - 70 + 75 ] }, "e_ready_settings_stream_cursor_input": { "initial_value": [ - 817 + 822 ], "ordering": [ - 224 + 229 ], "__typename": [ - 70 + 75 ] }, "e_ready_settings_stream_cursor_value_input": { "description": [ - 70 + 75 ], "value": [ - 70 + 75 ], "__typename": [ - 70 + 75 ] }, "e_ready_settings_update_column": {}, "e_ready_settings_updates": { "_set": [ - 815 + 820 ], "where": [ - 803 + 808 ], "__typename": [ - 70 + 75 ] }, "e_sanction_types": { "description": [ - 70 + 75 ], "value": [ - 70 + 75 ], "__typename": [ - 70 + 75 ] }, "e_sanction_types_aggregate": { "aggregate": [ - 822 + 827 ], "nodes": [ - 820 + 825 ], "__typename": [ - 70 + 75 ] }, "e_sanction_types_aggregate_fields": { @@ -12818,7 +12924,7 @@ export default { 38, { "columns": [ - 835, + 840, "[e_sanction_types_select_column!]" ], "distinct": [ @@ -12827,88 +12933,88 @@ export default { } ], "max": [ - 828 + 833 ], "min": [ - 829 + 834 ], "__typename": [ - 70 + 75 ] }, "e_sanction_types_bool_exp": { "_and": [ - 823 + 828 ], "_not": [ - 823 + 828 ], "_or": [ - 823 + 828 ], "description": [ - 72 + 77 ], "value": [ - 72 + 77 ], "__typename": [ - 70 + 75 ] }, "e_sanction_types_constraint": {}, "e_sanction_types_enum": {}, "e_sanction_types_enum_comparison_exp": { "_eq": [ - 825 + 830 ], "_in": [ - 825 + 830 ], "_is_null": [ 3 ], "_neq": [ - 825 + 830 ], "_nin": [ - 825 + 830 ], "__typename": [ - 70 + 75 ] }, "e_sanction_types_insert_input": { "description": [ - 70 + 75 ], "value": [ - 70 + 75 ], "__typename": [ - 70 + 75 ] }, "e_sanction_types_max_fields": { "description": [ - 70 + 75 ], "value": [ - 70 + 75 ], "__typename": [ - 70 + 75 ] }, "e_sanction_types_min_fields": { "description": [ - 70 + 75 ], "value": [ - 70 + 75 ], "__typename": [ - 70 + 75 ] }, "e_sanction_types_mutation_response": { @@ -12916,111 +13022,111 @@ export default { 38 ], "returning": [ - 820 + 825 ], "__typename": [ - 70 + 75 ] }, "e_sanction_types_obj_rel_insert_input": { "data": [ - 827 + 832 ], "on_conflict": [ - 832 + 837 ], "__typename": [ - 70 + 75 ] }, "e_sanction_types_on_conflict": { "constraint": [ - 824 + 829 ], "update_columns": [ - 839 + 844 ], "where": [ - 823 + 828 ], "__typename": [ - 70 + 75 ] }, "e_sanction_types_order_by": { "description": [ - 2011 + 2016 ], "value": [ - 2011 + 2016 ], "__typename": [ - 70 + 75 ] }, "e_sanction_types_pk_columns_input": { "value": [ - 70 + 75 ], "__typename": [ - 70 + 75 ] }, "e_sanction_types_select_column": {}, "e_sanction_types_set_input": { "description": [ - 70 + 75 ], "value": [ - 70 + 75 ], "__typename": [ - 70 + 75 ] }, "e_sanction_types_stream_cursor_input": { "initial_value": [ - 838 + 843 ], "ordering": [ - 224 + 229 ], "__typename": [ - 70 + 75 ] }, "e_sanction_types_stream_cursor_value_input": { "description": [ - 70 + 75 ], "value": [ - 70 + 75 ], "__typename": [ - 70 + 75 ] }, "e_sanction_types_update_column": {}, "e_sanction_types_updates": { "_set": [ - 836 + 841 ], "where": [ - 823 + 828 ], "__typename": [ - 70 + 75 ] }, "e_scrim_request_statuses": { "description": [ - 70 + 75 ], "scrim_requests": [ - 3277, + 3323, { "distinct_on": [ - 3301, + 3347, "[team_scrim_requests_select_column!]" ], "limit": [ @@ -13030,19 +13136,19 @@ export default { 38 ], "order_by": [ - 3299, + 3345, "[team_scrim_requests_order_by!]" ], "where": [ - 3288 + 3334 ] } ], "scrim_requests_aggregate": [ - 3278, + 3324, { "distinct_on": [ - 3301, + 3347, "[team_scrim_requests_select_column!]" ], "limit": [ @@ -13052,30 +13158,30 @@ export default { 38 ], "order_by": [ - 3299, + 3345, "[team_scrim_requests_order_by!]" ], "where": [ - 3288 + 3334 ] } ], "value": [ - 70 + 75 ], "__typename": [ - 70 + 75 ] }, "e_scrim_request_statuses_aggregate": { "aggregate": [ - 843 + 848 ], "nodes": [ - 841 + 846 ], "__typename": [ - 70 + 75 ] }, "e_scrim_request_statuses_aggregate_fields": { @@ -13083,7 +13189,7 @@ export default { 38, { "columns": [ - 855, + 860, "[e_scrim_request_statuses_select_column!]" ], "distinct": [ @@ -13092,97 +13198,97 @@ export default { } ], "max": [ - 849 + 854 ], "min": [ - 850 + 855 ], "__typename": [ - 70 + 75 ] }, "e_scrim_request_statuses_bool_exp": { "_and": [ - 844 + 849 ], "_not": [ - 844 + 849 ], "_or": [ - 844 + 849 ], "description": [ - 72 + 77 ], "scrim_requests": [ - 3288 + 3334 ], "scrim_requests_aggregate": [ - 3279 + 3325 ], "value": [ - 72 + 77 ], "__typename": [ - 70 + 75 ] }, "e_scrim_request_statuses_constraint": {}, "e_scrim_request_statuses_enum": {}, "e_scrim_request_statuses_enum_comparison_exp": { "_eq": [ - 846 + 851 ], "_in": [ - 846 + 851 ], "_is_null": [ 3 ], "_neq": [ - 846 + 851 ], "_nin": [ - 846 + 851 ], "__typename": [ - 70 + 75 ] }, "e_scrim_request_statuses_insert_input": { "description": [ - 70 + 75 ], "scrim_requests": [ - 3285 + 3331 ], "value": [ - 70 + 75 ], "__typename": [ - 70 + 75 ] }, "e_scrim_request_statuses_max_fields": { "description": [ - 70 + 75 ], "value": [ - 70 + 75 ], "__typename": [ - 70 + 75 ] }, "e_scrim_request_statuses_min_fields": { "description": [ - 70 + 75 ], "value": [ - 70 + 75 ], "__typename": [ - 70 + 75 ] }, "e_scrim_request_statuses_mutation_response": { @@ -13190,103 +13296,103 @@ export default { 38 ], "returning": [ - 841 + 846 ], "__typename": [ - 70 + 75 ] }, "e_scrim_request_statuses_on_conflict": { "constraint": [ - 845 + 850 ], "update_columns": [ - 859 + 864 ], "where": [ - 844 + 849 ], "__typename": [ - 70 + 75 ] }, "e_scrim_request_statuses_order_by": { "description": [ - 2011 + 2016 ], "scrim_requests_aggregate": [ - 3284 + 3330 ], "value": [ - 2011 + 2016 ], "__typename": [ - 70 + 75 ] }, "e_scrim_request_statuses_pk_columns_input": { "value": [ - 70 + 75 ], "__typename": [ - 70 + 75 ] }, "e_scrim_request_statuses_select_column": {}, "e_scrim_request_statuses_set_input": { "description": [ - 70 + 75 ], "value": [ - 70 + 75 ], "__typename": [ - 70 + 75 ] }, "e_scrim_request_statuses_stream_cursor_input": { "initial_value": [ - 858 + 863 ], "ordering": [ - 224 + 229 ], "__typename": [ - 70 + 75 ] }, "e_scrim_request_statuses_stream_cursor_value_input": { "description": [ - 70 + 75 ], "value": [ - 70 + 75 ], "__typename": [ - 70 + 75 ] }, "e_scrim_request_statuses_update_column": {}, "e_scrim_request_statuses_updates": { "_set": [ - 856 + 861 ], "where": [ - 844 + 849 ], "__typename": [ - 70 + 75 ] }, "e_server_types": { "description": [ - 70 + 75 ], "servers": [ - 2961, + 2998, { "distinct_on": [ - 2985, + 3022, "[servers_select_column!]" ], "limit": [ @@ -13296,19 +13402,19 @@ export default { 38 ], "order_by": [ - 2983, + 3020, "[servers_order_by!]" ], "where": [ - 2972 + 3009 ] } ], "servers_aggregate": [ - 2962, + 2999, { "distinct_on": [ - 2985, + 3022, "[servers_select_column!]" ], "limit": [ @@ -13318,30 +13424,30 @@ export default { 38 ], "order_by": [ - 2983, + 3020, "[servers_order_by!]" ], "where": [ - 2972 + 3009 ] } ], "value": [ - 70 + 75 ], "__typename": [ - 70 + 75 ] }, "e_server_types_aggregate": { "aggregate": [ - 863 + 868 ], "nodes": [ - 861 + 866 ], "__typename": [ - 70 + 75 ] }, "e_server_types_aggregate_fields": { @@ -13349,7 +13455,7 @@ export default { 38, { "columns": [ - 875, + 880, "[e_server_types_select_column!]" ], "distinct": [ @@ -13358,97 +13464,97 @@ export default { } ], "max": [ - 869 + 874 ], "min": [ - 870 + 875 ], "__typename": [ - 70 + 75 ] }, "e_server_types_bool_exp": { "_and": [ - 864 + 869 ], "_not": [ - 864 + 869 ], "_or": [ - 864 + 869 ], "description": [ - 72 + 77 ], "servers": [ - 2972 + 3009 ], "servers_aggregate": [ - 2963 + 3000 ], "value": [ - 72 + 77 ], "__typename": [ - 70 + 75 ] }, "e_server_types_constraint": {}, "e_server_types_enum": {}, "e_server_types_enum_comparison_exp": { "_eq": [ - 866 + 871 ], "_in": [ - 866 + 871 ], "_is_null": [ 3 ], "_neq": [ - 866 + 871 ], "_nin": [ - 866 + 871 ], "__typename": [ - 70 + 75 ] }, "e_server_types_insert_input": { "description": [ - 70 + 75 ], "servers": [ - 2969 + 3006 ], "value": [ - 70 + 75 ], "__typename": [ - 70 + 75 ] }, "e_server_types_max_fields": { "description": [ - 70 + 75 ], "value": [ - 70 + 75 ], "__typename": [ - 70 + 75 ] }, "e_server_types_min_fields": { "description": [ - 70 + 75 ], "value": [ - 70 + 75 ], "__typename": [ - 70 + 75 ] }, "e_server_types_mutation_response": { @@ -13456,103 +13562,103 @@ export default { 38 ], "returning": [ - 861 + 866 ], "__typename": [ - 70 + 75 ] }, "e_server_types_on_conflict": { "constraint": [ - 865 + 870 ], "update_columns": [ - 879 + 884 ], "where": [ - 864 + 869 ], "__typename": [ - 70 + 75 ] }, "e_server_types_order_by": { "description": [ - 2011 + 2016 ], "servers_aggregate": [ - 2968 + 3005 ], "value": [ - 2011 + 2016 ], "__typename": [ - 70 + 75 ] }, "e_server_types_pk_columns_input": { "value": [ - 70 + 75 ], "__typename": [ - 70 + 75 ] }, "e_server_types_select_column": {}, "e_server_types_set_input": { "description": [ - 70 + 75 ], "value": [ - 70 + 75 ], "__typename": [ - 70 + 75 ] }, "e_server_types_stream_cursor_input": { "initial_value": [ - 878 + 883 ], "ordering": [ - 224 + 229 ], "__typename": [ - 70 + 75 ] }, "e_server_types_stream_cursor_value_input": { "description": [ - 70 + 75 ], "value": [ - 70 + 75 ], "__typename": [ - 70 + 75 ] }, "e_server_types_update_column": {}, "e_server_types_updates": { "_set": [ - 876 + 881 ], "where": [ - 864 + 869 ], "__typename": [ - 70 + 75 ] }, "e_sides": { "description": [ - 70 + 75 ], "match_map_lineup_1": [ - 1664, + 1669, { "distinct_on": [ - 1686, + 1691, "[match_maps_select_column!]" ], "limit": [ @@ -13562,19 +13668,19 @@ export default { 38 ], "order_by": [ - 1684, + 1689, "[match_maps_order_by!]" ], "where": [ - 1673 + 1678 ] } ], "match_map_lineup_1_aggregate": [ - 1665, + 1670, { "distinct_on": [ - 1686, + 1691, "[match_maps_select_column!]" ], "limit": [ @@ -13584,19 +13690,19 @@ export default { 38 ], "order_by": [ - 1684, + 1689, "[match_maps_order_by!]" ], "where": [ - 1673 + 1678 ] } ], "match_map_lineup_2": [ - 1664, + 1669, { "distinct_on": [ - 1686, + 1691, "[match_maps_select_column!]" ], "limit": [ @@ -13606,19 +13712,19 @@ export default { 38 ], "order_by": [ - 1684, + 1689, "[match_maps_order_by!]" ], "where": [ - 1673 + 1678 ] } ], "match_map_lineup_2_aggregate": [ - 1665, + 1670, { "distinct_on": [ - 1686, + 1691, "[match_maps_select_column!]" ], "limit": [ @@ -13628,30 +13734,30 @@ export default { 38 ], "order_by": [ - 1684, + 1689, "[match_maps_order_by!]" ], "where": [ - 1673 + 1678 ] } ], "value": [ - 70 + 75 ], "__typename": [ - 70 + 75 ] }, "e_sides_aggregate": { "aggregate": [ - 883 + 888 ], "nodes": [ - 881 + 886 ], "__typename": [ - 70 + 75 ] }, "e_sides_aggregate_fields": { @@ -13659,7 +13765,7 @@ export default { 38, { "columns": [ - 895, + 900, "[e_sides_select_column!]" ], "distinct": [ @@ -13668,106 +13774,106 @@ export default { } ], "max": [ - 889 + 894 ], "min": [ - 890 + 895 ], "__typename": [ - 70 + 75 ] }, "e_sides_bool_exp": { "_and": [ - 884 + 889 ], "_not": [ - 884 + 889 ], "_or": [ - 884 + 889 ], "description": [ - 72 + 77 ], "match_map_lineup_1": [ - 1673 + 1678 ], "match_map_lineup_1_aggregate": [ - 1666 + 1671 ], "match_map_lineup_2": [ - 1673 + 1678 ], "match_map_lineup_2_aggregate": [ - 1666 + 1671 ], "value": [ - 72 + 77 ], "__typename": [ - 70 + 75 ] }, "e_sides_constraint": {}, "e_sides_enum": {}, "e_sides_enum_comparison_exp": { "_eq": [ - 886 + 891 ], "_in": [ - 886 + 891 ], "_is_null": [ 3 ], "_neq": [ - 886 + 891 ], "_nin": [ - 886 + 891 ], "__typename": [ - 70 + 75 ] }, "e_sides_insert_input": { "description": [ - 70 + 75 ], "match_map_lineup_1": [ - 1670 + 1675 ], "match_map_lineup_2": [ - 1670 + 1675 ], "value": [ - 70 + 75 ], "__typename": [ - 70 + 75 ] }, "e_sides_max_fields": { "description": [ - 70 + 75 ], "value": [ - 70 + 75 ], "__typename": [ - 70 + 75 ] }, "e_sides_min_fields": { "description": [ - 70 + 75 ], "value": [ - 70 + 75 ], "__typename": [ - 70 + 75 ] }, "e_sides_mutation_response": { @@ -13775,117 +13881,117 @@ export default { 38 ], "returning": [ - 881 + 886 ], "__typename": [ - 70 + 75 ] }, "e_sides_on_conflict": { "constraint": [ - 885 + 890 ], "update_columns": [ - 899 + 904 ], "where": [ - 884 + 889 ], "__typename": [ - 70 + 75 ] }, "e_sides_order_by": { "description": [ - 2011 + 2016 ], "match_map_lineup_1_aggregate": [ - 1669 + 1674 ], "match_map_lineup_2_aggregate": [ - 1669 + 1674 ], "value": [ - 2011 + 2016 ], "__typename": [ - 70 + 75 ] }, "e_sides_pk_columns_input": { "value": [ - 70 + 75 ], "__typename": [ - 70 + 75 ] }, "e_sides_select_column": {}, "e_sides_set_input": { "description": [ - 70 + 75 ], "value": [ - 70 + 75 ], "__typename": [ - 70 + 75 ] }, "e_sides_stream_cursor_input": { "initial_value": [ - 898 + 903 ], "ordering": [ - 224 + 229 ], "__typename": [ - 70 + 75 ] }, "e_sides_stream_cursor_value_input": { "description": [ - 70 + 75 ], "value": [ - 70 + 75 ], "__typename": [ - 70 + 75 ] }, "e_sides_update_column": {}, "e_sides_updates": { "_set": [ - 896 + 901 ], "where": [ - 884 + 889 ], "__typename": [ - 70 + 75 ] }, "e_system_alert_types": { "description": [ - 70 + 75 ], "value": [ - 70 + 75 ], "__typename": [ - 70 + 75 ] }, "e_system_alert_types_aggregate": { "aggregate": [ - 903 + 908 ], "nodes": [ - 901 + 906 ], "__typename": [ - 70 + 75 ] }, "e_system_alert_types_aggregate_fields": { @@ -13893,7 +13999,7 @@ export default { 38, { "columns": [ - 915, + 920, "[e_system_alert_types_select_column!]" ], "distinct": [ @@ -13902,88 +14008,88 @@ export default { } ], "max": [ - 909 + 914 ], "min": [ - 910 + 915 ], "__typename": [ - 70 + 75 ] }, "e_system_alert_types_bool_exp": { "_and": [ - 904 + 909 ], "_not": [ - 904 + 909 ], "_or": [ - 904 + 909 ], "description": [ - 72 + 77 ], "value": [ - 72 + 77 ], "__typename": [ - 70 + 75 ] }, "e_system_alert_types_constraint": {}, "e_system_alert_types_enum": {}, "e_system_alert_types_enum_comparison_exp": { "_eq": [ - 906 + 911 ], "_in": [ - 906 + 911 ], "_is_null": [ 3 ], "_neq": [ - 906 + 911 ], "_nin": [ - 906 + 911 ], "__typename": [ - 70 + 75 ] }, "e_system_alert_types_insert_input": { "description": [ - 70 + 75 ], "value": [ - 70 + 75 ], "__typename": [ - 70 + 75 ] }, "e_system_alert_types_max_fields": { "description": [ - 70 + 75 ], "value": [ - 70 + 75 ], "__typename": [ - 70 + 75 ] }, "e_system_alert_types_min_fields": { "description": [ - 70 + 75 ], "value": [ - 70 + 75 ], "__typename": [ - 70 + 75 ] }, "e_system_alert_types_mutation_response": { @@ -13991,100 +14097,100 @@ export default { 38 ], "returning": [ - 901 + 906 ], "__typename": [ - 70 + 75 ] }, "e_system_alert_types_on_conflict": { "constraint": [ - 905 + 910 ], "update_columns": [ - 919 + 924 ], "where": [ - 904 + 909 ], "__typename": [ - 70 + 75 ] }, "e_system_alert_types_order_by": { "description": [ - 2011 + 2016 ], "value": [ - 2011 + 2016 ], "__typename": [ - 70 + 75 ] }, "e_system_alert_types_pk_columns_input": { "value": [ - 70 + 75 ], "__typename": [ - 70 + 75 ] }, "e_system_alert_types_select_column": {}, "e_system_alert_types_set_input": { "description": [ - 70 + 75 ], "value": [ - 70 + 75 ], "__typename": [ - 70 + 75 ] }, "e_system_alert_types_stream_cursor_input": { "initial_value": [ - 918 + 923 ], "ordering": [ - 224 + 229 ], "__typename": [ - 70 + 75 ] }, "e_system_alert_types_stream_cursor_value_input": { "description": [ - 70 + 75 ], "value": [ - 70 + 75 ], "__typename": [ - 70 + 75 ] }, "e_system_alert_types_update_column": {}, "e_system_alert_types_updates": { "_set": [ - 916 + 921 ], "where": [ - 904 + 909 ], "__typename": [ - 70 + 75 ] }, "e_team_roles": { "description": [ - 70 + 75 ], "team_rosters": [ - 3136, + 3182, { "distinct_on": [ - 3159, + 3205, "[team_roster_select_column!]" ], "limit": [ @@ -14094,19 +14200,19 @@ export default { 38 ], "order_by": [ - 3157, + 3203, "[team_roster_order_by!]" ], "where": [ - 3147 + 3193 ] } ], "team_rosters_aggregate": [ - 3137, + 3183, { "distinct_on": [ - 3159, + 3205, "[team_roster_select_column!]" ], "limit": [ @@ -14116,19 +14222,19 @@ export default { 38 ], "order_by": [ - 3157, + 3203, "[team_roster_order_by!]" ], "where": [ - 3147 + 3193 ] } ], "tournament_team_rosters": [ - 3602, + 3648, { "distinct_on": [ - 3623, + 3669, "[tournament_team_roster_select_column!]" ], "limit": [ @@ -14138,19 +14244,19 @@ export default { 38 ], "order_by": [ - 3621, + 3667, "[tournament_team_roster_order_by!]" ], "where": [ - 3611 + 3657 ] } ], "tournament_team_rosters_aggregate": [ - 3603, + 3649, { "distinct_on": [ - 3623, + 3669, "[tournament_team_roster_select_column!]" ], "limit": [ @@ -14160,30 +14266,30 @@ export default { 38 ], "order_by": [ - 3621, + 3667, "[tournament_team_roster_order_by!]" ], "where": [ - 3611 + 3657 ] } ], "value": [ - 70 + 75 ], "__typename": [ - 70 + 75 ] }, "e_team_roles_aggregate": { "aggregate": [ - 923 + 928 ], "nodes": [ - 921 + 926 ], "__typename": [ - 70 + 75 ] }, "e_team_roles_aggregate_fields": { @@ -14191,7 +14297,7 @@ export default { 38, { "columns": [ - 936, + 941, "[e_team_roles_select_column!]" ], "distinct": [ @@ -14200,106 +14306,106 @@ export default { } ], "max": [ - 929 + 934 ], "min": [ - 930 + 935 ], "__typename": [ - 70 + 75 ] }, "e_team_roles_bool_exp": { "_and": [ - 924 + 929 ], "_not": [ - 924 + 929 ], "_or": [ - 924 + 929 ], "description": [ - 72 + 77 ], "team_rosters": [ - 3147 + 3193 ], "team_rosters_aggregate": [ - 3138 + 3184 ], "tournament_team_rosters": [ - 3611 + 3657 ], "tournament_team_rosters_aggregate": [ - 3604 + 3650 ], "value": [ - 72 + 77 ], "__typename": [ - 70 + 75 ] }, "e_team_roles_constraint": {}, "e_team_roles_enum": {}, "e_team_roles_enum_comparison_exp": { "_eq": [ - 926 + 931 ], "_in": [ - 926 + 931 ], "_is_null": [ 3 ], "_neq": [ - 926 + 931 ], "_nin": [ - 926 + 931 ], "__typename": [ - 70 + 75 ] }, "e_team_roles_insert_input": { "description": [ - 70 + 75 ], "team_rosters": [ - 3144 + 3190 ], "tournament_team_rosters": [ - 3608 + 3654 ], "value": [ - 70 + 75 ], "__typename": [ - 70 + 75 ] }, "e_team_roles_max_fields": { "description": [ - 70 + 75 ], "value": [ - 70 + 75 ], "__typename": [ - 70 + 75 ] }, "e_team_roles_min_fields": { "description": [ - 70 + 75 ], "value": [ - 70 + 75 ], "__typename": [ - 70 + 75 ] }, "e_team_roles_mutation_response": { @@ -14307,128 +14413,128 @@ export default { 38 ], "returning": [ - 921 + 926 ], "__typename": [ - 70 + 75 ] }, "e_team_roles_obj_rel_insert_input": { "data": [ - 928 + 933 ], "on_conflict": [ - 933 + 938 ], "__typename": [ - 70 + 75 ] }, "e_team_roles_on_conflict": { "constraint": [ - 925 + 930 ], "update_columns": [ - 940 + 945 ], "where": [ - 924 + 929 ], "__typename": [ - 70 + 75 ] }, "e_team_roles_order_by": { "description": [ - 2011 + 2016 ], "team_rosters_aggregate": [ - 3143 + 3189 ], "tournament_team_rosters_aggregate": [ - 3607 + 3653 ], "value": [ - 2011 + 2016 ], "__typename": [ - 70 + 75 ] }, "e_team_roles_pk_columns_input": { "value": [ - 70 + 75 ], "__typename": [ - 70 + 75 ] }, "e_team_roles_select_column": {}, "e_team_roles_set_input": { "description": [ - 70 + 75 ], "value": [ - 70 + 75 ], "__typename": [ - 70 + 75 ] }, "e_team_roles_stream_cursor_input": { "initial_value": [ - 939 + 944 ], "ordering": [ - 224 + 229 ], "__typename": [ - 70 + 75 ] }, "e_team_roles_stream_cursor_value_input": { "description": [ - 70 + 75 ], "value": [ - 70 + 75 ], "__typename": [ - 70 + 75 ] }, "e_team_roles_update_column": {}, "e_team_roles_updates": { "_set": [ - 937 + 942 ], "where": [ - 924 + 929 ], "__typename": [ - 70 + 75 ] }, "e_team_roster_statuses": { "description": [ - 70 + 75 ], "value": [ - 70 + 75 ], "__typename": [ - 70 + 75 ] }, "e_team_roster_statuses_aggregate": { "aggregate": [ - 944 + 949 ], "nodes": [ - 942 + 947 ], "__typename": [ - 70 + 75 ] }, "e_team_roster_statuses_aggregate_fields": { @@ -14436,7 +14542,7 @@ export default { 38, { "columns": [ - 956, + 961, "[e_team_roster_statuses_select_column!]" ], "distinct": [ @@ -14445,88 +14551,88 @@ export default { } ], "max": [ - 950 + 955 ], "min": [ - 951 + 956 ], "__typename": [ - 70 + 75 ] }, "e_team_roster_statuses_bool_exp": { "_and": [ - 945 + 950 ], "_not": [ - 945 + 950 ], "_or": [ - 945 + 950 ], "description": [ - 72 + 77 ], "value": [ - 72 + 77 ], "__typename": [ - 70 + 75 ] }, "e_team_roster_statuses_constraint": {}, "e_team_roster_statuses_enum": {}, "e_team_roster_statuses_enum_comparison_exp": { "_eq": [ - 947 + 952 ], "_in": [ - 947 + 952 ], "_is_null": [ 3 ], "_neq": [ - 947 + 952 ], "_nin": [ - 947 + 952 ], "__typename": [ - 70 + 75 ] }, "e_team_roster_statuses_insert_input": { "description": [ - 70 + 75 ], "value": [ - 70 + 75 ], "__typename": [ - 70 + 75 ] }, "e_team_roster_statuses_max_fields": { "description": [ - 70 + 75 ], "value": [ - 70 + 75 ], "__typename": [ - 70 + 75 ] }, "e_team_roster_statuses_min_fields": { "description": [ - 70 + 75 ], "value": [ - 70 + 75 ], "__typename": [ - 70 + 75 ] }, "e_team_roster_statuses_mutation_response": { @@ -14534,111 +14640,111 @@ export default { 38 ], "returning": [ - 942 + 947 ], "__typename": [ - 70 + 75 ] }, "e_team_roster_statuses_on_conflict": { "constraint": [ - 946 + 951 ], "update_columns": [ - 960 + 965 ], "where": [ - 945 + 950 ], "__typename": [ - 70 + 75 ] }, "e_team_roster_statuses_order_by": { "description": [ - 2011 + 2016 ], "value": [ - 2011 + 2016 ], "__typename": [ - 70 + 75 ] }, "e_team_roster_statuses_pk_columns_input": { "value": [ - 70 + 75 ], "__typename": [ - 70 + 75 ] }, "e_team_roster_statuses_select_column": {}, "e_team_roster_statuses_set_input": { "description": [ - 70 + 75 ], "value": [ - 70 + 75 ], "__typename": [ - 70 + 75 ] }, "e_team_roster_statuses_stream_cursor_input": { "initial_value": [ - 959 + 964 ], "ordering": [ - 224 + 229 ], "__typename": [ - 70 + 75 ] }, "e_team_roster_statuses_stream_cursor_value_input": { "description": [ - 70 + 75 ], "value": [ - 70 + 75 ], "__typename": [ - 70 + 75 ] }, "e_team_roster_statuses_update_column": {}, "e_team_roster_statuses_updates": { "_set": [ - 957 + 962 ], "where": [ - 945 + 950 ], "__typename": [ - 70 + 75 ] }, "e_timeout_settings": { "description": [ - 70 + 75 ], "value": [ - 70 + 75 ], "__typename": [ - 70 + 75 ] }, "e_timeout_settings_aggregate": { "aggregate": [ - 964 + 969 ], "nodes": [ - 962 + 967 ], "__typename": [ - 70 + 75 ] }, "e_timeout_settings_aggregate_fields": { @@ -14646,7 +14752,7 @@ export default { 38, { "columns": [ - 976, + 981, "[e_timeout_settings_select_column!]" ], "distinct": [ @@ -14655,88 +14761,88 @@ export default { } ], "max": [ - 970 + 975 ], "min": [ - 971 + 976 ], "__typename": [ - 70 + 75 ] }, "e_timeout_settings_bool_exp": { "_and": [ - 965 + 970 ], "_not": [ - 965 + 970 ], "_or": [ - 965 + 970 ], "description": [ - 72 + 77 ], "value": [ - 72 + 77 ], "__typename": [ - 70 + 75 ] }, "e_timeout_settings_constraint": {}, "e_timeout_settings_enum": {}, "e_timeout_settings_enum_comparison_exp": { "_eq": [ - 967 + 972 ], "_in": [ - 967 + 972 ], "_is_null": [ 3 ], "_neq": [ - 967 + 972 ], "_nin": [ - 967 + 972 ], "__typename": [ - 70 + 75 ] }, "e_timeout_settings_insert_input": { "description": [ - 70 + 75 ], "value": [ - 70 + 75 ], "__typename": [ - 70 + 75 ] }, "e_timeout_settings_max_fields": { "description": [ - 70 + 75 ], "value": [ - 70 + 75 ], "__typename": [ - 70 + 75 ] }, "e_timeout_settings_min_fields": { "description": [ - 70 + 75 ], "value": [ - 70 + 75 ], "__typename": [ - 70 + 75 ] }, "e_timeout_settings_mutation_response": { @@ -14744,100 +14850,100 @@ export default { 38 ], "returning": [ - 962 + 967 ], "__typename": [ - 70 + 75 ] }, "e_timeout_settings_on_conflict": { "constraint": [ - 966 + 971 ], "update_columns": [ - 980 + 985 ], "where": [ - 965 + 970 ], "__typename": [ - 70 + 75 ] }, "e_timeout_settings_order_by": { "description": [ - 2011 + 2016 ], "value": [ - 2011 + 2016 ], "__typename": [ - 70 + 75 ] }, "e_timeout_settings_pk_columns_input": { "value": [ - 70 + 75 ], "__typename": [ - 70 + 75 ] }, "e_timeout_settings_select_column": {}, "e_timeout_settings_set_input": { "description": [ - 70 + 75 ], "value": [ - 70 + 75 ], "__typename": [ - 70 + 75 ] }, "e_timeout_settings_stream_cursor_input": { "initial_value": [ - 979 + 984 ], "ordering": [ - 224 + 229 ], "__typename": [ - 70 + 75 ] }, "e_timeout_settings_stream_cursor_value_input": { "description": [ - 70 + 75 ], "value": [ - 70 + 75 ], "__typename": [ - 70 + 75 ] }, "e_timeout_settings_update_column": {}, "e_timeout_settings_updates": { "_set": [ - 977 + 982 ], "where": [ - 965 + 970 ], "__typename": [ - 70 + 75 ] }, "e_tournament_stage_types": { "description": [ - 70 + 75 ], "tournament_stages": [ - 3510, + 3556, { "distinct_on": [ - 3539, + 3585, "[tournament_stages_select_column!]" ], "limit": [ @@ -14847,19 +14953,19 @@ export default { 38 ], "order_by": [ - 3536, + 3582, "[tournament_stages_order_by!]" ], "where": [ - 3522 + 3568 ] } ], "tournament_stages_aggregate": [ - 3511, + 3557, { "distinct_on": [ - 3539, + 3585, "[tournament_stages_select_column!]" ], "limit": [ @@ -14869,30 +14975,30 @@ export default { 38 ], "order_by": [ - 3536, + 3582, "[tournament_stages_order_by!]" ], "where": [ - 3522 + 3568 ] } ], "value": [ - 70 + 75 ], "__typename": [ - 70 + 75 ] }, "e_tournament_stage_types_aggregate": { "aggregate": [ - 984 + 989 ], "nodes": [ - 982 + 987 ], "__typename": [ - 70 + 75 ] }, "e_tournament_stage_types_aggregate_fields": { @@ -14900,7 +15006,7 @@ export default { 38, { "columns": [ - 997, + 1002, "[e_tournament_stage_types_select_column!]" ], "distinct": [ @@ -14909,97 +15015,97 @@ export default { } ], "max": [ - 990 + 995 ], "min": [ - 991 + 996 ], "__typename": [ - 70 + 75 ] }, "e_tournament_stage_types_bool_exp": { "_and": [ - 985 + 990 ], "_not": [ - 985 + 990 ], "_or": [ - 985 + 990 ], "description": [ - 72 + 77 ], "tournament_stages": [ - 3522 + 3568 ], "tournament_stages_aggregate": [ - 3512 + 3558 ], "value": [ - 72 + 77 ], "__typename": [ - 70 + 75 ] }, "e_tournament_stage_types_constraint": {}, "e_tournament_stage_types_enum": {}, "e_tournament_stage_types_enum_comparison_exp": { "_eq": [ - 987 + 992 ], "_in": [ - 987 + 992 ], "_is_null": [ 3 ], "_neq": [ - 987 + 992 ], "_nin": [ - 987 + 992 ], "__typename": [ - 70 + 75 ] }, "e_tournament_stage_types_insert_input": { "description": [ - 70 + 75 ], "tournament_stages": [ - 3519 + 3565 ], "value": [ - 70 + 75 ], "__typename": [ - 70 + 75 ] }, "e_tournament_stage_types_max_fields": { "description": [ - 70 + 75 ], "value": [ - 70 + 75 ], "__typename": [ - 70 + 75 ] }, "e_tournament_stage_types_min_fields": { "description": [ - 70 + 75 ], "value": [ - 70 + 75 ], "__typename": [ - 70 + 75 ] }, "e_tournament_stage_types_mutation_response": { @@ -15007,114 +15113,114 @@ export default { 38 ], "returning": [ - 982 + 987 ], "__typename": [ - 70 + 75 ] }, "e_tournament_stage_types_obj_rel_insert_input": { "data": [ - 989 + 994 ], "on_conflict": [ - 994 + 999 ], "__typename": [ - 70 + 75 ] }, "e_tournament_stage_types_on_conflict": { "constraint": [ - 986 + 991 ], "update_columns": [ - 1001 + 1006 ], "where": [ - 985 + 990 ], "__typename": [ - 70 + 75 ] }, "e_tournament_stage_types_order_by": { "description": [ - 2011 + 2016 ], "tournament_stages_aggregate": [ - 3517 + 3563 ], "value": [ - 2011 + 2016 ], "__typename": [ - 70 + 75 ] }, "e_tournament_stage_types_pk_columns_input": { "value": [ - 70 + 75 ], "__typename": [ - 70 + 75 ] }, "e_tournament_stage_types_select_column": {}, "e_tournament_stage_types_set_input": { "description": [ - 70 + 75 ], "value": [ - 70 + 75 ], "__typename": [ - 70 + 75 ] }, "e_tournament_stage_types_stream_cursor_input": { "initial_value": [ - 1000 + 1005 ], "ordering": [ - 224 + 229 ], "__typename": [ - 70 + 75 ] }, "e_tournament_stage_types_stream_cursor_value_input": { "description": [ - 70 + 75 ], "value": [ - 70 + 75 ], "__typename": [ - 70 + 75 ] }, "e_tournament_stage_types_update_column": {}, "e_tournament_stage_types_updates": { "_set": [ - 998 + 1003 ], "where": [ - 985 + 990 ], "__typename": [ - 70 + 75 ] }, "e_tournament_status": { "description": [ - 70 + 75 ], "tournaments": [ - 3772, + 3818, { "distinct_on": [ - 3796, + 3842, "[tournaments_select_column!]" ], "limit": [ @@ -15124,19 +15230,19 @@ export default { 38 ], "order_by": [ - 3794, + 3840, "[tournaments_order_by!]" ], "where": [ - 3783 + 3829 ] } ], "tournaments_aggregate": [ - 3773, + 3819, { "distinct_on": [ - 3796, + 3842, "[tournaments_select_column!]" ], "limit": [ @@ -15146,30 +15252,30 @@ export default { 38 ], "order_by": [ - 3794, + 3840, "[tournaments_order_by!]" ], "where": [ - 3783 + 3829 ] } ], "value": [ - 70 + 75 ], "__typename": [ - 70 + 75 ] }, "e_tournament_status_aggregate": { "aggregate": [ - 1005 + 1010 ], "nodes": [ - 1003 + 1008 ], "__typename": [ - 70 + 75 ] }, "e_tournament_status_aggregate_fields": { @@ -15177,7 +15283,7 @@ export default { 38, { "columns": [ - 1018, + 1023, "[e_tournament_status_select_column!]" ], "distinct": [ @@ -15186,97 +15292,97 @@ export default { } ], "max": [ - 1011 + 1016 ], "min": [ - 1012 + 1017 ], "__typename": [ - 70 + 75 ] }, "e_tournament_status_bool_exp": { "_and": [ - 1006 + 1011 ], "_not": [ - 1006 + 1011 ], "_or": [ - 1006 + 1011 ], "description": [ - 72 + 77 ], "tournaments": [ - 3783 + 3829 ], "tournaments_aggregate": [ - 3774 + 3820 ], "value": [ - 72 + 77 ], "__typename": [ - 70 + 75 ] }, "e_tournament_status_constraint": {}, "e_tournament_status_enum": {}, "e_tournament_status_enum_comparison_exp": { "_eq": [ - 1008 + 1013 ], "_in": [ - 1008 + 1013 ], "_is_null": [ 3 ], "_neq": [ - 1008 + 1013 ], "_nin": [ - 1008 + 1013 ], "__typename": [ - 70 + 75 ] }, "e_tournament_status_insert_input": { "description": [ - 70 + 75 ], "tournaments": [ - 3780 + 3826 ], "value": [ - 70 + 75 ], "__typename": [ - 70 + 75 ] }, "e_tournament_status_max_fields": { "description": [ - 70 + 75 ], "value": [ - 70 + 75 ], "__typename": [ - 70 + 75 ] }, "e_tournament_status_min_fields": { "description": [ - 70 + 75 ], "value": [ - 70 + 75 ], "__typename": [ - 70 + 75 ] }, "e_tournament_status_mutation_response": { @@ -15284,114 +15390,114 @@ export default { 38 ], "returning": [ - 1003 + 1008 ], "__typename": [ - 70 + 75 ] }, "e_tournament_status_obj_rel_insert_input": { "data": [ - 1010 + 1015 ], "on_conflict": [ - 1015 + 1020 ], "__typename": [ - 70 + 75 ] }, "e_tournament_status_on_conflict": { "constraint": [ - 1007 + 1012 ], "update_columns": [ - 1022 + 1027 ], "where": [ - 1006 + 1011 ], "__typename": [ - 70 + 75 ] }, "e_tournament_status_order_by": { "description": [ - 2011 + 2016 ], "tournaments_aggregate": [ - 3779 + 3825 ], "value": [ - 2011 + 2016 ], "__typename": [ - 70 + 75 ] }, "e_tournament_status_pk_columns_input": { "value": [ - 70 + 75 ], "__typename": [ - 70 + 75 ] }, "e_tournament_status_select_column": {}, "e_tournament_status_set_input": { "description": [ - 70 + 75 ], "value": [ - 70 + 75 ], "__typename": [ - 70 + 75 ] }, "e_tournament_status_stream_cursor_input": { "initial_value": [ - 1021 + 1026 ], "ordering": [ - 224 + 229 ], "__typename": [ - 70 + 75 ] }, "e_tournament_status_stream_cursor_value_input": { "description": [ - 70 + 75 ], "value": [ - 70 + 75 ], "__typename": [ - 70 + 75 ] }, "e_tournament_status_update_column": {}, "e_tournament_status_updates": { "_set": [ - 1019 + 1024 ], "where": [ - 1006 + 1011 ], "__typename": [ - 70 + 75 ] }, "e_utility_types": { "description": [ - 70 + 75 ], "player_utilities": [ - 2804, + 2841, { "distinct_on": [ - 2825, + 2862, "[player_utility_select_column!]" ], "limit": [ @@ -15401,19 +15507,19 @@ export default { 38 ], "order_by": [ - 2823, + 2860, "[player_utility_order_by!]" ], "where": [ - 2813 + 2850 ] } ], "player_utilities_aggregate": [ - 2805, + 2842, { "distinct_on": [ - 2825, + 2862, "[player_utility_select_column!]" ], "limit": [ @@ -15423,30 +15529,30 @@ export default { 38 ], "order_by": [ - 2823, + 2860, "[player_utility_order_by!]" ], "where": [ - 2813 + 2850 ] } ], "value": [ - 70 + 75 ], "__typename": [ - 70 + 75 ] }, "e_utility_types_aggregate": { "aggregate": [ - 1026 + 1031 ], "nodes": [ - 1024 + 1029 ], "__typename": [ - 70 + 75 ] }, "e_utility_types_aggregate_fields": { @@ -15454,7 +15560,7 @@ export default { 38, { "columns": [ - 1038, + 1043, "[e_utility_types_select_column!]" ], "distinct": [ @@ -15463,97 +15569,97 @@ export default { } ], "max": [ - 1032 + 1037 ], "min": [ - 1033 + 1038 ], "__typename": [ - 70 + 75 ] }, "e_utility_types_bool_exp": { "_and": [ - 1027 + 1032 ], "_not": [ - 1027 + 1032 ], "_or": [ - 1027 + 1032 ], "description": [ - 72 + 77 ], "player_utilities": [ - 2813 + 2850 ], "player_utilities_aggregate": [ - 2806 + 2843 ], "value": [ - 72 + 77 ], "__typename": [ - 70 + 75 ] }, "e_utility_types_constraint": {}, "e_utility_types_enum": {}, "e_utility_types_enum_comparison_exp": { "_eq": [ - 1029 + 1034 ], "_in": [ - 1029 + 1034 ], "_is_null": [ 3 ], "_neq": [ - 1029 + 1034 ], "_nin": [ - 1029 + 1034 ], "__typename": [ - 70 + 75 ] }, "e_utility_types_insert_input": { "description": [ - 70 + 75 ], "player_utilities": [ - 2810 + 2847 ], "value": [ - 70 + 75 ], "__typename": [ - 70 + 75 ] }, "e_utility_types_max_fields": { "description": [ - 70 + 75 ], "value": [ - 70 + 75 ], "__typename": [ - 70 + 75 ] }, "e_utility_types_min_fields": { "description": [ - 70 + 75 ], "value": [ - 70 + 75 ], "__typename": [ - 70 + 75 ] }, "e_utility_types_mutation_response": { @@ -15561,103 +15667,103 @@ export default { 38 ], "returning": [ - 1024 + 1029 ], "__typename": [ - 70 + 75 ] }, "e_utility_types_on_conflict": { "constraint": [ - 1028 + 1033 ], "update_columns": [ - 1042 + 1047 ], "where": [ - 1027 + 1032 ], "__typename": [ - 70 + 75 ] }, "e_utility_types_order_by": { "description": [ - 2011 + 2016 ], "player_utilities_aggregate": [ - 2809 + 2846 ], "value": [ - 2011 + 2016 ], "__typename": [ - 70 + 75 ] }, "e_utility_types_pk_columns_input": { "value": [ - 70 + 75 ], "__typename": [ - 70 + 75 ] }, "e_utility_types_select_column": {}, "e_utility_types_set_input": { "description": [ - 70 + 75 ], "value": [ - 70 + 75 ], "__typename": [ - 70 + 75 ] }, "e_utility_types_stream_cursor_input": { "initial_value": [ - 1041 + 1046 ], "ordering": [ - 224 + 229 ], "__typename": [ - 70 + 75 ] }, "e_utility_types_stream_cursor_value_input": { "description": [ - 70 + 75 ], "value": [ - 70 + 75 ], "__typename": [ - 70 + 75 ] }, "e_utility_types_update_column": {}, "e_utility_types_updates": { "_set": [ - 1039 + 1044 ], "where": [ - 1027 + 1032 ], "__typename": [ - 70 + 75 ] }, "e_veto_pick_types": { "description": [ - 70 + 75 ], "match_veto_picks": [ - 1640, + 1645, { "distinct_on": [ - 1658, + 1663, "[match_map_veto_picks_select_column!]" ], "limit": [ @@ -15667,19 +15773,19 @@ export default { 38 ], "order_by": [ - 1656, + 1661, "[match_map_veto_picks_order_by!]" ], "where": [ - 1647 + 1652 ] } ], "match_veto_picks_aggregate": [ - 1641, + 1646, { "distinct_on": [ - 1658, + 1663, "[match_map_veto_picks_select_column!]" ], "limit": [ @@ -15689,30 +15795,30 @@ export default { 38 ], "order_by": [ - 1656, + 1661, "[match_map_veto_picks_order_by!]" ], "where": [ - 1647 + 1652 ] } ], "value": [ - 70 + 75 ], "__typename": [ - 70 + 75 ] }, "e_veto_pick_types_aggregate": { "aggregate": [ - 1046 + 1051 ], "nodes": [ - 1044 + 1049 ], "__typename": [ - 70 + 75 ] }, "e_veto_pick_types_aggregate_fields": { @@ -15720,7 +15826,7 @@ export default { 38, { "columns": [ - 1058, + 1063, "[e_veto_pick_types_select_column!]" ], "distinct": [ @@ -15729,97 +15835,97 @@ export default { } ], "max": [ - 1052 + 1057 ], "min": [ - 1053 + 1058 ], "__typename": [ - 70 + 75 ] }, "e_veto_pick_types_bool_exp": { "_and": [ - 1047 + 1052 ], "_not": [ - 1047 + 1052 ], "_or": [ - 1047 + 1052 ], "description": [ - 72 + 77 ], "match_veto_picks": [ - 1647 + 1652 ], "match_veto_picks_aggregate": [ - 1642 + 1647 ], "value": [ - 72 + 77 ], "__typename": [ - 70 + 75 ] }, "e_veto_pick_types_constraint": {}, "e_veto_pick_types_enum": {}, "e_veto_pick_types_enum_comparison_exp": { "_eq": [ - 1049 + 1054 ], "_in": [ - 1049 + 1054 ], "_is_null": [ 3 ], "_neq": [ - 1049 + 1054 ], "_nin": [ - 1049 + 1054 ], "__typename": [ - 70 + 75 ] }, "e_veto_pick_types_insert_input": { "description": [ - 70 + 75 ], "match_veto_picks": [ - 1646 + 1651 ], "value": [ - 70 + 75 ], "__typename": [ - 70 + 75 ] }, "e_veto_pick_types_max_fields": { "description": [ - 70 + 75 ], "value": [ - 70 + 75 ], "__typename": [ - 70 + 75 ] }, "e_veto_pick_types_min_fields": { "description": [ - 70 + 75 ], "value": [ - 70 + 75 ], "__typename": [ - 70 + 75 ] }, "e_veto_pick_types_mutation_response": { @@ -15827,114 +15933,114 @@ export default { 38 ], "returning": [ - 1044 + 1049 ], "__typename": [ - 70 + 75 ] }, "e_veto_pick_types_on_conflict": { "constraint": [ - 1048 + 1053 ], "update_columns": [ - 1062 + 1067 ], "where": [ - 1047 + 1052 ], "__typename": [ - 70 + 75 ] }, "e_veto_pick_types_order_by": { "description": [ - 2011 + 2016 ], "match_veto_picks_aggregate": [ - 1645 + 1650 ], "value": [ - 2011 + 2016 ], "__typename": [ - 70 + 75 ] }, "e_veto_pick_types_pk_columns_input": { "value": [ - 70 + 75 ], "__typename": [ - 70 + 75 ] }, "e_veto_pick_types_select_column": {}, "e_veto_pick_types_set_input": { "description": [ - 70 + 75 ], "value": [ - 70 + 75 ], "__typename": [ - 70 + 75 ] }, "e_veto_pick_types_stream_cursor_input": { "initial_value": [ - 1061 + 1066 ], "ordering": [ - 224 + 229 ], "__typename": [ - 70 + 75 ] }, "e_veto_pick_types_stream_cursor_value_input": { "description": [ - 70 + 75 ], "value": [ - 70 + 75 ], "__typename": [ - 70 + 75 ] }, "e_veto_pick_types_update_column": {}, "e_veto_pick_types_updates": { "_set": [ - 1059 + 1064 ], "where": [ - 1047 + 1052 ], "__typename": [ - 70 + 75 ] }, "e_winning_reasons": { "description": [ - 70 + 75 ], "value": [ - 70 + 75 ], "__typename": [ - 70 + 75 ] }, "e_winning_reasons_aggregate": { "aggregate": [ - 1066 + 1071 ], "nodes": [ - 1064 + 1069 ], "__typename": [ - 70 + 75 ] }, "e_winning_reasons_aggregate_fields": { @@ -15942,7 +16048,7 @@ export default { 38, { "columns": [ - 1078, + 1083, "[e_winning_reasons_select_column!]" ], "distinct": [ @@ -15951,88 +16057,88 @@ export default { } ], "max": [ - 1072 + 1077 ], "min": [ - 1073 + 1078 ], "__typename": [ - 70 + 75 ] }, "e_winning_reasons_bool_exp": { "_and": [ - 1067 + 1072 ], "_not": [ - 1067 + 1072 ], "_or": [ - 1067 + 1072 ], "description": [ - 72 + 77 ], "value": [ - 72 + 77 ], "__typename": [ - 70 + 75 ] }, "e_winning_reasons_constraint": {}, "e_winning_reasons_enum": {}, "e_winning_reasons_enum_comparison_exp": { "_eq": [ - 1069 + 1074 ], "_in": [ - 1069 + 1074 ], "_is_null": [ 3 ], "_neq": [ - 1069 + 1074 ], "_nin": [ - 1069 + 1074 ], "__typename": [ - 70 + 75 ] }, "e_winning_reasons_insert_input": { "description": [ - 70 + 75 ], "value": [ - 70 + 75 ], "__typename": [ - 70 + 75 ] }, "e_winning_reasons_max_fields": { "description": [ - 70 + 75 ], "value": [ - 70 + 75 ], "__typename": [ - 70 + 75 ] }, "e_winning_reasons_min_fields": { "description": [ - 70 + 75 ], "value": [ - 70 + 75 ], "__typename": [ - 70 + 75 ] }, "e_winning_reasons_mutation_response": { @@ -16040,161 +16146,161 @@ export default { 38 ], "returning": [ - 1064 + 1069 ], "__typename": [ - 70 + 75 ] }, "e_winning_reasons_on_conflict": { "constraint": [ - 1068 + 1073 ], "update_columns": [ - 1082 + 1087 ], "where": [ - 1067 + 1072 ], "__typename": [ - 70 + 75 ] }, "e_winning_reasons_order_by": { "description": [ - 2011 + 2016 ], "value": [ - 2011 + 2016 ], "__typename": [ - 70 + 75 ] }, "e_winning_reasons_pk_columns_input": { "value": [ - 70 + 75 ], "__typename": [ - 70 + 75 ] }, "e_winning_reasons_select_column": {}, "e_winning_reasons_set_input": { "description": [ - 70 + 75 ], "value": [ - 70 + 75 ], "__typename": [ - 70 + 75 ] }, "e_winning_reasons_stream_cursor_input": { "initial_value": [ - 1081 + 1086 ], "ordering": [ - 224 + 229 ], "__typename": [ - 70 + 75 ] }, "e_winning_reasons_stream_cursor_value_input": { "description": [ - 70 + 75 ], "value": [ - 70 + 75 ], "__typename": [ - 70 + 75 ] }, "e_winning_reasons_update_column": {}, "e_winning_reasons_updates": { "_set": [ - 1079 + 1084 ], "where": [ - 1067 + 1072 ], "__typename": [ - 70 + 75 ] }, "float8": {}, "float8_comparison_exp": { "_eq": [ - 1084 + 1089 ], "_gt": [ - 1084 + 1089 ], "_gte": [ - 1084 + 1089 ], "_in": [ - 1084 + 1089 ], "_is_null": [ 3 ], "_lt": [ - 1084 + 1089 ], "_lte": [ - 1084 + 1089 ], "_neq": [ - 1084 + 1089 ], "_nin": [ - 1084 + 1089 ], "__typename": [ - 70 + 75 ] }, "friends": { "e_status": [ - 513 + 518 ], "other_player_steam_id": [ - 169 + 174 ], "player_steam_id": [ - 169 + 174 ], "status": [ - 518 + 523 ], "__typename": [ - 70 + 75 ] }, "friends_aggregate": { "aggregate": [ - 1088 + 1093 ], "nodes": [ - 1086 + 1091 ], "__typename": [ - 70 + 75 ] }, "friends_aggregate_fields": { "avg": [ - 1089 + 1094 ], "count": [ 38, { "columns": [ - 1100, + 1105, "[friends_select_column!]" ], "distinct": [ @@ -16203,34 +16309,34 @@ export default { } ], "max": [ - 1094 + 1099 ], "min": [ - 1095 + 1100 ], "stddev": [ - 1102 + 1107 ], "stddev_pop": [ - 1103 + 1108 ], "stddev_samp": [ - 1104 + 1109 ], "sum": [ - 1107 + 1112 ], "var_pop": [ - 1110 + 1115 ], "var_samp": [ - 1111 + 1116 ], "variance": [ - 1112 + 1117 ], "__typename": [ - 70 + 75 ] }, "friends_avg_fields": { @@ -16241,84 +16347,84 @@ export default { 29 ], "__typename": [ - 70 + 75 ] }, "friends_bool_exp": { "_and": [ - 1090 + 1095 ], "_not": [ - 1090 + 1095 ], "_or": [ - 1090 + 1095 ], "e_status": [ - 516 + 521 ], "other_player_steam_id": [ - 171 + 176 ], "player_steam_id": [ - 171 + 176 ], "status": [ - 519 + 524 ], "__typename": [ - 70 + 75 ] }, "friends_constraint": {}, "friends_inc_input": { "other_player_steam_id": [ - 169 + 174 ], "player_steam_id": [ - 169 + 174 ], "__typename": [ - 70 + 75 ] }, "friends_insert_input": { "e_status": [ - 524 + 529 ], "other_player_steam_id": [ - 169 + 174 ], "player_steam_id": [ - 169 + 174 ], "status": [ - 518 + 523 ], "__typename": [ - 70 + 75 ] }, "friends_max_fields": { "other_player_steam_id": [ - 169 + 174 ], "player_steam_id": [ - 169 + 174 ], "__typename": [ - 70 + 75 ] }, "friends_min_fields": { "other_player_steam_id": [ - 169 + 174 ], "player_steam_id": [ - 169 + 174 ], "__typename": [ - 70 + 75 ] }, "friends_mutation_response": { @@ -16326,67 +16432,67 @@ export default { 38 ], "returning": [ - 1086 + 1091 ], "__typename": [ - 70 + 75 ] }, "friends_on_conflict": { "constraint": [ - 1091 + 1096 ], "update_columns": [ - 1108 + 1113 ], "where": [ - 1090 + 1095 ], "__typename": [ - 70 + 75 ] }, "friends_order_by": { "e_status": [ - 526 + 531 ], "other_player_steam_id": [ - 2011 + 2016 ], "player_steam_id": [ - 2011 + 2016 ], "status": [ - 2011 + 2016 ], "__typename": [ - 70 + 75 ] }, "friends_pk_columns_input": { "other_player_steam_id": [ - 169 + 174 ], "player_steam_id": [ - 169 + 174 ], "__typename": [ - 70 + 75 ] }, "friends_select_column": {}, "friends_set_input": { "other_player_steam_id": [ - 169 + 174 ], "player_steam_id": [ - 169 + 174 ], "status": [ - 518 + 523 ], "__typename": [ - 70 + 75 ] }, "friends_stddev_fields": { @@ -16397,7 +16503,7 @@ export default { 29 ], "__typename": [ - 70 + 75 ] }, "friends_stddev_pop_fields": { @@ -16408,7 +16514,7 @@ export default { 29 ], "__typename": [ - 70 + 75 ] }, "friends_stddev_samp_fields": { @@ -16419,58 +16525,58 @@ export default { 29 ], "__typename": [ - 70 + 75 ] }, "friends_stream_cursor_input": { "initial_value": [ - 1106 + 1111 ], "ordering": [ - 224 + 229 ], "__typename": [ - 70 + 75 ] }, "friends_stream_cursor_value_input": { "other_player_steam_id": [ - 169 + 174 ], "player_steam_id": [ - 169 + 174 ], "status": [ - 518 + 523 ], "__typename": [ - 70 + 75 ] }, "friends_sum_fields": { "other_player_steam_id": [ - 169 + 174 ], "player_steam_id": [ - 169 + 174 ], "__typename": [ - 70 + 75 ] }, "friends_update_column": {}, "friends_updates": { "_inc": [ - 1092 + 1097 ], "_set": [ - 1101 + 1106 ], "where": [ - 1090 + 1095 ], "__typename": [ - 70 + 75 ] }, "friends_var_pop_fields": { @@ -16481,7 +16587,7 @@ export default { 29 ], "__typename": [ - 70 + 75 ] }, "friends_var_samp_fields": { @@ -16492,7 +16598,7 @@ export default { 29 ], "__typename": [ - 70 + 75 ] }, "friends_variance_fields": { @@ -16503,7 +16609,7 @@ export default { 29 ], "__typename": [ - 70 + 75 ] }, "game_server_nodes": { @@ -16517,18 +16623,18 @@ export default { 38 ], "cpu_frequency_info": [ - 1235, + 1240, { "path": [ - 70 + 75 ] } ], "cpu_governor_info": [ - 1235, + 1240, { "path": [ - 70 + 75 ] } ], @@ -16539,18 +16645,18 @@ export default { 38 ], "cs2_launch_options": [ - 1235, + 1240, { "path": [ - 70 + 75 ] } ], "cs2_video_settings": [ - 1235, + 1240, { "path": [ - 70 + 75 ] } ], @@ -16567,10 +16673,10 @@ export default { 38 ], "e_region": [ - 2934 + 2971 ], "e_status": [ - 554 + 559 ], "enabled": [ 3 @@ -16588,10 +16694,10 @@ export default { 3 ], "gpu_info": [ - 1235, + 1240, { "path": [ - 70 + 75 ] } ], @@ -16602,43 +16708,43 @@ export default { 3 ], "id": [ - 70 + 75 ], "label": [ - 70 + 75 ], "lan_ip": [ - 1231 + 1236 ], "node_ip": [ - 1231 + 1236 ], "offline_at": [ - 3421 + 3467 ], "pin_build_id": [ 38 ], "pin_plugin_version": [ - 70 + 75 ], "pinned_version": [ - 1164 + 1169 ], "plugin_supported": [ 3 ], "public_ip": [ - 1231 + 1236 ], "region": [ - 70 + 75 ], "servers": [ - 2961, + 2998, { "distinct_on": [ - 2985, + 3022, "[servers_select_column!]" ], "limit": [ @@ -16648,19 +16754,19 @@ export default { 38 ], "order_by": [ - 2983, + 3020, "[servers_order_by!]" ], "where": [ - 2972 + 3009 ] } ], "servers_aggregate": [ - 2962, + 2999, { "distinct_on": [ - 2985, + 3022, "[servers_select_column!]" ], "limit": [ @@ -16670,28 +16776,28 @@ export default { 38 ], "order_by": [ - 2983, + 3020, "[servers_order_by!]" ], "where": [ - 2972 + 3009 ] } ], "shader_bake_progress": [ - 2009 + 2014 ], "shader_bake_progress_stage": [ - 70 + 75 ], "shader_bake_status": [ - 70 + 75 ], "shader_bake_status_history": [ - 1235, + 1240, { "path": [ - 70 + 75 ] } ], @@ -16699,7 +16805,7 @@ export default { 38 ], "status": [ - 559 + 564 ], "supports_cpu_pinning": [ 3 @@ -16708,106 +16814,106 @@ export default { 3 ], "token": [ - 70 + 75 ], "total_server_count": [ 38 ], "update_status": [ - 70 + 75 ], "version": [ - 1164 + 1169 ], "__typename": [ - 70 + 75 ] }, "game_server_nodes_aggregate": { "aggregate": [ - 1119 + 1124 ], "nodes": [ - 1113 + 1118 ], "__typename": [ - 70 + 75 ] }, "game_server_nodes_aggregate_bool_exp": { "bool_and": [ - 1116 + 1121 ], "bool_or": [ - 1117 + 1122 ], "count": [ - 1118 + 1123 ], "__typename": [ - 70 + 75 ] }, "game_server_nodes_aggregate_bool_exp_bool_and": { "arguments": [ - 1143 + 1148 ], "distinct": [ 3 ], "filter": [ - 1125 + 1130 ], "predicate": [ 4 ], "__typename": [ - 70 + 75 ] }, "game_server_nodes_aggregate_bool_exp_bool_or": { "arguments": [ - 1144 + 1149 ], "distinct": [ 3 ], "filter": [ - 1125 + 1130 ], "predicate": [ 4 ], "__typename": [ - 70 + 75 ] }, "game_server_nodes_aggregate_bool_exp_count": { "arguments": [ - 1142 + 1147 ], "distinct": [ 3 ], "filter": [ - 1125 + 1130 ], "predicate": [ 39 ], "__typename": [ - 70 + 75 ] }, "game_server_nodes_aggregate_fields": { "avg": [ - 1123 + 1128 ], "count": [ 38, { "columns": [ - 1142, + 1147, "[game_server_nodes_select_column!]" ], "distinct": [ @@ -16816,106 +16922,106 @@ export default { } ], "max": [ - 1132 + 1137 ], "min": [ - 1134 + 1139 ], "stddev": [ - 1146 + 1151 ], "stddev_pop": [ - 1148 + 1153 ], "stddev_samp": [ - 1150 + 1155 ], "sum": [ - 1154 + 1159 ], "var_pop": [ - 1158 + 1163 ], "var_samp": [ - 1160 + 1165 ], "variance": [ - 1162 + 1167 ], "__typename": [ - 70 + 75 ] }, "game_server_nodes_aggregate_order_by": { "avg": [ - 1124 + 1129 ], "count": [ - 2011 + 2016 ], "max": [ - 1133 + 1138 ], "min": [ - 1135 + 1140 ], "stddev": [ - 1147 + 1152 ], "stddev_pop": [ - 1149 + 1154 ], "stddev_samp": [ - 1151 + 1156 ], "sum": [ - 1155 + 1160 ], "var_pop": [ - 1159 + 1164 ], "var_samp": [ - 1161 + 1166 ], "variance": [ - 1163 + 1168 ], "__typename": [ - 70 + 75 ] }, "game_server_nodes_append_input": { "cpu_frequency_info": [ - 1235 + 1240 ], "cpu_governor_info": [ - 1235 + 1240 ], "cs2_launch_options": [ - 1235 + 1240 ], "cs2_video_settings": [ - 1235 + 1240 ], "gpu_info": [ - 1235 + 1240 ], "shader_bake_status_history": [ - 1235 + 1240 ], "__typename": [ - 70 + 75 ] }, "game_server_nodes_arr_rel_insert_input": { "data": [ - 1131 + 1136 ], "on_conflict": [ - 1138 + 1143 ], "__typename": [ - 70 + 75 ] }, "game_server_nodes_avg_fields": { @@ -16962,59 +17068,59 @@ export default { 38 ], "__typename": [ - 70 + 75 ] }, "game_server_nodes_avg_order_by": { "build_id": [ - 2011 + 2016 ], "cpu_cores_per_socket": [ - 2011 + 2016 ], "cpu_sockets": [ - 2011 + 2016 ], "cpu_threads_per_core": [ - 2011 + 2016 ], "csgo_build_id": [ - 2011 + 2016 ], "demo_network_limiter": [ - 2011 + 2016 ], "disk_available_gb": [ - 2011 + 2016 ], "disk_used_percent": [ - 2011 + 2016 ], "end_port_range": [ - 2011 + 2016 ], "pin_build_id": [ - 2011 + 2016 ], "shader_bake_progress": [ - 2011 + 2016 ], "start_port_range": [ - 2011 + 2016 ], "__typename": [ - 70 + 75 ] }, "game_server_nodes_bool_exp": { "_and": [ - 1125 + 1130 ], "_not": [ - 1125 + 1130 ], "_or": [ - 1125 + 1130 ], "available_server_count": [ 39 @@ -17026,10 +17132,10 @@ export default { 39 ], "cpu_frequency_info": [ - 1237 + 1242 ], "cpu_governor_info": [ - 1237 + 1242 ], "cpu_sockets": [ 39 @@ -17038,10 +17144,10 @@ export default { 39 ], "cs2_launch_options": [ - 1237 + 1242 ], "cs2_video_settings": [ - 1237 + 1242 ], "csgo_build_id": [ 39 @@ -17056,10 +17162,10 @@ export default { 39 ], "e_region": [ - 2938 + 2975 ], "e_status": [ - 557 + 562 ], "enabled": [ 4 @@ -17077,7 +17183,7 @@ export default { 4 ], "gpu_info": [ - 1237 + 1242 ], "gpu_rendering_enabled": [ 4 @@ -17086,61 +17192,61 @@ export default { 4 ], "id": [ - 72 + 77 ], "label": [ - 72 + 77 ], "lan_ip": [ - 1232 + 1237 ], "node_ip": [ - 1232 + 1237 ], "offline_at": [ - 3422 + 3468 ], "pin_build_id": [ 39 ], "pin_plugin_version": [ - 72 + 77 ], "pinned_version": [ - 1169 + 1174 ], "plugin_supported": [ 4 ], "public_ip": [ - 1232 + 1237 ], "region": [ - 72 + 77 ], "servers": [ - 2972 + 3009 ], "servers_aggregate": [ - 2963 + 3000 ], "shader_bake_progress": [ - 2010 + 2015 ], "shader_bake_progress_stage": [ - 72 + 77 ], "shader_bake_status": [ - 72 + 77 ], "shader_bake_status_history": [ - 1237 + 1242 ], "start_port_range": [ 39 ], "status": [ - 560 + 565 ], "supports_cpu_pinning": [ 4 @@ -17149,43 +17255,43 @@ export default { 4 ], "token": [ - 72 + 77 ], "total_server_count": [ 39 ], "update_status": [ - 72 + 77 ], "version": [ - 1169 + 1174 ], "__typename": [ - 70 + 75 ] }, "game_server_nodes_constraint": {}, "game_server_nodes_delete_at_path_input": { "cpu_frequency_info": [ - 70 + 75 ], "cpu_governor_info": [ - 70 + 75 ], "cs2_launch_options": [ - 70 + 75 ], "cs2_video_settings": [ - 70 + 75 ], "gpu_info": [ - 70 + 75 ], "shader_bake_status_history": [ - 70 + 75 ], "__typename": [ - 70 + 75 ] }, "game_server_nodes_delete_elem_input": { @@ -17208,30 +17314,30 @@ export default { 38 ], "__typename": [ - 70 + 75 ] }, "game_server_nodes_delete_key_input": { "cpu_frequency_info": [ - 70 + 75 ], "cpu_governor_info": [ - 70 + 75 ], "cs2_launch_options": [ - 70 + 75 ], "cs2_video_settings": [ - 70 + 75 ], "gpu_info": [ - 70 + 75 ], "shader_bake_status_history": [ - 70 + 75 ], "__typename": [ - 70 + 75 ] }, "game_server_nodes_inc_input": { @@ -17266,13 +17372,13 @@ export default { 38 ], "shader_bake_progress": [ - 2009 + 2014 ], "start_port_range": [ 38 ], "__typename": [ - 70 + 75 ] }, "game_server_nodes_insert_input": { @@ -17283,10 +17389,10 @@ export default { 38 ], "cpu_frequency_info": [ - 1235 + 1240 ], "cpu_governor_info": [ - 1235 + 1240 ], "cpu_sockets": [ 38 @@ -17295,10 +17401,10 @@ export default { 38 ], "cs2_launch_options": [ - 1235 + 1240 ], "cs2_video_settings": [ - 1235 + 1240 ], "csgo_build_id": [ 38 @@ -17313,10 +17419,10 @@ export default { 38 ], "e_region": [ - 2944 + 2981 ], "e_status": [ - 565 + 570 ], "enabled": [ 3 @@ -17334,7 +17440,7 @@ export default { 3 ], "gpu_info": [ - 1235 + 1240 ], "gpu_rendering_enabled": [ 3 @@ -17343,55 +17449,55 @@ export default { 3 ], "id": [ - 70 + 75 ], "label": [ - 70 + 75 ], "lan_ip": [ - 1231 + 1236 ], "node_ip": [ - 1231 + 1236 ], "offline_at": [ - 3421 + 3467 ], "pin_build_id": [ 38 ], "pin_plugin_version": [ - 70 + 75 ], "pinned_version": [ - 1179 + 1184 ], "public_ip": [ - 1231 + 1236 ], "region": [ - 70 + 75 ], "servers": [ - 2969 + 3006 ], "shader_bake_progress": [ - 2009 + 2014 ], "shader_bake_progress_stage": [ - 70 + 75 ], "shader_bake_status": [ - 70 + 75 ], "shader_bake_status_history": [ - 1235 + 1240 ], "start_port_range": [ 38 ], "status": [ - 559 + 564 ], "supports_cpu_pinning": [ 3 @@ -17400,16 +17506,16 @@ export default { 3 ], "token": [ - 70 + 75 ], "update_status": [ - 70 + 75 ], "version": [ - 1179 + 1184 ], "__typename": [ - 70 + 75 ] }, "game_server_nodes_max_fields": { @@ -17444,114 +17550,114 @@ export default { 38 ], "id": [ - 70 + 75 ], "label": [ - 70 + 75 ], "offline_at": [ - 3421 + 3467 ], "pin_build_id": [ 38 ], "pin_plugin_version": [ - 70 + 75 ], "region": [ - 70 + 75 ], "shader_bake_progress": [ - 2009 + 2014 ], "shader_bake_progress_stage": [ - 70 + 75 ], "shader_bake_status": [ - 70 + 75 ], "start_port_range": [ 38 ], "token": [ - 70 + 75 ], "total_server_count": [ 38 ], "update_status": [ - 70 + 75 ], "__typename": [ - 70 + 75 ] }, "game_server_nodes_max_order_by": { "build_id": [ - 2011 + 2016 ], "cpu_cores_per_socket": [ - 2011 + 2016 ], "cpu_sockets": [ - 2011 + 2016 ], "cpu_threads_per_core": [ - 2011 + 2016 ], "csgo_build_id": [ - 2011 + 2016 ], "demo_network_limiter": [ - 2011 + 2016 ], "disk_available_gb": [ - 2011 + 2016 ], "disk_used_percent": [ - 2011 + 2016 ], "end_port_range": [ - 2011 + 2016 ], "id": [ - 2011 + 2016 ], "label": [ - 2011 + 2016 ], "offline_at": [ - 2011 + 2016 ], "pin_build_id": [ - 2011 + 2016 ], "pin_plugin_version": [ - 2011 + 2016 ], "region": [ - 2011 + 2016 ], "shader_bake_progress": [ - 2011 + 2016 ], "shader_bake_progress_stage": [ - 2011 + 2016 ], "shader_bake_status": [ - 2011 + 2016 ], "start_port_range": [ - 2011 + 2016 ], "token": [ - 2011 + 2016 ], "update_status": [ - 2011 + 2016 ], "__typename": [ - 70 + 75 ] }, "game_server_nodes_min_fields": { @@ -17586,114 +17692,114 @@ export default { 38 ], "id": [ - 70 + 75 ], "label": [ - 70 + 75 ], "offline_at": [ - 3421 + 3467 ], "pin_build_id": [ 38 ], "pin_plugin_version": [ - 70 + 75 ], "region": [ - 70 + 75 ], "shader_bake_progress": [ - 2009 + 2014 ], "shader_bake_progress_stage": [ - 70 + 75 ], "shader_bake_status": [ - 70 + 75 ], "start_port_range": [ 38 ], "token": [ - 70 + 75 ], "total_server_count": [ 38 ], "update_status": [ - 70 + 75 ], "__typename": [ - 70 + 75 ] }, "game_server_nodes_min_order_by": { "build_id": [ - 2011 + 2016 ], "cpu_cores_per_socket": [ - 2011 + 2016 ], "cpu_sockets": [ - 2011 + 2016 ], "cpu_threads_per_core": [ - 2011 + 2016 ], "csgo_build_id": [ - 2011 + 2016 ], "demo_network_limiter": [ - 2011 + 2016 ], "disk_available_gb": [ - 2011 + 2016 ], "disk_used_percent": [ - 2011 + 2016 ], "end_port_range": [ - 2011 + 2016 ], "id": [ - 2011 + 2016 ], "label": [ - 2011 + 2016 ], "offline_at": [ - 2011 + 2016 ], "pin_build_id": [ - 2011 + 2016 ], "pin_plugin_version": [ - 2011 + 2016 ], "region": [ - 2011 + 2016 ], "shader_bake_progress": [ - 2011 + 2016 ], "shader_bake_progress_stage": [ - 2011 + 2016 ], "shader_bake_status": [ - 2011 + 2016 ], "start_port_range": [ - 2011 + 2016 ], "token": [ - 2011 + 2016 ], "update_status": [ - 2011 + 2016 ], "__typename": [ - 70 + 75 ] }, "game_server_nodes_mutation_response": { @@ -17701,212 +17807,212 @@ export default { 38 ], "returning": [ - 1113 + 1118 ], "__typename": [ - 70 + 75 ] }, "game_server_nodes_obj_rel_insert_input": { "data": [ - 1131 + 1136 ], "on_conflict": [ - 1138 + 1143 ], "__typename": [ - 70 + 75 ] }, "game_server_nodes_on_conflict": { "constraint": [ - 1126 + 1131 ], "update_columns": [ - 1156 + 1161 ], "where": [ - 1125 + 1130 ], "__typename": [ - 70 + 75 ] }, "game_server_nodes_order_by": { "available_server_count": [ - 2011 + 2016 ], "build_id": [ - 2011 + 2016 ], "cpu_cores_per_socket": [ - 2011 + 2016 ], "cpu_frequency_info": [ - 2011 + 2016 ], "cpu_governor_info": [ - 2011 + 2016 ], "cpu_sockets": [ - 2011 + 2016 ], "cpu_threads_per_core": [ - 2011 + 2016 ], "cs2_launch_options": [ - 2011 + 2016 ], "cs2_video_settings": [ - 2011 + 2016 ], "csgo_build_id": [ - 2011 + 2016 ], "demo_network_limiter": [ - 2011 + 2016 ], "disk_available_gb": [ - 2011 + 2016 ], "disk_used_percent": [ - 2011 + 2016 ], "e_region": [ - 2946 + 2983 ], "e_status": [ - 567 + 572 ], "enabled": [ - 2011 + 2016 ], "enabled_for_match_making": [ - 2011 + 2016 ], "end_port_range": [ - 2011 + 2016 ], "gpu": [ - 2011 + 2016 ], "gpu_demos_enabled": [ - 2011 + 2016 ], "gpu_info": [ - 2011 + 2016 ], "gpu_rendering_enabled": [ - 2011 + 2016 ], "gpu_streaming_enabled": [ - 2011 + 2016 ], "id": [ - 2011 + 2016 ], "label": [ - 2011 + 2016 ], "lan_ip": [ - 2011 + 2016 ], "node_ip": [ - 2011 + 2016 ], "offline_at": [ - 2011 + 2016 ], "pin_build_id": [ - 2011 + 2016 ], "pin_plugin_version": [ - 2011 + 2016 ], "pinned_version": [ - 1181 + 1186 ], "plugin_supported": [ - 2011 + 2016 ], "public_ip": [ - 2011 + 2016 ], "region": [ - 2011 + 2016 ], "servers_aggregate": [ - 2968 + 3005 ], "shader_bake_progress": [ - 2011 + 2016 ], "shader_bake_progress_stage": [ - 2011 + 2016 ], "shader_bake_status": [ - 2011 + 2016 ], "shader_bake_status_history": [ - 2011 + 2016 ], "start_port_range": [ - 2011 + 2016 ], "status": [ - 2011 + 2016 ], "supports_cpu_pinning": [ - 2011 + 2016 ], "supports_low_latency": [ - 2011 + 2016 ], "token": [ - 2011 + 2016 ], "total_server_count": [ - 2011 + 2016 ], "update_status": [ - 2011 + 2016 ], "version": [ - 1181 + 1186 ], "__typename": [ - 70 + 75 ] }, "game_server_nodes_pk_columns_input": { "id": [ - 70 + 75 ], "__typename": [ - 70 + 75 ] }, "game_server_nodes_prepend_input": { "cpu_frequency_info": [ - 1235 + 1240 ], "cpu_governor_info": [ - 1235 + 1240 ], "cs2_launch_options": [ - 1235 + 1240 ], "cs2_video_settings": [ - 1235 + 1240 ], "gpu_info": [ - 1235 + 1240 ], "shader_bake_status_history": [ - 1235 + 1240 ], "__typename": [ - 70 + 75 ] }, "game_server_nodes_select_column": {}, @@ -17920,10 +18026,10 @@ export default { 38 ], "cpu_frequency_info": [ - 1235 + 1240 ], "cpu_governor_info": [ - 1235 + 1240 ], "cpu_sockets": [ 38 @@ -17932,10 +18038,10 @@ export default { 38 ], "cs2_launch_options": [ - 1235 + 1240 ], "cs2_video_settings": [ - 1235 + 1240 ], "csgo_build_id": [ 38 @@ -17965,7 +18071,7 @@ export default { 3 ], "gpu_info": [ - 1235 + 1240 ], "gpu_rendering_enabled": [ 3 @@ -17974,49 +18080,49 @@ export default { 3 ], "id": [ - 70 + 75 ], "label": [ - 70 + 75 ], "lan_ip": [ - 1231 + 1236 ], "node_ip": [ - 1231 + 1236 ], "offline_at": [ - 3421 + 3467 ], "pin_build_id": [ 38 ], "pin_plugin_version": [ - 70 + 75 ], "public_ip": [ - 1231 + 1236 ], "region": [ - 70 + 75 ], "shader_bake_progress": [ - 2009 + 2014 ], "shader_bake_progress_stage": [ - 70 + 75 ], "shader_bake_status": [ - 70 + 75 ], "shader_bake_status_history": [ - 1235 + 1240 ], "start_port_range": [ 38 ], "status": [ - 559 + 564 ], "supports_cpu_pinning": [ 3 @@ -18025,13 +18131,13 @@ export default { 3 ], "token": [ - 70 + 75 ], "update_status": [ - 70 + 75 ], "__typename": [ - 70 + 75 ] }, "game_server_nodes_stddev_fields": { @@ -18078,48 +18184,48 @@ export default { 38 ], "__typename": [ - 70 + 75 ] }, "game_server_nodes_stddev_order_by": { "build_id": [ - 2011 + 2016 ], "cpu_cores_per_socket": [ - 2011 + 2016 ], "cpu_sockets": [ - 2011 + 2016 ], "cpu_threads_per_core": [ - 2011 + 2016 ], "csgo_build_id": [ - 2011 + 2016 ], "demo_network_limiter": [ - 2011 + 2016 ], "disk_available_gb": [ - 2011 + 2016 ], "disk_used_percent": [ - 2011 + 2016 ], "end_port_range": [ - 2011 + 2016 ], "pin_build_id": [ - 2011 + 2016 ], "shader_bake_progress": [ - 2011 + 2016 ], "start_port_range": [ - 2011 + 2016 ], "__typename": [ - 70 + 75 ] }, "game_server_nodes_stddev_pop_fields": { @@ -18166,48 +18272,48 @@ export default { 38 ], "__typename": [ - 70 + 75 ] }, "game_server_nodes_stddev_pop_order_by": { "build_id": [ - 2011 + 2016 ], "cpu_cores_per_socket": [ - 2011 + 2016 ], "cpu_sockets": [ - 2011 + 2016 ], "cpu_threads_per_core": [ - 2011 + 2016 ], "csgo_build_id": [ - 2011 + 2016 ], "demo_network_limiter": [ - 2011 + 2016 ], "disk_available_gb": [ - 2011 + 2016 ], "disk_used_percent": [ - 2011 + 2016 ], "end_port_range": [ - 2011 + 2016 ], "pin_build_id": [ - 2011 + 2016 ], "shader_bake_progress": [ - 2011 + 2016 ], "start_port_range": [ - 2011 + 2016 ], "__typename": [ - 70 + 75 ] }, "game_server_nodes_stddev_samp_fields": { @@ -18254,59 +18360,59 @@ export default { 38 ], "__typename": [ - 70 + 75 ] }, "game_server_nodes_stddev_samp_order_by": { "build_id": [ - 2011 + 2016 ], "cpu_cores_per_socket": [ - 2011 + 2016 ], "cpu_sockets": [ - 2011 + 2016 ], "cpu_threads_per_core": [ - 2011 + 2016 ], "csgo_build_id": [ - 2011 + 2016 ], "demo_network_limiter": [ - 2011 + 2016 ], "disk_available_gb": [ - 2011 + 2016 ], "disk_used_percent": [ - 2011 + 2016 ], "end_port_range": [ - 2011 + 2016 ], "pin_build_id": [ - 2011 + 2016 ], "shader_bake_progress": [ - 2011 + 2016 ], "start_port_range": [ - 2011 + 2016 ], "__typename": [ - 70 + 75 ] }, "game_server_nodes_stream_cursor_input": { "initial_value": [ - 1153 + 1158 ], "ordering": [ - 224 + 229 ], "__typename": [ - 70 + 75 ] }, "game_server_nodes_stream_cursor_value_input": { @@ -18317,10 +18423,10 @@ export default { 38 ], "cpu_frequency_info": [ - 1235 + 1240 ], "cpu_governor_info": [ - 1235 + 1240 ], "cpu_sockets": [ 38 @@ -18329,10 +18435,10 @@ export default { 38 ], "cs2_launch_options": [ - 1235 + 1240 ], "cs2_video_settings": [ - 1235 + 1240 ], "csgo_build_id": [ 38 @@ -18362,7 +18468,7 @@ export default { 3 ], "gpu_info": [ - 1235 + 1240 ], "gpu_rendering_enabled": [ 3 @@ -18371,49 +18477,49 @@ export default { 3 ], "id": [ - 70 + 75 ], "label": [ - 70 + 75 ], "lan_ip": [ - 1231 + 1236 ], "node_ip": [ - 1231 + 1236 ], "offline_at": [ - 3421 + 3467 ], "pin_build_id": [ 38 ], "pin_plugin_version": [ - 70 + 75 ], "public_ip": [ - 1231 + 1236 ], "region": [ - 70 + 75 ], "shader_bake_progress": [ - 2009 + 2014 ], "shader_bake_progress_stage": [ - 70 + 75 ], "shader_bake_status": [ - 70 + 75 ], "shader_bake_status_history": [ - 1235 + 1240 ], "start_port_range": [ 38 ], "status": [ - 559 + 564 ], "supports_cpu_pinning": [ 3 @@ -18422,13 +18528,13 @@ export default { 3 ], "token": [ - 70 + 75 ], "update_status": [ - 70 + 75 ], "__typename": [ - 70 + 75 ] }, "game_server_nodes_sum_fields": { @@ -18466,7 +18572,7 @@ export default { 38 ], "shader_bake_progress": [ - 2009 + 2014 ], "start_port_range": [ 38 @@ -18475,78 +18581,78 @@ export default { 38 ], "__typename": [ - 70 + 75 ] }, "game_server_nodes_sum_order_by": { "build_id": [ - 2011 + 2016 ], "cpu_cores_per_socket": [ - 2011 + 2016 ], "cpu_sockets": [ - 2011 + 2016 ], "cpu_threads_per_core": [ - 2011 + 2016 ], "csgo_build_id": [ - 2011 + 2016 ], "demo_network_limiter": [ - 2011 + 2016 ], "disk_available_gb": [ - 2011 + 2016 ], "disk_used_percent": [ - 2011 + 2016 ], "end_port_range": [ - 2011 + 2016 ], "pin_build_id": [ - 2011 + 2016 ], "shader_bake_progress": [ - 2011 + 2016 ], "start_port_range": [ - 2011 + 2016 ], "__typename": [ - 70 + 75 ] }, "game_server_nodes_update_column": {}, "game_server_nodes_updates": { "_append": [ - 1121 + 1126 ], "_delete_at_path": [ - 1127 + 1132 ], "_delete_elem": [ - 1128 + 1133 ], "_delete_key": [ - 1129 + 1134 ], "_inc": [ - 1130 + 1135 ], "_prepend": [ - 1141 + 1146 ], "_set": [ - 1145 + 1150 ], "where": [ - 1125 + 1130 ], "__typename": [ - 70 + 75 ] }, "game_server_nodes_var_pop_fields": { @@ -18593,48 +18699,48 @@ export default { 38 ], "__typename": [ - 70 + 75 ] }, "game_server_nodes_var_pop_order_by": { "build_id": [ - 2011 + 2016 ], "cpu_cores_per_socket": [ - 2011 + 2016 ], "cpu_sockets": [ - 2011 + 2016 ], "cpu_threads_per_core": [ - 2011 + 2016 ], "csgo_build_id": [ - 2011 + 2016 ], "demo_network_limiter": [ - 2011 + 2016 ], "disk_available_gb": [ - 2011 + 2016 ], "disk_used_percent": [ - 2011 + 2016 ], "end_port_range": [ - 2011 + 2016 ], "pin_build_id": [ - 2011 + 2016 ], "shader_bake_progress": [ - 2011 + 2016 ], "start_port_range": [ - 2011 + 2016 ], "__typename": [ - 70 + 75 ] }, "game_server_nodes_var_samp_fields": { @@ -18681,48 +18787,48 @@ export default { 38 ], "__typename": [ - 70 + 75 ] }, "game_server_nodes_var_samp_order_by": { "build_id": [ - 2011 + 2016 ], "cpu_cores_per_socket": [ - 2011 + 2016 ], "cpu_sockets": [ - 2011 + 2016 ], "cpu_threads_per_core": [ - 2011 + 2016 ], "csgo_build_id": [ - 2011 + 2016 ], "demo_network_limiter": [ - 2011 + 2016 ], "disk_available_gb": [ - 2011 + 2016 ], "disk_used_percent": [ - 2011 + 2016 ], "end_port_range": [ - 2011 + 2016 ], "pin_build_id": [ - 2011 + 2016 ], "shader_bake_progress": [ - 2011 + 2016 ], "start_port_range": [ - 2011 + 2016 ], "__typename": [ - 70 + 75 ] }, "game_server_nodes_variance_fields": { @@ -18769,48 +18875,48 @@ export default { 38 ], "__typename": [ - 70 + 75 ] }, "game_server_nodes_variance_order_by": { "build_id": [ - 2011 + 2016 ], "cpu_cores_per_socket": [ - 2011 + 2016 ], "cpu_sockets": [ - 2011 + 2016 ], "cpu_threads_per_core": [ - 2011 + 2016 ], "csgo_build_id": [ - 2011 + 2016 ], "demo_network_limiter": [ - 2011 + 2016 ], "disk_available_gb": [ - 2011 + 2016 ], "disk_used_percent": [ - 2011 + 2016 ], "end_port_range": [ - 2011 + 2016 ], "pin_build_id": [ - 2011 + 2016 ], "shader_bake_progress": [ - 2011 + 2016 ], "start_port_range": [ - 2011 + 2016 ], "__typename": [ - 70 + 75 ] }, "game_versions": { @@ -18824,46 +18930,46 @@ export default { 3 ], "description": [ - 70 + 75 ], "downloads": [ - 1235, + 1240, { "path": [ - 70 + 75 ] } ], "updated_at": [ - 3421 + 3467 ], "version": [ - 70 + 75 ], "__typename": [ - 70 + 75 ] }, "game_versions_aggregate": { "aggregate": [ - 1166 + 1171 ], "nodes": [ - 1164 + 1169 ], "__typename": [ - 70 + 75 ] }, "game_versions_aggregate_fields": { "avg": [ - 1168 + 1173 ], "count": [ 38, { "columns": [ - 1184, + 1189, "[game_versions_select_column!]" ], "distinct": [ @@ -18872,42 +18978,42 @@ export default { } ], "max": [ - 1176 + 1181 ], "min": [ - 1177 + 1182 ], "stddev": [ - 1186 + 1191 ], "stddev_pop": [ - 1187 + 1192 ], "stddev_samp": [ - 1188 + 1193 ], "sum": [ - 1191 + 1196 ], "var_pop": [ - 1194 + 1199 ], "var_samp": [ - 1195 + 1200 ], "variance": [ - 1196 + 1201 ], "__typename": [ - 70 + 75 ] }, "game_versions_append_input": { "downloads": [ - 1235 + 1240 ], "__typename": [ - 70 + 75 ] }, "game_versions_avg_fields": { @@ -18915,18 +19021,18 @@ export default { 29 ], "__typename": [ - 70 + 75 ] }, "game_versions_bool_exp": { "_and": [ - 1169 + 1174 ], "_not": [ - 1169 + 1174 ], "_or": [ - 1169 + 1174 ], "build_id": [ 39 @@ -18938,28 +19044,28 @@ export default { 4 ], "description": [ - 72 + 77 ], "downloads": [ - 1237 + 1242 ], "updated_at": [ - 3422 + 3468 ], "version": [ - 72 + 77 ], "__typename": [ - 70 + 75 ] }, "game_versions_constraint": {}, "game_versions_delete_at_path_input": { "downloads": [ - 70 + 75 ], "__typename": [ - 70 + 75 ] }, "game_versions_delete_elem_input": { @@ -18967,15 +19073,15 @@ export default { 38 ], "__typename": [ - 70 + 75 ] }, "game_versions_delete_key_input": { "downloads": [ - 70 + 75 ], "__typename": [ - 70 + 75 ] }, "game_versions_inc_input": { @@ -18983,7 +19089,7 @@ export default { 38 ], "__typename": [ - 70 + 75 ] }, "game_versions_insert_input": { @@ -18997,19 +19103,19 @@ export default { 3 ], "description": [ - 70 + 75 ], "downloads": [ - 1235 + 1240 ], "updated_at": [ - 3421 + 3467 ], "version": [ - 70 + 75 ], "__typename": [ - 70 + 75 ] }, "game_versions_max_fields": { @@ -19017,16 +19123,16 @@ export default { 38 ], "description": [ - 70 + 75 ], "updated_at": [ - 3421 + 3467 ], "version": [ - 70 + 75 ], "__typename": [ - 70 + 75 ] }, "game_versions_min_fields": { @@ -19034,16 +19140,16 @@ export default { 38 ], "description": [ - 70 + 75 ], "updated_at": [ - 3421 + 3467 ], "version": [ - 70 + 75 ], "__typename": [ - 70 + 75 ] }, "game_versions_mutation_response": { @@ -19051,61 +19157,61 @@ export default { 38 ], "returning": [ - 1164 + 1169 ], "__typename": [ - 70 + 75 ] }, "game_versions_obj_rel_insert_input": { "data": [ - 1175 + 1180 ], "on_conflict": [ - 1180 + 1185 ], "__typename": [ - 70 + 75 ] }, "game_versions_on_conflict": { "constraint": [ - 1170 + 1175 ], "update_columns": [ - 1192 + 1197 ], "where": [ - 1169 + 1174 ], "__typename": [ - 70 + 75 ] }, "game_versions_order_by": { "build_id": [ - 2011 + 2016 ], "current": [ - 2011 + 2016 ], "cvars": [ - 2011 + 2016 ], "description": [ - 2011 + 2016 ], "downloads": [ - 2011 + 2016 ], "updated_at": [ - 2011 + 2016 ], "version": [ - 2011 + 2016 ], "__typename": [ - 70 + 75 ] }, "game_versions_pk_columns_input": { @@ -19113,15 +19219,15 @@ export default { 38 ], "__typename": [ - 70 + 75 ] }, "game_versions_prepend_input": { "downloads": [ - 1235 + 1240 ], "__typename": [ - 70 + 75 ] }, "game_versions_select_column": {}, @@ -19136,19 +19242,19 @@ export default { 3 ], "description": [ - 70 + 75 ], "downloads": [ - 1235 + 1240 ], "updated_at": [ - 3421 + 3467 ], "version": [ - 70 + 75 ], "__typename": [ - 70 + 75 ] }, "game_versions_stddev_fields": { @@ -19156,7 +19262,7 @@ export default { 29 ], "__typename": [ - 70 + 75 ] }, "game_versions_stddev_pop_fields": { @@ -19164,7 +19270,7 @@ export default { 29 ], "__typename": [ - 70 + 75 ] }, "game_versions_stddev_samp_fields": { @@ -19172,18 +19278,18 @@ export default { 29 ], "__typename": [ - 70 + 75 ] }, "game_versions_stream_cursor_input": { "initial_value": [ - 1190 + 1195 ], "ordering": [ - 224 + 229 ], "__typename": [ - 70 + 75 ] }, "game_versions_stream_cursor_value_input": { @@ -19197,19 +19303,19 @@ export default { 3 ], "description": [ - 70 + 75 ], "downloads": [ - 1235 + 1240 ], "updated_at": [ - 3421 + 3467 ], "version": [ - 70 + 75 ], "__typename": [ - 70 + 75 ] }, "game_versions_sum_fields": { @@ -19217,37 +19323,37 @@ export default { 38 ], "__typename": [ - 70 + 75 ] }, "game_versions_update_column": {}, "game_versions_updates": { "_append": [ - 1167 + 1172 ], "_delete_at_path": [ - 1171 + 1176 ], "_delete_elem": [ - 1172 + 1177 ], "_delete_key": [ - 1173 + 1178 ], "_inc": [ - 1174 + 1179 ], "_prepend": [ - 1183 + 1188 ], "_set": [ - 1185 + 1190 ], "where": [ - 1169 + 1174 ], "__typename": [ - 70 + 75 ] }, "game_versions_var_pop_fields": { @@ -19255,7 +19361,7 @@ export default { 29 ], "__typename": [ - 70 + 75 ] }, "game_versions_var_samp_fields": { @@ -19263,7 +19369,7 @@ export default { 29 ], "__typename": [ - 70 + 75 ] }, "game_versions_variance_fields": { @@ -19271,60 +19377,60 @@ export default { 29 ], "__typename": [ - 70 + 75 ] }, "gamedata_signature_validations": { "branch": [ - 70 + 75 ], "build_id": [ 38 ], "game_version": [ - 1164 + 1169 ], "id": [ - 3818 + 3864 ], "results": [ - 1235, + 1240, { "path": [ - 70 + 75 ] } ], "status": [ - 70 + 75 ], "validated_at": [ - 3421 + 3467 ], "__typename": [ - 70 + 75 ] }, "gamedata_signature_validations_aggregate": { "aggregate": [ - 1199 + 1204 ], "nodes": [ - 1197 + 1202 ], "__typename": [ - 70 + 75 ] }, "gamedata_signature_validations_aggregate_fields": { "avg": [ - 1201 + 1206 ], "count": [ 38, { "columns": [ - 1216, + 1221, "[gamedata_signature_validations_select_column!]" ], "distinct": [ @@ -19333,42 +19439,42 @@ export default { } ], "max": [ - 1209 + 1214 ], "min": [ - 1210 + 1215 ], "stddev": [ - 1218 + 1223 ], "stddev_pop": [ - 1219 + 1224 ], "stddev_samp": [ - 1220 + 1225 ], "sum": [ - 1223 + 1228 ], "var_pop": [ - 1226 + 1231 ], "var_samp": [ - 1227 + 1232 ], "variance": [ - 1228 + 1233 ], "__typename": [ - 70 + 75 ] }, "gamedata_signature_validations_append_input": { "results": [ - 1235 + 1240 ], "__typename": [ - 70 + 75 ] }, "gamedata_signature_validations_avg_fields": { @@ -19376,51 +19482,51 @@ export default { 29 ], "__typename": [ - 70 + 75 ] }, "gamedata_signature_validations_bool_exp": { "_and": [ - 1202 + 1207 ], "_not": [ - 1202 + 1207 ], "_or": [ - 1202 + 1207 ], "branch": [ - 72 + 77 ], "build_id": [ 39 ], "game_version": [ - 1169 + 1174 ], "id": [ - 3820 + 3866 ], "results": [ - 1237 + 1242 ], "status": [ - 72 + 77 ], "validated_at": [ - 3422 + 3468 ], "__typename": [ - 70 + 75 ] }, "gamedata_signature_validations_constraint": {}, "gamedata_signature_validations_delete_at_path_input": { "results": [ - 70 + 75 ], "__typename": [ - 70 + 75 ] }, "gamedata_signature_validations_delete_elem_input": { @@ -19428,15 +19534,15 @@ export default { 38 ], "__typename": [ - 70 + 75 ] }, "gamedata_signature_validations_delete_key_input": { "results": [ - 70 + 75 ], "__typename": [ - 70 + 75 ] }, "gamedata_signature_validations_inc_input": { @@ -19444,73 +19550,73 @@ export default { 38 ], "__typename": [ - 70 + 75 ] }, "gamedata_signature_validations_insert_input": { "branch": [ - 70 + 75 ], "build_id": [ 38 ], "game_version": [ - 1179 + 1184 ], "id": [ - 3818 + 3864 ], "results": [ - 1235 + 1240 ], "status": [ - 70 + 75 ], "validated_at": [ - 3421 + 3467 ], "__typename": [ - 70 + 75 ] }, "gamedata_signature_validations_max_fields": { "branch": [ - 70 + 75 ], "build_id": [ 38 ], "id": [ - 3818 + 3864 ], "status": [ - 70 + 75 ], "validated_at": [ - 3421 + 3467 ], "__typename": [ - 70 + 75 ] }, "gamedata_signature_validations_min_fields": { "branch": [ - 70 + 75 ], "build_id": [ 38 ], "id": [ - 3818 + 3864 ], "status": [ - 70 + 75 ], "validated_at": [ - 3421 + 3467 ], "__typename": [ - 70 + 75 ] }, "gamedata_signature_validations_mutation_response": { @@ -19518,90 +19624,90 @@ export default { 38 ], "returning": [ - 1197 + 1202 ], "__typename": [ - 70 + 75 ] }, "gamedata_signature_validations_on_conflict": { "constraint": [ - 1203 + 1208 ], "update_columns": [ - 1224 + 1229 ], "where": [ - 1202 + 1207 ], "__typename": [ - 70 + 75 ] }, "gamedata_signature_validations_order_by": { "branch": [ - 2011 + 2016 ], "build_id": [ - 2011 + 2016 ], "game_version": [ - 1181 + 1186 ], "id": [ - 2011 + 2016 ], "results": [ - 2011 + 2016 ], "status": [ - 2011 + 2016 ], "validated_at": [ - 2011 + 2016 ], "__typename": [ - 70 + 75 ] }, "gamedata_signature_validations_pk_columns_input": { "id": [ - 3818 + 3864 ], "__typename": [ - 70 + 75 ] }, "gamedata_signature_validations_prepend_input": { "results": [ - 1235 + 1240 ], "__typename": [ - 70 + 75 ] }, "gamedata_signature_validations_select_column": {}, "gamedata_signature_validations_set_input": { "branch": [ - 70 + 75 ], "build_id": [ 38 ], "id": [ - 3818 + 3864 ], "results": [ - 1235 + 1240 ], "status": [ - 70 + 75 ], "validated_at": [ - 3421 + 3467 ], "__typename": [ - 70 + 75 ] }, "gamedata_signature_validations_stddev_fields": { @@ -19609,7 +19715,7 @@ export default { 29 ], "__typename": [ - 70 + 75 ] }, "gamedata_signature_validations_stddev_pop_fields": { @@ -19617,7 +19723,7 @@ export default { 29 ], "__typename": [ - 70 + 75 ] }, "gamedata_signature_validations_stddev_samp_fields": { @@ -19625,41 +19731,41 @@ export default { 29 ], "__typename": [ - 70 + 75 ] }, "gamedata_signature_validations_stream_cursor_input": { "initial_value": [ - 1222 + 1227 ], "ordering": [ - 224 + 229 ], "__typename": [ - 70 + 75 ] }, "gamedata_signature_validations_stream_cursor_value_input": { "branch": [ - 70 + 75 ], "build_id": [ 38 ], "id": [ - 3818 + 3864 ], "results": [ - 1235 + 1240 ], "status": [ - 70 + 75 ], "validated_at": [ - 3421 + 3467 ], "__typename": [ - 70 + 75 ] }, "gamedata_signature_validations_sum_fields": { @@ -19667,37 +19773,37 @@ export default { 38 ], "__typename": [ - 70 + 75 ] }, "gamedata_signature_validations_update_column": {}, "gamedata_signature_validations_updates": { "_append": [ - 1200 + 1205 ], "_delete_at_path": [ - 1204 + 1209 ], "_delete_elem": [ - 1205 + 1210 ], "_delete_key": [ - 1206 + 1211 ], "_inc": [ - 1207 + 1212 ], "_prepend": [ - 1215 + 1220 ], "_set": [ - 1217 + 1222 ], "where": [ - 1202 + 1207 ], "__typename": [ - 70 + 75 ] }, "gamedata_signature_validations_var_pop_fields": { @@ -19705,7 +19811,7 @@ export default { 29 ], "__typename": [ - 70 + 75 ] }, "gamedata_signature_validations_var_samp_fields": { @@ -19713,7 +19819,7 @@ export default { 29 ], "__typename": [ - 70 + 75 ] }, "gamedata_signature_validations_variance_fields": { @@ -19721,172 +19827,172 @@ export default { 29 ], "__typename": [ - 70 + 75 ] }, "get_leaderboard_args": { "_category": [ - 70 + 75 ], "_exclude_tournaments": [ 3 ], "_match_type": [ - 70 + 75 ], "_role": [ - 70 + 75 ], "_window_days": [ 38 ], "__typename": [ - 70 + 75 ] }, "get_player_leaderboard_rank_args": { "_category": [ - 70 + 75 ], "_exclude_tournaments": [ 3 ], "_match_type": [ - 70 + 75 ], "_player_steam_id": [ - 70 + 75 ], "_window_days": [ 38 ], "__typename": [ - 70 + 75 ] }, "inet": {}, "inet_comparison_exp": { "_eq": [ - 1231 + 1236 ], "_gt": [ - 1231 + 1236 ], "_gte": [ - 1231 + 1236 ], "_in": [ - 1231 + 1236 ], "_is_null": [ 3 ], "_lt": [ - 1231 + 1236 ], "_lte": [ - 1231 + 1236 ], "_neq": [ - 1231 + 1236 ], "_nin": [ - 1231 + 1236 ], "__typename": [ - 70 + 75 ] }, "json": {}, "json_comparison_exp": { "_eq": [ - 1233 + 1238 ], "_gt": [ - 1233 + 1238 ], "_gte": [ - 1233 + 1238 ], "_in": [ - 1233 + 1238 ], "_is_null": [ 3 ], "_lt": [ - 1233 + 1238 ], "_lte": [ - 1233 + 1238 ], "_neq": [ - 1233 + 1238 ], "_nin": [ - 1233 + 1238 ], "__typename": [ - 70 + 75 ] }, "jsonb": {}, "jsonb_cast_exp": { "String": [ - 72 + 77 ], "__typename": [ - 70 + 75 ] }, "jsonb_comparison_exp": { "_cast": [ - 1236 + 1241 ], "_contained_in": [ - 1235 + 1240 ], "_contains": [ - 1235 + 1240 ], "_eq": [ - 1235 + 1240 ], "_gt": [ - 1235 + 1240 ], "_gte": [ - 1235 + 1240 ], "_has_key": [ - 70 + 75 ], "_has_keys_all": [ - 70 + 75 ], "_has_keys_any": [ - 70 + 75 ], "_in": [ - 1235 + 1240 ], "_is_null": [ 3 ], "_lt": [ - 1235 + 1240 ], "_lte": [ - 1235 + 1240 ], "_neq": [ - 1235 + 1240 ], "_nin": [ - 1235 + 1240 ], "__typename": [ - 70 + 75 ] }, "leaderboard_entries": { @@ -19894,50 +20000,50 @@ export default { 38 ], "player_avatar_url": [ - 70 + 75 ], "player_country": [ - 70 + 75 ], "player_name": [ - 70 + 75 ], "player_steam_id": [ - 70 + 75 ], "secondary_value": [ - 1084 + 1089 ], "tertiary_value": [ - 1084 + 1089 ], "value": [ - 1084 + 1089 ], "__typename": [ - 70 + 75 ] }, "leaderboard_entries_aggregate": { "aggregate": [ - 1240 + 1245 ], "nodes": [ - 1238 + 1243 ], "__typename": [ - 70 + 75 ] }, "leaderboard_entries_aggregate_fields": { "avg": [ - 1241 + 1246 ], "count": [ 38, { "columns": [ - 1249, + 1254, "[leaderboard_entries_select_column!]" ], "distinct": [ @@ -19946,34 +20052,34 @@ export default { } ], "max": [ - 1245 + 1250 ], "min": [ - 1246 + 1251 ], "stddev": [ - 1251 + 1256 ], "stddev_pop": [ - 1252 + 1257 ], "stddev_samp": [ - 1253 + 1258 ], "sum": [ - 1256 + 1261 ], "var_pop": [ - 1258 + 1263 ], "var_samp": [ - 1259 + 1264 ], "variance": [ - 1260 + 1265 ], "__typename": [ - 70 + 75 ] }, "leaderboard_entries_avg_fields": { @@ -19990,45 +20096,45 @@ export default { 29 ], "__typename": [ - 70 + 75 ] }, "leaderboard_entries_bool_exp": { "_and": [ - 1242 + 1247 ], "_not": [ - 1242 + 1247 ], "_or": [ - 1242 + 1247 ], "matches_played": [ 39 ], "player_avatar_url": [ - 72 + 77 ], "player_country": [ - 72 + 77 ], "player_name": [ - 72 + 77 ], "player_steam_id": [ - 72 + 77 ], "secondary_value": [ - 1085 + 1090 ], "tertiary_value": [ - 1085 + 1090 ], "value": [ - 1085 + 1090 ], "__typename": [ - 70 + 75 ] }, "leaderboard_entries_inc_input": { @@ -20036,16 +20142,16 @@ export default { 38 ], "secondary_value": [ - 1084 + 1089 ], "tertiary_value": [ - 1084 + 1089 ], "value": [ - 1084 + 1089 ], "__typename": [ - 70 + 75 ] }, "leaderboard_entries_insert_input": { @@ -20053,28 +20159,28 @@ export default { 38 ], "player_avatar_url": [ - 70 + 75 ], "player_country": [ - 70 + 75 ], "player_name": [ - 70 + 75 ], "player_steam_id": [ - 70 + 75 ], "secondary_value": [ - 1084 + 1089 ], "tertiary_value": [ - 1084 + 1089 ], "value": [ - 1084 + 1089 ], "__typename": [ - 70 + 75 ] }, "leaderboard_entries_max_fields": { @@ -20082,28 +20188,28 @@ export default { 38 ], "player_avatar_url": [ - 70 + 75 ], "player_country": [ - 70 + 75 ], "player_name": [ - 70 + 75 ], "player_steam_id": [ - 70 + 75 ], "secondary_value": [ - 1084 + 1089 ], "tertiary_value": [ - 1084 + 1089 ], "value": [ - 1084 + 1089 ], "__typename": [ - 70 + 75 ] }, "leaderboard_entries_min_fields": { @@ -20111,28 +20217,28 @@ export default { 38 ], "player_avatar_url": [ - 70 + 75 ], "player_country": [ - 70 + 75 ], "player_name": [ - 70 + 75 ], "player_steam_id": [ - 70 + 75 ], "secondary_value": [ - 1084 + 1089 ], "tertiary_value": [ - 1084 + 1089 ], "value": [ - 1084 + 1089 ], "__typename": [ - 70 + 75 ] }, "leaderboard_entries_mutation_response": { @@ -20140,39 +20246,39 @@ export default { 38 ], "returning": [ - 1238 + 1243 ], "__typename": [ - 70 + 75 ] }, "leaderboard_entries_order_by": { "matches_played": [ - 2011 + 2016 ], "player_avatar_url": [ - 2011 + 2016 ], "player_country": [ - 2011 + 2016 ], "player_name": [ - 2011 + 2016 ], "player_steam_id": [ - 2011 + 2016 ], "secondary_value": [ - 2011 + 2016 ], "tertiary_value": [ - 2011 + 2016 ], "value": [ - 2011 + 2016 ], "__typename": [ - 70 + 75 ] }, "leaderboard_entries_select_column": {}, @@ -20181,28 +20287,28 @@ export default { 38 ], "player_avatar_url": [ - 70 + 75 ], "player_country": [ - 70 + 75 ], "player_name": [ - 70 + 75 ], "player_steam_id": [ - 70 + 75 ], "secondary_value": [ - 1084 + 1089 ], "tertiary_value": [ - 1084 + 1089 ], "value": [ - 1084 + 1089 ], "__typename": [ - 70 + 75 ] }, "leaderboard_entries_stddev_fields": { @@ -20219,7 +20325,7 @@ export default { 29 ], "__typename": [ - 70 + 75 ] }, "leaderboard_entries_stddev_pop_fields": { @@ -20236,7 +20342,7 @@ export default { 29 ], "__typename": [ - 70 + 75 ] }, "leaderboard_entries_stddev_samp_fields": { @@ -20253,18 +20359,18 @@ export default { 29 ], "__typename": [ - 70 + 75 ] }, "leaderboard_entries_stream_cursor_input": { "initial_value": [ - 1255 + 1260 ], "ordering": [ - 224 + 229 ], "__typename": [ - 70 + 75 ] }, "leaderboard_entries_stream_cursor_value_input": { @@ -20272,28 +20378,28 @@ export default { 38 ], "player_avatar_url": [ - 70 + 75 ], "player_country": [ - 70 + 75 ], "player_name": [ - 70 + 75 ], "player_steam_id": [ - 70 + 75 ], "secondary_value": [ - 1084 + 1089 ], "tertiary_value": [ - 1084 + 1089 ], "value": [ - 1084 + 1089 ], "__typename": [ - 70 + 75 ] }, "leaderboard_entries_sum_fields": { @@ -20301,30 +20407,30 @@ export default { 38 ], "secondary_value": [ - 1084 + 1089 ], "tertiary_value": [ - 1084 + 1089 ], "value": [ - 1084 + 1089 ], "__typename": [ - 70 + 75 ] }, "leaderboard_entries_updates": { "_inc": [ - 1243 + 1248 ], "_set": [ - 1250 + 1255 ], "where": [ - 1242 + 1247 ], "__typename": [ - 70 + 75 ] }, "leaderboard_entries_var_pop_fields": { @@ -20341,7 +20447,7 @@ export default { 29 ], "__typename": [ - 70 + 75 ] }, "leaderboard_entries_var_samp_fields": { @@ -20358,7 +20464,7 @@ export default { 29 ], "__typename": [ - 70 + 75 ] }, "leaderboard_entries_variance_fields": { @@ -20375,27 +20481,27 @@ export default { 29 ], "__typename": [ - 70 + 75 ] }, "lobbies": { "access": [ - 580 + 585 ], "created_at": [ - 3421 + 3467 ], "e_lobby_access": [ - 575 + 580 ], "id": [ - 3818 + 3864 ], "players": [ - 1280, + 1285, { "distinct_on": [ - 1303, + 1308, "[lobby_players_select_column!]" ], "limit": [ @@ -20405,19 +20511,19 @@ export default { 38 ], "order_by": [ - 1301, + 1306, "[lobby_players_order_by!]" ], "where": [ - 1291 + 1296 ] } ], "players_aggregate": [ - 1281, + 1286, { "distinct_on": [ - 1303, + 1308, "[lobby_players_select_column!]" ], "limit": [ @@ -20427,27 +20533,27 @@ export default { 38 ], "order_by": [ - 1301, + 1306, "[lobby_players_order_by!]" ], "where": [ - 1291 + 1296 ] } ], "__typename": [ - 70 + 75 ] }, "lobbies_aggregate": { "aggregate": [ - 1263 + 1268 ], "nodes": [ - 1261 + 1266 ], "__typename": [ - 70 + 75 ] }, "lobbies_aggregate_fields": { @@ -20455,7 +20561,7 @@ export default { 38, { "columns": [ - 1274, + 1279, "[lobbies_select_column!]" ], "distinct": [ @@ -20464,88 +20570,88 @@ export default { } ], "max": [ - 1267 + 1272 ], "min": [ - 1268 + 1273 ], "__typename": [ - 70 + 75 ] }, "lobbies_bool_exp": { "_and": [ - 1264 + 1269 ], "_not": [ - 1264 + 1269 ], "_or": [ - 1264 + 1269 ], "access": [ - 581 + 586 ], "created_at": [ - 3422 + 3468 ], "e_lobby_access": [ - 578 + 583 ], "id": [ - 3820 + 3866 ], "players": [ - 1291 + 1296 ], "players_aggregate": [ - 1282 + 1287 ], "__typename": [ - 70 + 75 ] }, "lobbies_constraint": {}, "lobbies_insert_input": { "access": [ - 580 + 585 ], "created_at": [ - 3421 + 3467 ], "e_lobby_access": [ - 586 + 591 ], "id": [ - 3818 + 3864 ], "players": [ - 1288 + 1293 ], "__typename": [ - 70 + 75 ] }, "lobbies_max_fields": { "created_at": [ - 3421 + 3467 ], "id": [ - 3818 + 3864 ], "__typename": [ - 70 + 75 ] }, "lobbies_min_fields": { "created_at": [ - 3421 + 3467 ], "id": [ - 3818 + 3864 ], "__typename": [ - 70 + 75 ] }, "lobbies_mutation_response": { @@ -20553,115 +20659,115 @@ export default { 38 ], "returning": [ - 1261 + 1266 ], "__typename": [ - 70 + 75 ] }, "lobbies_obj_rel_insert_input": { "data": [ - 1266 + 1271 ], "on_conflict": [ - 1271 + 1276 ], "__typename": [ - 70 + 75 ] }, "lobbies_on_conflict": { "constraint": [ - 1265 + 1270 ], "update_columns": [ - 1278 + 1283 ], "where": [ - 1264 + 1269 ], "__typename": [ - 70 + 75 ] }, "lobbies_order_by": { "access": [ - 2011 + 2016 ], "created_at": [ - 2011 + 2016 ], "e_lobby_access": [ - 588 + 593 ], "id": [ - 2011 + 2016 ], "players_aggregate": [ - 1287 + 1292 ], "__typename": [ - 70 + 75 ] }, "lobbies_pk_columns_input": { "id": [ - 3818 + 3864 ], "__typename": [ - 70 + 75 ] }, "lobbies_select_column": {}, "lobbies_set_input": { "access": [ - 580 + 585 ], "created_at": [ - 3421 + 3467 ], "id": [ - 3818 + 3864 ], "__typename": [ - 70 + 75 ] }, "lobbies_stream_cursor_input": { "initial_value": [ - 1277 + 1282 ], "ordering": [ - 224 + 229 ], "__typename": [ - 70 + 75 ] }, "lobbies_stream_cursor_value_input": { "access": [ - 580 + 585 ], "created_at": [ - 3421 + 3467 ], "id": [ - 3818 + 3864 ], "__typename": [ - 70 + 75 ] }, "lobbies_update_column": {}, "lobbies_updates": { "_set": [ - 1275 + 1280 ], "where": [ - 1264 + 1269 ], "__typename": [ - 70 + 75 ] }, "lobby_players": { @@ -20669,112 +20775,112 @@ export default { 3 ], "invited_by_steam_id": [ - 169 + 174 ], "lobby": [ - 1261 + 1266 ], "lobby_id": [ - 3818 + 3864 ], "player": [ - 2878 + 2915 ], "status": [ - 601 + 606 ], "steam_id": [ - 169 + 174 ], "__typename": [ - 70 + 75 ] }, "lobby_players_aggregate": { "aggregate": [ - 1286 + 1291 ], "nodes": [ - 1280 + 1285 ], "__typename": [ - 70 + 75 ] }, "lobby_players_aggregate_bool_exp": { "bool_and": [ - 1283 + 1288 ], "bool_or": [ - 1284 + 1289 ], "count": [ - 1285 + 1290 ], "__typename": [ - 70 + 75 ] }, "lobby_players_aggregate_bool_exp_bool_and": { "arguments": [ - 1304 + 1309 ], "distinct": [ 3 ], "filter": [ - 1291 + 1296 ], "predicate": [ 4 ], "__typename": [ - 70 + 75 ] }, "lobby_players_aggregate_bool_exp_bool_or": { "arguments": [ - 1305 + 1310 ], "distinct": [ 3 ], "filter": [ - 1291 + 1296 ], "predicate": [ 4 ], "__typename": [ - 70 + 75 ] }, "lobby_players_aggregate_bool_exp_count": { "arguments": [ - 1303 + 1308 ], "distinct": [ 3 ], "filter": [ - 1291 + 1296 ], "predicate": [ 39 ], "__typename": [ - 70 + 75 ] }, "lobby_players_aggregate_fields": { "avg": [ - 1289 + 1294 ], "count": [ 38, { "columns": [ - 1303, + 1308, "[lobby_players_select_column!]" ], "distinct": [ @@ -20783,83 +20889,83 @@ export default { } ], "max": [ - 1295 + 1300 ], "min": [ - 1297 + 1302 ], "stddev": [ - 1307 + 1312 ], "stddev_pop": [ - 1309 + 1314 ], "stddev_samp": [ - 1311 + 1316 ], "sum": [ - 1315 + 1320 ], "var_pop": [ - 1319 + 1324 ], "var_samp": [ - 1321 + 1326 ], "variance": [ - 1323 + 1328 ], "__typename": [ - 70 + 75 ] }, "lobby_players_aggregate_order_by": { "avg": [ - 1290 + 1295 ], "count": [ - 2011 + 2016 ], "max": [ - 1296 + 1301 ], "min": [ - 1298 + 1303 ], "stddev": [ - 1308 + 1313 ], "stddev_pop": [ - 1310 + 1315 ], "stddev_samp": [ - 1312 + 1317 ], "sum": [ - 1316 + 1321 ], "var_pop": [ - 1320 + 1325 ], "var_samp": [ - 1322 + 1327 ], "variance": [ - 1324 + 1329 ], "__typename": [ - 70 + 75 ] }, "lobby_players_arr_rel_insert_input": { "data": [ - 1294 + 1299 ], "on_conflict": [ - 1300 + 1305 ], "__typename": [ - 70 + 75 ] }, "lobby_players_avg_fields": { @@ -20870,65 +20976,65 @@ export default { 29 ], "__typename": [ - 70 + 75 ] }, "lobby_players_avg_order_by": { "invited_by_steam_id": [ - 2011 + 2016 ], "steam_id": [ - 2011 + 2016 ], "__typename": [ - 70 + 75 ] }, "lobby_players_bool_exp": { "_and": [ - 1291 + 1296 ], "_not": [ - 1291 + 1296 ], "_or": [ - 1291 + 1296 ], "captain": [ 4 ], "invited_by_steam_id": [ - 171 + 176 ], "lobby": [ - 1264 + 1269 ], "lobby_id": [ - 3820 + 3866 ], "player": [ - 2882 + 2919 ], "status": [ - 602 + 607 ], "steam_id": [ - 171 + 176 ], "__typename": [ - 70 + 75 ] }, "lobby_players_constraint": {}, "lobby_players_inc_input": { "invited_by_steam_id": [ - 169 + 174 ], "steam_id": [ - 169 + 174 ], "__typename": [ - 70 + 75 ] }, "lobby_players_insert_input": { @@ -20936,81 +21042,81 @@ export default { 3 ], "invited_by_steam_id": [ - 169 + 174 ], "lobby": [ - 1270 + 1275 ], "lobby_id": [ - 3818 + 3864 ], "player": [ - 2889 + 2926 ], "status": [ - 601 + 606 ], "steam_id": [ - 169 + 174 ], "__typename": [ - 70 + 75 ] }, "lobby_players_max_fields": { "invited_by_steam_id": [ - 169 + 174 ], "lobby_id": [ - 3818 + 3864 ], "steam_id": [ - 169 + 174 ], "__typename": [ - 70 + 75 ] }, "lobby_players_max_order_by": { "invited_by_steam_id": [ - 2011 + 2016 ], "lobby_id": [ - 2011 + 2016 ], "steam_id": [ - 2011 + 2016 ], "__typename": [ - 70 + 75 ] }, "lobby_players_min_fields": { "invited_by_steam_id": [ - 169 + 174 ], "lobby_id": [ - 3818 + 3864 ], "steam_id": [ - 169 + 174 ], "__typename": [ - 70 + 75 ] }, "lobby_players_min_order_by": { "invited_by_steam_id": [ - 2011 + 2016 ], "lobby_id": [ - 2011 + 2016 ], "steam_id": [ - 2011 + 2016 ], "__typename": [ - 70 + 75 ] }, "lobby_players_mutation_response": { @@ -21018,61 +21124,61 @@ export default { 38 ], "returning": [ - 1280 + 1285 ], "__typename": [ - 70 + 75 ] }, "lobby_players_on_conflict": { "constraint": [ - 1292 + 1297 ], "update_columns": [ - 1317 + 1322 ], "where": [ - 1291 + 1296 ], "__typename": [ - 70 + 75 ] }, "lobby_players_order_by": { "captain": [ - 2011 + 2016 ], "invited_by_steam_id": [ - 2011 + 2016 ], "lobby": [ - 1272 + 1277 ], "lobby_id": [ - 2011 + 2016 ], "player": [ - 2891 + 2928 ], "status": [ - 2011 + 2016 ], "steam_id": [ - 2011 + 2016 ], "__typename": [ - 70 + 75 ] }, "lobby_players_pk_columns_input": { "lobby_id": [ - 3818 + 3864 ], "steam_id": [ - 169 + 174 ], "__typename": [ - 70 + 75 ] }, "lobby_players_select_column": {}, @@ -21083,19 +21189,19 @@ export default { 3 ], "invited_by_steam_id": [ - 169 + 174 ], "lobby_id": [ - 3818 + 3864 ], "status": [ - 601 + 606 ], "steam_id": [ - 169 + 174 ], "__typename": [ - 70 + 75 ] }, "lobby_players_stddev_fields": { @@ -21106,18 +21212,18 @@ export default { 29 ], "__typename": [ - 70 + 75 ] }, "lobby_players_stddev_order_by": { "invited_by_steam_id": [ - 2011 + 2016 ], "steam_id": [ - 2011 + 2016 ], "__typename": [ - 70 + 75 ] }, "lobby_players_stddev_pop_fields": { @@ -21128,18 +21234,18 @@ export default { 29 ], "__typename": [ - 70 + 75 ] }, "lobby_players_stddev_pop_order_by": { "invited_by_steam_id": [ - 2011 + 2016 ], "steam_id": [ - 2011 + 2016 ], "__typename": [ - 70 + 75 ] }, "lobby_players_stddev_samp_fields": { @@ -21150,29 +21256,29 @@ export default { 29 ], "__typename": [ - 70 + 75 ] }, "lobby_players_stddev_samp_order_by": { "invited_by_steam_id": [ - 2011 + 2016 ], "steam_id": [ - 2011 + 2016 ], "__typename": [ - 70 + 75 ] }, "lobby_players_stream_cursor_input": { "initial_value": [ - 1314 + 1319 ], "ordering": [ - 224 + 229 ], "__typename": [ - 70 + 75 ] }, "lobby_players_stream_cursor_value_input": { @@ -21180,56 +21286,56 @@ export default { 3 ], "invited_by_steam_id": [ - 169 + 174 ], "lobby_id": [ - 3818 + 3864 ], "status": [ - 601 + 606 ], "steam_id": [ - 169 + 174 ], "__typename": [ - 70 + 75 ] }, "lobby_players_sum_fields": { "invited_by_steam_id": [ - 169 + 174 ], "steam_id": [ - 169 + 174 ], "__typename": [ - 70 + 75 ] }, "lobby_players_sum_order_by": { "invited_by_steam_id": [ - 2011 + 2016 ], "steam_id": [ - 2011 + 2016 ], "__typename": [ - 70 + 75 ] }, "lobby_players_update_column": {}, "lobby_players_updates": { "_inc": [ - 1293 + 1298 ], "_set": [ - 1306 + 1311 ], "where": [ - 1291 + 1296 ], "__typename": [ - 70 + 75 ] }, "lobby_players_var_pop_fields": { @@ -21240,18 +21346,18 @@ export default { 29 ], "__typename": [ - 70 + 75 ] }, "lobby_players_var_pop_order_by": { "invited_by_steam_id": [ - 2011 + 2016 ], "steam_id": [ - 2011 + 2016 ], "__typename": [ - 70 + 75 ] }, "lobby_players_var_samp_fields": { @@ -21262,18 +21368,18 @@ export default { 29 ], "__typename": [ - 70 + 75 ] }, "lobby_players_var_samp_order_by": { "invited_by_steam_id": [ - 2011 + 2016 ], "steam_id": [ - 2011 + 2016 ], "__typename": [ - 70 + 75 ] }, "lobby_players_variance_fields": { @@ -21284,35 +21390,35 @@ export default { 29 ], "__typename": [ - 70 + 75 ] }, "lobby_players_variance_order_by": { "invited_by_steam_id": [ - 2011 + 2016 ], "steam_id": [ - 2011 + 2016 ], "__typename": [ - 70 + 75 ] }, "map_pools": { "e_type": [ - 616 + 621 ], "enabled": [ 3 ], "id": [ - 3818 + 3864 ], "maps": [ - 4325, + 4371, { "distinct_on": [ - 4342, + 4388, "[v_pool_maps_select_column!]" ], "limit": [ @@ -21322,19 +21428,19 @@ export default { 38 ], "order_by": [ - 4341, + 4387, "[v_pool_maps_order_by!]" ], "where": [ - 4334 + 4380 ] } ], "maps_aggregate": [ - 4326, + 4372, { "distinct_on": [ - 4342, + 4388, "[v_pool_maps_select_column!]" ], "limit": [ @@ -21344,11 +21450,11 @@ export default { 38 ], "order_by": [ - 4341, + 4387, "[v_pool_maps_order_by!]" ], "where": [ - 4334 + 4380 ] } ], @@ -21356,21 +21462,21 @@ export default { 3 ], "type": [ - 621 + 626 ], "__typename": [ - 70 + 75 ] }, "map_pools_aggregate": { "aggregate": [ - 1327 + 1332 ], "nodes": [ - 1325 + 1330 ], "__typename": [ - 70 + 75 ] }, "map_pools_aggregate_fields": { @@ -21378,7 +21484,7 @@ export default { 38, { "columns": [ - 1338, + 1343, "[map_pools_select_column!]" ], "distinct": [ @@ -21387,88 +21493,88 @@ export default { } ], "max": [ - 1331 + 1336 ], "min": [ - 1332 + 1337 ], "__typename": [ - 70 + 75 ] }, "map_pools_bool_exp": { "_and": [ - 1328 + 1333 ], "_not": [ - 1328 + 1333 ], "_or": [ - 1328 + 1333 ], "e_type": [ - 619 + 624 ], "enabled": [ 4 ], "id": [ - 3820 + 3866 ], "maps": [ - 4334 + 4380 ], "maps_aggregate": [ - 4327 + 4373 ], "seed": [ 4 ], "type": [ - 622 + 627 ], "__typename": [ - 70 + 75 ] }, "map_pools_constraint": {}, "map_pools_insert_input": { "e_type": [ - 627 + 632 ], "enabled": [ 3 ], "id": [ - 3818 + 3864 ], "maps": [ - 4333 + 4379 ], "seed": [ 3 ], "type": [ - 621 + 626 ], "__typename": [ - 70 + 75 ] }, "map_pools_max_fields": { "id": [ - 3818 + 3864 ], "__typename": [ - 70 + 75 ] }, "map_pools_min_fields": { "id": [ - 3818 + 3864 ], "__typename": [ - 70 + 75 ] }, "map_pools_mutation_response": { @@ -21476,66 +21582,66 @@ export default { 38 ], "returning": [ - 1325 + 1330 ], "__typename": [ - 70 + 75 ] }, "map_pools_obj_rel_insert_input": { "data": [ - 1330 + 1335 ], "on_conflict": [ - 1335 + 1340 ], "__typename": [ - 70 + 75 ] }, "map_pools_on_conflict": { "constraint": [ - 1329 + 1334 ], "update_columns": [ - 1342 + 1347 ], "where": [ - 1328 + 1333 ], "__typename": [ - 70 + 75 ] }, "map_pools_order_by": { "e_type": [ - 629 + 634 ], "enabled": [ - 2011 + 2016 ], "id": [ - 2011 + 2016 ], "maps_aggregate": [ - 4332 + 4378 ], "seed": [ - 2011 + 2016 ], "type": [ - 2011 + 2016 ], "__typename": [ - 70 + 75 ] }, "map_pools_pk_columns_input": { "id": [ - 3818 + 3864 ], "__typename": [ - 70 + 75 ] }, "map_pools_select_column": {}, @@ -21544,27 +21650,27 @@ export default { 3 ], "id": [ - 3818 + 3864 ], "seed": [ 3 ], "type": [ - 621 + 626 ], "__typename": [ - 70 + 75 ] }, "map_pools_stream_cursor_input": { "initial_value": [ - 1341 + 1346 ], "ordering": [ - 224 + 229 ], "__typename": [ - 70 + 75 ] }, "map_pools_stream_cursor_value_input": { @@ -21572,28 +21678,28 @@ export default { 3 ], "id": [ - 3818 + 3864 ], "seed": [ 3 ], "type": [ - 621 + 626 ], "__typename": [ - 70 + 75 ] }, "map_pools_update_column": {}, "map_pools_updates": { "_set": [ - 1339 + 1344 ], "where": [ - 1328 + 1333 ], "__typename": [ - 70 + 75 ] }, "maps": { @@ -21601,22 +21707,22 @@ export default { 3 ], "e_match_type": [ - 719 + 724 ], "enabled": [ 3 ], "id": [ - 3818 + 3864 ], "label": [ - 70 + 75 ], "match_maps": [ - 1664, + 1669, { "distinct_on": [ - 1686, + 1691, "[match_maps_select_column!]" ], "limit": [ @@ -21626,19 +21732,19 @@ export default { 38 ], "order_by": [ - 1684, + 1689, "[match_maps_order_by!]" ], "where": [ - 1673 + 1678 ] } ], "match_maps_aggregate": [ - 1665, + 1670, { "distinct_on": [ - 1686, + 1691, "[match_maps_select_column!]" ], "limit": [ @@ -21648,19 +21754,19 @@ export default { 38 ], "order_by": [ - 1684, + 1689, "[match_maps_order_by!]" ], "where": [ - 1673 + 1678 ] } ], "match_veto_picks": [ - 1640, + 1645, { "distinct_on": [ - 1658, + 1663, "[match_map_veto_picks_select_column!]" ], "limit": [ @@ -21670,19 +21776,19 @@ export default { 38 ], "order_by": [ - 1656, + 1661, "[match_map_veto_picks_order_by!]" ], "where": [ - 1647 + 1652 ] } ], "match_veto_picks_aggregate": [ - 1641, + 1646, { "distinct_on": [ - 1658, + 1663, "[match_map_veto_picks_select_column!]" ], "limit": [ @@ -21692,107 +21798,107 @@ export default { 38 ], "order_by": [ - 1656, + 1661, "[match_map_veto_picks_order_by!]" ], "where": [ - 1647 + 1652 ] } ], "name": [ - 70 + 75 ], "patch": [ - 70 + 75 ], "poster": [ - 70 + 75 ], "type": [ - 724 + 729 ], "workshop_map_id": [ - 70 + 75 ], "__typename": [ - 70 + 75 ] }, "maps_aggregate": { "aggregate": [ - 1350 + 1355 ], "nodes": [ - 1344 + 1349 ], "__typename": [ - 70 + 75 ] }, "maps_aggregate_bool_exp": { "bool_and": [ - 1347 + 1352 ], "bool_or": [ - 1348 + 1353 ], "count": [ - 1349 + 1354 ], "__typename": [ - 70 + 75 ] }, "maps_aggregate_bool_exp_bool_and": { "arguments": [ - 1366 + 1371 ], "distinct": [ 3 ], "filter": [ - 1353 + 1358 ], "predicate": [ 4 ], "__typename": [ - 70 + 75 ] }, "maps_aggregate_bool_exp_bool_or": { "arguments": [ - 1367 + 1372 ], "distinct": [ 3 ], "filter": [ - 1353 + 1358 ], "predicate": [ 4 ], "__typename": [ - 70 + 75 ] }, "maps_aggregate_bool_exp_count": { "arguments": [ - 1365 + 1370 ], "distinct": [ 3 ], "filter": [ - 1353 + 1358 ], "predicate": [ 39 ], "__typename": [ - 70 + 75 ] }, "maps_aggregate_fields": { @@ -21800,7 +21906,7 @@ export default { 38, { "columns": [ - 1365, + 1370, "[maps_select_column!]" ], "distinct": [ @@ -21809,94 +21915,94 @@ export default { } ], "max": [ - 1356 + 1361 ], "min": [ - 1358 + 1363 ], "__typename": [ - 70 + 75 ] }, "maps_aggregate_order_by": { "count": [ - 2011 + 2016 ], "max": [ - 1357 + 1362 ], "min": [ - 1359 + 1364 ], "__typename": [ - 70 + 75 ] }, "maps_arr_rel_insert_input": { "data": [ - 1355 + 1360 ], "on_conflict": [ - 1362 + 1367 ], "__typename": [ - 70 + 75 ] }, "maps_bool_exp": { "_and": [ - 1353 + 1358 ], "_not": [ - 1353 + 1358 ], "_or": [ - 1353 + 1358 ], "active_pool": [ 4 ], "e_match_type": [ - 722 + 727 ], "enabled": [ 4 ], "id": [ - 3820 + 3866 ], "label": [ - 72 + 77 ], "match_maps": [ - 1673 + 1678 ], "match_maps_aggregate": [ - 1666 + 1671 ], "match_veto_picks": [ - 1647 + 1652 ], "match_veto_picks_aggregate": [ - 1642 + 1647 ], "name": [ - 72 + 77 ], "patch": [ - 72 + 77 ], "poster": [ - 72 + 77 ], "type": [ - 725 + 730 ], "workshop_map_id": [ - 72 + 77 ], "__typename": [ - 70 + 75 ] }, "maps_constraint": {}, @@ -21905,132 +22011,132 @@ export default { 3 ], "e_match_type": [ - 730 + 735 ], "enabled": [ 3 ], "id": [ - 3818 + 3864 ], "label": [ - 70 + 75 ], "match_maps": [ - 1670 + 1675 ], "match_veto_picks": [ - 1646 + 1651 ], "name": [ - 70 + 75 ], "patch": [ - 70 + 75 ], "poster": [ - 70 + 75 ], "type": [ - 724 + 729 ], "workshop_map_id": [ - 70 + 75 ], "__typename": [ - 70 + 75 ] }, "maps_max_fields": { "id": [ - 3818 + 3864 ], "label": [ - 70 + 75 ], "name": [ - 70 + 75 ], "patch": [ - 70 + 75 ], "poster": [ - 70 + 75 ], "workshop_map_id": [ - 70 + 75 ], "__typename": [ - 70 + 75 ] }, "maps_max_order_by": { "id": [ - 2011 + 2016 ], "label": [ - 2011 + 2016 ], "name": [ - 2011 + 2016 ], "patch": [ - 2011 + 2016 ], "poster": [ - 2011 + 2016 ], "workshop_map_id": [ - 2011 + 2016 ], "__typename": [ - 70 + 75 ] }, "maps_min_fields": { "id": [ - 3818 + 3864 ], "label": [ - 70 + 75 ], "name": [ - 70 + 75 ], "patch": [ - 70 + 75 ], "poster": [ - 70 + 75 ], "workshop_map_id": [ - 70 + 75 ], "__typename": [ - 70 + 75 ] }, "maps_min_order_by": { "id": [ - 2011 + 2016 ], "label": [ - 2011 + 2016 ], "name": [ - 2011 + 2016 ], "patch": [ - 2011 + 2016 ], "poster": [ - 2011 + 2016 ], "workshop_map_id": [ - 2011 + 2016 ], "__typename": [ - 70 + 75 ] }, "maps_mutation_response": { @@ -22038,84 +22144,84 @@ export default { 38 ], "returning": [ - 1344 + 1349 ], "__typename": [ - 70 + 75 ] }, "maps_obj_rel_insert_input": { "data": [ - 1355 + 1360 ], "on_conflict": [ - 1362 + 1367 ], "__typename": [ - 70 + 75 ] }, "maps_on_conflict": { "constraint": [ - 1354 + 1359 ], "update_columns": [ - 1371 + 1376 ], "where": [ - 1353 + 1358 ], "__typename": [ - 70 + 75 ] }, "maps_order_by": { "active_pool": [ - 2011 + 2016 ], "e_match_type": [ - 732 + 737 ], "enabled": [ - 2011 + 2016 ], "id": [ - 2011 + 2016 ], "label": [ - 2011 + 2016 ], "match_maps_aggregate": [ - 1669 + 1674 ], "match_veto_picks_aggregate": [ - 1645 + 1650 ], "name": [ - 2011 + 2016 ], "patch": [ - 2011 + 2016 ], "poster": [ - 2011 + 2016 ], "type": [ - 2011 + 2016 ], "workshop_map_id": [ - 2011 + 2016 ], "__typename": [ - 70 + 75 ] }, "maps_pk_columns_input": { "id": [ - 3818 + 3864 ], "__typename": [ - 70 + 75 ] }, "maps_select_column": {}, @@ -22129,39 +22235,39 @@ export default { 3 ], "id": [ - 3818 + 3864 ], "label": [ - 70 + 75 ], "name": [ - 70 + 75 ], "patch": [ - 70 + 75 ], "poster": [ - 70 + 75 ], "type": [ - 724 + 729 ], "workshop_map_id": [ - 70 + 75 ], "__typename": [ - 70 + 75 ] }, "maps_stream_cursor_input": { "initial_value": [ - 1370 + 1375 ], "ordering": [ - 224 + 229 ], "__typename": [ - 70 + 75 ] }, "maps_stream_cursor_value_input": { @@ -22172,78 +22278,78 @@ export default { 3 ], "id": [ - 3818 + 3864 ], "label": [ - 70 + 75 ], "name": [ - 70 + 75 ], "patch": [ - 70 + 75 ], "poster": [ - 70 + 75 ], "type": [ - 724 + 729 ], "workshop_map_id": [ - 70 + 75 ], "__typename": [ - 70 + 75 ] }, "maps_update_column": {}, "maps_updates": { "_set": [ - 1368 + 1373 ], "where": [ - 1353 + 1358 ], "__typename": [ - 70 + 75 ] }, "match_clips": { "created_at": [ - 3421 + 3467 ], "download_url": [ - 70 + 75 ], "duration_ms": [ 38 ], "file": [ - 70 + 75 ], "id": [ - 3818 + 3864 ], "kills_count": [ 38 ], "match_map": [ - 1664 + 1669 ], "match_map_demo": [ - 1548 + 1553 ], "match_map_demo_id": [ - 3818 + 3864 ], "match_map_id": [ - 3818 + 3864 ], "render_jobs": [ - 174, + 179, { "distinct_on": [ - 202, + 207, "[clip_render_jobs_select_column!]" ], "limit": [ @@ -22253,19 +22359,19 @@ export default { 38 ], "order_by": [ - 199, + 204, "[clip_render_jobs_order_by!]" ], "where": [ - 186 + 191 ] } ], "render_jobs_aggregate": [ - 175, + 180, { "distinct_on": [ - 202, + 207, "[clip_render_jobs_select_column!]" ], "limit": [ @@ -22275,11 +22381,11 @@ export default { 38 ], "order_by": [ - 199, + 204, "[clip_render_jobs_order_by!]" ], "where": [ - 186 + 191 ] } ], @@ -22287,84 +22393,84 @@ export default { 38 ], "size": [ - 169 + 174 ], "target": [ - 2878 + 2915 ], "target_steam_id": [ - 169 + 174 ], "thumbnail_download_url": [ - 70 + 75 ], "thumbnail_url": [ - 70 + 75 ], "title": [ - 70 + 75 ], "user": [ - 2878 + 2915 ], "user_steam_id": [ - 169 + 174 ], "views_count": [ 38 ], "visibility": [ - 642 + 647 ], "__typename": [ - 70 + 75 ] }, "match_clips_aggregate": { "aggregate": [ - 1377 + 1382 ], "nodes": [ - 1373 + 1378 ], "__typename": [ - 70 + 75 ] }, "match_clips_aggregate_bool_exp": { "count": [ - 1376 + 1381 ], "__typename": [ - 70 + 75 ] }, "match_clips_aggregate_bool_exp_count": { "arguments": [ - 1395 + 1400 ], "distinct": [ 3 ], "filter": [ - 1382 + 1387 ], "predicate": [ 39 ], "__typename": [ - 70 + 75 ] }, "match_clips_aggregate_fields": { "avg": [ - 1380 + 1385 ], "count": [ 38, { "columns": [ - 1395, + 1400, "[match_clips_select_column!]" ], "distinct": [ @@ -22373,83 +22479,83 @@ export default { } ], "max": [ - 1386 + 1391 ], "min": [ - 1388 + 1393 ], "stddev": [ - 1397 + 1402 ], "stddev_pop": [ - 1399 + 1404 ], "stddev_samp": [ - 1401 + 1406 ], "sum": [ - 1405 + 1410 ], "var_pop": [ - 1409 + 1414 ], "var_samp": [ - 1411 + 1416 ], "variance": [ - 1413 + 1418 ], "__typename": [ - 70 + 75 ] }, "match_clips_aggregate_order_by": { "avg": [ - 1381 + 1386 ], "count": [ - 2011 + 2016 ], "max": [ - 1387 + 1392 ], "min": [ - 1389 + 1394 ], "stddev": [ - 1398 + 1403 ], "stddev_pop": [ - 1400 + 1405 ], "stddev_samp": [ - 1402 + 1407 ], "sum": [ - 1406 + 1411 ], "var_pop": [ - 1410 + 1415 ], "var_samp": [ - 1412 + 1417 ], "variance": [ - 1414 + 1419 ], "__typename": [ - 70 + 75 ] }, "match_clips_arr_rel_insert_input": { "data": [ - 1385 + 1390 ], "on_conflict": [ - 1392 + 1397 ], "__typename": [ - 70 + 75 ] }, "match_clips_avg_fields": { @@ -22475,116 +22581,116 @@ export default { 29 ], "__typename": [ - 70 + 75 ] }, "match_clips_avg_order_by": { "duration_ms": [ - 2011 + 2016 ], "kills_count": [ - 2011 + 2016 ], "round": [ - 2011 + 2016 ], "size": [ - 2011 + 2016 ], "target_steam_id": [ - 2011 + 2016 ], "user_steam_id": [ - 2011 + 2016 ], "views_count": [ - 2011 + 2016 ], "__typename": [ - 70 + 75 ] }, "match_clips_bool_exp": { "_and": [ - 1382 + 1387 ], "_not": [ - 1382 + 1387 ], "_or": [ - 1382 + 1387 ], "created_at": [ - 3422 + 3468 ], "download_url": [ - 72 + 77 ], "duration_ms": [ 39 ], "file": [ - 72 + 77 ], "id": [ - 3820 + 3866 ], "kills_count": [ 39 ], "match_map": [ - 1673 + 1678 ], "match_map_demo": [ - 1560 + 1565 ], "match_map_demo_id": [ - 3820 + 3866 ], "match_map_id": [ - 3820 + 3866 ], "render_jobs": [ - 186 + 191 ], "render_jobs_aggregate": [ - 176 + 181 ], "round": [ 39 ], "size": [ - 171 + 176 ], "target": [ - 2882 + 2919 ], "target_steam_id": [ - 171 + 176 ], "thumbnail_download_url": [ - 72 + 77 ], "thumbnail_url": [ - 72 + 77 ], "title": [ - 72 + 77 ], "user": [ - 2882 + 2919 ], "user_steam_id": [ - 171 + 176 ], "views_count": [ 39 ], "visibility": [ - 643 + 648 ], "__typename": [ - 70 + 75 ] }, "match_clips_constraint": {}, @@ -22599,284 +22705,284 @@ export default { 38 ], "size": [ - 169 + 174 ], "target_steam_id": [ - 169 + 174 ], "user_steam_id": [ - 169 + 174 ], "views_count": [ 38 ], "__typename": [ - 70 + 75 ] }, "match_clips_insert_input": { "created_at": [ - 3421 + 3467 ], "duration_ms": [ 38 ], "file": [ - 70 + 75 ], "id": [ - 3818 + 3864 ], "kills_count": [ 38 ], "match_map": [ - 1682 + 1687 ], "match_map_demo": [ - 1572 + 1577 ], "match_map_demo_id": [ - 3818 + 3864 ], "match_map_id": [ - 3818 + 3864 ], "render_jobs": [ - 183 + 188 ], "round": [ 38 ], "size": [ - 169 + 174 ], "target": [ - 2889 + 2926 ], "target_steam_id": [ - 169 + 174 ], "thumbnail_url": [ - 70 + 75 ], "title": [ - 70 + 75 ], "user": [ - 2889 + 2926 ], "user_steam_id": [ - 169 + 174 ], "views_count": [ 38 ], "visibility": [ - 642 + 647 ], "__typename": [ - 70 + 75 ] }, "match_clips_max_fields": { "created_at": [ - 3421 + 3467 ], "download_url": [ - 70 + 75 ], "duration_ms": [ 38 ], "file": [ - 70 + 75 ], "id": [ - 3818 + 3864 ], "kills_count": [ 38 ], "match_map_demo_id": [ - 3818 + 3864 ], "match_map_id": [ - 3818 + 3864 ], "round": [ 38 ], "size": [ - 169 + 174 ], "target_steam_id": [ - 169 + 174 ], "thumbnail_download_url": [ - 70 + 75 ], "thumbnail_url": [ - 70 + 75 ], "title": [ - 70 + 75 ], "user_steam_id": [ - 169 + 174 ], "views_count": [ 38 ], "__typename": [ - 70 + 75 ] }, "match_clips_max_order_by": { "created_at": [ - 2011 + 2016 ], "duration_ms": [ - 2011 + 2016 ], "file": [ - 2011 + 2016 ], "id": [ - 2011 + 2016 ], "kills_count": [ - 2011 + 2016 ], "match_map_demo_id": [ - 2011 + 2016 ], "match_map_id": [ - 2011 + 2016 ], "round": [ - 2011 + 2016 ], "size": [ - 2011 + 2016 ], "target_steam_id": [ - 2011 + 2016 ], "thumbnail_url": [ - 2011 + 2016 ], "title": [ - 2011 + 2016 ], "user_steam_id": [ - 2011 + 2016 ], "views_count": [ - 2011 + 2016 ], "__typename": [ - 70 + 75 ] }, "match_clips_min_fields": { "created_at": [ - 3421 + 3467 ], "download_url": [ - 70 + 75 ], "duration_ms": [ 38 ], "file": [ - 70 + 75 ], "id": [ - 3818 + 3864 ], "kills_count": [ 38 ], "match_map_demo_id": [ - 3818 + 3864 ], "match_map_id": [ - 3818 + 3864 ], "round": [ 38 ], "size": [ - 169 + 174 ], "target_steam_id": [ - 169 + 174 ], "thumbnail_download_url": [ - 70 + 75 ], "thumbnail_url": [ - 70 + 75 ], "title": [ - 70 + 75 ], "user_steam_id": [ - 169 + 174 ], "views_count": [ 38 ], "__typename": [ - 70 + 75 ] }, "match_clips_min_order_by": { "created_at": [ - 2011 + 2016 ], "duration_ms": [ - 2011 + 2016 ], "file": [ - 2011 + 2016 ], "id": [ - 2011 + 2016 ], "kills_count": [ - 2011 + 2016 ], "match_map_demo_id": [ - 2011 + 2016 ], "match_map_id": [ - 2011 + 2016 ], "round": [ - 2011 + 2016 ], "size": [ - 2011 + 2016 ], "target_steam_id": [ - 2011 + 2016 ], "thumbnail_url": [ - 2011 + 2016 ], "title": [ - 2011 + 2016 ], "user_steam_id": [ - 2011 + 2016 ], "views_count": [ - 2011 + 2016 ], "__typename": [ - 70 + 75 ] }, "match_clips_mutation_response": { @@ -22884,165 +22990,165 @@ export default { 38 ], "returning": [ - 1373 + 1378 ], "__typename": [ - 70 + 75 ] }, "match_clips_obj_rel_insert_input": { "data": [ - 1385 + 1390 ], "on_conflict": [ - 1392 + 1397 ], "__typename": [ - 70 + 75 ] }, "match_clips_on_conflict": { "constraint": [ - 1383 + 1388 ], "update_columns": [ - 1407 + 1412 ], "where": [ - 1382 + 1387 ], "__typename": [ - 70 + 75 ] }, "match_clips_order_by": { "created_at": [ - 2011 + 2016 ], "download_url": [ - 2011 + 2016 ], "duration_ms": [ - 2011 + 2016 ], "file": [ - 2011 + 2016 ], "id": [ - 2011 + 2016 ], "kills_count": [ - 2011 + 2016 ], "match_map": [ - 1684 + 1689 ], "match_map_demo": [ - 1574 + 1579 ], "match_map_demo_id": [ - 2011 + 2016 ], "match_map_id": [ - 2011 + 2016 ], "render_jobs_aggregate": [ - 181 + 186 ], "round": [ - 2011 + 2016 ], "size": [ - 2011 + 2016 ], "target": [ - 2891 + 2928 ], "target_steam_id": [ - 2011 + 2016 ], "thumbnail_download_url": [ - 2011 + 2016 ], "thumbnail_url": [ - 2011 + 2016 ], "title": [ - 2011 + 2016 ], "user": [ - 2891 + 2928 ], "user_steam_id": [ - 2011 + 2016 ], "views_count": [ - 2011 + 2016 ], "visibility": [ - 2011 + 2016 ], "__typename": [ - 70 + 75 ] }, "match_clips_pk_columns_input": { "id": [ - 3818 + 3864 ], "__typename": [ - 70 + 75 ] }, "match_clips_select_column": {}, "match_clips_set_input": { "created_at": [ - 3421 + 3467 ], "duration_ms": [ 38 ], "file": [ - 70 + 75 ], "id": [ - 3818 + 3864 ], "kills_count": [ 38 ], "match_map_demo_id": [ - 3818 + 3864 ], "match_map_id": [ - 3818 + 3864 ], "round": [ 38 ], "size": [ - 169 + 174 ], "target_steam_id": [ - 169 + 174 ], "thumbnail_url": [ - 70 + 75 ], "title": [ - 70 + 75 ], "user_steam_id": [ - 169 + 174 ], "views_count": [ 38 ], "visibility": [ - 642 + 647 ], "__typename": [ - 70 + 75 ] }, "match_clips_stddev_fields": { @@ -23068,33 +23174,33 @@ export default { 29 ], "__typename": [ - 70 + 75 ] }, "match_clips_stddev_order_by": { "duration_ms": [ - 2011 + 2016 ], "kills_count": [ - 2011 + 2016 ], "round": [ - 2011 + 2016 ], "size": [ - 2011 + 2016 ], "target_steam_id": [ - 2011 + 2016 ], "user_steam_id": [ - 2011 + 2016 ], "views_count": [ - 2011 + 2016 ], "__typename": [ - 70 + 75 ] }, "match_clips_stddev_pop_fields": { @@ -23120,33 +23226,33 @@ export default { 29 ], "__typename": [ - 70 + 75 ] }, "match_clips_stddev_pop_order_by": { "duration_ms": [ - 2011 + 2016 ], "kills_count": [ - 2011 + 2016 ], "round": [ - 2011 + 2016 ], "size": [ - 2011 + 2016 ], "target_steam_id": [ - 2011 + 2016 ], "user_steam_id": [ - 2011 + 2016 ], "views_count": [ - 2011 + 2016 ], "__typename": [ - 70 + 75 ] }, "match_clips_stddev_samp_fields": { @@ -23172,94 +23278,94 @@ export default { 29 ], "__typename": [ - 70 + 75 ] }, "match_clips_stddev_samp_order_by": { "duration_ms": [ - 2011 + 2016 ], "kills_count": [ - 2011 + 2016 ], "round": [ - 2011 + 2016 ], "size": [ - 2011 + 2016 ], "target_steam_id": [ - 2011 + 2016 ], "user_steam_id": [ - 2011 + 2016 ], "views_count": [ - 2011 + 2016 ], "__typename": [ - 70 + 75 ] }, "match_clips_stream_cursor_input": { "initial_value": [ - 1404 + 1409 ], "ordering": [ - 224 + 229 ], "__typename": [ - 70 + 75 ] }, "match_clips_stream_cursor_value_input": { "created_at": [ - 3421 + 3467 ], "duration_ms": [ 38 ], "file": [ - 70 + 75 ], "id": [ - 3818 + 3864 ], "kills_count": [ 38 ], "match_map_demo_id": [ - 3818 + 3864 ], "match_map_id": [ - 3818 + 3864 ], "round": [ 38 ], "size": [ - 169 + 174 ], "target_steam_id": [ - 169 + 174 ], "thumbnail_url": [ - 70 + 75 ], "title": [ - 70 + 75 ], "user_steam_id": [ - 169 + 174 ], "views_count": [ 38 ], "visibility": [ - 642 + 647 ], "__typename": [ - 70 + 75 ] }, "match_clips_sum_fields": { @@ -23273,60 +23379,60 @@ export default { 38 ], "size": [ - 169 + 174 ], "target_steam_id": [ - 169 + 174 ], "user_steam_id": [ - 169 + 174 ], "views_count": [ 38 ], "__typename": [ - 70 + 75 ] }, "match_clips_sum_order_by": { "duration_ms": [ - 2011 + 2016 ], "kills_count": [ - 2011 + 2016 ], "round": [ - 2011 + 2016 ], "size": [ - 2011 + 2016 ], "target_steam_id": [ - 2011 + 2016 ], "user_steam_id": [ - 2011 + 2016 ], "views_count": [ - 2011 + 2016 ], "__typename": [ - 70 + 75 ] }, "match_clips_update_column": {}, "match_clips_updates": { "_inc": [ - 1384 + 1389 ], "_set": [ - 1396 + 1401 ], "where": [ - 1382 + 1387 ], "__typename": [ - 70 + 75 ] }, "match_clips_var_pop_fields": { @@ -23352,33 +23458,33 @@ export default { 29 ], "__typename": [ - 70 + 75 ] }, "match_clips_var_pop_order_by": { "duration_ms": [ - 2011 + 2016 ], "kills_count": [ - 2011 + 2016 ], "round": [ - 2011 + 2016 ], "size": [ - 2011 + 2016 ], "target_steam_id": [ - 2011 + 2016 ], "user_steam_id": [ - 2011 + 2016 ], "views_count": [ - 2011 + 2016 ], "__typename": [ - 70 + 75 ] }, "match_clips_var_samp_fields": { @@ -23404,33 +23510,33 @@ export default { 29 ], "__typename": [ - 70 + 75 ] }, "match_clips_var_samp_order_by": { "duration_ms": [ - 2011 + 2016 ], "kills_count": [ - 2011 + 2016 ], "round": [ - 2011 + 2016 ], "size": [ - 2011 + 2016 ], "target_steam_id": [ - 2011 + 2016 ], "user_steam_id": [ - 2011 + 2016 ], "views_count": [ - 2011 + 2016 ], "__typename": [ - 70 + 75 ] }, "match_clips_variance_fields": { @@ -23456,147 +23562,147 @@ export default { 29 ], "__typename": [ - 70 + 75 ] }, "match_clips_variance_order_by": { "duration_ms": [ - 2011 + 2016 ], "kills_count": [ - 2011 + 2016 ], "round": [ - 2011 + 2016 ], "size": [ - 2011 + 2016 ], "target_steam_id": [ - 2011 + 2016 ], "user_steam_id": [ - 2011 + 2016 ], "views_count": [ - 2011 + 2016 ], "__typename": [ - 70 + 75 ] }, "match_demo_sessions": { "created_at": [ - 3421 + 3467 ], "error_message": [ - 70 + 75 ], "game_server_node": [ - 1113 + 1118 ], "game_server_node_id": [ - 70 + 75 ], "id": [ - 3818 + 3864 ], "k8s_job_name": [ - 70 + 75 ], "last_activity_at": [ - 3421 + 3467 ], "last_status_at": [ - 3421 + 3467 ], "match": [ - 1826 + 1831 ], "match_id": [ - 3818 + 3864 ], "match_map": [ - 1664 + 1669 ], "match_map_demo": [ - 1548 + 1553 ], "match_map_demo_id": [ - 3818 + 3864 ], "match_map_id": [ - 3818 + 3864 ], "status": [ - 70 + 75 ], "status_history": [ - 1235, + 1240, { "path": [ - 70 + 75 ] } ], "stream_url": [ - 70 + 75 ], "watcher": [ - 2878 + 2915 ], "watcher_steam_id": [ - 169 + 174 ], "__typename": [ - 70 + 75 ] }, "match_demo_sessions_aggregate": { "aggregate": [ - 1419 + 1424 ], "nodes": [ - 1415 + 1420 ], "__typename": [ - 70 + 75 ] }, "match_demo_sessions_aggregate_bool_exp": { "count": [ - 1418 + 1423 ], "__typename": [ - 70 + 75 ] }, "match_demo_sessions_aggregate_bool_exp_count": { "arguments": [ - 1441 + 1446 ], "distinct": [ 3 ], "filter": [ - 1425 + 1430 ], "predicate": [ 39 ], "__typename": [ - 70 + 75 ] }, "match_demo_sessions_aggregate_fields": { "avg": [ - 1423 + 1428 ], "count": [ 38, { "columns": [ - 1441, + 1446, "[match_demo_sessions_select_column!]" ], "distinct": [ @@ -23605,91 +23711,91 @@ export default { } ], "max": [ - 1432 + 1437 ], "min": [ - 1434 + 1439 ], "stddev": [ - 1443 + 1448 ], "stddev_pop": [ - 1445 + 1450 ], "stddev_samp": [ - 1447 + 1452 ], "sum": [ - 1451 + 1456 ], "var_pop": [ - 1455 + 1460 ], "var_samp": [ - 1457 + 1462 ], "variance": [ - 1459 + 1464 ], "__typename": [ - 70 + 75 ] }, "match_demo_sessions_aggregate_order_by": { "avg": [ - 1424 + 1429 ], "count": [ - 2011 + 2016 ], "max": [ - 1433 + 1438 ], "min": [ - 1435 + 1440 ], "stddev": [ - 1444 + 1449 ], "stddev_pop": [ - 1446 + 1451 ], "stddev_samp": [ - 1448 + 1453 ], "sum": [ - 1452 + 1457 ], "var_pop": [ - 1456 + 1461 ], "var_samp": [ - 1458 + 1463 ], "variance": [ - 1460 + 1465 ], "__typename": [ - 70 + 75 ] }, "match_demo_sessions_append_input": { "status_history": [ - 1235 + 1240 ], "__typename": [ - 70 + 75 ] }, "match_demo_sessions_arr_rel_insert_input": { "data": [ - 1431 + 1436 ], "on_conflict": [ - 1437 + 1442 ], "__typename": [ - 70 + 75 ] }, "match_demo_sessions_avg_fields": { @@ -23697,95 +23803,95 @@ export default { 29 ], "__typename": [ - 70 + 75 ] }, "match_demo_sessions_avg_order_by": { "watcher_steam_id": [ - 2011 + 2016 ], "__typename": [ - 70 + 75 ] }, "match_demo_sessions_bool_exp": { "_and": [ - 1425 + 1430 ], "_not": [ - 1425 + 1430 ], "_or": [ - 1425 + 1430 ], "created_at": [ - 3422 + 3468 ], "error_message": [ - 72 + 77 ], "game_server_node": [ - 1125 + 1130 ], "game_server_node_id": [ - 72 + 77 ], "id": [ - 3820 + 3866 ], "k8s_job_name": [ - 72 + 77 ], "last_activity_at": [ - 3422 + 3468 ], "last_status_at": [ - 3422 + 3468 ], "match": [ - 1835 + 1840 ], "match_id": [ - 3820 + 3866 ], "match_map": [ - 1673 + 1678 ], "match_map_demo": [ - 1560 + 1565 ], "match_map_demo_id": [ - 3820 + 3866 ], "match_map_id": [ - 3820 + 3866 ], "status": [ - 72 + 77 ], "status_history": [ - 1237 + 1242 ], "stream_url": [ - 72 + 77 ], "watcher": [ - 2882 + 2919 ], "watcher_steam_id": [ - 171 + 176 ], "__typename": [ - 70 + 75 ] }, "match_demo_sessions_constraint": {}, "match_demo_sessions_delete_at_path_input": { "status_history": [ - 70 + 75 ], "__typename": [ - 70 + 75 ] }, "match_demo_sessions_delete_elem_input": { @@ -23793,261 +23899,261 @@ export default { 38 ], "__typename": [ - 70 + 75 ] }, "match_demo_sessions_delete_key_input": { "status_history": [ - 70 + 75 ], "__typename": [ - 70 + 75 ] }, "match_demo_sessions_inc_input": { "watcher_steam_id": [ - 169 + 174 ], "__typename": [ - 70 + 75 ] }, "match_demo_sessions_insert_input": { "created_at": [ - 3421 + 3467 ], "error_message": [ - 70 + 75 ], "game_server_node": [ - 1137 + 1142 ], "game_server_node_id": [ - 70 + 75 ], "id": [ - 3818 + 3864 ], "k8s_job_name": [ - 70 + 75 ], "last_activity_at": [ - 3421 + 3467 ], "last_status_at": [ - 3421 + 3467 ], "match": [ - 1844 + 1849 ], "match_id": [ - 3818 + 3864 ], "match_map": [ - 1682 + 1687 ], "match_map_demo": [ - 1572 + 1577 ], "match_map_demo_id": [ - 3818 + 3864 ], "match_map_id": [ - 3818 + 3864 ], "status": [ - 70 + 75 ], "status_history": [ - 1235 + 1240 ], "stream_url": [ - 70 + 75 ], "watcher": [ - 2889 + 2926 ], "watcher_steam_id": [ - 169 + 174 ], "__typename": [ - 70 + 75 ] }, "match_demo_sessions_max_fields": { "created_at": [ - 3421 + 3467 ], "error_message": [ - 70 + 75 ], "game_server_node_id": [ - 70 + 75 ], "id": [ - 3818 + 3864 ], "k8s_job_name": [ - 70 + 75 ], "last_activity_at": [ - 3421 + 3467 ], "last_status_at": [ - 3421 + 3467 ], "match_id": [ - 3818 + 3864 ], "match_map_demo_id": [ - 3818 + 3864 ], "match_map_id": [ - 3818 + 3864 ], "status": [ - 70 + 75 ], "stream_url": [ - 70 + 75 ], "watcher_steam_id": [ - 169 + 174 ], "__typename": [ - 70 + 75 ] }, "match_demo_sessions_max_order_by": { "created_at": [ - 2011 + 2016 ], "error_message": [ - 2011 + 2016 ], "game_server_node_id": [ - 2011 + 2016 ], "id": [ - 2011 + 2016 ], "k8s_job_name": [ - 2011 + 2016 ], "last_activity_at": [ - 2011 + 2016 ], "last_status_at": [ - 2011 + 2016 ], "match_id": [ - 2011 + 2016 ], "match_map_demo_id": [ - 2011 + 2016 ], "match_map_id": [ - 2011 + 2016 ], "status": [ - 2011 + 2016 ], "stream_url": [ - 2011 + 2016 ], "watcher_steam_id": [ - 2011 + 2016 ], "__typename": [ - 70 + 75 ] }, "match_demo_sessions_min_fields": { "created_at": [ - 3421 + 3467 ], "error_message": [ - 70 + 75 ], "game_server_node_id": [ - 70 + 75 ], "id": [ - 3818 + 3864 ], "k8s_job_name": [ - 70 + 75 ], "last_activity_at": [ - 3421 + 3467 ], "last_status_at": [ - 3421 + 3467 ], "match_id": [ - 3818 + 3864 ], "match_map_demo_id": [ - 3818 + 3864 ], "match_map_id": [ - 3818 + 3864 ], "status": [ - 70 + 75 ], "stream_url": [ - 70 + 75 ], "watcher_steam_id": [ - 169 + 174 ], "__typename": [ - 70 + 75 ] }, "match_demo_sessions_min_order_by": { "created_at": [ - 2011 + 2016 ], "error_message": [ - 2011 + 2016 ], "game_server_node_id": [ - 2011 + 2016 ], "id": [ - 2011 + 2016 ], "k8s_job_name": [ - 2011 + 2016 ], "last_activity_at": [ - 2011 + 2016 ], "last_status_at": [ - 2011 + 2016 ], "match_id": [ - 2011 + 2016 ], "match_map_demo_id": [ - 2011 + 2016 ], "match_map_id": [ - 2011 + 2016 ], "status": [ - 2011 + 2016 ], "stream_url": [ - 2011 + 2016 ], "watcher_steam_id": [ - 2011 + 2016 ], "__typename": [ - 70 + 75 ] }, "match_demo_sessions_mutation_response": { @@ -24055,150 +24161,150 @@ export default { 38 ], "returning": [ - 1415 + 1420 ], "__typename": [ - 70 + 75 ] }, "match_demo_sessions_on_conflict": { "constraint": [ - 1426 + 1431 ], "update_columns": [ - 1453 + 1458 ], "where": [ - 1425 + 1430 ], "__typename": [ - 70 + 75 ] }, "match_demo_sessions_order_by": { "created_at": [ - 2011 + 2016 ], "error_message": [ - 2011 + 2016 ], "game_server_node": [ - 1139 + 1144 ], "game_server_node_id": [ - 2011 + 2016 ], "id": [ - 2011 + 2016 ], "k8s_job_name": [ - 2011 + 2016 ], "last_activity_at": [ - 2011 + 2016 ], "last_status_at": [ - 2011 + 2016 ], "match": [ - 1846 + 1851 ], "match_id": [ - 2011 + 2016 ], "match_map": [ - 1684 + 1689 ], "match_map_demo": [ - 1574 + 1579 ], "match_map_demo_id": [ - 2011 + 2016 ], "match_map_id": [ - 2011 + 2016 ], "status": [ - 2011 + 2016 ], "status_history": [ - 2011 + 2016 ], "stream_url": [ - 2011 + 2016 ], "watcher": [ - 2891 + 2928 ], "watcher_steam_id": [ - 2011 + 2016 ], "__typename": [ - 70 + 75 ] }, "match_demo_sessions_pk_columns_input": { "id": [ - 3818 + 3864 ], "__typename": [ - 70 + 75 ] }, "match_demo_sessions_prepend_input": { "status_history": [ - 1235 + 1240 ], "__typename": [ - 70 + 75 ] }, "match_demo_sessions_select_column": {}, "match_demo_sessions_set_input": { "created_at": [ - 3421 + 3467 ], "error_message": [ - 70 + 75 ], "game_server_node_id": [ - 70 + 75 ], "id": [ - 3818 + 3864 ], "k8s_job_name": [ - 70 + 75 ], "last_activity_at": [ - 3421 + 3467 ], "last_status_at": [ - 3421 + 3467 ], "match_id": [ - 3818 + 3864 ], "match_map_demo_id": [ - 3818 + 3864 ], "match_map_id": [ - 3818 + 3864 ], "status": [ - 70 + 75 ], "status_history": [ - 1235 + 1240 ], "stream_url": [ - 70 + 75 ], "watcher_steam_id": [ - 169 + 174 ], "__typename": [ - 70 + 75 ] }, "match_demo_sessions_stddev_fields": { @@ -24206,15 +24312,15 @@ export default { 29 ], "__typename": [ - 70 + 75 ] }, "match_demo_sessions_stddev_order_by": { "watcher_steam_id": [ - 2011 + 2016 ], "__typename": [ - 70 + 75 ] }, "match_demo_sessions_stddev_pop_fields": { @@ -24222,15 +24328,15 @@ export default { 29 ], "__typename": [ - 70 + 75 ] }, "match_demo_sessions_stddev_pop_order_by": { "watcher_steam_id": [ - 2011 + 2016 ], "__typename": [ - 70 + 75 ] }, "match_demo_sessions_stddev_samp_fields": { @@ -24238,119 +24344,119 @@ export default { 29 ], "__typename": [ - 70 + 75 ] }, "match_demo_sessions_stddev_samp_order_by": { "watcher_steam_id": [ - 2011 + 2016 ], "__typename": [ - 70 + 75 ] }, "match_demo_sessions_stream_cursor_input": { "initial_value": [ - 1450 + 1455 ], "ordering": [ - 224 + 229 ], "__typename": [ - 70 + 75 ] }, "match_demo_sessions_stream_cursor_value_input": { "created_at": [ - 3421 + 3467 ], "error_message": [ - 70 + 75 ], "game_server_node_id": [ - 70 + 75 ], "id": [ - 3818 + 3864 ], "k8s_job_name": [ - 70 + 75 ], "last_activity_at": [ - 3421 + 3467 ], "last_status_at": [ - 3421 + 3467 ], "match_id": [ - 3818 + 3864 ], "match_map_demo_id": [ - 3818 + 3864 ], "match_map_id": [ - 3818 + 3864 ], "status": [ - 70 + 75 ], "status_history": [ - 1235 + 1240 ], "stream_url": [ - 70 + 75 ], "watcher_steam_id": [ - 169 + 174 ], "__typename": [ - 70 + 75 ] }, "match_demo_sessions_sum_fields": { "watcher_steam_id": [ - 169 + 174 ], "__typename": [ - 70 + 75 ] }, "match_demo_sessions_sum_order_by": { "watcher_steam_id": [ - 2011 + 2016 ], "__typename": [ - 70 + 75 ] }, "match_demo_sessions_update_column": {}, "match_demo_sessions_updates": { "_append": [ - 1421 + 1426 ], "_delete_at_path": [ - 1427 + 1432 ], "_delete_elem": [ - 1428 + 1433 ], "_delete_key": [ - 1429 + 1434 ], "_inc": [ - 1430 + 1435 ], "_prepend": [ - 1440 + 1445 ], "_set": [ - 1442 + 1447 ], "where": [ - 1425 + 1430 ], "__typename": [ - 70 + 75 ] }, "match_demo_sessions_var_pop_fields": { @@ -24358,15 +24464,15 @@ export default { 29 ], "__typename": [ - 70 + 75 ] }, "match_demo_sessions_var_pop_order_by": { "watcher_steam_id": [ - 2011 + 2016 ], "__typename": [ - 70 + 75 ] }, "match_demo_sessions_var_samp_fields": { @@ -24374,15 +24480,15 @@ export default { 29 ], "__typename": [ - 70 + 75 ] }, "match_demo_sessions_var_samp_order_by": { "watcher_steam_id": [ - 2011 + 2016 ], "__typename": [ - 70 + 75 ] }, "match_demo_sessions_variance_fields": { @@ -24390,15 +24496,15 @@ export default { 29 ], "__typename": [ - 70 + 75 ] }, "match_demo_sessions_variance_order_by": { "watcher_steam_id": [ - 2011 + 2016 ], "__typename": [ - 70 + 75 ] }, "match_lineup_players": { @@ -24409,115 +24515,115 @@ export default { 3 ], "discord_id": [ - 70 + 75 ], "id": [ - 3818 + 3864 ], "lineup": [ - 1506 + 1511 ], "match_lineup_id": [ - 3818 + 3864 ], "placeholder_name": [ - 70 + 75 ], "player": [ - 2878 + 2915 ], "steam_id": [ - 169 + 174 ], "__typename": [ - 70 + 75 ] }, "match_lineup_players_aggregate": { "aggregate": [ - 1467 + 1472 ], "nodes": [ - 1461 + 1466 ], "__typename": [ - 70 + 75 ] }, "match_lineup_players_aggregate_bool_exp": { "bool_and": [ - 1464 + 1469 ], "bool_or": [ - 1465 + 1470 ], "count": [ - 1466 + 1471 ], "__typename": [ - 70 + 75 ] }, "match_lineup_players_aggregate_bool_exp_bool_and": { "arguments": [ - 1485 + 1490 ], "distinct": [ 3 ], "filter": [ - 1472 + 1477 ], "predicate": [ 4 ], "__typename": [ - 70 + 75 ] }, "match_lineup_players_aggregate_bool_exp_bool_or": { "arguments": [ - 1486 + 1491 ], "distinct": [ 3 ], "filter": [ - 1472 + 1477 ], "predicate": [ 4 ], "__typename": [ - 70 + 75 ] }, "match_lineup_players_aggregate_bool_exp_count": { "arguments": [ - 1484 + 1489 ], "distinct": [ 3 ], "filter": [ - 1472 + 1477 ], "predicate": [ 39 ], "__typename": [ - 70 + 75 ] }, "match_lineup_players_aggregate_fields": { "avg": [ - 1470 + 1475 ], "count": [ 38, { "columns": [ - 1484, + 1489, "[match_lineup_players_select_column!]" ], "distinct": [ @@ -24526,83 +24632,83 @@ export default { } ], "max": [ - 1476 + 1481 ], "min": [ - 1478 + 1483 ], "stddev": [ - 1488 + 1493 ], "stddev_pop": [ - 1490 + 1495 ], "stddev_samp": [ - 1492 + 1497 ], "sum": [ - 1496 + 1501 ], "var_pop": [ - 1500 + 1505 ], "var_samp": [ - 1502 + 1507 ], "variance": [ - 1504 + 1509 ], "__typename": [ - 70 + 75 ] }, "match_lineup_players_aggregate_order_by": { "avg": [ - 1471 + 1476 ], "count": [ - 2011 + 2016 ], "max": [ - 1477 + 1482 ], "min": [ - 1479 + 1484 ], "stddev": [ - 1489 + 1494 ], "stddev_pop": [ - 1491 + 1496 ], "stddev_samp": [ - 1493 + 1498 ], "sum": [ - 1497 + 1502 ], "var_pop": [ - 1501 + 1506 ], "var_samp": [ - 1503 + 1508 ], "variance": [ - 1505 + 1510 ], "__typename": [ - 70 + 75 ] }, "match_lineup_players_arr_rel_insert_input": { "data": [ - 1475 + 1480 ], "on_conflict": [ - 1481 + 1486 ], "__typename": [ - 70 + 75 ] }, "match_lineup_players_avg_fields": { @@ -24610,26 +24716,26 @@ export default { 29 ], "__typename": [ - 70 + 75 ] }, "match_lineup_players_avg_order_by": { "steam_id": [ - 2011 + 2016 ], "__typename": [ - 70 + 75 ] }, "match_lineup_players_bool_exp": { "_and": [ - 1472 + 1477 ], "_not": [ - 1472 + 1477 ], "_or": [ - 1472 + 1477 ], "captain": [ 4 @@ -24638,37 +24744,37 @@ export default { 4 ], "discord_id": [ - 72 + 77 ], "id": [ - 3820 + 3866 ], "lineup": [ - 1515 + 1520 ], "match_lineup_id": [ - 3820 + 3866 ], "placeholder_name": [ - 72 + 77 ], "player": [ - 2882 + 2919 ], "steam_id": [ - 171 + 176 ], "__typename": [ - 70 + 75 ] }, "match_lineup_players_constraint": {}, "match_lineup_players_inc_input": { "steam_id": [ - 169 + 174 ], "__typename": [ - 70 + 75 ] }, "match_lineup_players_insert_input": { @@ -24679,108 +24785,108 @@ export default { 3 ], "discord_id": [ - 70 + 75 ], "id": [ - 3818 + 3864 ], "lineup": [ - 1524 + 1529 ], "match_lineup_id": [ - 3818 + 3864 ], "placeholder_name": [ - 70 + 75 ], "player": [ - 2889 + 2926 ], "steam_id": [ - 169 + 174 ], "__typename": [ - 70 + 75 ] }, "match_lineup_players_max_fields": { "discord_id": [ - 70 + 75 ], "id": [ - 3818 + 3864 ], "match_lineup_id": [ - 3818 + 3864 ], "placeholder_name": [ - 70 + 75 ], "steam_id": [ - 169 + 174 ], "__typename": [ - 70 + 75 ] }, "match_lineup_players_max_order_by": { "discord_id": [ - 2011 + 2016 ], "id": [ - 2011 + 2016 ], "match_lineup_id": [ - 2011 + 2016 ], "placeholder_name": [ - 2011 + 2016 ], "steam_id": [ - 2011 + 2016 ], "__typename": [ - 70 + 75 ] }, "match_lineup_players_min_fields": { "discord_id": [ - 70 + 75 ], "id": [ - 3818 + 3864 ], "match_lineup_id": [ - 3818 + 3864 ], "placeholder_name": [ - 70 + 75 ], "steam_id": [ - 169 + 174 ], "__typename": [ - 70 + 75 ] }, "match_lineup_players_min_order_by": { "discord_id": [ - 2011 + 2016 ], "id": [ - 2011 + 2016 ], "match_lineup_id": [ - 2011 + 2016 ], "placeholder_name": [ - 2011 + 2016 ], "steam_id": [ - 2011 + 2016 ], "__typename": [ - 70 + 75 ] }, "match_lineup_players_mutation_response": { @@ -24788,64 +24894,64 @@ export default { 38 ], "returning": [ - 1461 + 1466 ], "__typename": [ - 70 + 75 ] }, "match_lineup_players_on_conflict": { "constraint": [ - 1473 + 1478 ], "update_columns": [ - 1498 + 1503 ], "where": [ - 1472 + 1477 ], "__typename": [ - 70 + 75 ] }, "match_lineup_players_order_by": { "captain": [ - 2011 + 2016 ], "checked_in": [ - 2011 + 2016 ], "discord_id": [ - 2011 + 2016 ], "id": [ - 2011 + 2016 ], "lineup": [ - 1526 + 1531 ], "match_lineup_id": [ - 2011 + 2016 ], "placeholder_name": [ - 2011 + 2016 ], "player": [ - 2891 + 2928 ], "steam_id": [ - 2011 + 2016 ], "__typename": [ - 70 + 75 ] }, "match_lineup_players_pk_columns_input": { "id": [ - 3818 + 3864 ], "__typename": [ - 70 + 75 ] }, "match_lineup_players_select_column": {}, @@ -24859,22 +24965,22 @@ export default { 3 ], "discord_id": [ - 70 + 75 ], "id": [ - 3818 + 3864 ], "match_lineup_id": [ - 3818 + 3864 ], "placeholder_name": [ - 70 + 75 ], "steam_id": [ - 169 + 174 ], "__typename": [ - 70 + 75 ] }, "match_lineup_players_stddev_fields": { @@ -24882,15 +24988,15 @@ export default { 29 ], "__typename": [ - 70 + 75 ] }, "match_lineup_players_stddev_order_by": { "steam_id": [ - 2011 + 2016 ], "__typename": [ - 70 + 75 ] }, "match_lineup_players_stddev_pop_fields": { @@ -24898,15 +25004,15 @@ export default { 29 ], "__typename": [ - 70 + 75 ] }, "match_lineup_players_stddev_pop_order_by": { "steam_id": [ - 2011 + 2016 ], "__typename": [ - 70 + 75 ] }, "match_lineup_players_stddev_samp_fields": { @@ -24914,26 +25020,26 @@ export default { 29 ], "__typename": [ - 70 + 75 ] }, "match_lineup_players_stddev_samp_order_by": { "steam_id": [ - 2011 + 2016 ], "__typename": [ - 70 + 75 ] }, "match_lineup_players_stream_cursor_input": { "initial_value": [ - 1495 + 1500 ], "ordering": [ - 224 + 229 ], "__typename": [ - 70 + 75 ] }, "match_lineup_players_stream_cursor_value_input": { @@ -24944,53 +25050,53 @@ export default { 3 ], "discord_id": [ - 70 + 75 ], "id": [ - 3818 + 3864 ], "match_lineup_id": [ - 3818 + 3864 ], "placeholder_name": [ - 70 + 75 ], "steam_id": [ - 169 + 174 ], "__typename": [ - 70 + 75 ] }, "match_lineup_players_sum_fields": { "steam_id": [ - 169 + 174 ], "__typename": [ - 70 + 75 ] }, "match_lineup_players_sum_order_by": { "steam_id": [ - 2011 + 2016 ], "__typename": [ - 70 + 75 ] }, "match_lineup_players_update_column": {}, "match_lineup_players_updates": { "_inc": [ - 1474 + 1479 ], "_set": [ - 1487 + 1492 ], "where": [ - 1472 + 1477 ], "__typename": [ - 70 + 75 ] }, "match_lineup_players_var_pop_fields": { @@ -24998,15 +25104,15 @@ export default { 29 ], "__typename": [ - 70 + 75 ] }, "match_lineup_players_var_pop_order_by": { "steam_id": [ - 2011 + 2016 ], "__typename": [ - 70 + 75 ] }, "match_lineup_players_var_samp_fields": { @@ -25014,15 +25120,15 @@ export default { 29 ], "__typename": [ - 70 + 75 ] }, "match_lineup_players_var_samp_order_by": { "steam_id": [ - 2011 + 2016 ], "__typename": [ - 70 + 75 ] }, "match_lineup_players_variance_fields": { @@ -25030,15 +25136,15 @@ export default { 29 ], "__typename": [ - 70 + 75 ] }, "match_lineup_players_variance_order_by": { "steam_id": [ - 2011 + 2016 ], "__typename": [ - 70 + 75 ] }, "match_lineups": { @@ -25052,16 +25158,16 @@ export default { 3 ], "captain": [ - 3839 + 3885 ], "coach": [ - 2878 + 2915 ], "coach_steam_id": [ - 169 + 174 ], "id": [ - 3818 + 3864 ], "is_on_lineup": [ 3 @@ -25076,10 +25182,10 @@ export default { 3 ], "lineup_players": [ - 1461, + 1466, { "distinct_on": [ - 1484, + 1489, "[match_lineup_players_select_column!]" ], "limit": [ @@ -25089,19 +25195,19 @@ export default { 38 ], "order_by": [ - 1482, + 1487, "[match_lineup_players_order_by!]" ], "where": [ - 1472 + 1477 ] } ], "lineup_players_aggregate": [ - 1462, + 1467, { "distinct_on": [ - 1484, + 1489, "[match_lineup_players_select_column!]" ], "limit": [ @@ -25111,25 +25217,25 @@ export default { 38 ], "order_by": [ - 1482, + 1487, "[match_lineup_players_order_by!]" ], "where": [ - 1472 + 1477 ] } ], "match": [ - 1826 + 1831 ], "match_id": [ - 3818 + 3864 ], "match_veto_picks": [ - 1640, + 1645, { "distinct_on": [ - 1658, + 1663, "[match_map_veto_picks_select_column!]" ], "limit": [ @@ -25139,19 +25245,19 @@ export default { 38 ], "order_by": [ - 1656, + 1661, "[match_map_veto_picks_order_by!]" ], "where": [ - 1647 + 1652 ] } ], "match_veto_picks_aggregate": [ - 1641, + 1646, { "distinct_on": [ - 1658, + 1663, "[match_map_veto_picks_select_column!]" ], "limit": [ @@ -25161,75 +25267,75 @@ export default { 38 ], "order_by": [ - 1656, + 1661, "[match_map_veto_picks_order_by!]" ], "where": [ - 1647 + 1652 ] } ], "name": [ - 70 + 75 ], "team": [ - 3378 + 3424 ], "team_id": [ - 3818 + 3864 ], "team_name": [ - 70 + 75 ], "__typename": [ - 70 + 75 ] }, "match_lineups_aggregate": { "aggregate": [ - 1510 + 1515 ], "nodes": [ - 1506 + 1511 ], "__typename": [ - 70 + 75 ] }, "match_lineups_aggregate_bool_exp": { "count": [ - 1509 + 1514 ], "__typename": [ - 70 + 75 ] }, "match_lineups_aggregate_bool_exp_count": { "arguments": [ - 1528 + 1533 ], "distinct": [ 3 ], "filter": [ - 1515 + 1520 ], "predicate": [ 39 ], "__typename": [ - 70 + 75 ] }, "match_lineups_aggregate_fields": { "avg": [ - 1513 + 1518 ], "count": [ 38, { "columns": [ - 1528, + 1533, "[match_lineups_select_column!]" ], "distinct": [ @@ -25238,83 +25344,83 @@ export default { } ], "max": [ - 1519 + 1524 ], "min": [ - 1521 + 1526 ], "stddev": [ - 1530 + 1535 ], "stddev_pop": [ - 1532 + 1537 ], "stddev_samp": [ - 1534 + 1539 ], "sum": [ - 1538 + 1543 ], "var_pop": [ - 1542 + 1547 ], "var_samp": [ - 1544 + 1549 ], "variance": [ - 1546 + 1551 ], "__typename": [ - 70 + 75 ] }, "match_lineups_aggregate_order_by": { "avg": [ - 1514 + 1519 ], "count": [ - 2011 + 2016 ], "max": [ - 1520 + 1525 ], "min": [ - 1522 + 1527 ], "stddev": [ - 1531 + 1536 ], "stddev_pop": [ - 1533 + 1538 ], "stddev_samp": [ - 1535 + 1540 ], "sum": [ - 1539 + 1544 ], "var_pop": [ - 1543 + 1548 ], "var_samp": [ - 1545 + 1550 ], "variance": [ - 1547 + 1552 ], "__typename": [ - 70 + 75 ] }, "match_lineups_arr_rel_insert_input": { "data": [ - 1518 + 1523 ], "on_conflict": [ - 1525 + 1530 ], "__typename": [ - 70 + 75 ] }, "match_lineups_avg_fields": { @@ -25322,26 +25428,26 @@ export default { 29 ], "__typename": [ - 70 + 75 ] }, "match_lineups_avg_order_by": { "coach_steam_id": [ - 2011 + 2016 ], "__typename": [ - 70 + 75 ] }, "match_lineups_bool_exp": { "_and": [ - 1515 + 1520 ], "_not": [ - 1515 + 1520 ], "_or": [ - 1515 + 1520 ], "can_pick_map_veto": [ 4 @@ -25353,16 +25459,16 @@ export default { 4 ], "captain": [ - 3843 + 3889 ], "coach": [ - 2882 + 2919 ], "coach_steam_id": [ - 171 + 176 ], "id": [ - 3820 + 3866 ], "is_on_lineup": [ 4 @@ -25377,170 +25483,170 @@ export default { 4 ], "lineup_players": [ - 1472 + 1477 ], "lineup_players_aggregate": [ - 1463 + 1468 ], "match": [ - 1835 + 1840 ], "match_id": [ - 3820 + 3866 ], "match_veto_picks": [ - 1647 + 1652 ], "match_veto_picks_aggregate": [ - 1642 + 1647 ], "name": [ - 72 + 77 ], "team": [ - 3387 + 3433 ], "team_id": [ - 3820 + 3866 ], "team_name": [ - 72 + 77 ], "__typename": [ - 70 + 75 ] }, "match_lineups_constraint": {}, "match_lineups_inc_input": { "coach_steam_id": [ - 169 + 174 ], "__typename": [ - 70 + 75 ] }, "match_lineups_insert_input": { "captain": [ - 3849 + 3895 ], "coach": [ - 2889 + 2926 ], "coach_steam_id": [ - 169 + 174 ], "id": [ - 3818 + 3864 ], "lineup_players": [ - 1469 + 1474 ], "match": [ - 1844 + 1849 ], "match_id": [ - 3818 + 3864 ], "match_veto_picks": [ - 1646 + 1651 ], "team": [ - 3396 + 3442 ], "team_id": [ - 3818 + 3864 ], "team_name": [ - 70 + 75 ], "__typename": [ - 70 + 75 ] }, "match_lineups_max_fields": { "coach_steam_id": [ - 169 + 174 ], "id": [ - 3818 + 3864 ], "match_id": [ - 3818 + 3864 ], "name": [ - 70 + 75 ], "team_id": [ - 3818 + 3864 ], "team_name": [ - 70 + 75 ], "__typename": [ - 70 + 75 ] }, "match_lineups_max_order_by": { "coach_steam_id": [ - 2011 + 2016 ], "id": [ - 2011 + 2016 ], "match_id": [ - 2011 + 2016 ], "team_id": [ - 2011 + 2016 ], "team_name": [ - 2011 + 2016 ], "__typename": [ - 70 + 75 ] }, "match_lineups_min_fields": { "coach_steam_id": [ - 169 + 174 ], "id": [ - 3818 + 3864 ], "match_id": [ - 3818 + 3864 ], "name": [ - 70 + 75 ], "team_id": [ - 3818 + 3864 ], "team_name": [ - 70 + 75 ], "__typename": [ - 70 + 75 ] }, "match_lineups_min_order_by": { "coach_steam_id": [ - 2011 + 2016 ], "id": [ - 2011 + 2016 ], "match_id": [ - 2011 + 2016 ], "team_id": [ - 2011 + 2016 ], "team_name": [ - 2011 + 2016 ], "__typename": [ - 70 + 75 ] }, "match_lineups_mutation_response": { @@ -25548,126 +25654,126 @@ export default { 38 ], "returning": [ - 1506 + 1511 ], "__typename": [ - 70 + 75 ] }, "match_lineups_obj_rel_insert_input": { "data": [ - 1518 + 1523 ], "on_conflict": [ - 1525 + 1530 ], "__typename": [ - 70 + 75 ] }, "match_lineups_on_conflict": { "constraint": [ - 1516 + 1521 ], "update_columns": [ - 1540 + 1545 ], "where": [ - 1515 + 1520 ], "__typename": [ - 70 + 75 ] }, "match_lineups_order_by": { "can_pick_map_veto": [ - 2011 + 2016 ], "can_pick_region_veto": [ - 2011 + 2016 ], "can_update_lineup": [ - 2011 + 2016 ], "captain": [ - 3850 + 3896 ], "coach": [ - 2891 + 2928 ], "coach_steam_id": [ - 2011 + 2016 ], "id": [ - 2011 + 2016 ], "is_on_lineup": [ - 2011 + 2016 ], "is_picking_map_veto": [ - 2011 + 2016 ], "is_picking_region_veto": [ - 2011 + 2016 ], "is_ready": [ - 2011 + 2016 ], "lineup_players_aggregate": [ - 1468 + 1473 ], "match": [ - 1846 + 1851 ], "match_id": [ - 2011 + 2016 ], "match_veto_picks_aggregate": [ - 1645 + 1650 ], "name": [ - 2011 + 2016 ], "team": [ - 3398 + 3444 ], "team_id": [ - 2011 + 2016 ], "team_name": [ - 2011 + 2016 ], "__typename": [ - 70 + 75 ] }, "match_lineups_pk_columns_input": { "id": [ - 3818 + 3864 ], "__typename": [ - 70 + 75 ] }, "match_lineups_select_column": {}, "match_lineups_set_input": { "coach_steam_id": [ - 169 + 174 ], "id": [ - 3818 + 3864 ], "match_id": [ - 3818 + 3864 ], "team_id": [ - 3818 + 3864 ], "team_name": [ - 70 + 75 ], "__typename": [ - 70 + 75 ] }, "match_lineups_stddev_fields": { @@ -25675,15 +25781,15 @@ export default { 29 ], "__typename": [ - 70 + 75 ] }, "match_lineups_stddev_order_by": { "coach_steam_id": [ - 2011 + 2016 ], "__typename": [ - 70 + 75 ] }, "match_lineups_stddev_pop_fields": { @@ -25691,15 +25797,15 @@ export default { 29 ], "__typename": [ - 70 + 75 ] }, "match_lineups_stddev_pop_order_by": { "coach_steam_id": [ - 2011 + 2016 ], "__typename": [ - 70 + 75 ] }, "match_lineups_stddev_samp_fields": { @@ -25707,77 +25813,77 @@ export default { 29 ], "__typename": [ - 70 + 75 ] }, "match_lineups_stddev_samp_order_by": { "coach_steam_id": [ - 2011 + 2016 ], "__typename": [ - 70 + 75 ] }, "match_lineups_stream_cursor_input": { "initial_value": [ - 1537 + 1542 ], "ordering": [ - 224 + 229 ], "__typename": [ - 70 + 75 ] }, "match_lineups_stream_cursor_value_input": { "coach_steam_id": [ - 169 + 174 ], "id": [ - 3818 + 3864 ], "match_id": [ - 3818 + 3864 ], "team_id": [ - 3818 + 3864 ], "team_name": [ - 70 + 75 ], "__typename": [ - 70 + 75 ] }, "match_lineups_sum_fields": { "coach_steam_id": [ - 169 + 174 ], "__typename": [ - 70 + 75 ] }, "match_lineups_sum_order_by": { "coach_steam_id": [ - 2011 + 2016 ], "__typename": [ - 70 + 75 ] }, "match_lineups_update_column": {}, "match_lineups_updates": { "_inc": [ - 1517 + 1522 ], "_set": [ - 1529 + 1534 ], "where": [ - 1515 + 1520 ], "__typename": [ - 70 + 75 ] }, "match_lineups_var_pop_fields": { @@ -25785,15 +25891,15 @@ export default { 29 ], "__typename": [ - 70 + 75 ] }, "match_lineups_var_pop_order_by": { "coach_steam_id": [ - 2011 + 2016 ], "__typename": [ - 70 + 75 ] }, "match_lineups_var_samp_fields": { @@ -25801,15 +25907,15 @@ export default { 29 ], "__typename": [ - 70 + 75 ] }, "match_lineups_var_samp_order_by": { "coach_steam_id": [ - 2011 + 2016 ], "__typename": [ - 70 + 75 ] }, "match_lineups_variance_fields": { @@ -25817,31 +25923,31 @@ export default { 29 ], "__typename": [ - 70 + 75 ] }, "match_lineups_variance_order_by": { "coach_steam_id": [ - 2011 + 2016 ], "__typename": [ - 70 + 75 ] }, "match_map_demos": { "bombs": [ - 1235, + 1240, { "path": [ - 70 + 75 ] } ], "clip_render_jobs": [ - 174, + 179, { "distinct_on": [ - 202, + 207, "[clip_render_jobs_select_column!]" ], "limit": [ @@ -25851,19 +25957,19 @@ export default { 38 ], "order_by": [ - 199, + 204, "[clip_render_jobs_order_by!]" ], "where": [ - 186 + 191 ] } ], "clip_render_jobs_aggregate": [ - 175, + 180, { "distinct_on": [ - 202, + 207, "[clip_render_jobs_select_column!]" ], "limit": [ @@ -25873,25 +25979,25 @@ export default { 38 ], "order_by": [ - 199, + 204, "[clip_render_jobs_order_by!]" ], "where": [ - 186 + 191 ] } ], "created_at": [ - 3421 + 3467 ], "cs2_build": [ - 70 + 75 ], "demo_sessions": [ - 1415, + 1420, { "distinct_on": [ - 1441, + 1446, "[match_demo_sessions_select_column!]" ], "limit": [ @@ -25901,19 +26007,19 @@ export default { 38 ], "order_by": [ - 1438, + 1443, "[match_demo_sessions_order_by!]" ], "where": [ - 1425 + 1430 ] } ], "demo_sessions_aggregate": [ - 1416, + 1421, { "distinct_on": [ - 1441, + 1446, "[match_demo_sessions_select_column!]" ], "limit": [ @@ -25923,48 +26029,48 @@ export default { 38 ], "order_by": [ - 1438, + 1443, "[match_demo_sessions_order_by!]" ], "where": [ - 1425 + 1430 ] } ], "download_url": [ - 70 + 75 ], "duration_seconds": [ 29 ], "file": [ - 70 + 75 ], "geometry_validated": [ 3 ], "id": [ - 3818 + 3864 ], "kills": [ - 1235, + 1240, { "path": [ - 70 + 75 ] } ], "map_name": [ - 70 + 75 ], "match": [ - 1826 + 1831 ], "match_clips": [ - 1373, + 1378, { "distinct_on": [ - 1395, + 1400, "[match_clips_select_column!]" ], "limit": [ @@ -25974,19 +26080,19 @@ export default { 38 ], "order_by": [ - 1393, + 1398, "[match_clips_order_by!]" ], "where": [ - 1382 + 1387 ] } ], "match_clips_aggregate": [ - 1374, + 1379, { "distinct_on": [ - 1395, + 1400, "[match_clips_select_column!]" ], "limit": [ @@ -25996,48 +26102,48 @@ export default { 38 ], "order_by": [ - 1393, + 1398, "[match_clips_order_by!]" ], "where": [ - 1382 + 1387 ] } ], "match_id": [ - 3818 + 3864 ], "match_map": [ - 1664 + 1669 ], "match_map_id": [ - 3818 + 3864 ], "metadata_parsed_at": [ - 3421 + 3467 ], "playback_file": [ - 70 + 75 ], "playback_size": [ 38 ], "playback_url": [ - 70 + 75 ], "players": [ - 1235, + 1240, { "path": [ - 70 + 75 ] } ], "round_ticks": [ - 1235, + 1240, { "path": [ - 70 + 75 ] } ], @@ -26051,97 +26157,97 @@ export default { 38 ], "workshop_id": [ - 70 + 75 ], "__typename": [ - 70 + 75 ] }, "match_map_demos_aggregate": { "aggregate": [ - 1554 + 1559 ], "nodes": [ - 1548 + 1553 ], "__typename": [ - 70 + 75 ] }, "match_map_demos_aggregate_bool_exp": { "bool_and": [ - 1551 + 1556 ], "bool_or": [ - 1552 + 1557 ], "count": [ - 1553 + 1558 ], "__typename": [ - 70 + 75 ] }, "match_map_demos_aggregate_bool_exp_bool_and": { "arguments": [ - 1578 + 1583 ], "distinct": [ 3 ], "filter": [ - 1560 + 1565 ], "predicate": [ 4 ], "__typename": [ - 70 + 75 ] }, "match_map_demos_aggregate_bool_exp_bool_or": { "arguments": [ - 1579 + 1584 ], "distinct": [ 3 ], "filter": [ - 1560 + 1565 ], "predicate": [ 4 ], "__typename": [ - 70 + 75 ] }, "match_map_demos_aggregate_bool_exp_count": { "arguments": [ - 1577 + 1582 ], "distinct": [ 3 ], "filter": [ - 1560 + 1565 ], "predicate": [ 39 ], "__typename": [ - 70 + 75 ] }, "match_map_demos_aggregate_fields": { "avg": [ - 1558 + 1563 ], "count": [ 38, { "columns": [ - 1577, + 1582, "[match_map_demos_select_column!]" ], "distinct": [ @@ -26150,100 +26256,100 @@ export default { } ], "max": [ - 1567 + 1572 ], "min": [ - 1569 + 1574 ], "stddev": [ - 1581 + 1586 ], "stddev_pop": [ - 1583 + 1588 ], "stddev_samp": [ - 1585 + 1590 ], "sum": [ - 1589 + 1594 ], "var_pop": [ - 1593 + 1598 ], "var_samp": [ - 1595 + 1600 ], "variance": [ - 1597 + 1602 ], "__typename": [ - 70 + 75 ] }, "match_map_demos_aggregate_order_by": { "avg": [ - 1559 + 1564 ], "count": [ - 2011 + 2016 ], "max": [ - 1568 + 1573 ], "min": [ - 1570 + 1575 ], "stddev": [ - 1582 + 1587 ], "stddev_pop": [ - 1584 + 1589 ], "stddev_samp": [ - 1586 + 1591 ], "sum": [ - 1590 + 1595 ], "var_pop": [ - 1594 + 1599 ], "var_samp": [ - 1596 + 1601 ], "variance": [ - 1598 + 1603 ], "__typename": [ - 70 + 75 ] }, "match_map_demos_append_input": { "bombs": [ - 1235 + 1240 ], "kills": [ - 1235 + 1240 ], "players": [ - 1235 + 1240 ], "round_ticks": [ - 1235 + 1240 ], "__typename": [ - 70 + 75 ] }, "match_map_demos_arr_rel_insert_input": { "data": [ - 1566 + 1571 ], "on_conflict": [ - 1573 + 1578 ], "__typename": [ - 70 + 75 ] }, "match_map_demos_avg_fields": { @@ -26263,116 +26369,116 @@ export default { 29 ], "__typename": [ - 70 + 75 ] }, "match_map_demos_avg_order_by": { "duration_seconds": [ - 2011 + 2016 ], "playback_size": [ - 2011 + 2016 ], "size": [ - 2011 + 2016 ], "tick_rate": [ - 2011 + 2016 ], "total_ticks": [ - 2011 + 2016 ], "__typename": [ - 70 + 75 ] }, "match_map_demos_bool_exp": { "_and": [ - 1560 + 1565 ], "_not": [ - 1560 + 1565 ], "_or": [ - 1560 + 1565 ], "bombs": [ - 1237 + 1242 ], "clip_render_jobs": [ - 186 + 191 ], "clip_render_jobs_aggregate": [ - 176 + 181 ], "created_at": [ - 3422 + 3468 ], "cs2_build": [ - 72 + 77 ], "demo_sessions": [ - 1425 + 1430 ], "demo_sessions_aggregate": [ - 1417 + 1422 ], "download_url": [ - 72 + 77 ], "duration_seconds": [ 30 ], "file": [ - 72 + 77 ], "geometry_validated": [ 4 ], "id": [ - 3820 + 3866 ], "kills": [ - 1237 + 1242 ], "map_name": [ - 72 + 77 ], "match": [ - 1835 + 1840 ], "match_clips": [ - 1382 + 1387 ], "match_clips_aggregate": [ - 1375 + 1380 ], "match_id": [ - 3820 + 3866 ], "match_map": [ - 1673 + 1678 ], "match_map_id": [ - 3820 + 3866 ], "metadata_parsed_at": [ - 3422 + 3468 ], "playback_file": [ - 72 + 77 ], "playback_size": [ 39 ], "playback_url": [ - 72 + 77 ], "players": [ - 1237 + 1242 ], "round_ticks": [ - 1237 + 1242 ], "size": [ 39 @@ -26384,28 +26490,28 @@ export default { 39 ], "workshop_id": [ - 72 + 77 ], "__typename": [ - 70 + 75 ] }, "match_map_demos_constraint": {}, "match_map_demos_delete_at_path_input": { "bombs": [ - 70 + 75 ], "kills": [ - 70 + 75 ], "players": [ - 70 + 75 ], "round_ticks": [ - 70 + 75 ], "__typename": [ - 70 + 75 ] }, "match_map_demos_delete_elem_input": { @@ -26422,24 +26528,24 @@ export default { 38 ], "__typename": [ - 70 + 75 ] }, "match_map_demos_delete_key_input": { "bombs": [ - 70 + 75 ], "kills": [ - 70 + 75 ], "players": [ - 70 + 75 ], "round_ticks": [ - 70 + 75 ], "__typename": [ - 70 + 75 ] }, "match_map_demos_inc_input": { @@ -26456,69 +26562,69 @@ export default { 38 ], "__typename": [ - 70 + 75 ] }, "match_map_demos_insert_input": { "bombs": [ - 1235 + 1240 ], "clip_render_jobs": [ - 183 + 188 ], "created_at": [ - 3421 + 3467 ], "cs2_build": [ - 70 + 75 ], "demo_sessions": [ - 1422 + 1427 ], "file": [ - 70 + 75 ], "geometry_validated": [ 3 ], "id": [ - 3818 + 3864 ], "kills": [ - 1235 + 1240 ], "map_name": [ - 70 + 75 ], "match": [ - 1844 + 1849 ], "match_clips": [ - 1379 + 1384 ], "match_id": [ - 3818 + 3864 ], "match_map": [ - 1682 + 1687 ], "match_map_id": [ - 3818 + 3864 ], "metadata_parsed_at": [ - 3421 + 3467 ], "playback_file": [ - 70 + 75 ], "playback_size": [ 38 ], "players": [ - 1235 + 1240 ], "round_ticks": [ - 1235 + 1240 ], "size": [ 38 @@ -26530,51 +26636,51 @@ export default { 38 ], "workshop_id": [ - 70 + 75 ], "__typename": [ - 70 + 75 ] }, "match_map_demos_max_fields": { "created_at": [ - 3421 + 3467 ], "cs2_build": [ - 70 + 75 ], "download_url": [ - 70 + 75 ], "duration_seconds": [ 29 ], "file": [ - 70 + 75 ], "id": [ - 3818 + 3864 ], "map_name": [ - 70 + 75 ], "match_id": [ - 3818 + 3864 ], "match_map_id": [ - 3818 + 3864 ], "metadata_parsed_at": [ - 3421 + 3467 ], "playback_file": [ - 70 + 75 ], "playback_size": [ 38 ], "playback_url": [ - 70 + 75 ], "size": [ 38 @@ -26586,101 +26692,101 @@ export default { 38 ], "workshop_id": [ - 70 + 75 ], "__typename": [ - 70 + 75 ] }, "match_map_demos_max_order_by": { "created_at": [ - 2011 + 2016 ], "cs2_build": [ - 2011 + 2016 ], "duration_seconds": [ - 2011 + 2016 ], "file": [ - 2011 + 2016 ], "id": [ - 2011 + 2016 ], "map_name": [ - 2011 + 2016 ], "match_id": [ - 2011 + 2016 ], "match_map_id": [ - 2011 + 2016 ], "metadata_parsed_at": [ - 2011 + 2016 ], "playback_file": [ - 2011 + 2016 ], "playback_size": [ - 2011 + 2016 ], "size": [ - 2011 + 2016 ], "tick_rate": [ - 2011 + 2016 ], "total_ticks": [ - 2011 + 2016 ], "workshop_id": [ - 2011 + 2016 ], "__typename": [ - 70 + 75 ] }, "match_map_demos_min_fields": { "created_at": [ - 3421 + 3467 ], "cs2_build": [ - 70 + 75 ], "download_url": [ - 70 + 75 ], "duration_seconds": [ 29 ], "file": [ - 70 + 75 ], "id": [ - 3818 + 3864 ], "map_name": [ - 70 + 75 ], "match_id": [ - 3818 + 3864 ], "match_map_id": [ - 3818 + 3864 ], "metadata_parsed_at": [ - 3421 + 3467 ], "playback_file": [ - 70 + 75 ], "playback_size": [ 38 ], "playback_url": [ - 70 + 75 ], "size": [ 38 @@ -26692,60 +26798,60 @@ export default { 38 ], "workshop_id": [ - 70 + 75 ], "__typename": [ - 70 + 75 ] }, "match_map_demos_min_order_by": { "created_at": [ - 2011 + 2016 ], "cs2_build": [ - 2011 + 2016 ], "duration_seconds": [ - 2011 + 2016 ], "file": [ - 2011 + 2016 ], "id": [ - 2011 + 2016 ], "map_name": [ - 2011 + 2016 ], "match_id": [ - 2011 + 2016 ], "match_map_id": [ - 2011 + 2016 ], "metadata_parsed_at": [ - 2011 + 2016 ], "playback_file": [ - 2011 + 2016 ], "playback_size": [ - 2011 + 2016 ], "size": [ - 2011 + 2016 ], "tick_rate": [ - 2011 + 2016 ], "total_ticks": [ - 2011 + 2016 ], "workshop_id": [ - 2011 + 2016 ], "__typename": [ - 70 + 75 ] }, "match_map_demos_mutation_response": { @@ -26753,146 +26859,146 @@ export default { 38 ], "returning": [ - 1548 + 1553 ], "__typename": [ - 70 + 75 ] }, "match_map_demos_obj_rel_insert_input": { "data": [ - 1566 + 1571 ], "on_conflict": [ - 1573 + 1578 ], "__typename": [ - 70 + 75 ] }, "match_map_demos_on_conflict": { "constraint": [ - 1561 + 1566 ], "update_columns": [ - 1591 + 1596 ], "where": [ - 1560 + 1565 ], "__typename": [ - 70 + 75 ] }, "match_map_demos_order_by": { "bombs": [ - 2011 + 2016 ], "clip_render_jobs_aggregate": [ - 181 + 186 ], "created_at": [ - 2011 + 2016 ], "cs2_build": [ - 2011 + 2016 ], "demo_sessions_aggregate": [ - 1420 + 1425 ], "download_url": [ - 2011 + 2016 ], "duration_seconds": [ - 2011 + 2016 ], "file": [ - 2011 + 2016 ], "geometry_validated": [ - 2011 + 2016 ], "id": [ - 2011 + 2016 ], "kills": [ - 2011 + 2016 ], "map_name": [ - 2011 + 2016 ], "match": [ - 1846 + 1851 ], "match_clips_aggregate": [ - 1378 + 1383 ], "match_id": [ - 2011 + 2016 ], "match_map": [ - 1684 + 1689 ], "match_map_id": [ - 2011 + 2016 ], "metadata_parsed_at": [ - 2011 + 2016 ], "playback_file": [ - 2011 + 2016 ], "playback_size": [ - 2011 + 2016 ], "playback_url": [ - 2011 + 2016 ], "players": [ - 2011 + 2016 ], "round_ticks": [ - 2011 + 2016 ], "size": [ - 2011 + 2016 ], "tick_rate": [ - 2011 + 2016 ], "total_ticks": [ - 2011 + 2016 ], "workshop_id": [ - 2011 + 2016 ], "__typename": [ - 70 + 75 ] }, "match_map_demos_pk_columns_input": { "id": [ - 3818 + 3864 ], "__typename": [ - 70 + 75 ] }, "match_map_demos_prepend_input": { "bombs": [ - 1235 + 1240 ], "kills": [ - 1235 + 1240 ], "players": [ - 1235 + 1240 ], "round_ticks": [ - 1235 + 1240 ], "__typename": [ - 70 + 75 ] }, "match_map_demos_select_column": {}, @@ -26900,49 +27006,49 @@ export default { "match_map_demos_select_column_match_map_demos_aggregate_bool_exp_bool_or_arguments_columns": {}, "match_map_demos_set_input": { "bombs": [ - 1235 + 1240 ], "created_at": [ - 3421 + 3467 ], "cs2_build": [ - 70 + 75 ], "file": [ - 70 + 75 ], "geometry_validated": [ 3 ], "id": [ - 3818 + 3864 ], "kills": [ - 1235 + 1240 ], "map_name": [ - 70 + 75 ], "match_id": [ - 3818 + 3864 ], "match_map_id": [ - 3818 + 3864 ], "metadata_parsed_at": [ - 3421 + 3467 ], "playback_file": [ - 70 + 75 ], "playback_size": [ 38 ], "players": [ - 1235 + 1240 ], "round_ticks": [ - 1235 + 1240 ], "size": [ 38 @@ -26954,10 +27060,10 @@ export default { 38 ], "workshop_id": [ - 70 + 75 ], "__typename": [ - 70 + 75 ] }, "match_map_demos_stddev_fields": { @@ -26977,27 +27083,27 @@ export default { 29 ], "__typename": [ - 70 + 75 ] }, "match_map_demos_stddev_order_by": { "duration_seconds": [ - 2011 + 2016 ], "playback_size": [ - 2011 + 2016 ], "size": [ - 2011 + 2016 ], "tick_rate": [ - 2011 + 2016 ], "total_ticks": [ - 2011 + 2016 ], "__typename": [ - 70 + 75 ] }, "match_map_demos_stddev_pop_fields": { @@ -27017,27 +27123,27 @@ export default { 29 ], "__typename": [ - 70 + 75 ] }, "match_map_demos_stddev_pop_order_by": { "duration_seconds": [ - 2011 + 2016 ], "playback_size": [ - 2011 + 2016 ], "size": [ - 2011 + 2016 ], "tick_rate": [ - 2011 + 2016 ], "total_ticks": [ - 2011 + 2016 ], "__typename": [ - 70 + 75 ] }, "match_map_demos_stddev_samp_fields": { @@ -27057,88 +27163,88 @@ export default { 29 ], "__typename": [ - 70 + 75 ] }, "match_map_demos_stddev_samp_order_by": { "duration_seconds": [ - 2011 + 2016 ], "playback_size": [ - 2011 + 2016 ], "size": [ - 2011 + 2016 ], "tick_rate": [ - 2011 + 2016 ], "total_ticks": [ - 2011 + 2016 ], "__typename": [ - 70 + 75 ] }, "match_map_demos_stream_cursor_input": { "initial_value": [ - 1588 + 1593 ], "ordering": [ - 224 + 229 ], "__typename": [ - 70 + 75 ] }, "match_map_demos_stream_cursor_value_input": { "bombs": [ - 1235 + 1240 ], "created_at": [ - 3421 + 3467 ], "cs2_build": [ - 70 + 75 ], "duration_seconds": [ 29 ], "file": [ - 70 + 75 ], "geometry_validated": [ 3 ], "id": [ - 3818 + 3864 ], "kills": [ - 1235 + 1240 ], "map_name": [ - 70 + 75 ], "match_id": [ - 3818 + 3864 ], "match_map_id": [ - 3818 + 3864 ], "metadata_parsed_at": [ - 3421 + 3467 ], "playback_file": [ - 70 + 75 ], "playback_size": [ 38 ], "players": [ - 1235 + 1240 ], "round_ticks": [ - 1235 + 1240 ], "size": [ 38 @@ -27150,10 +27256,10 @@ export default { 38 ], "workshop_id": [ - 70 + 75 ], "__typename": [ - 70 + 75 ] }, "match_map_demos_sum_fields": { @@ -27173,57 +27279,57 @@ export default { 38 ], "__typename": [ - 70 + 75 ] }, "match_map_demos_sum_order_by": { "duration_seconds": [ - 2011 + 2016 ], "playback_size": [ - 2011 + 2016 ], "size": [ - 2011 + 2016 ], "tick_rate": [ - 2011 + 2016 ], "total_ticks": [ - 2011 + 2016 ], "__typename": [ - 70 + 75 ] }, "match_map_demos_update_column": {}, "match_map_demos_updates": { "_append": [ - 1556 + 1561 ], "_delete_at_path": [ - 1562 + 1567 ], "_delete_elem": [ - 1563 + 1568 ], "_delete_key": [ - 1564 + 1569 ], "_inc": [ - 1565 + 1570 ], "_prepend": [ - 1576 + 1581 ], "_set": [ - 1580 + 1585 ], "where": [ - 1560 + 1565 ], "__typename": [ - 70 + 75 ] }, "match_map_demos_var_pop_fields": { @@ -27243,27 +27349,27 @@ export default { 29 ], "__typename": [ - 70 + 75 ] }, "match_map_demos_var_pop_order_by": { "duration_seconds": [ - 2011 + 2016 ], "playback_size": [ - 2011 + 2016 ], "size": [ - 2011 + 2016 ], "tick_rate": [ - 2011 + 2016 ], "total_ticks": [ - 2011 + 2016 ], "__typename": [ - 70 + 75 ] }, "match_map_demos_var_samp_fields": { @@ -27283,27 +27389,27 @@ export default { 29 ], "__typename": [ - 70 + 75 ] }, "match_map_demos_var_samp_order_by": { "duration_seconds": [ - 2011 + 2016 ], "playback_size": [ - 2011 + 2016 ], "size": [ - 2011 + 2016 ], "tick_rate": [ - 2011 + 2016 ], "total_ticks": [ - 2011 + 2016 ], "__typename": [ - 70 + 75 ] }, "match_map_demos_variance_fields": { @@ -27323,35 +27429,35 @@ export default { 29 ], "__typename": [ - 70 + 75 ] }, "match_map_demos_variance_order_by": { "duration_seconds": [ - 2011 + 2016 ], "playback_size": [ - 2011 + 2016 ], "size": [ - 2011 + 2016 ], "tick_rate": [ - 2011 + 2016 ], "total_ticks": [ - 2011 + 2016 ], "__typename": [ - 70 + 75 ] }, "match_map_rounds": { "assists": [ - 2149, + 2154, { "distinct_on": [ - 2172, + 2177, "[player_assists_select_column!]" ], "limit": [ @@ -27361,19 +27467,19 @@ export default { 38 ], "order_by": [ - 2170, + 2175, "[player_assists_order_by!]" ], "where": [ - 2160 + 2165 ] } ], "assists_aggregate": [ - 2150, + 2155, { "distinct_on": [ - 2172, + 2177, "[player_assists_select_column!]" ], "limit": [ @@ -27383,34 +27489,34 @@ export default { 38 ], "order_by": [ - 2170, + 2175, "[player_assists_order_by!]" ], "where": [ - 2160 + 2165 ] } ], "backup_file": [ - 70 + 75 ], "created_at": [ - 3421 + 3467 ], "deleted_at": [ - 3421 + 3467 ], "has_backup_file": [ 3 ], "id": [ - 3818 + 3864 ], "kills": [ - 2366, + 2371, { "distinct_on": [ - 2430, + 2435, "[player_kills_select_column!]" ], "limit": [ @@ -27420,19 +27526,19 @@ export default { 38 ], "order_by": [ - 2428, + 2433, "[player_kills_order_by!]" ], "where": [ - 2377 + 2382 ] } ], "kills_aggregate": [ - 2367, + 2372, { "distinct_on": [ - 2430, + 2435, "[player_kills_select_column!]" ], "limit": [ @@ -27442,11 +27548,11 @@ export default { 38 ], "order_by": [ - 2428, + 2433, "[player_kills_order_by!]" ], "where": [ - 2377 + 2382 ] } ], @@ -27457,7 +27563,7 @@ export default { 38 ], "lineup_1_side": [ - 886 + 891 ], "lineup_1_timeouts_available": [ 38 @@ -27469,78 +27575,78 @@ export default { 38 ], "lineup_2_side": [ - 886 + 891 ], "lineup_2_timeouts_available": [ 38 ], "match_map": [ - 1664 + 1669 ], "match_map_id": [ - 3818 + 3864 ], "round": [ 38 ], "time": [ - 3421 + 3467 ], "winning_reason": [ - 1069 + 1074 ], "winning_side": [ - 70 + 75 ], "__typename": [ - 70 + 75 ] }, "match_map_rounds_aggregate": { "aggregate": [ - 1603 + 1608 ], "nodes": [ - 1599 + 1604 ], "__typename": [ - 70 + 75 ] }, "match_map_rounds_aggregate_bool_exp": { "count": [ - 1602 + 1607 ], "__typename": [ - 70 + 75 ] }, "match_map_rounds_aggregate_bool_exp_count": { "arguments": [ - 1620 + 1625 ], "distinct": [ 3 ], "filter": [ - 1608 + 1613 ], "predicate": [ 39 ], "__typename": [ - 70 + 75 ] }, "match_map_rounds_aggregate_fields": { "avg": [ - 1606 + 1611 ], "count": [ 38, { "columns": [ - 1620, + 1625, "[match_map_rounds_select_column!]" ], "distinct": [ @@ -27549,83 +27655,83 @@ export default { } ], "max": [ - 1612 + 1617 ], "min": [ - 1614 + 1619 ], "stddev": [ - 1622 + 1627 ], "stddev_pop": [ - 1624 + 1629 ], "stddev_samp": [ - 1626 + 1631 ], "sum": [ - 1630 + 1635 ], "var_pop": [ - 1634 + 1639 ], "var_samp": [ - 1636 + 1641 ], "variance": [ - 1638 + 1643 ], "__typename": [ - 70 + 75 ] }, "match_map_rounds_aggregate_order_by": { "avg": [ - 1607 + 1612 ], "count": [ - 2011 + 2016 ], "max": [ - 1613 + 1618 ], "min": [ - 1615 + 1620 ], "stddev": [ - 1623 + 1628 ], "stddev_pop": [ - 1625 + 1630 ], "stddev_samp": [ - 1627 + 1632 ], "sum": [ - 1631 + 1636 ], "var_pop": [ - 1635 + 1640 ], "var_samp": [ - 1637 + 1642 ], "variance": [ - 1639 + 1644 ], "__typename": [ - 70 + 75 ] }, "match_map_rounds_arr_rel_insert_input": { "data": [ - 1611 + 1616 ], "on_conflict": [ - 1617 + 1622 ], "__typename": [ - 70 + 75 ] }, "match_map_rounds_avg_fields": { @@ -27651,71 +27757,71 @@ export default { 29 ], "__typename": [ - 70 + 75 ] }, "match_map_rounds_avg_order_by": { "lineup_1_money": [ - 2011 + 2016 ], "lineup_1_score": [ - 2011 + 2016 ], "lineup_1_timeouts_available": [ - 2011 + 2016 ], "lineup_2_money": [ - 2011 + 2016 ], "lineup_2_score": [ - 2011 + 2016 ], "lineup_2_timeouts_available": [ - 2011 + 2016 ], "round": [ - 2011 + 2016 ], "__typename": [ - 70 + 75 ] }, "match_map_rounds_bool_exp": { "_and": [ - 1608 + 1613 ], "_not": [ - 1608 + 1613 ], "_or": [ - 1608 + 1613 ], "assists": [ - 2160 + 2165 ], "assists_aggregate": [ - 2151 + 2156 ], "backup_file": [ - 72 + 77 ], "created_at": [ - 3422 + 3468 ], "deleted_at": [ - 3422 + 3468 ], "has_backup_file": [ 4 ], "id": [ - 3820 + 3866 ], "kills": [ - 2377 + 2382 ], "kills_aggregate": [ - 2368 + 2373 ], "lineup_1_money": [ 39 @@ -27724,7 +27830,7 @@ export default { 39 ], "lineup_1_side": [ - 887 + 892 ], "lineup_1_timeouts_available": [ 39 @@ -27736,31 +27842,31 @@ export default { 39 ], "lineup_2_side": [ - 887 + 892 ], "lineup_2_timeouts_available": [ 39 ], "match_map": [ - 1673 + 1678 ], "match_map_id": [ - 3820 + 3866 ], "round": [ 39 ], "time": [ - 3422 + 3468 ], "winning_reason": [ - 1070 + 1075 ], "winning_side": [ - 72 + 77 ], "__typename": [ - 70 + 75 ] }, "match_map_rounds_constraint": {}, @@ -27787,27 +27893,27 @@ export default { 38 ], "__typename": [ - 70 + 75 ] }, "match_map_rounds_insert_input": { "assists": [ - 2157 + 2162 ], "backup_file": [ - 70 + 75 ], "created_at": [ - 3421 + 3467 ], "deleted_at": [ - 3421 + 3467 ], "id": [ - 3818 + 3864 ], "kills": [ - 2374 + 2379 ], "lineup_1_money": [ 38 @@ -27816,7 +27922,7 @@ export default { 38 ], "lineup_1_side": [ - 886 + 891 ], "lineup_1_timeouts_available": [ 38 @@ -27828,45 +27934,45 @@ export default { 38 ], "lineup_2_side": [ - 886 + 891 ], "lineup_2_timeouts_available": [ 38 ], "match_map": [ - 1682 + 1687 ], "match_map_id": [ - 3818 + 3864 ], "round": [ 38 ], "time": [ - 3421 + 3467 ], "winning_reason": [ - 1069 + 1074 ], "winning_side": [ - 70 + 75 ], "__typename": [ - 70 + 75 ] }, "match_map_rounds_max_fields": { "backup_file": [ - 70 + 75 ], "created_at": [ - 3421 + 3467 ], "deleted_at": [ - 3421 + 3467 ], "id": [ - 3818 + 3864 ], "lineup_1_money": [ 38 @@ -27887,80 +27993,80 @@ export default { 38 ], "match_map_id": [ - 3818 + 3864 ], "round": [ 38 ], "time": [ - 3421 + 3467 ], "winning_side": [ - 70 + 75 ], "__typename": [ - 70 + 75 ] }, "match_map_rounds_max_order_by": { "backup_file": [ - 2011 + 2016 ], "created_at": [ - 2011 + 2016 ], "deleted_at": [ - 2011 + 2016 ], "id": [ - 2011 + 2016 ], "lineup_1_money": [ - 2011 + 2016 ], "lineup_1_score": [ - 2011 + 2016 ], "lineup_1_timeouts_available": [ - 2011 + 2016 ], "lineup_2_money": [ - 2011 + 2016 ], "lineup_2_score": [ - 2011 + 2016 ], "lineup_2_timeouts_available": [ - 2011 + 2016 ], "match_map_id": [ - 2011 + 2016 ], "round": [ - 2011 + 2016 ], "time": [ - 2011 + 2016 ], "winning_side": [ - 2011 + 2016 ], "__typename": [ - 70 + 75 ] }, "match_map_rounds_min_fields": { "backup_file": [ - 70 + 75 ], "created_at": [ - 3421 + 3467 ], "deleted_at": [ - 3421 + 3467 ], "id": [ - 3818 + 3864 ], "lineup_1_money": [ 38 @@ -27981,66 +28087,66 @@ export default { 38 ], "match_map_id": [ - 3818 + 3864 ], "round": [ 38 ], "time": [ - 3421 + 3467 ], "winning_side": [ - 70 + 75 ], "__typename": [ - 70 + 75 ] }, "match_map_rounds_min_order_by": { "backup_file": [ - 2011 + 2016 ], "created_at": [ - 2011 + 2016 ], "deleted_at": [ - 2011 + 2016 ], "id": [ - 2011 + 2016 ], "lineup_1_money": [ - 2011 + 2016 ], "lineup_1_score": [ - 2011 + 2016 ], "lineup_1_timeouts_available": [ - 2011 + 2016 ], "lineup_2_money": [ - 2011 + 2016 ], "lineup_2_score": [ - 2011 + 2016 ], "lineup_2_timeouts_available": [ - 2011 + 2016 ], "match_map_id": [ - 2011 + 2016 ], "round": [ - 2011 + 2016 ], "time": [ - 2011 + 2016 ], "winning_side": [ - 2011 + 2016 ], "__typename": [ - 70 + 75 ] }, "match_map_rounds_mutation_response": { @@ -28048,115 +28154,115 @@ export default { 38 ], "returning": [ - 1599 + 1604 ], "__typename": [ - 70 + 75 ] }, "match_map_rounds_on_conflict": { "constraint": [ - 1609 + 1614 ], "update_columns": [ - 1632 + 1637 ], "where": [ - 1608 + 1613 ], "__typename": [ - 70 + 75 ] }, "match_map_rounds_order_by": { "assists_aggregate": [ - 2156 + 2161 ], "backup_file": [ - 2011 + 2016 ], "created_at": [ - 2011 + 2016 ], "deleted_at": [ - 2011 + 2016 ], "has_backup_file": [ - 2011 + 2016 ], "id": [ - 2011 + 2016 ], "kills_aggregate": [ - 2373 + 2378 ], "lineup_1_money": [ - 2011 + 2016 ], "lineup_1_score": [ - 2011 + 2016 ], "lineup_1_side": [ - 2011 + 2016 ], "lineup_1_timeouts_available": [ - 2011 + 2016 ], "lineup_2_money": [ - 2011 + 2016 ], "lineup_2_score": [ - 2011 + 2016 ], "lineup_2_side": [ - 2011 + 2016 ], "lineup_2_timeouts_available": [ - 2011 + 2016 ], "match_map": [ - 1684 + 1689 ], "match_map_id": [ - 2011 + 2016 ], "round": [ - 2011 + 2016 ], "time": [ - 2011 + 2016 ], "winning_reason": [ - 2011 + 2016 ], "winning_side": [ - 2011 + 2016 ], "__typename": [ - 70 + 75 ] }, "match_map_rounds_pk_columns_input": { "id": [ - 3818 + 3864 ], "__typename": [ - 70 + 75 ] }, "match_map_rounds_select_column": {}, "match_map_rounds_set_input": { "backup_file": [ - 70 + 75 ], "created_at": [ - 3421 + 3467 ], "deleted_at": [ - 3421 + 3467 ], "id": [ - 3818 + 3864 ], "lineup_1_money": [ 38 @@ -28165,7 +28271,7 @@ export default { 38 ], "lineup_1_side": [ - 886 + 891 ], "lineup_1_timeouts_available": [ 38 @@ -28177,28 +28283,28 @@ export default { 38 ], "lineup_2_side": [ - 886 + 891 ], "lineup_2_timeouts_available": [ 38 ], "match_map_id": [ - 3818 + 3864 ], "round": [ 38 ], "time": [ - 3421 + 3467 ], "winning_reason": [ - 1069 + 1074 ], "winning_side": [ - 70 + 75 ], "__typename": [ - 70 + 75 ] }, "match_map_rounds_stddev_fields": { @@ -28224,33 +28330,33 @@ export default { 29 ], "__typename": [ - 70 + 75 ] }, "match_map_rounds_stddev_order_by": { "lineup_1_money": [ - 2011 + 2016 ], "lineup_1_score": [ - 2011 + 2016 ], "lineup_1_timeouts_available": [ - 2011 + 2016 ], "lineup_2_money": [ - 2011 + 2016 ], "lineup_2_score": [ - 2011 + 2016 ], "lineup_2_timeouts_available": [ - 2011 + 2016 ], "round": [ - 2011 + 2016 ], "__typename": [ - 70 + 75 ] }, "match_map_rounds_stddev_pop_fields": { @@ -28276,33 +28382,33 @@ export default { 29 ], "__typename": [ - 70 + 75 ] }, "match_map_rounds_stddev_pop_order_by": { "lineup_1_money": [ - 2011 + 2016 ], "lineup_1_score": [ - 2011 + 2016 ], "lineup_1_timeouts_available": [ - 2011 + 2016 ], "lineup_2_money": [ - 2011 + 2016 ], "lineup_2_score": [ - 2011 + 2016 ], "lineup_2_timeouts_available": [ - 2011 + 2016 ], "round": [ - 2011 + 2016 ], "__typename": [ - 70 + 75 ] }, "match_map_rounds_stddev_samp_fields": { @@ -28328,58 +28434,58 @@ export default { 29 ], "__typename": [ - 70 + 75 ] }, "match_map_rounds_stddev_samp_order_by": { "lineup_1_money": [ - 2011 + 2016 ], "lineup_1_score": [ - 2011 + 2016 ], "lineup_1_timeouts_available": [ - 2011 + 2016 ], "lineup_2_money": [ - 2011 + 2016 ], "lineup_2_score": [ - 2011 + 2016 ], "lineup_2_timeouts_available": [ - 2011 + 2016 ], "round": [ - 2011 + 2016 ], "__typename": [ - 70 + 75 ] }, "match_map_rounds_stream_cursor_input": { "initial_value": [ - 1629 + 1634 ], "ordering": [ - 224 + 229 ], "__typename": [ - 70 + 75 ] }, "match_map_rounds_stream_cursor_value_input": { "backup_file": [ - 70 + 75 ], "created_at": [ - 3421 + 3467 ], "deleted_at": [ - 3421 + 3467 ], "id": [ - 3818 + 3864 ], "lineup_1_money": [ 38 @@ -28388,7 +28494,7 @@ export default { 38 ], "lineup_1_side": [ - 886 + 891 ], "lineup_1_timeouts_available": [ 38 @@ -28400,28 +28506,28 @@ export default { 38 ], "lineup_2_side": [ - 886 + 891 ], "lineup_2_timeouts_available": [ 38 ], "match_map_id": [ - 3818 + 3864 ], "round": [ 38 ], "time": [ - 3421 + 3467 ], "winning_reason": [ - 1069 + 1074 ], "winning_side": [ - 70 + 75 ], "__typename": [ - 70 + 75 ] }, "match_map_rounds_sum_fields": { @@ -28447,48 +28553,48 @@ export default { 38 ], "__typename": [ - 70 + 75 ] }, "match_map_rounds_sum_order_by": { "lineup_1_money": [ - 2011 + 2016 ], "lineup_1_score": [ - 2011 + 2016 ], "lineup_1_timeouts_available": [ - 2011 + 2016 ], "lineup_2_money": [ - 2011 + 2016 ], "lineup_2_score": [ - 2011 + 2016 ], "lineup_2_timeouts_available": [ - 2011 + 2016 ], "round": [ - 2011 + 2016 ], "__typename": [ - 70 + 75 ] }, "match_map_rounds_update_column": {}, "match_map_rounds_updates": { "_inc": [ - 1610 + 1615 ], "_set": [ - 1621 + 1626 ], "where": [ - 1608 + 1613 ], "__typename": [ - 70 + 75 ] }, "match_map_rounds_var_pop_fields": { @@ -28514,33 +28620,33 @@ export default { 29 ], "__typename": [ - 70 + 75 ] }, "match_map_rounds_var_pop_order_by": { "lineup_1_money": [ - 2011 + 2016 ], "lineup_1_score": [ - 2011 + 2016 ], "lineup_1_timeouts_available": [ - 2011 + 2016 ], "lineup_2_money": [ - 2011 + 2016 ], "lineup_2_score": [ - 2011 + 2016 ], "lineup_2_timeouts_available": [ - 2011 + 2016 ], "round": [ - 2011 + 2016 ], "__typename": [ - 70 + 75 ] }, "match_map_rounds_var_samp_fields": { @@ -28566,33 +28672,33 @@ export default { 29 ], "__typename": [ - 70 + 75 ] }, "match_map_rounds_var_samp_order_by": { "lineup_1_money": [ - 2011 + 2016 ], "lineup_1_score": [ - 2011 + 2016 ], "lineup_1_timeouts_available": [ - 2011 + 2016 ], "lineup_2_money": [ - 2011 + 2016 ], "lineup_2_score": [ - 2011 + 2016 ], "lineup_2_timeouts_available": [ - 2011 + 2016 ], "round": [ - 2011 + 2016 ], "__typename": [ - 70 + 75 ] }, "match_map_rounds_variance_fields": { @@ -28618,104 +28724,104 @@ export default { 29 ], "__typename": [ - 70 + 75 ] }, "match_map_rounds_variance_order_by": { "lineup_1_money": [ - 2011 + 2016 ], "lineup_1_score": [ - 2011 + 2016 ], "lineup_1_timeouts_available": [ - 2011 + 2016 ], "lineup_2_money": [ - 2011 + 2016 ], "lineup_2_score": [ - 2011 + 2016 ], "lineup_2_timeouts_available": [ - 2011 + 2016 ], "round": [ - 2011 + 2016 ], "__typename": [ - 70 + 75 ] }, "match_map_veto_picks": { "created_at": [ - 3421 + 3467 ], "id": [ - 3818 + 3864 ], "map": [ - 1344 + 1349 ], "map_id": [ - 3818 + 3864 ], "match": [ - 1826 + 1831 ], "match_id": [ - 3818 + 3864 ], "match_lineup": [ - 1506 + 1511 ], "match_lineup_id": [ - 3818 + 3864 ], "side": [ - 70 + 75 ], "type": [ - 1049 + 1054 ], "__typename": [ - 70 + 75 ] }, "match_map_veto_picks_aggregate": { "aggregate": [ - 1644 + 1649 ], "nodes": [ - 1640 + 1645 ], "__typename": [ - 70 + 75 ] }, "match_map_veto_picks_aggregate_bool_exp": { "count": [ - 1643 + 1648 ], "__typename": [ - 70 + 75 ] }, "match_map_veto_picks_aggregate_bool_exp_count": { "arguments": [ - 1658 + 1663 ], "distinct": [ 3 ], "filter": [ - 1647 + 1652 ], "predicate": [ 39 ], "__typename": [ - 70 + 75 ] }, "match_map_veto_picks_aggregate_fields": { @@ -28723,7 +28829,7 @@ export default { 38, { "columns": [ - 1658, + 1663, "[match_map_veto_picks_select_column!]" ], "distinct": [ @@ -28732,210 +28838,210 @@ export default { } ], "max": [ - 1650 + 1655 ], "min": [ - 1652 + 1657 ], "__typename": [ - 70 + 75 ] }, "match_map_veto_picks_aggregate_order_by": { "count": [ - 2011 + 2016 ], "max": [ - 1651 + 1656 ], "min": [ - 1653 + 1658 ], "__typename": [ - 70 + 75 ] }, "match_map_veto_picks_arr_rel_insert_input": { "data": [ - 1649 + 1654 ], "on_conflict": [ - 1655 + 1660 ], "__typename": [ - 70 + 75 ] }, "match_map_veto_picks_bool_exp": { "_and": [ - 1647 + 1652 ], "_not": [ - 1647 + 1652 ], "_or": [ - 1647 + 1652 ], "created_at": [ - 3422 + 3468 ], "id": [ - 3820 + 3866 ], "map": [ - 1353 + 1358 ], "map_id": [ - 3820 + 3866 ], "match": [ - 1835 + 1840 ], "match_id": [ - 3820 + 3866 ], "match_lineup": [ - 1515 + 1520 ], "match_lineup_id": [ - 3820 + 3866 ], "side": [ - 72 + 77 ], "type": [ - 1050 + 1055 ], "__typename": [ - 70 + 75 ] }, "match_map_veto_picks_constraint": {}, "match_map_veto_picks_insert_input": { "created_at": [ - 3421 + 3467 ], "id": [ - 3818 + 3864 ], "map": [ - 1361 + 1366 ], "map_id": [ - 3818 + 3864 ], "match": [ - 1844 + 1849 ], "match_id": [ - 3818 + 3864 ], "match_lineup": [ - 1524 + 1529 ], "match_lineup_id": [ - 3818 + 3864 ], "side": [ - 70 + 75 ], "type": [ - 1049 + 1054 ], "__typename": [ - 70 + 75 ] }, "match_map_veto_picks_max_fields": { "created_at": [ - 3421 + 3467 ], "id": [ - 3818 + 3864 ], "map_id": [ - 3818 + 3864 ], "match_id": [ - 3818 + 3864 ], "match_lineup_id": [ - 3818 + 3864 ], "side": [ - 70 + 75 ], "__typename": [ - 70 + 75 ] }, "match_map_veto_picks_max_order_by": { "created_at": [ - 2011 + 2016 ], "id": [ - 2011 + 2016 ], "map_id": [ - 2011 + 2016 ], "match_id": [ - 2011 + 2016 ], "match_lineup_id": [ - 2011 + 2016 ], "side": [ - 2011 + 2016 ], "__typename": [ - 70 + 75 ] }, "match_map_veto_picks_min_fields": { "created_at": [ - 3421 + 3467 ], "id": [ - 3818 + 3864 ], "map_id": [ - 3818 + 3864 ], "match_id": [ - 3818 + 3864 ], "match_lineup_id": [ - 3818 + 3864 ], "side": [ - 70 + 75 ], "__typename": [ - 70 + 75 ] }, "match_map_veto_picks_min_order_by": { "created_at": [ - 2011 + 2016 ], "id": [ - 2011 + 2016 ], "map_id": [ - 2011 + 2016 ], "match_id": [ - 2011 + 2016 ], "match_lineup_id": [ - 2011 + 2016 ], "side": [ - 2011 + 2016 ], "__typename": [ - 70 + 75 ] }, "match_map_veto_picks_mutation_response": { @@ -28943,143 +29049,143 @@ export default { 38 ], "returning": [ - 1640 + 1645 ], "__typename": [ - 70 + 75 ] }, "match_map_veto_picks_on_conflict": { "constraint": [ - 1648 + 1653 ], "update_columns": [ - 1662 + 1667 ], "where": [ - 1647 + 1652 ], "__typename": [ - 70 + 75 ] }, "match_map_veto_picks_order_by": { "created_at": [ - 2011 + 2016 ], "id": [ - 2011 + 2016 ], "map": [ - 1363 + 1368 ], "map_id": [ - 2011 + 2016 ], "match": [ - 1846 + 1851 ], "match_id": [ - 2011 + 2016 ], "match_lineup": [ - 1526 + 1531 ], "match_lineup_id": [ - 2011 + 2016 ], "side": [ - 2011 + 2016 ], "type": [ - 2011 + 2016 ], "__typename": [ - 70 + 75 ] }, "match_map_veto_picks_pk_columns_input": { "id": [ - 3818 + 3864 ], "__typename": [ - 70 + 75 ] }, "match_map_veto_picks_select_column": {}, "match_map_veto_picks_set_input": { "created_at": [ - 3421 + 3467 ], "id": [ - 3818 + 3864 ], "map_id": [ - 3818 + 3864 ], "match_id": [ - 3818 + 3864 ], "match_lineup_id": [ - 3818 + 3864 ], "side": [ - 70 + 75 ], "type": [ - 1049 + 1054 ], "__typename": [ - 70 + 75 ] }, "match_map_veto_picks_stream_cursor_input": { "initial_value": [ - 1661 + 1666 ], "ordering": [ - 224 + 229 ], "__typename": [ - 70 + 75 ] }, "match_map_veto_picks_stream_cursor_value_input": { "created_at": [ - 3421 + 3467 ], "id": [ - 3818 + 3864 ], "map_id": [ - 3818 + 3864 ], "match_id": [ - 3818 + 3864 ], "match_lineup_id": [ - 3818 + 3864 ], "side": [ - 70 + 75 ], "type": [ - 1049 + 1054 ], "__typename": [ - 70 + 75 ] }, "match_map_veto_picks_update_column": {}, "match_map_veto_picks_updates": { "_set": [ - 1659 + 1664 ], "where": [ - 1647 + 1652 ], "__typename": [ - 70 + 75 ] }, "match_maps": { @@ -29087,13 +29193,13 @@ export default { 38 ], "created_at": [ - 3421 + 3467 ], "demos": [ - 1548, + 1553, { "distinct_on": [ - 1577, + 1582, "[match_map_demos_select_column!]" ], "limit": [ @@ -29103,19 +29209,19 @@ export default { 38 ], "order_by": [ - 1574, + 1579, "[match_map_demos_order_by!]" ], "where": [ - 1560 + 1565 ] } ], "demos_aggregate": [ - 1549, + 1554, { "distinct_on": [ - 1577, + 1582, "[match_map_demos_select_column!]" ], "limit": [ @@ -29125,31 +29231,31 @@ export default { 38 ], "order_by": [ - 1574, + 1579, "[match_map_demos_order_by!]" ], "where": [ - 1560 + 1565 ] } ], "demos_download_url": [ - 70 + 75 ], "demos_total_size": [ 38 ], "e_match_map_status": [ - 657 + 662 ], "ended_at": [ - 3421 + 3467 ], "flashes": [ - 2321, + 2326, { "distinct_on": [ - 2344, + 2349, "[player_flashes_select_column!]" ], "limit": [ @@ -29159,19 +29265,19 @@ export default { 38 ], "order_by": [ - 2342, + 2347, "[player_flashes_order_by!]" ], "where": [ - 2332 + 2337 ] } ], "flashes_aggregate": [ - 2322, + 2327, { "distinct_on": [ - 2344, + 2349, "[player_flashes_select_column!]" ], "limit": [ @@ -29181,28 +29287,28 @@ export default { 38 ], "order_by": [ - 2342, + 2347, "[player_flashes_order_by!]" ], "where": [ - 2332 + 2337 ] } ], "id": [ - 3818 + 3864 ], "is_current_map": [ 3 ], "latest_clip_at": [ - 3421 + 3467 ], "lineup_1_score": [ 38 ], "lineup_1_side": [ - 886 + 891 ], "lineup_1_timeouts_available": [ 38 @@ -29211,25 +29317,25 @@ export default { 38 ], "lineup_2_side": [ - 886 + 891 ], "lineup_2_timeouts_available": [ 38 ], "map": [ - 1344 + 1349 ], "map_id": [ - 3818 + 3864 ], "match": [ - 1826 + 1831 ], "match_clips": [ - 1373, + 1378, { "distinct_on": [ - 1395, + 1400, "[match_clips_select_column!]" ], "limit": [ @@ -29239,19 +29345,19 @@ export default { 38 ], "order_by": [ - 1393, + 1398, "[match_clips_order_by!]" ], "where": [ - 1382 + 1387 ] } ], "match_clips_aggregate": [ - 1374, + 1379, { "distinct_on": [ - 1395, + 1400, "[match_clips_select_column!]" ], "limit": [ @@ -29261,22 +29367,22 @@ export default { 38 ], "order_by": [ - 1393, + 1398, "[match_clips_order_by!]" ], "where": [ - 1382 + 1387 ] } ], "match_id": [ - 3818 + 3864 ], "objectives": [ - 2567, + 2572, { "distinct_on": [ - 2588, + 2593, "[player_objectives_select_column!]" ], "limit": [ @@ -29286,19 +29392,19 @@ export default { 38 ], "order_by": [ - 2586, + 2591, "[player_objectives_order_by!]" ], "where": [ - 2576 + 2581 ] } ], "objectives_aggregate": [ - 2568, + 2573, { "distinct_on": [ - 2588, + 2593, "[player_objectives_select_column!]" ], "limit": [ @@ -29308,11 +29414,11 @@ export default { 38 ], "order_by": [ - 2586, + 2591, "[player_objectives_order_by!]" ], "where": [ - 2576 + 2581 ] } ], @@ -29320,10 +29426,10 @@ export default { 38 ], "player_assists": [ - 2149, + 2154, { "distinct_on": [ - 2172, + 2177, "[player_assists_select_column!]" ], "limit": [ @@ -29333,19 +29439,19 @@ export default { 38 ], "order_by": [ - 2170, + 2175, "[player_assists_order_by!]" ], "where": [ - 2160 + 2165 ] } ], "player_assists_aggregate": [ - 2150, + 2155, { "distinct_on": [ - 2172, + 2177, "[player_assists_select_column!]" ], "limit": [ @@ -29355,19 +29461,19 @@ export default { 38 ], "order_by": [ - 2170, + 2175, "[player_assists_order_by!]" ], "where": [ - 2160 + 2165 ] } ], "player_damages": [ - 2212, + 2217, { "distinct_on": [ - 2233, + 2238, "[player_damages_select_column!]" ], "limit": [ @@ -29377,19 +29483,19 @@ export default { 38 ], "order_by": [ - 2231, + 2236, "[player_damages_order_by!]" ], "where": [ - 2221 + 2226 ] } ], "player_damages_aggregate": [ - 2213, + 2218, { "distinct_on": [ - 2233, + 2238, "[player_damages_select_column!]" ], "limit": [ @@ -29399,19 +29505,19 @@ export default { 38 ], "order_by": [ - 2231, + 2236, "[player_damages_order_by!]" ], "where": [ - 2221 + 2226 ] } ], "player_kills": [ - 2366, + 2371, { "distinct_on": [ - 2430, + 2435, "[player_kills_select_column!]" ], "limit": [ @@ -29421,19 +29527,19 @@ export default { 38 ], "order_by": [ - 2428, + 2433, "[player_kills_order_by!]" ], "where": [ - 2377 + 2382 ] } ], "player_kills_aggregate": [ - 2367, + 2372, { "distinct_on": [ - 2430, + 2435, "[player_kills_select_column!]" ], "limit": [ @@ -29443,19 +29549,19 @@ export default { 38 ], "order_by": [ - 2428, + 2433, "[player_kills_order_by!]" ], "where": [ - 2377 + 2382 ] } ], "player_unused_utilities": [ - 2763, + 2800, { "distinct_on": [ - 2784, + 2821, "[player_unused_utility_select_column!]" ], "limit": [ @@ -29465,19 +29571,19 @@ export default { 38 ], "order_by": [ - 2782, + 2819, "[player_unused_utility_order_by!]" ], "where": [ - 2772 + 2809 ] } ], "player_unused_utilities_aggregate": [ - 2764, + 2801, { "distinct_on": [ - 2784, + 2821, "[player_unused_utility_select_column!]" ], "limit": [ @@ -29487,11 +29593,11 @@ export default { 38 ], "order_by": [ - 2782, + 2819, "[player_unused_utility_order_by!]" ], "where": [ - 2772 + 2809 ] } ], @@ -29499,13 +29605,13 @@ export default { 38 ], "public_latest_clip_at": [ - 3421 + 3467 ], "rounds": [ - 1599, + 1604, { "distinct_on": [ - 1620, + 1625, "[match_map_rounds_select_column!]" ], "limit": [ @@ -29515,19 +29621,19 @@ export default { 38 ], "order_by": [ - 1618, + 1623, "[match_map_rounds_order_by!]" ], "where": [ - 1608 + 1613 ] } ], "rounds_aggregate": [ - 1600, + 1605, { "distinct_on": [ - 1620, + 1625, "[match_map_rounds_select_column!]" ], "limit": [ @@ -29537,25 +29643,25 @@ export default { 38 ], "order_by": [ - 1618, + 1623, "[match_map_rounds_order_by!]" ], "where": [ - 1608 + 1613 ] } ], "started_at": [ - 3421 + 3467 ], "status": [ - 662 + 667 ], "utility": [ - 2804, + 2841, { "distinct_on": [ - 2825, + 2862, "[player_utility_select_column!]" ], "limit": [ @@ -29565,19 +29671,19 @@ export default { 38 ], "order_by": [ - 2823, + 2860, "[player_utility_order_by!]" ], "where": [ - 2813 + 2850 ] } ], "utility_aggregate": [ - 2805, + 2842, { "distinct_on": [ - 2825, + 2862, "[player_utility_select_column!]" ], "limit": [ @@ -29587,19 +29693,19 @@ export default { 38 ], "order_by": [ - 2823, + 2860, "[player_utility_order_by!]" ], "where": [ - 2813 + 2850 ] } ], "vetos": [ - 1640, + 1645, { "distinct_on": [ - 1658, + 1663, "[match_map_veto_picks_select_column!]" ], "limit": [ @@ -29609,19 +29715,19 @@ export default { 38 ], "order_by": [ - 1656, + 1661, "[match_map_veto_picks_order_by!]" ], "where": [ - 1647 + 1652 ] } ], "vetos_aggregate": [ - 1641, + 1646, { "distinct_on": [ - 1658, + 1663, "[match_map_veto_picks_select_column!]" ], "limit": [ @@ -29631,66 +29737,66 @@ export default { 38 ], "order_by": [ - 1656, + 1661, "[match_map_veto_picks_order_by!]" ], "where": [ - 1647 + 1652 ] } ], "winning_lineup_id": [ - 3818 + 3864 ], "__typename": [ - 70 + 75 ] }, "match_maps_aggregate": { "aggregate": [ - 1668 + 1673 ], "nodes": [ - 1664 + 1669 ], "__typename": [ - 70 + 75 ] }, "match_maps_aggregate_bool_exp": { "count": [ - 1667 + 1672 ], "__typename": [ - 70 + 75 ] }, "match_maps_aggregate_bool_exp_count": { "arguments": [ - 1686 + 1691 ], "distinct": [ 3 ], "filter": [ - 1673 + 1678 ], "predicate": [ 39 ], "__typename": [ - 70 + 75 ] }, "match_maps_aggregate_fields": { "avg": [ - 1671 + 1676 ], "count": [ 38, { "columns": [ - 1686, + 1691, "[match_maps_select_column!]" ], "distinct": [ @@ -29699,83 +29805,83 @@ export default { } ], "max": [ - 1677 + 1682 ], "min": [ - 1679 + 1684 ], "stddev": [ - 1688 + 1693 ], "stddev_pop": [ - 1690 + 1695 ], "stddev_samp": [ - 1692 + 1697 ], "sum": [ - 1696 + 1701 ], "var_pop": [ - 1700 + 1705 ], "var_samp": [ - 1702 + 1707 ], "variance": [ - 1704 + 1709 ], "__typename": [ - 70 + 75 ] }, "match_maps_aggregate_order_by": { "avg": [ - 1672 + 1677 ], "count": [ - 2011 + 2016 ], "max": [ - 1678 + 1683 ], "min": [ - 1680 + 1685 ], "stddev": [ - 1689 + 1694 ], "stddev_pop": [ - 1691 + 1696 ], "stddev_samp": [ - 1693 + 1698 ], "sum": [ - 1697 + 1702 ], "var_pop": [ - 1701 + 1706 ], "var_samp": [ - 1703 + 1708 ], "variance": [ - 1705 + 1710 ], "__typename": [ - 70 + 75 ] }, "match_maps_arr_rel_insert_input": { "data": [ - 1676 + 1681 ], "on_conflict": [ - 1683 + 1688 ], "__typename": [ - 70 + 75 ] }, "match_maps_avg_fields": { @@ -29804,83 +29910,83 @@ export default { 29 ], "__typename": [ - 70 + 75 ] }, "match_maps_avg_order_by": { "clips_count": [ - 2011 + 2016 ], "lineup_1_timeouts_available": [ - 2011 + 2016 ], "lineup_2_timeouts_available": [ - 2011 + 2016 ], "order": [ - 2011 + 2016 ], "public_clips_count": [ - 2011 + 2016 ], "__typename": [ - 70 + 75 ] }, "match_maps_bool_exp": { "_and": [ - 1673 + 1678 ], "_not": [ - 1673 + 1678 ], "_or": [ - 1673 + 1678 ], "clips_count": [ 39 ], "created_at": [ - 3422 + 3468 ], "demos": [ - 1560 + 1565 ], "demos_aggregate": [ - 1550 + 1555 ], "demos_download_url": [ - 72 + 77 ], "demos_total_size": [ 39 ], "e_match_map_status": [ - 660 + 665 ], "ended_at": [ - 3422 + 3468 ], "flashes": [ - 2332 + 2337 ], "flashes_aggregate": [ - 2323 + 2328 ], "id": [ - 3820 + 3866 ], "is_current_map": [ 4 ], "latest_clip_at": [ - 3422 + 3468 ], "lineup_1_score": [ 39 ], "lineup_1_side": [ - 887 + 892 ], "lineup_1_timeouts_available": [ 39 @@ -29889,97 +29995,97 @@ export default { 39 ], "lineup_2_side": [ - 887 + 892 ], "lineup_2_timeouts_available": [ 39 ], "map": [ - 1353 + 1358 ], "map_id": [ - 3820 + 3866 ], "match": [ - 1835 + 1840 ], "match_clips": [ - 1382 + 1387 ], "match_clips_aggregate": [ - 1375 + 1380 ], "match_id": [ - 3820 + 3866 ], "objectives": [ - 2576 + 2581 ], "objectives_aggregate": [ - 2569 + 2574 ], "order": [ 39 ], "player_assists": [ - 2160 + 2165 ], "player_assists_aggregate": [ - 2151 + 2156 ], "player_damages": [ - 2221 + 2226 ], "player_damages_aggregate": [ - 2214 + 2219 ], "player_kills": [ - 2377 + 2382 ], "player_kills_aggregate": [ - 2368 + 2373 ], "player_unused_utilities": [ - 2772 + 2809 ], "player_unused_utilities_aggregate": [ - 2765 + 2802 ], "public_clips_count": [ 39 ], "public_latest_clip_at": [ - 3422 + 3468 ], "rounds": [ - 1608 + 1613 ], "rounds_aggregate": [ - 1601 + 1606 ], "started_at": [ - 3422 + 3468 ], "status": [ - 663 + 668 ], "utility": [ - 2813 + 2850 ], "utility_aggregate": [ - 2806 + 2843 ], "vetos": [ - 1647 + 1652 ], "vetos_aggregate": [ - 1642 + 1647 ], "winning_lineup_id": [ - 3820 + 3866 ], "__typename": [ - 70 + 75 ] }, "match_maps_constraint": {}, @@ -30000,7 +30106,7 @@ export default { 38 ], "__typename": [ - 70 + 75 ] }, "match_maps_insert_input": { @@ -30008,97 +30114,97 @@ export default { 38 ], "created_at": [ - 3421 + 3467 ], "demos": [ - 1557 + 1562 ], "e_match_map_status": [ - 668 + 673 ], "ended_at": [ - 3421 + 3467 ], "flashes": [ - 2329 + 2334 ], "id": [ - 3818 + 3864 ], "latest_clip_at": [ - 3421 + 3467 ], "lineup_1_side": [ - 886 + 891 ], "lineup_1_timeouts_available": [ 38 ], "lineup_2_side": [ - 886 + 891 ], "lineup_2_timeouts_available": [ 38 ], "map": [ - 1361 + 1366 ], "map_id": [ - 3818 + 3864 ], "match": [ - 1844 + 1849 ], "match_clips": [ - 1379 + 1384 ], "match_id": [ - 3818 + 3864 ], "objectives": [ - 2573 + 2578 ], "order": [ 38 ], "player_assists": [ - 2157 + 2162 ], "player_damages": [ - 2218 + 2223 ], "player_kills": [ - 2374 + 2379 ], "player_unused_utilities": [ - 2769 + 2806 ], "public_clips_count": [ 38 ], "public_latest_clip_at": [ - 3421 + 3467 ], "rounds": [ - 1605 + 1610 ], "started_at": [ - 3421 + 3467 ], "status": [ - 662 + 667 ], "utility": [ - 2810 + 2847 ], "vetos": [ - 1646 + 1651 ], "winning_lineup_id": [ - 3818 + 3864 ], "__typename": [ - 70 + 75 ] }, "match_maps_max_fields": { @@ -30106,22 +30212,22 @@ export default { 38 ], "created_at": [ - 3421 + 3467 ], "demos_download_url": [ - 70 + 75 ], "demos_total_size": [ 38 ], "ended_at": [ - 3421 + 3467 ], "id": [ - 3818 + 3864 ], "latest_clip_at": [ - 3421 + 3467 ], "lineup_1_score": [ 38 @@ -30136,10 +30242,10 @@ export default { 38 ], "map_id": [ - 3818 + 3864 ], "match_id": [ - 3818 + 3864 ], "order": [ 38 @@ -30148,63 +30254,63 @@ export default { 38 ], "public_latest_clip_at": [ - 3421 + 3467 ], "started_at": [ - 3421 + 3467 ], "winning_lineup_id": [ - 3818 + 3864 ], "__typename": [ - 70 + 75 ] }, "match_maps_max_order_by": { "clips_count": [ - 2011 + 2016 ], "created_at": [ - 2011 + 2016 ], "ended_at": [ - 2011 + 2016 ], "id": [ - 2011 + 2016 ], "latest_clip_at": [ - 2011 + 2016 ], "lineup_1_timeouts_available": [ - 2011 + 2016 ], "lineup_2_timeouts_available": [ - 2011 + 2016 ], "map_id": [ - 2011 + 2016 ], "match_id": [ - 2011 + 2016 ], "order": [ - 2011 + 2016 ], "public_clips_count": [ - 2011 + 2016 ], "public_latest_clip_at": [ - 2011 + 2016 ], "started_at": [ - 2011 + 2016 ], "winning_lineup_id": [ - 2011 + 2016 ], "__typename": [ - 70 + 75 ] }, "match_maps_min_fields": { @@ -30212,22 +30318,22 @@ export default { 38 ], "created_at": [ - 3421 + 3467 ], "demos_download_url": [ - 70 + 75 ], "demos_total_size": [ 38 ], "ended_at": [ - 3421 + 3467 ], "id": [ - 3818 + 3864 ], "latest_clip_at": [ - 3421 + 3467 ], "lineup_1_score": [ 38 @@ -30242,10 +30348,10 @@ export default { 38 ], "map_id": [ - 3818 + 3864 ], "match_id": [ - 3818 + 3864 ], "order": [ 38 @@ -30254,63 +30360,63 @@ export default { 38 ], "public_latest_clip_at": [ - 3421 + 3467 ], "started_at": [ - 3421 + 3467 ], "winning_lineup_id": [ - 3818 + 3864 ], "__typename": [ - 70 + 75 ] }, "match_maps_min_order_by": { "clips_count": [ - 2011 + 2016 ], "created_at": [ - 2011 + 2016 ], "ended_at": [ - 2011 + 2016 ], "id": [ - 2011 + 2016 ], "latest_clip_at": [ - 2011 + 2016 ], "lineup_1_timeouts_available": [ - 2011 + 2016 ], "lineup_2_timeouts_available": [ - 2011 + 2016 ], "map_id": [ - 2011 + 2016 ], "match_id": [ - 2011 + 2016 ], "order": [ - 2011 + 2016 ], "public_clips_count": [ - 2011 + 2016 ], "public_latest_clip_at": [ - 2011 + 2016 ], "started_at": [ - 2011 + 2016 ], "winning_lineup_id": [ - 2011 + 2016 ], "__typename": [ - 70 + 75 ] }, "match_maps_mutation_response": { @@ -30318,156 +30424,156 @@ export default { 38 ], "returning": [ - 1664 + 1669 ], "__typename": [ - 70 + 75 ] }, "match_maps_obj_rel_insert_input": { "data": [ - 1676 + 1681 ], "on_conflict": [ - 1683 + 1688 ], "__typename": [ - 70 + 75 ] }, "match_maps_on_conflict": { "constraint": [ - 1674 + 1679 ], "update_columns": [ - 1698 + 1703 ], "where": [ - 1673 + 1678 ], "__typename": [ - 70 + 75 ] }, "match_maps_order_by": { "clips_count": [ - 2011 + 2016 ], "created_at": [ - 2011 + 2016 ], "demos_aggregate": [ - 1555 + 1560 ], "demos_download_url": [ - 2011 + 2016 ], "demos_total_size": [ - 2011 + 2016 ], "e_match_map_status": [ - 670 + 675 ], "ended_at": [ - 2011 + 2016 ], "flashes_aggregate": [ - 2328 + 2333 ], "id": [ - 2011 + 2016 ], "is_current_map": [ - 2011 + 2016 ], "latest_clip_at": [ - 2011 + 2016 ], "lineup_1_score": [ - 2011 + 2016 ], "lineup_1_side": [ - 2011 + 2016 ], "lineup_1_timeouts_available": [ - 2011 + 2016 ], "lineup_2_score": [ - 2011 + 2016 ], "lineup_2_side": [ - 2011 + 2016 ], "lineup_2_timeouts_available": [ - 2011 + 2016 ], "map": [ - 1363 + 1368 ], "map_id": [ - 2011 + 2016 ], "match": [ - 1846 + 1851 ], "match_clips_aggregate": [ - 1378 + 1383 ], "match_id": [ - 2011 + 2016 ], "objectives_aggregate": [ - 2572 + 2577 ], "order": [ - 2011 + 2016 ], "player_assists_aggregate": [ - 2156 + 2161 ], "player_damages_aggregate": [ - 2217 + 2222 ], "player_kills_aggregate": [ - 2373 + 2378 ], "player_unused_utilities_aggregate": [ - 2768 + 2805 ], "public_clips_count": [ - 2011 + 2016 ], "public_latest_clip_at": [ - 2011 + 2016 ], "rounds_aggregate": [ - 1604 + 1609 ], "started_at": [ - 2011 + 2016 ], "status": [ - 2011 + 2016 ], "utility_aggregate": [ - 2809 + 2846 ], "vetos_aggregate": [ - 1645 + 1650 ], "winning_lineup_id": [ - 2011 + 2016 ], "__typename": [ - 70 + 75 ] }, "match_maps_pk_columns_input": { "id": [ - 3818 + 3864 ], "__typename": [ - 70 + 75 ] }, "match_maps_select_column": {}, @@ -30476,34 +30582,34 @@ export default { 38 ], "created_at": [ - 3421 + 3467 ], "ended_at": [ - 3421 + 3467 ], "id": [ - 3818 + 3864 ], "latest_clip_at": [ - 3421 + 3467 ], "lineup_1_side": [ - 886 + 891 ], "lineup_1_timeouts_available": [ 38 ], "lineup_2_side": [ - 886 + 891 ], "lineup_2_timeouts_available": [ 38 ], "map_id": [ - 3818 + 3864 ], "match_id": [ - 3818 + 3864 ], "order": [ 38 @@ -30512,19 +30618,19 @@ export default { 38 ], "public_latest_clip_at": [ - 3421 + 3467 ], "started_at": [ - 3421 + 3467 ], "status": [ - 662 + 667 ], "winning_lineup_id": [ - 3818 + 3864 ], "__typename": [ - 70 + 75 ] }, "match_maps_stddev_fields": { @@ -30553,27 +30659,27 @@ export default { 29 ], "__typename": [ - 70 + 75 ] }, "match_maps_stddev_order_by": { "clips_count": [ - 2011 + 2016 ], "lineup_1_timeouts_available": [ - 2011 + 2016 ], "lineup_2_timeouts_available": [ - 2011 + 2016 ], "order": [ - 2011 + 2016 ], "public_clips_count": [ - 2011 + 2016 ], "__typename": [ - 70 + 75 ] }, "match_maps_stddev_pop_fields": { @@ -30602,27 +30708,27 @@ export default { 29 ], "__typename": [ - 70 + 75 ] }, "match_maps_stddev_pop_order_by": { "clips_count": [ - 2011 + 2016 ], "lineup_1_timeouts_available": [ - 2011 + 2016 ], "lineup_2_timeouts_available": [ - 2011 + 2016 ], "order": [ - 2011 + 2016 ], "public_clips_count": [ - 2011 + 2016 ], "__typename": [ - 70 + 75 ] }, "match_maps_stddev_samp_fields": { @@ -30651,38 +30757,38 @@ export default { 29 ], "__typename": [ - 70 + 75 ] }, "match_maps_stddev_samp_order_by": { "clips_count": [ - 2011 + 2016 ], "lineup_1_timeouts_available": [ - 2011 + 2016 ], "lineup_2_timeouts_available": [ - 2011 + 2016 ], "order": [ - 2011 + 2016 ], "public_clips_count": [ - 2011 + 2016 ], "__typename": [ - 70 + 75 ] }, "match_maps_stream_cursor_input": { "initial_value": [ - 1695 + 1700 ], "ordering": [ - 224 + 229 ], "__typename": [ - 70 + 75 ] }, "match_maps_stream_cursor_value_input": { @@ -30690,34 +30796,34 @@ export default { 38 ], "created_at": [ - 3421 + 3467 ], "ended_at": [ - 3421 + 3467 ], "id": [ - 3818 + 3864 ], "latest_clip_at": [ - 3421 + 3467 ], "lineup_1_side": [ - 886 + 891 ], "lineup_1_timeouts_available": [ 38 ], "lineup_2_side": [ - 886 + 891 ], "lineup_2_timeouts_available": [ 38 ], "map_id": [ - 3818 + 3864 ], "match_id": [ - 3818 + 3864 ], "order": [ 38 @@ -30726,19 +30832,19 @@ export default { 38 ], "public_latest_clip_at": [ - 3421 + 3467 ], "started_at": [ - 3421 + 3467 ], "status": [ - 662 + 667 ], "winning_lineup_id": [ - 3818 + 3864 ], "__typename": [ - 70 + 75 ] }, "match_maps_sum_fields": { @@ -30767,42 +30873,42 @@ export default { 38 ], "__typename": [ - 70 + 75 ] }, "match_maps_sum_order_by": { "clips_count": [ - 2011 + 2016 ], "lineup_1_timeouts_available": [ - 2011 + 2016 ], "lineup_2_timeouts_available": [ - 2011 + 2016 ], "order": [ - 2011 + 2016 ], "public_clips_count": [ - 2011 + 2016 ], "__typename": [ - 70 + 75 ] }, "match_maps_update_column": {}, "match_maps_updates": { "_inc": [ - 1675 + 1680 ], "_set": [ - 1687 + 1692 ], "where": [ - 1673 + 1678 ], "__typename": [ - 70 + 75 ] }, "match_maps_var_pop_fields": { @@ -30831,27 +30937,27 @@ export default { 29 ], "__typename": [ - 70 + 75 ] }, "match_maps_var_pop_order_by": { "clips_count": [ - 2011 + 2016 ], "lineup_1_timeouts_available": [ - 2011 + 2016 ], "lineup_2_timeouts_available": [ - 2011 + 2016 ], "order": [ - 2011 + 2016 ], "public_clips_count": [ - 2011 + 2016 ], "__typename": [ - 70 + 75 ] }, "match_maps_var_samp_fields": { @@ -30880,27 +30986,27 @@ export default { 29 ], "__typename": [ - 70 + 75 ] }, "match_maps_var_samp_order_by": { "clips_count": [ - 2011 + 2016 ], "lineup_1_timeouts_available": [ - 2011 + 2016 ], "lineup_2_timeouts_available": [ - 2011 + 2016 ], "order": [ - 2011 + 2016 ], "public_clips_count": [ - 2011 + 2016 ], "__typename": [ - 70 + 75 ] }, "match_maps_variance_fields": { @@ -30929,27 +31035,27 @@ export default { 29 ], "__typename": [ - 70 + 75 ] }, "match_maps_variance_order_by": { "clips_count": [ - 2011 + 2016 ], "lineup_1_timeouts_available": [ - 2011 + 2016 ], "lineup_2_timeouts_available": [ - 2011 + 2016 ], "order": [ - 2011 + 2016 ], "public_clips_count": [ - 2011 + 2016 ], "__typename": [ - 70 + 75 ] }, "match_options": { @@ -30963,7 +31069,7 @@ export default { 38 ], "check_in_setting": [ - 393 + 398 ], "coaches": [ 3 @@ -30975,10 +31081,10 @@ export default { 3 ], "id": [ - 3818 + 3864 ], "invite_code": [ - 70 + 75 ], "knife_round": [ 3 @@ -30987,22 +31093,22 @@ export default { 38 ], "map_pool": [ - 1325 + 1330 ], "map_pool_id": [ - 3818 + 3864 ], "map_veto": [ 3 ], "match_mode": [ - 683 + 688 ], "matches": [ - 1826, + 1831, { "distinct_on": [ - 1848, + 1853, "[matches_select_column!]" ], "limit": [ @@ -31012,19 +31118,19 @@ export default { 38 ], "order_by": [ - 1846, + 1851, "[matches_order_by!]" ], "where": [ - 1835 + 1840 ] } ], "matches_aggregate": [ - 1827, + 1832, { "distinct_on": [ - 1848, + 1853, "[matches_select_column!]" ], "limit": [ @@ -31034,11 +31140,11 @@ export default { 38 ], "order_by": [ - 1846, + 1851, "[matches_order_by!]" ], "where": [ - 1835 + 1840 ] } ], @@ -31055,59 +31161,59 @@ export default { 3 ], "ready_setting": [ - 805 + 810 ], "region_veto": [ 3 ], "regions": [ - 70 + 75 ], "tech_timeout_setting": [ - 967 + 972 ], "timeout_setting": [ - 967 + 972 ], "tournament": [ - 3772 + 3818 ], "tournament_bracket": [ - 3423 + 3469 ], "tournament_stage": [ - 3510 + 3556 ], "tv_delay": [ 38 ], "type": [ - 724 + 729 ], "__typename": [ - 70 + 75 ] }, "match_options_aggregate": { "aggregate": [ - 1708 + 1713 ], "nodes": [ - 1706 + 1711 ], "__typename": [ - 70 + 75 ] }, "match_options_aggregate_fields": { "avg": [ - 1709 + 1714 ], "count": [ 38, { "columns": [ - 1721, + 1726, "[match_options_select_column!]" ], "distinct": [ @@ -31116,34 +31222,34 @@ export default { } ], "max": [ - 1714 + 1719 ], "min": [ - 1715 + 1720 ], "stddev": [ - 1723 + 1728 ], "stddev_pop": [ - 1724 + 1729 ], "stddev_samp": [ - 1725 + 1730 ], "sum": [ - 1728 + 1733 ], "var_pop": [ - 1731 + 1736 ], "var_samp": [ - 1732 + 1737 ], "variance": [ - 1733 + 1738 ], "__typename": [ - 70 + 75 ] }, "match_options_avg_fields": { @@ -31166,18 +31272,18 @@ export default { 29 ], "__typename": [ - 70 + 75 ] }, "match_options_bool_exp": { "_and": [ - 1710 + 1715 ], "_not": [ - 1710 + 1715 ], "_or": [ - 1710 + 1715 ], "auto_cancel_duration": [ 39 @@ -31189,7 +31295,7 @@ export default { 39 ], "check_in_setting": [ - 394 + 399 ], "coaches": [ 4 @@ -31201,10 +31307,10 @@ export default { 4 ], "id": [ - 3820 + 3866 ], "invite_code": [ - 72 + 77 ], "knife_round": [ 4 @@ -31213,22 +31319,22 @@ export default { 39 ], "map_pool": [ - 1328 + 1333 ], "map_pool_id": [ - 3820 + 3866 ], "map_veto": [ 4 ], "match_mode": [ - 684 + 689 ], "matches": [ - 1835 + 1840 ], "matches_aggregate": [ - 1828 + 1833 ], "mr": [ 39 @@ -31243,37 +31349,37 @@ export default { 4 ], "ready_setting": [ - 806 + 811 ], "region_veto": [ 4 ], "regions": [ - 71 + 76 ], "tech_timeout_setting": [ - 968 + 973 ], "timeout_setting": [ - 968 + 973 ], "tournament": [ - 3783 + 3829 ], "tournament_bracket": [ - 3434 + 3480 ], "tournament_stage": [ - 3522 + 3568 ], "tv_delay": [ 39 ], "type": [ - 725 + 730 ], "__typename": [ - 70 + 75 ] }, "match_options_constraint": {}, @@ -31297,7 +31403,7 @@ export default { 38 ], "__typename": [ - 70 + 75 ] }, "match_options_insert_input": { @@ -31311,7 +31417,7 @@ export default { 38 ], "check_in_setting": [ - 393 + 398 ], "coaches": [ 3 @@ -31320,10 +31426,10 @@ export default { 3 ], "id": [ - 3818 + 3864 ], "invite_code": [ - 70 + 75 ], "knife_round": [ 3 @@ -31332,19 +31438,19 @@ export default { 38 ], "map_pool": [ - 1334 + 1339 ], "map_pool_id": [ - 3818 + 3864 ], "map_veto": [ 3 ], "match_mode": [ - 683 + 688 ], "matches": [ - 1832 + 1837 ], "mr": [ 38 @@ -31359,37 +31465,37 @@ export default { 3 ], "ready_setting": [ - 805 + 810 ], "region_veto": [ 3 ], "regions": [ - 70 + 75 ], "tech_timeout_setting": [ - 967 + 972 ], "timeout_setting": [ - 967 + 972 ], "tournament": [ - 3792 + 3838 ], "tournament_bracket": [ - 3443 + 3489 ], "tournament_stage": [ - 3534 + 3580 ], "tv_delay": [ 38 ], "type": [ - 724 + 729 ], "__typename": [ - 70 + 75 ] }, "match_options_max_fields": { @@ -31400,16 +31506,16 @@ export default { 38 ], "id": [ - 3818 + 3864 ], "invite_code": [ - 70 + 75 ], "live_match_timeout": [ 38 ], "map_pool_id": [ - 3818 + 3864 ], "mr": [ 38 @@ -31418,13 +31524,13 @@ export default { 38 ], "regions": [ - 70 + 75 ], "tv_delay": [ 38 ], "__typename": [ - 70 + 75 ] }, "match_options_min_fields": { @@ -31435,16 +31541,16 @@ export default { 38 ], "id": [ - 3818 + 3864 ], "invite_code": [ - 70 + 75 ], "live_match_timeout": [ 38 ], "map_pool_id": [ - 3818 + 3864 ], "mr": [ 38 @@ -31453,13 +31559,13 @@ export default { 38 ], "regions": [ - 70 + 75 ], "tv_delay": [ 38 ], "__typename": [ - 70 + 75 ] }, "match_options_mutation_response": { @@ -31467,138 +31573,138 @@ export default { 38 ], "returning": [ - 1706 + 1711 ], "__typename": [ - 70 + 75 ] }, "match_options_obj_rel_insert_input": { "data": [ - 1713 + 1718 ], "on_conflict": [ - 1718 + 1723 ], "__typename": [ - 70 + 75 ] }, "match_options_on_conflict": { "constraint": [ - 1711 + 1716 ], "update_columns": [ - 1729 + 1734 ], "where": [ - 1710 + 1715 ], "__typename": [ - 70 + 75 ] }, "match_options_order_by": { "auto_cancel_duration": [ - 2011 + 2016 ], "auto_cancellation": [ - 2011 + 2016 ], "best_of": [ - 2011 + 2016 ], "check_in_setting": [ - 2011 + 2016 ], "coaches": [ - 2011 + 2016 ], "default_models": [ - 2011 + 2016 ], "has_active_matches": [ - 2011 + 2016 ], "id": [ - 2011 + 2016 ], "invite_code": [ - 2011 + 2016 ], "knife_round": [ - 2011 + 2016 ], "live_match_timeout": [ - 2011 + 2016 ], "map_pool": [ - 1336 + 1341 ], "map_pool_id": [ - 2011 + 2016 ], "map_veto": [ - 2011 + 2016 ], "match_mode": [ - 2011 + 2016 ], "matches_aggregate": [ - 1831 + 1836 ], "mr": [ - 2011 + 2016 ], "number_of_substitutes": [ - 2011 + 2016 ], "overtime": [ - 2011 + 2016 ], "prefer_dedicated_server": [ - 2011 + 2016 ], "ready_setting": [ - 2011 + 2016 ], "region_veto": [ - 2011 + 2016 ], "regions": [ - 2011 + 2016 ], "tech_timeout_setting": [ - 2011 + 2016 ], "timeout_setting": [ - 2011 + 2016 ], "tournament": [ - 3794 + 3840 ], "tournament_bracket": [ - 3445 + 3491 ], "tournament_stage": [ - 3536 + 3582 ], "tv_delay": [ - 2011 + 2016 ], "type": [ - 2011 + 2016 ], "__typename": [ - 70 + 75 ] }, "match_options_pk_columns_input": { "id": [ - 3818 + 3864 ], "__typename": [ - 70 + 75 ] }, "match_options_select_column": {}, @@ -31613,7 +31719,7 @@ export default { 38 ], "check_in_setting": [ - 393 + 398 ], "coaches": [ 3 @@ -31622,10 +31728,10 @@ export default { 3 ], "id": [ - 3818 + 3864 ], "invite_code": [ - 70 + 75 ], "knife_round": [ 3 @@ -31634,13 +31740,13 @@ export default { 38 ], "map_pool_id": [ - 3818 + 3864 ], "map_veto": [ 3 ], "match_mode": [ - 683 + 688 ], "mr": [ 38 @@ -31655,28 +31761,28 @@ export default { 3 ], "ready_setting": [ - 805 + 810 ], "region_veto": [ 3 ], "regions": [ - 70 + 75 ], "tech_timeout_setting": [ - 967 + 972 ], "timeout_setting": [ - 967 + 972 ], "tv_delay": [ 38 ], "type": [ - 724 + 729 ], "__typename": [ - 70 + 75 ] }, "match_options_stddev_fields": { @@ -31699,7 +31805,7 @@ export default { 29 ], "__typename": [ - 70 + 75 ] }, "match_options_stddev_pop_fields": { @@ -31722,7 +31828,7 @@ export default { 29 ], "__typename": [ - 70 + 75 ] }, "match_options_stddev_samp_fields": { @@ -31745,18 +31851,18 @@ export default { 29 ], "__typename": [ - 70 + 75 ] }, "match_options_stream_cursor_input": { "initial_value": [ - 1727 + 1732 ], "ordering": [ - 224 + 229 ], "__typename": [ - 70 + 75 ] }, "match_options_stream_cursor_value_input": { @@ -31770,7 +31876,7 @@ export default { 38 ], "check_in_setting": [ - 393 + 398 ], "coaches": [ 3 @@ -31779,10 +31885,10 @@ export default { 3 ], "id": [ - 3818 + 3864 ], "invite_code": [ - 70 + 75 ], "knife_round": [ 3 @@ -31791,13 +31897,13 @@ export default { 38 ], "map_pool_id": [ - 3818 + 3864 ], "map_veto": [ 3 ], "match_mode": [ - 683 + 688 ], "mr": [ 38 @@ -31812,28 +31918,28 @@ export default { 3 ], "ready_setting": [ - 805 + 810 ], "region_veto": [ 3 ], "regions": [ - 70 + 75 ], "tech_timeout_setting": [ - 967 + 972 ], "timeout_setting": [ - 967 + 972 ], "tv_delay": [ 38 ], "type": [ - 724 + 729 ], "__typename": [ - 70 + 75 ] }, "match_options_sum_fields": { @@ -31856,22 +31962,22 @@ export default { 38 ], "__typename": [ - 70 + 75 ] }, "match_options_update_column": {}, "match_options_updates": { "_inc": [ - 1712 + 1717 ], "_set": [ - 1722 + 1727 ], "where": [ - 1710 + 1715 ], "__typename": [ - 70 + 75 ] }, "match_options_var_pop_fields": { @@ -31894,7 +32000,7 @@ export default { 29 ], "__typename": [ - 70 + 75 ] }, "match_options_var_samp_fields": { @@ -31917,7 +32023,7 @@ export default { 29 ], "__typename": [ - 70 + 75 ] }, "match_options_variance_fields": { @@ -31940,72 +32046,72 @@ export default { 29 ], "__typename": [ - 70 + 75 ] }, "match_region_veto_picks": { "created_at": [ - 3421 + 3467 ], "id": [ - 3818 + 3864 ], "match": [ - 1826 + 1831 ], "match_id": [ - 3818 + 3864 ], "match_lineup": [ - 1506 + 1511 ], "match_lineup_id": [ - 3818 + 3864 ], "region": [ - 70 + 75 ], "type": [ - 1049 + 1054 ], "__typename": [ - 70 + 75 ] }, "match_region_veto_picks_aggregate": { "aggregate": [ - 1738 + 1743 ], "nodes": [ - 1734 + 1739 ], "__typename": [ - 70 + 75 ] }, "match_region_veto_picks_aggregate_bool_exp": { "count": [ - 1737 + 1742 ], "__typename": [ - 70 + 75 ] }, "match_region_veto_picks_aggregate_bool_exp_count": { "arguments": [ - 1752 + 1757 ], "distinct": [ 3 ], "filter": [ - 1741 + 1746 ], "predicate": [ 39 ], "__typename": [ - 70 + 75 ] }, "match_region_veto_picks_aggregate_fields": { @@ -32013,7 +32119,7 @@ export default { 38, { "columns": [ - 1752, + 1757, "[match_region_veto_picks_select_column!]" ], "distinct": [ @@ -32022,186 +32128,186 @@ export default { } ], "max": [ - 1744 + 1749 ], "min": [ - 1746 + 1751 ], "__typename": [ - 70 + 75 ] }, "match_region_veto_picks_aggregate_order_by": { "count": [ - 2011 + 2016 ], "max": [ - 1745 + 1750 ], "min": [ - 1747 + 1752 ], "__typename": [ - 70 + 75 ] }, "match_region_veto_picks_arr_rel_insert_input": { "data": [ - 1743 + 1748 ], "on_conflict": [ - 1749 + 1754 ], "__typename": [ - 70 + 75 ] }, "match_region_veto_picks_bool_exp": { "_and": [ - 1741 + 1746 ], "_not": [ - 1741 + 1746 ], "_or": [ - 1741 + 1746 ], "created_at": [ - 3422 + 3468 ], "id": [ - 3820 + 3866 ], "match": [ - 1835 + 1840 ], "match_id": [ - 3820 + 3866 ], "match_lineup": [ - 1515 + 1520 ], "match_lineup_id": [ - 3820 + 3866 ], "region": [ - 72 + 77 ], "type": [ - 1050 + 1055 ], "__typename": [ - 70 + 75 ] }, "match_region_veto_picks_constraint": {}, "match_region_veto_picks_insert_input": { "created_at": [ - 3421 + 3467 ], "id": [ - 3818 + 3864 ], "match": [ - 1844 + 1849 ], "match_id": [ - 3818 + 3864 ], "match_lineup": [ - 1524 + 1529 ], "match_lineup_id": [ - 3818 + 3864 ], "region": [ - 70 + 75 ], "type": [ - 1049 + 1054 ], "__typename": [ - 70 + 75 ] }, "match_region_veto_picks_max_fields": { "created_at": [ - 3421 + 3467 ], "id": [ - 3818 + 3864 ], "match_id": [ - 3818 + 3864 ], "match_lineup_id": [ - 3818 + 3864 ], "region": [ - 70 + 75 ], "__typename": [ - 70 + 75 ] }, "match_region_veto_picks_max_order_by": { "created_at": [ - 2011 + 2016 ], "id": [ - 2011 + 2016 ], "match_id": [ - 2011 + 2016 ], "match_lineup_id": [ - 2011 + 2016 ], "region": [ - 2011 + 2016 ], "__typename": [ - 70 + 75 ] }, "match_region_veto_picks_min_fields": { "created_at": [ - 3421 + 3467 ], "id": [ - 3818 + 3864 ], "match_id": [ - 3818 + 3864 ], "match_lineup_id": [ - 3818 + 3864 ], "region": [ - 70 + 75 ], "__typename": [ - 70 + 75 ] }, "match_region_veto_picks_min_order_by": { "created_at": [ - 2011 + 2016 ], "id": [ - 2011 + 2016 ], "match_id": [ - 2011 + 2016 ], "match_lineup_id": [ - 2011 + 2016 ], "region": [ - 2011 + 2016 ], "__typename": [ - 70 + 75 ] }, "match_region_veto_picks_mutation_response": { @@ -32209,131 +32315,131 @@ export default { 38 ], "returning": [ - 1734 + 1739 ], "__typename": [ - 70 + 75 ] }, "match_region_veto_picks_on_conflict": { "constraint": [ - 1742 + 1747 ], "update_columns": [ - 1756 + 1761 ], "where": [ - 1741 + 1746 ], "__typename": [ - 70 + 75 ] }, "match_region_veto_picks_order_by": { "created_at": [ - 2011 + 2016 ], "id": [ - 2011 + 2016 ], "match": [ - 1846 + 1851 ], "match_id": [ - 2011 + 2016 ], "match_lineup": [ - 1526 + 1531 ], "match_lineup_id": [ - 2011 + 2016 ], "region": [ - 2011 + 2016 ], "type": [ - 2011 + 2016 ], "__typename": [ - 70 + 75 ] }, "match_region_veto_picks_pk_columns_input": { "id": [ - 3818 + 3864 ], "__typename": [ - 70 + 75 ] }, "match_region_veto_picks_select_column": {}, "match_region_veto_picks_set_input": { "created_at": [ - 3421 + 3467 ], "id": [ - 3818 + 3864 ], "match_id": [ - 3818 + 3864 ], "match_lineup_id": [ - 3818 + 3864 ], "region": [ - 70 + 75 ], "type": [ - 1049 + 1054 ], "__typename": [ - 70 + 75 ] }, "match_region_veto_picks_stream_cursor_input": { "initial_value": [ - 1755 + 1760 ], "ordering": [ - 224 + 229 ], "__typename": [ - 70 + 75 ] }, "match_region_veto_picks_stream_cursor_value_input": { "created_at": [ - 3421 + 3467 ], "id": [ - 3818 + 3864 ], "match_id": [ - 3818 + 3864 ], "match_lineup_id": [ - 3818 + 3864 ], "region": [ - 70 + 75 ], "type": [ - 1049 + 1054 ], "__typename": [ - 70 + 75 ] }, "match_region_veto_picks_update_column": {}, "match_region_veto_picks_updates": { "_set": [ - 1753 + 1758 ], "where": [ - 1741 + 1746 ], "__typename": [ - 70 + 75 ] }, "match_streams": { @@ -32341,16 +32447,16 @@ export default { 3 ], "error_message": [ - 70 + 75 ], "game_server_node": [ - 1113 + 1118 ], "game_server_node_id": [ - 70 + 75 ], "id": [ - 3818 + 3864 ], "is_game_streamer": [ 3 @@ -32359,132 +32465,132 @@ export default { 3 ], "k8s_service_name": [ - 70 + 75 ], "last_status_at": [ - 3421 + 3467 ], "link": [ - 70 + 75 ], "match": [ - 1826 + 1831 ], "match_id": [ - 3818 + 3864 ], "mode": [ - 70 + 75 ], "priority": [ 38 ], "status": [ - 70 + 75 ], "status_history": [ - 1235, + 1240, { "path": [ - 70 + 75 ] } ], "stream_url": [ - 70 + 75 ], "title": [ - 70 + 75 ], "__typename": [ - 70 + 75 ] }, "match_streams_aggregate": { "aggregate": [ - 1764 + 1769 ], "nodes": [ - 1758 + 1763 ], "__typename": [ - 70 + 75 ] }, "match_streams_aggregate_bool_exp": { "bool_and": [ - 1761 + 1766 ], "bool_or": [ - 1762 + 1767 ], "count": [ - 1763 + 1768 ], "__typename": [ - 70 + 75 ] }, "match_streams_aggregate_bool_exp_bool_and": { "arguments": [ - 1787 + 1792 ], "distinct": [ 3 ], "filter": [ - 1770 + 1775 ], "predicate": [ 4 ], "__typename": [ - 70 + 75 ] }, "match_streams_aggregate_bool_exp_bool_or": { "arguments": [ - 1788 + 1793 ], "distinct": [ 3 ], "filter": [ - 1770 + 1775 ], "predicate": [ 4 ], "__typename": [ - 70 + 75 ] }, "match_streams_aggregate_bool_exp_count": { "arguments": [ - 1786 + 1791 ], "distinct": [ 3 ], "filter": [ - 1770 + 1775 ], "predicate": [ 39 ], "__typename": [ - 70 + 75 ] }, "match_streams_aggregate_fields": { "avg": [ - 1768 + 1773 ], "count": [ 38, { "columns": [ - 1786, + 1791, "[match_streams_select_column!]" ], "distinct": [ @@ -32493,91 +32599,91 @@ export default { } ], "max": [ - 1777 + 1782 ], "min": [ - 1779 + 1784 ], "stddev": [ - 1790 + 1795 ], "stddev_pop": [ - 1792 + 1797 ], "stddev_samp": [ - 1794 + 1799 ], "sum": [ - 1798 + 1803 ], "var_pop": [ - 1802 + 1807 ], "var_samp": [ - 1804 + 1809 ], "variance": [ - 1806 + 1811 ], "__typename": [ - 70 + 75 ] }, "match_streams_aggregate_order_by": { "avg": [ - 1769 + 1774 ], "count": [ - 2011 + 2016 ], "max": [ - 1778 + 1783 ], "min": [ - 1780 + 1785 ], "stddev": [ - 1791 + 1796 ], "stddev_pop": [ - 1793 + 1798 ], "stddev_samp": [ - 1795 + 1800 ], "sum": [ - 1799 + 1804 ], "var_pop": [ - 1803 + 1808 ], "var_samp": [ - 1805 + 1810 ], "variance": [ - 1807 + 1812 ], "__typename": [ - 70 + 75 ] }, "match_streams_append_input": { "status_history": [ - 1235 + 1240 ], "__typename": [ - 70 + 75 ] }, "match_streams_arr_rel_insert_input": { "data": [ - 1776 + 1781 ], "on_conflict": [ - 1782 + 1787 ], "__typename": [ - 70 + 75 ] }, "match_streams_avg_fields": { @@ -32585,41 +32691,41 @@ export default { 29 ], "__typename": [ - 70 + 75 ] }, "match_streams_avg_order_by": { "priority": [ - 2011 + 2016 ], "__typename": [ - 70 + 75 ] }, "match_streams_bool_exp": { "_and": [ - 1770 + 1775 ], "_not": [ - 1770 + 1775 ], "_or": [ - 1770 + 1775 ], "autodirector": [ 4 ], "error_message": [ - 72 + 77 ], "game_server_node": [ - 1125 + 1130 ], "game_server_node_id": [ - 72 + 77 ], "id": [ - 3820 + 3866 ], "is_game_streamer": [ 4 @@ -32628,49 +32734,49 @@ export default { 4 ], "k8s_service_name": [ - 72 + 77 ], "last_status_at": [ - 3422 + 3468 ], "link": [ - 72 + 77 ], "match": [ - 1835 + 1840 ], "match_id": [ - 3820 + 3866 ], "mode": [ - 72 + 77 ], "priority": [ 39 ], "status": [ - 72 + 77 ], "status_history": [ - 1237 + 1242 ], "stream_url": [ - 72 + 77 ], "title": [ - 72 + 77 ], "__typename": [ - 70 + 75 ] }, "match_streams_constraint": {}, "match_streams_delete_at_path_input": { "status_history": [ - 70 + 75 ], "__typename": [ - 70 + 75 ] }, "match_streams_delete_elem_input": { @@ -32678,15 +32784,15 @@ export default { 38 ], "__typename": [ - 70 + 75 ] }, "match_streams_delete_key_input": { "status_history": [ - 70 + 75 ], "__typename": [ - 70 + 75 ] }, "match_streams_inc_input": { @@ -32694,7 +32800,7 @@ export default { 38 ], "__typename": [ - 70 + 75 ] }, "match_streams_insert_input": { @@ -32702,16 +32808,16 @@ export default { 3 ], "error_message": [ - 70 + 75 ], "game_server_node": [ - 1137 + 1142 ], "game_server_node_id": [ - 70 + 75 ], "id": [ - 3818 + 3864 ], "is_game_streamer": [ 3 @@ -32720,204 +32826,204 @@ export default { 3 ], "k8s_service_name": [ - 70 + 75 ], "last_status_at": [ - 3421 + 3467 ], "link": [ - 70 + 75 ], "match": [ - 1844 + 1849 ], "match_id": [ - 3818 + 3864 ], "mode": [ - 70 + 75 ], "priority": [ 38 ], "status": [ - 70 + 75 ], "status_history": [ - 1235 + 1240 ], "stream_url": [ - 70 + 75 ], "title": [ - 70 + 75 ], "__typename": [ - 70 + 75 ] }, "match_streams_max_fields": { "error_message": [ - 70 + 75 ], "game_server_node_id": [ - 70 + 75 ], "id": [ - 3818 + 3864 ], "k8s_service_name": [ - 70 + 75 ], "last_status_at": [ - 3421 + 3467 ], "link": [ - 70 + 75 ], "match_id": [ - 3818 + 3864 ], "mode": [ - 70 + 75 ], "priority": [ 38 ], "status": [ - 70 + 75 ], "stream_url": [ - 70 + 75 ], "title": [ - 70 + 75 ], "__typename": [ - 70 + 75 ] }, "match_streams_max_order_by": { "error_message": [ - 2011 + 2016 ], "game_server_node_id": [ - 2011 + 2016 ], "id": [ - 2011 + 2016 ], "k8s_service_name": [ - 2011 + 2016 ], "last_status_at": [ - 2011 + 2016 ], "link": [ - 2011 + 2016 ], "match_id": [ - 2011 + 2016 ], "mode": [ - 2011 + 2016 ], "priority": [ - 2011 + 2016 ], "status": [ - 2011 + 2016 ], "stream_url": [ - 2011 + 2016 ], "title": [ - 2011 + 2016 ], "__typename": [ - 70 + 75 ] }, "match_streams_min_fields": { "error_message": [ - 70 + 75 ], "game_server_node_id": [ - 70 + 75 ], "id": [ - 3818 + 3864 ], "k8s_service_name": [ - 70 + 75 ], "last_status_at": [ - 3421 + 3467 ], "link": [ - 70 + 75 ], "match_id": [ - 3818 + 3864 ], "mode": [ - 70 + 75 ], "priority": [ 38 ], "status": [ - 70 + 75 ], "stream_url": [ - 70 + 75 ], "title": [ - 70 + 75 ], "__typename": [ - 70 + 75 ] }, "match_streams_min_order_by": { "error_message": [ - 2011 + 2016 ], "game_server_node_id": [ - 2011 + 2016 ], "id": [ - 2011 + 2016 ], "k8s_service_name": [ - 2011 + 2016 ], "last_status_at": [ - 2011 + 2016 ], "link": [ - 2011 + 2016 ], "match_id": [ - 2011 + 2016 ], "mode": [ - 2011 + 2016 ], "priority": [ - 2011 + 2016 ], "status": [ - 2011 + 2016 ], "stream_url": [ - 2011 + 2016 ], "title": [ - 2011 + 2016 ], "__typename": [ - 70 + 75 ] }, "match_streams_mutation_response": { @@ -32925,99 +33031,99 @@ export default { 38 ], "returning": [ - 1758 + 1763 ], "__typename": [ - 70 + 75 ] }, "match_streams_on_conflict": { "constraint": [ - 1771 + 1776 ], "update_columns": [ - 1800 + 1805 ], "where": [ - 1770 + 1775 ], "__typename": [ - 70 + 75 ] }, "match_streams_order_by": { "autodirector": [ - 2011 + 2016 ], "error_message": [ - 2011 + 2016 ], "game_server_node": [ - 1139 + 1144 ], "game_server_node_id": [ - 2011 + 2016 ], "id": [ - 2011 + 2016 ], "is_game_streamer": [ - 2011 + 2016 ], "is_live": [ - 2011 + 2016 ], "k8s_service_name": [ - 2011 + 2016 ], "last_status_at": [ - 2011 + 2016 ], "link": [ - 2011 + 2016 ], "match": [ - 1846 + 1851 ], "match_id": [ - 2011 + 2016 ], "mode": [ - 2011 + 2016 ], "priority": [ - 2011 + 2016 ], "status": [ - 2011 + 2016 ], "status_history": [ - 2011 + 2016 ], "stream_url": [ - 2011 + 2016 ], "title": [ - 2011 + 2016 ], "__typename": [ - 70 + 75 ] }, "match_streams_pk_columns_input": { "id": [ - 3818 + 3864 ], "__typename": [ - 70 + 75 ] }, "match_streams_prepend_input": { "status_history": [ - 1235 + 1240 ], "__typename": [ - 70 + 75 ] }, "match_streams_select_column": {}, @@ -33028,13 +33134,13 @@ export default { 3 ], "error_message": [ - 70 + 75 ], "game_server_node_id": [ - 70 + 75 ], "id": [ - 3818 + 3864 ], "is_game_streamer": [ 3 @@ -33043,37 +33149,37 @@ export default { 3 ], "k8s_service_name": [ - 70 + 75 ], "last_status_at": [ - 3421 + 3467 ], "link": [ - 70 + 75 ], "match_id": [ - 3818 + 3864 ], "mode": [ - 70 + 75 ], "priority": [ 38 ], "status": [ - 70 + 75 ], "status_history": [ - 1235 + 1240 ], "stream_url": [ - 70 + 75 ], "title": [ - 70 + 75 ], "__typename": [ - 70 + 75 ] }, "match_streams_stddev_fields": { @@ -33081,15 +33187,15 @@ export default { 29 ], "__typename": [ - 70 + 75 ] }, "match_streams_stddev_order_by": { "priority": [ - 2011 + 2016 ], "__typename": [ - 70 + 75 ] }, "match_streams_stddev_pop_fields": { @@ -33097,15 +33203,15 @@ export default { 29 ], "__typename": [ - 70 + 75 ] }, "match_streams_stddev_pop_order_by": { "priority": [ - 2011 + 2016 ], "__typename": [ - 70 + 75 ] }, "match_streams_stddev_samp_fields": { @@ -33113,26 +33219,26 @@ export default { 29 ], "__typename": [ - 70 + 75 ] }, "match_streams_stddev_samp_order_by": { "priority": [ - 2011 + 2016 ], "__typename": [ - 70 + 75 ] }, "match_streams_stream_cursor_input": { "initial_value": [ - 1797 + 1802 ], "ordering": [ - 224 + 229 ], "__typename": [ - 70 + 75 ] }, "match_streams_stream_cursor_value_input": { @@ -33140,13 +33246,13 @@ export default { 3 ], "error_message": [ - 70 + 75 ], "game_server_node_id": [ - 70 + 75 ], "id": [ - 3818 + 3864 ], "is_game_streamer": [ 3 @@ -33155,37 +33261,37 @@ export default { 3 ], "k8s_service_name": [ - 70 + 75 ], "last_status_at": [ - 3421 + 3467 ], "link": [ - 70 + 75 ], "match_id": [ - 3818 + 3864 ], "mode": [ - 70 + 75 ], "priority": [ 38 ], "status": [ - 70 + 75 ], "status_history": [ - 1235 + 1240 ], "stream_url": [ - 70 + 75 ], "title": [ - 70 + 75 ], "__typename": [ - 70 + 75 ] }, "match_streams_sum_fields": { @@ -33193,45 +33299,45 @@ export default { 38 ], "__typename": [ - 70 + 75 ] }, "match_streams_sum_order_by": { "priority": [ - 2011 + 2016 ], "__typename": [ - 70 + 75 ] }, "match_streams_update_column": {}, "match_streams_updates": { "_append": [ - 1766 + 1771 ], "_delete_at_path": [ - 1772 + 1777 ], "_delete_elem": [ - 1773 + 1778 ], "_delete_key": [ - 1774 + 1779 ], "_inc": [ - 1775 + 1780 ], "_prepend": [ - 1785 + 1790 ], "_set": [ - 1789 + 1794 ], "where": [ - 1770 + 1775 ], "__typename": [ - 70 + 75 ] }, "match_streams_var_pop_fields": { @@ -33239,15 +33345,15 @@ export default { 29 ], "__typename": [ - 70 + 75 ] }, "match_streams_var_pop_order_by": { "priority": [ - 2011 + 2016 ], "__typename": [ - 70 + 75 ] }, "match_streams_var_samp_fields": { @@ -33255,15 +33361,15 @@ export default { 29 ], "__typename": [ - 70 + 75 ] }, "match_streams_var_samp_order_by": { "priority": [ - 2011 + 2016 ], "__typename": [ - 70 + 75 ] }, "match_streams_variance_fields": { @@ -33271,37 +33377,37 @@ export default { 29 ], "__typename": [ - 70 + 75 ] }, "match_streams_variance_order_by": { "priority": [ - 2011 + 2016 ], "__typename": [ - 70 + 75 ] }, "match_type_cfgs": { "cfg": [ - 70 + 75 ], "type": [ - 539 + 544 ], "__typename": [ - 70 + 75 ] }, "match_type_cfgs_aggregate": { "aggregate": [ - 1810 + 1815 ], "nodes": [ - 1808 + 1813 ], "__typename": [ - 70 + 75 ] }, "match_type_cfgs_aggregate_fields": { @@ -33309,7 +33415,7 @@ export default { 38, { "columns": [ - 1820, + 1825, "[match_type_cfgs_select_column!]" ], "distinct": [ @@ -33318,61 +33424,61 @@ export default { } ], "max": [ - 1814 + 1819 ], "min": [ - 1815 + 1820 ], "__typename": [ - 70 + 75 ] }, "match_type_cfgs_bool_exp": { "_and": [ - 1811 + 1816 ], "_not": [ - 1811 + 1816 ], "_or": [ - 1811 + 1816 ], "cfg": [ - 72 + 77 ], "type": [ - 540 + 545 ], "__typename": [ - 70 + 75 ] }, "match_type_cfgs_constraint": {}, "match_type_cfgs_insert_input": { "cfg": [ - 70 + 75 ], "type": [ - 539 + 544 ], "__typename": [ - 70 + 75 ] }, "match_type_cfgs_max_fields": { "cfg": [ - 70 + 75 ], "__typename": [ - 70 + 75 ] }, "match_type_cfgs_min_fields": { "cfg": [ - 70 + 75 ], "__typename": [ - 70 + 75 ] }, "match_type_cfgs_mutation_response": { @@ -33380,89 +33486,89 @@ export default { 38 ], "returning": [ - 1808 + 1813 ], "__typename": [ - 70 + 75 ] }, "match_type_cfgs_on_conflict": { "constraint": [ - 1812 + 1817 ], "update_columns": [ - 1824 + 1829 ], "where": [ - 1811 + 1816 ], "__typename": [ - 70 + 75 ] }, "match_type_cfgs_order_by": { "cfg": [ - 2011 + 2016 ], "type": [ - 2011 + 2016 ], "__typename": [ - 70 + 75 ] }, "match_type_cfgs_pk_columns_input": { "type": [ - 539 + 544 ], "__typename": [ - 70 + 75 ] }, "match_type_cfgs_select_column": {}, "match_type_cfgs_set_input": { "cfg": [ - 70 + 75 ], "type": [ - 539 + 544 ], "__typename": [ - 70 + 75 ] }, "match_type_cfgs_stream_cursor_input": { "initial_value": [ - 1823 + 1828 ], "ordering": [ - 224 + 229 ], "__typename": [ - 70 + 75 ] }, "match_type_cfgs_stream_cursor_value_input": { "cfg": [ - 70 + 75 ], "type": [ - 539 + 544 ], "__typename": [ - 70 + 75 ] }, "match_type_cfgs_update_column": {}, "match_type_cfgs_updates": { "_set": [ - 1821 + 1826 ], "where": [ - 1811 + 1816 ], "__typename": [ - 70 + 75 ] }, "matches": { @@ -33491,13 +33597,13 @@ export default { 3 ], "cancels_at": [ - 3421 + 3467 ], "clutches": [ - 3863, + 3909, { "distinct_on": [ - 3879, + 3925, "[v_match_clutches_select_column!]" ], "limit": [ @@ -33507,19 +33613,19 @@ export default { 38 ], "order_by": [ - 3878, + 3924, "[v_match_clutches_order_by!]" ], "where": [ - 3872 + 3918 ] } ], "clutches_aggregate": [ - 3864, + 3910, { "distinct_on": [ - 3879, + 3925, "[v_match_clutches_select_column!]" ], "limit": [ @@ -33529,31 +33635,31 @@ export default { 38 ], "order_by": [ - 3878, + 3924, "[v_match_clutches_order_by!]" ], "where": [ - 3872 + 3918 ] } ], "connection_link": [ - 70 + 75 ], "connection_string": [ - 70 + 75 ], "created_at": [ - 3421 + 3467 ], "current_match_map_id": [ - 3818 + 3864 ], "demos": [ - 1548, + 1553, { "distinct_on": [ - 1577, + 1582, "[match_map_demos_select_column!]" ], "limit": [ @@ -33563,19 +33669,19 @@ export default { 38 ], "order_by": [ - 1574, + 1579, "[match_map_demos_order_by!]" ], "where": [ - 1560 + 1565 ] } ], "demos_aggregate": [ - 1549, + 1554, { "distinct_on": [ - 1577, + 1582, "[match_map_demos_select_column!]" ], "limit": [ @@ -33585,19 +33691,19 @@ export default { 38 ], "order_by": [ - 1574, + 1579, "[match_map_demos_order_by!]" ], "where": [ - 1560 + 1565 ] } ], "draft_games": [ - 342, + 347, { "distinct_on": [ - 366, + 371, "[draft_games_select_column!]" ], "limit": [ @@ -33607,19 +33713,19 @@ export default { 38 ], "order_by": [ - 364, + 369, "[draft_games_order_by!]" ], "where": [ - 353 + 358 ] } ], "draft_games_aggregate": [ - 343, + 348, { "distinct_on": [ - 366, + 371, "[draft_games_select_column!]" ], "limit": [ @@ -33629,28 +33735,28 @@ export default { 38 ], "order_by": [ - 364, + 369, "[draft_games_order_by!]" ], "where": [ - 353 + 358 ] } ], "e_match_status": [ - 698 + 703 ], "e_region": [ - 2934 + 2971 ], "effective_at": [ - 3421 + 3467 ], "elo_changes": [ - 4060, + 4106, { "distinct_on": [ - 4086, + 4132, "[v_player_elo_select_column!]" ], "limit": [ @@ -33660,19 +33766,19 @@ export default { 38 ], "order_by": [ - 4085, + 4131, "[v_player_elo_order_by!]" ], "where": [ - 4079 + 4125 ] } ], "elo_changes_aggregate": [ - 4061, + 4107, { "distinct_on": [ - 4086, + 4132, "[v_player_elo_select_column!]" ], "limit": [ @@ -33682,25 +33788,25 @@ export default { 38 ], "order_by": [ - 4085, + 4131, "[v_player_elo_order_by!]" ], "where": [ - 4079 + 4125 ] } ], "ended_at": [ - 3421 + 3467 ], "external_id": [ - 70 + 75 ], "id": [ - 3818 + 3864 ], "invite_code": [ - 70 + 75 ], "is_captain": [ 3 @@ -33727,36 +33833,36 @@ export default { 3 ], "label": [ - 70 + 75 ], "lineup_1": [ - 1506 + 1511 ], "lineup_1_id": [ - 3818 + 3864 ], "lineup_2": [ - 1506 + 1511 ], "lineup_2_id": [ - 3818 + 3864 ], "lineup_counts": [ - 1233, + 1238, { "path": [ - 70 + 75 ] } ], "map_veto_picking_lineup_id": [ - 3818 + 3864 ], "map_veto_picks": [ - 1640, + 1645, { "distinct_on": [ - 1658, + 1663, "[match_map_veto_picks_select_column!]" ], "limit": [ @@ -33766,19 +33872,19 @@ export default { 38 ], "order_by": [ - 1656, + 1661, "[match_map_veto_picks_order_by!]" ], "where": [ - 1647 + 1652 ] } ], "map_veto_picks_aggregate": [ - 1641, + 1646, { "distinct_on": [ - 1658, + 1663, "[match_map_veto_picks_select_column!]" ], "limit": [ @@ -33788,22 +33894,22 @@ export default { 38 ], "order_by": [ - 1656, + 1661, "[match_map_veto_picks_order_by!]" ], "where": [ - 1647 + 1652 ] } ], "map_veto_type": [ - 70 + 75 ], "match_maps": [ - 1664, + 1669, { "distinct_on": [ - 1686, + 1691, "[match_maps_select_column!]" ], "limit": [ @@ -33813,19 +33919,19 @@ export default { 38 ], "order_by": [ - 1684, + 1689, "[match_maps_order_by!]" ], "where": [ - 1673 + 1678 ] } ], "match_maps_aggregate": [ - 1665, + 1670, { "distinct_on": [ - 1686, + 1691, "[match_maps_select_column!]" ], "limit": [ @@ -33835,16 +33941,16 @@ export default { 38 ], "order_by": [ - 1684, + 1689, "[match_maps_order_by!]" ], "where": [ - 1673 + 1678 ] } ], "match_options_id": [ - 3818 + 3864 ], "max_players_per_lineup": [ 38 @@ -33853,10 +33959,10 @@ export default { 38 ], "opening_duels": [ - 3991, + 4037, { "distinct_on": [ - 4007, + 4053, "[v_match_player_opening_duels_select_column!]" ], "limit": [ @@ -33866,19 +33972,19 @@ export default { 38 ], "order_by": [ - 4006, + 4052, "[v_match_player_opening_duels_order_by!]" ], "where": [ - 4000 + 4046 ] } ], "opening_duels_aggregate": [ - 3992, + 4038, { "distinct_on": [ - 4007, + 4053, "[v_match_player_opening_duels_select_column!]" ], "limit": [ @@ -33888,31 +33994,31 @@ export default { 38 ], "order_by": [ - 4006, + 4052, "[v_match_player_opening_duels_order_by!]" ], "where": [ - 4000 + 4046 ] } ], "options": [ - 1706 + 1711 ], "organizer": [ - 2878 + 2915 ], "organizer_steam_id": [ - 169 + 174 ], "password": [ - 70 + 75 ], "player_assists": [ - 2149, + 2154, { "distinct_on": [ - 2172, + 2177, "[player_assists_select_column!]" ], "limit": [ @@ -33922,19 +34028,19 @@ export default { 38 ], "order_by": [ - 2170, + 2175, "[player_assists_order_by!]" ], "where": [ - 2160 + 2165 ] } ], "player_assists_aggregate": [ - 2150, + 2155, { "distinct_on": [ - 2172, + 2177, "[player_assists_select_column!]" ], "limit": [ @@ -33944,19 +34050,19 @@ export default { 38 ], "order_by": [ - 2170, + 2175, "[player_assists_order_by!]" ], "where": [ - 2160 + 2165 ] } ], "player_damages": [ - 2212, + 2217, { "distinct_on": [ - 2233, + 2238, "[player_damages_select_column!]" ], "limit": [ @@ -33966,19 +34072,19 @@ export default { 38 ], "order_by": [ - 2231, + 2236, "[player_damages_order_by!]" ], "where": [ - 2221 + 2226 ] } ], "player_damages_aggregate": [ - 2213, + 2218, { "distinct_on": [ - 2233, + 2238, "[player_damages_select_column!]" ], "limit": [ @@ -33988,19 +34094,19 @@ export default { 38 ], "order_by": [ - 2231, + 2236, "[player_damages_order_by!]" ], "where": [ - 2221 + 2226 ] } ], "player_flashes": [ - 2321, + 2326, { "distinct_on": [ - 2344, + 2349, "[player_flashes_select_column!]" ], "limit": [ @@ -34010,19 +34116,19 @@ export default { 38 ], "order_by": [ - 2342, + 2347, "[player_flashes_order_by!]" ], "where": [ - 2332 + 2337 ] } ], "player_flashes_aggregate": [ - 2322, + 2327, { "distinct_on": [ - 2344, + 2349, "[player_flashes_select_column!]" ], "limit": [ @@ -34032,19 +34138,19 @@ export default { 38 ], "order_by": [ - 2342, + 2347, "[player_flashes_order_by!]" ], "where": [ - 2332 + 2337 ] } ], "player_kills": [ - 2366, + 2371, { "distinct_on": [ - 2430, + 2435, "[player_kills_select_column!]" ], "limit": [ @@ -34054,19 +34160,19 @@ export default { 38 ], "order_by": [ - 2428, + 2433, "[player_kills_order_by!]" ], "where": [ - 2377 + 2382 ] } ], "player_kills_aggregate": [ - 2367, + 2372, { "distinct_on": [ - 2430, + 2435, "[player_kills_select_column!]" ], "limit": [ @@ -34076,19 +34182,19 @@ export default { 38 ], "order_by": [ - 2428, + 2433, "[player_kills_order_by!]" ], "where": [ - 2377 + 2382 ] } ], "player_objectives": [ - 2567, + 2572, { "distinct_on": [ - 2588, + 2593, "[player_objectives_select_column!]" ], "limit": [ @@ -34098,19 +34204,19 @@ export default { 38 ], "order_by": [ - 2586, + 2591, "[player_objectives_order_by!]" ], "where": [ - 2576 + 2581 ] } ], "player_objectives_aggregate": [ - 2568, + 2573, { "distinct_on": [ - 2588, + 2593, "[player_objectives_select_column!]" ], "limit": [ @@ -34120,19 +34226,19 @@ export default { 38 ], "order_by": [ - 2586, + 2591, "[player_objectives_order_by!]" ], "where": [ - 2576 + 2581 ] } ], "player_unused_utilities": [ - 2763, + 2800, { "distinct_on": [ - 2784, + 2821, "[player_unused_utility_select_column!]" ], "limit": [ @@ -34142,19 +34248,19 @@ export default { 38 ], "order_by": [ - 2782, + 2819, "[player_unused_utility_order_by!]" ], "where": [ - 2772 + 2809 ] } ], "player_unused_utilities_aggregate": [ - 2764, + 2801, { "distinct_on": [ - 2784, + 2821, "[player_unused_utility_select_column!]" ], "limit": [ @@ -34164,19 +34270,19 @@ export default { 38 ], "order_by": [ - 2782, + 2819, "[player_unused_utility_order_by!]" ], "where": [ - 2772 + 2809 ] } ], "player_utility": [ - 2804, + 2841, { "distinct_on": [ - 2825, + 2862, "[player_utility_select_column!]" ], "limit": [ @@ -34186,19 +34292,19 @@ export default { 38 ], "order_by": [ - 2823, + 2860, "[player_utility_order_by!]" ], "where": [ - 2813 + 2850 ] } ], "player_utility_aggregate": [ - 2805, + 2842, { "distinct_on": [ - 2825, + 2862, "[player_utility_select_column!]" ], "limit": [ @@ -34208,25 +34314,25 @@ export default { 38 ], "order_by": [ - 2823, + 2860, "[player_utility_order_by!]" ], "where": [ - 2813 + 2850 ] } ], "region": [ - 70 + 75 ], "region_veto_picking_lineup_id": [ - 3818 + 3864 ], "region_veto_picks": [ - 1734, + 1739, { "distinct_on": [ - 1752, + 1757, "[match_region_veto_picks_select_column!]" ], "limit": [ @@ -34236,19 +34342,19 @@ export default { 38 ], "order_by": [ - 1750, + 1755, "[match_region_veto_picks_order_by!]" ], "where": [ - 1741 + 1746 ] } ], "region_veto_picks_aggregate": [ - 1735, + 1740, { "distinct_on": [ - 1752, + 1757, "[match_region_veto_picks_select_column!]" ], "limit": [ @@ -34258,11 +34364,11 @@ export default { 38 ], "order_by": [ - 1750, + 1755, "[match_region_veto_picks_order_by!]" ], "where": [ - 1741 + 1746 ] } ], @@ -34270,37 +34376,37 @@ export default { 3 ], "scheduled_at": [ - 3421 + 3467 ], "server": [ - 2961 + 2998 ], "server_error": [ - 70 + 75 ], "server_id": [ - 3818 + 3864 ], "server_region": [ - 70 + 75 ], "server_type": [ - 70 + 75 ], "source": [ - 70 + 75 ], "started_at": [ - 3421 + 3467 ], "status": [ - 703 + 708 ], "streams": [ - 1758, + 1763, { "distinct_on": [ - 1786, + 1791, "[match_streams_select_column!]" ], "limit": [ @@ -34310,19 +34416,19 @@ export default { 38 ], "order_by": [ - 1783, + 1788, "[match_streams_order_by!]" ], "where": [ - 1770 + 1775 ] } ], "streams_aggregate": [ - 1759, + 1764, { "distinct_on": [ - 1786, + 1791, "[match_streams_select_column!]" ], "limit": [ @@ -34332,19 +34438,19 @@ export default { 38 ], "order_by": [ - 1783, + 1788, "[match_streams_order_by!]" ], "where": [ - 1770 + 1775 ] } ], "teams": [ - 3378, + 3424, { "distinct_on": [ - 3400, + 3446, "[teams_select_column!]" ], "limit": [ @@ -34354,19 +34460,19 @@ export default { 38 ], "order_by": [ - 3398, + 3444, "[teams_order_by!]" ], "where": [ - 3387 + 3433 ] } ], "tournament_brackets": [ - 3423, + 3469, { "distinct_on": [ - 3447, + 3493, "[tournament_brackets_select_column!]" ], "limit": [ @@ -34376,19 +34482,19 @@ export default { 38 ], "order_by": [ - 3445, + 3491, "[tournament_brackets_order_by!]" ], "where": [ - 3434 + 3480 ] } ], "tournament_brackets_aggregate": [ - 3424, + 3470, { "distinct_on": [ - 3447, + 3493, "[tournament_brackets_select_column!]" ], "limit": [ @@ -34398,72 +34504,72 @@ export default { 38 ], "order_by": [ - 3445, + 3491, "[tournament_brackets_order_by!]" ], "where": [ - 3434 + 3480 ] } ], "tv_connection_string": [ - 70 + 75 ], "winner": [ - 1506 + 1511 ], "winning_lineup_id": [ - 3818 + 3864 ], "__typename": [ - 70 + 75 ] }, "matches_aggregate": { "aggregate": [ - 1830 + 1835 ], "nodes": [ - 1826 + 1831 ], "__typename": [ - 70 + 75 ] }, "matches_aggregate_bool_exp": { "count": [ - 1829 + 1834 ], "__typename": [ - 70 + 75 ] }, "matches_aggregate_bool_exp_count": { "arguments": [ - 1848 + 1853 ], "distinct": [ 3 ], "filter": [ - 1835 + 1840 ], "predicate": [ 39 ], "__typename": [ - 70 + 75 ] }, "matches_aggregate_fields": { "avg": [ - 1833 + 1838 ], "count": [ 38, { "columns": [ - 1848, + 1853, "[matches_select_column!]" ], "distinct": [ @@ -34472,83 +34578,83 @@ export default { } ], "max": [ - 1839 + 1844 ], "min": [ - 1841 + 1846 ], "stddev": [ - 1850 + 1855 ], "stddev_pop": [ - 1852 + 1857 ], "stddev_samp": [ - 1854 + 1859 ], "sum": [ - 1858 + 1863 ], "var_pop": [ - 1862 + 1867 ], "var_samp": [ - 1864 + 1869 ], "variance": [ - 1866 + 1871 ], "__typename": [ - 70 + 75 ] }, "matches_aggregate_order_by": { "avg": [ - 1834 + 1839 ], "count": [ - 2011 + 2016 ], "max": [ - 1840 + 1845 ], "min": [ - 1842 + 1847 ], "stddev": [ - 1851 + 1856 ], "stddev_pop": [ - 1853 + 1858 ], "stddev_samp": [ - 1855 + 1860 ], "sum": [ - 1859 + 1864 ], "var_pop": [ - 1863 + 1868 ], "var_samp": [ - 1865 + 1870 ], "variance": [ - 1867 + 1872 ], "__typename": [ - 70 + 75 ] }, "matches_arr_rel_insert_input": { "data": [ - 1838 + 1843 ], "on_conflict": [ - 1845 + 1850 ], "__typename": [ - 70 + 75 ] }, "matches_avg_fields": { @@ -34562,26 +34668,26 @@ export default { 29 ], "__typename": [ - 70 + 75 ] }, "matches_avg_order_by": { "organizer_steam_id": [ - 2011 + 2016 ], "__typename": [ - 70 + 75 ] }, "matches_bool_exp": { "_and": [ - 1835 + 1840 ], "_not": [ - 1835 + 1840 ], "_or": [ - 1835 + 1840 ], "can_assign_server": [ 4 @@ -34608,64 +34714,64 @@ export default { 4 ], "cancels_at": [ - 3422 + 3468 ], "clutches": [ - 3872 + 3918 ], "clutches_aggregate": [ - 3865 + 3911 ], "connection_link": [ - 72 + 77 ], "connection_string": [ - 72 + 77 ], "created_at": [ - 3422 + 3468 ], "current_match_map_id": [ - 3820 + 3866 ], "demos": [ - 1560 + 1565 ], "demos_aggregate": [ - 1550 + 1555 ], "draft_games": [ - 353 + 358 ], "draft_games_aggregate": [ - 344 + 349 ], "e_match_status": [ - 701 + 706 ], "e_region": [ - 2938 + 2975 ], "effective_at": [ - 3422 + 3468 ], "elo_changes": [ - 4079 + 4125 ], "elo_changes_aggregate": [ - 4062 + 4108 ], "ended_at": [ - 3422 + 3468 ], "external_id": [ - 72 + 77 ], "id": [ - 3820 + 3866 ], "invite_code": [ - 72 + 77 ], "is_captain": [ 4 @@ -34692,43 +34798,43 @@ export default { 4 ], "label": [ - 72 + 77 ], "lineup_1": [ - 1515 + 1520 ], "lineup_1_id": [ - 3820 + 3866 ], "lineup_2": [ - 1515 + 1520 ], "lineup_2_id": [ - 3820 + 3866 ], "lineup_counts": [ - 1234 + 1239 ], "map_veto_picking_lineup_id": [ - 3820 + 3866 ], "map_veto_picks": [ - 1647 + 1652 ], "map_veto_picks_aggregate": [ - 1642 + 1647 ], "map_veto_type": [ - 72 + 77 ], "match_maps": [ - 1673 + 1678 ], "match_maps_aggregate": [ - 1666 + 1671 ], "match_options_id": [ - 3820 + 3866 ], "max_players_per_lineup": [ 39 @@ -34737,329 +34843,329 @@ export default { 39 ], "opening_duels": [ - 4000 + 4046 ], "opening_duels_aggregate": [ - 3993 + 4039 ], "options": [ - 1710 + 1715 ], "organizer": [ - 2882 + 2919 ], "organizer_steam_id": [ - 171 + 176 ], "password": [ - 72 + 77 ], "player_assists": [ - 2160 + 2165 ], "player_assists_aggregate": [ - 2151 + 2156 ], "player_damages": [ - 2221 + 2226 ], "player_damages_aggregate": [ - 2214 + 2219 ], "player_flashes": [ - 2332 + 2337 ], "player_flashes_aggregate": [ - 2323 + 2328 ], "player_kills": [ - 2377 + 2382 ], "player_kills_aggregate": [ - 2368 + 2373 ], "player_objectives": [ - 2576 + 2581 ], "player_objectives_aggregate": [ - 2569 + 2574 ], "player_unused_utilities": [ - 2772 + 2809 ], "player_unused_utilities_aggregate": [ - 2765 + 2802 ], "player_utility": [ - 2813 + 2850 ], "player_utility_aggregate": [ - 2806 + 2843 ], "region": [ - 72 + 77 ], "region_veto_picking_lineup_id": [ - 3820 + 3866 ], "region_veto_picks": [ - 1741 + 1746 ], "region_veto_picks_aggregate": [ - 1736 + 1741 ], "requested_organizer": [ 4 ], "scheduled_at": [ - 3422 + 3468 ], "server": [ - 2972 + 3009 ], "server_error": [ - 72 + 77 ], "server_id": [ - 3820 + 3866 ], "server_region": [ - 72 + 77 ], "server_type": [ - 72 + 77 ], "source": [ - 72 + 77 ], "started_at": [ - 3422 + 3468 ], "status": [ - 704 + 709 ], "streams": [ - 1770 + 1775 ], "streams_aggregate": [ - 1760 + 1765 ], "teams": [ - 3387 + 3433 ], "tournament_brackets": [ - 3434 + 3480 ], "tournament_brackets_aggregate": [ - 3425 + 3471 ], "tv_connection_string": [ - 72 + 77 ], "winner": [ - 1515 + 1520 ], "winning_lineup_id": [ - 3820 + 3866 ], "__typename": [ - 70 + 75 ] }, "matches_constraint": {}, "matches_inc_input": { "organizer_steam_id": [ - 169 + 174 ], "__typename": [ - 70 + 75 ] }, "matches_insert_input": { "cancels_at": [ - 3421 + 3467 ], "clutches": [ - 3869 + 3915 ], "created_at": [ - 3421 + 3467 ], "demos": [ - 1557 + 1562 ], "draft_games": [ - 350 + 355 ], "e_match_status": [ - 709 + 714 ], "e_region": [ - 2944 + 2981 ], "elo_changes": [ - 4076 + 4122 ], "ended_at": [ - 3421 + 3467 ], "external_id": [ - 70 + 75 ], "id": [ - 3818 + 3864 ], "label": [ - 70 + 75 ], "lineup_1": [ - 1524 + 1529 ], "lineup_1_id": [ - 3818 + 3864 ], "lineup_2": [ - 1524 + 1529 ], "lineup_2_id": [ - 3818 + 3864 ], "map_veto_picks": [ - 1646 + 1651 ], "match_maps": [ - 1670 + 1675 ], "match_options_id": [ - 3818 + 3864 ], "opening_duels": [ - 3997 + 4043 ], "options": [ - 1717 + 1722 ], "organizer": [ - 2889 + 2926 ], "organizer_steam_id": [ - 169 + 174 ], "password": [ - 70 + 75 ], "player_assists": [ - 2157 + 2162 ], "player_damages": [ - 2218 + 2223 ], "player_flashes": [ - 2329 + 2334 ], "player_kills": [ - 2374 + 2379 ], "player_objectives": [ - 2573 + 2578 ], "player_unused_utilities": [ - 2769 + 2806 ], "player_utility": [ - 2810 + 2847 ], "region": [ - 70 + 75 ], "region_veto_picks": [ - 1740 + 1745 ], "scheduled_at": [ - 3421 + 3467 ], "server": [ - 2981 + 3018 ], "server_error": [ - 70 + 75 ], "server_id": [ - 3818 + 3864 ], "source": [ - 70 + 75 ], "started_at": [ - 3421 + 3467 ], "status": [ - 703 + 708 ], "streams": [ - 1767 + 1772 ], "tournament_brackets": [ - 3431 + 3477 ], "winner": [ - 1524 + 1529 ], "winning_lineup_id": [ - 3818 + 3864 ], "__typename": [ - 70 + 75 ] }, "matches_max_fields": { "cancels_at": [ - 3421 + 3467 ], "connection_link": [ - 70 + 75 ], "connection_string": [ - 70 + 75 ], "created_at": [ - 3421 + 3467 ], "current_match_map_id": [ - 3818 + 3864 ], "effective_at": [ - 3421 + 3467 ], "ended_at": [ - 3421 + 3467 ], "external_id": [ - 70 + 75 ], "id": [ - 3818 + 3864 ], "invite_code": [ - 70 + 75 ], "label": [ - 70 + 75 ], "lineup_1_id": [ - 3818 + 3864 ], "lineup_2_id": [ - 3818 + 3864 ], "map_veto_picking_lineup_id": [ - 3818 + 3864 ], "map_veto_type": [ - 70 + 75 ], "match_options_id": [ - 3818 + 3864 ], "max_players_per_lineup": [ 38 @@ -35068,158 +35174,158 @@ export default { 38 ], "organizer_steam_id": [ - 169 + 174 ], "password": [ - 70 + 75 ], "region": [ - 70 + 75 ], "region_veto_picking_lineup_id": [ - 3818 + 3864 ], "scheduled_at": [ - 3421 + 3467 ], "server_error": [ - 70 + 75 ], "server_id": [ - 3818 + 3864 ], "server_region": [ - 70 + 75 ], "server_type": [ - 70 + 75 ], "source": [ - 70 + 75 ], "started_at": [ - 3421 + 3467 ], "tv_connection_string": [ - 70 + 75 ], "winning_lineup_id": [ - 3818 + 3864 ], "__typename": [ - 70 + 75 ] }, "matches_max_order_by": { "cancels_at": [ - 2011 + 2016 ], "created_at": [ - 2011 + 2016 ], "effective_at": [ - 2011 + 2016 ], "ended_at": [ - 2011 + 2016 ], "external_id": [ - 2011 + 2016 ], "id": [ - 2011 + 2016 ], "label": [ - 2011 + 2016 ], "lineup_1_id": [ - 2011 + 2016 ], "lineup_2_id": [ - 2011 + 2016 ], "match_options_id": [ - 2011 + 2016 ], "organizer_steam_id": [ - 2011 + 2016 ], "password": [ - 2011 + 2016 ], "region": [ - 2011 + 2016 ], "scheduled_at": [ - 2011 + 2016 ], "server_error": [ - 2011 + 2016 ], "server_id": [ - 2011 + 2016 ], "source": [ - 2011 + 2016 ], "started_at": [ - 2011 + 2016 ], "winning_lineup_id": [ - 2011 + 2016 ], "__typename": [ - 70 + 75 ] }, "matches_min_fields": { "cancels_at": [ - 3421 + 3467 ], "connection_link": [ - 70 + 75 ], "connection_string": [ - 70 + 75 ], "created_at": [ - 3421 + 3467 ], "current_match_map_id": [ - 3818 + 3864 ], "effective_at": [ - 3421 + 3467 ], "ended_at": [ - 3421 + 3467 ], "external_id": [ - 70 + 75 ], "id": [ - 3818 + 3864 ], "invite_code": [ - 70 + 75 ], "label": [ - 70 + 75 ], "lineup_1_id": [ - 3818 + 3864 ], "lineup_2_id": [ - 3818 + 3864 ], "map_veto_picking_lineup_id": [ - 3818 + 3864 ], "map_veto_type": [ - 70 + 75 ], "match_options_id": [ - 3818 + 3864 ], "max_players_per_lineup": [ 38 @@ -35228,108 +35334,108 @@ export default { 38 ], "organizer_steam_id": [ - 169 + 174 ], "password": [ - 70 + 75 ], "region": [ - 70 + 75 ], "region_veto_picking_lineup_id": [ - 3818 + 3864 ], "scheduled_at": [ - 3421 + 3467 ], "server_error": [ - 70 + 75 ], "server_id": [ - 3818 + 3864 ], "server_region": [ - 70 + 75 ], "server_type": [ - 70 + 75 ], "source": [ - 70 + 75 ], "started_at": [ - 3421 + 3467 ], "tv_connection_string": [ - 70 + 75 ], "winning_lineup_id": [ - 3818 + 3864 ], "__typename": [ - 70 + 75 ] }, "matches_min_order_by": { "cancels_at": [ - 2011 + 2016 ], "created_at": [ - 2011 + 2016 ], "effective_at": [ - 2011 + 2016 ], "ended_at": [ - 2011 + 2016 ], "external_id": [ - 2011 + 2016 ], "id": [ - 2011 + 2016 ], "label": [ - 2011 + 2016 ], "lineup_1_id": [ - 2011 + 2016 ], "lineup_2_id": [ - 2011 + 2016 ], "match_options_id": [ - 2011 + 2016 ], "organizer_steam_id": [ - 2011 + 2016 ], "password": [ - 2011 + 2016 ], "region": [ - 2011 + 2016 ], "scheduled_at": [ - 2011 + 2016 ], "server_error": [ - 2011 + 2016 ], "server_id": [ - 2011 + 2016 ], "source": [ - 2011 + 2016 ], "started_at": [ - 2011 + 2016 ], "winning_lineup_id": [ - 2011 + 2016 ], "__typename": [ - 70 + 75 ] }, "matches_mutation_response": { @@ -35337,339 +35443,339 @@ export default { 38 ], "returning": [ - 1826 + 1831 ], "__typename": [ - 70 + 75 ] }, "matches_obj_rel_insert_input": { "data": [ - 1838 + 1843 ], "on_conflict": [ - 1845 + 1850 ], "__typename": [ - 70 + 75 ] }, "matches_on_conflict": { "constraint": [ - 1836 + 1841 ], "update_columns": [ - 1860 + 1865 ], "where": [ - 1835 + 1840 ], "__typename": [ - 70 + 75 ] }, "matches_order_by": { "can_assign_server": [ - 2011 + 2016 ], "can_cancel": [ - 2011 + 2016 ], "can_check_in": [ - 2011 + 2016 ], "can_reassign_winner": [ - 2011 + 2016 ], "can_schedule": [ - 2011 + 2016 ], "can_start": [ - 2011 + 2016 ], "can_stream_live": [ - 2011 + 2016 ], "can_stream_tv": [ - 2011 + 2016 ], "cancels_at": [ - 2011 + 2016 ], "clutches_aggregate": [ - 3868 + 3914 ], "connection_link": [ - 2011 + 2016 ], "connection_string": [ - 2011 + 2016 ], "created_at": [ - 2011 + 2016 ], "current_match_map_id": [ - 2011 + 2016 ], "demos_aggregate": [ - 1555 + 1560 ], "draft_games_aggregate": [ - 349 + 354 ], "e_match_status": [ - 711 + 716 ], "e_region": [ - 2946 + 2983 ], "effective_at": [ - 2011 + 2016 ], "elo_changes_aggregate": [ - 4075 + 4121 ], "ended_at": [ - 2011 + 2016 ], "external_id": [ - 2011 + 2016 ], "id": [ - 2011 + 2016 ], "invite_code": [ - 2011 + 2016 ], "is_captain": [ - 2011 + 2016 ], "is_coach": [ - 2011 + 2016 ], "is_friend_in_match_lineup": [ - 2011 + 2016 ], "is_in_lineup": [ - 2011 + 2016 ], "is_match_server_available": [ - 2011 + 2016 ], "is_organizer": [ - 2011 + 2016 ], "is_server_online": [ - 2011 + 2016 ], "is_tournament_match": [ - 2011 + 2016 ], "label": [ - 2011 + 2016 ], "lineup_1": [ - 1526 + 1531 ], "lineup_1_id": [ - 2011 + 2016 ], "lineup_2": [ - 1526 + 1531 ], "lineup_2_id": [ - 2011 + 2016 ], "lineup_counts": [ - 2011 + 2016 ], "map_veto_picking_lineup_id": [ - 2011 + 2016 ], "map_veto_picks_aggregate": [ - 1645 + 1650 ], "map_veto_type": [ - 2011 + 2016 ], "match_maps_aggregate": [ - 1669 + 1674 ], "match_options_id": [ - 2011 + 2016 ], "max_players_per_lineup": [ - 2011 + 2016 ], "min_players_per_lineup": [ - 2011 + 2016 ], "opening_duels_aggregate": [ - 3996 + 4042 ], "options": [ - 1719 + 1724 ], "organizer": [ - 2891 + 2928 ], "organizer_steam_id": [ - 2011 + 2016 ], "password": [ - 2011 + 2016 ], "player_assists_aggregate": [ - 2156 + 2161 ], "player_damages_aggregate": [ - 2217 + 2222 ], "player_flashes_aggregate": [ - 2328 + 2333 ], "player_kills_aggregate": [ - 2373 + 2378 ], "player_objectives_aggregate": [ - 2572 + 2577 ], "player_unused_utilities_aggregate": [ - 2768 + 2805 ], "player_utility_aggregate": [ - 2809 + 2846 ], "region": [ - 2011 + 2016 ], "region_veto_picking_lineup_id": [ - 2011 + 2016 ], "region_veto_picks_aggregate": [ - 1739 + 1744 ], "requested_organizer": [ - 2011 + 2016 ], "scheduled_at": [ - 2011 + 2016 ], "server": [ - 2983 + 3020 ], "server_error": [ - 2011 + 2016 ], "server_id": [ - 2011 + 2016 ], "server_region": [ - 2011 + 2016 ], "server_type": [ - 2011 + 2016 ], "source": [ - 2011 + 2016 ], "started_at": [ - 2011 + 2016 ], "status": [ - 2011 + 2016 ], "streams_aggregate": [ - 1765 + 1770 ], "teams_aggregate": [ - 3383 + 3429 ], "tournament_brackets_aggregate": [ - 3430 + 3476 ], "tv_connection_string": [ - 2011 + 2016 ], "winner": [ - 1526 + 1531 ], "winning_lineup_id": [ - 2011 + 2016 ], "__typename": [ - 70 + 75 ] }, "matches_pk_columns_input": { "id": [ - 3818 + 3864 ], "__typename": [ - 70 + 75 ] }, "matches_select_column": {}, "matches_set_input": { "cancels_at": [ - 3421 + 3467 ], "created_at": [ - 3421 + 3467 ], "ended_at": [ - 3421 + 3467 ], "external_id": [ - 70 + 75 ], "id": [ - 3818 + 3864 ], "label": [ - 70 + 75 ], "lineup_1_id": [ - 3818 + 3864 ], "lineup_2_id": [ - 3818 + 3864 ], "match_options_id": [ - 3818 + 3864 ], "organizer_steam_id": [ - 169 + 174 ], "password": [ - 70 + 75 ], "region": [ - 70 + 75 ], "scheduled_at": [ - 3421 + 3467 ], "server_error": [ - 70 + 75 ], "server_id": [ - 3818 + 3864 ], "source": [ - 70 + 75 ], "started_at": [ - 3421 + 3467 ], "status": [ - 703 + 708 ], "winning_lineup_id": [ - 3818 + 3864 ], "__typename": [ - 70 + 75 ] }, "matches_stddev_fields": { @@ -35683,15 +35789,15 @@ export default { 29 ], "__typename": [ - 70 + 75 ] }, "matches_stddev_order_by": { "organizer_steam_id": [ - 2011 + 2016 ], "__typename": [ - 70 + 75 ] }, "matches_stddev_pop_fields": { @@ -35705,15 +35811,15 @@ export default { 29 ], "__typename": [ - 70 + 75 ] }, "matches_stddev_pop_order_by": { "organizer_steam_id": [ - 2011 + 2016 ], "__typename": [ - 70 + 75 ] }, "matches_stddev_samp_fields": { @@ -35727,91 +35833,91 @@ export default { 29 ], "__typename": [ - 70 + 75 ] }, "matches_stddev_samp_order_by": { "organizer_steam_id": [ - 2011 + 2016 ], "__typename": [ - 70 + 75 ] }, "matches_stream_cursor_input": { "initial_value": [ - 1857 + 1862 ], "ordering": [ - 224 + 229 ], "__typename": [ - 70 + 75 ] }, "matches_stream_cursor_value_input": { "cancels_at": [ - 3421 + 3467 ], "created_at": [ - 3421 + 3467 ], "effective_at": [ - 3421 + 3467 ], "ended_at": [ - 3421 + 3467 ], "external_id": [ - 70 + 75 ], "id": [ - 3818 + 3864 ], "label": [ - 70 + 75 ], "lineup_1_id": [ - 3818 + 3864 ], "lineup_2_id": [ - 3818 + 3864 ], "match_options_id": [ - 3818 + 3864 ], "organizer_steam_id": [ - 169 + 174 ], "password": [ - 70 + 75 ], "region": [ - 70 + 75 ], "scheduled_at": [ - 3421 + 3467 ], "server_error": [ - 70 + 75 ], "server_id": [ - 3818 + 3864 ], "source": [ - 70 + 75 ], "started_at": [ - 3421 + 3467 ], "status": [ - 703 + 708 ], "winning_lineup_id": [ - 3818 + 3864 ], "__typename": [ - 70 + 75 ] }, "matches_sum_fields": { @@ -35822,33 +35928,33 @@ export default { 38 ], "organizer_steam_id": [ - 169 + 174 ], "__typename": [ - 70 + 75 ] }, "matches_sum_order_by": { "organizer_steam_id": [ - 2011 + 2016 ], "__typename": [ - 70 + 75 ] }, "matches_update_column": {}, "matches_updates": { "_inc": [ - 1837 + 1842 ], "_set": [ - 1849 + 1854 ], "where": [ - 1835 + 1840 ], "__typename": [ - 70 + 75 ] }, "matches_var_pop_fields": { @@ -35862,15 +35968,15 @@ export default { 29 ], "__typename": [ - 70 + 75 ] }, "matches_var_pop_order_by": { "organizer_steam_id": [ - 2011 + 2016 ], "__typename": [ - 70 + 75 ] }, "matches_var_samp_fields": { @@ -35884,15 +35990,15 @@ export default { 29 ], "__typename": [ - 70 + 75 ] }, "matches_var_samp_order_by": { "organizer_steam_id": [ - 2011 + 2016 ], "__typename": [ - 70 + 75 ] }, "matches_variance_fields": { @@ -35906,37 +36012,37 @@ export default { 29 ], "__typename": [ - 70 + 75 ] }, "matches_variance_order_by": { "organizer_steam_id": [ - 2011 + 2016 ], "__typename": [ - 70 + 75 ] }, "migration_hashes_hashes": { "hash": [ - 70 + 75 ], "name": [ - 70 + 75 ], "__typename": [ - 70 + 75 ] }, "migration_hashes_hashes_aggregate": { "aggregate": [ - 1870 + 1875 ], "nodes": [ - 1868 + 1873 ], "__typename": [ - 70 + 75 ] }, "migration_hashes_hashes_aggregate_fields": { @@ -35944,7 +36050,7 @@ export default { 38, { "columns": [ - 1880, + 1885, "[migration_hashes_hashes_select_column!]" ], "distinct": [ @@ -35953,67 +36059,67 @@ export default { } ], "max": [ - 1874 + 1879 ], "min": [ - 1875 + 1880 ], "__typename": [ - 70 + 75 ] }, "migration_hashes_hashes_bool_exp": { "_and": [ - 1871 + 1876 ], "_not": [ - 1871 + 1876 ], "_or": [ - 1871 + 1876 ], "hash": [ - 72 + 77 ], "name": [ - 72 + 77 ], "__typename": [ - 70 + 75 ] }, "migration_hashes_hashes_constraint": {}, "migration_hashes_hashes_insert_input": { "hash": [ - 70 + 75 ], "name": [ - 70 + 75 ], "__typename": [ - 70 + 75 ] }, "migration_hashes_hashes_max_fields": { "hash": [ - 70 + 75 ], "name": [ - 70 + 75 ], "__typename": [ - 70 + 75 ] }, "migration_hashes_hashes_min_fields": { "hash": [ - 70 + 75 ], "name": [ - 70 + 75 ], "__typename": [ - 70 + 75 ] }, "migration_hashes_hashes_mutation_response": { @@ -36021,234 +36127,234 @@ export default { 38 ], "returning": [ - 1868 + 1873 ], "__typename": [ - 70 + 75 ] }, "migration_hashes_hashes_on_conflict": { "constraint": [ - 1872 + 1877 ], "update_columns": [ - 1884 + 1889 ], "where": [ - 1871 + 1876 ], "__typename": [ - 70 + 75 ] }, "migration_hashes_hashes_order_by": { "hash": [ - 2011 + 2016 ], "name": [ - 2011 + 2016 ], "__typename": [ - 70 + 75 ] }, "migration_hashes_hashes_pk_columns_input": { "name": [ - 70 + 75 ], "__typename": [ - 70 + 75 ] }, "migration_hashes_hashes_select_column": {}, "migration_hashes_hashes_set_input": { "hash": [ - 70 + 75 ], "name": [ - 70 + 75 ], "__typename": [ - 70 + 75 ] }, "migration_hashes_hashes_stream_cursor_input": { "initial_value": [ - 1883 + 1888 ], "ordering": [ - 224 + 229 ], "__typename": [ - 70 + 75 ] }, "migration_hashes_hashes_stream_cursor_value_input": { "hash": [ - 70 + 75 ], "name": [ - 70 + 75 ], "__typename": [ - 70 + 75 ] }, "migration_hashes_hashes_update_column": {}, "migration_hashes_hashes_updates": { "_set": [ - 1881 + 1886 ], "where": [ - 1871 + 1876 ], "__typename": [ - 70 + 75 ] }, "my_friends": { "avatar_url": [ - 70 + 75 ], "country": [ - 70 + 75 ], "created_at": [ - 3421 + 3467 ], "discord_id": [ - 70 + 75 ], "elo": [ - 1235, + 1240, { "path": [ - 70 + 75 ] } ], "friend_steam_id": [ - 169 + 174 ], "invited_by_steam_id": [ - 169 + 174 ], "language": [ - 70 + 75 ], "last_sign_in_at": [ - 3421 + 3467 ], "name": [ - 70 + 75 ], "name_registered": [ 3 ], "player": [ - 2878 + 2915 ], "profile_url": [ - 70 + 75 ], "role": [ - 70 + 75 ], "status": [ - 70 + 75 ], "steam_id": [ - 169 + 174 ], "__typename": [ - 70 + 75 ] }, "my_friends_aggregate": { "aggregate": [ - 1892 + 1897 ], "nodes": [ - 1886 + 1891 ], "__typename": [ - 70 + 75 ] }, "my_friends_aggregate_bool_exp": { "bool_and": [ - 1889 + 1894 ], "bool_or": [ - 1890 + 1895 ], "count": [ - 1891 + 1896 ], "__typename": [ - 70 + 75 ] }, "my_friends_aggregate_bool_exp_bool_and": { "arguments": [ - 1912 + 1917 ], "distinct": [ 3 ], "filter": [ - 1898 + 1903 ], "predicate": [ 4 ], "__typename": [ - 70 + 75 ] }, "my_friends_aggregate_bool_exp_bool_or": { "arguments": [ - 1913 + 1918 ], "distinct": [ 3 ], "filter": [ - 1898 + 1903 ], "predicate": [ 4 ], "__typename": [ - 70 + 75 ] }, "my_friends_aggregate_bool_exp_count": { "arguments": [ - 1911 + 1916 ], "distinct": [ 3 ], "filter": [ - 1898 + 1903 ], "predicate": [ 39 ], "__typename": [ - 70 + 75 ] }, "my_friends_aggregate_fields": { "avg": [ - 1896 + 1901 ], "count": [ 38, { "columns": [ - 1911, + 1916, "[my_friends_select_column!]" ], "distinct": [ @@ -36257,88 +36363,88 @@ export default { } ], "max": [ - 1904 + 1909 ], "min": [ - 1906 + 1911 ], "stddev": [ - 1915 + 1920 ], "stddev_pop": [ - 1917 + 1922 ], "stddev_samp": [ - 1919 + 1924 ], "sum": [ - 1923 + 1928 ], "var_pop": [ - 1926 + 1931 ], "var_samp": [ - 1928 + 1933 ], "variance": [ - 1930 + 1935 ], "__typename": [ - 70 + 75 ] }, "my_friends_aggregate_order_by": { "avg": [ - 1897 + 1902 ], "count": [ - 2011 + 2016 ], "max": [ - 1905 + 1910 ], "min": [ - 1907 + 1912 ], "stddev": [ - 1916 + 1921 ], "stddev_pop": [ - 1918 + 1923 ], "stddev_samp": [ - 1920 + 1925 ], "sum": [ - 1924 + 1929 ], "var_pop": [ - 1927 + 1932 ], "var_samp": [ - 1929 + 1934 ], "variance": [ - 1931 + 1936 ], "__typename": [ - 70 + 75 ] }, "my_friends_append_input": { "elo": [ - 1235 + 1240 ], "__typename": [ - 70 + 75 ] }, "my_friends_arr_rel_insert_input": { "data": [ - 1903 + 1908 ], "__typename": [ - 70 + 75 ] }, "my_friends_avg_fields": { @@ -36352,91 +36458,91 @@ export default { 29 ], "__typename": [ - 70 + 75 ] }, "my_friends_avg_order_by": { "friend_steam_id": [ - 2011 + 2016 ], "invited_by_steam_id": [ - 2011 + 2016 ], "steam_id": [ - 2011 + 2016 ], "__typename": [ - 70 + 75 ] }, "my_friends_bool_exp": { "_and": [ - 1898 + 1903 ], "_not": [ - 1898 + 1903 ], "_or": [ - 1898 + 1903 ], "avatar_url": [ - 72 + 77 ], "country": [ - 72 + 77 ], "created_at": [ - 3422 + 3468 ], "discord_id": [ - 72 + 77 ], "elo": [ - 1237 + 1242 ], "friend_steam_id": [ - 171 + 176 ], "invited_by_steam_id": [ - 171 + 176 ], "language": [ - 72 + 77 ], "last_sign_in_at": [ - 3422 + 3468 ], "name": [ - 72 + 77 ], "name_registered": [ 4 ], "player": [ - 2882 + 2919 ], "profile_url": [ - 72 + 77 ], "role": [ - 72 + 77 ], "status": [ - 72 + 77 ], "steam_id": [ - 171 + 176 ], "__typename": [ - 70 + 75 ] }, "my_friends_delete_at_path_input": { "elo": [ - 70 + 75 ], "__typename": [ - 70 + 75 ] }, "my_friends_delete_elem_input": { @@ -36444,258 +36550,258 @@ export default { 38 ], "__typename": [ - 70 + 75 ] }, "my_friends_delete_key_input": { "elo": [ - 70 + 75 ], "__typename": [ - 70 + 75 ] }, "my_friends_inc_input": { "friend_steam_id": [ - 169 + 174 ], "invited_by_steam_id": [ - 169 + 174 ], "steam_id": [ - 169 + 174 ], "__typename": [ - 70 + 75 ] }, "my_friends_insert_input": { "avatar_url": [ - 70 + 75 ], "country": [ - 70 + 75 ], "created_at": [ - 3421 + 3467 ], "discord_id": [ - 70 + 75 ], "elo": [ - 1235 + 1240 ], "friend_steam_id": [ - 169 + 174 ], "invited_by_steam_id": [ - 169 + 174 ], "language": [ - 70 + 75 ], "last_sign_in_at": [ - 3421 + 3467 ], "name": [ - 70 + 75 ], "name_registered": [ 3 ], "player": [ - 2889 + 2926 ], "profile_url": [ - 70 + 75 ], "role": [ - 70 + 75 ], "status": [ - 70 + 75 ], "steam_id": [ - 169 + 174 ], "__typename": [ - 70 + 75 ] }, "my_friends_max_fields": { "avatar_url": [ - 70 + 75 ], "country": [ - 70 + 75 ], "created_at": [ - 3421 + 3467 ], "discord_id": [ - 70 + 75 ], "friend_steam_id": [ - 169 + 174 ], "invited_by_steam_id": [ - 169 + 174 ], "language": [ - 70 + 75 ], "last_sign_in_at": [ - 3421 + 3467 ], "name": [ - 70 + 75 ], "profile_url": [ - 70 + 75 ], "role": [ - 70 + 75 ], "status": [ - 70 + 75 ], "steam_id": [ - 169 + 174 ], "__typename": [ - 70 + 75 ] }, "my_friends_max_order_by": { "avatar_url": [ - 2011 + 2016 ], "country": [ - 2011 + 2016 ], "created_at": [ - 2011 + 2016 ], "discord_id": [ - 2011 + 2016 ], "friend_steam_id": [ - 2011 + 2016 ], "invited_by_steam_id": [ - 2011 + 2016 ], "language": [ - 2011 + 2016 ], "last_sign_in_at": [ - 2011 + 2016 ], "name": [ - 2011 + 2016 ], "profile_url": [ - 2011 + 2016 ], "role": [ - 2011 + 2016 ], "status": [ - 2011 + 2016 ], "steam_id": [ - 2011 + 2016 ], "__typename": [ - 70 + 75 ] }, "my_friends_min_fields": { "avatar_url": [ - 70 + 75 ], "country": [ - 70 + 75 ], "created_at": [ - 3421 + 3467 ], "discord_id": [ - 70 + 75 ], "friend_steam_id": [ - 169 + 174 ], "invited_by_steam_id": [ - 169 + 174 ], "language": [ - 70 + 75 ], "last_sign_in_at": [ - 3421 + 3467 ], "name": [ - 70 + 75 ], "profile_url": [ - 70 + 75 ], "role": [ - 70 + 75 ], "status": [ - 70 + 75 ], "steam_id": [ - 169 + 174 ], "__typename": [ - 70 + 75 ] }, "my_friends_min_order_by": { "avatar_url": [ - 2011 + 2016 ], "country": [ - 2011 + 2016 ], "created_at": [ - 2011 + 2016 ], "discord_id": [ - 2011 + 2016 ], "friend_steam_id": [ - 2011 + 2016 ], "invited_by_steam_id": [ - 2011 + 2016 ], "language": [ - 2011 + 2016 ], "last_sign_in_at": [ - 2011 + 2016 ], "name": [ - 2011 + 2016 ], "profile_url": [ - 2011 + 2016 ], "role": [ - 2011 + 2016 ], "status": [ - 2011 + 2016 ], "steam_id": [ - 2011 + 2016 ], "__typename": [ - 70 + 75 ] }, "my_friends_mutation_response": { @@ -36703,71 +36809,71 @@ export default { 38 ], "returning": [ - 1886 + 1891 ], "__typename": [ - 70 + 75 ] }, "my_friends_order_by": { "avatar_url": [ - 2011 + 2016 ], "country": [ - 2011 + 2016 ], "created_at": [ - 2011 + 2016 ], "discord_id": [ - 2011 + 2016 ], "elo": [ - 2011 + 2016 ], "friend_steam_id": [ - 2011 + 2016 ], "invited_by_steam_id": [ - 2011 + 2016 ], "language": [ - 2011 + 2016 ], "last_sign_in_at": [ - 2011 + 2016 ], "name": [ - 2011 + 2016 ], "name_registered": [ - 2011 + 2016 ], "player": [ - 2891 + 2928 ], "profile_url": [ - 2011 + 2016 ], "role": [ - 2011 + 2016 ], "status": [ - 2011 + 2016 ], "steam_id": [ - 2011 + 2016 ], "__typename": [ - 70 + 75 ] }, "my_friends_prepend_input": { "elo": [ - 1235 + 1240 ], "__typename": [ - 70 + 75 ] }, "my_friends_select_column": {}, @@ -36775,52 +36881,52 @@ export default { "my_friends_select_column_my_friends_aggregate_bool_exp_bool_or_arguments_columns": {}, "my_friends_set_input": { "avatar_url": [ - 70 + 75 ], "country": [ - 70 + 75 ], "created_at": [ - 3421 + 3467 ], "discord_id": [ - 70 + 75 ], "elo": [ - 1235 + 1240 ], "friend_steam_id": [ - 169 + 174 ], "invited_by_steam_id": [ - 169 + 174 ], "language": [ - 70 + 75 ], "last_sign_in_at": [ - 3421 + 3467 ], "name": [ - 70 + 75 ], "name_registered": [ 3 ], "profile_url": [ - 70 + 75 ], "role": [ - 70 + 75 ], "status": [ - 70 + 75 ], "steam_id": [ - 169 + 174 ], "__typename": [ - 70 + 75 ] }, "my_friends_stddev_fields": { @@ -36834,21 +36940,21 @@ export default { 29 ], "__typename": [ - 70 + 75 ] }, "my_friends_stddev_order_by": { "friend_steam_id": [ - 2011 + 2016 ], "invited_by_steam_id": [ - 2011 + 2016 ], "steam_id": [ - 2011 + 2016 ], "__typename": [ - 70 + 75 ] }, "my_friends_stddev_pop_fields": { @@ -36862,21 +36968,21 @@ export default { 29 ], "__typename": [ - 70 + 75 ] }, "my_friends_stddev_pop_order_by": { "friend_steam_id": [ - 2011 + 2016 ], "invited_by_steam_id": [ - 2011 + 2016 ], "steam_id": [ - 2011 + 2016 ], "__typename": [ - 70 + 75 ] }, "my_friends_stddev_samp_fields": { @@ -36890,139 +36996,139 @@ export default { 29 ], "__typename": [ - 70 + 75 ] }, "my_friends_stddev_samp_order_by": { "friend_steam_id": [ - 2011 + 2016 ], "invited_by_steam_id": [ - 2011 + 2016 ], "steam_id": [ - 2011 + 2016 ], "__typename": [ - 70 + 75 ] }, "my_friends_stream_cursor_input": { "initial_value": [ - 1922 + 1927 ], "ordering": [ - 224 + 229 ], "__typename": [ - 70 + 75 ] }, "my_friends_stream_cursor_value_input": { "avatar_url": [ - 70 + 75 ], "country": [ - 70 + 75 ], "created_at": [ - 3421 + 3467 ], "discord_id": [ - 70 + 75 ], "elo": [ - 1235 + 1240 ], "friend_steam_id": [ - 169 + 174 ], "invited_by_steam_id": [ - 169 + 174 ], "language": [ - 70 + 75 ], "last_sign_in_at": [ - 3421 + 3467 ], "name": [ - 70 + 75 ], "name_registered": [ 3 ], "profile_url": [ - 70 + 75 ], "role": [ - 70 + 75 ], "status": [ - 70 + 75 ], "steam_id": [ - 169 + 174 ], "__typename": [ - 70 + 75 ] }, "my_friends_sum_fields": { "friend_steam_id": [ - 169 + 174 ], "invited_by_steam_id": [ - 169 + 174 ], "steam_id": [ - 169 + 174 ], "__typename": [ - 70 + 75 ] }, "my_friends_sum_order_by": { "friend_steam_id": [ - 2011 + 2016 ], "invited_by_steam_id": [ - 2011 + 2016 ], "steam_id": [ - 2011 + 2016 ], "__typename": [ - 70 + 75 ] }, "my_friends_updates": { "_append": [ - 1894 + 1899 ], "_delete_at_path": [ - 1899 + 1904 ], "_delete_elem": [ - 1900 + 1905 ], "_delete_key": [ - 1901 + 1906 ], "_inc": [ - 1902 + 1907 ], "_prepend": [ - 1910 + 1915 ], "_set": [ - 1914 + 1919 ], "where": [ - 1898 + 1903 ], "__typename": [ - 70 + 75 ] }, "my_friends_var_pop_fields": { @@ -37036,21 +37142,21 @@ export default { 29 ], "__typename": [ - 70 + 75 ] }, "my_friends_var_pop_order_by": { "friend_steam_id": [ - 2011 + 2016 ], "invited_by_steam_id": [ - 2011 + 2016 ], "steam_id": [ - 2011 + 2016 ], "__typename": [ - 70 + 75 ] }, "my_friends_var_samp_fields": { @@ -37064,21 +37170,21 @@ export default { 29 ], "__typename": [ - 70 + 75 ] }, "my_friends_var_samp_order_by": { "friend_steam_id": [ - 2011 + 2016 ], "invited_by_steam_id": [ - 2011 + 2016 ], "steam_id": [ - 2011 + 2016 ], "__typename": [ - 70 + 75 ] }, "my_friends_variance_fields": { @@ -37092,87 +37198,87 @@ export default { 29 ], "__typename": [ - 70 + 75 ] }, "my_friends_variance_order_by": { "friend_steam_id": [ - 2011 + 2016 ], "invited_by_steam_id": [ - 2011 + 2016 ], "steam_id": [ - 2011 + 2016 ], "__typename": [ - 70 + 75 ] }, "news_articles": { "author": [ - 2878 + 2915 ], "author_steam_id": [ - 169 + 174 ], "content_markdown": [ - 70 + 75 ], "cover_image_url": [ - 70 + 75 ], "created_at": [ - 3421 + 3467 ], "id": [ - 3818 + 3864 ], "published_at": [ - 3421 + 3467 ], "slug": [ - 70 + 75 ], "status": [ - 70 + 75 ], "teaser": [ - 70 + 75 ], "title": [ - 70 + 75 ], "updated_at": [ - 3421 + 3467 ], "view_count": [ - 169 + 174 ], "__typename": [ - 70 + 75 ] }, "news_articles_aggregate": { "aggregate": [ - 1934 + 1939 ], "nodes": [ - 1932 + 1937 ], "__typename": [ - 70 + 75 ] }, "news_articles_aggregate_fields": { "avg": [ - 1935 + 1940 ], "count": [ 38, { "columns": [ - 1946, + 1951, "[news_articles_select_column!]" ], "distinct": [ @@ -37181,34 +37287,34 @@ export default { } ], "max": [ - 1940 + 1945 ], "min": [ - 1941 + 1946 ], "stddev": [ - 1948 + 1953 ], "stddev_pop": [ - 1949 + 1954 ], "stddev_samp": [ - 1950 + 1955 ], "sum": [ - 1953 + 1958 ], "var_pop": [ - 1956 + 1961 ], "var_samp": [ - 1957 + 1962 ], "variance": [ - 1958 + 1963 ], "__typename": [ - 70 + 75 ] }, "news_articles_avg_fields": { @@ -37219,198 +37325,198 @@ export default { 29 ], "__typename": [ - 70 + 75 ] }, "news_articles_bool_exp": { "_and": [ - 1936 + 1941 ], "_not": [ - 1936 + 1941 ], "_or": [ - 1936 + 1941 ], "author": [ - 2882 + 2919 ], "author_steam_id": [ - 171 + 176 ], "content_markdown": [ - 72 + 77 ], "cover_image_url": [ - 72 + 77 ], "created_at": [ - 3422 + 3468 ], "id": [ - 3820 + 3866 ], "published_at": [ - 3422 + 3468 ], "slug": [ - 72 + 77 ], "status": [ - 72 + 77 ], "teaser": [ - 72 + 77 ], "title": [ - 72 + 77 ], "updated_at": [ - 3422 + 3468 ], "view_count": [ - 171 + 176 ], "__typename": [ - 70 + 75 ] }, "news_articles_constraint": {}, "news_articles_inc_input": { "author_steam_id": [ - 169 + 174 ], "view_count": [ - 169 + 174 ], "__typename": [ - 70 + 75 ] }, "news_articles_insert_input": { "author": [ - 2889 + 2926 ], "author_steam_id": [ - 169 + 174 ], "content_markdown": [ - 70 + 75 ], "cover_image_url": [ - 70 + 75 ], "created_at": [ - 3421 + 3467 ], "id": [ - 3818 + 3864 ], "published_at": [ - 3421 + 3467 ], "slug": [ - 70 + 75 ], "status": [ - 70 + 75 ], "teaser": [ - 70 + 75 ], "title": [ - 70 + 75 ], "updated_at": [ - 3421 + 3467 ], "view_count": [ - 169 + 174 ], "__typename": [ - 70 + 75 ] }, "news_articles_max_fields": { "author_steam_id": [ - 169 + 174 ], "content_markdown": [ - 70 + 75 ], "cover_image_url": [ - 70 + 75 ], "created_at": [ - 3421 + 3467 ], "id": [ - 3818 + 3864 ], "published_at": [ - 3421 + 3467 ], "slug": [ - 70 + 75 ], "status": [ - 70 + 75 ], "teaser": [ - 70 + 75 ], "title": [ - 70 + 75 ], "updated_at": [ - 3421 + 3467 ], "view_count": [ - 169 + 174 ], "__typename": [ - 70 + 75 ] }, "news_articles_min_fields": { "author_steam_id": [ - 169 + 174 ], "content_markdown": [ - 70 + 75 ], "cover_image_url": [ - 70 + 75 ], "created_at": [ - 3421 + 3467 ], "id": [ - 3818 + 3864 ], "published_at": [ - 3421 + 3467 ], "slug": [ - 70 + 75 ], "status": [ - 70 + 75 ], "teaser": [ - 70 + 75 ], "title": [ - 70 + 75 ], "updated_at": [ - 3421 + 3467 ], "view_count": [ - 169 + 174 ], "__typename": [ - 70 + 75 ] }, "news_articles_mutation_response": { @@ -37418,118 +37524,118 @@ export default { 38 ], "returning": [ - 1932 + 1937 ], "__typename": [ - 70 + 75 ] }, "news_articles_on_conflict": { "constraint": [ - 1937 + 1942 ], "update_columns": [ - 1954 + 1959 ], "where": [ - 1936 + 1941 ], "__typename": [ - 70 + 75 ] }, "news_articles_order_by": { "author": [ - 2891 + 2928 ], "author_steam_id": [ - 2011 + 2016 ], "content_markdown": [ - 2011 + 2016 ], "cover_image_url": [ - 2011 + 2016 ], "created_at": [ - 2011 + 2016 ], "id": [ - 2011 + 2016 ], "published_at": [ - 2011 + 2016 ], "slug": [ - 2011 + 2016 ], "status": [ - 2011 + 2016 ], "teaser": [ - 2011 + 2016 ], "title": [ - 2011 + 2016 ], "updated_at": [ - 2011 + 2016 ], "view_count": [ - 2011 + 2016 ], "__typename": [ - 70 + 75 ] }, "news_articles_pk_columns_input": { "id": [ - 3818 + 3864 ], "__typename": [ - 70 + 75 ] }, "news_articles_select_column": {}, "news_articles_set_input": { "author_steam_id": [ - 169 + 174 ], "content_markdown": [ - 70 + 75 ], "cover_image_url": [ - 70 + 75 ], "created_at": [ - 3421 + 3467 ], "id": [ - 3818 + 3864 ], "published_at": [ - 3421 + 3467 ], "slug": [ - 70 + 75 ], "status": [ - 70 + 75 ], "teaser": [ - 70 + 75 ], "title": [ - 70 + 75 ], "updated_at": [ - 3421 + 3467 ], "view_count": [ - 169 + 174 ], "__typename": [ - 70 + 75 ] }, "news_articles_stddev_fields": { @@ -37540,7 +37646,7 @@ export default { 29 ], "__typename": [ - 70 + 75 ] }, "news_articles_stddev_pop_fields": { @@ -37551,7 +37657,7 @@ export default { 29 ], "__typename": [ - 70 + 75 ] }, "news_articles_stddev_samp_fields": { @@ -37562,85 +37668,85 @@ export default { 29 ], "__typename": [ - 70 + 75 ] }, "news_articles_stream_cursor_input": { "initial_value": [ - 1952 + 1957 ], "ordering": [ - 224 + 229 ], "__typename": [ - 70 + 75 ] }, "news_articles_stream_cursor_value_input": { "author_steam_id": [ - 169 + 174 ], "content_markdown": [ - 70 + 75 ], "cover_image_url": [ - 70 + 75 ], "created_at": [ - 3421 + 3467 ], "id": [ - 3818 + 3864 ], "published_at": [ - 3421 + 3467 ], "slug": [ - 70 + 75 ], "status": [ - 70 + 75 ], "teaser": [ - 70 + 75 ], "title": [ - 70 + 75 ], "updated_at": [ - 3421 + 3467 ], "view_count": [ - 169 + 174 ], "__typename": [ - 70 + 75 ] }, "news_articles_sum_fields": { "author_steam_id": [ - 169 + 174 ], "view_count": [ - 169 + 174 ], "__typename": [ - 70 + 75 ] }, "news_articles_update_column": {}, "news_articles_updates": { "_inc": [ - 1938 + 1943 ], "_set": [ - 1947 + 1952 ], "where": [ - 1936 + 1941 ], "__typename": [ - 70 + 75 ] }, "news_articles_var_pop_fields": { @@ -37651,7 +37757,7 @@ export default { 29 ], "__typename": [ - 70 + 75 ] }, "news_articles_var_samp_fields": { @@ -37662,7 +37768,7 @@ export default { 29 ], "__typename": [ - 70 + 75 ] }, "news_articles_variance_fields": { @@ -37673,143 +37779,143 @@ export default { 29 ], "__typename": [ - 70 + 75 ] }, "notifications": { "actions": [ - 1235, + 1240, { "path": [ - 70 + 75 ] } ], "created_at": [ - 3421 + 3467 ], "deletable": [ 3 ], "deleted_at": [ - 3421 + 3467 ], "entity_id": [ - 70 + 75 ], "id": [ - 3818 + 3864 ], "is_read": [ 3 ], "message": [ - 70 + 75 ], "player": [ - 2878 + 2915 ], "role": [ - 785 + 790 ], "steam_id": [ - 169 + 174 ], "title": [ - 70 + 75 ], "type": [ - 745 + 750 ], "__typename": [ - 70 + 75 ] }, "notifications_aggregate": { "aggregate": [ - 1965 + 1970 ], "nodes": [ - 1959 + 1964 ], "__typename": [ - 70 + 75 ] }, "notifications_aggregate_bool_exp": { "bool_and": [ - 1962 + 1967 ], "bool_or": [ - 1963 + 1968 ], "count": [ - 1964 + 1969 ], "__typename": [ - 70 + 75 ] }, "notifications_aggregate_bool_exp_bool_and": { "arguments": [ - 1988 + 1993 ], "distinct": [ 3 ], "filter": [ - 1971 + 1976 ], "predicate": [ 4 ], "__typename": [ - 70 + 75 ] }, "notifications_aggregate_bool_exp_bool_or": { "arguments": [ - 1989 + 1994 ], "distinct": [ 3 ], "filter": [ - 1971 + 1976 ], "predicate": [ 4 ], "__typename": [ - 70 + 75 ] }, "notifications_aggregate_bool_exp_count": { "arguments": [ - 1987 + 1992 ], "distinct": [ 3 ], "filter": [ - 1971 + 1976 ], "predicate": [ 39 ], "__typename": [ - 70 + 75 ] }, "notifications_aggregate_fields": { "avg": [ - 1969 + 1974 ], "count": [ 38, { "columns": [ - 1987, + 1992, "[notifications_select_column!]" ], "distinct": [ @@ -37818,91 +37924,91 @@ export default { } ], "max": [ - 1978 + 1983 ], "min": [ - 1980 + 1985 ], "stddev": [ - 1991 + 1996 ], "stddev_pop": [ - 1993 + 1998 ], "stddev_samp": [ - 1995 + 2000 ], "sum": [ - 1999 + 2004 ], "var_pop": [ - 2003 + 2008 ], "var_samp": [ - 2005 + 2010 ], "variance": [ - 2007 + 2012 ], "__typename": [ - 70 + 75 ] }, "notifications_aggregate_order_by": { "avg": [ - 1970 + 1975 ], "count": [ - 2011 + 2016 ], "max": [ - 1979 + 1984 ], "min": [ - 1981 + 1986 ], "stddev": [ - 1992 + 1997 ], "stddev_pop": [ - 1994 + 1999 ], "stddev_samp": [ - 1996 + 2001 ], "sum": [ - 2000 + 2005 ], "var_pop": [ - 2004 + 2009 ], "var_samp": [ - 2006 + 2011 ], "variance": [ - 2008 + 2013 ], "__typename": [ - 70 + 75 ] }, "notifications_append_input": { "actions": [ - 1235 + 1240 ], "__typename": [ - 70 + 75 ] }, "notifications_arr_rel_insert_input": { "data": [ - 1977 + 1982 ], "on_conflict": [ - 1983 + 1988 ], "__typename": [ - 70 + 75 ] }, "notifications_avg_fields": { @@ -37910,77 +38016,77 @@ export default { 29 ], "__typename": [ - 70 + 75 ] }, "notifications_avg_order_by": { "steam_id": [ - 2011 + 2016 ], "__typename": [ - 70 + 75 ] }, "notifications_bool_exp": { "_and": [ - 1971 + 1976 ], "_not": [ - 1971 + 1976 ], "_or": [ - 1971 + 1976 ], "actions": [ - 1237 + 1242 ], "created_at": [ - 3422 + 3468 ], "deletable": [ 4 ], "deleted_at": [ - 3422 + 3468 ], "entity_id": [ - 72 + 77 ], "id": [ - 3820 + 3866 ], "is_read": [ 4 ], "message": [ - 72 + 77 ], "player": [ - 2882 + 2919 ], "role": [ - 786 + 791 ], "steam_id": [ - 171 + 176 ], "title": [ - 72 + 77 ], "type": [ - 746 + 751 ], "__typename": [ - 70 + 75 ] }, "notifications_constraint": {}, "notifications_delete_at_path_input": { "actions": [ - 70 + 75 ], "__typename": [ - 70 + 75 ] }, "notifications_delete_elem_input": { @@ -37988,171 +38094,171 @@ export default { 38 ], "__typename": [ - 70 + 75 ] }, "notifications_delete_key_input": { "actions": [ - 70 + 75 ], "__typename": [ - 70 + 75 ] }, "notifications_inc_input": { "steam_id": [ - 169 + 174 ], "__typename": [ - 70 + 75 ] }, "notifications_insert_input": { "actions": [ - 1235 + 1240 ], "created_at": [ - 3421 + 3467 ], "deletable": [ 3 ], "deleted_at": [ - 3421 + 3467 ], "entity_id": [ - 70 + 75 ], "id": [ - 3818 + 3864 ], "is_read": [ 3 ], "message": [ - 70 + 75 ], "player": [ - 2889 + 2926 ], "role": [ - 785 + 790 ], "steam_id": [ - 169 + 174 ], "title": [ - 70 + 75 ], "type": [ - 745 + 750 ], "__typename": [ - 70 + 75 ] }, "notifications_max_fields": { "created_at": [ - 3421 + 3467 ], "deleted_at": [ - 3421 + 3467 ], "entity_id": [ - 70 + 75 ], "id": [ - 3818 + 3864 ], "message": [ - 70 + 75 ], "steam_id": [ - 169 + 174 ], "title": [ - 70 + 75 ], "__typename": [ - 70 + 75 ] }, "notifications_max_order_by": { "created_at": [ - 2011 + 2016 ], "deleted_at": [ - 2011 + 2016 ], "entity_id": [ - 2011 + 2016 ], "id": [ - 2011 + 2016 ], "message": [ - 2011 + 2016 ], "steam_id": [ - 2011 + 2016 ], "title": [ - 2011 + 2016 ], "__typename": [ - 70 + 75 ] }, "notifications_min_fields": { "created_at": [ - 3421 + 3467 ], "deleted_at": [ - 3421 + 3467 ], "entity_id": [ - 70 + 75 ], "id": [ - 3818 + 3864 ], "message": [ - 70 + 75 ], "steam_id": [ - 169 + 174 ], "title": [ - 70 + 75 ], "__typename": [ - 70 + 75 ] }, "notifications_min_order_by": { "created_at": [ - 2011 + 2016 ], "deleted_at": [ - 2011 + 2016 ], "entity_id": [ - 2011 + 2016 ], "id": [ - 2011 + 2016 ], "message": [ - 2011 + 2016 ], "steam_id": [ - 2011 + 2016 ], "title": [ - 2011 + 2016 ], "__typename": [ - 70 + 75 ] }, "notifications_mutation_response": { @@ -38160,84 +38266,84 @@ export default { 38 ], "returning": [ - 1959 + 1964 ], "__typename": [ - 70 + 75 ] }, "notifications_on_conflict": { "constraint": [ - 1972 + 1977 ], "update_columns": [ - 2001 + 2006 ], "where": [ - 1971 + 1976 ], "__typename": [ - 70 + 75 ] }, "notifications_order_by": { "actions": [ - 2011 + 2016 ], "created_at": [ - 2011 + 2016 ], "deletable": [ - 2011 + 2016 ], "deleted_at": [ - 2011 + 2016 ], "entity_id": [ - 2011 + 2016 ], "id": [ - 2011 + 2016 ], "is_read": [ - 2011 + 2016 ], "message": [ - 2011 + 2016 ], "player": [ - 2891 + 2928 ], "role": [ - 2011 + 2016 ], "steam_id": [ - 2011 + 2016 ], "title": [ - 2011 + 2016 ], "type": [ - 2011 + 2016 ], "__typename": [ - 70 + 75 ] }, "notifications_pk_columns_input": { "id": [ - 3818 + 3864 ], "__typename": [ - 70 + 75 ] }, "notifications_prepend_input": { "actions": [ - 1235 + 1240 ], "__typename": [ - 70 + 75 ] }, "notifications_select_column": {}, @@ -38245,43 +38351,43 @@ export default { "notifications_select_column_notifications_aggregate_bool_exp_bool_or_arguments_columns": {}, "notifications_set_input": { "actions": [ - 1235 + 1240 ], "created_at": [ - 3421 + 3467 ], "deletable": [ 3 ], "deleted_at": [ - 3421 + 3467 ], "entity_id": [ - 70 + 75 ], "id": [ - 3818 + 3864 ], "is_read": [ 3 ], "message": [ - 70 + 75 ], "role": [ - 785 + 790 ], "steam_id": [ - 169 + 174 ], "title": [ - 70 + 75 ], "type": [ - 745 + 750 ], "__typename": [ - 70 + 75 ] }, "notifications_stddev_fields": { @@ -38289,15 +38395,15 @@ export default { 29 ], "__typename": [ - 70 + 75 ] }, "notifications_stddev_order_by": { "steam_id": [ - 2011 + 2016 ], "__typename": [ - 70 + 75 ] }, "notifications_stddev_pop_fields": { @@ -38305,15 +38411,15 @@ export default { 29 ], "__typename": [ - 70 + 75 ] }, "notifications_stddev_pop_order_by": { "steam_id": [ - 2011 + 2016 ], "__typename": [ - 70 + 75 ] }, "notifications_stddev_samp_fields": { @@ -38321,113 +38427,113 @@ export default { 29 ], "__typename": [ - 70 + 75 ] }, "notifications_stddev_samp_order_by": { "steam_id": [ - 2011 + 2016 ], "__typename": [ - 70 + 75 ] }, "notifications_stream_cursor_input": { "initial_value": [ - 1998 + 2003 ], "ordering": [ - 224 + 229 ], "__typename": [ - 70 + 75 ] }, "notifications_stream_cursor_value_input": { "actions": [ - 1235 + 1240 ], "created_at": [ - 3421 + 3467 ], "deletable": [ 3 ], "deleted_at": [ - 3421 + 3467 ], "entity_id": [ - 70 + 75 ], "id": [ - 3818 + 3864 ], "is_read": [ 3 ], "message": [ - 70 + 75 ], "role": [ - 785 + 790 ], "steam_id": [ - 169 + 174 ], "title": [ - 70 + 75 ], "type": [ - 745 + 750 ], "__typename": [ - 70 + 75 ] }, "notifications_sum_fields": { "steam_id": [ - 169 + 174 ], "__typename": [ - 70 + 75 ] }, "notifications_sum_order_by": { "steam_id": [ - 2011 + 2016 ], "__typename": [ - 70 + 75 ] }, "notifications_update_column": {}, "notifications_updates": { "_append": [ - 1967 + 1972 ], "_delete_at_path": [ - 1973 + 1978 ], "_delete_elem": [ - 1974 + 1979 ], "_delete_key": [ - 1975 + 1980 ], "_inc": [ - 1976 + 1981 ], "_prepend": [ - 1986 + 1991 ], "_set": [ - 1990 + 1995 ], "where": [ - 1971 + 1976 ], "__typename": [ - 70 + 75 ] }, "notifications_var_pop_fields": { @@ -38435,15 +38541,15 @@ export default { 29 ], "__typename": [ - 70 + 75 ] }, "notifications_var_pop_order_by": { "steam_id": [ - 2011 + 2016 ], "__typename": [ - 70 + 75 ] }, "notifications_var_samp_fields": { @@ -38451,15 +38557,15 @@ export default { 29 ], "__typename": [ - 70 + 75 ] }, "notifications_var_samp_order_by": { "steam_id": [ - 2011 + 2016 ], "__typename": [ - 70 + 75 ] }, "notifications_variance_fields": { @@ -38467,116 +38573,116 @@ export default { 29 ], "__typename": [ - 70 + 75 ] }, "notifications_variance_order_by": { "steam_id": [ - 2011 + 2016 ], "__typename": [ - 70 + 75 ] }, "numeric": {}, "numeric_comparison_exp": { "_eq": [ - 2009 + 2014 ], "_gt": [ - 2009 + 2014 ], "_gte": [ - 2009 + 2014 ], "_in": [ - 2009 + 2014 ], "_is_null": [ 3 ], "_lt": [ - 2009 + 2014 ], "_lte": [ - 2009 + 2014 ], "_neq": [ - 2009 + 2014 ], "_nin": [ - 2009 + 2014 ], "__typename": [ - 70 + 75 ] }, "order_by": {}, "pending_match_import_players": { "created_at": [ - 3421 + 3467 ], "pending_match_import": [ - 2053 + 2058 ], "player": [ - 2878 + 2915 ], "steam_id": [ - 169 + 174 ], "valve_match_id": [ - 2009 + 2014 ], "__typename": [ - 70 + 75 ] }, "pending_match_import_players_aggregate": { "aggregate": [ - 2016 + 2021 ], "nodes": [ - 2012 + 2017 ], "__typename": [ - 70 + 75 ] }, "pending_match_import_players_aggregate_bool_exp": { "count": [ - 2015 + 2020 ], "__typename": [ - 70 + 75 ] }, "pending_match_import_players_aggregate_bool_exp_count": { "arguments": [ - 2033 + 2038 ], "distinct": [ 3 ], "filter": [ - 2021 + 2026 ], "predicate": [ 39 ], "__typename": [ - 70 + 75 ] }, "pending_match_import_players_aggregate_fields": { "avg": [ - 2019 + 2024 ], "count": [ 38, { "columns": [ - 2033, + 2038, "[pending_match_import_players_select_column!]" ], "distinct": [ @@ -38585,83 +38691,83 @@ export default { } ], "max": [ - 2025 + 2030 ], "min": [ - 2027 + 2032 ], "stddev": [ - 2035 + 2040 ], "stddev_pop": [ - 2037 + 2042 ], "stddev_samp": [ - 2039 + 2044 ], "sum": [ - 2043 + 2048 ], "var_pop": [ - 2047 + 2052 ], "var_samp": [ - 2049 + 2054 ], "variance": [ - 2051 + 2056 ], "__typename": [ - 70 + 75 ] }, "pending_match_import_players_aggregate_order_by": { "avg": [ - 2020 + 2025 ], "count": [ - 2011 + 2016 ], "max": [ - 2026 + 2031 ], "min": [ - 2028 + 2033 ], "stddev": [ - 2036 + 2041 ], "stddev_pop": [ - 2038 + 2043 ], "stddev_samp": [ - 2040 + 2045 ], "sum": [ - 2044 + 2049 ], "var_pop": [ - 2048 + 2053 ], "var_samp": [ - 2050 + 2055 ], "variance": [ - 2052 + 2057 ], "__typename": [ - 70 + 75 ] }, "pending_match_import_players_arr_rel_insert_input": { "data": [ - 2024 + 2029 ], "on_conflict": [ - 2030 + 2035 ], "__typename": [ - 70 + 75 ] }, "pending_match_import_players_avg_fields": { @@ -38672,135 +38778,135 @@ export default { 29 ], "__typename": [ - 70 + 75 ] }, "pending_match_import_players_avg_order_by": { "steam_id": [ - 2011 + 2016 ], "valve_match_id": [ - 2011 + 2016 ], "__typename": [ - 70 + 75 ] }, "pending_match_import_players_bool_exp": { "_and": [ - 2021 + 2026 ], "_not": [ - 2021 + 2026 ], "_or": [ - 2021 + 2026 ], "created_at": [ - 3422 + 3468 ], "pending_match_import": [ - 2057 + 2062 ], "player": [ - 2882 + 2919 ], "steam_id": [ - 171 + 176 ], "valve_match_id": [ - 2010 + 2015 ], "__typename": [ - 70 + 75 ] }, "pending_match_import_players_constraint": {}, "pending_match_import_players_inc_input": { "steam_id": [ - 169 + 174 ], "valve_match_id": [ - 2009 + 2014 ], "__typename": [ - 70 + 75 ] }, "pending_match_import_players_insert_input": { "created_at": [ - 3421 + 3467 ], "pending_match_import": [ - 2064 + 2069 ], "player": [ - 2889 + 2926 ], "steam_id": [ - 169 + 174 ], "valve_match_id": [ - 2009 + 2014 ], "__typename": [ - 70 + 75 ] }, "pending_match_import_players_max_fields": { "created_at": [ - 3421 + 3467 ], "steam_id": [ - 169 + 174 ], "valve_match_id": [ - 2009 + 2014 ], "__typename": [ - 70 + 75 ] }, "pending_match_import_players_max_order_by": { "created_at": [ - 2011 + 2016 ], "steam_id": [ - 2011 + 2016 ], "valve_match_id": [ - 2011 + 2016 ], "__typename": [ - 70 + 75 ] }, "pending_match_import_players_min_fields": { "created_at": [ - 3421 + 3467 ], "steam_id": [ - 169 + 174 ], "valve_match_id": [ - 2009 + 2014 ], "__typename": [ - 70 + 75 ] }, "pending_match_import_players_min_order_by": { "created_at": [ - 2011 + 2016 ], "steam_id": [ - 2011 + 2016 ], "valve_match_id": [ - 2011 + 2016 ], "__typename": [ - 70 + 75 ] }, "pending_match_import_players_mutation_response": { @@ -38808,70 +38914,70 @@ export default { 38 ], "returning": [ - 2012 + 2017 ], "__typename": [ - 70 + 75 ] }, "pending_match_import_players_on_conflict": { "constraint": [ - 2022 + 2027 ], "update_columns": [ - 2045 + 2050 ], "where": [ - 2021 + 2026 ], "__typename": [ - 70 + 75 ] }, "pending_match_import_players_order_by": { "created_at": [ - 2011 + 2016 ], "pending_match_import": [ - 2066 + 2071 ], "player": [ - 2891 + 2928 ], "steam_id": [ - 2011 + 2016 ], "valve_match_id": [ - 2011 + 2016 ], "__typename": [ - 70 + 75 ] }, "pending_match_import_players_pk_columns_input": { "steam_id": [ - 169 + 174 ], "valve_match_id": [ - 2009 + 2014 ], "__typename": [ - 70 + 75 ] }, "pending_match_import_players_select_column": {}, "pending_match_import_players_set_input": { "created_at": [ - 3421 + 3467 ], "steam_id": [ - 169 + 174 ], "valve_match_id": [ - 2009 + 2014 ], "__typename": [ - 70 + 75 ] }, "pending_match_import_players_stddev_fields": { @@ -38882,18 +38988,18 @@ export default { 29 ], "__typename": [ - 70 + 75 ] }, "pending_match_import_players_stddev_order_by": { "steam_id": [ - 2011 + 2016 ], "valve_match_id": [ - 2011 + 2016 ], "__typename": [ - 70 + 75 ] }, "pending_match_import_players_stddev_pop_fields": { @@ -38904,18 +39010,18 @@ export default { 29 ], "__typename": [ - 70 + 75 ] }, "pending_match_import_players_stddev_pop_order_by": { "steam_id": [ - 2011 + 2016 ], "valve_match_id": [ - 2011 + 2016 ], "__typename": [ - 70 + 75 ] }, "pending_match_import_players_stddev_samp_fields": { @@ -38926,80 +39032,80 @@ export default { 29 ], "__typename": [ - 70 + 75 ] }, "pending_match_import_players_stddev_samp_order_by": { "steam_id": [ - 2011 + 2016 ], "valve_match_id": [ - 2011 + 2016 ], "__typename": [ - 70 + 75 ] }, "pending_match_import_players_stream_cursor_input": { "initial_value": [ - 2042 + 2047 ], "ordering": [ - 224 + 229 ], "__typename": [ - 70 + 75 ] }, "pending_match_import_players_stream_cursor_value_input": { "created_at": [ - 3421 + 3467 ], "steam_id": [ - 169 + 174 ], "valve_match_id": [ - 2009 + 2014 ], "__typename": [ - 70 + 75 ] }, "pending_match_import_players_sum_fields": { "steam_id": [ - 169 + 174 ], "valve_match_id": [ - 2009 + 2014 ], "__typename": [ - 70 + 75 ] }, "pending_match_import_players_sum_order_by": { "steam_id": [ - 2011 + 2016 ], "valve_match_id": [ - 2011 + 2016 ], "__typename": [ - 70 + 75 ] }, "pending_match_import_players_update_column": {}, "pending_match_import_players_updates": { "_inc": [ - 2023 + 2028 ], "_set": [ - 2034 + 2039 ], "where": [ - 2021 + 2026 ], "__typename": [ - 70 + 75 ] }, "pending_match_import_players_var_pop_fields": { @@ -39010,18 +39116,18 @@ export default { 29 ], "__typename": [ - 70 + 75 ] }, "pending_match_import_players_var_pop_order_by": { "steam_id": [ - 2011 + 2016 ], "valve_match_id": [ - 2011 + 2016 ], "__typename": [ - 70 + 75 ] }, "pending_match_import_players_var_samp_fields": { @@ -39032,18 +39138,18 @@ export default { 29 ], "__typename": [ - 70 + 75 ] }, "pending_match_import_players_var_samp_order_by": { "steam_id": [ - 2011 + 2016 ], "valve_match_id": [ - 2011 + 2016 ], "__typename": [ - 70 + 75 ] }, "pending_match_import_players_variance_fields": { @@ -39054,41 +39160,41 @@ export default { 29 ], "__typename": [ - 70 + 75 ] }, "pending_match_import_players_variance_order_by": { "steam_id": [ - 2011 + 2016 ], "valve_match_id": [ - 2011 + 2016 ], "__typename": [ - 70 + 75 ] }, "pending_match_imports": { "created_at": [ - 3421 + 3467 ], "demo_url": [ - 70 + 75 ], "error": [ - 70 + 75 ], "map_name": [ - 70 + 75 ], "match_start_time": [ - 3421 + 3467 ], "players": [ - 2012, + 2017, { "distinct_on": [ - 2033, + 2038, "[pending_match_import_players_select_column!]" ], "limit": [ @@ -39098,19 +39204,19 @@ export default { 38 ], "order_by": [ - 2031, + 2036, "[pending_match_import_players_order_by!]" ], "where": [ - 2021 + 2026 ] } ], "players_aggregate": [ - 2013, + 2018, { "distinct_on": [ - 2033, + 2038, "[pending_match_import_players_select_column!]" ], "limit": [ @@ -39120,50 +39226,50 @@ export default { 38 ], "order_by": [ - 2031, + 2036, "[pending_match_import_players_order_by!]" ], "where": [ - 2021 + 2026 ] } ], "share_code": [ - 70 + 75 ], "status": [ - 70 + 75 ], "updated_at": [ - 3421 + 3467 ], "valve_match_id": [ - 2009 + 2014 ], "__typename": [ - 70 + 75 ] }, "pending_match_imports_aggregate": { "aggregate": [ - 2055 + 2060 ], "nodes": [ - 2053 + 2058 ], "__typename": [ - 70 + 75 ] }, "pending_match_imports_aggregate_fields": { "avg": [ - 2056 + 2061 ], "count": [ 38, { "columns": [ - 2068, + 2073, "[pending_match_imports_select_column!]" ], "distinct": [ @@ -39172,34 +39278,34 @@ export default { } ], "max": [ - 2061 + 2066 ], "min": [ - 2062 + 2067 ], "stddev": [ - 2070 + 2075 ], "stddev_pop": [ - 2071 + 2076 ], "stddev_samp": [ - 2072 + 2077 ], "sum": [ - 2075 + 2080 ], "var_pop": [ - 2078 + 2083 ], "var_samp": [ - 2079 + 2084 ], "variance": [ - 2080 + 2085 ], "__typename": [ - 70 + 75 ] }, "pending_match_imports_avg_fields": { @@ -39207,162 +39313,162 @@ export default { 29 ], "__typename": [ - 70 + 75 ] }, "pending_match_imports_bool_exp": { "_and": [ - 2057 + 2062 ], "_not": [ - 2057 + 2062 ], "_or": [ - 2057 + 2062 ], "created_at": [ - 3422 + 3468 ], "demo_url": [ - 72 + 77 ], "error": [ - 72 + 77 ], "map_name": [ - 72 + 77 ], "match_start_time": [ - 3422 + 3468 ], "players": [ - 2021 + 2026 ], "players_aggregate": [ - 2014 + 2019 ], "share_code": [ - 72 + 77 ], "status": [ - 72 + 77 ], "updated_at": [ - 3422 + 3468 ], "valve_match_id": [ - 2010 + 2015 ], "__typename": [ - 70 + 75 ] }, "pending_match_imports_constraint": {}, "pending_match_imports_inc_input": { "valve_match_id": [ - 2009 + 2014 ], "__typename": [ - 70 + 75 ] }, "pending_match_imports_insert_input": { "created_at": [ - 3421 + 3467 ], "demo_url": [ - 70 + 75 ], "error": [ - 70 + 75 ], "map_name": [ - 70 + 75 ], "match_start_time": [ - 3421 + 3467 ], "players": [ - 2018 + 2023 ], "share_code": [ - 70 + 75 ], "status": [ - 70 + 75 ], "updated_at": [ - 3421 + 3467 ], "valve_match_id": [ - 2009 + 2014 ], "__typename": [ - 70 + 75 ] }, "pending_match_imports_max_fields": { "created_at": [ - 3421 + 3467 ], "demo_url": [ - 70 + 75 ], "error": [ - 70 + 75 ], "map_name": [ - 70 + 75 ], "match_start_time": [ - 3421 + 3467 ], "share_code": [ - 70 + 75 ], "status": [ - 70 + 75 ], "updated_at": [ - 3421 + 3467 ], "valve_match_id": [ - 2009 + 2014 ], "__typename": [ - 70 + 75 ] }, "pending_match_imports_min_fields": { "created_at": [ - 3421 + 3467 ], "demo_url": [ - 70 + 75 ], "error": [ - 70 + 75 ], "map_name": [ - 70 + 75 ], "match_start_time": [ - 3421 + 3467 ], "share_code": [ - 70 + 75 ], "status": [ - 70 + 75 ], "updated_at": [ - 3421 + 3467 ], "valve_match_id": [ - 2009 + 2014 ], "__typename": [ - 70 + 75 ] }, "pending_match_imports_mutation_response": { @@ -39370,111 +39476,111 @@ export default { 38 ], "returning": [ - 2053 + 2058 ], "__typename": [ - 70 + 75 ] }, "pending_match_imports_obj_rel_insert_input": { "data": [ - 2060 + 2065 ], "on_conflict": [ - 2065 + 2070 ], "__typename": [ - 70 + 75 ] }, "pending_match_imports_on_conflict": { "constraint": [ - 2058 + 2063 ], "update_columns": [ - 2076 + 2081 ], "where": [ - 2057 + 2062 ], "__typename": [ - 70 + 75 ] }, "pending_match_imports_order_by": { "created_at": [ - 2011 + 2016 ], "demo_url": [ - 2011 + 2016 ], "error": [ - 2011 + 2016 ], "map_name": [ - 2011 + 2016 ], "match_start_time": [ - 2011 + 2016 ], "players_aggregate": [ - 2017 + 2022 ], "share_code": [ - 2011 + 2016 ], "status": [ - 2011 + 2016 ], "updated_at": [ - 2011 + 2016 ], "valve_match_id": [ - 2011 + 2016 ], "__typename": [ - 70 + 75 ] }, "pending_match_imports_pk_columns_input": { "valve_match_id": [ - 2009 + 2014 ], "__typename": [ - 70 + 75 ] }, "pending_match_imports_select_column": {}, "pending_match_imports_set_input": { "created_at": [ - 3421 + 3467 ], "demo_url": [ - 70 + 75 ], "error": [ - 70 + 75 ], "map_name": [ - 70 + 75 ], "match_start_time": [ - 3421 + 3467 ], "share_code": [ - 70 + 75 ], "status": [ - 70 + 75 ], "updated_at": [ - 3421 + 3467 ], "valve_match_id": [ - 2009 + 2014 ], "__typename": [ - 70 + 75 ] }, "pending_match_imports_stddev_fields": { @@ -39482,7 +39588,7 @@ export default { 29 ], "__typename": [ - 70 + 75 ] }, "pending_match_imports_stddev_pop_fields": { @@ -39490,7 +39596,7 @@ export default { 29 ], "__typename": [ - 70 + 75 ] }, "pending_match_imports_stddev_samp_fields": { @@ -39498,73 +39604,73 @@ export default { 29 ], "__typename": [ - 70 + 75 ] }, "pending_match_imports_stream_cursor_input": { "initial_value": [ - 2074 + 2079 ], "ordering": [ - 224 + 229 ], "__typename": [ - 70 + 75 ] }, "pending_match_imports_stream_cursor_value_input": { "created_at": [ - 3421 + 3467 ], "demo_url": [ - 70 + 75 ], "error": [ - 70 + 75 ], "map_name": [ - 70 + 75 ], "match_start_time": [ - 3421 + 3467 ], "share_code": [ - 70 + 75 ], "status": [ - 70 + 75 ], "updated_at": [ - 3421 + 3467 ], "valve_match_id": [ - 2009 + 2014 ], "__typename": [ - 70 + 75 ] }, "pending_match_imports_sum_fields": { "valve_match_id": [ - 2009 + 2014 ], "__typename": [ - 70 + 75 ] }, "pending_match_imports_update_column": {}, "pending_match_imports_updates": { "_inc": [ - 2059 + 2064 ], "_set": [ - 2069 + 2074 ], "where": [ - 2057 + 2062 ], "__typename": [ - 70 + 75 ] }, "pending_match_imports_var_pop_fields": { @@ -39572,7 +39678,7 @@ export default { 29 ], "__typename": [ - 70 + 75 ] }, "pending_match_imports_var_samp_fields": { @@ -39580,7 +39686,7 @@ export default { 29 ], "__typename": [ - 70 + 75 ] }, "pending_match_imports_variance_fields": { @@ -39588,15 +39694,15 @@ export default { 29 ], "__typename": [ - 70 + 75 ] }, "player_aim_stats_demo": { "attacker": [ - 2878 + 2915 ], "attacker_steam_id": [ - 169 + 174 ], "counter_strafe_eligible_shots": [ 38 @@ -39608,7 +39714,7 @@ export default { 38 ], "crosshair_angle_sum_deg": [ - 2009 + 2014 ], "first_bullet_hits": [ 38 @@ -39626,16 +39732,16 @@ export default { 38 ], "match": [ - 1826 + 1831 ], "match_id": [ - 3818 + 3864 ], "match_map": [ - 1664 + 1669 ], "match_map_id": [ - 3818 + 3864 ], "non_awp_hits": [ 38 @@ -39656,35 +39762,35 @@ export default { 38 ], "time_to_damage_sum_s": [ - 2009 + 2014 ], "total_engagement_frames": [ 38 ], "__typename": [ - 70 + 75 ] }, "player_aim_stats_demo_aggregate": { "aggregate": [ - 2083 + 2088 ], "nodes": [ - 2081 + 2086 ], "__typename": [ - 70 + 75 ] }, "player_aim_stats_demo_aggregate_fields": { "avg": [ - 2084 + 2089 ], "count": [ 38, { "columns": [ - 2095, + 2100, "[player_aim_stats_demo_select_column!]" ], "distinct": [ @@ -39693,34 +39799,34 @@ export default { } ], "max": [ - 2089 + 2094 ], "min": [ - 2090 + 2095 ], "stddev": [ - 2097 + 2102 ], "stddev_pop": [ - 2098 + 2103 ], "stddev_samp": [ - 2099 + 2104 ], "sum": [ - 2102 + 2107 ], "var_pop": [ - 2105 + 2110 ], "var_samp": [ - 2106 + 2111 ], "variance": [ - 2107 + 2112 ], "__typename": [ - 70 + 75 ] }, "player_aim_stats_demo_avg_fields": { @@ -39779,24 +39885,24 @@ export default { 29 ], "__typename": [ - 70 + 75 ] }, "player_aim_stats_demo_bool_exp": { "_and": [ - 2085 + 2090 ], "_not": [ - 2085 + 2090 ], "_or": [ - 2085 + 2090 ], "attacker": [ - 2882 + 2919 ], "attacker_steam_id": [ - 171 + 176 ], "counter_strafe_eligible_shots": [ 39 @@ -39808,7 +39914,7 @@ export default { 39 ], "crosshair_angle_sum_deg": [ - 2010 + 2015 ], "first_bullet_hits": [ 39 @@ -39826,16 +39932,16 @@ export default { 39 ], "match": [ - 1835 + 1840 ], "match_id": [ - 3820 + 3866 ], "match_map": [ - 1673 + 1678 ], "match_map_id": [ - 3820 + 3866 ], "non_awp_hits": [ 39 @@ -39856,19 +39962,19 @@ export default { 39 ], "time_to_damage_sum_s": [ - 2010 + 2015 ], "total_engagement_frames": [ 39 ], "__typename": [ - 70 + 75 ] }, "player_aim_stats_demo_constraint": {}, "player_aim_stats_demo_inc_input": { "attacker_steam_id": [ - 169 + 174 ], "counter_strafe_eligible_shots": [ 38 @@ -39880,7 +39986,7 @@ export default { 38 ], "crosshair_angle_sum_deg": [ - 2009 + 2014 ], "first_bullet_hits": [ 38 @@ -39916,21 +40022,21 @@ export default { 38 ], "time_to_damage_sum_s": [ - 2009 + 2014 ], "total_engagement_frames": [ 38 ], "__typename": [ - 70 + 75 ] }, "player_aim_stats_demo_insert_input": { "attacker": [ - 2889 + 2926 ], "attacker_steam_id": [ - 169 + 174 ], "counter_strafe_eligible_shots": [ 38 @@ -39942,7 +40048,7 @@ export default { 38 ], "crosshair_angle_sum_deg": [ - 2009 + 2014 ], "first_bullet_hits": [ 38 @@ -39960,16 +40066,16 @@ export default { 38 ], "match": [ - 1844 + 1849 ], "match_id": [ - 3818 + 3864 ], "match_map": [ - 1682 + 1687 ], "match_map_id": [ - 3818 + 3864 ], "non_awp_hits": [ 38 @@ -39990,18 +40096,18 @@ export default { 38 ], "time_to_damage_sum_s": [ - 2009 + 2014 ], "total_engagement_frames": [ 38 ], "__typename": [ - 70 + 75 ] }, "player_aim_stats_demo_max_fields": { "attacker_steam_id": [ - 169 + 174 ], "counter_strafe_eligible_shots": [ 38 @@ -40013,7 +40119,7 @@ export default { 38 ], "crosshair_angle_sum_deg": [ - 2009 + 2014 ], "first_bullet_hits": [ 38 @@ -40031,10 +40137,10 @@ export default { 38 ], "match_id": [ - 3818 + 3864 ], "match_map_id": [ - 3818 + 3864 ], "non_awp_hits": [ 38 @@ -40055,18 +40161,18 @@ export default { 38 ], "time_to_damage_sum_s": [ - 2009 + 2014 ], "total_engagement_frames": [ 38 ], "__typename": [ - 70 + 75 ] }, "player_aim_stats_demo_min_fields": { "attacker_steam_id": [ - 169 + 174 ], "counter_strafe_eligible_shots": [ 38 @@ -40078,7 +40184,7 @@ export default { 38 ], "crosshair_angle_sum_deg": [ - 2009 + 2014 ], "first_bullet_hits": [ 38 @@ -40096,10 +40202,10 @@ export default { 38 ], "match_id": [ - 3818 + 3864 ], "match_map_id": [ - 3818 + 3864 ], "non_awp_hits": [ 38 @@ -40120,13 +40226,13 @@ export default { 38 ], "time_to_damage_sum_s": [ - 2009 + 2014 ], "total_engagement_frames": [ 38 ], "__typename": [ - 70 + 75 ] }, "player_aim_stats_demo_mutation_response": { @@ -40134,115 +40240,115 @@ export default { 38 ], "returning": [ - 2081 + 2086 ], "__typename": [ - 70 + 75 ] }, "player_aim_stats_demo_on_conflict": { "constraint": [ - 2086 + 2091 ], "update_columns": [ - 2103 + 2108 ], "where": [ - 2085 + 2090 ], "__typename": [ - 70 + 75 ] }, "player_aim_stats_demo_order_by": { "attacker": [ - 2891 + 2928 ], "attacker_steam_id": [ - 2011 + 2016 ], "counter_strafe_eligible_shots": [ - 2011 + 2016 ], "counter_strafed_shots": [ - 2011 + 2016 ], "crosshair_angle_count": [ - 2011 + 2016 ], "crosshair_angle_sum_deg": [ - 2011 + 2016 ], "first_bullet_hits": [ - 2011 + 2016 ], "first_bullet_shots": [ - 2011 + 2016 ], "headshot_hits": [ - 2011 + 2016 ], "hits": [ - 2011 + 2016 ], "hits_at_spotted": [ - 2011 + 2016 ], "match": [ - 1846 + 1851 ], "match_id": [ - 2011 + 2016 ], "match_map": [ - 1684 + 1689 ], "match_map_id": [ - 2011 + 2016 ], "non_awp_hits": [ - 2011 + 2016 ], "on_target_frames": [ - 2011 + 2016 ], "shots_at_spotted": [ - 2011 + 2016 ], "spray_hits": [ - 2011 + 2016 ], "spray_shots": [ - 2011 + 2016 ], "time_to_damage_count": [ - 2011 + 2016 ], "time_to_damage_sum_s": [ - 2011 + 2016 ], "total_engagement_frames": [ - 2011 + 2016 ], "__typename": [ - 70 + 75 ] }, "player_aim_stats_demo_pk_columns_input": { "attacker_steam_id": [ - 169 + 174 ], "match_map_id": [ - 3818 + 3864 ], "__typename": [ - 70 + 75 ] }, "player_aim_stats_demo_select_column": {}, "player_aim_stats_demo_set_input": { "attacker_steam_id": [ - 169 + 174 ], "counter_strafe_eligible_shots": [ 38 @@ -40254,7 +40360,7 @@ export default { 38 ], "crosshair_angle_sum_deg": [ - 2009 + 2014 ], "first_bullet_hits": [ 38 @@ -40272,10 +40378,10 @@ export default { 38 ], "match_id": [ - 3818 + 3864 ], "match_map_id": [ - 3818 + 3864 ], "non_awp_hits": [ 38 @@ -40296,13 +40402,13 @@ export default { 38 ], "time_to_damage_sum_s": [ - 2009 + 2014 ], "total_engagement_frames": [ 38 ], "__typename": [ - 70 + 75 ] }, "player_aim_stats_demo_stddev_fields": { @@ -40361,7 +40467,7 @@ export default { 29 ], "__typename": [ - 70 + 75 ] }, "player_aim_stats_demo_stddev_pop_fields": { @@ -40420,7 +40526,7 @@ export default { 29 ], "__typename": [ - 70 + 75 ] }, "player_aim_stats_demo_stddev_samp_fields": { @@ -40479,23 +40585,23 @@ export default { 29 ], "__typename": [ - 70 + 75 ] }, "player_aim_stats_demo_stream_cursor_input": { "initial_value": [ - 2101 + 2106 ], "ordering": [ - 224 + 229 ], "__typename": [ - 70 + 75 ] }, "player_aim_stats_demo_stream_cursor_value_input": { "attacker_steam_id": [ - 169 + 174 ], "counter_strafe_eligible_shots": [ 38 @@ -40507,7 +40613,7 @@ export default { 38 ], "crosshair_angle_sum_deg": [ - 2009 + 2014 ], "first_bullet_hits": [ 38 @@ -40525,10 +40631,10 @@ export default { 38 ], "match_id": [ - 3818 + 3864 ], "match_map_id": [ - 3818 + 3864 ], "non_awp_hits": [ 38 @@ -40549,18 +40655,18 @@ export default { 38 ], "time_to_damage_sum_s": [ - 2009 + 2014 ], "total_engagement_frames": [ 38 ], "__typename": [ - 70 + 75 ] }, "player_aim_stats_demo_sum_fields": { "attacker_steam_id": [ - 169 + 174 ], "counter_strafe_eligible_shots": [ 38 @@ -40572,7 +40678,7 @@ export default { 38 ], "crosshair_angle_sum_deg": [ - 2009 + 2014 ], "first_bullet_hits": [ 38 @@ -40608,28 +40714,28 @@ export default { 38 ], "time_to_damage_sum_s": [ - 2009 + 2014 ], "total_engagement_frames": [ 38 ], "__typename": [ - 70 + 75 ] }, "player_aim_stats_demo_update_column": {}, "player_aim_stats_demo_updates": { "_inc": [ - 2087 + 2092 ], "_set": [ - 2096 + 2101 ], "where": [ - 2085 + 2090 ], "__typename": [ - 70 + 75 ] }, "player_aim_stats_demo_var_pop_fields": { @@ -40688,7 +40794,7 @@ export default { 29 ], "__typename": [ - 70 + 75 ] }, "player_aim_stats_demo_var_samp_fields": { @@ -40747,7 +40853,7 @@ export default { 29 ], "__typename": [ - 70 + 75 ] }, "player_aim_stats_demo_variance_fields": { @@ -40806,7 +40912,7 @@ export default { 29 ], "__typename": [ - 70 + 75 ] }, "player_aim_weapon_stats": { @@ -40823,19 +40929,19 @@ export default { 38 ], "match": [ - 1826 + 1831 ], "match_id": [ - 3818 + 3864 ], "match_map": [ - 1664 + 1669 ], "match_map_id": [ - 3818 + 3864 ], "player": [ - 2878 + 2915 ], "shots": [ 38 @@ -40844,60 +40950,60 @@ export default { 38 ], "steam_id": [ - 169 + 174 ], "weapon_class": [ - 70 + 75 ], "__typename": [ - 70 + 75 ] }, "player_aim_weapon_stats_aggregate": { "aggregate": [ - 2112 + 2117 ], "nodes": [ - 2108 + 2113 ], "__typename": [ - 70 + 75 ] }, "player_aim_weapon_stats_aggregate_bool_exp": { "count": [ - 2111 + 2116 ], "__typename": [ - 70 + 75 ] }, "player_aim_weapon_stats_aggregate_bool_exp_count": { "arguments": [ - 2129 + 2134 ], "distinct": [ 3 ], "filter": [ - 2117 + 2122 ], "predicate": [ 39 ], "__typename": [ - 70 + 75 ] }, "player_aim_weapon_stats_aggregate_fields": { "avg": [ - 2115 + 2120 ], "count": [ 38, { "columns": [ - 2129, + 2134, "[player_aim_weapon_stats_select_column!]" ], "distinct": [ @@ -40906,83 +41012,83 @@ export default { } ], "max": [ - 2121 + 2126 ], "min": [ - 2123 + 2128 ], "stddev": [ - 2131 + 2136 ], "stddev_pop": [ - 2133 + 2138 ], "stddev_samp": [ - 2135 + 2140 ], "sum": [ - 2139 + 2144 ], "var_pop": [ - 2143 + 2148 ], "var_samp": [ - 2145 + 2150 ], "variance": [ - 2147 + 2152 ], "__typename": [ - 70 + 75 ] }, "player_aim_weapon_stats_aggregate_order_by": { "avg": [ - 2116 + 2121 ], "count": [ - 2011 + 2016 ], "max": [ - 2122 + 2127 ], "min": [ - 2124 + 2129 ], "stddev": [ - 2132 + 2137 ], "stddev_pop": [ - 2134 + 2139 ], "stddev_samp": [ - 2136 + 2141 ], "sum": [ - 2140 + 2145 ], "var_pop": [ - 2144 + 2149 ], "var_samp": [ - 2146 + 2151 ], "variance": [ - 2148 + 2153 ], "__typename": [ - 70 + 75 ] }, "player_aim_weapon_stats_arr_rel_insert_input": { "data": [ - 2120 + 2125 ], "on_conflict": [ - 2126 + 2131 ], "__typename": [ - 70 + 75 ] }, "player_aim_weapon_stats_avg_fields": { @@ -41008,44 +41114,44 @@ export default { 29 ], "__typename": [ - 70 + 75 ] }, "player_aim_weapon_stats_avg_order_by": { "first_bullet_hits": [ - 2011 + 2016 ], "first_bullet_shots": [ - 2011 + 2016 ], "hits": [ - 2011 + 2016 ], "hits_spotted": [ - 2011 + 2016 ], "shots": [ - 2011 + 2016 ], "shots_spotted": [ - 2011 + 2016 ], "steam_id": [ - 2011 + 2016 ], "__typename": [ - 70 + 75 ] }, "player_aim_weapon_stats_bool_exp": { "_and": [ - 2117 + 2122 ], "_not": [ - 2117 + 2122 ], "_or": [ - 2117 + 2122 ], "first_bullet_hits": [ 39 @@ -41060,19 +41166,19 @@ export default { 39 ], "match": [ - 1835 + 1840 ], "match_id": [ - 3820 + 3866 ], "match_map": [ - 1673 + 1678 ], "match_map_id": [ - 3820 + 3866 ], "player": [ - 2882 + 2919 ], "shots": [ 39 @@ -41081,13 +41187,13 @@ export default { 39 ], "steam_id": [ - 171 + 176 ], "weapon_class": [ - 72 + 77 ], "__typename": [ - 70 + 75 ] }, "player_aim_weapon_stats_constraint": {}, @@ -41111,10 +41217,10 @@ export default { 38 ], "steam_id": [ - 169 + 174 ], "__typename": [ - 70 + 75 ] }, "player_aim_weapon_stats_insert_input": { @@ -41131,19 +41237,19 @@ export default { 38 ], "match": [ - 1844 + 1849 ], "match_id": [ - 3818 + 3864 ], "match_map": [ - 1682 + 1687 ], "match_map_id": [ - 3818 + 3864 ], "player": [ - 2889 + 2926 ], "shots": [ 38 @@ -41152,13 +41258,13 @@ export default { 38 ], "steam_id": [ - 169 + 174 ], "weapon_class": [ - 70 + 75 ], "__typename": [ - 70 + 75 ] }, "player_aim_weapon_stats_max_fields": { @@ -41175,10 +41281,10 @@ export default { 38 ], "match_id": [ - 3818 + 3864 ], "match_map_id": [ - 3818 + 3864 ], "shots": [ 38 @@ -41187,48 +41293,48 @@ export default { 38 ], "steam_id": [ - 169 + 174 ], "weapon_class": [ - 70 + 75 ], "__typename": [ - 70 + 75 ] }, "player_aim_weapon_stats_max_order_by": { "first_bullet_hits": [ - 2011 + 2016 ], "first_bullet_shots": [ - 2011 + 2016 ], "hits": [ - 2011 + 2016 ], "hits_spotted": [ - 2011 + 2016 ], "match_id": [ - 2011 + 2016 ], "match_map_id": [ - 2011 + 2016 ], "shots": [ - 2011 + 2016 ], "shots_spotted": [ - 2011 + 2016 ], "steam_id": [ - 2011 + 2016 ], "weapon_class": [ - 2011 + 2016 ], "__typename": [ - 70 + 75 ] }, "player_aim_weapon_stats_min_fields": { @@ -41245,10 +41351,10 @@ export default { 38 ], "match_id": [ - 3818 + 3864 ], "match_map_id": [ - 3818 + 3864 ], "shots": [ 38 @@ -41257,48 +41363,48 @@ export default { 38 ], "steam_id": [ - 169 + 174 ], "weapon_class": [ - 70 + 75 ], "__typename": [ - 70 + 75 ] }, "player_aim_weapon_stats_min_order_by": { "first_bullet_hits": [ - 2011 + 2016 ], "first_bullet_shots": [ - 2011 + 2016 ], "hits": [ - 2011 + 2016 ], "hits_spotted": [ - 2011 + 2016 ], "match_id": [ - 2011 + 2016 ], "match_map_id": [ - 2011 + 2016 ], "shots": [ - 2011 + 2016 ], "shots_spotted": [ - 2011 + 2016 ], "steam_id": [ - 2011 + 2016 ], "weapon_class": [ - 2011 + 2016 ], "__typename": [ - 70 + 75 ] }, "player_aim_weapon_stats_mutation_response": { @@ -41306,82 +41412,82 @@ export default { 38 ], "returning": [ - 2108 + 2113 ], "__typename": [ - 70 + 75 ] }, "player_aim_weapon_stats_on_conflict": { "constraint": [ - 2118 + 2123 ], "update_columns": [ - 2141 + 2146 ], "where": [ - 2117 + 2122 ], "__typename": [ - 70 + 75 ] }, "player_aim_weapon_stats_order_by": { "first_bullet_hits": [ - 2011 + 2016 ], "first_bullet_shots": [ - 2011 + 2016 ], "hits": [ - 2011 + 2016 ], "hits_spotted": [ - 2011 + 2016 ], "match": [ - 1846 + 1851 ], "match_id": [ - 2011 + 2016 ], "match_map": [ - 1684 + 1689 ], "match_map_id": [ - 2011 + 2016 ], "player": [ - 2891 + 2928 ], "shots": [ - 2011 + 2016 ], "shots_spotted": [ - 2011 + 2016 ], "steam_id": [ - 2011 + 2016 ], "weapon_class": [ - 2011 + 2016 ], "__typename": [ - 70 + 75 ] }, "player_aim_weapon_stats_pk_columns_input": { "match_map_id": [ - 3818 + 3864 ], "steam_id": [ - 169 + 174 ], "weapon_class": [ - 70 + 75 ], "__typename": [ - 70 + 75 ] }, "player_aim_weapon_stats_select_column": {}, @@ -41399,10 +41505,10 @@ export default { 38 ], "match_id": [ - 3818 + 3864 ], "match_map_id": [ - 3818 + 3864 ], "shots": [ 38 @@ -41411,13 +41517,13 @@ export default { 38 ], "steam_id": [ - 169 + 174 ], "weapon_class": [ - 70 + 75 ], "__typename": [ - 70 + 75 ] }, "player_aim_weapon_stats_stddev_fields": { @@ -41443,33 +41549,33 @@ export default { 29 ], "__typename": [ - 70 + 75 ] }, "player_aim_weapon_stats_stddev_order_by": { "first_bullet_hits": [ - 2011 + 2016 ], "first_bullet_shots": [ - 2011 + 2016 ], "hits": [ - 2011 + 2016 ], "hits_spotted": [ - 2011 + 2016 ], "shots": [ - 2011 + 2016 ], "shots_spotted": [ - 2011 + 2016 ], "steam_id": [ - 2011 + 2016 ], "__typename": [ - 70 + 75 ] }, "player_aim_weapon_stats_stddev_pop_fields": { @@ -41495,33 +41601,33 @@ export default { 29 ], "__typename": [ - 70 + 75 ] }, "player_aim_weapon_stats_stddev_pop_order_by": { "first_bullet_hits": [ - 2011 + 2016 ], "first_bullet_shots": [ - 2011 + 2016 ], "hits": [ - 2011 + 2016 ], "hits_spotted": [ - 2011 + 2016 ], "shots": [ - 2011 + 2016 ], "shots_spotted": [ - 2011 + 2016 ], "steam_id": [ - 2011 + 2016 ], "__typename": [ - 70 + 75 ] }, "player_aim_weapon_stats_stddev_samp_fields": { @@ -41547,44 +41653,44 @@ export default { 29 ], "__typename": [ - 70 + 75 ] }, "player_aim_weapon_stats_stddev_samp_order_by": { "first_bullet_hits": [ - 2011 + 2016 ], "first_bullet_shots": [ - 2011 + 2016 ], "hits": [ - 2011 + 2016 ], "hits_spotted": [ - 2011 + 2016 ], "shots": [ - 2011 + 2016 ], "shots_spotted": [ - 2011 + 2016 ], "steam_id": [ - 2011 + 2016 ], "__typename": [ - 70 + 75 ] }, "player_aim_weapon_stats_stream_cursor_input": { "initial_value": [ - 2138 + 2143 ], "ordering": [ - 224 + 229 ], "__typename": [ - 70 + 75 ] }, "player_aim_weapon_stats_stream_cursor_value_input": { @@ -41601,10 +41707,10 @@ export default { 38 ], "match_id": [ - 3818 + 3864 ], "match_map_id": [ - 3818 + 3864 ], "shots": [ 38 @@ -41613,13 +41719,13 @@ export default { 38 ], "steam_id": [ - 169 + 174 ], "weapon_class": [ - 70 + 75 ], "__typename": [ - 70 + 75 ] }, "player_aim_weapon_stats_sum_fields": { @@ -41642,51 +41748,51 @@ export default { 38 ], "steam_id": [ - 169 + 174 ], "__typename": [ - 70 + 75 ] }, "player_aim_weapon_stats_sum_order_by": { "first_bullet_hits": [ - 2011 + 2016 ], "first_bullet_shots": [ - 2011 + 2016 ], "hits": [ - 2011 + 2016 ], "hits_spotted": [ - 2011 + 2016 ], "shots": [ - 2011 + 2016 ], "shots_spotted": [ - 2011 + 2016 ], "steam_id": [ - 2011 + 2016 ], "__typename": [ - 70 + 75 ] }, "player_aim_weapon_stats_update_column": {}, "player_aim_weapon_stats_updates": { "_inc": [ - 2119 + 2124 ], "_set": [ - 2130 + 2135 ], "where": [ - 2117 + 2122 ], "__typename": [ - 70 + 75 ] }, "player_aim_weapon_stats_var_pop_fields": { @@ -41712,33 +41818,33 @@ export default { 29 ], "__typename": [ - 70 + 75 ] }, "player_aim_weapon_stats_var_pop_order_by": { "first_bullet_hits": [ - 2011 + 2016 ], "first_bullet_shots": [ - 2011 + 2016 ], "hits": [ - 2011 + 2016 ], "hits_spotted": [ - 2011 + 2016 ], "shots": [ - 2011 + 2016 ], "shots_spotted": [ - 2011 + 2016 ], "steam_id": [ - 2011 + 2016 ], "__typename": [ - 70 + 75 ] }, "player_aim_weapon_stats_var_samp_fields": { @@ -41764,33 +41870,33 @@ export default { 29 ], "__typename": [ - 70 + 75 ] }, "player_aim_weapon_stats_var_samp_order_by": { "first_bullet_hits": [ - 2011 + 2016 ], "first_bullet_shots": [ - 2011 + 2016 ], "hits": [ - 2011 + 2016 ], "hits_spotted": [ - 2011 + 2016 ], "shots": [ - 2011 + 2016 ], "shots_spotted": [ - 2011 + 2016 ], "steam_id": [ - 2011 + 2016 ], "__typename": [ - 70 + 75 ] }, "player_aim_weapon_stats_variance_fields": { @@ -41816,53 +41922,53 @@ export default { 29 ], "__typename": [ - 70 + 75 ] }, "player_aim_weapon_stats_variance_order_by": { "first_bullet_hits": [ - 2011 + 2016 ], "first_bullet_shots": [ - 2011 + 2016 ], "hits": [ - 2011 + 2016 ], "hits_spotted": [ - 2011 + 2016 ], "shots": [ - 2011 + 2016 ], "shots_spotted": [ - 2011 + 2016 ], "steam_id": [ - 2011 + 2016 ], "__typename": [ - 70 + 75 ] }, "player_assists": { "attacked_player": [ - 2878 + 2915 ], "attacked_steam_id": [ - 169 + 174 ], "attacked_team": [ - 70 + 75 ], "attacker_steam_id": [ - 169 + 174 ], "attacker_team": [ - 70 + 75 ], "deleted_at": [ - 3421 + 3467 ], "flash": [ 3 @@ -41871,115 +41977,115 @@ export default { 3 ], "match": [ - 1826 + 1831 ], "match_id": [ - 3818 + 3864 ], "match_map": [ - 1664 + 1669 ], "match_map_id": [ - 3818 + 3864 ], "player": [ - 2878 + 2915 ], "round": [ 38 ], "time": [ - 3421 + 3467 ], "__typename": [ - 70 + 75 ] }, "player_assists_aggregate": { "aggregate": [ - 2155 + 2160 ], "nodes": [ - 2149 + 2154 ], "__typename": [ - 70 + 75 ] }, "player_assists_aggregate_bool_exp": { "bool_and": [ - 2152 + 2157 ], "bool_or": [ - 2153 + 2158 ], "count": [ - 2154 + 2159 ], "__typename": [ - 70 + 75 ] }, "player_assists_aggregate_bool_exp_bool_and": { "arguments": [ - 2173 + 2178 ], "distinct": [ 3 ], "filter": [ - 2160 + 2165 ], "predicate": [ 4 ], "__typename": [ - 70 + 75 ] }, "player_assists_aggregate_bool_exp_bool_or": { "arguments": [ - 2174 + 2179 ], "distinct": [ 3 ], "filter": [ - 2160 + 2165 ], "predicate": [ 4 ], "__typename": [ - 70 + 75 ] }, "player_assists_aggregate_bool_exp_count": { "arguments": [ - 2172 + 2177 ], "distinct": [ 3 ], "filter": [ - 2160 + 2165 ], "predicate": [ 39 ], "__typename": [ - 70 + 75 ] }, "player_assists_aggregate_fields": { "avg": [ - 2158 + 2163 ], "count": [ 38, { "columns": [ - 2172, + 2177, "[player_assists_select_column!]" ], "distinct": [ @@ -41988,83 +42094,83 @@ export default { } ], "max": [ - 2164 + 2169 ], "min": [ - 2166 + 2171 ], "stddev": [ - 2176 + 2181 ], "stddev_pop": [ - 2178 + 2183 ], "stddev_samp": [ - 2180 + 2185 ], "sum": [ - 2184 + 2189 ], "var_pop": [ - 2188 + 2193 ], "var_samp": [ - 2190 + 2195 ], "variance": [ - 2192 + 2197 ], "__typename": [ - 70 + 75 ] }, "player_assists_aggregate_order_by": { "avg": [ - 2159 + 2164 ], "count": [ - 2011 + 2016 ], "max": [ - 2165 + 2170 ], "min": [ - 2167 + 2172 ], "stddev": [ - 2177 + 2182 ], "stddev_pop": [ - 2179 + 2184 ], "stddev_samp": [ - 2181 + 2186 ], "sum": [ - 2185 + 2190 ], "var_pop": [ - 2189 + 2194 ], "var_samp": [ - 2191 + 2196 ], "variance": [ - 2193 + 2198 ], "__typename": [ - 70 + 75 ] }, "player_assists_arr_rel_insert_input": { "data": [ - 2163 + 2168 ], "on_conflict": [ - 2169 + 2174 ], "__typename": [ - 70 + 75 ] }, "player_assists_avg_fields": { @@ -42078,50 +42184,50 @@ export default { 29 ], "__typename": [ - 70 + 75 ] }, "player_assists_avg_order_by": { "attacked_steam_id": [ - 2011 + 2016 ], "attacker_steam_id": [ - 2011 + 2016 ], "round": [ - 2011 + 2016 ], "__typename": [ - 70 + 75 ] }, "player_assists_bool_exp": { "_and": [ - 2160 + 2165 ], "_not": [ - 2160 + 2165 ], "_or": [ - 2160 + 2165 ], "attacked_player": [ - 2882 + 2919 ], "attacked_steam_id": [ - 171 + 176 ], "attacked_team": [ - 72 + 77 ], "attacker_steam_id": [ - 171 + 176 ], "attacker_team": [ - 72 + 77 ], "deleted_at": [ - 3422 + 3468 ], "flash": [ 4 @@ -42130,218 +42236,218 @@ export default { 4 ], "match": [ - 1835 + 1840 ], "match_id": [ - 3820 + 3866 ], "match_map": [ - 1673 + 1678 ], "match_map_id": [ - 3820 + 3866 ], "player": [ - 2882 + 2919 ], "round": [ 39 ], "time": [ - 3422 + 3468 ], "__typename": [ - 70 + 75 ] }, "player_assists_constraint": {}, "player_assists_inc_input": { "attacked_steam_id": [ - 169 + 174 ], "attacker_steam_id": [ - 169 + 174 ], "round": [ 38 ], "__typename": [ - 70 + 75 ] }, "player_assists_insert_input": { "attacked_player": [ - 2889 + 2926 ], "attacked_steam_id": [ - 169 + 174 ], "attacked_team": [ - 70 + 75 ], "attacker_steam_id": [ - 169 + 174 ], "attacker_team": [ - 70 + 75 ], "deleted_at": [ - 3421 + 3467 ], "flash": [ 3 ], "match": [ - 1844 + 1849 ], "match_id": [ - 3818 + 3864 ], "match_map": [ - 1682 + 1687 ], "match_map_id": [ - 3818 + 3864 ], "player": [ - 2889 + 2926 ], "round": [ 38 ], "time": [ - 3421 + 3467 ], "__typename": [ - 70 + 75 ] }, "player_assists_max_fields": { "attacked_steam_id": [ - 169 + 174 ], "attacked_team": [ - 70 + 75 ], "attacker_steam_id": [ - 169 + 174 ], "attacker_team": [ - 70 + 75 ], "deleted_at": [ - 3421 + 3467 ], "match_id": [ - 3818 + 3864 ], "match_map_id": [ - 3818 + 3864 ], "round": [ 38 ], "time": [ - 3421 + 3467 ], "__typename": [ - 70 + 75 ] }, "player_assists_max_order_by": { "attacked_steam_id": [ - 2011 + 2016 ], "attacked_team": [ - 2011 + 2016 ], "attacker_steam_id": [ - 2011 + 2016 ], "attacker_team": [ - 2011 + 2016 ], "deleted_at": [ - 2011 + 2016 ], "match_id": [ - 2011 + 2016 ], "match_map_id": [ - 2011 + 2016 ], "round": [ - 2011 + 2016 ], "time": [ - 2011 + 2016 ], "__typename": [ - 70 + 75 ] }, "player_assists_min_fields": { "attacked_steam_id": [ - 169 + 174 ], "attacked_team": [ - 70 + 75 ], "attacker_steam_id": [ - 169 + 174 ], "attacker_team": [ - 70 + 75 ], "deleted_at": [ - 3421 + 3467 ], "match_id": [ - 3818 + 3864 ], "match_map_id": [ - 3818 + 3864 ], "round": [ 38 ], "time": [ - 3421 + 3467 ], "__typename": [ - 70 + 75 ] }, "player_assists_min_order_by": { "attacked_steam_id": [ - 2011 + 2016 ], "attacked_team": [ - 2011 + 2016 ], "attacker_steam_id": [ - 2011 + 2016 ], "attacker_team": [ - 2011 + 2016 ], "deleted_at": [ - 2011 + 2016 ], "match_id": [ - 2011 + 2016 ], "match_map_id": [ - 2011 + 2016 ], "round": [ - 2011 + 2016 ], "time": [ - 2011 + 2016 ], "__typename": [ - 70 + 75 ] }, "player_assists_mutation_response": { @@ -42349,91 +42455,91 @@ export default { 38 ], "returning": [ - 2149 + 2154 ], "__typename": [ - 70 + 75 ] }, "player_assists_on_conflict": { "constraint": [ - 2161 + 2166 ], "update_columns": [ - 2186 + 2191 ], "where": [ - 2160 + 2165 ], "__typename": [ - 70 + 75 ] }, "player_assists_order_by": { "attacked_player": [ - 2891 + 2928 ], "attacked_steam_id": [ - 2011 + 2016 ], "attacked_team": [ - 2011 + 2016 ], "attacker_steam_id": [ - 2011 + 2016 ], "attacker_team": [ - 2011 + 2016 ], "deleted_at": [ - 2011 + 2016 ], "flash": [ - 2011 + 2016 ], "is_team_assist": [ - 2011 + 2016 ], "match": [ - 1846 + 1851 ], "match_id": [ - 2011 + 2016 ], "match_map": [ - 1684 + 1689 ], "match_map_id": [ - 2011 + 2016 ], "player": [ - 2891 + 2928 ], "round": [ - 2011 + 2016 ], "time": [ - 2011 + 2016 ], "__typename": [ - 70 + 75 ] }, "player_assists_pk_columns_input": { "attacked_steam_id": [ - 169 + 174 ], "attacker_steam_id": [ - 169 + 174 ], "match_map_id": [ - 3818 + 3864 ], "time": [ - 3421 + 3467 ], "__typename": [ - 70 + 75 ] }, "player_assists_select_column": {}, @@ -42441,37 +42547,37 @@ export default { "player_assists_select_column_player_assists_aggregate_bool_exp_bool_or_arguments_columns": {}, "player_assists_set_input": { "attacked_steam_id": [ - 169 + 174 ], "attacked_team": [ - 70 + 75 ], "attacker_steam_id": [ - 169 + 174 ], "attacker_team": [ - 70 + 75 ], "deleted_at": [ - 3421 + 3467 ], "flash": [ 3 ], "match_id": [ - 3818 + 3864 ], "match_map_id": [ - 3818 + 3864 ], "round": [ 38 ], "time": [ - 3421 + 3467 ], "__typename": [ - 70 + 75 ] }, "player_assists_stddev_fields": { @@ -42485,21 +42591,21 @@ export default { 29 ], "__typename": [ - 70 + 75 ] }, "player_assists_stddev_order_by": { "attacked_steam_id": [ - 2011 + 2016 ], "attacker_steam_id": [ - 2011 + 2016 ], "round": [ - 2011 + 2016 ], "__typename": [ - 70 + 75 ] }, "player_assists_stddev_pop_fields": { @@ -42513,21 +42619,21 @@ export default { 29 ], "__typename": [ - 70 + 75 ] }, "player_assists_stddev_pop_order_by": { "attacked_steam_id": [ - 2011 + 2016 ], "attacker_steam_id": [ - 2011 + 2016 ], "round": [ - 2011 + 2016 ], "__typename": [ - 70 + 75 ] }, "player_assists_stddev_samp_fields": { @@ -42541,110 +42647,110 @@ export default { 29 ], "__typename": [ - 70 + 75 ] }, "player_assists_stddev_samp_order_by": { "attacked_steam_id": [ - 2011 + 2016 ], "attacker_steam_id": [ - 2011 + 2016 ], "round": [ - 2011 + 2016 ], "__typename": [ - 70 + 75 ] }, "player_assists_stream_cursor_input": { "initial_value": [ - 2183 + 2188 ], "ordering": [ - 224 + 229 ], "__typename": [ - 70 + 75 ] }, "player_assists_stream_cursor_value_input": { "attacked_steam_id": [ - 169 + 174 ], "attacked_team": [ - 70 + 75 ], "attacker_steam_id": [ - 169 + 174 ], "attacker_team": [ - 70 + 75 ], "deleted_at": [ - 3421 + 3467 ], "flash": [ 3 ], "match_id": [ - 3818 + 3864 ], "match_map_id": [ - 3818 + 3864 ], "round": [ 38 ], "time": [ - 3421 + 3467 ], "__typename": [ - 70 + 75 ] }, "player_assists_sum_fields": { "attacked_steam_id": [ - 169 + 174 ], "attacker_steam_id": [ - 169 + 174 ], "round": [ 38 ], "__typename": [ - 70 + 75 ] }, "player_assists_sum_order_by": { "attacked_steam_id": [ - 2011 + 2016 ], "attacker_steam_id": [ - 2011 + 2016 ], "round": [ - 2011 + 2016 ], "__typename": [ - 70 + 75 ] }, "player_assists_update_column": {}, "player_assists_updates": { "_inc": [ - 2162 + 2167 ], "_set": [ - 2175 + 2180 ], "where": [ - 2160 + 2165 ], "__typename": [ - 70 + 75 ] }, "player_assists_var_pop_fields": { @@ -42658,21 +42764,21 @@ export default { 29 ], "__typename": [ - 70 + 75 ] }, "player_assists_var_pop_order_by": { "attacked_steam_id": [ - 2011 + 2016 ], "attacker_steam_id": [ - 2011 + 2016 ], "round": [ - 2011 + 2016 ], "__typename": [ - 70 + 75 ] }, "player_assists_var_samp_fields": { @@ -42686,21 +42792,21 @@ export default { 29 ], "__typename": [ - 70 + 75 ] }, "player_assists_var_samp_order_by": { "attacked_steam_id": [ - 2011 + 2016 ], "attacker_steam_id": [ - 2011 + 2016 ], "round": [ - 2011 + 2016 ], "__typename": [ - 70 + 75 ] }, "player_assists_variance_fields": { @@ -42714,47 +42820,47 @@ export default { 29 ], "__typename": [ - 70 + 75 ] }, "player_assists_variance_order_by": { "attacked_steam_id": [ - 2011 + 2016 ], "attacker_steam_id": [ - 2011 + 2016 ], "round": [ - 2011 + 2016 ], "__typename": [ - 70 + 75 ] }, "player_career_stats_v": { "accuracy": [ - 2009 + 2014 ], "accuracy_spotted": [ - 2009 + 2014 ], "counter_strafe_pct": [ - 2009 + 2014 ], "crosshair_deg": [ - 2009 + 2014 ], "enemy_blind_pr": [ - 2009 + 2014 ], "flash_assists_pr": [ - 2009 + 2014 ], "hs_pct": [ - 2009 + 2014 ], "kast_pct": [ - 2009 + 2014 ], "maps": [ 38 @@ -42766,44 +42872,44 @@ export default { 38 ], "steam_id": [ - 169 + 174 ], "survival_pct": [ - 2009 + 2014 ], "time_to_damage_s": [ - 2009 + 2014 ], "traded_death_pct": [ - 2009 + 2014 ], "util_efficiency": [ - 2009 + 2014 ], "__typename": [ - 70 + 75 ] }, "player_career_stats_v_aggregate": { "aggregate": [ - 2196 + 2201 ], "nodes": [ - 2194 + 2199 ], "__typename": [ - 70 + 75 ] }, "player_career_stats_v_aggregate_fields": { "avg": [ - 2197 + 2202 ], "count": [ 38, { "columns": [ - 2202, + 2207, "[player_career_stats_v_select_column!]" ], "distinct": [ @@ -42812,34 +42918,34 @@ export default { } ], "max": [ - 2199 + 2204 ], "min": [ - 2200 + 2205 ], "stddev": [ - 2203 + 2208 ], "stddev_pop": [ - 2204 + 2209 ], "stddev_samp": [ - 2205 + 2210 ], "sum": [ - 2208 + 2213 ], "var_pop": [ - 2209 + 2214 ], "var_samp": [ - 2210 + 2215 ], "variance": [ - 2211 + 2216 ], "__typename": [ - 70 + 75 ] }, "player_career_stats_v_avg_fields": { @@ -42892,42 +42998,42 @@ export default { 29 ], "__typename": [ - 70 + 75 ] }, "player_career_stats_v_bool_exp": { "_and": [ - 2198 + 2203 ], "_not": [ - 2198 + 2203 ], "_or": [ - 2198 + 2203 ], "accuracy": [ - 2010 + 2015 ], "accuracy_spotted": [ - 2010 + 2015 ], "counter_strafe_pct": [ - 2010 + 2015 ], "crosshair_deg": [ - 2010 + 2015 ], "enemy_blind_pr": [ - 2010 + 2015 ], "flash_assists_pr": [ - 2010 + 2015 ], "hs_pct": [ - 2010 + 2015 ], "kast_pct": [ - 2010 + 2015 ], "maps": [ 39 @@ -42939,48 +43045,48 @@ export default { 39 ], "steam_id": [ - 171 + 176 ], "survival_pct": [ - 2010 + 2015 ], "time_to_damage_s": [ - 2010 + 2015 ], "traded_death_pct": [ - 2010 + 2015 ], "util_efficiency": [ - 2010 + 2015 ], "__typename": [ - 70 + 75 ] }, "player_career_stats_v_max_fields": { "accuracy": [ - 2009 + 2014 ], "accuracy_spotted": [ - 2009 + 2014 ], "counter_strafe_pct": [ - 2009 + 2014 ], "crosshair_deg": [ - 2009 + 2014 ], "enemy_blind_pr": [ - 2009 + 2014 ], "flash_assists_pr": [ - 2009 + 2014 ], "hs_pct": [ - 2009 + 2014 ], "kast_pct": [ - 2009 + 2014 ], "maps": [ 38 @@ -42992,48 +43098,48 @@ export default { 38 ], "steam_id": [ - 169 + 174 ], "survival_pct": [ - 2009 + 2014 ], "time_to_damage_s": [ - 2009 + 2014 ], "traded_death_pct": [ - 2009 + 2014 ], "util_efficiency": [ - 2009 + 2014 ], "__typename": [ - 70 + 75 ] }, "player_career_stats_v_min_fields": { "accuracy": [ - 2009 + 2014 ], "accuracy_spotted": [ - 2009 + 2014 ], "counter_strafe_pct": [ - 2009 + 2014 ], "crosshair_deg": [ - 2009 + 2014 ], "enemy_blind_pr": [ - 2009 + 2014 ], "flash_assists_pr": [ - 2009 + 2014 ], "hs_pct": [ - 2009 + 2014 ], "kast_pct": [ - 2009 + 2014 ], "maps": [ 38 @@ -43045,75 +43151,75 @@ export default { 38 ], "steam_id": [ - 169 + 174 ], "survival_pct": [ - 2009 + 2014 ], "time_to_damage_s": [ - 2009 + 2014 ], "traded_death_pct": [ - 2009 + 2014 ], "util_efficiency": [ - 2009 + 2014 ], "__typename": [ - 70 + 75 ] }, "player_career_stats_v_order_by": { "accuracy": [ - 2011 + 2016 ], "accuracy_spotted": [ - 2011 + 2016 ], "counter_strafe_pct": [ - 2011 + 2016 ], "crosshair_deg": [ - 2011 + 2016 ], "enemy_blind_pr": [ - 2011 + 2016 ], "flash_assists_pr": [ - 2011 + 2016 ], "hs_pct": [ - 2011 + 2016 ], "kast_pct": [ - 2011 + 2016 ], "maps": [ - 2011 + 2016 ], "premier_rank": [ - 2011 + 2016 ], "rounds": [ - 2011 + 2016 ], "steam_id": [ - 2011 + 2016 ], "survival_pct": [ - 2011 + 2016 ], "time_to_damage_s": [ - 2011 + 2016 ], "traded_death_pct": [ - 2011 + 2016 ], "util_efficiency": [ - 2011 + 2016 ], "__typename": [ - 70 + 75 ] }, "player_career_stats_v_select_column": {}, @@ -43167,7 +43273,7 @@ export default { 29 ], "__typename": [ - 70 + 75 ] }, "player_career_stats_v_stddev_pop_fields": { @@ -43220,7 +43326,7 @@ export default { 29 ], "__typename": [ - 70 + 75 ] }, "player_career_stats_v_stddev_samp_fields": { @@ -43273,44 +43379,44 @@ export default { 29 ], "__typename": [ - 70 + 75 ] }, "player_career_stats_v_stream_cursor_input": { "initial_value": [ - 2207 + 2212 ], "ordering": [ - 224 + 229 ], "__typename": [ - 70 + 75 ] }, "player_career_stats_v_stream_cursor_value_input": { "accuracy": [ - 2009 + 2014 ], "accuracy_spotted": [ - 2009 + 2014 ], "counter_strafe_pct": [ - 2009 + 2014 ], "crosshair_deg": [ - 2009 + 2014 ], "enemy_blind_pr": [ - 2009 + 2014 ], "flash_assists_pr": [ - 2009 + 2014 ], "hs_pct": [ - 2009 + 2014 ], "kast_pct": [ - 2009 + 2014 ], "maps": [ 38 @@ -43322,48 +43428,48 @@ export default { 38 ], "steam_id": [ - 169 + 174 ], "survival_pct": [ - 2009 + 2014 ], "time_to_damage_s": [ - 2009 + 2014 ], "traded_death_pct": [ - 2009 + 2014 ], "util_efficiency": [ - 2009 + 2014 ], "__typename": [ - 70 + 75 ] }, "player_career_stats_v_sum_fields": { "accuracy": [ - 2009 + 2014 ], "accuracy_spotted": [ - 2009 + 2014 ], "counter_strafe_pct": [ - 2009 + 2014 ], "crosshair_deg": [ - 2009 + 2014 ], "enemy_blind_pr": [ - 2009 + 2014 ], "flash_assists_pr": [ - 2009 + 2014 ], "hs_pct": [ - 2009 + 2014 ], "kast_pct": [ - 2009 + 2014 ], "maps": [ 38 @@ -43375,22 +43481,22 @@ export default { 38 ], "steam_id": [ - 169 + 174 ], "survival_pct": [ - 2009 + 2014 ], "time_to_damage_s": [ - 2009 + 2014 ], "traded_death_pct": [ - 2009 + 2014 ], "util_efficiency": [ - 2009 + 2014 ], "__typename": [ - 70 + 75 ] }, "player_career_stats_v_var_pop_fields": { @@ -43443,7 +43549,7 @@ export default { 29 ], "__typename": [ - 70 + 75 ] }, "player_career_stats_v_var_samp_fields": { @@ -43496,7 +43602,7 @@ export default { 29 ], "__typename": [ - 70 + 75 ] }, "player_career_stats_v_variance_fields": { @@ -43549,7 +43655,7 @@ export default { 29 ], "__typename": [ - 70 + 75 ] }, "player_damages": { @@ -43557,31 +43663,31 @@ export default { 38 ], "attacked_location": [ - 70 + 75 ], "attacked_location_coordinates": [ - 70 + 75 ], "attacked_player": [ - 2878 + 2915 ], "attacked_steam_id": [ - 169 + 174 ], "attacked_team": [ - 70 + 75 ], "attacker_location": [ - 70 + 75 ], "attacker_location_coordinates": [ - 70 + 75 ], "attacker_steam_id": [ - 169 + 174 ], "attacker_team": [ - 70 + 75 ], "damage": [ 38 @@ -43590,93 +43696,93 @@ export default { 38 ], "deleted_at": [ - 3421 + 3467 ], "health": [ 38 ], "hitgroup": [ - 70 + 75 ], "id": [ - 3818 + 3864 ], "match": [ - 1826 + 1831 ], "match_id": [ - 3818 + 3864 ], "match_map": [ - 1664 + 1669 ], "match_map_id": [ - 3818 + 3864 ], "player": [ - 2878 + 2915 ], "round": [ - 2009 + 2014 ], "team_damage": [ 3 ], "time": [ - 3421 + 3467 ], "with": [ - 70 + 75 ], "__typename": [ - 70 + 75 ] }, "player_damages_aggregate": { "aggregate": [ - 2216 + 2221 ], "nodes": [ - 2212 + 2217 ], "__typename": [ - 70 + 75 ] }, "player_damages_aggregate_bool_exp": { "count": [ - 2215 + 2220 ], "__typename": [ - 70 + 75 ] }, "player_damages_aggregate_bool_exp_count": { "arguments": [ - 2233 + 2238 ], "distinct": [ 3 ], "filter": [ - 2221 + 2226 ], "predicate": [ 39 ], "__typename": [ - 70 + 75 ] }, "player_damages_aggregate_fields": { "avg": [ - 2219 + 2224 ], "count": [ 38, { "columns": [ - 2233, + 2238, "[player_damages_select_column!]" ], "distinct": [ @@ -43685,83 +43791,83 @@ export default { } ], "max": [ - 2225 + 2230 ], "min": [ - 2227 + 2232 ], "stddev": [ - 2235 + 2240 ], "stddev_pop": [ - 2237 + 2242 ], "stddev_samp": [ - 2239 + 2244 ], "sum": [ - 2243 + 2248 ], "var_pop": [ - 2247 + 2252 ], "var_samp": [ - 2249 + 2254 ], "variance": [ - 2251 + 2256 ], "__typename": [ - 70 + 75 ] }, "player_damages_aggregate_order_by": { "avg": [ - 2220 + 2225 ], "count": [ - 2011 + 2016 ], "max": [ - 2226 + 2231 ], "min": [ - 2228 + 2233 ], "stddev": [ - 2236 + 2241 ], "stddev_pop": [ - 2238 + 2243 ], "stddev_samp": [ - 2240 + 2245 ], "sum": [ - 2244 + 2249 ], "var_pop": [ - 2248 + 2253 ], "var_samp": [ - 2250 + 2255 ], "variance": [ - 2252 + 2257 ], "__typename": [ - 70 + 75 ] }, "player_damages_arr_rel_insert_input": { "data": [ - 2224 + 2229 ], "on_conflict": [ - 2230 + 2235 ], "__typename": [ - 70 + 75 ] }, "player_damages_avg_fields": { @@ -43787,74 +43893,74 @@ export default { 29 ], "__typename": [ - 70 + 75 ] }, "player_damages_avg_order_by": { "armor": [ - 2011 + 2016 ], "attacked_steam_id": [ - 2011 + 2016 ], "attacker_steam_id": [ - 2011 + 2016 ], "damage": [ - 2011 + 2016 ], "damage_armor": [ - 2011 + 2016 ], "health": [ - 2011 + 2016 ], "round": [ - 2011 + 2016 ], "__typename": [ - 70 + 75 ] }, "player_damages_bool_exp": { "_and": [ - 2221 + 2226 ], "_not": [ - 2221 + 2226 ], "_or": [ - 2221 + 2226 ], "armor": [ 39 ], "attacked_location": [ - 72 + 77 ], "attacked_location_coordinates": [ - 72 + 77 ], "attacked_player": [ - 2882 + 2919 ], "attacked_steam_id": [ - 171 + 176 ], "attacked_team": [ - 72 + 77 ], "attacker_location": [ - 72 + 77 ], "attacker_location_coordinates": [ - 72 + 77 ], "attacker_steam_id": [ - 171 + 176 ], "attacker_team": [ - 72 + 77 ], "damage": [ 39 @@ -43863,46 +43969,46 @@ export default { 39 ], "deleted_at": [ - 3422 + 3468 ], "health": [ 39 ], "hitgroup": [ - 72 + 77 ], "id": [ - 3820 + 3866 ], "match": [ - 1835 + 1840 ], "match_id": [ - 3820 + 3866 ], "match_map": [ - 1673 + 1678 ], "match_map_id": [ - 3820 + 3866 ], "player": [ - 2882 + 2919 ], "round": [ - 2010 + 2015 ], "team_damage": [ 4 ], "time": [ - 3422 + 3468 ], "with": [ - 72 + 77 ], "__typename": [ - 70 + 75 ] }, "player_damages_constraint": {}, @@ -43911,10 +44017,10 @@ export default { 38 ], "attacked_steam_id": [ - 169 + 174 ], "attacker_steam_id": [ - 169 + 174 ], "damage": [ 38 @@ -43926,10 +44032,10 @@ export default { 38 ], "round": [ - 2009 + 2014 ], "__typename": [ - 70 + 75 ] }, "player_damages_insert_input": { @@ -43937,31 +44043,31 @@ export default { 38 ], "attacked_location": [ - 70 + 75 ], "attacked_location_coordinates": [ - 70 + 75 ], "attacked_player": [ - 2889 + 2926 ], "attacked_steam_id": [ - 169 + 174 ], "attacked_team": [ - 70 + 75 ], "attacker_location": [ - 70 + 75 ], "attacker_location_coordinates": [ - 70 + 75 ], "attacker_steam_id": [ - 169 + 174 ], "attacker_team": [ - 70 + 75 ], "damage": [ 38 @@ -43970,43 +44076,43 @@ export default { 38 ], "deleted_at": [ - 3421 + 3467 ], "health": [ 38 ], "hitgroup": [ - 70 + 75 ], "id": [ - 3818 + 3864 ], "match": [ - 1844 + 1849 ], "match_id": [ - 3818 + 3864 ], "match_map": [ - 1682 + 1687 ], "match_map_id": [ - 3818 + 3864 ], "player": [ - 2889 + 2926 ], "round": [ - 2009 + 2014 ], "time": [ - 3421 + 3467 ], "with": [ - 70 + 75 ], "__typename": [ - 70 + 75 ] }, "player_damages_max_fields": { @@ -44014,28 +44120,28 @@ export default { 38 ], "attacked_location": [ - 70 + 75 ], "attacked_location_coordinates": [ - 70 + 75 ], "attacked_steam_id": [ - 169 + 174 ], "attacked_team": [ - 70 + 75 ], "attacker_location": [ - 70 + 75 ], "attacker_location_coordinates": [ - 70 + 75 ], "attacker_steam_id": [ - 169 + 174 ], "attacker_team": [ - 70 + 75 ], "damage": [ 38 @@ -44044,99 +44150,99 @@ export default { 38 ], "deleted_at": [ - 3421 + 3467 ], "health": [ 38 ], "hitgroup": [ - 70 + 75 ], "id": [ - 3818 + 3864 ], "match_id": [ - 3818 + 3864 ], "match_map_id": [ - 3818 + 3864 ], "round": [ - 2009 + 2014 ], "time": [ - 3421 + 3467 ], "with": [ - 70 + 75 ], "__typename": [ - 70 + 75 ] }, "player_damages_max_order_by": { "armor": [ - 2011 + 2016 ], "attacked_location": [ - 2011 + 2016 ], "attacked_location_coordinates": [ - 2011 + 2016 ], "attacked_steam_id": [ - 2011 + 2016 ], "attacked_team": [ - 2011 + 2016 ], "attacker_location": [ - 2011 + 2016 ], "attacker_location_coordinates": [ - 2011 + 2016 ], "attacker_steam_id": [ - 2011 + 2016 ], "attacker_team": [ - 2011 + 2016 ], "damage": [ - 2011 + 2016 ], "damage_armor": [ - 2011 + 2016 ], "deleted_at": [ - 2011 + 2016 ], "health": [ - 2011 + 2016 ], "hitgroup": [ - 2011 + 2016 ], "id": [ - 2011 + 2016 ], "match_id": [ - 2011 + 2016 ], "match_map_id": [ - 2011 + 2016 ], "round": [ - 2011 + 2016 ], "time": [ - 2011 + 2016 ], "with": [ - 2011 + 2016 ], "__typename": [ - 70 + 75 ] }, "player_damages_min_fields": { @@ -44144,28 +44250,28 @@ export default { 38 ], "attacked_location": [ - 70 + 75 ], "attacked_location_coordinates": [ - 70 + 75 ], "attacked_steam_id": [ - 169 + 174 ], "attacked_team": [ - 70 + 75 ], "attacker_location": [ - 70 + 75 ], "attacker_location_coordinates": [ - 70 + 75 ], "attacker_steam_id": [ - 169 + 174 ], "attacker_team": [ - 70 + 75 ], "damage": [ 38 @@ -44174,99 +44280,99 @@ export default { 38 ], "deleted_at": [ - 3421 + 3467 ], "health": [ 38 ], "hitgroup": [ - 70 + 75 ], "id": [ - 3818 + 3864 ], "match_id": [ - 3818 + 3864 ], "match_map_id": [ - 3818 + 3864 ], "round": [ - 2009 + 2014 ], "time": [ - 3421 + 3467 ], "with": [ - 70 + 75 ], "__typename": [ - 70 + 75 ] }, "player_damages_min_order_by": { "armor": [ - 2011 + 2016 ], "attacked_location": [ - 2011 + 2016 ], "attacked_location_coordinates": [ - 2011 + 2016 ], "attacked_steam_id": [ - 2011 + 2016 ], "attacked_team": [ - 2011 + 2016 ], "attacker_location": [ - 2011 + 2016 ], "attacker_location_coordinates": [ - 2011 + 2016 ], "attacker_steam_id": [ - 2011 + 2016 ], "attacker_team": [ - 2011 + 2016 ], "damage": [ - 2011 + 2016 ], "damage_armor": [ - 2011 + 2016 ], "deleted_at": [ - 2011 + 2016 ], "health": [ - 2011 + 2016 ], "hitgroup": [ - 2011 + 2016 ], "id": [ - 2011 + 2016 ], "match_id": [ - 2011 + 2016 ], "match_map_id": [ - 2011 + 2016 ], "round": [ - 2011 + 2016 ], "time": [ - 2011 + 2016 ], "with": [ - 2011 + 2016 ], "__typename": [ - 70 + 75 ] }, "player_damages_mutation_response": { @@ -44274,118 +44380,118 @@ export default { 38 ], "returning": [ - 2212 + 2217 ], "__typename": [ - 70 + 75 ] }, "player_damages_on_conflict": { "constraint": [ - 2222 + 2227 ], "update_columns": [ - 2245 + 2250 ], "where": [ - 2221 + 2226 ], "__typename": [ - 70 + 75 ] }, "player_damages_order_by": { "armor": [ - 2011 + 2016 ], "attacked_location": [ - 2011 + 2016 ], "attacked_location_coordinates": [ - 2011 + 2016 ], "attacked_player": [ - 2891 + 2928 ], "attacked_steam_id": [ - 2011 + 2016 ], "attacked_team": [ - 2011 + 2016 ], "attacker_location": [ - 2011 + 2016 ], "attacker_location_coordinates": [ - 2011 + 2016 ], "attacker_steam_id": [ - 2011 + 2016 ], "attacker_team": [ - 2011 + 2016 ], "damage": [ - 2011 + 2016 ], "damage_armor": [ - 2011 + 2016 ], "deleted_at": [ - 2011 + 2016 ], "health": [ - 2011 + 2016 ], "hitgroup": [ - 2011 + 2016 ], "id": [ - 2011 + 2016 ], "match": [ - 1846 + 1851 ], "match_id": [ - 2011 + 2016 ], "match_map": [ - 1684 + 1689 ], "match_map_id": [ - 2011 + 2016 ], "player": [ - 2891 + 2928 ], "round": [ - 2011 + 2016 ], "team_damage": [ - 2011 + 2016 ], "time": [ - 2011 + 2016 ], "with": [ - 2011 + 2016 ], "__typename": [ - 70 + 75 ] }, "player_damages_pk_columns_input": { "id": [ - 3818 + 3864 ], "match_map_id": [ - 3818 + 3864 ], "time": [ - 3421 + 3467 ], "__typename": [ - 70 + 75 ] }, "player_damages_select_column": {}, @@ -44394,28 +44500,28 @@ export default { 38 ], "attacked_location": [ - 70 + 75 ], "attacked_location_coordinates": [ - 70 + 75 ], "attacked_steam_id": [ - 169 + 174 ], "attacked_team": [ - 70 + 75 ], "attacker_location": [ - 70 + 75 ], "attacker_location_coordinates": [ - 70 + 75 ], "attacker_steam_id": [ - 169 + 174 ], "attacker_team": [ - 70 + 75 ], "damage": [ 38 @@ -44424,34 +44530,34 @@ export default { 38 ], "deleted_at": [ - 3421 + 3467 ], "health": [ 38 ], "hitgroup": [ - 70 + 75 ], "id": [ - 3818 + 3864 ], "match_id": [ - 3818 + 3864 ], "match_map_id": [ - 3818 + 3864 ], "round": [ - 2009 + 2014 ], "time": [ - 3421 + 3467 ], "with": [ - 70 + 75 ], "__typename": [ - 70 + 75 ] }, "player_damages_stddev_fields": { @@ -44477,33 +44583,33 @@ export default { 29 ], "__typename": [ - 70 + 75 ] }, "player_damages_stddev_order_by": { "armor": [ - 2011 + 2016 ], "attacked_steam_id": [ - 2011 + 2016 ], "attacker_steam_id": [ - 2011 + 2016 ], "damage": [ - 2011 + 2016 ], "damage_armor": [ - 2011 + 2016 ], "health": [ - 2011 + 2016 ], "round": [ - 2011 + 2016 ], "__typename": [ - 70 + 75 ] }, "player_damages_stddev_pop_fields": { @@ -44529,33 +44635,33 @@ export default { 29 ], "__typename": [ - 70 + 75 ] }, "player_damages_stddev_pop_order_by": { "armor": [ - 2011 + 2016 ], "attacked_steam_id": [ - 2011 + 2016 ], "attacker_steam_id": [ - 2011 + 2016 ], "damage": [ - 2011 + 2016 ], "damage_armor": [ - 2011 + 2016 ], "health": [ - 2011 + 2016 ], "round": [ - 2011 + 2016 ], "__typename": [ - 70 + 75 ] }, "player_damages_stddev_samp_fields": { @@ -44581,44 +44687,44 @@ export default { 29 ], "__typename": [ - 70 + 75 ] }, "player_damages_stddev_samp_order_by": { "armor": [ - 2011 + 2016 ], "attacked_steam_id": [ - 2011 + 2016 ], "attacker_steam_id": [ - 2011 + 2016 ], "damage": [ - 2011 + 2016 ], "damage_armor": [ - 2011 + 2016 ], "health": [ - 2011 + 2016 ], "round": [ - 2011 + 2016 ], "__typename": [ - 70 + 75 ] }, "player_damages_stream_cursor_input": { "initial_value": [ - 2242 + 2247 ], "ordering": [ - 224 + 229 ], "__typename": [ - 70 + 75 ] }, "player_damages_stream_cursor_value_input": { @@ -44626,28 +44732,28 @@ export default { 38 ], "attacked_location": [ - 70 + 75 ], "attacked_location_coordinates": [ - 70 + 75 ], "attacked_steam_id": [ - 169 + 174 ], "attacked_team": [ - 70 + 75 ], "attacker_location": [ - 70 + 75 ], "attacker_location_coordinates": [ - 70 + 75 ], "attacker_steam_id": [ - 169 + 174 ], "attacker_team": [ - 70 + 75 ], "damage": [ 38 @@ -44656,34 +44762,34 @@ export default { 38 ], "deleted_at": [ - 3421 + 3467 ], "health": [ 38 ], "hitgroup": [ - 70 + 75 ], "id": [ - 3818 + 3864 ], "match_id": [ - 3818 + 3864 ], "match_map_id": [ - 3818 + 3864 ], "round": [ - 2009 + 2014 ], "time": [ - 3421 + 3467 ], "with": [ - 70 + 75 ], "__typename": [ - 70 + 75 ] }, "player_damages_sum_fields": { @@ -44691,10 +44797,10 @@ export default { 38 ], "attacked_steam_id": [ - 169 + 174 ], "attacker_steam_id": [ - 169 + 174 ], "damage": [ 38 @@ -44706,51 +44812,51 @@ export default { 38 ], "round": [ - 2009 + 2014 ], "__typename": [ - 70 + 75 ] }, "player_damages_sum_order_by": { "armor": [ - 2011 + 2016 ], "attacked_steam_id": [ - 2011 + 2016 ], "attacker_steam_id": [ - 2011 + 2016 ], "damage": [ - 2011 + 2016 ], "damage_armor": [ - 2011 + 2016 ], "health": [ - 2011 + 2016 ], "round": [ - 2011 + 2016 ], "__typename": [ - 70 + 75 ] }, "player_damages_update_column": {}, "player_damages_updates": { "_inc": [ - 2223 + 2228 ], "_set": [ - 2234 + 2239 ], "where": [ - 2221 + 2226 ], "__typename": [ - 70 + 75 ] }, "player_damages_var_pop_fields": { @@ -44776,33 +44882,33 @@ export default { 29 ], "__typename": [ - 70 + 75 ] }, "player_damages_var_pop_order_by": { "armor": [ - 2011 + 2016 ], "attacked_steam_id": [ - 2011 + 2016 ], "attacker_steam_id": [ - 2011 + 2016 ], "damage": [ - 2011 + 2016 ], "damage_armor": [ - 2011 + 2016 ], "health": [ - 2011 + 2016 ], "round": [ - 2011 + 2016 ], "__typename": [ - 70 + 75 ] }, "player_damages_var_samp_fields": { @@ -44828,33 +44934,33 @@ export default { 29 ], "__typename": [ - 70 + 75 ] }, "player_damages_var_samp_order_by": { "armor": [ - 2011 + 2016 ], "attacked_steam_id": [ - 2011 + 2016 ], "attacker_steam_id": [ - 2011 + 2016 ], "damage": [ - 2011 + 2016 ], "damage_armor": [ - 2011 + 2016 ], "health": [ - 2011 + 2016 ], "round": [ - 2011 + 2016 ], "__typename": [ - 70 + 75 ] }, "player_damages_variance_fields": { @@ -44880,71 +44986,71 @@ export default { 29 ], "__typename": [ - 70 + 75 ] }, "player_damages_variance_order_by": { "armor": [ - 2011 + 2016 ], "attacked_steam_id": [ - 2011 + 2016 ], "attacker_steam_id": [ - 2011 + 2016 ], "damage": [ - 2011 + 2016 ], "damage_armor": [ - 2011 + 2016 ], "health": [ - 2011 + 2016 ], "round": [ - 2011 + 2016 ], "__typename": [ - 70 + 75 ] }, "player_elo": { "actual_score": [ - 1084 + 1089 ], "assists": [ 38 ], "change": [ - 2009 + 2014 ], "created_at": [ - 3421 + 3467 ], "current": [ - 2009 + 2014 ], "damage": [ 38 ], "damage_percent": [ - 1084 + 1089 ], "deaths": [ 38 ], "expected_score": [ - 1084 + 1089 ], "impact": [ - 2009 + 2014 ], "k_factor": [ 38 ], "kda": [ - 1084 + 1089 ], "kills": [ 38 @@ -44956,59 +45062,59 @@ export default { 38 ], "match": [ - 1826 + 1831 ], "match_id": [ - 3818 + 3864 ], "opponent_team_elo_avg": [ - 1084 + 1089 ], "performance_multiplier": [ - 1084 + 1089 ], "player": [ - 2878 + 2915 ], "player_team_elo_avg": [ - 1084 + 1089 ], "series_multiplier": [ 38 ], "steam_id": [ - 169 + 174 ], "team_avg_kda": [ - 1084 + 1089 ], "type": [ - 724 + 729 ], "__typename": [ - 70 + 75 ] }, "player_elo_aggregate": { "aggregate": [ - 2255 + 2260 ], "nodes": [ - 2253 + 2258 ], "__typename": [ - 70 + 75 ] }, "player_elo_aggregate_fields": { "avg": [ - 2256 + 2261 ], "count": [ 38, { "columns": [ - 2267, + 2272, "[player_elo_select_column!]" ], "distinct": [ @@ -45017,34 +45123,34 @@ export default { } ], "max": [ - 2261 + 2266 ], "min": [ - 2262 + 2267 ], "stddev": [ - 2269 + 2274 ], "stddev_pop": [ - 2270 + 2275 ], "stddev_samp": [ - 2271 + 2276 ], "sum": [ - 2274 + 2279 ], "var_pop": [ - 2277 + 2282 ], "var_samp": [ - 2278 + 2283 ], "variance": [ - 2279 + 2284 ], "__typename": [ - 70 + 75 ] }, "player_elo_avg_fields": { @@ -45109,54 +45215,54 @@ export default { 29 ], "__typename": [ - 70 + 75 ] }, "player_elo_bool_exp": { "_and": [ - 2257 + 2262 ], "_not": [ - 2257 + 2262 ], "_or": [ - 2257 + 2262 ], "actual_score": [ - 1085 + 1090 ], "assists": [ 39 ], "change": [ - 2010 + 2015 ], "created_at": [ - 3422 + 3468 ], "current": [ - 2010 + 2015 ], "damage": [ 39 ], "damage_percent": [ - 1085 + 1090 ], "deaths": [ 39 ], "expected_score": [ - 1085 + 1090 ], "impact": [ - 2010 + 2015 ], "k_factor": [ 39 ], "kda": [ - 1085 + 1090 ], "kills": [ 39 @@ -45168,73 +45274,73 @@ export default { 39 ], "match": [ - 1835 + 1840 ], "match_id": [ - 3820 + 3866 ], "opponent_team_elo_avg": [ - 1085 + 1090 ], "performance_multiplier": [ - 1085 + 1090 ], "player": [ - 2882 + 2919 ], "player_team_elo_avg": [ - 1085 + 1090 ], "series_multiplier": [ 39 ], "steam_id": [ - 171 + 176 ], "team_avg_kda": [ - 1085 + 1090 ], "type": [ - 725 + 730 ], "__typename": [ - 70 + 75 ] }, "player_elo_constraint": {}, "player_elo_inc_input": { "actual_score": [ - 1084 + 1089 ], "assists": [ 38 ], "change": [ - 2009 + 2014 ], "current": [ - 2009 + 2014 ], "damage": [ 38 ], "damage_percent": [ - 1084 + 1089 ], "deaths": [ 38 ], "expected_score": [ - 1084 + 1089 ], "impact": [ - 2009 + 2014 ], "k_factor": [ 38 ], "kda": [ - 1084 + 1089 ], "kills": [ 38 @@ -45246,63 +45352,63 @@ export default { 38 ], "opponent_team_elo_avg": [ - 1084 + 1089 ], "performance_multiplier": [ - 1084 + 1089 ], "player_team_elo_avg": [ - 1084 + 1089 ], "series_multiplier": [ 38 ], "steam_id": [ - 169 + 174 ], "team_avg_kda": [ - 1084 + 1089 ], "__typename": [ - 70 + 75 ] }, "player_elo_insert_input": { "actual_score": [ - 1084 + 1089 ], "assists": [ 38 ], "change": [ - 2009 + 2014 ], "created_at": [ - 3421 + 3467 ], "current": [ - 2009 + 2014 ], "damage": [ 38 ], "damage_percent": [ - 1084 + 1089 ], "deaths": [ 38 ], "expected_score": [ - 1084 + 1089 ], "impact": [ - 2009 + 2014 ], "k_factor": [ 38 ], "kda": [ - 1084 + 1089 ], "kills": [ 38 @@ -45314,75 +45420,75 @@ export default { 38 ], "match": [ - 1844 + 1849 ], "match_id": [ - 3818 + 3864 ], "opponent_team_elo_avg": [ - 1084 + 1089 ], "performance_multiplier": [ - 1084 + 1089 ], "player": [ - 2889 + 2926 ], "player_team_elo_avg": [ - 1084 + 1089 ], "series_multiplier": [ 38 ], "steam_id": [ - 169 + 174 ], "team_avg_kda": [ - 1084 + 1089 ], "type": [ - 724 + 729 ], "__typename": [ - 70 + 75 ] }, "player_elo_max_fields": { "actual_score": [ - 1084 + 1089 ], "assists": [ 38 ], "change": [ - 2009 + 2014 ], "created_at": [ - 3421 + 3467 ], "current": [ - 2009 + 2014 ], "damage": [ 38 ], "damage_percent": [ - 1084 + 1089 ], "deaths": [ 38 ], "expected_score": [ - 1084 + 1089 ], "impact": [ - 2009 + 2014 ], "k_factor": [ 38 ], "kda": [ - 1084 + 1089 ], "kills": [ 38 @@ -45394,66 +45500,66 @@ export default { 38 ], "match_id": [ - 3818 + 3864 ], "opponent_team_elo_avg": [ - 1084 + 1089 ], "performance_multiplier": [ - 1084 + 1089 ], "player_team_elo_avg": [ - 1084 + 1089 ], "series_multiplier": [ 38 ], "steam_id": [ - 169 + 174 ], "team_avg_kda": [ - 1084 + 1089 ], "__typename": [ - 70 + 75 ] }, "player_elo_min_fields": { "actual_score": [ - 1084 + 1089 ], "assists": [ 38 ], "change": [ - 2009 + 2014 ], "created_at": [ - 3421 + 3467 ], "current": [ - 2009 + 2014 ], "damage": [ 38 ], "damage_percent": [ - 1084 + 1089 ], "deaths": [ 38 ], "expected_score": [ - 1084 + 1089 ], "impact": [ - 2009 + 2014 ], "k_factor": [ 38 ], "kda": [ - 1084 + 1089 ], "kills": [ 38 @@ -45465,28 +45571,28 @@ export default { 38 ], "match_id": [ - 3818 + 3864 ], "opponent_team_elo_avg": [ - 1084 + 1089 ], "performance_multiplier": [ - 1084 + 1089 ], "player_team_elo_avg": [ - 1084 + 1089 ], "series_multiplier": [ 38 ], "steam_id": [ - 169 + 174 ], "team_avg_kda": [ - 1084 + 1089 ], "__typename": [ - 70 + 75 ] }, "player_elo_mutation_response": { @@ -45494,157 +45600,157 @@ export default { 38 ], "returning": [ - 2253 + 2258 ], "__typename": [ - 70 + 75 ] }, "player_elo_on_conflict": { "constraint": [ - 2258 + 2263 ], "update_columns": [ - 2275 + 2280 ], "where": [ - 2257 + 2262 ], "__typename": [ - 70 + 75 ] }, "player_elo_order_by": { "actual_score": [ - 2011 + 2016 ], "assists": [ - 2011 + 2016 ], "change": [ - 2011 + 2016 ], "created_at": [ - 2011 + 2016 ], "current": [ - 2011 + 2016 ], "damage": [ - 2011 + 2016 ], "damage_percent": [ - 2011 + 2016 ], "deaths": [ - 2011 + 2016 ], "expected_score": [ - 2011 + 2016 ], "impact": [ - 2011 + 2016 ], "k_factor": [ - 2011 + 2016 ], "kda": [ - 2011 + 2016 ], "kills": [ - 2011 + 2016 ], "map_losses": [ - 2011 + 2016 ], "map_wins": [ - 2011 + 2016 ], "match": [ - 1846 + 1851 ], "match_id": [ - 2011 + 2016 ], "opponent_team_elo_avg": [ - 2011 + 2016 ], "performance_multiplier": [ - 2011 + 2016 ], "player": [ - 2891 + 2928 ], "player_team_elo_avg": [ - 2011 + 2016 ], "series_multiplier": [ - 2011 + 2016 ], "steam_id": [ - 2011 + 2016 ], "team_avg_kda": [ - 2011 + 2016 ], "type": [ - 2011 + 2016 ], "__typename": [ - 70 + 75 ] }, "player_elo_pk_columns_input": { "match_id": [ - 3818 + 3864 ], "steam_id": [ - 169 + 174 ], "type": [ - 724 + 729 ], "__typename": [ - 70 + 75 ] }, "player_elo_select_column": {}, "player_elo_set_input": { "actual_score": [ - 1084 + 1089 ], "assists": [ 38 ], "change": [ - 2009 + 2014 ], "created_at": [ - 3421 + 3467 ], "current": [ - 2009 + 2014 ], "damage": [ 38 ], "damage_percent": [ - 1084 + 1089 ], "deaths": [ 38 ], "expected_score": [ - 1084 + 1089 ], "impact": [ - 2009 + 2014 ], "k_factor": [ 38 ], "kda": [ - 1084 + 1089 ], "kills": [ 38 @@ -45656,31 +45762,31 @@ export default { 38 ], "match_id": [ - 3818 + 3864 ], "opponent_team_elo_avg": [ - 1084 + 1089 ], "performance_multiplier": [ - 1084 + 1089 ], "player_team_elo_avg": [ - 1084 + 1089 ], "series_multiplier": [ 38 ], "steam_id": [ - 169 + 174 ], "team_avg_kda": [ - 1084 + 1089 ], "type": [ - 724 + 729 ], "__typename": [ - 70 + 75 ] }, "player_elo_stddev_fields": { @@ -45745,7 +45851,7 @@ export default { 29 ], "__typename": [ - 70 + 75 ] }, "player_elo_stddev_pop_fields": { @@ -45810,7 +45916,7 @@ export default { 29 ], "__typename": [ - 70 + 75 ] }, "player_elo_stddev_samp_fields": { @@ -45875,56 +45981,56 @@ export default { 29 ], "__typename": [ - 70 + 75 ] }, "player_elo_stream_cursor_input": { "initial_value": [ - 2273 + 2278 ], "ordering": [ - 224 + 229 ], "__typename": [ - 70 + 75 ] }, "player_elo_stream_cursor_value_input": { "actual_score": [ - 1084 + 1089 ], "assists": [ 38 ], "change": [ - 2009 + 2014 ], "created_at": [ - 3421 + 3467 ], "current": [ - 2009 + 2014 ], "damage": [ 38 ], "damage_percent": [ - 1084 + 1089 ], "deaths": [ 38 ], "expected_score": [ - 1084 + 1089 ], "impact": [ - 2009 + 2014 ], "k_factor": [ 38 ], "kda": [ - 1084 + 1089 ], "kills": [ 38 @@ -45936,66 +46042,66 @@ export default { 38 ], "match_id": [ - 3818 + 3864 ], "opponent_team_elo_avg": [ - 1084 + 1089 ], "performance_multiplier": [ - 1084 + 1089 ], "player_team_elo_avg": [ - 1084 + 1089 ], "series_multiplier": [ 38 ], "steam_id": [ - 169 + 174 ], "team_avg_kda": [ - 1084 + 1089 ], "type": [ - 724 + 729 ], "__typename": [ - 70 + 75 ] }, "player_elo_sum_fields": { "actual_score": [ - 1084 + 1089 ], "assists": [ 38 ], "change": [ - 2009 + 2014 ], "current": [ - 2009 + 2014 ], "damage": [ 38 ], "damage_percent": [ - 1084 + 1089 ], "deaths": [ 38 ], "expected_score": [ - 1084 + 1089 ], "impact": [ - 2009 + 2014 ], "k_factor": [ 38 ], "kda": [ - 1084 + 1089 ], "kills": [ 38 @@ -46007,40 +46113,40 @@ export default { 38 ], "opponent_team_elo_avg": [ - 1084 + 1089 ], "performance_multiplier": [ - 1084 + 1089 ], "player_team_elo_avg": [ - 1084 + 1089 ], "series_multiplier": [ 38 ], "steam_id": [ - 169 + 174 ], "team_avg_kda": [ - 1084 + 1089 ], "__typename": [ - 70 + 75 ] }, "player_elo_update_column": {}, "player_elo_updates": { "_inc": [ - 2259 + 2264 ], "_set": [ - 2268 + 2273 ], "where": [ - 2257 + 2262 ], "__typename": [ - 70 + 75 ] }, "player_elo_var_pop_fields": { @@ -46105,7 +46211,7 @@ export default { 29 ], "__typename": [ - 70 + 75 ] }, "player_elo_var_samp_fields": { @@ -46170,7 +46276,7 @@ export default { 29 ], "__typename": [ - 70 + 75 ] }, "player_elo_variance_fields": { @@ -46235,7 +46341,7 @@ export default { 29 ], "__typename": [ - 70 + 75 ] }, "player_faceit_rank_history": { @@ -46243,19 +46349,19 @@ export default { 38 ], "id": [ - 3818 + 3864 ], "match": [ - 1826 + 1831 ], "match_id": [ - 3818 + 3864 ], "observed_at": [ - 3421 + 3467 ], "player": [ - 2878 + 2915 ], "previous_rank": [ 38 @@ -46264,57 +46370,57 @@ export default { 38 ], "steam_id": [ - 169 + 174 ], "__typename": [ - 70 + 75 ] }, "player_faceit_rank_history_aggregate": { "aggregate": [ - 2284 + 2289 ], "nodes": [ - 2280 + 2285 ], "__typename": [ - 70 + 75 ] }, "player_faceit_rank_history_aggregate_bool_exp": { "count": [ - 2283 + 2288 ], "__typename": [ - 70 + 75 ] }, "player_faceit_rank_history_aggregate_bool_exp_count": { "arguments": [ - 2301 + 2306 ], "distinct": [ 3 ], "filter": [ - 2289 + 2294 ], "predicate": [ 39 ], "__typename": [ - 70 + 75 ] }, "player_faceit_rank_history_aggregate_fields": { "avg": [ - 2287 + 2292 ], "count": [ 38, { "columns": [ - 2301, + 2306, "[player_faceit_rank_history_select_column!]" ], "distinct": [ @@ -46323,83 +46429,83 @@ export default { } ], "max": [ - 2293 + 2298 ], "min": [ - 2295 + 2300 ], "stddev": [ - 2303 + 2308 ], "stddev_pop": [ - 2305 + 2310 ], "stddev_samp": [ - 2307 + 2312 ], "sum": [ - 2311 + 2316 ], "var_pop": [ - 2315 + 2320 ], "var_samp": [ - 2317 + 2322 ], "variance": [ - 2319 + 2324 ], "__typename": [ - 70 + 75 ] }, "player_faceit_rank_history_aggregate_order_by": { "avg": [ - 2288 + 2293 ], "count": [ - 2011 + 2016 ], "max": [ - 2294 + 2299 ], "min": [ - 2296 + 2301 ], "stddev": [ - 2304 + 2309 ], "stddev_pop": [ - 2306 + 2311 ], "stddev_samp": [ - 2308 + 2313 ], "sum": [ - 2312 + 2317 ], "var_pop": [ - 2316 + 2321 ], "var_samp": [ - 2318 + 2323 ], "variance": [ - 2320 + 2325 ], "__typename": [ - 70 + 75 ] }, "player_faceit_rank_history_arr_rel_insert_input": { "data": [ - 2292 + 2297 ], "on_conflict": [ - 2298 + 2303 ], "__typename": [ - 70 + 75 ] }, "player_faceit_rank_history_avg_fields": { @@ -46416,53 +46522,53 @@ export default { 29 ], "__typename": [ - 70 + 75 ] }, "player_faceit_rank_history_avg_order_by": { "elo": [ - 2011 + 2016 ], "previous_rank": [ - 2011 + 2016 ], "skill_level": [ - 2011 + 2016 ], "steam_id": [ - 2011 + 2016 ], "__typename": [ - 70 + 75 ] }, "player_faceit_rank_history_bool_exp": { "_and": [ - 2289 + 2294 ], "_not": [ - 2289 + 2294 ], "_or": [ - 2289 + 2294 ], "elo": [ 39 ], "id": [ - 3820 + 3866 ], "match": [ - 1835 + 1840 ], "match_id": [ - 3820 + 3866 ], "observed_at": [ - 3422 + 3468 ], "player": [ - 2882 + 2919 ], "previous_rank": [ 39 @@ -46471,10 +46577,10 @@ export default { 39 ], "steam_id": [ - 171 + 176 ], "__typename": [ - 70 + 75 ] }, "player_faceit_rank_history_constraint": {}, @@ -46489,10 +46595,10 @@ export default { 38 ], "steam_id": [ - 169 + 174 ], "__typename": [ - 70 + 75 ] }, "player_faceit_rank_history_insert_input": { @@ -46500,19 +46606,19 @@ export default { 38 ], "id": [ - 3818 + 3864 ], "match": [ - 1844 + 1849 ], "match_id": [ - 3818 + 3864 ], "observed_at": [ - 3421 + 3467 ], "player": [ - 2889 + 2926 ], "previous_rank": [ 38 @@ -46521,10 +46627,10 @@ export default { 38 ], "steam_id": [ - 169 + 174 ], "__typename": [ - 70 + 75 ] }, "player_faceit_rank_history_max_fields": { @@ -46532,13 +46638,13 @@ export default { 38 ], "id": [ - 3818 + 3864 ], "match_id": [ - 3818 + 3864 ], "observed_at": [ - 3421 + 3467 ], "previous_rank": [ 38 @@ -46547,36 +46653,36 @@ export default { 38 ], "steam_id": [ - 169 + 174 ], "__typename": [ - 70 + 75 ] }, "player_faceit_rank_history_max_order_by": { "elo": [ - 2011 + 2016 ], "id": [ - 2011 + 2016 ], "match_id": [ - 2011 + 2016 ], "observed_at": [ - 2011 + 2016 ], "previous_rank": [ - 2011 + 2016 ], "skill_level": [ - 2011 + 2016 ], "steam_id": [ - 2011 + 2016 ], "__typename": [ - 70 + 75 ] }, "player_faceit_rank_history_min_fields": { @@ -46584,13 +46690,13 @@ export default { 38 ], "id": [ - 3818 + 3864 ], "match_id": [ - 3818 + 3864 ], "observed_at": [ - 3421 + 3467 ], "previous_rank": [ 38 @@ -46599,36 +46705,36 @@ export default { 38 ], "steam_id": [ - 169 + 174 ], "__typename": [ - 70 + 75 ] }, "player_faceit_rank_history_min_order_by": { "elo": [ - 2011 + 2016 ], "id": [ - 2011 + 2016 ], "match_id": [ - 2011 + 2016 ], "observed_at": [ - 2011 + 2016 ], "previous_rank": [ - 2011 + 2016 ], "skill_level": [ - 2011 + 2016 ], "steam_id": [ - 2011 + 2016 ], "__typename": [ - 70 + 75 ] }, "player_faceit_rank_history_mutation_response": { @@ -46636,64 +46742,64 @@ export default { 38 ], "returning": [ - 2280 + 2285 ], "__typename": [ - 70 + 75 ] }, "player_faceit_rank_history_on_conflict": { "constraint": [ - 2290 + 2295 ], "update_columns": [ - 2313 + 2318 ], "where": [ - 2289 + 2294 ], "__typename": [ - 70 + 75 ] }, "player_faceit_rank_history_order_by": { "elo": [ - 2011 + 2016 ], "id": [ - 2011 + 2016 ], "match": [ - 1846 + 1851 ], "match_id": [ - 2011 + 2016 ], "observed_at": [ - 2011 + 2016 ], "player": [ - 2891 + 2928 ], "previous_rank": [ - 2011 + 2016 ], "skill_level": [ - 2011 + 2016 ], "steam_id": [ - 2011 + 2016 ], "__typename": [ - 70 + 75 ] }, "player_faceit_rank_history_pk_columns_input": { "id": [ - 3818 + 3864 ], "__typename": [ - 70 + 75 ] }, "player_faceit_rank_history_select_column": {}, @@ -46702,13 +46808,13 @@ export default { 38 ], "id": [ - 3818 + 3864 ], "match_id": [ - 3818 + 3864 ], "observed_at": [ - 3421 + 3467 ], "previous_rank": [ 38 @@ -46717,10 +46823,10 @@ export default { 38 ], "steam_id": [ - 169 + 174 ], "__typename": [ - 70 + 75 ] }, "player_faceit_rank_history_stddev_fields": { @@ -46737,24 +46843,24 @@ export default { 29 ], "__typename": [ - 70 + 75 ] }, "player_faceit_rank_history_stddev_order_by": { "elo": [ - 2011 + 2016 ], "previous_rank": [ - 2011 + 2016 ], "skill_level": [ - 2011 + 2016 ], "steam_id": [ - 2011 + 2016 ], "__typename": [ - 70 + 75 ] }, "player_faceit_rank_history_stddev_pop_fields": { @@ -46771,24 +46877,24 @@ export default { 29 ], "__typename": [ - 70 + 75 ] }, "player_faceit_rank_history_stddev_pop_order_by": { "elo": [ - 2011 + 2016 ], "previous_rank": [ - 2011 + 2016 ], "skill_level": [ - 2011 + 2016 ], "steam_id": [ - 2011 + 2016 ], "__typename": [ - 70 + 75 ] }, "player_faceit_rank_history_stddev_samp_fields": { @@ -46805,35 +46911,35 @@ export default { 29 ], "__typename": [ - 70 + 75 ] }, "player_faceit_rank_history_stddev_samp_order_by": { "elo": [ - 2011 + 2016 ], "previous_rank": [ - 2011 + 2016 ], "skill_level": [ - 2011 + 2016 ], "steam_id": [ - 2011 + 2016 ], "__typename": [ - 70 + 75 ] }, "player_faceit_rank_history_stream_cursor_input": { "initial_value": [ - 2310 + 2315 ], "ordering": [ - 224 + 229 ], "__typename": [ - 70 + 75 ] }, "player_faceit_rank_history_stream_cursor_value_input": { @@ -46841,13 +46947,13 @@ export default { 38 ], "id": [ - 3818 + 3864 ], "match_id": [ - 3818 + 3864 ], "observed_at": [ - 3421 + 3467 ], "previous_rank": [ 38 @@ -46856,10 +46962,10 @@ export default { 38 ], "steam_id": [ - 169 + 174 ], "__typename": [ - 70 + 75 ] }, "player_faceit_rank_history_sum_fields": { @@ -46873,42 +46979,42 @@ export default { 38 ], "steam_id": [ - 169 + 174 ], "__typename": [ - 70 + 75 ] }, "player_faceit_rank_history_sum_order_by": { "elo": [ - 2011 + 2016 ], "previous_rank": [ - 2011 + 2016 ], "skill_level": [ - 2011 + 2016 ], "steam_id": [ - 2011 + 2016 ], "__typename": [ - 70 + 75 ] }, "player_faceit_rank_history_update_column": {}, "player_faceit_rank_history_updates": { "_inc": [ - 2291 + 2296 ], "_set": [ - 2302 + 2307 ], "where": [ - 2289 + 2294 ], "__typename": [ - 70 + 75 ] }, "player_faceit_rank_history_var_pop_fields": { @@ -46925,24 +47031,24 @@ export default { 29 ], "__typename": [ - 70 + 75 ] }, "player_faceit_rank_history_var_pop_order_by": { "elo": [ - 2011 + 2016 ], "previous_rank": [ - 2011 + 2016 ], "skill_level": [ - 2011 + 2016 ], "steam_id": [ - 2011 + 2016 ], "__typename": [ - 70 + 75 ] }, "player_faceit_rank_history_var_samp_fields": { @@ -46959,24 +47065,24 @@ export default { 29 ], "__typename": [ - 70 + 75 ] }, "player_faceit_rank_history_var_samp_order_by": { "elo": [ - 2011 + 2016 ], "previous_rank": [ - 2011 + 2016 ], "skill_level": [ - 2011 + 2016 ], "steam_id": [ - 2011 + 2016 ], "__typename": [ - 70 + 75 ] }, "player_faceit_rank_history_variance_fields": { @@ -46993,53 +47099,53 @@ export default { 29 ], "__typename": [ - 70 + 75 ] }, "player_faceit_rank_history_variance_order_by": { "elo": [ - 2011 + 2016 ], "previous_rank": [ - 2011 + 2016 ], "skill_level": [ - 2011 + 2016 ], "steam_id": [ - 2011 + 2016 ], "__typename": [ - 70 + 75 ] }, "player_flashes": { "attacked_steam_id": [ - 169 + 174 ], "attacker_steam_id": [ - 169 + 174 ], "blinded": [ - 2878 + 2915 ], "deleted_at": [ - 3421 + 3467 ], "duration": [ - 2009 + 2014 ], "match": [ - 1826 + 1831 ], "match_id": [ - 3818 + 3864 ], "match_map": [ - 1664 + 1669 ], "match_map_id": [ - 3818 + 3864 ], "round": [ 38 @@ -47048,100 +47154,100 @@ export default { 3 ], "thrown_by": [ - 2878 + 2915 ], "time": [ - 3421 + 3467 ], "__typename": [ - 70 + 75 ] }, "player_flashes_aggregate": { "aggregate": [ - 2327 + 2332 ], "nodes": [ - 2321 + 2326 ], "__typename": [ - 70 + 75 ] }, "player_flashes_aggregate_bool_exp": { "bool_and": [ - 2324 + 2329 ], "bool_or": [ - 2325 + 2330 ], "count": [ - 2326 + 2331 ], "__typename": [ - 70 + 75 ] }, "player_flashes_aggregate_bool_exp_bool_and": { "arguments": [ - 2345 + 2350 ], "distinct": [ 3 ], "filter": [ - 2332 + 2337 ], "predicate": [ 4 ], "__typename": [ - 70 + 75 ] }, "player_flashes_aggregate_bool_exp_bool_or": { "arguments": [ - 2346 + 2351 ], "distinct": [ 3 ], "filter": [ - 2332 + 2337 ], "predicate": [ 4 ], "__typename": [ - 70 + 75 ] }, "player_flashes_aggregate_bool_exp_count": { "arguments": [ - 2344 + 2349 ], "distinct": [ 3 ], "filter": [ - 2332 + 2337 ], "predicate": [ 39 ], "__typename": [ - 70 + 75 ] }, "player_flashes_aggregate_fields": { "avg": [ - 2330 + 2335 ], "count": [ 38, { "columns": [ - 2344, + 2349, "[player_flashes_select_column!]" ], "distinct": [ @@ -47150,83 +47256,83 @@ export default { } ], "max": [ - 2336 + 2341 ], "min": [ - 2338 + 2343 ], "stddev": [ - 2348 + 2353 ], "stddev_pop": [ - 2350 + 2355 ], "stddev_samp": [ - 2352 + 2357 ], "sum": [ - 2356 + 2361 ], "var_pop": [ - 2360 + 2365 ], "var_samp": [ - 2362 + 2367 ], "variance": [ - 2364 + 2369 ], "__typename": [ - 70 + 75 ] }, "player_flashes_aggregate_order_by": { "avg": [ - 2331 + 2336 ], "count": [ - 2011 + 2016 ], "max": [ - 2337 + 2342 ], "min": [ - 2339 + 2344 ], "stddev": [ - 2349 + 2354 ], "stddev_pop": [ - 2351 + 2356 ], "stddev_samp": [ - 2353 + 2358 ], "sum": [ - 2357 + 2362 ], "var_pop": [ - 2361 + 2366 ], "var_samp": [ - 2363 + 2368 ], "variance": [ - 2365 + 2370 ], "__typename": [ - 70 + 75 ] }, "player_flashes_arr_rel_insert_input": { "data": [ - 2335 + 2340 ], "on_conflict": [ - 2341 + 2346 ], "__typename": [ - 70 + 75 ] }, "player_flashes_avg_fields": { @@ -47243,62 +47349,62 @@ export default { 29 ], "__typename": [ - 70 + 75 ] }, "player_flashes_avg_order_by": { "attacked_steam_id": [ - 2011 + 2016 ], "attacker_steam_id": [ - 2011 + 2016 ], "duration": [ - 2011 + 2016 ], "round": [ - 2011 + 2016 ], "__typename": [ - 70 + 75 ] }, "player_flashes_bool_exp": { "_and": [ - 2332 + 2337 ], "_not": [ - 2332 + 2337 ], "_or": [ - 2332 + 2337 ], "attacked_steam_id": [ - 171 + 176 ], "attacker_steam_id": [ - 171 + 176 ], "blinded": [ - 2882 + 2919 ], "deleted_at": [ - 3422 + 3468 ], "duration": [ - 2010 + 2015 ], "match": [ - 1835 + 1840 ], "match_id": [ - 3820 + 3866 ], "match_map": [ - 1673 + 1678 ], "match_map_id": [ - 3820 + 3866 ], "round": [ 39 @@ -47307,60 +47413,60 @@ export default { 4 ], "thrown_by": [ - 2882 + 2919 ], "time": [ - 3422 + 3468 ], "__typename": [ - 70 + 75 ] }, "player_flashes_constraint": {}, "player_flashes_inc_input": { "attacked_steam_id": [ - 169 + 174 ], "attacker_steam_id": [ - 169 + 174 ], "duration": [ - 2009 + 2014 ], "round": [ 38 ], "__typename": [ - 70 + 75 ] }, "player_flashes_insert_input": { "attacked_steam_id": [ - 169 + 174 ], "attacker_steam_id": [ - 169 + 174 ], "blinded": [ - 2889 + 2926 ], "deleted_at": [ - 3421 + 3467 ], "duration": [ - 2009 + 2014 ], "match": [ - 1844 + 1849 ], "match_id": [ - 3818 + 3864 ], "match_map": [ - 1682 + 1687 ], "match_map_id": [ - 3818 + 3864 ], "round": [ 38 @@ -47369,129 +47475,129 @@ export default { 3 ], "thrown_by": [ - 2889 + 2926 ], "time": [ - 3421 + 3467 ], "__typename": [ - 70 + 75 ] }, "player_flashes_max_fields": { "attacked_steam_id": [ - 169 + 174 ], "attacker_steam_id": [ - 169 + 174 ], "deleted_at": [ - 3421 + 3467 ], "duration": [ - 2009 + 2014 ], "match_id": [ - 3818 + 3864 ], "match_map_id": [ - 3818 + 3864 ], "round": [ 38 ], "time": [ - 3421 + 3467 ], "__typename": [ - 70 + 75 ] }, "player_flashes_max_order_by": { "attacked_steam_id": [ - 2011 + 2016 ], "attacker_steam_id": [ - 2011 + 2016 ], "deleted_at": [ - 2011 + 2016 ], "duration": [ - 2011 + 2016 ], "match_id": [ - 2011 + 2016 ], "match_map_id": [ - 2011 + 2016 ], "round": [ - 2011 + 2016 ], "time": [ - 2011 + 2016 ], "__typename": [ - 70 + 75 ] }, "player_flashes_min_fields": { "attacked_steam_id": [ - 169 + 174 ], "attacker_steam_id": [ - 169 + 174 ], "deleted_at": [ - 3421 + 3467 ], "duration": [ - 2009 + 2014 ], "match_id": [ - 3818 + 3864 ], "match_map_id": [ - 3818 + 3864 ], "round": [ 38 ], "time": [ - 3421 + 3467 ], "__typename": [ - 70 + 75 ] }, "player_flashes_min_order_by": { "attacked_steam_id": [ - 2011 + 2016 ], "attacker_steam_id": [ - 2011 + 2016 ], "deleted_at": [ - 2011 + 2016 ], "duration": [ - 2011 + 2016 ], "match_id": [ - 2011 + 2016 ], "match_map_id": [ - 2011 + 2016 ], "round": [ - 2011 + 2016 ], "time": [ - 2011 + 2016 ], "__typename": [ - 70 + 75 ] }, "player_flashes_mutation_response": { @@ -47499,85 +47605,85 @@ export default { 38 ], "returning": [ - 2321 + 2326 ], "__typename": [ - 70 + 75 ] }, "player_flashes_on_conflict": { "constraint": [ - 2333 + 2338 ], "update_columns": [ - 2358 + 2363 ], "where": [ - 2332 + 2337 ], "__typename": [ - 70 + 75 ] }, "player_flashes_order_by": { "attacked_steam_id": [ - 2011 + 2016 ], "attacker_steam_id": [ - 2011 + 2016 ], "blinded": [ - 2891 + 2928 ], "deleted_at": [ - 2011 + 2016 ], "duration": [ - 2011 + 2016 ], "match": [ - 1846 + 1851 ], "match_id": [ - 2011 + 2016 ], "match_map": [ - 1684 + 1689 ], "match_map_id": [ - 2011 + 2016 ], "round": [ - 2011 + 2016 ], "team_flash": [ - 2011 + 2016 ], "thrown_by": [ - 2891 + 2928 ], "time": [ - 2011 + 2016 ], "__typename": [ - 70 + 75 ] }, "player_flashes_pk_columns_input": { "attacked_steam_id": [ - 169 + 174 ], "attacker_steam_id": [ - 169 + 174 ], "match_map_id": [ - 3818 + 3864 ], "time": [ - 3421 + 3467 ], "__typename": [ - 70 + 75 ] }, "player_flashes_select_column": {}, @@ -47585,22 +47691,22 @@ export default { "player_flashes_select_column_player_flashes_aggregate_bool_exp_bool_or_arguments_columns": {}, "player_flashes_set_input": { "attacked_steam_id": [ - 169 + 174 ], "attacker_steam_id": [ - 169 + 174 ], "deleted_at": [ - 3421 + 3467 ], "duration": [ - 2009 + 2014 ], "match_id": [ - 3818 + 3864 ], "match_map_id": [ - 3818 + 3864 ], "round": [ 38 @@ -47609,10 +47715,10 @@ export default { 3 ], "time": [ - 3421 + 3467 ], "__typename": [ - 70 + 75 ] }, "player_flashes_stddev_fields": { @@ -47629,24 +47735,24 @@ export default { 29 ], "__typename": [ - 70 + 75 ] }, "player_flashes_stddev_order_by": { "attacked_steam_id": [ - 2011 + 2016 ], "attacker_steam_id": [ - 2011 + 2016 ], "duration": [ - 2011 + 2016 ], "round": [ - 2011 + 2016 ], "__typename": [ - 70 + 75 ] }, "player_flashes_stddev_pop_fields": { @@ -47663,24 +47769,24 @@ export default { 29 ], "__typename": [ - 70 + 75 ] }, "player_flashes_stddev_pop_order_by": { "attacked_steam_id": [ - 2011 + 2016 ], "attacker_steam_id": [ - 2011 + 2016 ], "duration": [ - 2011 + 2016 ], "round": [ - 2011 + 2016 ], "__typename": [ - 70 + 75 ] }, "player_flashes_stddev_samp_fields": { @@ -47697,55 +47803,55 @@ export default { 29 ], "__typename": [ - 70 + 75 ] }, "player_flashes_stddev_samp_order_by": { "attacked_steam_id": [ - 2011 + 2016 ], "attacker_steam_id": [ - 2011 + 2016 ], "duration": [ - 2011 + 2016 ], "round": [ - 2011 + 2016 ], "__typename": [ - 70 + 75 ] }, "player_flashes_stream_cursor_input": { "initial_value": [ - 2355 + 2360 ], "ordering": [ - 224 + 229 ], "__typename": [ - 70 + 75 ] }, "player_flashes_stream_cursor_value_input": { "attacked_steam_id": [ - 169 + 174 ], "attacker_steam_id": [ - 169 + 174 ], "deleted_at": [ - 3421 + 3467 ], "duration": [ - 2009 + 2014 ], "match_id": [ - 3818 + 3864 ], "match_map_id": [ - 3818 + 3864 ], "round": [ 38 @@ -47754,59 +47860,59 @@ export default { 3 ], "time": [ - 3421 + 3467 ], "__typename": [ - 70 + 75 ] }, "player_flashes_sum_fields": { "attacked_steam_id": [ - 169 + 174 ], "attacker_steam_id": [ - 169 + 174 ], "duration": [ - 2009 + 2014 ], "round": [ 38 ], "__typename": [ - 70 + 75 ] }, "player_flashes_sum_order_by": { "attacked_steam_id": [ - 2011 + 2016 ], "attacker_steam_id": [ - 2011 + 2016 ], "duration": [ - 2011 + 2016 ], "round": [ - 2011 + 2016 ], "__typename": [ - 70 + 75 ] }, "player_flashes_update_column": {}, "player_flashes_updates": { "_inc": [ - 2334 + 2339 ], "_set": [ - 2347 + 2352 ], "where": [ - 2332 + 2337 ], "__typename": [ - 70 + 75 ] }, "player_flashes_var_pop_fields": { @@ -47823,24 +47929,24 @@ export default { 29 ], "__typename": [ - 70 + 75 ] }, "player_flashes_var_pop_order_by": { "attacked_steam_id": [ - 2011 + 2016 ], "attacker_steam_id": [ - 2011 + 2016 ], "duration": [ - 2011 + 2016 ], "round": [ - 2011 + 2016 ], "__typename": [ - 70 + 75 ] }, "player_flashes_var_samp_fields": { @@ -47857,24 +47963,24 @@ export default { 29 ], "__typename": [ - 70 + 75 ] }, "player_flashes_var_samp_order_by": { "attacked_steam_id": [ - 2011 + 2016 ], "attacker_steam_id": [ - 2011 + 2016 ], "duration": [ - 2011 + 2016 ], "round": [ - 2011 + 2016 ], "__typename": [ - 70 + 75 ] }, "player_flashes_variance_fields": { @@ -47891,24 +47997,24 @@ export default { 29 ], "__typename": [ - 70 + 75 ] }, "player_flashes_variance_order_by": { "attacked_steam_id": [ - 2011 + 2016 ], "attacker_steam_id": [ - 2011 + 2016 ], "duration": [ - 2011 + 2016 ], "round": [ - 2011 + 2016 ], "__typename": [ - 70 + 75 ] }, "player_kills": { @@ -47916,43 +48022,43 @@ export default { 3 ], "attacked_location": [ - 70 + 75 ], "attacked_location_coordinates": [ - 70 + 75 ], "attacked_player": [ - 2878 + 2915 ], "attacked_steam_id": [ - 169 + 174 ], "attacked_team": [ - 70 + 75 ], "attacker_location": [ - 70 + 75 ], "attacker_location_coordinates": [ - 70 + 75 ], "attacker_steam_id": [ - 169 + 174 ], "attacker_team": [ - 70 + 75 ], "blinded": [ 3 ], "deleted_at": [ - 3421 + 3467 ], "headshot": [ 3 ], "hitgroup": [ - 70 + 75 ], "in_air": [ 3 @@ -47961,22 +48067,22 @@ export default { 3 ], "match": [ - 1826 + 1831 ], "match_id": [ - 3818 + 3864 ], "match_map": [ - 1664 + 1669 ], "match_map_id": [ - 3818 + 3864 ], "no_scope": [ 3 ], "player": [ - 2878 + 2915 ], "round": [ 38 @@ -47991,100 +48097,100 @@ export default { 3 ], "time": [ - 3421 + 3467 ], "with": [ - 70 + 75 ], "__typename": [ - 70 + 75 ] }, "player_kills_aggregate": { "aggregate": [ - 2372 + 2377 ], "nodes": [ - 2366 + 2371 ], "__typename": [ - 70 + 75 ] }, "player_kills_aggregate_bool_exp": { "bool_and": [ - 2369 + 2374 ], "bool_or": [ - 2370 + 2375 ], "count": [ - 2371 + 2376 ], "__typename": [ - 70 + 75 ] }, "player_kills_aggregate_bool_exp_bool_and": { "arguments": [ - 2431 + 2436 ], "distinct": [ 3 ], "filter": [ - 2377 + 2382 ], "predicate": [ 4 ], "__typename": [ - 70 + 75 ] }, "player_kills_aggregate_bool_exp_bool_or": { "arguments": [ - 2432 + 2437 ], "distinct": [ 3 ], "filter": [ - 2377 + 2382 ], "predicate": [ 4 ], "__typename": [ - 70 + 75 ] }, "player_kills_aggregate_bool_exp_count": { "arguments": [ - 2430 + 2435 ], "distinct": [ 3 ], "filter": [ - 2377 + 2382 ], "predicate": [ 39 ], "__typename": [ - 70 + 75 ] }, "player_kills_aggregate_fields": { "avg": [ - 2375 + 2380 ], "count": [ 38, { "columns": [ - 2430, + 2435, "[player_kills_select_column!]" ], "distinct": [ @@ -48093,83 +48199,83 @@ export default { } ], "max": [ - 2422 + 2427 ], "min": [ - 2424 + 2429 ], "stddev": [ - 2434 + 2439 ], "stddev_pop": [ - 2436 + 2441 ], "stddev_samp": [ - 2438 + 2443 ], "sum": [ - 2442 + 2447 ], "var_pop": [ - 2446 + 2451 ], "var_samp": [ - 2448 + 2453 ], "variance": [ - 2450 + 2455 ], "__typename": [ - 70 + 75 ] }, "player_kills_aggregate_order_by": { "avg": [ - 2376 + 2381 ], "count": [ - 2011 + 2016 ], "max": [ - 2423 + 2428 ], "min": [ - 2425 + 2430 ], "stddev": [ - 2435 + 2440 ], "stddev_pop": [ - 2437 + 2442 ], "stddev_samp": [ - 2439 + 2444 ], "sum": [ - 2443 + 2448 ], "var_pop": [ - 2447 + 2452 ], "var_samp": [ - 2449 + 2454 ], "variance": [ - 2451 + 2456 ], "__typename": [ - 70 + 75 ] }, "player_kills_arr_rel_insert_input": { "data": [ - 2421 + 2426 ], "on_conflict": [ - 2427 + 2432 ], "__typename": [ - 70 + 75 ] }, "player_kills_avg_fields": { @@ -48183,74 +48289,74 @@ export default { 29 ], "__typename": [ - 70 + 75 ] }, "player_kills_avg_order_by": { "attacked_steam_id": [ - 2011 + 2016 ], "attacker_steam_id": [ - 2011 + 2016 ], "round": [ - 2011 + 2016 ], "__typename": [ - 70 + 75 ] }, "player_kills_bool_exp": { "_and": [ - 2377 + 2382 ], "_not": [ - 2377 + 2382 ], "_or": [ - 2377 + 2382 ], "assisted": [ 4 ], "attacked_location": [ - 72 + 77 ], "attacked_location_coordinates": [ - 72 + 77 ], "attacked_player": [ - 2882 + 2919 ], "attacked_steam_id": [ - 171 + 176 ], "attacked_team": [ - 72 + 77 ], "attacker_location": [ - 72 + 77 ], "attacker_location_coordinates": [ - 72 + 77 ], "attacker_steam_id": [ - 171 + 176 ], "attacker_team": [ - 72 + 77 ], "blinded": [ 4 ], "deleted_at": [ - 3422 + 3468 ], "headshot": [ 4 ], "hitgroup": [ - 72 + 77 ], "in_air": [ 4 @@ -48259,22 +48365,22 @@ export default { 4 ], "match": [ - 1835 + 1840 ], "match_id": [ - 3820 + 3866 ], "match_map": [ - 1673 + 1678 ], "match_map_id": [ - 3820 + 3866 ], "no_scope": [ 4 ], "player": [ - 2882 + 2919 ], "round": [ 39 @@ -48289,77 +48395,77 @@ export default { 4 ], "time": [ - 3422 + 3468 ], "with": [ - 72 + 77 ], "__typename": [ - 70 + 75 ] }, "player_kills_by_weapon": { "kill_count": [ - 169 + 174 ], "player": [ - 2878 + 2915 ], "player_steam_id": [ - 169 + 174 ], "with": [ - 70 + 75 ], "__typename": [ - 70 + 75 ] }, "player_kills_by_weapon_aggregate": { "aggregate": [ - 2382 + 2387 ], "nodes": [ - 2378 + 2383 ], "__typename": [ - 70 + 75 ] }, "player_kills_by_weapon_aggregate_bool_exp": { "count": [ - 2381 + 2386 ], "__typename": [ - 70 + 75 ] }, "player_kills_by_weapon_aggregate_bool_exp_count": { "arguments": [ - 2399 + 2404 ], "distinct": [ 3 ], "filter": [ - 2387 + 2392 ], "predicate": [ 39 ], "__typename": [ - 70 + 75 ] }, "player_kills_by_weapon_aggregate_fields": { "avg": [ - 2385 + 2390 ], "count": [ 38, { "columns": [ - 2399, + 2404, "[player_kills_by_weapon_select_column!]" ], "distinct": [ @@ -48368,83 +48474,83 @@ export default { } ], "max": [ - 2391 + 2396 ], "min": [ - 2393 + 2398 ], "stddev": [ - 2401 + 2406 ], "stddev_pop": [ - 2403 + 2408 ], "stddev_samp": [ - 2405 + 2410 ], "sum": [ - 2409 + 2414 ], "var_pop": [ - 2413 + 2418 ], "var_samp": [ - 2415 + 2420 ], "variance": [ - 2417 + 2422 ], "__typename": [ - 70 + 75 ] }, "player_kills_by_weapon_aggregate_order_by": { "avg": [ - 2386 + 2391 ], "count": [ - 2011 + 2016 ], "max": [ - 2392 + 2397 ], "min": [ - 2394 + 2399 ], "stddev": [ - 2402 + 2407 ], "stddev_pop": [ - 2404 + 2409 ], "stddev_samp": [ - 2406 + 2411 ], "sum": [ - 2410 + 2415 ], "var_pop": [ - 2414 + 2419 ], "var_samp": [ - 2416 + 2421 ], "variance": [ - 2418 + 2423 ], "__typename": [ - 70 + 75 ] }, "player_kills_by_weapon_arr_rel_insert_input": { "data": [ - 2390 + 2395 ], "on_conflict": [ - 2396 + 2401 ], "__typename": [ - 70 + 75 ] }, "player_kills_by_weapon_avg_fields": { @@ -48455,129 +48561,129 @@ export default { 29 ], "__typename": [ - 70 + 75 ] }, "player_kills_by_weapon_avg_order_by": { "kill_count": [ - 2011 + 2016 ], "player_steam_id": [ - 2011 + 2016 ], "__typename": [ - 70 + 75 ] }, "player_kills_by_weapon_bool_exp": { "_and": [ - 2387 + 2392 ], "_not": [ - 2387 + 2392 ], "_or": [ - 2387 + 2392 ], "kill_count": [ - 171 + 176 ], "player": [ - 2882 + 2919 ], "player_steam_id": [ - 171 + 176 ], "with": [ - 72 + 77 ], "__typename": [ - 70 + 75 ] }, "player_kills_by_weapon_constraint": {}, "player_kills_by_weapon_inc_input": { "kill_count": [ - 169 + 174 ], "player_steam_id": [ - 169 + 174 ], "__typename": [ - 70 + 75 ] }, "player_kills_by_weapon_insert_input": { "kill_count": [ - 169 + 174 ], "player": [ - 2889 + 2926 ], "player_steam_id": [ - 169 + 174 ], "with": [ - 70 + 75 ], "__typename": [ - 70 + 75 ] }, "player_kills_by_weapon_max_fields": { "kill_count": [ - 169 + 174 ], "player_steam_id": [ - 169 + 174 ], "with": [ - 70 + 75 ], "__typename": [ - 70 + 75 ] }, "player_kills_by_weapon_max_order_by": { "kill_count": [ - 2011 + 2016 ], "player_steam_id": [ - 2011 + 2016 ], "with": [ - 2011 + 2016 ], "__typename": [ - 70 + 75 ] }, "player_kills_by_weapon_min_fields": { "kill_count": [ - 169 + 174 ], "player_steam_id": [ - 169 + 174 ], "with": [ - 70 + 75 ], "__typename": [ - 70 + 75 ] }, "player_kills_by_weapon_min_order_by": { "kill_count": [ - 2011 + 2016 ], "player_steam_id": [ - 2011 + 2016 ], "with": [ - 2011 + 2016 ], "__typename": [ - 70 + 75 ] }, "player_kills_by_weapon_mutation_response": { @@ -48585,67 +48691,67 @@ export default { 38 ], "returning": [ - 2378 + 2383 ], "__typename": [ - 70 + 75 ] }, "player_kills_by_weapon_on_conflict": { "constraint": [ - 2388 + 2393 ], "update_columns": [ - 2411 + 2416 ], "where": [ - 2387 + 2392 ], "__typename": [ - 70 + 75 ] }, "player_kills_by_weapon_order_by": { "kill_count": [ - 2011 + 2016 ], "player": [ - 2891 + 2928 ], "player_steam_id": [ - 2011 + 2016 ], "with": [ - 2011 + 2016 ], "__typename": [ - 70 + 75 ] }, "player_kills_by_weapon_pk_columns_input": { "player_steam_id": [ - 169 + 174 ], "with": [ - 70 + 75 ], "__typename": [ - 70 + 75 ] }, "player_kills_by_weapon_select_column": {}, "player_kills_by_weapon_set_input": { "kill_count": [ - 169 + 174 ], "player_steam_id": [ - 169 + 174 ], "with": [ - 70 + 75 ], "__typename": [ - 70 + 75 ] }, "player_kills_by_weapon_stddev_fields": { @@ -48656,18 +48762,18 @@ export default { 29 ], "__typename": [ - 70 + 75 ] }, "player_kills_by_weapon_stddev_order_by": { "kill_count": [ - 2011 + 2016 ], "player_steam_id": [ - 2011 + 2016 ], "__typename": [ - 70 + 75 ] }, "player_kills_by_weapon_stddev_pop_fields": { @@ -48678,18 +48784,18 @@ export default { 29 ], "__typename": [ - 70 + 75 ] }, "player_kills_by_weapon_stddev_pop_order_by": { "kill_count": [ - 2011 + 2016 ], "player_steam_id": [ - 2011 + 2016 ], "__typename": [ - 70 + 75 ] }, "player_kills_by_weapon_stddev_samp_fields": { @@ -48700,80 +48806,80 @@ export default { 29 ], "__typename": [ - 70 + 75 ] }, "player_kills_by_weapon_stddev_samp_order_by": { "kill_count": [ - 2011 + 2016 ], "player_steam_id": [ - 2011 + 2016 ], "__typename": [ - 70 + 75 ] }, "player_kills_by_weapon_stream_cursor_input": { "initial_value": [ - 2408 + 2413 ], "ordering": [ - 224 + 229 ], "__typename": [ - 70 + 75 ] }, "player_kills_by_weapon_stream_cursor_value_input": { "kill_count": [ - 169 + 174 ], "player_steam_id": [ - 169 + 174 ], "with": [ - 70 + 75 ], "__typename": [ - 70 + 75 ] }, "player_kills_by_weapon_sum_fields": { "kill_count": [ - 169 + 174 ], "player_steam_id": [ - 169 + 174 ], "__typename": [ - 70 + 75 ] }, "player_kills_by_weapon_sum_order_by": { "kill_count": [ - 2011 + 2016 ], "player_steam_id": [ - 2011 + 2016 ], "__typename": [ - 70 + 75 ] }, "player_kills_by_weapon_update_column": {}, "player_kills_by_weapon_updates": { "_inc": [ - 2389 + 2394 ], "_set": [ - 2400 + 2405 ], "where": [ - 2387 + 2392 ], "__typename": [ - 70 + 75 ] }, "player_kills_by_weapon_var_pop_fields": { @@ -48784,18 +48890,18 @@ export default { 29 ], "__typename": [ - 70 + 75 ] }, "player_kills_by_weapon_var_pop_order_by": { "kill_count": [ - 2011 + 2016 ], "player_steam_id": [ - 2011 + 2016 ], "__typename": [ - 70 + 75 ] }, "player_kills_by_weapon_var_samp_fields": { @@ -48806,18 +48912,18 @@ export default { 29 ], "__typename": [ - 70 + 75 ] }, "player_kills_by_weapon_var_samp_order_by": { "kill_count": [ - 2011 + 2016 ], "player_steam_id": [ - 2011 + 2016 ], "__typename": [ - 70 + 75 ] }, "player_kills_by_weapon_variance_fields": { @@ -48828,33 +48934,33 @@ export default { 29 ], "__typename": [ - 70 + 75 ] }, "player_kills_by_weapon_variance_order_by": { "kill_count": [ - 2011 + 2016 ], "player_steam_id": [ - 2011 + 2016 ], "__typename": [ - 70 + 75 ] }, "player_kills_constraint": {}, "player_kills_inc_input": { "attacked_steam_id": [ - 169 + 174 ], "attacker_steam_id": [ - 169 + 174 ], "round": [ 38 ], "__typename": [ - 70 + 75 ] }, "player_kills_insert_input": { @@ -48862,64 +48968,64 @@ export default { 3 ], "attacked_location": [ - 70 + 75 ], "attacked_location_coordinates": [ - 70 + 75 ], "attacked_player": [ - 2889 + 2926 ], "attacked_steam_id": [ - 169 + 174 ], "attacked_team": [ - 70 + 75 ], "attacker_location": [ - 70 + 75 ], "attacker_location_coordinates": [ - 70 + 75 ], "attacker_steam_id": [ - 169 + 174 ], "attacker_team": [ - 70 + 75 ], "blinded": [ 3 ], "deleted_at": [ - 3421 + 3467 ], "headshot": [ 3 ], "hitgroup": [ - 70 + 75 ], "in_air": [ 3 ], "match": [ - 1844 + 1849 ], "match_id": [ - 3818 + 3864 ], "match_map": [ - 1682 + 1687 ], "match_map_id": [ - 3818 + 3864 ], "no_scope": [ 3 ], "player": [ - 2889 + 2926 ], "round": [ 38 @@ -48931,213 +49037,213 @@ export default { 3 ], "time": [ - 3421 + 3467 ], "with": [ - 70 + 75 ], "__typename": [ - 70 + 75 ] }, "player_kills_max_fields": { "attacked_location": [ - 70 + 75 ], "attacked_location_coordinates": [ - 70 + 75 ], "attacked_steam_id": [ - 169 + 174 ], "attacked_team": [ - 70 + 75 ], "attacker_location": [ - 70 + 75 ], "attacker_location_coordinates": [ - 70 + 75 ], "attacker_steam_id": [ - 169 + 174 ], "attacker_team": [ - 70 + 75 ], "deleted_at": [ - 3421 + 3467 ], "hitgroup": [ - 70 + 75 ], "match_id": [ - 3818 + 3864 ], "match_map_id": [ - 3818 + 3864 ], "round": [ 38 ], "time": [ - 3421 + 3467 ], "with": [ - 70 + 75 ], "__typename": [ - 70 + 75 ] }, "player_kills_max_order_by": { "attacked_location": [ - 2011 + 2016 ], "attacked_location_coordinates": [ - 2011 + 2016 ], "attacked_steam_id": [ - 2011 + 2016 ], "attacked_team": [ - 2011 + 2016 ], "attacker_location": [ - 2011 + 2016 ], "attacker_location_coordinates": [ - 2011 + 2016 ], "attacker_steam_id": [ - 2011 + 2016 ], "attacker_team": [ - 2011 + 2016 ], "deleted_at": [ - 2011 + 2016 ], "hitgroup": [ - 2011 + 2016 ], "match_id": [ - 2011 + 2016 ], "match_map_id": [ - 2011 + 2016 ], "round": [ - 2011 + 2016 ], "time": [ - 2011 + 2016 ], "with": [ - 2011 + 2016 ], "__typename": [ - 70 + 75 ] }, "player_kills_min_fields": { "attacked_location": [ - 70 + 75 ], "attacked_location_coordinates": [ - 70 + 75 ], "attacked_steam_id": [ - 169 + 174 ], "attacked_team": [ - 70 + 75 ], "attacker_location": [ - 70 + 75 ], "attacker_location_coordinates": [ - 70 + 75 ], "attacker_steam_id": [ - 169 + 174 ], "attacker_team": [ - 70 + 75 ], "deleted_at": [ - 3421 + 3467 ], "hitgroup": [ - 70 + 75 ], "match_id": [ - 3818 + 3864 ], "match_map_id": [ - 3818 + 3864 ], "round": [ 38 ], "time": [ - 3421 + 3467 ], "with": [ - 70 + 75 ], "__typename": [ - 70 + 75 ] }, "player_kills_min_order_by": { "attacked_location": [ - 2011 + 2016 ], "attacked_location_coordinates": [ - 2011 + 2016 ], "attacked_steam_id": [ - 2011 + 2016 ], "attacked_team": [ - 2011 + 2016 ], "attacker_location": [ - 2011 + 2016 ], "attacker_location_coordinates": [ - 2011 + 2016 ], "attacker_steam_id": [ - 2011 + 2016 ], "attacker_team": [ - 2011 + 2016 ], "deleted_at": [ - 2011 + 2016 ], "hitgroup": [ - 2011 + 2016 ], "match_id": [ - 2011 + 2016 ], "match_map_id": [ - 2011 + 2016 ], "round": [ - 2011 + 2016 ], "time": [ - 2011 + 2016 ], "with": [ - 2011 + 2016 ], "__typename": [ - 70 + 75 ] }, "player_kills_mutation_response": { @@ -49145,130 +49251,130 @@ export default { 38 ], "returning": [ - 2366 + 2371 ], "__typename": [ - 70 + 75 ] }, "player_kills_on_conflict": { "constraint": [ - 2419 + 2424 ], "update_columns": [ - 2444 + 2449 ], "where": [ - 2377 + 2382 ], "__typename": [ - 70 + 75 ] }, "player_kills_order_by": { "assisted": [ - 2011 + 2016 ], "attacked_location": [ - 2011 + 2016 ], "attacked_location_coordinates": [ - 2011 + 2016 ], "attacked_player": [ - 2891 + 2928 ], "attacked_steam_id": [ - 2011 + 2016 ], "attacked_team": [ - 2011 + 2016 ], "attacker_location": [ - 2011 + 2016 ], "attacker_location_coordinates": [ - 2011 + 2016 ], "attacker_steam_id": [ - 2011 + 2016 ], "attacker_team": [ - 2011 + 2016 ], "blinded": [ - 2011 + 2016 ], "deleted_at": [ - 2011 + 2016 ], "headshot": [ - 2011 + 2016 ], "hitgroup": [ - 2011 + 2016 ], "in_air": [ - 2011 + 2016 ], "is_suicide": [ - 2011 + 2016 ], "match": [ - 1846 + 1851 ], "match_id": [ - 2011 + 2016 ], "match_map": [ - 1684 + 1689 ], "match_map_id": [ - 2011 + 2016 ], "no_scope": [ - 2011 + 2016 ], "player": [ - 2891 + 2928 ], "round": [ - 2011 + 2016 ], "team_kill": [ - 2011 + 2016 ], "thru_smoke": [ - 2011 + 2016 ], "thru_wall": [ - 2011 + 2016 ], "time": [ - 2011 + 2016 ], "with": [ - 2011 + 2016 ], "__typename": [ - 70 + 75 ] }, "player_kills_pk_columns_input": { "attacked_steam_id": [ - 169 + 174 ], "attacker_steam_id": [ - 169 + 174 ], "match_map_id": [ - 3818 + 3864 ], "time": [ - 3421 + 3467 ], "__typename": [ - 70 + 75 ] }, "player_kills_select_column": {}, @@ -49279,49 +49385,49 @@ export default { 3 ], "attacked_location": [ - 70 + 75 ], "attacked_location_coordinates": [ - 70 + 75 ], "attacked_steam_id": [ - 169 + 174 ], "attacked_team": [ - 70 + 75 ], "attacker_location": [ - 70 + 75 ], "attacker_location_coordinates": [ - 70 + 75 ], "attacker_steam_id": [ - 169 + 174 ], "attacker_team": [ - 70 + 75 ], "blinded": [ 3 ], "deleted_at": [ - 3421 + 3467 ], "headshot": [ 3 ], "hitgroup": [ - 70 + 75 ], "in_air": [ 3 ], "match_id": [ - 3818 + 3864 ], "match_map_id": [ - 3818 + 3864 ], "no_scope": [ 3 @@ -49336,13 +49442,13 @@ export default { 3 ], "time": [ - 3421 + 3467 ], "with": [ - 70 + 75 ], "__typename": [ - 70 + 75 ] }, "player_kills_stddev_fields": { @@ -49356,21 +49462,21 @@ export default { 29 ], "__typename": [ - 70 + 75 ] }, "player_kills_stddev_order_by": { "attacked_steam_id": [ - 2011 + 2016 ], "attacker_steam_id": [ - 2011 + 2016 ], "round": [ - 2011 + 2016 ], "__typename": [ - 70 + 75 ] }, "player_kills_stddev_pop_fields": { @@ -49384,21 +49490,21 @@ export default { 29 ], "__typename": [ - 70 + 75 ] }, "player_kills_stddev_pop_order_by": { "attacked_steam_id": [ - 2011 + 2016 ], "attacker_steam_id": [ - 2011 + 2016 ], "round": [ - 2011 + 2016 ], "__typename": [ - 70 + 75 ] }, "player_kills_stddev_samp_fields": { @@ -49412,32 +49518,32 @@ export default { 29 ], "__typename": [ - 70 + 75 ] }, "player_kills_stddev_samp_order_by": { "attacked_steam_id": [ - 2011 + 2016 ], "attacker_steam_id": [ - 2011 + 2016 ], "round": [ - 2011 + 2016 ], "__typename": [ - 70 + 75 ] }, "player_kills_stream_cursor_input": { "initial_value": [ - 2441 + 2446 ], "ordering": [ - 224 + 229 ], "__typename": [ - 70 + 75 ] }, "player_kills_stream_cursor_value_input": { @@ -49445,49 +49551,49 @@ export default { 3 ], "attacked_location": [ - 70 + 75 ], "attacked_location_coordinates": [ - 70 + 75 ], "attacked_steam_id": [ - 169 + 174 ], "attacked_team": [ - 70 + 75 ], "attacker_location": [ - 70 + 75 ], "attacker_location_coordinates": [ - 70 + 75 ], "attacker_steam_id": [ - 169 + 174 ], "attacker_team": [ - 70 + 75 ], "blinded": [ 3 ], "deleted_at": [ - 3421 + 3467 ], "headshot": [ 3 ], "hitgroup": [ - 70 + 75 ], "in_air": [ 3 ], "match_id": [ - 3818 + 3864 ], "match_map_id": [ - 3818 + 3864 ], "no_scope": [ 3 @@ -49502,56 +49608,56 @@ export default { 3 ], "time": [ - 3421 + 3467 ], "with": [ - 70 + 75 ], "__typename": [ - 70 + 75 ] }, "player_kills_sum_fields": { "attacked_steam_id": [ - 169 + 174 ], "attacker_steam_id": [ - 169 + 174 ], "round": [ 38 ], "__typename": [ - 70 + 75 ] }, "player_kills_sum_order_by": { "attacked_steam_id": [ - 2011 + 2016 ], "attacker_steam_id": [ - 2011 + 2016 ], "round": [ - 2011 + 2016 ], "__typename": [ - 70 + 75 ] }, "player_kills_update_column": {}, "player_kills_updates": { "_inc": [ - 2420 + 2425 ], "_set": [ - 2433 + 2438 ], "where": [ - 2377 + 2382 ], "__typename": [ - 70 + 75 ] }, "player_kills_var_pop_fields": { @@ -49565,21 +49671,21 @@ export default { 29 ], "__typename": [ - 70 + 75 ] }, "player_kills_var_pop_order_by": { "attacked_steam_id": [ - 2011 + 2016 ], "attacker_steam_id": [ - 2011 + 2016 ], "round": [ - 2011 + 2016 ], "__typename": [ - 70 + 75 ] }, "player_kills_var_samp_fields": { @@ -49593,21 +49699,21 @@ export default { 29 ], "__typename": [ - 70 + 75 ] }, "player_kills_var_samp_order_by": { "attacked_steam_id": [ - 2011 + 2016 ], "attacker_steam_id": [ - 2011 + 2016 ], "round": [ - 2011 + 2016 ], "__typename": [ - 70 + 75 ] }, "player_kills_variance_fields": { @@ -49621,26 +49727,26 @@ export default { 29 ], "__typename": [ - 70 + 75 ] }, "player_kills_variance_order_by": { "attacked_steam_id": [ - 2011 + 2016 ], "attacker_steam_id": [ - 2011 + 2016 ], "round": [ - 2011 + 2016 ], "__typename": [ - 70 + 75 ] }, "player_leaderboard_rank": { "player_steam_id": [ - 70 + 75 ], "rank": [ 38 @@ -49649,32 +49755,32 @@ export default { 38 ], "value": [ - 1084 + 1089 ], "__typename": [ - 70 + 75 ] }, "player_leaderboard_rank_aggregate": { "aggregate": [ - 2454 + 2459 ], "nodes": [ - 2452 + 2457 ], "__typename": [ - 70 + 75 ] }, "player_leaderboard_rank_aggregate_fields": { "avg": [ - 2455 + 2460 ], "count": [ 38, { "columns": [ - 2463, + 2468, "[player_leaderboard_rank_select_column!]" ], "distinct": [ @@ -49683,34 +49789,34 @@ export default { } ], "max": [ - 2459 + 2464 ], "min": [ - 2460 + 2465 ], "stddev": [ - 2465 + 2470 ], "stddev_pop": [ - 2466 + 2471 ], "stddev_samp": [ - 2467 + 2472 ], "sum": [ - 2470 + 2475 ], "var_pop": [ - 2472 + 2477 ], "var_samp": [ - 2473 + 2478 ], "variance": [ - 2474 + 2479 ], "__typename": [ - 70 + 75 ] }, "player_leaderboard_rank_avg_fields": { @@ -49724,21 +49830,21 @@ export default { 29 ], "__typename": [ - 70 + 75 ] }, "player_leaderboard_rank_bool_exp": { "_and": [ - 2456 + 2461 ], "_not": [ - 2456 + 2461 ], "_or": [ - 2456 + 2461 ], "player_steam_id": [ - 72 + 77 ], "rank": [ 39 @@ -49747,10 +49853,10 @@ export default { 39 ], "value": [ - 1085 + 1090 ], "__typename": [ - 70 + 75 ] }, "player_leaderboard_rank_inc_input": { @@ -49761,15 +49867,15 @@ export default { 38 ], "value": [ - 1084 + 1089 ], "__typename": [ - 70 + 75 ] }, "player_leaderboard_rank_insert_input": { "player_steam_id": [ - 70 + 75 ], "rank": [ 38 @@ -49778,15 +49884,15 @@ export default { 38 ], "value": [ - 1084 + 1089 ], "__typename": [ - 70 + 75 ] }, "player_leaderboard_rank_max_fields": { "player_steam_id": [ - 70 + 75 ], "rank": [ 38 @@ -49795,15 +49901,15 @@ export default { 38 ], "value": [ - 1084 + 1089 ], "__typename": [ - 70 + 75 ] }, "player_leaderboard_rank_min_fields": { "player_steam_id": [ - 70 + 75 ], "rank": [ 38 @@ -49812,10 +49918,10 @@ export default { 38 ], "value": [ - 1084 + 1089 ], "__typename": [ - 70 + 75 ] }, "player_leaderboard_rank_mutation_response": { @@ -49823,33 +49929,33 @@ export default { 38 ], "returning": [ - 2452 + 2457 ], "__typename": [ - 70 + 75 ] }, "player_leaderboard_rank_order_by": { "player_steam_id": [ - 2011 + 2016 ], "rank": [ - 2011 + 2016 ], "total": [ - 2011 + 2016 ], "value": [ - 2011 + 2016 ], "__typename": [ - 70 + 75 ] }, "player_leaderboard_rank_select_column": {}, "player_leaderboard_rank_set_input": { "player_steam_id": [ - 70 + 75 ], "rank": [ 38 @@ -49858,10 +49964,10 @@ export default { 38 ], "value": [ - 1084 + 1089 ], "__typename": [ - 70 + 75 ] }, "player_leaderboard_rank_stddev_fields": { @@ -49875,7 +49981,7 @@ export default { 29 ], "__typename": [ - 70 + 75 ] }, "player_leaderboard_rank_stddev_pop_fields": { @@ -49889,7 +49995,7 @@ export default { 29 ], "__typename": [ - 70 + 75 ] }, "player_leaderboard_rank_stddev_samp_fields": { @@ -49903,23 +50009,23 @@ export default { 29 ], "__typename": [ - 70 + 75 ] }, "player_leaderboard_rank_stream_cursor_input": { "initial_value": [ - 2469 + 2474 ], "ordering": [ - 224 + 229 ], "__typename": [ - 70 + 75 ] }, "player_leaderboard_rank_stream_cursor_value_input": { "player_steam_id": [ - 70 + 75 ], "rank": [ 38 @@ -49928,10 +50034,10 @@ export default { 38 ], "value": [ - 1084 + 1089 ], "__typename": [ - 70 + 75 ] }, "player_leaderboard_rank_sum_fields": { @@ -49942,24 +50048,24 @@ export default { 38 ], "value": [ - 1084 + 1089 ], "__typename": [ - 70 + 75 ] }, "player_leaderboard_rank_updates": { "_inc": [ - 2457 + 2462 ], "_set": [ - 2464 + 2469 ], "where": [ - 2456 + 2461 ], "__typename": [ - 70 + 75 ] }, "player_leaderboard_rank_var_pop_fields": { @@ -49973,7 +50079,7 @@ export default { 29 ], "__typename": [ - 70 + 75 ] }, "player_leaderboard_rank_var_samp_fields": { @@ -49987,7 +50093,7 @@ export default { 29 ], "__typename": [ - 70 + 75 ] }, "player_leaderboard_rank_variance_fields": { @@ -50001,7 +50107,7 @@ export default { 29 ], "__typename": [ - 70 + 75 ] }, "player_match_map_stats": { @@ -50024,7 +50130,7 @@ export default { 38 ], "crosshair_angle_sum_deg": [ - 2009 + 2014 ], "damage": [ 38 @@ -50066,7 +50172,7 @@ export default { 38 ], "flash_duration_sum": [ - 2009 + 2014 ], "flashes_thrown": [ 38 @@ -50120,16 +50226,16 @@ export default { 38 ], "match": [ - 1826 + 1831 ], "match_id": [ - 3818 + 3864 ], "match_map": [ - 1664 + 1669 ], "match_map_id": [ - 3818 + 3864 ], "molotov_damage": [ 38 @@ -50144,7 +50250,7 @@ export default { 38 ], "player": [ - 2878 + 2915 ], "rounds_ct": [ 38 @@ -50177,7 +50283,7 @@ export default { 38 ], "steam_id": [ - 169 + 174 ], "team_damage": [ 38 @@ -50192,7 +50298,7 @@ export default { 38 ], "time_to_damage_sum_s": [ - 2009 + 2014 ], "total_engagement_frames": [ 38 @@ -50222,7 +50328,7 @@ export default { 38 ], "updated_at": [ - 3421 + 3467 ], "util_on_death_count": [ 38 @@ -50237,54 +50343,54 @@ export default { 38 ], "__typename": [ - 70 + 75 ] }, "player_match_map_stats_aggregate": { "aggregate": [ - 2479 + 2484 ], "nodes": [ - 2475 + 2480 ], "__typename": [ - 70 + 75 ] }, "player_match_map_stats_aggregate_bool_exp": { "count": [ - 2478 + 2483 ], "__typename": [ - 70 + 75 ] }, "player_match_map_stats_aggregate_bool_exp_count": { "arguments": [ - 2496 + 2501 ], "distinct": [ 3 ], "filter": [ - 2484 + 2489 ], "predicate": [ 39 ], "__typename": [ - 70 + 75 ] }, "player_match_map_stats_aggregate_fields": { "avg": [ - 2482 + 2487 ], "count": [ 38, { "columns": [ - 2496, + 2501, "[player_match_map_stats_select_column!]" ], "distinct": [ @@ -50293,83 +50399,83 @@ export default { } ], "max": [ - 2488 + 2493 ], "min": [ - 2490 + 2495 ], "stddev": [ - 2498 + 2503 ], "stddev_pop": [ - 2500 + 2505 ], "stddev_samp": [ - 2502 + 2507 ], "sum": [ - 2506 + 2511 ], "var_pop": [ - 2510 + 2515 ], "var_samp": [ - 2512 + 2517 ], "variance": [ - 2514 + 2519 ], "__typename": [ - 70 + 75 ] }, "player_match_map_stats_aggregate_order_by": { "avg": [ - 2483 + 2488 ], "count": [ - 2011 + 2016 ], "max": [ - 2489 + 2494 ], "min": [ - 2491 + 2496 ], "stddev": [ - 2499 + 2504 ], "stddev_pop": [ - 2501 + 2506 ], "stddev_samp": [ - 2503 + 2508 ], "sum": [ - 2507 + 2512 ], "var_pop": [ - 2511 + 2516 ], "var_samp": [ - 2513 + 2518 ], "variance": [ - 2515 + 2520 ], "__typename": [ - 70 + 75 ] }, "player_match_map_stats_arr_rel_insert_input": { "data": [ - 2487 + 2492 ], "on_conflict": [ - 2493 + 2498 ], "__typename": [ - 70 + 75 ] }, "player_match_map_stats_avg_fields": { @@ -50587,236 +50693,236 @@ export default { 29 ], "__typename": [ - 70 + 75 ] }, "player_match_map_stats_avg_order_by": { "assists": [ - 2011 + 2016 ], "assists_ct": [ - 2011 + 2016 ], "assists_t": [ - 2011 + 2016 ], "counter_strafe_eligible_shots": [ - 2011 + 2016 ], "counter_strafed_shots": [ - 2011 + 2016 ], "crosshair_angle_count": [ - 2011 + 2016 ], "crosshair_angle_sum_deg": [ - 2011 + 2016 ], "damage": [ - 2011 + 2016 ], "damage_ct": [ - 2011 + 2016 ], "damage_t": [ - 2011 + 2016 ], "deaths": [ - 2011 + 2016 ], "deaths_ct": [ - 2011 + 2016 ], "deaths_t": [ - 2011 + 2016 ], "decoy_throws": [ - 2011 + 2016 ], "enemies_flashed": [ - 2011 + 2016 ], "first_bullet_hits": [ - 2011 + 2016 ], "first_bullet_shots": [ - 2011 + 2016 ], "five_kill_rounds": [ - 2011 + 2016 ], "flash_assists": [ - 2011 + 2016 ], "flash_duration_count": [ - 2011 + 2016 ], "flash_duration_sum": [ - 2011 + 2016 ], "flashes_thrown": [ - 2011 + 2016 ], "four_kill_rounds": [ - 2011 + 2016 ], "he_damage": [ - 2011 + 2016 ], "he_team_damage": [ - 2011 + 2016 ], "he_throws": [ - 2011 + 2016 ], "headshot_hits": [ - 2011 + 2016 ], "hits": [ - 2011 + 2016 ], "hits_at_spotted": [ - 2011 + 2016 ], "hs_kills": [ - 2011 + 2016 ], "hs_kills_ct": [ - 2011 + 2016 ], "hs_kills_t": [ - 2011 + 2016 ], "kast_rounds": [ - 2011 + 2016 ], "kast_total_rounds": [ - 2011 + 2016 ], "kills": [ - 2011 + 2016 ], "kills_ct": [ - 2011 + 2016 ], "kills_t": [ - 2011 + 2016 ], "knife_kills": [ - 2011 + 2016 ], "molotov_damage": [ - 2011 + 2016 ], "molotov_throws": [ - 2011 + 2016 ], "non_awp_hits": [ - 2011 + 2016 ], "on_target_frames": [ - 2011 + 2016 ], "rounds_ct": [ - 2011 + 2016 ], "rounds_played": [ - 2011 + 2016 ], "rounds_t": [ - 2011 + 2016 ], "shots_at_spotted": [ - 2011 + 2016 ], "shots_fired": [ - 2011 + 2016 ], "smoke_throws": [ - 2011 + 2016 ], "spotted_count": [ - 2011 + 2016 ], "spotted_with_damage_count": [ - 2011 + 2016 ], "spray_hits": [ - 2011 + 2016 ], "spray_shots": [ - 2011 + 2016 ], "steam_id": [ - 2011 + 2016 ], "team_damage": [ - 2011 + 2016 ], "team_flashed": [ - 2011 + 2016 ], "three_kill_rounds": [ - 2011 + 2016 ], "time_to_damage_count": [ - 2011 + 2016 ], "time_to_damage_sum_s": [ - 2011 + 2016 ], "total_engagement_frames": [ - 2011 + 2016 ], "trade_kill_attempts": [ - 2011 + 2016 ], "trade_kill_opportunities": [ - 2011 + 2016 ], "trade_kill_successes": [ - 2011 + 2016 ], "traded_death_attempts": [ - 2011 + 2016 ], "traded_death_opportunities": [ - 2011 + 2016 ], "traded_death_successes": [ - 2011 + 2016 ], "two_kill_rounds": [ - 2011 + 2016 ], "unused_utility_value": [ - 2011 + 2016 ], "util_on_death_count": [ - 2011 + 2016 ], "util_on_death_sum": [ - 2011 + 2016 ], "wasted_magazine_shots": [ - 2011 + 2016 ], "zeus_kills": [ - 2011 + 2016 ], "__typename": [ - 70 + 75 ] }, "player_match_map_stats_bool_exp": { "_and": [ - 2484 + 2489 ], "_not": [ - 2484 + 2489 ], "_or": [ - 2484 + 2489 ], "assists": [ 39 @@ -50837,7 +50943,7 @@ export default { 39 ], "crosshair_angle_sum_deg": [ - 2010 + 2015 ], "damage": [ 39 @@ -50879,7 +50985,7 @@ export default { 39 ], "flash_duration_sum": [ - 2010 + 2015 ], "flashes_thrown": [ 39 @@ -50933,16 +51039,16 @@ export default { 39 ], "match": [ - 1835 + 1840 ], "match_id": [ - 3820 + 3866 ], "match_map": [ - 1673 + 1678 ], "match_map_id": [ - 3820 + 3866 ], "molotov_damage": [ 39 @@ -50957,7 +51063,7 @@ export default { 39 ], "player": [ - 2882 + 2919 ], "rounds_ct": [ 39 @@ -50990,7 +51096,7 @@ export default { 39 ], "steam_id": [ - 171 + 176 ], "team_damage": [ 39 @@ -51005,7 +51111,7 @@ export default { 39 ], "time_to_damage_sum_s": [ - 2010 + 2015 ], "total_engagement_frames": [ 39 @@ -51035,7 +51141,7 @@ export default { 39 ], "updated_at": [ - 3422 + 3468 ], "util_on_death_count": [ 39 @@ -51050,7 +51156,7 @@ export default { 39 ], "__typename": [ - 70 + 75 ] }, "player_match_map_stats_constraint": {}, @@ -51074,7 +51180,7 @@ export default { 38 ], "crosshair_angle_sum_deg": [ - 2009 + 2014 ], "damage": [ 38 @@ -51116,7 +51222,7 @@ export default { 38 ], "flash_duration_sum": [ - 2009 + 2014 ], "flashes_thrown": [ 38 @@ -51212,7 +51318,7 @@ export default { 38 ], "steam_id": [ - 169 + 174 ], "team_damage": [ 38 @@ -51227,7 +51333,7 @@ export default { 38 ], "time_to_damage_sum_s": [ - 2009 + 2014 ], "total_engagement_frames": [ 38 @@ -51269,7 +51375,7 @@ export default { 38 ], "__typename": [ - 70 + 75 ] }, "player_match_map_stats_insert_input": { @@ -51292,7 +51398,7 @@ export default { 38 ], "crosshair_angle_sum_deg": [ - 2009 + 2014 ], "damage": [ 38 @@ -51334,7 +51440,7 @@ export default { 38 ], "flash_duration_sum": [ - 2009 + 2014 ], "flashes_thrown": [ 38 @@ -51388,16 +51494,16 @@ export default { 38 ], "match": [ - 1844 + 1849 ], "match_id": [ - 3818 + 3864 ], "match_map": [ - 1682 + 1687 ], "match_map_id": [ - 3818 + 3864 ], "molotov_damage": [ 38 @@ -51412,7 +51518,7 @@ export default { 38 ], "player": [ - 2889 + 2926 ], "rounds_ct": [ 38 @@ -51445,7 +51551,7 @@ export default { 38 ], "steam_id": [ - 169 + 174 ], "team_damage": [ 38 @@ -51460,7 +51566,7 @@ export default { 38 ], "time_to_damage_sum_s": [ - 2009 + 2014 ], "total_engagement_frames": [ 38 @@ -51490,7 +51596,7 @@ export default { 38 ], "updated_at": [ - 3421 + 3467 ], "util_on_death_count": [ 38 @@ -51505,7 +51611,7 @@ export default { 38 ], "__typename": [ - 70 + 75 ] }, "player_match_map_stats_max_fields": { @@ -51528,7 +51634,7 @@ export default { 38 ], "crosshair_angle_sum_deg": [ - 2009 + 2014 ], "damage": [ 38 @@ -51570,7 +51676,7 @@ export default { 38 ], "flash_duration_sum": [ - 2009 + 2014 ], "flashes_thrown": [ 38 @@ -51624,10 +51730,10 @@ export default { 38 ], "match_id": [ - 3818 + 3864 ], "match_map_id": [ - 3818 + 3864 ], "molotov_damage": [ 38 @@ -51672,7 +51778,7 @@ export default { 38 ], "steam_id": [ - 169 + 174 ], "team_damage": [ 38 @@ -51687,7 +51793,7 @@ export default { 38 ], "time_to_damage_sum_s": [ - 2009 + 2014 ], "total_engagement_frames": [ 38 @@ -51717,7 +51823,7 @@ export default { 38 ], "updated_at": [ - 3421 + 3467 ], "util_on_death_count": [ 38 @@ -51732,234 +51838,234 @@ export default { 38 ], "__typename": [ - 70 + 75 ] }, "player_match_map_stats_max_order_by": { "assists": [ - 2011 + 2016 ], "assists_ct": [ - 2011 + 2016 ], "assists_t": [ - 2011 + 2016 ], "counter_strafe_eligible_shots": [ - 2011 + 2016 ], "counter_strafed_shots": [ - 2011 + 2016 ], "crosshair_angle_count": [ - 2011 + 2016 ], "crosshair_angle_sum_deg": [ - 2011 + 2016 ], "damage": [ - 2011 + 2016 ], "damage_ct": [ - 2011 + 2016 ], "damage_t": [ - 2011 + 2016 ], "deaths": [ - 2011 + 2016 ], "deaths_ct": [ - 2011 + 2016 ], "deaths_t": [ - 2011 + 2016 ], "decoy_throws": [ - 2011 + 2016 ], "enemies_flashed": [ - 2011 + 2016 ], "first_bullet_hits": [ - 2011 + 2016 ], "first_bullet_shots": [ - 2011 + 2016 ], "five_kill_rounds": [ - 2011 + 2016 ], "flash_assists": [ - 2011 + 2016 ], "flash_duration_count": [ - 2011 + 2016 ], "flash_duration_sum": [ - 2011 + 2016 ], "flashes_thrown": [ - 2011 + 2016 ], "four_kill_rounds": [ - 2011 + 2016 ], "he_damage": [ - 2011 + 2016 ], "he_team_damage": [ - 2011 + 2016 ], "he_throws": [ - 2011 + 2016 ], "headshot_hits": [ - 2011 + 2016 ], "hits": [ - 2011 + 2016 ], "hits_at_spotted": [ - 2011 + 2016 ], "hs_kills": [ - 2011 + 2016 ], "hs_kills_ct": [ - 2011 + 2016 ], "hs_kills_t": [ - 2011 + 2016 ], "kast_rounds": [ - 2011 + 2016 ], "kast_total_rounds": [ - 2011 + 2016 ], "kills": [ - 2011 + 2016 ], "kills_ct": [ - 2011 + 2016 ], "kills_t": [ - 2011 + 2016 ], "knife_kills": [ - 2011 + 2016 ], "match_id": [ - 2011 + 2016 ], "match_map_id": [ - 2011 + 2016 ], "molotov_damage": [ - 2011 + 2016 ], "molotov_throws": [ - 2011 + 2016 ], "non_awp_hits": [ - 2011 + 2016 ], "on_target_frames": [ - 2011 + 2016 ], "rounds_ct": [ - 2011 + 2016 ], "rounds_played": [ - 2011 + 2016 ], "rounds_t": [ - 2011 + 2016 ], "shots_at_spotted": [ - 2011 + 2016 ], "shots_fired": [ - 2011 + 2016 ], "smoke_throws": [ - 2011 + 2016 ], "spotted_count": [ - 2011 + 2016 ], "spotted_with_damage_count": [ - 2011 + 2016 ], "spray_hits": [ - 2011 + 2016 ], "spray_shots": [ - 2011 + 2016 ], "steam_id": [ - 2011 + 2016 ], "team_damage": [ - 2011 + 2016 ], "team_flashed": [ - 2011 + 2016 ], "three_kill_rounds": [ - 2011 + 2016 ], "time_to_damage_count": [ - 2011 + 2016 ], "time_to_damage_sum_s": [ - 2011 + 2016 ], "total_engagement_frames": [ - 2011 + 2016 ], "trade_kill_attempts": [ - 2011 + 2016 ], "trade_kill_opportunities": [ - 2011 + 2016 ], "trade_kill_successes": [ - 2011 + 2016 ], "traded_death_attempts": [ - 2011 + 2016 ], "traded_death_opportunities": [ - 2011 + 2016 ], "traded_death_successes": [ - 2011 + 2016 ], "two_kill_rounds": [ - 2011 + 2016 ], "unused_utility_value": [ - 2011 + 2016 ], "updated_at": [ - 2011 + 2016 ], "util_on_death_count": [ - 2011 + 2016 ], "util_on_death_sum": [ - 2011 + 2016 ], "wasted_magazine_shots": [ - 2011 + 2016 ], "zeus_kills": [ - 2011 + 2016 ], "__typename": [ - 70 + 75 ] }, "player_match_map_stats_min_fields": { @@ -51982,7 +52088,7 @@ export default { 38 ], "crosshair_angle_sum_deg": [ - 2009 + 2014 ], "damage": [ 38 @@ -52024,7 +52130,7 @@ export default { 38 ], "flash_duration_sum": [ - 2009 + 2014 ], "flashes_thrown": [ 38 @@ -52078,10 +52184,10 @@ export default { 38 ], "match_id": [ - 3818 + 3864 ], "match_map_id": [ - 3818 + 3864 ], "molotov_damage": [ 38 @@ -52126,7 +52232,7 @@ export default { 38 ], "steam_id": [ - 169 + 174 ], "team_damage": [ 38 @@ -52141,7 +52247,7 @@ export default { 38 ], "time_to_damage_sum_s": [ - 2009 + 2014 ], "total_engagement_frames": [ 38 @@ -52171,7 +52277,7 @@ export default { 38 ], "updated_at": [ - 3421 + 3467 ], "util_on_death_count": [ 38 @@ -52186,234 +52292,234 @@ export default { 38 ], "__typename": [ - 70 + 75 ] }, "player_match_map_stats_min_order_by": { "assists": [ - 2011 + 2016 ], "assists_ct": [ - 2011 + 2016 ], "assists_t": [ - 2011 + 2016 ], "counter_strafe_eligible_shots": [ - 2011 + 2016 ], "counter_strafed_shots": [ - 2011 + 2016 ], "crosshair_angle_count": [ - 2011 + 2016 ], "crosshair_angle_sum_deg": [ - 2011 + 2016 ], "damage": [ - 2011 + 2016 ], "damage_ct": [ - 2011 + 2016 ], "damage_t": [ - 2011 + 2016 ], "deaths": [ - 2011 + 2016 ], "deaths_ct": [ - 2011 + 2016 ], "deaths_t": [ - 2011 + 2016 ], "decoy_throws": [ - 2011 + 2016 ], "enemies_flashed": [ - 2011 + 2016 ], "first_bullet_hits": [ - 2011 + 2016 ], "first_bullet_shots": [ - 2011 + 2016 ], "five_kill_rounds": [ - 2011 + 2016 ], "flash_assists": [ - 2011 + 2016 ], "flash_duration_count": [ - 2011 + 2016 ], "flash_duration_sum": [ - 2011 + 2016 ], "flashes_thrown": [ - 2011 + 2016 ], "four_kill_rounds": [ - 2011 + 2016 ], "he_damage": [ - 2011 + 2016 ], "he_team_damage": [ - 2011 + 2016 ], "he_throws": [ - 2011 + 2016 ], "headshot_hits": [ - 2011 + 2016 ], "hits": [ - 2011 + 2016 ], "hits_at_spotted": [ - 2011 + 2016 ], "hs_kills": [ - 2011 + 2016 ], "hs_kills_ct": [ - 2011 + 2016 ], "hs_kills_t": [ - 2011 + 2016 ], "kast_rounds": [ - 2011 + 2016 ], "kast_total_rounds": [ - 2011 + 2016 ], "kills": [ - 2011 + 2016 ], "kills_ct": [ - 2011 + 2016 ], "kills_t": [ - 2011 + 2016 ], "knife_kills": [ - 2011 + 2016 ], "match_id": [ - 2011 + 2016 ], "match_map_id": [ - 2011 + 2016 ], "molotov_damage": [ - 2011 + 2016 ], "molotov_throws": [ - 2011 + 2016 ], "non_awp_hits": [ - 2011 + 2016 ], "on_target_frames": [ - 2011 + 2016 ], "rounds_ct": [ - 2011 + 2016 ], "rounds_played": [ - 2011 + 2016 ], "rounds_t": [ - 2011 + 2016 ], "shots_at_spotted": [ - 2011 + 2016 ], "shots_fired": [ - 2011 + 2016 ], "smoke_throws": [ - 2011 + 2016 ], "spotted_count": [ - 2011 + 2016 ], "spotted_with_damage_count": [ - 2011 + 2016 ], "spray_hits": [ - 2011 + 2016 ], "spray_shots": [ - 2011 + 2016 ], "steam_id": [ - 2011 + 2016 ], "team_damage": [ - 2011 + 2016 ], "team_flashed": [ - 2011 + 2016 ], "three_kill_rounds": [ - 2011 + 2016 ], "time_to_damage_count": [ - 2011 + 2016 ], "time_to_damage_sum_s": [ - 2011 + 2016 ], "total_engagement_frames": [ - 2011 + 2016 ], "trade_kill_attempts": [ - 2011 + 2016 ], "trade_kill_opportunities": [ - 2011 + 2016 ], "trade_kill_successes": [ - 2011 + 2016 ], "traded_death_attempts": [ - 2011 + 2016 ], "traded_death_opportunities": [ - 2011 + 2016 ], "traded_death_successes": [ - 2011 + 2016 ], "two_kill_rounds": [ - 2011 + 2016 ], "unused_utility_value": [ - 2011 + 2016 ], "updated_at": [ - 2011 + 2016 ], "util_on_death_count": [ - 2011 + 2016 ], "util_on_death_sum": [ - 2011 + 2016 ], "wasted_magazine_shots": [ - 2011 + 2016 ], "zeus_kills": [ - 2011 + 2016 ], "__typename": [ - 70 + 75 ] }, "player_match_map_stats_mutation_response": { @@ -52421,271 +52527,271 @@ export default { 38 ], "returning": [ - 2475 + 2480 ], "__typename": [ - 70 + 75 ] }, "player_match_map_stats_on_conflict": { "constraint": [ - 2485 + 2490 ], "update_columns": [ - 2508 + 2513 ], "where": [ - 2484 + 2489 ], "__typename": [ - 70 + 75 ] }, "player_match_map_stats_order_by": { "assists": [ - 2011 + 2016 ], "assists_ct": [ - 2011 + 2016 ], "assists_t": [ - 2011 + 2016 ], "counter_strafe_eligible_shots": [ - 2011 + 2016 ], "counter_strafed_shots": [ - 2011 + 2016 ], "crosshair_angle_count": [ - 2011 + 2016 ], "crosshair_angle_sum_deg": [ - 2011 + 2016 ], "damage": [ - 2011 + 2016 ], "damage_ct": [ - 2011 + 2016 ], "damage_t": [ - 2011 + 2016 ], "deaths": [ - 2011 + 2016 ], "deaths_ct": [ - 2011 + 2016 ], "deaths_t": [ - 2011 + 2016 ], "decoy_throws": [ - 2011 + 2016 ], "enemies_flashed": [ - 2011 + 2016 ], "first_bullet_hits": [ - 2011 + 2016 ], "first_bullet_shots": [ - 2011 + 2016 ], "five_kill_rounds": [ - 2011 + 2016 ], "flash_assists": [ - 2011 + 2016 ], "flash_duration_count": [ - 2011 + 2016 ], "flash_duration_sum": [ - 2011 + 2016 ], "flashes_thrown": [ - 2011 + 2016 ], "four_kill_rounds": [ - 2011 + 2016 ], "he_damage": [ - 2011 + 2016 ], "he_team_damage": [ - 2011 + 2016 ], "he_throws": [ - 2011 + 2016 ], "headshot_hits": [ - 2011 + 2016 ], "hits": [ - 2011 + 2016 ], "hits_at_spotted": [ - 2011 + 2016 ], "hs_kills": [ - 2011 + 2016 ], "hs_kills_ct": [ - 2011 + 2016 ], "hs_kills_t": [ - 2011 + 2016 ], "kast_rounds": [ - 2011 + 2016 ], "kast_total_rounds": [ - 2011 + 2016 ], "kills": [ - 2011 + 2016 ], "kills_ct": [ - 2011 + 2016 ], "kills_t": [ - 2011 + 2016 ], "knife_kills": [ - 2011 + 2016 ], "match": [ - 1846 + 1851 ], "match_id": [ - 2011 + 2016 ], "match_map": [ - 1684 + 1689 ], "match_map_id": [ - 2011 + 2016 ], "molotov_damage": [ - 2011 + 2016 ], "molotov_throws": [ - 2011 + 2016 ], "non_awp_hits": [ - 2011 + 2016 ], "on_target_frames": [ - 2011 + 2016 ], "player": [ - 2891 + 2928 ], "rounds_ct": [ - 2011 + 2016 ], "rounds_played": [ - 2011 + 2016 ], "rounds_t": [ - 2011 + 2016 ], "shots_at_spotted": [ - 2011 + 2016 ], "shots_fired": [ - 2011 + 2016 ], "smoke_throws": [ - 2011 + 2016 ], "spotted_count": [ - 2011 + 2016 ], "spotted_with_damage_count": [ - 2011 + 2016 ], "spray_hits": [ - 2011 + 2016 ], "spray_shots": [ - 2011 + 2016 ], "steam_id": [ - 2011 + 2016 ], "team_damage": [ - 2011 + 2016 ], "team_flashed": [ - 2011 + 2016 ], "three_kill_rounds": [ - 2011 + 2016 ], "time_to_damage_count": [ - 2011 + 2016 ], "time_to_damage_sum_s": [ - 2011 + 2016 ], "total_engagement_frames": [ - 2011 + 2016 ], "trade_kill_attempts": [ - 2011 + 2016 ], "trade_kill_opportunities": [ - 2011 + 2016 ], "trade_kill_successes": [ - 2011 + 2016 ], "traded_death_attempts": [ - 2011 + 2016 ], "traded_death_opportunities": [ - 2011 + 2016 ], "traded_death_successes": [ - 2011 + 2016 ], "two_kill_rounds": [ - 2011 + 2016 ], "unused_utility_value": [ - 2011 + 2016 ], "updated_at": [ - 2011 + 2016 ], "util_on_death_count": [ - 2011 + 2016 ], "util_on_death_sum": [ - 2011 + 2016 ], "wasted_magazine_shots": [ - 2011 + 2016 ], "zeus_kills": [ - 2011 + 2016 ], "__typename": [ - 70 + 75 ] }, "player_match_map_stats_pk_columns_input": { "match_map_id": [ - 3818 + 3864 ], "steam_id": [ - 169 + 174 ], "__typename": [ - 70 + 75 ] }, "player_match_map_stats_select_column": {}, @@ -52709,7 +52815,7 @@ export default { 38 ], "crosshair_angle_sum_deg": [ - 2009 + 2014 ], "damage": [ 38 @@ -52751,7 +52857,7 @@ export default { 38 ], "flash_duration_sum": [ - 2009 + 2014 ], "flashes_thrown": [ 38 @@ -52805,10 +52911,10 @@ export default { 38 ], "match_id": [ - 3818 + 3864 ], "match_map_id": [ - 3818 + 3864 ], "molotov_damage": [ 38 @@ -52853,7 +52959,7 @@ export default { 38 ], "steam_id": [ - 169 + 174 ], "team_damage": [ 38 @@ -52868,7 +52974,7 @@ export default { 38 ], "time_to_damage_sum_s": [ - 2009 + 2014 ], "total_engagement_frames": [ 38 @@ -52898,7 +53004,7 @@ export default { 38 ], "updated_at": [ - 3421 + 3467 ], "util_on_death_count": [ 38 @@ -52913,7 +53019,7 @@ export default { 38 ], "__typename": [ - 70 + 75 ] }, "player_match_map_stats_stddev_fields": { @@ -53131,225 +53237,225 @@ export default { 29 ], "__typename": [ - 70 + 75 ] }, "player_match_map_stats_stddev_order_by": { "assists": [ - 2011 + 2016 ], "assists_ct": [ - 2011 + 2016 ], "assists_t": [ - 2011 + 2016 ], "counter_strafe_eligible_shots": [ - 2011 + 2016 ], "counter_strafed_shots": [ - 2011 + 2016 ], "crosshair_angle_count": [ - 2011 + 2016 ], "crosshair_angle_sum_deg": [ - 2011 + 2016 ], "damage": [ - 2011 + 2016 ], "damage_ct": [ - 2011 + 2016 ], "damage_t": [ - 2011 + 2016 ], "deaths": [ - 2011 + 2016 ], "deaths_ct": [ - 2011 + 2016 ], "deaths_t": [ - 2011 + 2016 ], "decoy_throws": [ - 2011 + 2016 ], "enemies_flashed": [ - 2011 + 2016 ], "first_bullet_hits": [ - 2011 + 2016 ], "first_bullet_shots": [ - 2011 + 2016 ], "five_kill_rounds": [ - 2011 + 2016 ], "flash_assists": [ - 2011 + 2016 ], "flash_duration_count": [ - 2011 + 2016 ], "flash_duration_sum": [ - 2011 + 2016 ], "flashes_thrown": [ - 2011 + 2016 ], "four_kill_rounds": [ - 2011 + 2016 ], "he_damage": [ - 2011 + 2016 ], "he_team_damage": [ - 2011 + 2016 ], "he_throws": [ - 2011 + 2016 ], "headshot_hits": [ - 2011 + 2016 ], "hits": [ - 2011 + 2016 ], "hits_at_spotted": [ - 2011 + 2016 ], "hs_kills": [ - 2011 + 2016 ], "hs_kills_ct": [ - 2011 + 2016 ], "hs_kills_t": [ - 2011 + 2016 ], "kast_rounds": [ - 2011 + 2016 ], "kast_total_rounds": [ - 2011 + 2016 ], "kills": [ - 2011 + 2016 ], "kills_ct": [ - 2011 + 2016 ], "kills_t": [ - 2011 + 2016 ], "knife_kills": [ - 2011 + 2016 ], "molotov_damage": [ - 2011 + 2016 ], "molotov_throws": [ - 2011 + 2016 ], "non_awp_hits": [ - 2011 + 2016 ], "on_target_frames": [ - 2011 + 2016 ], "rounds_ct": [ - 2011 + 2016 ], "rounds_played": [ - 2011 + 2016 ], "rounds_t": [ - 2011 + 2016 ], "shots_at_spotted": [ - 2011 + 2016 ], "shots_fired": [ - 2011 + 2016 ], "smoke_throws": [ - 2011 + 2016 ], "spotted_count": [ - 2011 + 2016 ], "spotted_with_damage_count": [ - 2011 + 2016 ], "spray_hits": [ - 2011 + 2016 ], "spray_shots": [ - 2011 + 2016 ], "steam_id": [ - 2011 + 2016 ], "team_damage": [ - 2011 + 2016 ], "team_flashed": [ - 2011 + 2016 ], "three_kill_rounds": [ - 2011 + 2016 ], "time_to_damage_count": [ - 2011 + 2016 ], "time_to_damage_sum_s": [ - 2011 + 2016 ], "total_engagement_frames": [ - 2011 + 2016 ], "trade_kill_attempts": [ - 2011 + 2016 ], "trade_kill_opportunities": [ - 2011 + 2016 ], "trade_kill_successes": [ - 2011 + 2016 ], "traded_death_attempts": [ - 2011 + 2016 ], "traded_death_opportunities": [ - 2011 + 2016 ], "traded_death_successes": [ - 2011 + 2016 ], "two_kill_rounds": [ - 2011 + 2016 ], "unused_utility_value": [ - 2011 + 2016 ], "util_on_death_count": [ - 2011 + 2016 ], "util_on_death_sum": [ - 2011 + 2016 ], "wasted_magazine_shots": [ - 2011 + 2016 ], "zeus_kills": [ - 2011 + 2016 ], "__typename": [ - 70 + 75 ] }, "player_match_map_stats_stddev_pop_fields": { @@ -53567,225 +53673,225 @@ export default { 29 ], "__typename": [ - 70 + 75 ] }, "player_match_map_stats_stddev_pop_order_by": { "assists": [ - 2011 + 2016 ], "assists_ct": [ - 2011 + 2016 ], "assists_t": [ - 2011 + 2016 ], "counter_strafe_eligible_shots": [ - 2011 + 2016 ], "counter_strafed_shots": [ - 2011 + 2016 ], "crosshair_angle_count": [ - 2011 + 2016 ], "crosshair_angle_sum_deg": [ - 2011 + 2016 ], "damage": [ - 2011 + 2016 ], "damage_ct": [ - 2011 + 2016 ], "damage_t": [ - 2011 + 2016 ], "deaths": [ - 2011 + 2016 ], "deaths_ct": [ - 2011 + 2016 ], "deaths_t": [ - 2011 + 2016 ], "decoy_throws": [ - 2011 + 2016 ], "enemies_flashed": [ - 2011 + 2016 ], "first_bullet_hits": [ - 2011 + 2016 ], "first_bullet_shots": [ - 2011 + 2016 ], "five_kill_rounds": [ - 2011 + 2016 ], "flash_assists": [ - 2011 + 2016 ], "flash_duration_count": [ - 2011 + 2016 ], "flash_duration_sum": [ - 2011 + 2016 ], "flashes_thrown": [ - 2011 + 2016 ], "four_kill_rounds": [ - 2011 + 2016 ], "he_damage": [ - 2011 + 2016 ], "he_team_damage": [ - 2011 + 2016 ], "he_throws": [ - 2011 + 2016 ], "headshot_hits": [ - 2011 + 2016 ], "hits": [ - 2011 + 2016 ], "hits_at_spotted": [ - 2011 + 2016 ], "hs_kills": [ - 2011 + 2016 ], "hs_kills_ct": [ - 2011 + 2016 ], "hs_kills_t": [ - 2011 + 2016 ], "kast_rounds": [ - 2011 + 2016 ], "kast_total_rounds": [ - 2011 + 2016 ], "kills": [ - 2011 + 2016 ], "kills_ct": [ - 2011 + 2016 ], "kills_t": [ - 2011 + 2016 ], "knife_kills": [ - 2011 + 2016 ], "molotov_damage": [ - 2011 + 2016 ], "molotov_throws": [ - 2011 + 2016 ], "non_awp_hits": [ - 2011 + 2016 ], "on_target_frames": [ - 2011 + 2016 ], "rounds_ct": [ - 2011 + 2016 ], "rounds_played": [ - 2011 + 2016 ], "rounds_t": [ - 2011 + 2016 ], "shots_at_spotted": [ - 2011 + 2016 ], "shots_fired": [ - 2011 + 2016 ], "smoke_throws": [ - 2011 + 2016 ], "spotted_count": [ - 2011 + 2016 ], "spotted_with_damage_count": [ - 2011 + 2016 ], "spray_hits": [ - 2011 + 2016 ], "spray_shots": [ - 2011 + 2016 ], "steam_id": [ - 2011 + 2016 ], "team_damage": [ - 2011 + 2016 ], "team_flashed": [ - 2011 + 2016 ], "three_kill_rounds": [ - 2011 + 2016 ], "time_to_damage_count": [ - 2011 + 2016 ], "time_to_damage_sum_s": [ - 2011 + 2016 ], "total_engagement_frames": [ - 2011 + 2016 ], "trade_kill_attempts": [ - 2011 + 2016 ], "trade_kill_opportunities": [ - 2011 + 2016 ], "trade_kill_successes": [ - 2011 + 2016 ], "traded_death_attempts": [ - 2011 + 2016 ], "traded_death_opportunities": [ - 2011 + 2016 ], "traded_death_successes": [ - 2011 + 2016 ], "two_kill_rounds": [ - 2011 + 2016 ], "unused_utility_value": [ - 2011 + 2016 ], "util_on_death_count": [ - 2011 + 2016 ], "util_on_death_sum": [ - 2011 + 2016 ], "wasted_magazine_shots": [ - 2011 + 2016 ], "zeus_kills": [ - 2011 + 2016 ], "__typename": [ - 70 + 75 ] }, "player_match_map_stats_stddev_samp_fields": { @@ -54003,236 +54109,236 @@ export default { 29 ], "__typename": [ - 70 + 75 ] }, "player_match_map_stats_stddev_samp_order_by": { "assists": [ - 2011 + 2016 ], "assists_ct": [ - 2011 + 2016 ], "assists_t": [ - 2011 + 2016 ], "counter_strafe_eligible_shots": [ - 2011 + 2016 ], "counter_strafed_shots": [ - 2011 + 2016 ], "crosshair_angle_count": [ - 2011 + 2016 ], "crosshair_angle_sum_deg": [ - 2011 + 2016 ], "damage": [ - 2011 + 2016 ], "damage_ct": [ - 2011 + 2016 ], "damage_t": [ - 2011 + 2016 ], "deaths": [ - 2011 + 2016 ], "deaths_ct": [ - 2011 + 2016 ], "deaths_t": [ - 2011 + 2016 ], "decoy_throws": [ - 2011 + 2016 ], "enemies_flashed": [ - 2011 + 2016 ], "first_bullet_hits": [ - 2011 + 2016 ], "first_bullet_shots": [ - 2011 + 2016 ], "five_kill_rounds": [ - 2011 + 2016 ], "flash_assists": [ - 2011 + 2016 ], "flash_duration_count": [ - 2011 + 2016 ], "flash_duration_sum": [ - 2011 + 2016 ], "flashes_thrown": [ - 2011 + 2016 ], "four_kill_rounds": [ - 2011 + 2016 ], "he_damage": [ - 2011 + 2016 ], "he_team_damage": [ - 2011 + 2016 ], "he_throws": [ - 2011 + 2016 ], "headshot_hits": [ - 2011 + 2016 ], "hits": [ - 2011 + 2016 ], "hits_at_spotted": [ - 2011 + 2016 ], "hs_kills": [ - 2011 + 2016 ], "hs_kills_ct": [ - 2011 + 2016 ], "hs_kills_t": [ - 2011 + 2016 ], "kast_rounds": [ - 2011 + 2016 ], "kast_total_rounds": [ - 2011 + 2016 ], "kills": [ - 2011 + 2016 ], "kills_ct": [ - 2011 + 2016 ], "kills_t": [ - 2011 + 2016 ], "knife_kills": [ - 2011 + 2016 ], "molotov_damage": [ - 2011 + 2016 ], "molotov_throws": [ - 2011 + 2016 ], "non_awp_hits": [ - 2011 + 2016 ], "on_target_frames": [ - 2011 + 2016 ], "rounds_ct": [ - 2011 + 2016 ], "rounds_played": [ - 2011 + 2016 ], "rounds_t": [ - 2011 + 2016 ], "shots_at_spotted": [ - 2011 + 2016 ], "shots_fired": [ - 2011 + 2016 ], "smoke_throws": [ - 2011 + 2016 ], "spotted_count": [ - 2011 + 2016 ], "spotted_with_damage_count": [ - 2011 + 2016 ], "spray_hits": [ - 2011 + 2016 ], "spray_shots": [ - 2011 + 2016 ], "steam_id": [ - 2011 + 2016 ], "team_damage": [ - 2011 + 2016 ], "team_flashed": [ - 2011 + 2016 ], "three_kill_rounds": [ - 2011 + 2016 ], "time_to_damage_count": [ - 2011 + 2016 ], "time_to_damage_sum_s": [ - 2011 + 2016 ], "total_engagement_frames": [ - 2011 + 2016 ], "trade_kill_attempts": [ - 2011 + 2016 ], "trade_kill_opportunities": [ - 2011 + 2016 ], "trade_kill_successes": [ - 2011 + 2016 ], "traded_death_attempts": [ - 2011 + 2016 ], "traded_death_opportunities": [ - 2011 + 2016 ], "traded_death_successes": [ - 2011 + 2016 ], "two_kill_rounds": [ - 2011 + 2016 ], "unused_utility_value": [ - 2011 + 2016 ], "util_on_death_count": [ - 2011 + 2016 ], "util_on_death_sum": [ - 2011 + 2016 ], "wasted_magazine_shots": [ - 2011 + 2016 ], "zeus_kills": [ - 2011 + 2016 ], "__typename": [ - 70 + 75 ] }, "player_match_map_stats_stream_cursor_input": { "initial_value": [ - 2505 + 2510 ], "ordering": [ - 224 + 229 ], "__typename": [ - 70 + 75 ] }, "player_match_map_stats_stream_cursor_value_input": { @@ -54255,7 +54361,7 @@ export default { 38 ], "crosshair_angle_sum_deg": [ - 2009 + 2014 ], "damage": [ 38 @@ -54297,7 +54403,7 @@ export default { 38 ], "flash_duration_sum": [ - 2009 + 2014 ], "flashes_thrown": [ 38 @@ -54351,10 +54457,10 @@ export default { 38 ], "match_id": [ - 3818 + 3864 ], "match_map_id": [ - 3818 + 3864 ], "molotov_damage": [ 38 @@ -54399,7 +54505,7 @@ export default { 38 ], "steam_id": [ - 169 + 174 ], "team_damage": [ 38 @@ -54414,7 +54520,7 @@ export default { 38 ], "time_to_damage_sum_s": [ - 2009 + 2014 ], "total_engagement_frames": [ 38 @@ -54444,7 +54550,7 @@ export default { 38 ], "updated_at": [ - 3421 + 3467 ], "util_on_death_count": [ 38 @@ -54459,7 +54565,7 @@ export default { 38 ], "__typename": [ - 70 + 75 ] }, "player_match_map_stats_sum_fields": { @@ -54482,7 +54588,7 @@ export default { 38 ], "crosshair_angle_sum_deg": [ - 2009 + 2014 ], "damage": [ 38 @@ -54524,7 +54630,7 @@ export default { 38 ], "flash_duration_sum": [ - 2009 + 2014 ], "flashes_thrown": [ 38 @@ -54620,7 +54726,7 @@ export default { 38 ], "steam_id": [ - 169 + 174 ], "team_damage": [ 38 @@ -54635,7 +54741,7 @@ export default { 38 ], "time_to_damage_sum_s": [ - 2009 + 2014 ], "total_engagement_frames": [ 38 @@ -54677,240 +54783,240 @@ export default { 38 ], "__typename": [ - 70 + 75 ] }, "player_match_map_stats_sum_order_by": { "assists": [ - 2011 + 2016 ], "assists_ct": [ - 2011 + 2016 ], "assists_t": [ - 2011 + 2016 ], "counter_strafe_eligible_shots": [ - 2011 + 2016 ], "counter_strafed_shots": [ - 2011 + 2016 ], "crosshair_angle_count": [ - 2011 + 2016 ], "crosshair_angle_sum_deg": [ - 2011 + 2016 ], "damage": [ - 2011 + 2016 ], "damage_ct": [ - 2011 + 2016 ], "damage_t": [ - 2011 + 2016 ], "deaths": [ - 2011 + 2016 ], "deaths_ct": [ - 2011 + 2016 ], "deaths_t": [ - 2011 + 2016 ], "decoy_throws": [ - 2011 + 2016 ], "enemies_flashed": [ - 2011 + 2016 ], "first_bullet_hits": [ - 2011 + 2016 ], "first_bullet_shots": [ - 2011 + 2016 ], "five_kill_rounds": [ - 2011 + 2016 ], "flash_assists": [ - 2011 + 2016 ], "flash_duration_count": [ - 2011 + 2016 ], "flash_duration_sum": [ - 2011 + 2016 ], "flashes_thrown": [ - 2011 + 2016 ], "four_kill_rounds": [ - 2011 + 2016 ], "he_damage": [ - 2011 + 2016 ], "he_team_damage": [ - 2011 + 2016 ], "he_throws": [ - 2011 + 2016 ], "headshot_hits": [ - 2011 + 2016 ], "hits": [ - 2011 + 2016 ], "hits_at_spotted": [ - 2011 + 2016 ], "hs_kills": [ - 2011 + 2016 ], "hs_kills_ct": [ - 2011 + 2016 ], "hs_kills_t": [ - 2011 + 2016 ], "kast_rounds": [ - 2011 + 2016 ], "kast_total_rounds": [ - 2011 + 2016 ], "kills": [ - 2011 + 2016 ], "kills_ct": [ - 2011 + 2016 ], "kills_t": [ - 2011 + 2016 ], "knife_kills": [ - 2011 + 2016 ], "molotov_damage": [ - 2011 + 2016 ], "molotov_throws": [ - 2011 + 2016 ], "non_awp_hits": [ - 2011 + 2016 ], "on_target_frames": [ - 2011 + 2016 ], "rounds_ct": [ - 2011 + 2016 ], "rounds_played": [ - 2011 + 2016 ], "rounds_t": [ - 2011 + 2016 ], "shots_at_spotted": [ - 2011 + 2016 ], "shots_fired": [ - 2011 + 2016 ], "smoke_throws": [ - 2011 + 2016 ], "spotted_count": [ - 2011 + 2016 ], "spotted_with_damage_count": [ - 2011 + 2016 ], "spray_hits": [ - 2011 + 2016 ], "spray_shots": [ - 2011 + 2016 ], "steam_id": [ - 2011 + 2016 ], "team_damage": [ - 2011 + 2016 ], "team_flashed": [ - 2011 + 2016 ], "three_kill_rounds": [ - 2011 + 2016 ], "time_to_damage_count": [ - 2011 + 2016 ], "time_to_damage_sum_s": [ - 2011 + 2016 ], "total_engagement_frames": [ - 2011 + 2016 ], "trade_kill_attempts": [ - 2011 + 2016 ], "trade_kill_opportunities": [ - 2011 + 2016 ], "trade_kill_successes": [ - 2011 + 2016 ], "traded_death_attempts": [ - 2011 + 2016 ], "traded_death_opportunities": [ - 2011 + 2016 ], "traded_death_successes": [ - 2011 + 2016 ], "two_kill_rounds": [ - 2011 + 2016 ], "unused_utility_value": [ - 2011 + 2016 ], "util_on_death_count": [ - 2011 + 2016 ], "util_on_death_sum": [ - 2011 + 2016 ], "wasted_magazine_shots": [ - 2011 + 2016 ], "zeus_kills": [ - 2011 + 2016 ], "__typename": [ - 70 + 75 ] }, "player_match_map_stats_update_column": {}, "player_match_map_stats_updates": { "_inc": [ - 2486 + 2491 ], "_set": [ - 2497 + 2502 ], "where": [ - 2484 + 2489 ], "__typename": [ - 70 + 75 ] }, "player_match_map_stats_var_pop_fields": { @@ -55128,225 +55234,225 @@ export default { 29 ], "__typename": [ - 70 + 75 ] }, "player_match_map_stats_var_pop_order_by": { "assists": [ - 2011 + 2016 ], "assists_ct": [ - 2011 + 2016 ], "assists_t": [ - 2011 + 2016 ], "counter_strafe_eligible_shots": [ - 2011 + 2016 ], "counter_strafed_shots": [ - 2011 + 2016 ], "crosshair_angle_count": [ - 2011 + 2016 ], "crosshair_angle_sum_deg": [ - 2011 + 2016 ], "damage": [ - 2011 + 2016 ], "damage_ct": [ - 2011 + 2016 ], "damage_t": [ - 2011 + 2016 ], "deaths": [ - 2011 + 2016 ], "deaths_ct": [ - 2011 + 2016 ], "deaths_t": [ - 2011 + 2016 ], "decoy_throws": [ - 2011 + 2016 ], "enemies_flashed": [ - 2011 + 2016 ], "first_bullet_hits": [ - 2011 + 2016 ], "first_bullet_shots": [ - 2011 + 2016 ], "five_kill_rounds": [ - 2011 + 2016 ], "flash_assists": [ - 2011 + 2016 ], "flash_duration_count": [ - 2011 + 2016 ], "flash_duration_sum": [ - 2011 + 2016 ], "flashes_thrown": [ - 2011 + 2016 ], "four_kill_rounds": [ - 2011 + 2016 ], "he_damage": [ - 2011 + 2016 ], "he_team_damage": [ - 2011 + 2016 ], "he_throws": [ - 2011 + 2016 ], "headshot_hits": [ - 2011 + 2016 ], "hits": [ - 2011 + 2016 ], "hits_at_spotted": [ - 2011 + 2016 ], "hs_kills": [ - 2011 + 2016 ], "hs_kills_ct": [ - 2011 + 2016 ], "hs_kills_t": [ - 2011 + 2016 ], "kast_rounds": [ - 2011 + 2016 ], "kast_total_rounds": [ - 2011 + 2016 ], "kills": [ - 2011 + 2016 ], "kills_ct": [ - 2011 + 2016 ], "kills_t": [ - 2011 + 2016 ], "knife_kills": [ - 2011 + 2016 ], "molotov_damage": [ - 2011 + 2016 ], "molotov_throws": [ - 2011 + 2016 ], "non_awp_hits": [ - 2011 + 2016 ], "on_target_frames": [ - 2011 + 2016 ], "rounds_ct": [ - 2011 + 2016 ], "rounds_played": [ - 2011 + 2016 ], "rounds_t": [ - 2011 + 2016 ], "shots_at_spotted": [ - 2011 + 2016 ], "shots_fired": [ - 2011 + 2016 ], "smoke_throws": [ - 2011 + 2016 ], "spotted_count": [ - 2011 + 2016 ], "spotted_with_damage_count": [ - 2011 + 2016 ], "spray_hits": [ - 2011 + 2016 ], "spray_shots": [ - 2011 + 2016 ], "steam_id": [ - 2011 + 2016 ], "team_damage": [ - 2011 + 2016 ], "team_flashed": [ - 2011 + 2016 ], "three_kill_rounds": [ - 2011 + 2016 ], "time_to_damage_count": [ - 2011 + 2016 ], "time_to_damage_sum_s": [ - 2011 + 2016 ], "total_engagement_frames": [ - 2011 + 2016 ], "trade_kill_attempts": [ - 2011 + 2016 ], "trade_kill_opportunities": [ - 2011 + 2016 ], "trade_kill_successes": [ - 2011 + 2016 ], "traded_death_attempts": [ - 2011 + 2016 ], "traded_death_opportunities": [ - 2011 + 2016 ], "traded_death_successes": [ - 2011 + 2016 ], "two_kill_rounds": [ - 2011 + 2016 ], "unused_utility_value": [ - 2011 + 2016 ], "util_on_death_count": [ - 2011 + 2016 ], "util_on_death_sum": [ - 2011 + 2016 ], "wasted_magazine_shots": [ - 2011 + 2016 ], "zeus_kills": [ - 2011 + 2016 ], "__typename": [ - 70 + 75 ] }, "player_match_map_stats_var_samp_fields": { @@ -55564,225 +55670,225 @@ export default { 29 ], "__typename": [ - 70 + 75 ] }, "player_match_map_stats_var_samp_order_by": { "assists": [ - 2011 + 2016 ], "assists_ct": [ - 2011 + 2016 ], "assists_t": [ - 2011 + 2016 ], "counter_strafe_eligible_shots": [ - 2011 + 2016 ], "counter_strafed_shots": [ - 2011 + 2016 ], "crosshair_angle_count": [ - 2011 + 2016 ], "crosshair_angle_sum_deg": [ - 2011 + 2016 ], "damage": [ - 2011 + 2016 ], "damage_ct": [ - 2011 + 2016 ], "damage_t": [ - 2011 + 2016 ], "deaths": [ - 2011 + 2016 ], "deaths_ct": [ - 2011 + 2016 ], "deaths_t": [ - 2011 + 2016 ], "decoy_throws": [ - 2011 + 2016 ], "enemies_flashed": [ - 2011 + 2016 ], "first_bullet_hits": [ - 2011 + 2016 ], "first_bullet_shots": [ - 2011 + 2016 ], "five_kill_rounds": [ - 2011 + 2016 ], "flash_assists": [ - 2011 + 2016 ], "flash_duration_count": [ - 2011 + 2016 ], "flash_duration_sum": [ - 2011 + 2016 ], "flashes_thrown": [ - 2011 + 2016 ], "four_kill_rounds": [ - 2011 + 2016 ], "he_damage": [ - 2011 + 2016 ], "he_team_damage": [ - 2011 + 2016 ], "he_throws": [ - 2011 + 2016 ], "headshot_hits": [ - 2011 + 2016 ], "hits": [ - 2011 + 2016 ], "hits_at_spotted": [ - 2011 + 2016 ], "hs_kills": [ - 2011 + 2016 ], "hs_kills_ct": [ - 2011 + 2016 ], "hs_kills_t": [ - 2011 + 2016 ], "kast_rounds": [ - 2011 + 2016 ], "kast_total_rounds": [ - 2011 + 2016 ], "kills": [ - 2011 + 2016 ], "kills_ct": [ - 2011 + 2016 ], "kills_t": [ - 2011 + 2016 ], "knife_kills": [ - 2011 + 2016 ], "molotov_damage": [ - 2011 + 2016 ], "molotov_throws": [ - 2011 + 2016 ], "non_awp_hits": [ - 2011 + 2016 ], "on_target_frames": [ - 2011 + 2016 ], "rounds_ct": [ - 2011 + 2016 ], "rounds_played": [ - 2011 + 2016 ], "rounds_t": [ - 2011 + 2016 ], "shots_at_spotted": [ - 2011 + 2016 ], "shots_fired": [ - 2011 + 2016 ], "smoke_throws": [ - 2011 + 2016 ], "spotted_count": [ - 2011 + 2016 ], "spotted_with_damage_count": [ - 2011 + 2016 ], "spray_hits": [ - 2011 + 2016 ], "spray_shots": [ - 2011 + 2016 ], "steam_id": [ - 2011 + 2016 ], "team_damage": [ - 2011 + 2016 ], "team_flashed": [ - 2011 + 2016 ], "three_kill_rounds": [ - 2011 + 2016 ], "time_to_damage_count": [ - 2011 + 2016 ], "time_to_damage_sum_s": [ - 2011 + 2016 ], "total_engagement_frames": [ - 2011 + 2016 ], "trade_kill_attempts": [ - 2011 + 2016 ], "trade_kill_opportunities": [ - 2011 + 2016 ], "trade_kill_successes": [ - 2011 + 2016 ], "traded_death_attempts": [ - 2011 + 2016 ], "traded_death_opportunities": [ - 2011 + 2016 ], "traded_death_successes": [ - 2011 + 2016 ], "two_kill_rounds": [ - 2011 + 2016 ], "unused_utility_value": [ - 2011 + 2016 ], "util_on_death_count": [ - 2011 + 2016 ], "util_on_death_sum": [ - 2011 + 2016 ], "wasted_magazine_shots": [ - 2011 + 2016 ], "zeus_kills": [ - 2011 + 2016 ], "__typename": [ - 70 + 75 ] }, "player_match_map_stats_variance_fields": { @@ -56000,309 +56106,309 @@ export default { 29 ], "__typename": [ - 70 + 75 ] }, "player_match_map_stats_variance_order_by": { "assists": [ - 2011 + 2016 ], "assists_ct": [ - 2011 + 2016 ], "assists_t": [ - 2011 + 2016 ], "counter_strafe_eligible_shots": [ - 2011 + 2016 ], "counter_strafed_shots": [ - 2011 + 2016 ], "crosshair_angle_count": [ - 2011 + 2016 ], "crosshair_angle_sum_deg": [ - 2011 + 2016 ], "damage": [ - 2011 + 2016 ], "damage_ct": [ - 2011 + 2016 ], "damage_t": [ - 2011 + 2016 ], "deaths": [ - 2011 + 2016 ], "deaths_ct": [ - 2011 + 2016 ], "deaths_t": [ - 2011 + 2016 ], "decoy_throws": [ - 2011 + 2016 ], "enemies_flashed": [ - 2011 + 2016 ], "first_bullet_hits": [ - 2011 + 2016 ], "first_bullet_shots": [ - 2011 + 2016 ], "five_kill_rounds": [ - 2011 + 2016 ], "flash_assists": [ - 2011 + 2016 ], "flash_duration_count": [ - 2011 + 2016 ], "flash_duration_sum": [ - 2011 + 2016 ], "flashes_thrown": [ - 2011 + 2016 ], "four_kill_rounds": [ - 2011 + 2016 ], "he_damage": [ - 2011 + 2016 ], "he_team_damage": [ - 2011 + 2016 ], "he_throws": [ - 2011 + 2016 ], "headshot_hits": [ - 2011 + 2016 ], "hits": [ - 2011 + 2016 ], "hits_at_spotted": [ - 2011 + 2016 ], "hs_kills": [ - 2011 + 2016 ], "hs_kills_ct": [ - 2011 + 2016 ], "hs_kills_t": [ - 2011 + 2016 ], "kast_rounds": [ - 2011 + 2016 ], "kast_total_rounds": [ - 2011 + 2016 ], "kills": [ - 2011 + 2016 ], "kills_ct": [ - 2011 + 2016 ], "kills_t": [ - 2011 + 2016 ], "knife_kills": [ - 2011 + 2016 ], "molotov_damage": [ - 2011 + 2016 ], "molotov_throws": [ - 2011 + 2016 ], "non_awp_hits": [ - 2011 + 2016 ], "on_target_frames": [ - 2011 + 2016 ], "rounds_ct": [ - 2011 + 2016 ], "rounds_played": [ - 2011 + 2016 ], "rounds_t": [ - 2011 + 2016 ], "shots_at_spotted": [ - 2011 + 2016 ], "shots_fired": [ - 2011 + 2016 ], "smoke_throws": [ - 2011 + 2016 ], "spotted_count": [ - 2011 + 2016 ], "spotted_with_damage_count": [ - 2011 + 2016 ], "spray_hits": [ - 2011 + 2016 ], "spray_shots": [ - 2011 + 2016 ], "steam_id": [ - 2011 + 2016 ], "team_damage": [ - 2011 + 2016 ], "team_flashed": [ - 2011 + 2016 ], "three_kill_rounds": [ - 2011 + 2016 ], "time_to_damage_count": [ - 2011 + 2016 ], "time_to_damage_sum_s": [ - 2011 + 2016 ], "total_engagement_frames": [ - 2011 + 2016 ], "trade_kill_attempts": [ - 2011 + 2016 ], "trade_kill_opportunities": [ - 2011 + 2016 ], "trade_kill_successes": [ - 2011 + 2016 ], "traded_death_attempts": [ - 2011 + 2016 ], "traded_death_opportunities": [ - 2011 + 2016 ], "traded_death_successes": [ - 2011 + 2016 ], "two_kill_rounds": [ - 2011 + 2016 ], "unused_utility_value": [ - 2011 + 2016 ], "util_on_death_count": [ - 2011 + 2016 ], "util_on_death_sum": [ - 2011 + 2016 ], "wasted_magazine_shots": [ - 2011 + 2016 ], "zeus_kills": [ - 2011 + 2016 ], "__typename": [ - 70 + 75 ] }, "player_match_performance_v": { "accuracy": [ - 2009 + 2014 ], "accuracy_spotted": [ - 2009 + 2014 ], "aim_rating": [ - 1084 + 1089 ], "counter_strafe_pct": [ - 2009 + 2014 ], "enemy_blind_pr": [ - 2009 + 2014 ], "flash_assists_pr": [ - 2009 + 2014 ], "hs_pct": [ - 2009 + 2014 ], "kast_pct": [ - 2009 + 2014 ], "match_id": [ - 3818 + 3864 ], "overall_rating": [ - 1084 + 1089 ], "played_at": [ - 3421 + 3467 ], "positioning_rating": [ - 1084 + 1089 ], "rounds": [ 38 ], "source": [ - 70 + 75 ], "steam_id": [ - 169 + 174 ], "survival_pct": [ - 2009 + 2014 ], "traded_death_pct": [ - 2009 + 2014 ], "util_efficiency": [ - 2009 + 2014 ], "utility_rating": [ - 1084 + 1089 ], "__typename": [ - 70 + 75 ] }, "player_match_performance_v_aggregate": { "aggregate": [ - 2518 + 2523 ], "nodes": [ - 2516 + 2521 ], "__typename": [ - 70 + 75 ] }, "player_match_performance_v_aggregate_fields": { "avg": [ - 2519 + 2524 ], "count": [ 38, { "columns": [ - 2524, + 2529, "[player_match_performance_v_select_column!]" ], "distinct": [ @@ -56311,34 +56417,34 @@ export default { } ], "max": [ - 2521 + 2526 ], "min": [ - 2522 + 2527 ], "stddev": [ - 2525 + 2530 ], "stddev_pop": [ - 2526 + 2531 ], "stddev_samp": [ - 2527 + 2532 ], "sum": [ - 2530 + 2535 ], "var_pop": [ - 2531 + 2536 ], "var_samp": [ - 2532 + 2537 ], "variance": [ - 2533 + 2538 ], "__typename": [ - 70 + 75 ] }, "player_match_performance_v_avg_fields": { @@ -56391,264 +56497,264 @@ export default { 29 ], "__typename": [ - 70 + 75 ] }, "player_match_performance_v_bool_exp": { "_and": [ - 2520 + 2525 ], "_not": [ - 2520 + 2525 ], "_or": [ - 2520 + 2525 ], "accuracy": [ - 2010 + 2015 ], "accuracy_spotted": [ - 2010 + 2015 ], "aim_rating": [ - 1085 + 1090 ], "counter_strafe_pct": [ - 2010 + 2015 ], "enemy_blind_pr": [ - 2010 + 2015 ], "flash_assists_pr": [ - 2010 + 2015 ], "hs_pct": [ - 2010 + 2015 ], "kast_pct": [ - 2010 + 2015 ], "match_id": [ - 3820 + 3866 ], "overall_rating": [ - 1085 + 1090 ], "played_at": [ - 3422 + 3468 ], "positioning_rating": [ - 1085 + 1090 ], "rounds": [ 39 ], "source": [ - 72 + 77 ], "steam_id": [ - 171 + 176 ], "survival_pct": [ - 2010 + 2015 ], "traded_death_pct": [ - 2010 + 2015 ], "util_efficiency": [ - 2010 + 2015 ], "utility_rating": [ - 1085 + 1090 ], "__typename": [ - 70 + 75 ] }, "player_match_performance_v_max_fields": { "accuracy": [ - 2009 + 2014 ], "accuracy_spotted": [ - 2009 + 2014 ], "aim_rating": [ - 1084 + 1089 ], "counter_strafe_pct": [ - 2009 + 2014 ], "enemy_blind_pr": [ - 2009 + 2014 ], "flash_assists_pr": [ - 2009 + 2014 ], "hs_pct": [ - 2009 + 2014 ], "kast_pct": [ - 2009 + 2014 ], "match_id": [ - 3818 + 3864 ], "overall_rating": [ - 1084 + 1089 ], "played_at": [ - 3421 + 3467 ], "positioning_rating": [ - 1084 + 1089 ], "rounds": [ 38 ], "source": [ - 70 + 75 ], "steam_id": [ - 169 + 174 ], "survival_pct": [ - 2009 + 2014 ], "traded_death_pct": [ - 2009 + 2014 ], "util_efficiency": [ - 2009 + 2014 ], "utility_rating": [ - 1084 + 1089 ], "__typename": [ - 70 + 75 ] }, "player_match_performance_v_min_fields": { "accuracy": [ - 2009 + 2014 ], "accuracy_spotted": [ - 2009 + 2014 ], "aim_rating": [ - 1084 + 1089 ], "counter_strafe_pct": [ - 2009 + 2014 ], "enemy_blind_pr": [ - 2009 + 2014 ], "flash_assists_pr": [ - 2009 + 2014 ], "hs_pct": [ - 2009 + 2014 ], "kast_pct": [ - 2009 + 2014 ], "match_id": [ - 3818 + 3864 ], "overall_rating": [ - 1084 + 1089 ], "played_at": [ - 3421 + 3467 ], "positioning_rating": [ - 1084 + 1089 ], "rounds": [ 38 ], "source": [ - 70 + 75 ], "steam_id": [ - 169 + 174 ], "survival_pct": [ - 2009 + 2014 ], "traded_death_pct": [ - 2009 + 2014 ], "util_efficiency": [ - 2009 + 2014 ], "utility_rating": [ - 1084 + 1089 ], "__typename": [ - 70 + 75 ] }, "player_match_performance_v_order_by": { "accuracy": [ - 2011 + 2016 ], "accuracy_spotted": [ - 2011 + 2016 ], "aim_rating": [ - 2011 + 2016 ], "counter_strafe_pct": [ - 2011 + 2016 ], "enemy_blind_pr": [ - 2011 + 2016 ], "flash_assists_pr": [ - 2011 + 2016 ], "hs_pct": [ - 2011 + 2016 ], "kast_pct": [ - 2011 + 2016 ], "match_id": [ - 2011 + 2016 ], "overall_rating": [ - 2011 + 2016 ], "played_at": [ - 2011 + 2016 ], "positioning_rating": [ - 2011 + 2016 ], "rounds": [ - 2011 + 2016 ], "source": [ - 2011 + 2016 ], "steam_id": [ - 2011 + 2016 ], "survival_pct": [ - 2011 + 2016 ], "traded_death_pct": [ - 2011 + 2016 ], "util_efficiency": [ - 2011 + 2016 ], "utility_rating": [ - 2011 + 2016 ], "__typename": [ - 70 + 75 ] }, "player_match_performance_v_select_column": {}, @@ -56702,7 +56808,7 @@ export default { 29 ], "__typename": [ - 70 + 75 ] }, "player_match_performance_v_stddev_pop_fields": { @@ -56755,7 +56861,7 @@ export default { 29 ], "__typename": [ - 70 + 75 ] }, "player_match_performance_v_stddev_samp_fields": { @@ -56808,133 +56914,133 @@ export default { 29 ], "__typename": [ - 70 + 75 ] }, "player_match_performance_v_stream_cursor_input": { "initial_value": [ - 2529 + 2534 ], "ordering": [ - 224 + 229 ], "__typename": [ - 70 + 75 ] }, "player_match_performance_v_stream_cursor_value_input": { "accuracy": [ - 2009 + 2014 ], "accuracy_spotted": [ - 2009 + 2014 ], "aim_rating": [ - 1084 + 1089 ], "counter_strafe_pct": [ - 2009 + 2014 ], "enemy_blind_pr": [ - 2009 + 2014 ], "flash_assists_pr": [ - 2009 + 2014 ], "hs_pct": [ - 2009 + 2014 ], "kast_pct": [ - 2009 + 2014 ], "match_id": [ - 3818 + 3864 ], "overall_rating": [ - 1084 + 1089 ], "played_at": [ - 3421 + 3467 ], "positioning_rating": [ - 1084 + 1089 ], "rounds": [ 38 ], "source": [ - 70 + 75 ], "steam_id": [ - 169 + 174 ], "survival_pct": [ - 2009 + 2014 ], "traded_death_pct": [ - 2009 + 2014 ], "util_efficiency": [ - 2009 + 2014 ], "utility_rating": [ - 1084 + 1089 ], "__typename": [ - 70 + 75 ] }, "player_match_performance_v_sum_fields": { "accuracy": [ - 2009 + 2014 ], "accuracy_spotted": [ - 2009 + 2014 ], "aim_rating": [ - 1084 + 1089 ], "counter_strafe_pct": [ - 2009 + 2014 ], "enemy_blind_pr": [ - 2009 + 2014 ], "flash_assists_pr": [ - 2009 + 2014 ], "hs_pct": [ - 2009 + 2014 ], "kast_pct": [ - 2009 + 2014 ], "overall_rating": [ - 1084 + 1089 ], "positioning_rating": [ - 1084 + 1089 ], "rounds": [ 38 ], "steam_id": [ - 169 + 174 ], "survival_pct": [ - 2009 + 2014 ], "traded_death_pct": [ - 2009 + 2014 ], "util_efficiency": [ - 2009 + 2014 ], "utility_rating": [ - 1084 + 1089 ], "__typename": [ - 70 + 75 ] }, "player_match_performance_v_var_pop_fields": { @@ -56987,7 +57093,7 @@ export default { 29 ], "__typename": [ - 70 + 75 ] }, "player_match_performance_v_var_samp_fields": { @@ -57040,7 +57146,7 @@ export default { 29 ], "__typename": [ - 70 + 75 ] }, "player_match_performance_v_variance_fields": { @@ -57093,7 +57199,7 @@ export default { 29 ], "__typename": [ - 70 + 75 ] }, "player_match_stats_v": { @@ -57107,13 +57213,13 @@ export default { 38 ], "avg_crosshair_angle_deg": [ - 2009 + 2014 ], "avg_flash_duration": [ - 2009 + 2014 ], "avg_time_to_damage_s": [ - 2009 + 2014 ], "counter_strafe_eligible_shots": [ 38 @@ -57203,7 +57309,7 @@ export default { 38 ], "match_id": [ - 3818 + 3864 ], "molotov_damage": [ 38 @@ -57248,7 +57354,7 @@ export default { 38 ], "steam_id": [ - 169 + 174 ], "team_damage": [ 38 @@ -57287,7 +57393,7 @@ export default { 38 ], "utility_on_death": [ - 2009 + 2014 ], "wasted_magazine_shots": [ 38 @@ -57296,54 +57402,54 @@ export default { 38 ], "__typename": [ - 70 + 75 ] }, "player_match_stats_v_aggregate": { "aggregate": [ - 2538 + 2543 ], "nodes": [ - 2534 + 2539 ], "__typename": [ - 70 + 75 ] }, "player_match_stats_v_aggregate_bool_exp": { "count": [ - 2537 + 2542 ], "__typename": [ - 70 + 75 ] }, "player_match_stats_v_aggregate_bool_exp_count": { "arguments": [ - 2550 + 2555 ], "distinct": [ 3 ], "filter": [ - 2543 + 2548 ], "predicate": [ 39 ], "__typename": [ - 70 + 75 ] }, "player_match_stats_v_aggregate_fields": { "avg": [ - 2541 + 2546 ], "count": [ 38, { "columns": [ - 2550, + 2555, "[player_match_stats_v_select_column!]" ], "distinct": [ @@ -57352,80 +57458,80 @@ export default { } ], "max": [ - 2545 + 2550 ], "min": [ - 2547 + 2552 ], "stddev": [ - 2551 + 2556 ], "stddev_pop": [ - 2553 + 2558 ], "stddev_samp": [ - 2555 + 2560 ], "sum": [ - 2559 + 2564 ], "var_pop": [ - 2561 + 2566 ], "var_samp": [ - 2563 + 2568 ], "variance": [ - 2565 + 2570 ], "__typename": [ - 70 + 75 ] }, "player_match_stats_v_aggregate_order_by": { "avg": [ - 2542 + 2547 ], "count": [ - 2011 + 2016 ], "max": [ - 2546 + 2551 ], "min": [ - 2548 + 2553 ], "stddev": [ - 2552 + 2557 ], "stddev_pop": [ - 2554 + 2559 ], "stddev_samp": [ - 2556 + 2561 ], "sum": [ - 2560 + 2565 ], "var_pop": [ - 2562 + 2567 ], "var_samp": [ - 2564 + 2569 ], "variance": [ - 2566 + 2571 ], "__typename": [ - 70 + 75 ] }, "player_match_stats_v_arr_rel_insert_input": { "data": [ - 2544 + 2549 ], "__typename": [ - 70 + 75 ] }, "player_match_stats_v_avg_fields": { @@ -57625,218 +57731,218 @@ export default { 29 ], "__typename": [ - 70 + 75 ] }, "player_match_stats_v_avg_order_by": { "assists": [ - 2011 + 2016 ], "assists_ct": [ - 2011 + 2016 ], "assists_t": [ - 2011 + 2016 ], "avg_crosshair_angle_deg": [ - 2011 + 2016 ], "avg_flash_duration": [ - 2011 + 2016 ], "avg_time_to_damage_s": [ - 2011 + 2016 ], "counter_strafe_eligible_shots": [ - 2011 + 2016 ], "counter_strafed_shots": [ - 2011 + 2016 ], "damage": [ - 2011 + 2016 ], "damage_ct": [ - 2011 + 2016 ], "damage_t": [ - 2011 + 2016 ], "deaths": [ - 2011 + 2016 ], "deaths_ct": [ - 2011 + 2016 ], "deaths_t": [ - 2011 + 2016 ], "decoy_throws": [ - 2011 + 2016 ], "enemies_flashed": [ - 2011 + 2016 ], "first_bullet_hits": [ - 2011 + 2016 ], "first_bullet_shots": [ - 2011 + 2016 ], "five_kill_rounds": [ - 2011 + 2016 ], "flash_assists": [ - 2011 + 2016 ], "flashes_thrown": [ - 2011 + 2016 ], "four_kill_rounds": [ - 2011 + 2016 ], "he_damage": [ - 2011 + 2016 ], "he_team_damage": [ - 2011 + 2016 ], "he_throws": [ - 2011 + 2016 ], "headshot_hits": [ - 2011 + 2016 ], "hits": [ - 2011 + 2016 ], "hits_at_spotted": [ - 2011 + 2016 ], "hs_kills": [ - 2011 + 2016 ], "hs_kills_ct": [ - 2011 + 2016 ], "hs_kills_t": [ - 2011 + 2016 ], "kills": [ - 2011 + 2016 ], "kills_ct": [ - 2011 + 2016 ], "kills_t": [ - 2011 + 2016 ], "knife_kills": [ - 2011 + 2016 ], "molotov_damage": [ - 2011 + 2016 ], "molotov_throws": [ - 2011 + 2016 ], "non_awp_hits": [ - 2011 + 2016 ], "on_target_frames": [ - 2011 + 2016 ], "rounds_ct": [ - 2011 + 2016 ], "rounds_played": [ - 2011 + 2016 ], "rounds_t": [ - 2011 + 2016 ], "shots_at_spotted": [ - 2011 + 2016 ], "shots_fired": [ - 2011 + 2016 ], "smoke_throws": [ - 2011 + 2016 ], "spotted_count": [ - 2011 + 2016 ], "spotted_with_damage_count": [ - 2011 + 2016 ], "spray_hits": [ - 2011 + 2016 ], "spray_shots": [ - 2011 + 2016 ], "steam_id": [ - 2011 + 2016 ], "team_damage": [ - 2011 + 2016 ], "team_flashed": [ - 2011 + 2016 ], "three_kill_rounds": [ - 2011 + 2016 ], "total_engagement_frames": [ - 2011 + 2016 ], "trade_kill_attempts": [ - 2011 + 2016 ], "trade_kill_opportunities": [ - 2011 + 2016 ], "trade_kill_successes": [ - 2011 + 2016 ], "traded_death_attempts": [ - 2011 + 2016 ], "traded_death_opportunities": [ - 2011 + 2016 ], "traded_death_successes": [ - 2011 + 2016 ], "two_kill_rounds": [ - 2011 + 2016 ], "unused_utility_value": [ - 2011 + 2016 ], "utility_on_death": [ - 2011 + 2016 ], "wasted_magazine_shots": [ - 2011 + 2016 ], "zeus_kills": [ - 2011 + 2016 ], "__typename": [ - 70 + 75 ] }, "player_match_stats_v_bool_exp": { "_and": [ - 2543 + 2548 ], "_not": [ - 2543 + 2548 ], "_or": [ - 2543 + 2548 ], "assists": [ 39 @@ -57848,13 +57954,13 @@ export default { 39 ], "avg_crosshair_angle_deg": [ - 2010 + 2015 ], "avg_flash_duration": [ - 2010 + 2015 ], "avg_time_to_damage_s": [ - 2010 + 2015 ], "counter_strafe_eligible_shots": [ 39 @@ -57944,7 +58050,7 @@ export default { 39 ], "match_id": [ - 3820 + 3866 ], "molotov_damage": [ 39 @@ -57989,7 +58095,7 @@ export default { 39 ], "steam_id": [ - 171 + 176 ], "team_damage": [ 39 @@ -58028,7 +58134,7 @@ export default { 39 ], "utility_on_death": [ - 2010 + 2015 ], "wasted_magazine_shots": [ 39 @@ -58037,7 +58143,7 @@ export default { 39 ], "__typename": [ - 70 + 75 ] }, "player_match_stats_v_insert_input": { @@ -58051,13 +58157,13 @@ export default { 38 ], "avg_crosshair_angle_deg": [ - 2009 + 2014 ], "avg_flash_duration": [ - 2009 + 2014 ], "avg_time_to_damage_s": [ - 2009 + 2014 ], "counter_strafe_eligible_shots": [ 38 @@ -58147,7 +58253,7 @@ export default { 38 ], "match_id": [ - 3818 + 3864 ], "molotov_damage": [ 38 @@ -58192,7 +58298,7 @@ export default { 38 ], "steam_id": [ - 169 + 174 ], "team_damage": [ 38 @@ -58231,7 +58337,7 @@ export default { 38 ], "utility_on_death": [ - 2009 + 2014 ], "wasted_magazine_shots": [ 38 @@ -58240,7 +58346,7 @@ export default { 38 ], "__typename": [ - 70 + 75 ] }, "player_match_stats_v_max_fields": { @@ -58254,13 +58360,13 @@ export default { 38 ], "avg_crosshair_angle_deg": [ - 2009 + 2014 ], "avg_flash_duration": [ - 2009 + 2014 ], "avg_time_to_damage_s": [ - 2009 + 2014 ], "counter_strafe_eligible_shots": [ 38 @@ -58350,7 +58456,7 @@ export default { 38 ], "match_id": [ - 3818 + 3864 ], "molotov_damage": [ 38 @@ -58395,7 +58501,7 @@ export default { 38 ], "steam_id": [ - 169 + 174 ], "team_damage": [ 38 @@ -58434,7 +58540,7 @@ export default { 38 ], "utility_on_death": [ - 2009 + 2014 ], "wasted_magazine_shots": [ 38 @@ -58443,210 +58549,210 @@ export default { 38 ], "__typename": [ - 70 + 75 ] }, "player_match_stats_v_max_order_by": { "assists": [ - 2011 + 2016 ], "assists_ct": [ - 2011 + 2016 ], "assists_t": [ - 2011 + 2016 ], "avg_crosshair_angle_deg": [ - 2011 + 2016 ], "avg_flash_duration": [ - 2011 + 2016 ], "avg_time_to_damage_s": [ - 2011 + 2016 ], "counter_strafe_eligible_shots": [ - 2011 + 2016 ], "counter_strafed_shots": [ - 2011 + 2016 ], "damage": [ - 2011 + 2016 ], "damage_ct": [ - 2011 + 2016 ], "damage_t": [ - 2011 + 2016 ], "deaths": [ - 2011 + 2016 ], "deaths_ct": [ - 2011 + 2016 ], "deaths_t": [ - 2011 + 2016 ], "decoy_throws": [ - 2011 + 2016 ], "enemies_flashed": [ - 2011 + 2016 ], "first_bullet_hits": [ - 2011 + 2016 ], "first_bullet_shots": [ - 2011 + 2016 ], "five_kill_rounds": [ - 2011 + 2016 ], "flash_assists": [ - 2011 + 2016 ], "flashes_thrown": [ - 2011 + 2016 ], "four_kill_rounds": [ - 2011 + 2016 ], "he_damage": [ - 2011 + 2016 ], "he_team_damage": [ - 2011 + 2016 ], "he_throws": [ - 2011 + 2016 ], "headshot_hits": [ - 2011 + 2016 ], "hits": [ - 2011 + 2016 ], "hits_at_spotted": [ - 2011 + 2016 ], "hs_kills": [ - 2011 + 2016 ], "hs_kills_ct": [ - 2011 + 2016 ], "hs_kills_t": [ - 2011 + 2016 ], "kills": [ - 2011 + 2016 ], "kills_ct": [ - 2011 + 2016 ], "kills_t": [ - 2011 + 2016 ], "knife_kills": [ - 2011 + 2016 ], "match_id": [ - 2011 + 2016 ], "molotov_damage": [ - 2011 + 2016 ], "molotov_throws": [ - 2011 + 2016 ], "non_awp_hits": [ - 2011 + 2016 ], "on_target_frames": [ - 2011 + 2016 ], "rounds_ct": [ - 2011 + 2016 ], "rounds_played": [ - 2011 + 2016 ], "rounds_t": [ - 2011 + 2016 ], "shots_at_spotted": [ - 2011 + 2016 ], "shots_fired": [ - 2011 + 2016 ], "smoke_throws": [ - 2011 + 2016 ], "spotted_count": [ - 2011 + 2016 ], "spotted_with_damage_count": [ - 2011 + 2016 ], "spray_hits": [ - 2011 + 2016 ], "spray_shots": [ - 2011 + 2016 ], "steam_id": [ - 2011 + 2016 ], "team_damage": [ - 2011 + 2016 ], "team_flashed": [ - 2011 + 2016 ], "three_kill_rounds": [ - 2011 + 2016 ], "total_engagement_frames": [ - 2011 + 2016 ], "trade_kill_attempts": [ - 2011 + 2016 ], "trade_kill_opportunities": [ - 2011 + 2016 ], "trade_kill_successes": [ - 2011 + 2016 ], "traded_death_attempts": [ - 2011 + 2016 ], "traded_death_opportunities": [ - 2011 + 2016 ], "traded_death_successes": [ - 2011 + 2016 ], "two_kill_rounds": [ - 2011 + 2016 ], "unused_utility_value": [ - 2011 + 2016 ], "utility_on_death": [ - 2011 + 2016 ], "wasted_magazine_shots": [ - 2011 + 2016 ], "zeus_kills": [ - 2011 + 2016 ], "__typename": [ - 70 + 75 ] }, "player_match_stats_v_min_fields": { @@ -58660,13 +58766,13 @@ export default { 38 ], "avg_crosshair_angle_deg": [ - 2009 + 2014 ], "avg_flash_duration": [ - 2009 + 2014 ], "avg_time_to_damage_s": [ - 2009 + 2014 ], "counter_strafe_eligible_shots": [ 38 @@ -58756,7 +58862,7 @@ export default { 38 ], "match_id": [ - 3818 + 3864 ], "molotov_damage": [ 38 @@ -58801,7 +58907,7 @@ export default { 38 ], "steam_id": [ - 169 + 174 ], "team_damage": [ 38 @@ -58840,7 +58946,7 @@ export default { 38 ], "utility_on_death": [ - 2009 + 2014 ], "wasted_magazine_shots": [ 38 @@ -58849,413 +58955,413 @@ export default { 38 ], "__typename": [ - 70 + 75 ] }, "player_match_stats_v_min_order_by": { "assists": [ - 2011 + 2016 ], "assists_ct": [ - 2011 + 2016 ], "assists_t": [ - 2011 + 2016 ], "avg_crosshair_angle_deg": [ - 2011 + 2016 ], "avg_flash_duration": [ - 2011 + 2016 ], "avg_time_to_damage_s": [ - 2011 + 2016 ], "counter_strafe_eligible_shots": [ - 2011 + 2016 ], "counter_strafed_shots": [ - 2011 + 2016 ], "damage": [ - 2011 + 2016 ], "damage_ct": [ - 2011 + 2016 ], "damage_t": [ - 2011 + 2016 ], "deaths": [ - 2011 + 2016 ], "deaths_ct": [ - 2011 + 2016 ], "deaths_t": [ - 2011 + 2016 ], "decoy_throws": [ - 2011 + 2016 ], "enemies_flashed": [ - 2011 + 2016 ], "first_bullet_hits": [ - 2011 + 2016 ], "first_bullet_shots": [ - 2011 + 2016 ], "five_kill_rounds": [ - 2011 + 2016 ], "flash_assists": [ - 2011 + 2016 ], "flashes_thrown": [ - 2011 + 2016 ], "four_kill_rounds": [ - 2011 + 2016 ], "he_damage": [ - 2011 + 2016 ], "he_team_damage": [ - 2011 + 2016 ], "he_throws": [ - 2011 + 2016 ], "headshot_hits": [ - 2011 + 2016 ], "hits": [ - 2011 + 2016 ], "hits_at_spotted": [ - 2011 + 2016 ], "hs_kills": [ - 2011 + 2016 ], "hs_kills_ct": [ - 2011 + 2016 ], "hs_kills_t": [ - 2011 + 2016 ], "kills": [ - 2011 + 2016 ], "kills_ct": [ - 2011 + 2016 ], "kills_t": [ - 2011 + 2016 ], "knife_kills": [ - 2011 + 2016 ], "match_id": [ - 2011 + 2016 ], "molotov_damage": [ - 2011 + 2016 ], "molotov_throws": [ - 2011 + 2016 ], "non_awp_hits": [ - 2011 + 2016 ], "on_target_frames": [ - 2011 + 2016 ], "rounds_ct": [ - 2011 + 2016 ], "rounds_played": [ - 2011 + 2016 ], "rounds_t": [ - 2011 + 2016 ], "shots_at_spotted": [ - 2011 + 2016 ], "shots_fired": [ - 2011 + 2016 ], "smoke_throws": [ - 2011 + 2016 ], "spotted_count": [ - 2011 + 2016 ], "spotted_with_damage_count": [ - 2011 + 2016 ], "spray_hits": [ - 2011 + 2016 ], "spray_shots": [ - 2011 + 2016 ], "steam_id": [ - 2011 + 2016 ], "team_damage": [ - 2011 + 2016 ], "team_flashed": [ - 2011 + 2016 ], "three_kill_rounds": [ - 2011 + 2016 ], "total_engagement_frames": [ - 2011 + 2016 ], "trade_kill_attempts": [ - 2011 + 2016 ], "trade_kill_opportunities": [ - 2011 + 2016 ], "trade_kill_successes": [ - 2011 + 2016 ], "traded_death_attempts": [ - 2011 + 2016 ], "traded_death_opportunities": [ - 2011 + 2016 ], "traded_death_successes": [ - 2011 + 2016 ], "two_kill_rounds": [ - 2011 + 2016 ], "unused_utility_value": [ - 2011 + 2016 ], "utility_on_death": [ - 2011 + 2016 ], "wasted_magazine_shots": [ - 2011 + 2016 ], "zeus_kills": [ - 2011 + 2016 ], "__typename": [ - 70 + 75 ] }, "player_match_stats_v_order_by": { "assists": [ - 2011 + 2016 ], "assists_ct": [ - 2011 + 2016 ], "assists_t": [ - 2011 + 2016 ], "avg_crosshair_angle_deg": [ - 2011 + 2016 ], "avg_flash_duration": [ - 2011 + 2016 ], "avg_time_to_damage_s": [ - 2011 + 2016 ], "counter_strafe_eligible_shots": [ - 2011 + 2016 ], "counter_strafed_shots": [ - 2011 + 2016 ], "damage": [ - 2011 + 2016 ], "damage_ct": [ - 2011 + 2016 ], "damage_t": [ - 2011 + 2016 ], "deaths": [ - 2011 + 2016 ], "deaths_ct": [ - 2011 + 2016 ], "deaths_t": [ - 2011 + 2016 ], "decoy_throws": [ - 2011 + 2016 ], "enemies_flashed": [ - 2011 + 2016 ], "first_bullet_hits": [ - 2011 + 2016 ], "first_bullet_shots": [ - 2011 + 2016 ], "five_kill_rounds": [ - 2011 + 2016 ], "flash_assists": [ - 2011 + 2016 ], "flashes_thrown": [ - 2011 + 2016 ], "four_kill_rounds": [ - 2011 + 2016 ], "he_damage": [ - 2011 + 2016 ], "he_team_damage": [ - 2011 + 2016 ], "he_throws": [ - 2011 + 2016 ], "headshot_hits": [ - 2011 + 2016 ], "hits": [ - 2011 + 2016 ], "hits_at_spotted": [ - 2011 + 2016 ], "hs_kills": [ - 2011 + 2016 ], "hs_kills_ct": [ - 2011 + 2016 ], "hs_kills_t": [ - 2011 + 2016 ], "kills": [ - 2011 + 2016 ], "kills_ct": [ - 2011 + 2016 ], "kills_t": [ - 2011 + 2016 ], "knife_kills": [ - 2011 + 2016 ], "match_id": [ - 2011 + 2016 ], "molotov_damage": [ - 2011 + 2016 ], "molotov_throws": [ - 2011 + 2016 ], "non_awp_hits": [ - 2011 + 2016 ], "on_target_frames": [ - 2011 + 2016 ], "rounds_ct": [ - 2011 + 2016 ], "rounds_played": [ - 2011 + 2016 ], "rounds_t": [ - 2011 + 2016 ], "shots_at_spotted": [ - 2011 + 2016 ], "shots_fired": [ - 2011 + 2016 ], "smoke_throws": [ - 2011 + 2016 ], "spotted_count": [ - 2011 + 2016 ], "spotted_with_damage_count": [ - 2011 + 2016 ], "spray_hits": [ - 2011 + 2016 ], "spray_shots": [ - 2011 + 2016 ], "steam_id": [ - 2011 + 2016 ], "team_damage": [ - 2011 + 2016 ], "team_flashed": [ - 2011 + 2016 ], "three_kill_rounds": [ - 2011 + 2016 ], "total_engagement_frames": [ - 2011 + 2016 ], "trade_kill_attempts": [ - 2011 + 2016 ], "trade_kill_opportunities": [ - 2011 + 2016 ], "trade_kill_successes": [ - 2011 + 2016 ], "traded_death_attempts": [ - 2011 + 2016 ], "traded_death_opportunities": [ - 2011 + 2016 ], "traded_death_successes": [ - 2011 + 2016 ], "two_kill_rounds": [ - 2011 + 2016 ], "unused_utility_value": [ - 2011 + 2016 ], "utility_on_death": [ - 2011 + 2016 ], "wasted_magazine_shots": [ - 2011 + 2016 ], "zeus_kills": [ - 2011 + 2016 ], "__typename": [ - 70 + 75 ] }, "player_match_stats_v_select_column": {}, @@ -59456,207 +59562,207 @@ export default { 29 ], "__typename": [ - 70 + 75 ] }, "player_match_stats_v_stddev_order_by": { "assists": [ - 2011 + 2016 ], "assists_ct": [ - 2011 + 2016 ], "assists_t": [ - 2011 + 2016 ], "avg_crosshair_angle_deg": [ - 2011 + 2016 ], "avg_flash_duration": [ - 2011 + 2016 ], "avg_time_to_damage_s": [ - 2011 + 2016 ], "counter_strafe_eligible_shots": [ - 2011 + 2016 ], "counter_strafed_shots": [ - 2011 + 2016 ], "damage": [ - 2011 + 2016 ], "damage_ct": [ - 2011 + 2016 ], "damage_t": [ - 2011 + 2016 ], "deaths": [ - 2011 + 2016 ], "deaths_ct": [ - 2011 + 2016 ], "deaths_t": [ - 2011 + 2016 ], "decoy_throws": [ - 2011 + 2016 ], "enemies_flashed": [ - 2011 + 2016 ], "first_bullet_hits": [ - 2011 + 2016 ], "first_bullet_shots": [ - 2011 + 2016 ], "five_kill_rounds": [ - 2011 + 2016 ], "flash_assists": [ - 2011 + 2016 ], "flashes_thrown": [ - 2011 + 2016 ], "four_kill_rounds": [ - 2011 + 2016 ], "he_damage": [ - 2011 + 2016 ], "he_team_damage": [ - 2011 + 2016 ], "he_throws": [ - 2011 + 2016 ], "headshot_hits": [ - 2011 + 2016 ], "hits": [ - 2011 + 2016 ], "hits_at_spotted": [ - 2011 + 2016 ], "hs_kills": [ - 2011 + 2016 ], "hs_kills_ct": [ - 2011 + 2016 ], "hs_kills_t": [ - 2011 + 2016 ], "kills": [ - 2011 + 2016 ], "kills_ct": [ - 2011 + 2016 ], "kills_t": [ - 2011 + 2016 ], "knife_kills": [ - 2011 + 2016 ], "molotov_damage": [ - 2011 + 2016 ], "molotov_throws": [ - 2011 + 2016 ], "non_awp_hits": [ - 2011 + 2016 ], "on_target_frames": [ - 2011 + 2016 ], "rounds_ct": [ - 2011 + 2016 ], "rounds_played": [ - 2011 + 2016 ], "rounds_t": [ - 2011 + 2016 ], "shots_at_spotted": [ - 2011 + 2016 ], "shots_fired": [ - 2011 + 2016 ], "smoke_throws": [ - 2011 + 2016 ], "spotted_count": [ - 2011 + 2016 ], "spotted_with_damage_count": [ - 2011 + 2016 ], "spray_hits": [ - 2011 + 2016 ], "spray_shots": [ - 2011 + 2016 ], "steam_id": [ - 2011 + 2016 ], "team_damage": [ - 2011 + 2016 ], "team_flashed": [ - 2011 + 2016 ], "three_kill_rounds": [ - 2011 + 2016 ], "total_engagement_frames": [ - 2011 + 2016 ], "trade_kill_attempts": [ - 2011 + 2016 ], "trade_kill_opportunities": [ - 2011 + 2016 ], "trade_kill_successes": [ - 2011 + 2016 ], "traded_death_attempts": [ - 2011 + 2016 ], "traded_death_opportunities": [ - 2011 + 2016 ], "traded_death_successes": [ - 2011 + 2016 ], "two_kill_rounds": [ - 2011 + 2016 ], "unused_utility_value": [ - 2011 + 2016 ], "utility_on_death": [ - 2011 + 2016 ], "wasted_magazine_shots": [ - 2011 + 2016 ], "zeus_kills": [ - 2011 + 2016 ], "__typename": [ - 70 + 75 ] }, "player_match_stats_v_stddev_pop_fields": { @@ -59856,207 +59962,207 @@ export default { 29 ], "__typename": [ - 70 + 75 ] }, "player_match_stats_v_stddev_pop_order_by": { "assists": [ - 2011 + 2016 ], "assists_ct": [ - 2011 + 2016 ], "assists_t": [ - 2011 + 2016 ], "avg_crosshair_angle_deg": [ - 2011 + 2016 ], "avg_flash_duration": [ - 2011 + 2016 ], "avg_time_to_damage_s": [ - 2011 + 2016 ], "counter_strafe_eligible_shots": [ - 2011 + 2016 ], "counter_strafed_shots": [ - 2011 + 2016 ], "damage": [ - 2011 + 2016 ], "damage_ct": [ - 2011 + 2016 ], "damage_t": [ - 2011 + 2016 ], "deaths": [ - 2011 + 2016 ], "deaths_ct": [ - 2011 + 2016 ], "deaths_t": [ - 2011 + 2016 ], "decoy_throws": [ - 2011 + 2016 ], "enemies_flashed": [ - 2011 + 2016 ], "first_bullet_hits": [ - 2011 + 2016 ], "first_bullet_shots": [ - 2011 + 2016 ], "five_kill_rounds": [ - 2011 + 2016 ], "flash_assists": [ - 2011 + 2016 ], "flashes_thrown": [ - 2011 + 2016 ], "four_kill_rounds": [ - 2011 + 2016 ], "he_damage": [ - 2011 + 2016 ], "he_team_damage": [ - 2011 + 2016 ], "he_throws": [ - 2011 + 2016 ], "headshot_hits": [ - 2011 + 2016 ], "hits": [ - 2011 + 2016 ], "hits_at_spotted": [ - 2011 + 2016 ], "hs_kills": [ - 2011 + 2016 ], "hs_kills_ct": [ - 2011 + 2016 ], "hs_kills_t": [ - 2011 + 2016 ], "kills": [ - 2011 + 2016 ], "kills_ct": [ - 2011 + 2016 ], "kills_t": [ - 2011 + 2016 ], "knife_kills": [ - 2011 + 2016 ], "molotov_damage": [ - 2011 + 2016 ], "molotov_throws": [ - 2011 + 2016 ], "non_awp_hits": [ - 2011 + 2016 ], "on_target_frames": [ - 2011 + 2016 ], "rounds_ct": [ - 2011 + 2016 ], "rounds_played": [ - 2011 + 2016 ], "rounds_t": [ - 2011 + 2016 ], "shots_at_spotted": [ - 2011 + 2016 ], "shots_fired": [ - 2011 + 2016 ], "smoke_throws": [ - 2011 + 2016 ], "spotted_count": [ - 2011 + 2016 ], "spotted_with_damage_count": [ - 2011 + 2016 ], "spray_hits": [ - 2011 + 2016 ], "spray_shots": [ - 2011 + 2016 ], "steam_id": [ - 2011 + 2016 ], "team_damage": [ - 2011 + 2016 ], "team_flashed": [ - 2011 + 2016 ], "three_kill_rounds": [ - 2011 + 2016 ], "total_engagement_frames": [ - 2011 + 2016 ], "trade_kill_attempts": [ - 2011 + 2016 ], "trade_kill_opportunities": [ - 2011 + 2016 ], "trade_kill_successes": [ - 2011 + 2016 ], "traded_death_attempts": [ - 2011 + 2016 ], "traded_death_opportunities": [ - 2011 + 2016 ], "traded_death_successes": [ - 2011 + 2016 ], "two_kill_rounds": [ - 2011 + 2016 ], "unused_utility_value": [ - 2011 + 2016 ], "utility_on_death": [ - 2011 + 2016 ], "wasted_magazine_shots": [ - 2011 + 2016 ], "zeus_kills": [ - 2011 + 2016 ], "__typename": [ - 70 + 75 ] }, "player_match_stats_v_stddev_samp_fields": { @@ -60256,218 +60362,218 @@ export default { 29 ], "__typename": [ - 70 + 75 ] }, "player_match_stats_v_stddev_samp_order_by": { "assists": [ - 2011 + 2016 ], "assists_ct": [ - 2011 + 2016 ], "assists_t": [ - 2011 + 2016 ], "avg_crosshair_angle_deg": [ - 2011 + 2016 ], "avg_flash_duration": [ - 2011 + 2016 ], "avg_time_to_damage_s": [ - 2011 + 2016 ], "counter_strafe_eligible_shots": [ - 2011 + 2016 ], "counter_strafed_shots": [ - 2011 + 2016 ], "damage": [ - 2011 + 2016 ], "damage_ct": [ - 2011 + 2016 ], "damage_t": [ - 2011 + 2016 ], "deaths": [ - 2011 + 2016 ], "deaths_ct": [ - 2011 + 2016 ], "deaths_t": [ - 2011 + 2016 ], "decoy_throws": [ - 2011 + 2016 ], "enemies_flashed": [ - 2011 + 2016 ], "first_bullet_hits": [ - 2011 + 2016 ], "first_bullet_shots": [ - 2011 + 2016 ], "five_kill_rounds": [ - 2011 + 2016 ], "flash_assists": [ - 2011 + 2016 ], "flashes_thrown": [ - 2011 + 2016 ], "four_kill_rounds": [ - 2011 + 2016 ], "he_damage": [ - 2011 + 2016 ], "he_team_damage": [ - 2011 + 2016 ], "he_throws": [ - 2011 + 2016 ], "headshot_hits": [ - 2011 + 2016 ], "hits": [ - 2011 + 2016 ], "hits_at_spotted": [ - 2011 + 2016 ], "hs_kills": [ - 2011 + 2016 ], "hs_kills_ct": [ - 2011 + 2016 ], "hs_kills_t": [ - 2011 + 2016 ], "kills": [ - 2011 + 2016 ], "kills_ct": [ - 2011 + 2016 ], "kills_t": [ - 2011 + 2016 ], "knife_kills": [ - 2011 + 2016 ], "molotov_damage": [ - 2011 + 2016 ], "molotov_throws": [ - 2011 + 2016 ], "non_awp_hits": [ - 2011 + 2016 ], "on_target_frames": [ - 2011 + 2016 ], "rounds_ct": [ - 2011 + 2016 ], "rounds_played": [ - 2011 + 2016 ], "rounds_t": [ - 2011 + 2016 ], "shots_at_spotted": [ - 2011 + 2016 ], "shots_fired": [ - 2011 + 2016 ], "smoke_throws": [ - 2011 + 2016 ], "spotted_count": [ - 2011 + 2016 ], "spotted_with_damage_count": [ - 2011 + 2016 ], "spray_hits": [ - 2011 + 2016 ], "spray_shots": [ - 2011 + 2016 ], "steam_id": [ - 2011 + 2016 ], "team_damage": [ - 2011 + 2016 ], "team_flashed": [ - 2011 + 2016 ], "three_kill_rounds": [ - 2011 + 2016 ], "total_engagement_frames": [ - 2011 + 2016 ], "trade_kill_attempts": [ - 2011 + 2016 ], "trade_kill_opportunities": [ - 2011 + 2016 ], "trade_kill_successes": [ - 2011 + 2016 ], "traded_death_attempts": [ - 2011 + 2016 ], "traded_death_opportunities": [ - 2011 + 2016 ], "traded_death_successes": [ - 2011 + 2016 ], "two_kill_rounds": [ - 2011 + 2016 ], "unused_utility_value": [ - 2011 + 2016 ], "utility_on_death": [ - 2011 + 2016 ], "wasted_magazine_shots": [ - 2011 + 2016 ], "zeus_kills": [ - 2011 + 2016 ], "__typename": [ - 70 + 75 ] }, "player_match_stats_v_stream_cursor_input": { "initial_value": [ - 2558 + 2563 ], "ordering": [ - 224 + 229 ], "__typename": [ - 70 + 75 ] }, "player_match_stats_v_stream_cursor_value_input": { @@ -60481,13 +60587,13 @@ export default { 38 ], "avg_crosshair_angle_deg": [ - 2009 + 2014 ], "avg_flash_duration": [ - 2009 + 2014 ], "avg_time_to_damage_s": [ - 2009 + 2014 ], "counter_strafe_eligible_shots": [ 38 @@ -60577,7 +60683,7 @@ export default { 38 ], "match_id": [ - 3818 + 3864 ], "molotov_damage": [ 38 @@ -60622,7 +60728,7 @@ export default { 38 ], "steam_id": [ - 169 + 174 ], "team_damage": [ 38 @@ -60661,7 +60767,7 @@ export default { 38 ], "utility_on_death": [ - 2009 + 2014 ], "wasted_magazine_shots": [ 38 @@ -60670,7 +60776,7 @@ export default { 38 ], "__typename": [ - 70 + 75 ] }, "player_match_stats_v_sum_fields": { @@ -60684,13 +60790,13 @@ export default { 38 ], "avg_crosshair_angle_deg": [ - 2009 + 2014 ], "avg_flash_duration": [ - 2009 + 2014 ], "avg_time_to_damage_s": [ - 2009 + 2014 ], "counter_strafe_eligible_shots": [ 38 @@ -60822,7 +60928,7 @@ export default { 38 ], "steam_id": [ - 169 + 174 ], "team_damage": [ 38 @@ -60861,7 +60967,7 @@ export default { 38 ], "utility_on_death": [ - 2009 + 2014 ], "wasted_magazine_shots": [ 38 @@ -60870,207 +60976,207 @@ export default { 38 ], "__typename": [ - 70 + 75 ] }, "player_match_stats_v_sum_order_by": { "assists": [ - 2011 + 2016 ], "assists_ct": [ - 2011 + 2016 ], "assists_t": [ - 2011 + 2016 ], "avg_crosshair_angle_deg": [ - 2011 + 2016 ], "avg_flash_duration": [ - 2011 + 2016 ], "avg_time_to_damage_s": [ - 2011 + 2016 ], "counter_strafe_eligible_shots": [ - 2011 + 2016 ], "counter_strafed_shots": [ - 2011 + 2016 ], "damage": [ - 2011 + 2016 ], "damage_ct": [ - 2011 + 2016 ], "damage_t": [ - 2011 + 2016 ], "deaths": [ - 2011 + 2016 ], "deaths_ct": [ - 2011 + 2016 ], "deaths_t": [ - 2011 + 2016 ], "decoy_throws": [ - 2011 + 2016 ], "enemies_flashed": [ - 2011 + 2016 ], "first_bullet_hits": [ - 2011 + 2016 ], "first_bullet_shots": [ - 2011 + 2016 ], "five_kill_rounds": [ - 2011 + 2016 ], "flash_assists": [ - 2011 + 2016 ], "flashes_thrown": [ - 2011 + 2016 ], "four_kill_rounds": [ - 2011 + 2016 ], "he_damage": [ - 2011 + 2016 ], "he_team_damage": [ - 2011 + 2016 ], "he_throws": [ - 2011 + 2016 ], "headshot_hits": [ - 2011 + 2016 ], "hits": [ - 2011 + 2016 ], "hits_at_spotted": [ - 2011 + 2016 ], "hs_kills": [ - 2011 + 2016 ], "hs_kills_ct": [ - 2011 + 2016 ], "hs_kills_t": [ - 2011 + 2016 ], "kills": [ - 2011 + 2016 ], "kills_ct": [ - 2011 + 2016 ], "kills_t": [ - 2011 + 2016 ], "knife_kills": [ - 2011 + 2016 ], "molotov_damage": [ - 2011 + 2016 ], "molotov_throws": [ - 2011 + 2016 ], "non_awp_hits": [ - 2011 + 2016 ], "on_target_frames": [ - 2011 + 2016 ], "rounds_ct": [ - 2011 + 2016 ], "rounds_played": [ - 2011 + 2016 ], "rounds_t": [ - 2011 + 2016 ], "shots_at_spotted": [ - 2011 + 2016 ], "shots_fired": [ - 2011 + 2016 ], "smoke_throws": [ - 2011 + 2016 ], "spotted_count": [ - 2011 + 2016 ], "spotted_with_damage_count": [ - 2011 + 2016 ], "spray_hits": [ - 2011 + 2016 ], "spray_shots": [ - 2011 + 2016 ], "steam_id": [ - 2011 + 2016 ], "team_damage": [ - 2011 + 2016 ], "team_flashed": [ - 2011 + 2016 ], "three_kill_rounds": [ - 2011 + 2016 ], "total_engagement_frames": [ - 2011 + 2016 ], "trade_kill_attempts": [ - 2011 + 2016 ], "trade_kill_opportunities": [ - 2011 + 2016 ], "trade_kill_successes": [ - 2011 + 2016 ], "traded_death_attempts": [ - 2011 + 2016 ], "traded_death_opportunities": [ - 2011 + 2016 ], "traded_death_successes": [ - 2011 + 2016 ], "two_kill_rounds": [ - 2011 + 2016 ], "unused_utility_value": [ - 2011 + 2016 ], "utility_on_death": [ - 2011 + 2016 ], "wasted_magazine_shots": [ - 2011 + 2016 ], "zeus_kills": [ - 2011 + 2016 ], "__typename": [ - 70 + 75 ] }, "player_match_stats_v_var_pop_fields": { @@ -61270,207 +61376,207 @@ export default { 29 ], "__typename": [ - 70 + 75 ] }, "player_match_stats_v_var_pop_order_by": { "assists": [ - 2011 + 2016 ], "assists_ct": [ - 2011 + 2016 ], "assists_t": [ - 2011 + 2016 ], "avg_crosshair_angle_deg": [ - 2011 + 2016 ], "avg_flash_duration": [ - 2011 + 2016 ], "avg_time_to_damage_s": [ - 2011 + 2016 ], "counter_strafe_eligible_shots": [ - 2011 + 2016 ], "counter_strafed_shots": [ - 2011 + 2016 ], "damage": [ - 2011 + 2016 ], "damage_ct": [ - 2011 + 2016 ], "damage_t": [ - 2011 + 2016 ], "deaths": [ - 2011 + 2016 ], "deaths_ct": [ - 2011 + 2016 ], "deaths_t": [ - 2011 + 2016 ], "decoy_throws": [ - 2011 + 2016 ], "enemies_flashed": [ - 2011 + 2016 ], "first_bullet_hits": [ - 2011 + 2016 ], "first_bullet_shots": [ - 2011 + 2016 ], "five_kill_rounds": [ - 2011 + 2016 ], "flash_assists": [ - 2011 + 2016 ], "flashes_thrown": [ - 2011 + 2016 ], "four_kill_rounds": [ - 2011 + 2016 ], "he_damage": [ - 2011 + 2016 ], "he_team_damage": [ - 2011 + 2016 ], "he_throws": [ - 2011 + 2016 ], "headshot_hits": [ - 2011 + 2016 ], "hits": [ - 2011 + 2016 ], "hits_at_spotted": [ - 2011 + 2016 ], "hs_kills": [ - 2011 + 2016 ], "hs_kills_ct": [ - 2011 + 2016 ], "hs_kills_t": [ - 2011 + 2016 ], "kills": [ - 2011 + 2016 ], "kills_ct": [ - 2011 + 2016 ], "kills_t": [ - 2011 + 2016 ], "knife_kills": [ - 2011 + 2016 ], "molotov_damage": [ - 2011 + 2016 ], "molotov_throws": [ - 2011 + 2016 ], "non_awp_hits": [ - 2011 + 2016 ], "on_target_frames": [ - 2011 + 2016 ], "rounds_ct": [ - 2011 + 2016 ], "rounds_played": [ - 2011 + 2016 ], "rounds_t": [ - 2011 + 2016 ], "shots_at_spotted": [ - 2011 + 2016 ], "shots_fired": [ - 2011 + 2016 ], "smoke_throws": [ - 2011 + 2016 ], "spotted_count": [ - 2011 + 2016 ], "spotted_with_damage_count": [ - 2011 + 2016 ], "spray_hits": [ - 2011 + 2016 ], "spray_shots": [ - 2011 + 2016 ], "steam_id": [ - 2011 + 2016 ], "team_damage": [ - 2011 + 2016 ], "team_flashed": [ - 2011 + 2016 ], "three_kill_rounds": [ - 2011 + 2016 ], "total_engagement_frames": [ - 2011 + 2016 ], "trade_kill_attempts": [ - 2011 + 2016 ], "trade_kill_opportunities": [ - 2011 + 2016 ], "trade_kill_successes": [ - 2011 + 2016 ], "traded_death_attempts": [ - 2011 + 2016 ], "traded_death_opportunities": [ - 2011 + 2016 ], "traded_death_successes": [ - 2011 + 2016 ], "two_kill_rounds": [ - 2011 + 2016 ], "unused_utility_value": [ - 2011 + 2016 ], "utility_on_death": [ - 2011 + 2016 ], "wasted_magazine_shots": [ - 2011 + 2016 ], "zeus_kills": [ - 2011 + 2016 ], "__typename": [ - 70 + 75 ] }, "player_match_stats_v_var_samp_fields": { @@ -61670,207 +61776,207 @@ export default { 29 ], "__typename": [ - 70 + 75 ] }, "player_match_stats_v_var_samp_order_by": { "assists": [ - 2011 + 2016 ], "assists_ct": [ - 2011 + 2016 ], "assists_t": [ - 2011 + 2016 ], "avg_crosshair_angle_deg": [ - 2011 + 2016 ], "avg_flash_duration": [ - 2011 + 2016 ], "avg_time_to_damage_s": [ - 2011 + 2016 ], "counter_strafe_eligible_shots": [ - 2011 + 2016 ], "counter_strafed_shots": [ - 2011 + 2016 ], "damage": [ - 2011 + 2016 ], "damage_ct": [ - 2011 + 2016 ], "damage_t": [ - 2011 + 2016 ], "deaths": [ - 2011 + 2016 ], "deaths_ct": [ - 2011 + 2016 ], "deaths_t": [ - 2011 + 2016 ], "decoy_throws": [ - 2011 + 2016 ], "enemies_flashed": [ - 2011 + 2016 ], "first_bullet_hits": [ - 2011 + 2016 ], "first_bullet_shots": [ - 2011 + 2016 ], "five_kill_rounds": [ - 2011 + 2016 ], "flash_assists": [ - 2011 + 2016 ], "flashes_thrown": [ - 2011 + 2016 ], "four_kill_rounds": [ - 2011 + 2016 ], "he_damage": [ - 2011 + 2016 ], "he_team_damage": [ - 2011 + 2016 ], "he_throws": [ - 2011 + 2016 ], "headshot_hits": [ - 2011 + 2016 ], "hits": [ - 2011 + 2016 ], "hits_at_spotted": [ - 2011 + 2016 ], "hs_kills": [ - 2011 + 2016 ], "hs_kills_ct": [ - 2011 + 2016 ], "hs_kills_t": [ - 2011 + 2016 ], "kills": [ - 2011 + 2016 ], "kills_ct": [ - 2011 + 2016 ], "kills_t": [ - 2011 + 2016 ], "knife_kills": [ - 2011 + 2016 ], "molotov_damage": [ - 2011 + 2016 ], "molotov_throws": [ - 2011 + 2016 ], "non_awp_hits": [ - 2011 + 2016 ], "on_target_frames": [ - 2011 + 2016 ], "rounds_ct": [ - 2011 + 2016 ], "rounds_played": [ - 2011 + 2016 ], "rounds_t": [ - 2011 + 2016 ], "shots_at_spotted": [ - 2011 + 2016 ], "shots_fired": [ - 2011 + 2016 ], "smoke_throws": [ - 2011 + 2016 ], "spotted_count": [ - 2011 + 2016 ], "spotted_with_damage_count": [ - 2011 + 2016 ], "spray_hits": [ - 2011 + 2016 ], "spray_shots": [ - 2011 + 2016 ], "steam_id": [ - 2011 + 2016 ], "team_damage": [ - 2011 + 2016 ], "team_flashed": [ - 2011 + 2016 ], "three_kill_rounds": [ - 2011 + 2016 ], "total_engagement_frames": [ - 2011 + 2016 ], "trade_kill_attempts": [ - 2011 + 2016 ], "trade_kill_opportunities": [ - 2011 + 2016 ], "trade_kill_successes": [ - 2011 + 2016 ], "traded_death_attempts": [ - 2011 + 2016 ], "traded_death_opportunities": [ - 2011 + 2016 ], "traded_death_successes": [ - 2011 + 2016 ], "two_kill_rounds": [ - 2011 + 2016 ], "unused_utility_value": [ - 2011 + 2016 ], "utility_on_death": [ - 2011 + 2016 ], "wasted_magazine_shots": [ - 2011 + 2016 ], "zeus_kills": [ - 2011 + 2016 ], "__typename": [ - 70 + 75 ] }, "player_match_stats_v_variance_fields": { @@ -62070,289 +62176,289 @@ export default { 29 ], "__typename": [ - 70 + 75 ] }, "player_match_stats_v_variance_order_by": { "assists": [ - 2011 + 2016 ], "assists_ct": [ - 2011 + 2016 ], "assists_t": [ - 2011 + 2016 ], "avg_crosshair_angle_deg": [ - 2011 + 2016 ], "avg_flash_duration": [ - 2011 + 2016 ], "avg_time_to_damage_s": [ - 2011 + 2016 ], "counter_strafe_eligible_shots": [ - 2011 + 2016 ], "counter_strafed_shots": [ - 2011 + 2016 ], "damage": [ - 2011 + 2016 ], "damage_ct": [ - 2011 + 2016 ], "damage_t": [ - 2011 + 2016 ], "deaths": [ - 2011 + 2016 ], "deaths_ct": [ - 2011 + 2016 ], "deaths_t": [ - 2011 + 2016 ], "decoy_throws": [ - 2011 + 2016 ], "enemies_flashed": [ - 2011 + 2016 ], "first_bullet_hits": [ - 2011 + 2016 ], "first_bullet_shots": [ - 2011 + 2016 ], "five_kill_rounds": [ - 2011 + 2016 ], "flash_assists": [ - 2011 + 2016 ], "flashes_thrown": [ - 2011 + 2016 ], "four_kill_rounds": [ - 2011 + 2016 ], "he_damage": [ - 2011 + 2016 ], "he_team_damage": [ - 2011 + 2016 ], "he_throws": [ - 2011 + 2016 ], "headshot_hits": [ - 2011 + 2016 ], "hits": [ - 2011 + 2016 ], "hits_at_spotted": [ - 2011 + 2016 ], "hs_kills": [ - 2011 + 2016 ], "hs_kills_ct": [ - 2011 + 2016 ], "hs_kills_t": [ - 2011 + 2016 ], "kills": [ - 2011 + 2016 ], "kills_ct": [ - 2011 + 2016 ], "kills_t": [ - 2011 + 2016 ], "knife_kills": [ - 2011 + 2016 ], "molotov_damage": [ - 2011 + 2016 ], "molotov_throws": [ - 2011 + 2016 ], "non_awp_hits": [ - 2011 + 2016 ], "on_target_frames": [ - 2011 + 2016 ], "rounds_ct": [ - 2011 + 2016 ], "rounds_played": [ - 2011 + 2016 ], "rounds_t": [ - 2011 + 2016 ], "shots_at_spotted": [ - 2011 + 2016 ], "shots_fired": [ - 2011 + 2016 ], "smoke_throws": [ - 2011 + 2016 ], "spotted_count": [ - 2011 + 2016 ], "spotted_with_damage_count": [ - 2011 + 2016 ], "spray_hits": [ - 2011 + 2016 ], "spray_shots": [ - 2011 + 2016 ], "steam_id": [ - 2011 + 2016 ], "team_damage": [ - 2011 + 2016 ], "team_flashed": [ - 2011 + 2016 ], "three_kill_rounds": [ - 2011 + 2016 ], "total_engagement_frames": [ - 2011 + 2016 ], "trade_kill_attempts": [ - 2011 + 2016 ], "trade_kill_opportunities": [ - 2011 + 2016 ], "trade_kill_successes": [ - 2011 + 2016 ], "traded_death_attempts": [ - 2011 + 2016 ], "traded_death_opportunities": [ - 2011 + 2016 ], "traded_death_successes": [ - 2011 + 2016 ], "two_kill_rounds": [ - 2011 + 2016 ], "unused_utility_value": [ - 2011 + 2016 ], "utility_on_death": [ - 2011 + 2016 ], "wasted_magazine_shots": [ - 2011 + 2016 ], "zeus_kills": [ - 2011 + 2016 ], "__typename": [ - 70 + 75 ] }, "player_objectives": { "deleted_at": [ - 3421 + 3467 ], "match": [ - 1826 + 1831 ], "match_id": [ - 3818 + 3864 ], "match_map": [ - 1664 + 1669 ], "match_map_id": [ - 3818 + 3864 ], "player": [ - 2878 + 2915 ], "player_steam_id": [ - 169 + 174 ], "round": [ 38 ], "time": [ - 3421 + 3467 ], "type": [ - 765 + 770 ], "__typename": [ - 70 + 75 ] }, "player_objectives_aggregate": { "aggregate": [ - 2571 + 2576 ], "nodes": [ - 2567 + 2572 ], "__typename": [ - 70 + 75 ] }, "player_objectives_aggregate_bool_exp": { "count": [ - 2570 + 2575 ], "__typename": [ - 70 + 75 ] }, "player_objectives_aggregate_bool_exp_count": { "arguments": [ - 2588 + 2593 ], "distinct": [ 3 ], "filter": [ - 2576 + 2581 ], "predicate": [ 39 ], "__typename": [ - 70 + 75 ] }, "player_objectives_aggregate_fields": { "avg": [ - 2574 + 2579 ], "count": [ 38, { "columns": [ - 2588, + 2593, "[player_objectives_select_column!]" ], "distinct": [ @@ -62361,83 +62467,83 @@ export default { } ], "max": [ - 2580 + 2585 ], "min": [ - 2582 + 2587 ], "stddev": [ - 2590 + 2595 ], "stddev_pop": [ - 2592 + 2597 ], "stddev_samp": [ - 2594 + 2599 ], "sum": [ - 2598 + 2603 ], "var_pop": [ - 2602 + 2607 ], "var_samp": [ - 2604 + 2609 ], "variance": [ - 2606 + 2611 ], "__typename": [ - 70 + 75 ] }, "player_objectives_aggregate_order_by": { "avg": [ - 2575 + 2580 ], "count": [ - 2011 + 2016 ], "max": [ - 2581 + 2586 ], "min": [ - 2583 + 2588 ], "stddev": [ - 2591 + 2596 ], "stddev_pop": [ - 2593 + 2598 ], "stddev_samp": [ - 2595 + 2600 ], "sum": [ - 2599 + 2604 ], "var_pop": [ - 2603 + 2608 ], "var_samp": [ - 2605 + 2610 ], "variance": [ - 2607 + 2612 ], "__typename": [ - 70 + 75 ] }, "player_objectives_arr_rel_insert_input": { "data": [ - 2579 + 2584 ], "on_conflict": [ - 2585 + 2590 ], "__typename": [ - 70 + 75 ] }, "player_objectives_avg_fields": { @@ -62448,201 +62554,201 @@ export default { 29 ], "__typename": [ - 70 + 75 ] }, "player_objectives_avg_order_by": { "player_steam_id": [ - 2011 + 2016 ], "round": [ - 2011 + 2016 ], "__typename": [ - 70 + 75 ] }, "player_objectives_bool_exp": { "_and": [ - 2576 + 2581 ], "_not": [ - 2576 + 2581 ], "_or": [ - 2576 + 2581 ], "deleted_at": [ - 3422 + 3468 ], "match": [ - 1835 + 1840 ], "match_id": [ - 3820 + 3866 ], "match_map": [ - 1673 + 1678 ], "match_map_id": [ - 3820 + 3866 ], "player": [ - 2882 + 2919 ], "player_steam_id": [ - 171 + 176 ], "round": [ 39 ], "time": [ - 3422 + 3468 ], "type": [ - 766 + 771 ], "__typename": [ - 70 + 75 ] }, "player_objectives_constraint": {}, "player_objectives_inc_input": { "player_steam_id": [ - 169 + 174 ], "round": [ 38 ], "__typename": [ - 70 + 75 ] }, "player_objectives_insert_input": { "deleted_at": [ - 3421 + 3467 ], "match": [ - 1844 + 1849 ], "match_id": [ - 3818 + 3864 ], "match_map": [ - 1682 + 1687 ], "match_map_id": [ - 3818 + 3864 ], "player": [ - 2889 + 2926 ], "player_steam_id": [ - 169 + 174 ], "round": [ 38 ], "time": [ - 3421 + 3467 ], "type": [ - 765 + 770 ], "__typename": [ - 70 + 75 ] }, "player_objectives_max_fields": { "deleted_at": [ - 3421 + 3467 ], "match_id": [ - 3818 + 3864 ], "match_map_id": [ - 3818 + 3864 ], "player_steam_id": [ - 169 + 174 ], "round": [ 38 ], "time": [ - 3421 + 3467 ], "__typename": [ - 70 + 75 ] }, "player_objectives_max_order_by": { "deleted_at": [ - 2011 + 2016 ], "match_id": [ - 2011 + 2016 ], "match_map_id": [ - 2011 + 2016 ], "player_steam_id": [ - 2011 + 2016 ], "round": [ - 2011 + 2016 ], "time": [ - 2011 + 2016 ], "__typename": [ - 70 + 75 ] }, "player_objectives_min_fields": { "deleted_at": [ - 3421 + 3467 ], "match_id": [ - 3818 + 3864 ], "match_map_id": [ - 3818 + 3864 ], "player_steam_id": [ - 169 + 174 ], "round": [ 38 ], "time": [ - 3421 + 3467 ], "__typename": [ - 70 + 75 ] }, "player_objectives_min_order_by": { "deleted_at": [ - 2011 + 2016 ], "match_id": [ - 2011 + 2016 ], "match_map_id": [ - 2011 + 2016 ], "player_steam_id": [ - 2011 + 2016 ], "round": [ - 2011 + 2016 ], "time": [ - 2011 + 2016 ], "__typename": [ - 70 + 75 ] }, "player_objectives_mutation_response": { @@ -62650,100 +62756,100 @@ export default { 38 ], "returning": [ - 2567 + 2572 ], "__typename": [ - 70 + 75 ] }, "player_objectives_on_conflict": { "constraint": [ - 2577 + 2582 ], "update_columns": [ - 2600 + 2605 ], "where": [ - 2576 + 2581 ], "__typename": [ - 70 + 75 ] }, "player_objectives_order_by": { "deleted_at": [ - 2011 + 2016 ], "match": [ - 1846 + 1851 ], "match_id": [ - 2011 + 2016 ], "match_map": [ - 1684 + 1689 ], "match_map_id": [ - 2011 + 2016 ], "player": [ - 2891 + 2928 ], "player_steam_id": [ - 2011 + 2016 ], "round": [ - 2011 + 2016 ], "time": [ - 2011 + 2016 ], "type": [ - 2011 + 2016 ], "__typename": [ - 70 + 75 ] }, "player_objectives_pk_columns_input": { "match_map_id": [ - 3818 + 3864 ], "player_steam_id": [ - 169 + 174 ], "time": [ - 3421 + 3467 ], "__typename": [ - 70 + 75 ] }, "player_objectives_select_column": {}, "player_objectives_set_input": { "deleted_at": [ - 3421 + 3467 ], "match_id": [ - 3818 + 3864 ], "match_map_id": [ - 3818 + 3864 ], "player_steam_id": [ - 169 + 174 ], "round": [ 38 ], "time": [ - 3421 + 3467 ], "type": [ - 765 + 770 ], "__typename": [ - 70 + 75 ] }, "player_objectives_stddev_fields": { @@ -62754,18 +62860,18 @@ export default { 29 ], "__typename": [ - 70 + 75 ] }, "player_objectives_stddev_order_by": { "player_steam_id": [ - 2011 + 2016 ], "round": [ - 2011 + 2016 ], "__typename": [ - 70 + 75 ] }, "player_objectives_stddev_pop_fields": { @@ -62776,18 +62882,18 @@ export default { 29 ], "__typename": [ - 70 + 75 ] }, "player_objectives_stddev_pop_order_by": { "player_steam_id": [ - 2011 + 2016 ], "round": [ - 2011 + 2016 ], "__typename": [ - 70 + 75 ] }, "player_objectives_stddev_samp_fields": { @@ -62798,92 +62904,92 @@ export default { 29 ], "__typename": [ - 70 + 75 ] }, "player_objectives_stddev_samp_order_by": { "player_steam_id": [ - 2011 + 2016 ], "round": [ - 2011 + 2016 ], "__typename": [ - 70 + 75 ] }, "player_objectives_stream_cursor_input": { "initial_value": [ - 2597 + 2602 ], "ordering": [ - 224 + 229 ], "__typename": [ - 70 + 75 ] }, "player_objectives_stream_cursor_value_input": { "deleted_at": [ - 3421 + 3467 ], "match_id": [ - 3818 + 3864 ], "match_map_id": [ - 3818 + 3864 ], "player_steam_id": [ - 169 + 174 ], "round": [ 38 ], "time": [ - 3421 + 3467 ], "type": [ - 765 + 770 ], "__typename": [ - 70 + 75 ] }, "player_objectives_sum_fields": { "player_steam_id": [ - 169 + 174 ], "round": [ 38 ], "__typename": [ - 70 + 75 ] }, "player_objectives_sum_order_by": { "player_steam_id": [ - 2011 + 2016 ], "round": [ - 2011 + 2016 ], "__typename": [ - 70 + 75 ] }, "player_objectives_update_column": {}, "player_objectives_updates": { "_inc": [ - 2578 + 2583 ], "_set": [ - 2589 + 2594 ], "where": [ - 2576 + 2581 ], "__typename": [ - 70 + 75 ] }, "player_objectives_var_pop_fields": { @@ -62894,18 +63000,18 @@ export default { 29 ], "__typename": [ - 70 + 75 ] }, "player_objectives_var_pop_order_by": { "player_steam_id": [ - 2011 + 2016 ], "round": [ - 2011 + 2016 ], "__typename": [ - 70 + 75 ] }, "player_objectives_var_samp_fields": { @@ -62916,18 +63022,18 @@ export default { 29 ], "__typename": [ - 70 + 75 ] }, "player_objectives_var_samp_order_by": { "player_steam_id": [ - 2011 + 2016 ], "round": [ - 2011 + 2016 ], "__typename": [ - 70 + 75 ] }, "player_objectives_variance_fields": { @@ -62938,62 +63044,62 @@ export default { 29 ], "__typename": [ - 70 + 75 ] }, "player_objectives_variance_order_by": { "player_steam_id": [ - 2011 + 2016 ], "round": [ - 2011 + 2016 ], "__typename": [ - 70 + 75 ] }, "player_performance_v": { "accuracy_score": [ - 1084 + 1089 ], "aim_goal": [ - 1084 + 1089 ], "aim_rating": [ - 1084 + 1089 ], "band": [ 38 ], "band_sample": [ - 169 + 174 ], "blind_score": [ - 1084 + 1089 ], "counter_strafe_score": [ - 1084 + 1089 ], "crosshair_score": [ - 1084 + 1089 ], "flash_assists_score": [ - 1084 + 1089 ], "hs_score": [ - 1084 + 1089 ], "kast_score": [ - 1084 + 1089 ], "maps": [ 38 ], "positioning_goal": [ - 1084 + 1089 ], "positioning_rating": [ - 1084 + 1089 ], "premier_rank": [ 38 @@ -63002,53 +63108,53 @@ export default { 38 ], "spotted_score": [ - 1084 + 1089 ], "steam_id": [ - 169 + 174 ], "survival_score": [ - 1084 + 1089 ], "traded_score": [ - 1084 + 1089 ], "ttd_score": [ - 1084 + 1089 ], "util_eff_score": [ - 1084 + 1089 ], "utility_goal": [ - 1084 + 1089 ], "utility_rating": [ - 1084 + 1089 ], "__typename": [ - 70 + 75 ] }, "player_performance_v_aggregate": { "aggregate": [ - 2610 + 2615 ], "nodes": [ - 2608 + 2613 ], "__typename": [ - 70 + 75 ] }, "player_performance_v_aggregate_fields": { "avg": [ - 2611 + 2616 ], "count": [ 38, { "columns": [ - 2616, + 2621, "[player_performance_v_select_column!]" ], "distinct": [ @@ -63057,34 +63163,34 @@ export default { } ], "max": [ - 2613 + 2618 ], "min": [ - 2614 + 2619 ], "stddev": [ - 2617 + 2622 ], "stddev_pop": [ - 2618 + 2623 ], "stddev_samp": [ - 2619 + 2624 ], "sum": [ - 2622 + 2627 ], "var_pop": [ - 2623 + 2628 ], "var_samp": [ - 2624 + 2629 ], "variance": [ - 2625 + 2630 ], "__typename": [ - 70 + 75 ] }, "player_performance_v_avg_fields": { @@ -63161,60 +63267,60 @@ export default { 29 ], "__typename": [ - 70 + 75 ] }, "player_performance_v_bool_exp": { "_and": [ - 2612 + 2617 ], "_not": [ - 2612 + 2617 ], "_or": [ - 2612 + 2617 ], "accuracy_score": [ - 1085 + 1090 ], "aim_goal": [ - 1085 + 1090 ], "aim_rating": [ - 1085 + 1090 ], "band": [ 39 ], "band_sample": [ - 171 + 176 ], "blind_score": [ - 1085 + 1090 ], "counter_strafe_score": [ - 1085 + 1090 ], "crosshair_score": [ - 1085 + 1090 ], "flash_assists_score": [ - 1085 + 1090 ], "hs_score": [ - 1085 + 1090 ], "kast_score": [ - 1085 + 1090 ], "maps": [ 39 ], "positioning_goal": [ - 1085 + 1090 ], "positioning_rating": [ - 1085 + 1090 ], "premier_rank": [ 39 @@ -63223,75 +63329,75 @@ export default { 39 ], "spotted_score": [ - 1085 + 1090 ], "steam_id": [ - 171 + 176 ], "survival_score": [ - 1085 + 1090 ], "traded_score": [ - 1085 + 1090 ], "ttd_score": [ - 1085 + 1090 ], "util_eff_score": [ - 1085 + 1090 ], "utility_goal": [ - 1085 + 1090 ], "utility_rating": [ - 1085 + 1090 ], "__typename": [ - 70 + 75 ] }, "player_performance_v_max_fields": { "accuracy_score": [ - 1084 + 1089 ], "aim_goal": [ - 1084 + 1089 ], "aim_rating": [ - 1084 + 1089 ], "band": [ 38 ], "band_sample": [ - 169 + 174 ], "blind_score": [ - 1084 + 1089 ], "counter_strafe_score": [ - 1084 + 1089 ], "crosshair_score": [ - 1084 + 1089 ], "flash_assists_score": [ - 1084 + 1089 ], "hs_score": [ - 1084 + 1089 ], "kast_score": [ - 1084 + 1089 ], "maps": [ 38 ], "positioning_goal": [ - 1084 + 1089 ], "positioning_rating": [ - 1084 + 1089 ], "premier_rank": [ 38 @@ -63300,75 +63406,75 @@ export default { 38 ], "spotted_score": [ - 1084 + 1089 ], "steam_id": [ - 169 + 174 ], "survival_score": [ - 1084 + 1089 ], "traded_score": [ - 1084 + 1089 ], "ttd_score": [ - 1084 + 1089 ], "util_eff_score": [ - 1084 + 1089 ], "utility_goal": [ - 1084 + 1089 ], "utility_rating": [ - 1084 + 1089 ], "__typename": [ - 70 + 75 ] }, "player_performance_v_min_fields": { "accuracy_score": [ - 1084 + 1089 ], "aim_goal": [ - 1084 + 1089 ], "aim_rating": [ - 1084 + 1089 ], "band": [ 38 ], "band_sample": [ - 169 + 174 ], "blind_score": [ - 1084 + 1089 ], "counter_strafe_score": [ - 1084 + 1089 ], "crosshair_score": [ - 1084 + 1089 ], "flash_assists_score": [ - 1084 + 1089 ], "hs_score": [ - 1084 + 1089 ], "kast_score": [ - 1084 + 1089 ], "maps": [ 38 ], "positioning_goal": [ - 1084 + 1089 ], "positioning_rating": [ - 1084 + 1089 ], "premier_rank": [ 38 @@ -63377,108 +63483,108 @@ export default { 38 ], "spotted_score": [ - 1084 + 1089 ], "steam_id": [ - 169 + 174 ], "survival_score": [ - 1084 + 1089 ], "traded_score": [ - 1084 + 1089 ], "ttd_score": [ - 1084 + 1089 ], "util_eff_score": [ - 1084 + 1089 ], "utility_goal": [ - 1084 + 1089 ], "utility_rating": [ - 1084 + 1089 ], "__typename": [ - 70 + 75 ] }, "player_performance_v_order_by": { "accuracy_score": [ - 2011 + 2016 ], "aim_goal": [ - 2011 + 2016 ], "aim_rating": [ - 2011 + 2016 ], "band": [ - 2011 + 2016 ], "band_sample": [ - 2011 + 2016 ], "blind_score": [ - 2011 + 2016 ], "counter_strafe_score": [ - 2011 + 2016 ], "crosshair_score": [ - 2011 + 2016 ], "flash_assists_score": [ - 2011 + 2016 ], "hs_score": [ - 2011 + 2016 ], "kast_score": [ - 2011 + 2016 ], "maps": [ - 2011 + 2016 ], "positioning_goal": [ - 2011 + 2016 ], "positioning_rating": [ - 2011 + 2016 ], "premier_rank": [ - 2011 + 2016 ], "rounds": [ - 2011 + 2016 ], "spotted_score": [ - 2011 + 2016 ], "steam_id": [ - 2011 + 2016 ], "survival_score": [ - 2011 + 2016 ], "traded_score": [ - 2011 + 2016 ], "ttd_score": [ - 2011 + 2016 ], "util_eff_score": [ - 2011 + 2016 ], "utility_goal": [ - 2011 + 2016 ], "utility_rating": [ - 2011 + 2016 ], "__typename": [ - 70 + 75 ] }, "player_performance_v_select_column": {}, @@ -63556,7 +63662,7 @@ export default { 29 ], "__typename": [ - 70 + 75 ] }, "player_performance_v_stddev_pop_fields": { @@ -63633,7 +63739,7 @@ export default { 29 ], "__typename": [ - 70 + 75 ] }, "player_performance_v_stddev_samp_fields": { @@ -63710,62 +63816,62 @@ export default { 29 ], "__typename": [ - 70 + 75 ] }, "player_performance_v_stream_cursor_input": { "initial_value": [ - 2621 + 2626 ], "ordering": [ - 224 + 229 ], "__typename": [ - 70 + 75 ] }, "player_performance_v_stream_cursor_value_input": { "accuracy_score": [ - 1084 + 1089 ], "aim_goal": [ - 1084 + 1089 ], "aim_rating": [ - 1084 + 1089 ], "band": [ 38 ], "band_sample": [ - 169 + 174 ], "blind_score": [ - 1084 + 1089 ], "counter_strafe_score": [ - 1084 + 1089 ], "crosshair_score": [ - 1084 + 1089 ], "flash_assists_score": [ - 1084 + 1089 ], "hs_score": [ - 1084 + 1089 ], "kast_score": [ - 1084 + 1089 ], "maps": [ 38 ], "positioning_goal": [ - 1084 + 1089 ], "positioning_rating": [ - 1084 + 1089 ], "premier_rank": [ 38 @@ -63774,75 +63880,75 @@ export default { 38 ], "spotted_score": [ - 1084 + 1089 ], "steam_id": [ - 169 + 174 ], "survival_score": [ - 1084 + 1089 ], "traded_score": [ - 1084 + 1089 ], "ttd_score": [ - 1084 + 1089 ], "util_eff_score": [ - 1084 + 1089 ], "utility_goal": [ - 1084 + 1089 ], "utility_rating": [ - 1084 + 1089 ], "__typename": [ - 70 + 75 ] }, "player_performance_v_sum_fields": { "accuracy_score": [ - 1084 + 1089 ], "aim_goal": [ - 1084 + 1089 ], "aim_rating": [ - 1084 + 1089 ], "band": [ 38 ], "band_sample": [ - 169 + 174 ], "blind_score": [ - 1084 + 1089 ], "counter_strafe_score": [ - 1084 + 1089 ], "crosshair_score": [ - 1084 + 1089 ], "flash_assists_score": [ - 1084 + 1089 ], "hs_score": [ - 1084 + 1089 ], "kast_score": [ - 1084 + 1089 ], "maps": [ 38 ], "positioning_goal": [ - 1084 + 1089 ], "positioning_rating": [ - 1084 + 1089 ], "premier_rank": [ 38 @@ -63851,31 +63957,31 @@ export default { 38 ], "spotted_score": [ - 1084 + 1089 ], "steam_id": [ - 169 + 174 ], "survival_score": [ - 1084 + 1089 ], "traded_score": [ - 1084 + 1089 ], "ttd_score": [ - 1084 + 1089 ], "util_eff_score": [ - 1084 + 1089 ], "utility_goal": [ - 1084 + 1089 ], "utility_rating": [ - 1084 + 1089 ], "__typename": [ - 70 + 75 ] }, "player_performance_v_var_pop_fields": { @@ -63952,7 +64058,7 @@ export default { 29 ], "__typename": [ - 70 + 75 ] }, "player_performance_v_var_samp_fields": { @@ -64029,7 +64135,7 @@ export default { 29 ], "__typename": [ - 70 + 75 ] }, "player_performance_v_variance_fields": { @@ -64106,30 +64212,30 @@ export default { 29 ], "__typename": [ - 70 + 75 ] }, "player_premier_rank_history": { "id": [ - 3818 + 3864 ], "map": [ - 1344 + 1349 ], "map_id": [ - 3818 + 3864 ], "match": [ - 1826 + 1831 ], "match_id": [ - 3818 + 3864 ], "observed_at": [ - 3421 + 3467 ], "player": [ - 2878 + 2915 ], "previous_rank": [ 38 @@ -64141,57 +64247,57 @@ export default { 38 ], "steam_id": [ - 169 + 174 ], "__typename": [ - 70 + 75 ] }, "player_premier_rank_history_aggregate": { "aggregate": [ - 2630 + 2635 ], "nodes": [ - 2626 + 2631 ], "__typename": [ - 70 + 75 ] }, "player_premier_rank_history_aggregate_bool_exp": { "count": [ - 2629 + 2634 ], "__typename": [ - 70 + 75 ] }, "player_premier_rank_history_aggregate_bool_exp_count": { "arguments": [ - 2647 + 2652 ], "distinct": [ 3 ], "filter": [ - 2635 + 2640 ], "predicate": [ 39 ], "__typename": [ - 70 + 75 ] }, "player_premier_rank_history_aggregate_fields": { "avg": [ - 2633 + 2638 ], "count": [ 38, { "columns": [ - 2647, + 2652, "[player_premier_rank_history_select_column!]" ], "distinct": [ @@ -64200,83 +64306,83 @@ export default { } ], "max": [ - 2639 + 2644 ], "min": [ - 2641 + 2646 ], "stddev": [ - 2649 + 2654 ], "stddev_pop": [ - 2651 + 2656 ], "stddev_samp": [ - 2653 + 2658 ], "sum": [ - 2657 + 2662 ], "var_pop": [ - 2661 + 2666 ], "var_samp": [ - 2663 + 2668 ], "variance": [ - 2665 + 2670 ], "__typename": [ - 70 + 75 ] }, "player_premier_rank_history_aggregate_order_by": { "avg": [ - 2634 + 2639 ], "count": [ - 2011 + 2016 ], "max": [ - 2640 + 2645 ], "min": [ - 2642 + 2647 ], "stddev": [ - 2650 + 2655 ], "stddev_pop": [ - 2652 + 2657 ], "stddev_samp": [ - 2654 + 2659 ], "sum": [ - 2658 + 2663 ], "var_pop": [ - 2662 + 2667 ], "var_samp": [ - 2664 + 2669 ], "variance": [ - 2666 + 2671 ], "__typename": [ - 70 + 75 ] }, "player_premier_rank_history_arr_rel_insert_input": { "data": [ - 2638 + 2643 ], "on_conflict": [ - 2644 + 2649 ], "__typename": [ - 70 + 75 ] }, "player_premier_rank_history_avg_fields": { @@ -64293,56 +64399,56 @@ export default { 29 ], "__typename": [ - 70 + 75 ] }, "player_premier_rank_history_avg_order_by": { "previous_rank": [ - 2011 + 2016 ], "rank": [ - 2011 + 2016 ], "rank_type": [ - 2011 + 2016 ], "steam_id": [ - 2011 + 2016 ], "__typename": [ - 70 + 75 ] }, "player_premier_rank_history_bool_exp": { "_and": [ - 2635 + 2640 ], "_not": [ - 2635 + 2640 ], "_or": [ - 2635 + 2640 ], "id": [ - 3820 + 3866 ], "map": [ - 1353 + 1358 ], "map_id": [ - 3820 + 3866 ], "match": [ - 1835 + 1840 ], "match_id": [ - 3820 + 3866 ], "observed_at": [ - 3422 + 3468 ], "player": [ - 2882 + 2919 ], "previous_rank": [ 39 @@ -64354,10 +64460,10 @@ export default { 39 ], "steam_id": [ - 171 + 176 ], "__typename": [ - 70 + 75 ] }, "player_premier_rank_history_constraint": {}, @@ -64372,33 +64478,33 @@ export default { 38 ], "steam_id": [ - 169 + 174 ], "__typename": [ - 70 + 75 ] }, "player_premier_rank_history_insert_input": { "id": [ - 3818 + 3864 ], "map": [ - 1361 + 1366 ], "map_id": [ - 3818 + 3864 ], "match": [ - 1844 + 1849 ], "match_id": [ - 3818 + 3864 ], "observed_at": [ - 3421 + 3467 ], "player": [ - 2889 + 2926 ], "previous_rank": [ 38 @@ -64410,24 +64516,24 @@ export default { 38 ], "steam_id": [ - 169 + 174 ], "__typename": [ - 70 + 75 ] }, "player_premier_rank_history_max_fields": { "id": [ - 3818 + 3864 ], "map_id": [ - 3818 + 3864 ], "match_id": [ - 3818 + 3864 ], "observed_at": [ - 3421 + 3467 ], "previous_rank": [ 38 @@ -64439,53 +64545,53 @@ export default { 38 ], "steam_id": [ - 169 + 174 ], "__typename": [ - 70 + 75 ] }, "player_premier_rank_history_max_order_by": { "id": [ - 2011 + 2016 ], "map_id": [ - 2011 + 2016 ], "match_id": [ - 2011 + 2016 ], "observed_at": [ - 2011 + 2016 ], "previous_rank": [ - 2011 + 2016 ], "rank": [ - 2011 + 2016 ], "rank_type": [ - 2011 + 2016 ], "steam_id": [ - 2011 + 2016 ], "__typename": [ - 70 + 75 ] }, "player_premier_rank_history_min_fields": { "id": [ - 3818 + 3864 ], "map_id": [ - 3818 + 3864 ], "match_id": [ - 3818 + 3864 ], "observed_at": [ - 3421 + 3467 ], "previous_rank": [ 38 @@ -64497,39 +64603,39 @@ export default { 38 ], "steam_id": [ - 169 + 174 ], "__typename": [ - 70 + 75 ] }, "player_premier_rank_history_min_order_by": { "id": [ - 2011 + 2016 ], "map_id": [ - 2011 + 2016 ], "match_id": [ - 2011 + 2016 ], "observed_at": [ - 2011 + 2016 ], "previous_rank": [ - 2011 + 2016 ], "rank": [ - 2011 + 2016 ], "rank_type": [ - 2011 + 2016 ], "steam_id": [ - 2011 + 2016 ], "__typename": [ - 70 + 75 ] }, "player_premier_rank_history_mutation_response": { @@ -64537,85 +64643,85 @@ export default { 38 ], "returning": [ - 2626 + 2631 ], "__typename": [ - 70 + 75 ] }, "player_premier_rank_history_on_conflict": { "constraint": [ - 2636 + 2641 ], "update_columns": [ - 2659 + 2664 ], "where": [ - 2635 + 2640 ], "__typename": [ - 70 + 75 ] }, "player_premier_rank_history_order_by": { "id": [ - 2011 + 2016 ], "map": [ - 1363 + 1368 ], "map_id": [ - 2011 + 2016 ], "match": [ - 1846 + 1851 ], "match_id": [ - 2011 + 2016 ], "observed_at": [ - 2011 + 2016 ], "player": [ - 2891 + 2928 ], "previous_rank": [ - 2011 + 2016 ], "rank": [ - 2011 + 2016 ], "rank_type": [ - 2011 + 2016 ], "steam_id": [ - 2011 + 2016 ], "__typename": [ - 70 + 75 ] }, "player_premier_rank_history_pk_columns_input": { "id": [ - 3818 + 3864 ], "__typename": [ - 70 + 75 ] }, "player_premier_rank_history_select_column": {}, "player_premier_rank_history_set_input": { "id": [ - 3818 + 3864 ], "map_id": [ - 3818 + 3864 ], "match_id": [ - 3818 + 3864 ], "observed_at": [ - 3421 + 3467 ], "previous_rank": [ 38 @@ -64627,10 +64733,10 @@ export default { 38 ], "steam_id": [ - 169 + 174 ], "__typename": [ - 70 + 75 ] }, "player_premier_rank_history_stddev_fields": { @@ -64647,24 +64753,24 @@ export default { 29 ], "__typename": [ - 70 + 75 ] }, "player_premier_rank_history_stddev_order_by": { "previous_rank": [ - 2011 + 2016 ], "rank": [ - 2011 + 2016 ], "rank_type": [ - 2011 + 2016 ], "steam_id": [ - 2011 + 2016 ], "__typename": [ - 70 + 75 ] }, "player_premier_rank_history_stddev_pop_fields": { @@ -64681,24 +64787,24 @@ export default { 29 ], "__typename": [ - 70 + 75 ] }, "player_premier_rank_history_stddev_pop_order_by": { "previous_rank": [ - 2011 + 2016 ], "rank": [ - 2011 + 2016 ], "rank_type": [ - 2011 + 2016 ], "steam_id": [ - 2011 + 2016 ], "__typename": [ - 70 + 75 ] }, "player_premier_rank_history_stddev_samp_fields": { @@ -64715,49 +64821,49 @@ export default { 29 ], "__typename": [ - 70 + 75 ] }, "player_premier_rank_history_stddev_samp_order_by": { "previous_rank": [ - 2011 + 2016 ], "rank": [ - 2011 + 2016 ], "rank_type": [ - 2011 + 2016 ], "steam_id": [ - 2011 + 2016 ], "__typename": [ - 70 + 75 ] }, "player_premier_rank_history_stream_cursor_input": { "initial_value": [ - 2656 + 2661 ], "ordering": [ - 224 + 229 ], "__typename": [ - 70 + 75 ] }, "player_premier_rank_history_stream_cursor_value_input": { "id": [ - 3818 + 3864 ], "map_id": [ - 3818 + 3864 ], "match_id": [ - 3818 + 3864 ], "observed_at": [ - 3421 + 3467 ], "previous_rank": [ 38 @@ -64769,10 +64875,10 @@ export default { 38 ], "steam_id": [ - 169 + 174 ], "__typename": [ - 70 + 75 ] }, "player_premier_rank_history_sum_fields": { @@ -64786,42 +64892,42 @@ export default { 38 ], "steam_id": [ - 169 + 174 ], "__typename": [ - 70 + 75 ] }, "player_premier_rank_history_sum_order_by": { "previous_rank": [ - 2011 + 2016 ], "rank": [ - 2011 + 2016 ], "rank_type": [ - 2011 + 2016 ], "steam_id": [ - 2011 + 2016 ], "__typename": [ - 70 + 75 ] }, "player_premier_rank_history_update_column": {}, "player_premier_rank_history_updates": { "_inc": [ - 2637 + 2642 ], "_set": [ - 2648 + 2653 ], "where": [ - 2635 + 2640 ], "__typename": [ - 70 + 75 ] }, "player_premier_rank_history_var_pop_fields": { @@ -64838,24 +64944,24 @@ export default { 29 ], "__typename": [ - 70 + 75 ] }, "player_premier_rank_history_var_pop_order_by": { "previous_rank": [ - 2011 + 2016 ], "rank": [ - 2011 + 2016 ], "rank_type": [ - 2011 + 2016 ], "steam_id": [ - 2011 + 2016 ], "__typename": [ - 70 + 75 ] }, "player_premier_rank_history_var_samp_fields": { @@ -64872,24 +64978,24 @@ export default { 29 ], "__typename": [ - 70 + 75 ] }, "player_premier_rank_history_var_samp_order_by": { "previous_rank": [ - 2011 + 2016 ], "rank": [ - 2011 + 2016 ], "rank_type": [ - 2011 + 2016 ], "steam_id": [ - 2011 + 2016 ], "__typename": [ - 70 + 75 ] }, "player_premier_rank_history_variance_fields": { @@ -64906,109 +65012,109 @@ export default { 29 ], "__typename": [ - 70 + 75 ] }, "player_premier_rank_history_variance_order_by": { "previous_rank": [ - 2011 + 2016 ], "rank": [ - 2011 + 2016 ], "rank_type": [ - 2011 + 2016 ], "steam_id": [ - 2011 + 2016 ], "__typename": [ - 70 + 75 ] }, "player_sanctions": { "created_at": [ - 3421 + 3467 ], "deleted_at": [ - 3421 + 3467 ], "e_sanction_type": [ - 820 + 825 ], "id": [ - 3818 + 3864 ], "player": [ - 2878 + 2915 ], "player_steam_id": [ - 169 + 174 ], "reason": [ - 70 + 75 ], "remove_sanction_date": [ - 3421 + 3467 ], "sanctioned_by": [ - 2878 + 2915 ], "sanctioned_by_steam_id": [ - 169 + 174 ], "type": [ - 825 + 830 ], "__typename": [ - 70 + 75 ] }, "player_sanctions_aggregate": { "aggregate": [ - 2671 + 2676 ], "nodes": [ - 2667 + 2672 ], "__typename": [ - 70 + 75 ] }, "player_sanctions_aggregate_bool_exp": { "count": [ - 2670 + 2675 ], "__typename": [ - 70 + 75 ] }, "player_sanctions_aggregate_bool_exp_count": { "arguments": [ - 2688 + 2693 ], "distinct": [ 3 ], "filter": [ - 2676 + 2681 ], "predicate": [ 39 ], "__typename": [ - 70 + 75 ] }, "player_sanctions_aggregate_fields": { "avg": [ - 2674 + 2679 ], "count": [ 38, { "columns": [ - 2688, + 2693, "[player_sanctions_select_column!]" ], "distinct": [ @@ -65017,83 +65123,83 @@ export default { } ], "max": [ - 2680 + 2685 ], "min": [ - 2682 + 2687 ], "stddev": [ - 2690 + 2695 ], "stddev_pop": [ - 2692 + 2697 ], "stddev_samp": [ - 2694 + 2699 ], "sum": [ - 2698 + 2703 ], "var_pop": [ - 2702 + 2707 ], "var_samp": [ - 2704 + 2709 ], "variance": [ - 2706 + 2711 ], "__typename": [ - 70 + 75 ] }, "player_sanctions_aggregate_order_by": { "avg": [ - 2675 + 2680 ], "count": [ - 2011 + 2016 ], "max": [ - 2681 + 2686 ], "min": [ - 2683 + 2688 ], "stddev": [ - 2691 + 2696 ], "stddev_pop": [ - 2693 + 2698 ], "stddev_samp": [ - 2695 + 2700 ], "sum": [ - 2699 + 2704 ], "var_pop": [ - 2703 + 2708 ], "var_samp": [ - 2705 + 2710 ], "variance": [ - 2707 + 2712 ], "__typename": [ - 70 + 75 ] }, "player_sanctions_arr_rel_insert_input": { "data": [ - 2679 + 2684 ], "on_conflict": [ - 2685 + 2690 ], "__typename": [ - 70 + 75 ] }, "player_sanctions_avg_fields": { @@ -65104,219 +65210,219 @@ export default { 29 ], "__typename": [ - 70 + 75 ] }, "player_sanctions_avg_order_by": { "player_steam_id": [ - 2011 + 2016 ], "sanctioned_by_steam_id": [ - 2011 + 2016 ], "__typename": [ - 70 + 75 ] }, "player_sanctions_bool_exp": { "_and": [ - 2676 + 2681 ], "_not": [ - 2676 + 2681 ], "_or": [ - 2676 + 2681 ], "created_at": [ - 3422 + 3468 ], "deleted_at": [ - 3422 + 3468 ], "e_sanction_type": [ - 823 + 828 ], "id": [ - 3820 + 3866 ], "player": [ - 2882 + 2919 ], "player_steam_id": [ - 171 + 176 ], "reason": [ - 72 + 77 ], "remove_sanction_date": [ - 3422 + 3468 ], "sanctioned_by": [ - 2882 + 2919 ], "sanctioned_by_steam_id": [ - 171 + 176 ], "type": [ - 826 + 831 ], "__typename": [ - 70 + 75 ] }, "player_sanctions_constraint": {}, "player_sanctions_inc_input": { "player_steam_id": [ - 169 + 174 ], "sanctioned_by_steam_id": [ - 169 + 174 ], "__typename": [ - 70 + 75 ] }, "player_sanctions_insert_input": { "created_at": [ - 3421 + 3467 ], "deleted_at": [ - 3421 + 3467 ], "e_sanction_type": [ - 831 + 836 ], "id": [ - 3818 + 3864 ], "player": [ - 2889 + 2926 ], "player_steam_id": [ - 169 + 174 ], "reason": [ - 70 + 75 ], "remove_sanction_date": [ - 3421 + 3467 ], "sanctioned_by": [ - 2889 + 2926 ], "sanctioned_by_steam_id": [ - 169 + 174 ], "type": [ - 825 + 830 ], "__typename": [ - 70 + 75 ] }, "player_sanctions_max_fields": { "created_at": [ - 3421 + 3467 ], "deleted_at": [ - 3421 + 3467 ], "id": [ - 3818 + 3864 ], "player_steam_id": [ - 169 + 174 ], "reason": [ - 70 + 75 ], "remove_sanction_date": [ - 3421 + 3467 ], "sanctioned_by_steam_id": [ - 169 + 174 ], "__typename": [ - 70 + 75 ] }, "player_sanctions_max_order_by": { "created_at": [ - 2011 + 2016 ], "deleted_at": [ - 2011 + 2016 ], "id": [ - 2011 + 2016 ], "player_steam_id": [ - 2011 + 2016 ], "reason": [ - 2011 + 2016 ], "remove_sanction_date": [ - 2011 + 2016 ], "sanctioned_by_steam_id": [ - 2011 + 2016 ], "__typename": [ - 70 + 75 ] }, "player_sanctions_min_fields": { "created_at": [ - 3421 + 3467 ], "deleted_at": [ - 3421 + 3467 ], "id": [ - 3818 + 3864 ], "player_steam_id": [ - 169 + 174 ], "reason": [ - 70 + 75 ], "remove_sanction_date": [ - 3421 + 3467 ], "sanctioned_by_steam_id": [ - 169 + 174 ], "__typename": [ - 70 + 75 ] }, "player_sanctions_min_order_by": { "created_at": [ - 2011 + 2016 ], "deleted_at": [ - 2011 + 2016 ], "id": [ - 2011 + 2016 ], "player_steam_id": [ - 2011 + 2016 ], "reason": [ - 2011 + 2016 ], "remove_sanction_date": [ - 2011 + 2016 ], "sanctioned_by_steam_id": [ - 2011 + 2016 ], "__typename": [ - 70 + 75 ] }, "player_sanctions_mutation_response": { @@ -65324,103 +65430,103 @@ export default { 38 ], "returning": [ - 2667 + 2672 ], "__typename": [ - 70 + 75 ] }, "player_sanctions_on_conflict": { "constraint": [ - 2677 + 2682 ], "update_columns": [ - 2700 + 2705 ], "where": [ - 2676 + 2681 ], "__typename": [ - 70 + 75 ] }, "player_sanctions_order_by": { "created_at": [ - 2011 + 2016 ], "deleted_at": [ - 2011 + 2016 ], "e_sanction_type": [ - 833 + 838 ], "id": [ - 2011 + 2016 ], "player": [ - 2891 + 2928 ], "player_steam_id": [ - 2011 + 2016 ], "reason": [ - 2011 + 2016 ], "remove_sanction_date": [ - 2011 + 2016 ], "sanctioned_by": [ - 2891 + 2928 ], "sanctioned_by_steam_id": [ - 2011 + 2016 ], "type": [ - 2011 + 2016 ], "__typename": [ - 70 + 75 ] }, "player_sanctions_pk_columns_input": { "created_at": [ - 3421 + 3467 ], "id": [ - 3818 + 3864 ], "__typename": [ - 70 + 75 ] }, "player_sanctions_select_column": {}, "player_sanctions_set_input": { "created_at": [ - 3421 + 3467 ], "deleted_at": [ - 3421 + 3467 ], "id": [ - 3818 + 3864 ], "player_steam_id": [ - 169 + 174 ], "reason": [ - 70 + 75 ], "remove_sanction_date": [ - 3421 + 3467 ], "sanctioned_by_steam_id": [ - 169 + 174 ], "type": [ - 825 + 830 ], "__typename": [ - 70 + 75 ] }, "player_sanctions_stddev_fields": { @@ -65431,18 +65537,18 @@ export default { 29 ], "__typename": [ - 70 + 75 ] }, "player_sanctions_stddev_order_by": { "player_steam_id": [ - 2011 + 2016 ], "sanctioned_by_steam_id": [ - 2011 + 2016 ], "__typename": [ - 70 + 75 ] }, "player_sanctions_stddev_pop_fields": { @@ -65453,18 +65559,18 @@ export default { 29 ], "__typename": [ - 70 + 75 ] }, "player_sanctions_stddev_pop_order_by": { "player_steam_id": [ - 2011 + 2016 ], "sanctioned_by_steam_id": [ - 2011 + 2016 ], "__typename": [ - 70 + 75 ] }, "player_sanctions_stddev_samp_fields": { @@ -65475,95 +65581,95 @@ export default { 29 ], "__typename": [ - 70 + 75 ] }, "player_sanctions_stddev_samp_order_by": { "player_steam_id": [ - 2011 + 2016 ], "sanctioned_by_steam_id": [ - 2011 + 2016 ], "__typename": [ - 70 + 75 ] }, "player_sanctions_stream_cursor_input": { "initial_value": [ - 2697 + 2702 ], "ordering": [ - 224 + 229 ], "__typename": [ - 70 + 75 ] }, "player_sanctions_stream_cursor_value_input": { "created_at": [ - 3421 + 3467 ], "deleted_at": [ - 3421 + 3467 ], "id": [ - 3818 + 3864 ], "player_steam_id": [ - 169 + 174 ], "reason": [ - 70 + 75 ], "remove_sanction_date": [ - 3421 + 3467 ], "sanctioned_by_steam_id": [ - 169 + 174 ], "type": [ - 825 + 830 ], "__typename": [ - 70 + 75 ] }, "player_sanctions_sum_fields": { "player_steam_id": [ - 169 + 174 ], "sanctioned_by_steam_id": [ - 169 + 174 ], "__typename": [ - 70 + 75 ] }, "player_sanctions_sum_order_by": { "player_steam_id": [ - 2011 + 2016 ], "sanctioned_by_steam_id": [ - 2011 + 2016 ], "__typename": [ - 70 + 75 ] }, "player_sanctions_update_column": {}, "player_sanctions_updates": { "_inc": [ - 2678 + 2683 ], "_set": [ - 2689 + 2694 ], "where": [ - 2676 + 2681 ], "__typename": [ - 70 + 75 ] }, "player_sanctions_var_pop_fields": { @@ -65574,18 +65680,18 @@ export default { 29 ], "__typename": [ - 70 + 75 ] }, "player_sanctions_var_pop_order_by": { "player_steam_id": [ - 2011 + 2016 ], "sanctioned_by_steam_id": [ - 2011 + 2016 ], "__typename": [ - 70 + 75 ] }, "player_sanctions_var_samp_fields": { @@ -65596,18 +65702,18 @@ export default { 29 ], "__typename": [ - 70 + 75 ] }, "player_sanctions_var_samp_order_by": { "player_steam_id": [ - 2011 + 2016 ], "sanctioned_by_steam_id": [ - 2011 + 2016 ], "__typename": [ - 70 + 75 ] }, "player_sanctions_variance_fields": { @@ -65618,66 +65724,66 @@ export default { 29 ], "__typename": [ - 70 + 75 ] }, "player_sanctions_variance_order_by": { "player_steam_id": [ - 2011 + 2016 ], "sanctioned_by_steam_id": [ - 2011 + 2016 ], "__typename": [ - 70 + 75 ] }, "player_stats": { "assists": [ - 169 + 174 ], "deaths": [ - 169 + 174 ], "headshot_percentage": [ - 1084 + 1089 ], "headshots": [ - 169 + 174 ], "kills": [ - 169 + 174 ], "player": [ - 2878 + 2915 ], "player_steam_id": [ - 169 + 174 ], "__typename": [ - 70 + 75 ] }, "player_stats_aggregate": { "aggregate": [ - 2710 + 2715 ], "nodes": [ - 2708 + 2713 ], "__typename": [ - 70 + 75 ] }, "player_stats_aggregate_fields": { "avg": [ - 2711 + 2716 ], "count": [ 38, { "columns": [ - 2723, + 2728, "[player_stats_select_column!]" ], "distinct": [ @@ -65686,34 +65792,34 @@ export default { } ], "max": [ - 2716 + 2721 ], "min": [ - 2717 + 2722 ], "stddev": [ - 2725 + 2730 ], "stddev_pop": [ - 2726 + 2731 ], "stddev_samp": [ - 2727 + 2732 ], "sum": [ - 2730 + 2735 ], "var_pop": [ - 2733 + 2738 ], "var_samp": [ - 2734 + 2739 ], "variance": [ - 2735 + 2740 ], "__typename": [ - 70 + 75 ] }, "player_stats_avg_fields": { @@ -65736,138 +65842,138 @@ export default { 29 ], "__typename": [ - 70 + 75 ] }, "player_stats_bool_exp": { "_and": [ - 2712 + 2717 ], "_not": [ - 2712 + 2717 ], "_or": [ - 2712 + 2717 ], "assists": [ - 171 + 176 ], "deaths": [ - 171 + 176 ], "headshot_percentage": [ - 1085 + 1090 ], "headshots": [ - 171 + 176 ], "kills": [ - 171 + 176 ], "player": [ - 2882 + 2919 ], "player_steam_id": [ - 171 + 176 ], "__typename": [ - 70 + 75 ] }, "player_stats_constraint": {}, "player_stats_inc_input": { "assists": [ - 169 + 174 ], "deaths": [ - 169 + 174 ], "headshot_percentage": [ - 1084 + 1089 ], "headshots": [ - 169 + 174 ], "kills": [ - 169 + 174 ], "player_steam_id": [ - 169 + 174 ], "__typename": [ - 70 + 75 ] }, "player_stats_insert_input": { "assists": [ - 169 + 174 ], "deaths": [ - 169 + 174 ], "headshot_percentage": [ - 1084 + 1089 ], "headshots": [ - 169 + 174 ], "kills": [ - 169 + 174 ], "player": [ - 2889 + 2926 ], "player_steam_id": [ - 169 + 174 ], "__typename": [ - 70 + 75 ] }, "player_stats_max_fields": { "assists": [ - 169 + 174 ], "deaths": [ - 169 + 174 ], "headshot_percentage": [ - 1084 + 1089 ], "headshots": [ - 169 + 174 ], "kills": [ - 169 + 174 ], "player_steam_id": [ - 169 + 174 ], "__typename": [ - 70 + 75 ] }, "player_stats_min_fields": { "assists": [ - 169 + 174 ], "deaths": [ - 169 + 174 ], "headshot_percentage": [ - 1084 + 1089 ], "headshots": [ - 169 + 174 ], "kills": [ - 169 + 174 ], "player_steam_id": [ - 169 + 174 ], "__typename": [ - 70 + 75 ] }, "player_stats_mutation_response": { @@ -65875,93 +65981,93 @@ export default { 38 ], "returning": [ - 2708 + 2713 ], "__typename": [ - 70 + 75 ] }, "player_stats_obj_rel_insert_input": { "data": [ - 2715 + 2720 ], "on_conflict": [ - 2720 + 2725 ], "__typename": [ - 70 + 75 ] }, "player_stats_on_conflict": { "constraint": [ - 2713 + 2718 ], "update_columns": [ - 2731 + 2736 ], "where": [ - 2712 + 2717 ], "__typename": [ - 70 + 75 ] }, "player_stats_order_by": { "assists": [ - 2011 + 2016 ], "deaths": [ - 2011 + 2016 ], "headshot_percentage": [ - 2011 + 2016 ], "headshots": [ - 2011 + 2016 ], "kills": [ - 2011 + 2016 ], "player": [ - 2891 + 2928 ], "player_steam_id": [ - 2011 + 2016 ], "__typename": [ - 70 + 75 ] }, "player_stats_pk_columns_input": { "player_steam_id": [ - 169 + 174 ], "__typename": [ - 70 + 75 ] }, "player_stats_select_column": {}, "player_stats_set_input": { "assists": [ - 169 + 174 ], "deaths": [ - 169 + 174 ], "headshot_percentage": [ - 1084 + 1089 ], "headshots": [ - 169 + 174 ], "kills": [ - 169 + 174 ], "player_steam_id": [ - 169 + 174 ], "__typename": [ - 70 + 75 ] }, "player_stats_stddev_fields": { @@ -65984,7 +66090,7 @@ export default { 29 ], "__typename": [ - 70 + 75 ] }, "player_stats_stddev_pop_fields": { @@ -66007,7 +66113,7 @@ export default { 29 ], "__typename": [ - 70 + 75 ] }, "player_stats_stddev_samp_fields": { @@ -66030,79 +66136,79 @@ export default { 29 ], "__typename": [ - 70 + 75 ] }, "player_stats_stream_cursor_input": { "initial_value": [ - 2729 + 2734 ], "ordering": [ - 224 + 229 ], "__typename": [ - 70 + 75 ] }, "player_stats_stream_cursor_value_input": { "assists": [ - 169 + 174 ], "deaths": [ - 169 + 174 ], "headshot_percentage": [ - 1084 + 1089 ], "headshots": [ - 169 + 174 ], "kills": [ - 169 + 174 ], "player_steam_id": [ - 169 + 174 ], "__typename": [ - 70 + 75 ] }, "player_stats_sum_fields": { "assists": [ - 169 + 174 ], "deaths": [ - 169 + 174 ], "headshot_percentage": [ - 1084 + 1089 ], "headshots": [ - 169 + 174 ], "kills": [ - 169 + 174 ], "player_steam_id": [ - 169 + 174 ], "__typename": [ - 70 + 75 ] }, "player_stats_update_column": {}, "player_stats_updates": { "_inc": [ - 2714 + 2719 ], "_set": [ - 2724 + 2729 ], "where": [ - 2712 + 2717 ], "__typename": [ - 70 + 75 ] }, "player_stats_var_pop_fields": { @@ -66125,7 +66231,7 @@ export default { 29 ], "__typename": [ - 70 + 75 ] }, "player_stats_var_samp_fields": { @@ -66148,7 +66254,7 @@ export default { 29 ], "__typename": [ - 70 + 75 ] }, "player_stats_variance_fields": { @@ -66171,58 +66277,583 @@ export default { 29 ], "__typename": [ - 70 + 75 + ] + }, + "player_steam_bot_friend": { + "bot_steam_account_id": [ + 3864 + ], + "bot_steamid64": [ + 174 + ], + "created_at": [ + 3467 + ], + "friended_at": [ + 3467 + ], + "last_presence_state": [ + 1240, + { + "path": [ + 75 + ] + } + ], + "player": [ + 2915 + ], + "status": [ + 75 + ], + "steam_id": [ + 174 + ], + "updated_at": [ + 3467 + ], + "__typename": [ + 75 + ] + }, + "player_steam_bot_friend_aggregate": { + "aggregate": [ + 2743 + ], + "nodes": [ + 2741 + ], + "__typename": [ + 75 + ] + }, + "player_steam_bot_friend_aggregate_fields": { + "avg": [ + 2745 + ], + "count": [ + 38, + { + "columns": [ + 2760, + "[player_steam_bot_friend_select_column!]" + ], + "distinct": [ + 3 + ] + } + ], + "max": [ + 2753 + ], + "min": [ + 2754 + ], + "stddev": [ + 2762 + ], + "stddev_pop": [ + 2763 + ], + "stddev_samp": [ + 2764 + ], + "sum": [ + 2767 + ], + "var_pop": [ + 2770 + ], + "var_samp": [ + 2771 + ], + "variance": [ + 2772 + ], + "__typename": [ + 75 + ] + }, + "player_steam_bot_friend_append_input": { + "last_presence_state": [ + 1240 + ], + "__typename": [ + 75 + ] + }, + "player_steam_bot_friend_avg_fields": { + "bot_steamid64": [ + 29 + ], + "steam_id": [ + 29 + ], + "__typename": [ + 75 + ] + }, + "player_steam_bot_friend_bool_exp": { + "_and": [ + 2746 + ], + "_not": [ + 2746 + ], + "_or": [ + 2746 + ], + "bot_steam_account_id": [ + 3866 + ], + "bot_steamid64": [ + 176 + ], + "created_at": [ + 3468 + ], + "friended_at": [ + 3468 + ], + "last_presence_state": [ + 1242 + ], + "player": [ + 2919 + ], + "status": [ + 77 + ], + "steam_id": [ + 176 + ], + "updated_at": [ + 3468 + ], + "__typename": [ + 75 + ] + }, + "player_steam_bot_friend_constraint": {}, + "player_steam_bot_friend_delete_at_path_input": { + "last_presence_state": [ + 75 + ], + "__typename": [ + 75 + ] + }, + "player_steam_bot_friend_delete_elem_input": { + "last_presence_state": [ + 38 + ], + "__typename": [ + 75 + ] + }, + "player_steam_bot_friend_delete_key_input": { + "last_presence_state": [ + 75 + ], + "__typename": [ + 75 + ] + }, + "player_steam_bot_friend_inc_input": { + "bot_steamid64": [ + 174 + ], + "steam_id": [ + 174 + ], + "__typename": [ + 75 + ] + }, + "player_steam_bot_friend_insert_input": { + "bot_steam_account_id": [ + 3864 + ], + "bot_steamid64": [ + 174 + ], + "created_at": [ + 3467 + ], + "friended_at": [ + 3467 + ], + "last_presence_state": [ + 1240 + ], + "player": [ + 2926 + ], + "status": [ + 75 + ], + "steam_id": [ + 174 + ], + "updated_at": [ + 3467 + ], + "__typename": [ + 75 + ] + }, + "player_steam_bot_friend_max_fields": { + "bot_steam_account_id": [ + 3864 + ], + "bot_steamid64": [ + 174 + ], + "created_at": [ + 3467 + ], + "friended_at": [ + 3467 + ], + "status": [ + 75 + ], + "steam_id": [ + 174 + ], + "updated_at": [ + 3467 + ], + "__typename": [ + 75 + ] + }, + "player_steam_bot_friend_min_fields": { + "bot_steam_account_id": [ + 3864 + ], + "bot_steamid64": [ + 174 + ], + "created_at": [ + 3467 + ], + "friended_at": [ + 3467 + ], + "status": [ + 75 + ], + "steam_id": [ + 174 + ], + "updated_at": [ + 3467 + ], + "__typename": [ + 75 + ] + }, + "player_steam_bot_friend_mutation_response": { + "affected_rows": [ + 38 + ], + "returning": [ + 2741 + ], + "__typename": [ + 75 + ] + }, + "player_steam_bot_friend_on_conflict": { + "constraint": [ + 2747 + ], + "update_columns": [ + 2768 + ], + "where": [ + 2746 + ], + "__typename": [ + 75 + ] + }, + "player_steam_bot_friend_order_by": { + "bot_steam_account_id": [ + 2016 + ], + "bot_steamid64": [ + 2016 + ], + "created_at": [ + 2016 + ], + "friended_at": [ + 2016 + ], + "last_presence_state": [ + 2016 + ], + "player": [ + 2928 + ], + "status": [ + 2016 + ], + "steam_id": [ + 2016 + ], + "updated_at": [ + 2016 + ], + "__typename": [ + 75 + ] + }, + "player_steam_bot_friend_pk_columns_input": { + "steam_id": [ + 174 + ], + "__typename": [ + 75 + ] + }, + "player_steam_bot_friend_prepend_input": { + "last_presence_state": [ + 1240 + ], + "__typename": [ + 75 + ] + }, + "player_steam_bot_friend_select_column": {}, + "player_steam_bot_friend_set_input": { + "bot_steam_account_id": [ + 3864 + ], + "bot_steamid64": [ + 174 + ], + "created_at": [ + 3467 + ], + "friended_at": [ + 3467 + ], + "last_presence_state": [ + 1240 + ], + "status": [ + 75 + ], + "steam_id": [ + 174 + ], + "updated_at": [ + 3467 + ], + "__typename": [ + 75 + ] + }, + "player_steam_bot_friend_stddev_fields": { + "bot_steamid64": [ + 29 + ], + "steam_id": [ + 29 + ], + "__typename": [ + 75 + ] + }, + "player_steam_bot_friend_stddev_pop_fields": { + "bot_steamid64": [ + 29 + ], + "steam_id": [ + 29 + ], + "__typename": [ + 75 + ] + }, + "player_steam_bot_friend_stddev_samp_fields": { + "bot_steamid64": [ + 29 + ], + "steam_id": [ + 29 + ], + "__typename": [ + 75 + ] + }, + "player_steam_bot_friend_stream_cursor_input": { + "initial_value": [ + 2766 + ], + "ordering": [ + 229 + ], + "__typename": [ + 75 + ] + }, + "player_steam_bot_friend_stream_cursor_value_input": { + "bot_steam_account_id": [ + 3864 + ], + "bot_steamid64": [ + 174 + ], + "created_at": [ + 3467 + ], + "friended_at": [ + 3467 + ], + "last_presence_state": [ + 1240 + ], + "status": [ + 75 + ], + "steam_id": [ + 174 + ], + "updated_at": [ + 3467 + ], + "__typename": [ + 75 + ] + }, + "player_steam_bot_friend_sum_fields": { + "bot_steamid64": [ + 174 + ], + "steam_id": [ + 174 + ], + "__typename": [ + 75 + ] + }, + "player_steam_bot_friend_update_column": {}, + "player_steam_bot_friend_updates": { + "_append": [ + 2744 + ], + "_delete_at_path": [ + 2748 + ], + "_delete_elem": [ + 2749 + ], + "_delete_key": [ + 2750 + ], + "_inc": [ + 2751 + ], + "_prepend": [ + 2759 + ], + "_set": [ + 2761 + ], + "where": [ + 2746 + ], + "__typename": [ + 75 + ] + }, + "player_steam_bot_friend_var_pop_fields": { + "bot_steamid64": [ + 29 + ], + "steam_id": [ + 29 + ], + "__typename": [ + 75 + ] + }, + "player_steam_bot_friend_var_samp_fields": { + "bot_steamid64": [ + 29 + ], + "steam_id": [ + 29 + ], + "__typename": [ + 75 + ] + }, + "player_steam_bot_friend_variance_fields": { + "bot_steamid64": [ + 29 + ], + "steam_id": [ + 29 + ], + "__typename": [ + 75 ] }, "player_steam_match_auth": { "auth_code": [ - 70 + 75 ], "created_at": [ - 3421 + 3467 ], "last_error": [ - 70 + 75 ], "last_known_share_code": [ - 70 + 75 ], "last_polled_at": [ - 3421 + 3467 ], "player": [ - 2878 + 2915 ], "steam_id": [ - 169 + 174 ], "updated_at": [ - 3421 + 3467 ], "__typename": [ - 70 + 75 ] }, "player_steam_match_auth_aggregate": { "aggregate": [ - 2738 + 2775 ], "nodes": [ - 2736 + 2773 ], "__typename": [ - 70 + 75 ] }, "player_steam_match_auth_aggregate_fields": { "avg": [ - 2739 + 2776 ], "count": [ 38, { "columns": [ - 2750, + 2787, "[player_steam_match_auth_select_column!]" ], "distinct": [ @@ -66231,34 +66862,34 @@ export default { } ], "max": [ - 2744 + 2781 ], "min": [ - 2745 + 2782 ], "stddev": [ - 2752 + 2789 ], "stddev_pop": [ - 2753 + 2790 ], "stddev_samp": [ - 2754 + 2791 ], "sum": [ - 2757 + 2794 ], "var_pop": [ - 2760 + 2797 ], "var_samp": [ - 2761 + 2798 ], "variance": [ - 2762 + 2799 ], "__typename": [ - 70 + 75 ] }, "player_steam_match_auth_avg_fields": { @@ -66266,135 +66897,135 @@ export default { 29 ], "__typename": [ - 70 + 75 ] }, "player_steam_match_auth_bool_exp": { "_and": [ - 2740 + 2777 ], "_not": [ - 2740 + 2777 ], "_or": [ - 2740 + 2777 ], "auth_code": [ - 72 + 77 ], "created_at": [ - 3422 + 3468 ], "last_error": [ - 72 + 77 ], "last_known_share_code": [ - 72 + 77 ], "last_polled_at": [ - 3422 + 3468 ], "player": [ - 2882 + 2919 ], "steam_id": [ - 171 + 176 ], "updated_at": [ - 3422 + 3468 ], "__typename": [ - 70 + 75 ] }, "player_steam_match_auth_constraint": {}, "player_steam_match_auth_inc_input": { "steam_id": [ - 169 + 174 ], "__typename": [ - 70 + 75 ] }, "player_steam_match_auth_insert_input": { "auth_code": [ - 70 + 75 ], "created_at": [ - 3421 + 3467 ], "last_error": [ - 70 + 75 ], "last_known_share_code": [ - 70 + 75 ], "last_polled_at": [ - 3421 + 3467 ], "player": [ - 2889 + 2926 ], "steam_id": [ - 169 + 174 ], "updated_at": [ - 3421 + 3467 ], "__typename": [ - 70 + 75 ] }, "player_steam_match_auth_max_fields": { "auth_code": [ - 70 + 75 ], "created_at": [ - 3421 + 3467 ], "last_error": [ - 70 + 75 ], "last_known_share_code": [ - 70 + 75 ], "last_polled_at": [ - 3421 + 3467 ], "steam_id": [ - 169 + 174 ], "updated_at": [ - 3421 + 3467 ], "__typename": [ - 70 + 75 ] }, "player_steam_match_auth_min_fields": { "auth_code": [ - 70 + 75 ], "created_at": [ - 3421 + 3467 ], "last_error": [ - 70 + 75 ], "last_known_share_code": [ - 70 + 75 ], "last_polled_at": [ - 3421 + 3467 ], "steam_id": [ - 169 + 174 ], "updated_at": [ - 3421 + 3467 ], "__typename": [ - 70 + 75 ] }, "player_steam_match_auth_mutation_response": { @@ -66402,88 +67033,88 @@ export default { 38 ], "returning": [ - 2736 + 2773 ], "__typename": [ - 70 + 75 ] }, "player_steam_match_auth_on_conflict": { "constraint": [ - 2741 + 2778 ], "update_columns": [ - 2758 + 2795 ], "where": [ - 2740 + 2777 ], "__typename": [ - 70 + 75 ] }, "player_steam_match_auth_order_by": { "auth_code": [ - 2011 + 2016 ], "created_at": [ - 2011 + 2016 ], "last_error": [ - 2011 + 2016 ], "last_known_share_code": [ - 2011 + 2016 ], "last_polled_at": [ - 2011 + 2016 ], "player": [ - 2891 + 2928 ], "steam_id": [ - 2011 + 2016 ], "updated_at": [ - 2011 + 2016 ], "__typename": [ - 70 + 75 ] }, "player_steam_match_auth_pk_columns_input": { "steam_id": [ - 169 + 174 ], "__typename": [ - 70 + 75 ] }, "player_steam_match_auth_select_column": {}, "player_steam_match_auth_set_input": { "auth_code": [ - 70 + 75 ], "created_at": [ - 3421 + 3467 ], "last_error": [ - 70 + 75 ], "last_known_share_code": [ - 70 + 75 ], "last_polled_at": [ - 3421 + 3467 ], "steam_id": [ - 169 + 174 ], "updated_at": [ - 3421 + 3467 ], "__typename": [ - 70 + 75 ] }, "player_steam_match_auth_stddev_fields": { @@ -66491,7 +67122,7 @@ export default { 29 ], "__typename": [ - 70 + 75 ] }, "player_steam_match_auth_stddev_pop_fields": { @@ -66499,7 +67130,7 @@ export default { 29 ], "__typename": [ - 70 + 75 ] }, "player_steam_match_auth_stddev_samp_fields": { @@ -66507,67 +67138,67 @@ export default { 29 ], "__typename": [ - 70 + 75 ] }, "player_steam_match_auth_stream_cursor_input": { "initial_value": [ - 2756 + 2793 ], "ordering": [ - 224 + 229 ], "__typename": [ - 70 + 75 ] }, "player_steam_match_auth_stream_cursor_value_input": { "auth_code": [ - 70 + 75 ], "created_at": [ - 3421 + 3467 ], "last_error": [ - 70 + 75 ], "last_known_share_code": [ - 70 + 75 ], "last_polled_at": [ - 3421 + 3467 ], "steam_id": [ - 169 + 174 ], "updated_at": [ - 3421 + 3467 ], "__typename": [ - 70 + 75 ] }, "player_steam_match_auth_sum_fields": { "steam_id": [ - 169 + 174 ], "__typename": [ - 70 + 75 ] }, "player_steam_match_auth_update_column": {}, "player_steam_match_auth_updates": { "_inc": [ - 2742 + 2779 ], "_set": [ - 2751 + 2788 ], "where": [ - 2740 + 2777 ], "__typename": [ - 70 + 75 ] }, "player_steam_match_auth_var_pop_fields": { @@ -66575,7 +67206,7 @@ export default { 29 ], "__typename": [ - 70 + 75 ] }, "player_steam_match_auth_var_samp_fields": { @@ -66583,7 +67214,7 @@ export default { 29 ], "__typename": [ - 70 + 75 ] }, "player_steam_match_auth_variance_fields": { @@ -66591,30 +67222,30 @@ export default { 29 ], "__typename": [ - 70 + 75 ] }, "player_unused_utility": { "deleted_at": [ - 3421 + 3467 ], "match": [ - 1826 + 1831 ], "match_id": [ - 3818 + 3864 ], "match_map": [ - 1664 + 1669 ], "match_map_id": [ - 3818 + 3864 ], "player": [ - 2878 + 2915 ], "player_steam_id": [ - 169 + 174 ], "round": [ 38 @@ -66623,54 +67254,54 @@ export default { 38 ], "__typename": [ - 70 + 75 ] }, "player_unused_utility_aggregate": { "aggregate": [ - 2767 + 2804 ], "nodes": [ - 2763 + 2800 ], "__typename": [ - 70 + 75 ] }, "player_unused_utility_aggregate_bool_exp": { "count": [ - 2766 + 2803 ], "__typename": [ - 70 + 75 ] }, "player_unused_utility_aggregate_bool_exp_count": { "arguments": [ - 2784 + 2821 ], "distinct": [ 3 ], "filter": [ - 2772 + 2809 ], "predicate": [ 39 ], "__typename": [ - 70 + 75 ] }, "player_unused_utility_aggregate_fields": { "avg": [ - 2770 + 2807 ], "count": [ 38, { "columns": [ - 2784, + 2821, "[player_unused_utility_select_column!]" ], "distinct": [ @@ -66679,83 +67310,83 @@ export default { } ], "max": [ - 2776 + 2813 ], "min": [ - 2778 + 2815 ], "stddev": [ - 2786 + 2823 ], "stddev_pop": [ - 2788 + 2825 ], "stddev_samp": [ - 2790 + 2827 ], "sum": [ - 2794 + 2831 ], "var_pop": [ - 2798 + 2835 ], "var_samp": [ - 2800 + 2837 ], "variance": [ - 2802 + 2839 ], "__typename": [ - 70 + 75 ] }, "player_unused_utility_aggregate_order_by": { "avg": [ - 2771 + 2808 ], "count": [ - 2011 + 2016 ], "max": [ - 2777 + 2814 ], "min": [ - 2779 + 2816 ], "stddev": [ - 2787 + 2824 ], "stddev_pop": [ - 2789 + 2826 ], "stddev_samp": [ - 2791 + 2828 ], "sum": [ - 2795 + 2832 ], "var_pop": [ - 2799 + 2836 ], "var_samp": [ - 2801 + 2838 ], "variance": [ - 2803 + 2840 ], "__typename": [ - 70 + 75 ] }, "player_unused_utility_arr_rel_insert_input": { "data": [ - 2775 + 2812 ], "on_conflict": [ - 2781 + 2818 ], "__typename": [ - 70 + 75 ] }, "player_unused_utility_avg_fields": { @@ -66769,53 +67400,53 @@ export default { 29 ], "__typename": [ - 70 + 75 ] }, "player_unused_utility_avg_order_by": { "player_steam_id": [ - 2011 + 2016 ], "round": [ - 2011 + 2016 ], "unused": [ - 2011 + 2016 ], "__typename": [ - 70 + 75 ] }, "player_unused_utility_bool_exp": { "_and": [ - 2772 + 2809 ], "_not": [ - 2772 + 2809 ], "_or": [ - 2772 + 2809 ], "deleted_at": [ - 3422 + 3468 ], "match": [ - 1835 + 1840 ], "match_id": [ - 3820 + 3866 ], "match_map": [ - 1673 + 1678 ], "match_map_id": [ - 3820 + 3866 ], "player": [ - 2882 + 2919 ], "player_steam_id": [ - 171 + 176 ], "round": [ 39 @@ -66824,13 +67455,13 @@ export default { 39 ], "__typename": [ - 70 + 75 ] }, "player_unused_utility_constraint": {}, "player_unused_utility_inc_input": { "player_steam_id": [ - 169 + 174 ], "round": [ 38 @@ -66839,30 +67470,30 @@ export default { 38 ], "__typename": [ - 70 + 75 ] }, "player_unused_utility_insert_input": { "deleted_at": [ - 3421 + 3467 ], "match": [ - 1844 + 1849 ], "match_id": [ - 3818 + 3864 ], "match_map": [ - 1682 + 1687 ], "match_map_id": [ - 3818 + 3864 ], "player": [ - 2889 + 2926 ], "player_steam_id": [ - 169 + 174 ], "round": [ 38 @@ -66871,21 +67502,21 @@ export default { 38 ], "__typename": [ - 70 + 75 ] }, "player_unused_utility_max_fields": { "deleted_at": [ - 3421 + 3467 ], "match_id": [ - 3818 + 3864 ], "match_map_id": [ - 3818 + 3864 ], "player_steam_id": [ - 169 + 174 ], "round": [ 38 @@ -66894,44 +67525,44 @@ export default { 38 ], "__typename": [ - 70 + 75 ] }, "player_unused_utility_max_order_by": { "deleted_at": [ - 2011 + 2016 ], "match_id": [ - 2011 + 2016 ], "match_map_id": [ - 2011 + 2016 ], "player_steam_id": [ - 2011 + 2016 ], "round": [ - 2011 + 2016 ], "unused": [ - 2011 + 2016 ], "__typename": [ - 70 + 75 ] }, "player_unused_utility_min_fields": { "deleted_at": [ - 3421 + 3467 ], "match_id": [ - 3818 + 3864 ], "match_map_id": [ - 3818 + 3864 ], "player_steam_id": [ - 169 + 174 ], "round": [ 38 @@ -66940,30 +67571,30 @@ export default { 38 ], "__typename": [ - 70 + 75 ] }, "player_unused_utility_min_order_by": { "deleted_at": [ - 2011 + 2016 ], "match_id": [ - 2011 + 2016 ], "match_map_id": [ - 2011 + 2016 ], "player_steam_id": [ - 2011 + 2016 ], "round": [ - 2011 + 2016 ], "unused": [ - 2011 + 2016 ], "__typename": [ - 70 + 75 ] }, "player_unused_utility_mutation_response": { @@ -66971,82 +67602,82 @@ export default { 38 ], "returning": [ - 2763 + 2800 ], "__typename": [ - 70 + 75 ] }, "player_unused_utility_on_conflict": { "constraint": [ - 2773 + 2810 ], "update_columns": [ - 2796 + 2833 ], "where": [ - 2772 + 2809 ], "__typename": [ - 70 + 75 ] }, "player_unused_utility_order_by": { "deleted_at": [ - 2011 + 2016 ], "match": [ - 1846 + 1851 ], "match_id": [ - 2011 + 2016 ], "match_map": [ - 1684 + 1689 ], "match_map_id": [ - 2011 + 2016 ], "player": [ - 2891 + 2928 ], "player_steam_id": [ - 2011 + 2016 ], "round": [ - 2011 + 2016 ], "unused": [ - 2011 + 2016 ], "__typename": [ - 70 + 75 ] }, "player_unused_utility_pk_columns_input": { "match_map_id": [ - 3818 + 3864 ], "player_steam_id": [ - 169 + 174 ], "__typename": [ - 70 + 75 ] }, "player_unused_utility_select_column": {}, "player_unused_utility_set_input": { "deleted_at": [ - 3421 + 3467 ], "match_id": [ - 3818 + 3864 ], "match_map_id": [ - 3818 + 3864 ], "player_steam_id": [ - 169 + 174 ], "round": [ 38 @@ -67055,7 +67686,7 @@ export default { 38 ], "__typename": [ - 70 + 75 ] }, "player_unused_utility_stddev_fields": { @@ -67069,21 +67700,21 @@ export default { 29 ], "__typename": [ - 70 + 75 ] }, "player_unused_utility_stddev_order_by": { "player_steam_id": [ - 2011 + 2016 ], "round": [ - 2011 + 2016 ], "unused": [ - 2011 + 2016 ], "__typename": [ - 70 + 75 ] }, "player_unused_utility_stddev_pop_fields": { @@ -67097,21 +67728,21 @@ export default { 29 ], "__typename": [ - 70 + 75 ] }, "player_unused_utility_stddev_pop_order_by": { "player_steam_id": [ - 2011 + 2016 ], "round": [ - 2011 + 2016 ], "unused": [ - 2011 + 2016 ], "__typename": [ - 70 + 75 ] }, "player_unused_utility_stddev_samp_fields": { @@ -67125,46 +67756,46 @@ export default { 29 ], "__typename": [ - 70 + 75 ] }, "player_unused_utility_stddev_samp_order_by": { "player_steam_id": [ - 2011 + 2016 ], "round": [ - 2011 + 2016 ], "unused": [ - 2011 + 2016 ], "__typename": [ - 70 + 75 ] }, "player_unused_utility_stream_cursor_input": { "initial_value": [ - 2793 + 2830 ], "ordering": [ - 224 + 229 ], "__typename": [ - 70 + 75 ] }, "player_unused_utility_stream_cursor_value_input": { "deleted_at": [ - 3421 + 3467 ], "match_id": [ - 3818 + 3864 ], "match_map_id": [ - 3818 + 3864 ], "player_steam_id": [ - 169 + 174 ], "round": [ 38 @@ -67173,12 +67804,12 @@ export default { 38 ], "__typename": [ - 70 + 75 ] }, "player_unused_utility_sum_fields": { "player_steam_id": [ - 169 + 174 ], "round": [ 38 @@ -67187,36 +67818,36 @@ export default { 38 ], "__typename": [ - 70 + 75 ] }, "player_unused_utility_sum_order_by": { "player_steam_id": [ - 2011 + 2016 ], "round": [ - 2011 + 2016 ], "unused": [ - 2011 + 2016 ], "__typename": [ - 70 + 75 ] }, "player_unused_utility_update_column": {}, "player_unused_utility_updates": { "_inc": [ - 2774 + 2811 ], "_set": [ - 2785 + 2822 ], "where": [ - 2772 + 2809 ], "__typename": [ - 70 + 75 ] }, "player_unused_utility_var_pop_fields": { @@ -67230,21 +67861,21 @@ export default { 29 ], "__typename": [ - 70 + 75 ] }, "player_unused_utility_var_pop_order_by": { "player_steam_id": [ - 2011 + 2016 ], "round": [ - 2011 + 2016 ], "unused": [ - 2011 + 2016 ], "__typename": [ - 70 + 75 ] }, "player_unused_utility_var_samp_fields": { @@ -67258,21 +67889,21 @@ export default { 29 ], "__typename": [ - 70 + 75 ] }, "player_unused_utility_var_samp_order_by": { "player_steam_id": [ - 2011 + 2016 ], "round": [ - 2011 + 2016 ], "unused": [ - 2011 + 2016 ], "__typename": [ - 70 + 75 ] }, "player_unused_utility_variance_fields": { @@ -67286,106 +67917,106 @@ export default { 29 ], "__typename": [ - 70 + 75 ] }, "player_unused_utility_variance_order_by": { "player_steam_id": [ - 2011 + 2016 ], "round": [ - 2011 + 2016 ], "unused": [ - 2011 + 2016 ], "__typename": [ - 70 + 75 ] }, "player_utility": { "attacker_location_coordinates": [ - 70 + 75 ], "attacker_steam_id": [ - 169 + 174 ], "deleted_at": [ - 3421 + 3467 ], "match": [ - 1826 + 1831 ], "match_id": [ - 3818 + 3864 ], "match_map": [ - 1664 + 1669 ], "match_map_id": [ - 3818 + 3864 ], "player": [ - 2878 + 2915 ], "round": [ 38 ], "time": [ - 3421 + 3467 ], "type": [ - 1029 + 1034 ], "__typename": [ - 70 + 75 ] }, "player_utility_aggregate": { "aggregate": [ - 2808 + 2845 ], "nodes": [ - 2804 + 2841 ], "__typename": [ - 70 + 75 ] }, "player_utility_aggregate_bool_exp": { "count": [ - 2807 + 2844 ], "__typename": [ - 70 + 75 ] }, "player_utility_aggregate_bool_exp_count": { "arguments": [ - 2825 + 2862 ], "distinct": [ 3 ], "filter": [ - 2813 + 2850 ], "predicate": [ 39 ], "__typename": [ - 70 + 75 ] }, "player_utility_aggregate_fields": { "avg": [ - 2811 + 2848 ], "count": [ 38, { "columns": [ - 2825, + 2862, "[player_utility_select_column!]" ], "distinct": [ @@ -67394,83 +68025,83 @@ export default { } ], "max": [ - 2817 + 2854 ], "min": [ - 2819 + 2856 ], "stddev": [ - 2827 + 2864 ], "stddev_pop": [ - 2829 + 2866 ], "stddev_samp": [ - 2831 + 2868 ], "sum": [ - 2835 + 2872 ], "var_pop": [ - 2839 + 2876 ], "var_samp": [ - 2841 + 2878 ], "variance": [ - 2843 + 2880 ], "__typename": [ - 70 + 75 ] }, "player_utility_aggregate_order_by": { "avg": [ - 2812 + 2849 ], "count": [ - 2011 + 2016 ], "max": [ - 2818 + 2855 ], "min": [ - 2820 + 2857 ], "stddev": [ - 2828 + 2865 ], "stddev_pop": [ - 2830 + 2867 ], "stddev_samp": [ - 2832 + 2869 ], "sum": [ - 2836 + 2873 ], "var_pop": [ - 2840 + 2877 ], "var_samp": [ - 2842 + 2879 ], "variance": [ - 2844 + 2881 ], "__typename": [ - 70 + 75 ] }, "player_utility_arr_rel_insert_input": { "data": [ - 2816 + 2853 ], "on_conflict": [ - 2822 + 2859 ], "__typename": [ - 70 + 75 ] }, "player_utility_avg_fields": { @@ -67481,219 +68112,219 @@ export default { 29 ], "__typename": [ - 70 + 75 ] }, "player_utility_avg_order_by": { "attacker_steam_id": [ - 2011 + 2016 ], "round": [ - 2011 + 2016 ], "__typename": [ - 70 + 75 ] }, "player_utility_bool_exp": { "_and": [ - 2813 + 2850 ], "_not": [ - 2813 + 2850 ], "_or": [ - 2813 + 2850 ], "attacker_location_coordinates": [ - 72 + 77 ], "attacker_steam_id": [ - 171 + 176 ], "deleted_at": [ - 3422 + 3468 ], "match": [ - 1835 + 1840 ], "match_id": [ - 3820 + 3866 ], "match_map": [ - 1673 + 1678 ], "match_map_id": [ - 3820 + 3866 ], "player": [ - 2882 + 2919 ], "round": [ 39 ], "time": [ - 3422 + 3468 ], "type": [ - 1030 + 1035 ], "__typename": [ - 70 + 75 ] }, "player_utility_constraint": {}, "player_utility_inc_input": { "attacker_steam_id": [ - 169 + 174 ], "round": [ 38 ], "__typename": [ - 70 + 75 ] }, "player_utility_insert_input": { "attacker_location_coordinates": [ - 70 + 75 ], "attacker_steam_id": [ - 169 + 174 ], "deleted_at": [ - 3421 + 3467 ], "match": [ - 1844 + 1849 ], "match_id": [ - 3818 + 3864 ], "match_map": [ - 1682 + 1687 ], "match_map_id": [ - 3818 + 3864 ], "player": [ - 2889 + 2926 ], "round": [ 38 ], "time": [ - 3421 + 3467 ], "type": [ - 1029 + 1034 ], "__typename": [ - 70 + 75 ] }, "player_utility_max_fields": { "attacker_location_coordinates": [ - 70 + 75 ], "attacker_steam_id": [ - 169 + 174 ], "deleted_at": [ - 3421 + 3467 ], "match_id": [ - 3818 + 3864 ], "match_map_id": [ - 3818 + 3864 ], "round": [ 38 ], "time": [ - 3421 + 3467 ], "__typename": [ - 70 + 75 ] }, "player_utility_max_order_by": { "attacker_location_coordinates": [ - 2011 + 2016 ], "attacker_steam_id": [ - 2011 + 2016 ], "deleted_at": [ - 2011 + 2016 ], "match_id": [ - 2011 + 2016 ], "match_map_id": [ - 2011 + 2016 ], "round": [ - 2011 + 2016 ], "time": [ - 2011 + 2016 ], "__typename": [ - 70 + 75 ] }, "player_utility_min_fields": { "attacker_location_coordinates": [ - 70 + 75 ], "attacker_steam_id": [ - 169 + 174 ], "deleted_at": [ - 3421 + 3467 ], "match_id": [ - 3818 + 3864 ], "match_map_id": [ - 3818 + 3864 ], "round": [ 38 ], "time": [ - 3421 + 3467 ], "__typename": [ - 70 + 75 ] }, "player_utility_min_order_by": { "attacker_location_coordinates": [ - 2011 + 2016 ], "attacker_steam_id": [ - 2011 + 2016 ], "deleted_at": [ - 2011 + 2016 ], "match_id": [ - 2011 + 2016 ], "match_map_id": [ - 2011 + 2016 ], "round": [ - 2011 + 2016 ], "time": [ - 2011 + 2016 ], "__typename": [ - 70 + 75 ] }, "player_utility_mutation_response": { @@ -67701,106 +68332,106 @@ export default { 38 ], "returning": [ - 2804 + 2841 ], "__typename": [ - 70 + 75 ] }, "player_utility_on_conflict": { "constraint": [ - 2814 + 2851 ], "update_columns": [ - 2837 + 2874 ], "where": [ - 2813 + 2850 ], "__typename": [ - 70 + 75 ] }, "player_utility_order_by": { "attacker_location_coordinates": [ - 2011 + 2016 ], "attacker_steam_id": [ - 2011 + 2016 ], "deleted_at": [ - 2011 + 2016 ], "match": [ - 1846 + 1851 ], "match_id": [ - 2011 + 2016 ], "match_map": [ - 1684 + 1689 ], "match_map_id": [ - 2011 + 2016 ], "player": [ - 2891 + 2928 ], "round": [ - 2011 + 2016 ], "time": [ - 2011 + 2016 ], "type": [ - 2011 + 2016 ], "__typename": [ - 70 + 75 ] }, "player_utility_pk_columns_input": { "attacker_steam_id": [ - 169 + 174 ], "match_map_id": [ - 3818 + 3864 ], "time": [ - 3421 + 3467 ], "__typename": [ - 70 + 75 ] }, "player_utility_select_column": {}, "player_utility_set_input": { "attacker_location_coordinates": [ - 70 + 75 ], "attacker_steam_id": [ - 169 + 174 ], "deleted_at": [ - 3421 + 3467 ], "match_id": [ - 3818 + 3864 ], "match_map_id": [ - 3818 + 3864 ], "round": [ 38 ], "time": [ - 3421 + 3467 ], "type": [ - 1029 + 1034 ], "__typename": [ - 70 + 75 ] }, "player_utility_stddev_fields": { @@ -67811,18 +68442,18 @@ export default { 29 ], "__typename": [ - 70 + 75 ] }, "player_utility_stddev_order_by": { "attacker_steam_id": [ - 2011 + 2016 ], "round": [ - 2011 + 2016 ], "__typename": [ - 70 + 75 ] }, "player_utility_stddev_pop_fields": { @@ -67833,18 +68464,18 @@ export default { 29 ], "__typename": [ - 70 + 75 ] }, "player_utility_stddev_pop_order_by": { "attacker_steam_id": [ - 2011 + 2016 ], "round": [ - 2011 + 2016 ], "__typename": [ - 70 + 75 ] }, "player_utility_stddev_samp_fields": { @@ -67855,95 +68486,95 @@ export default { 29 ], "__typename": [ - 70 + 75 ] }, "player_utility_stddev_samp_order_by": { "attacker_steam_id": [ - 2011 + 2016 ], "round": [ - 2011 + 2016 ], "__typename": [ - 70 + 75 ] }, "player_utility_stream_cursor_input": { "initial_value": [ - 2834 + 2871 ], "ordering": [ - 224 + 229 ], "__typename": [ - 70 + 75 ] }, "player_utility_stream_cursor_value_input": { "attacker_location_coordinates": [ - 70 + 75 ], "attacker_steam_id": [ - 169 + 174 ], "deleted_at": [ - 3421 + 3467 ], "match_id": [ - 3818 + 3864 ], "match_map_id": [ - 3818 + 3864 ], "round": [ 38 ], "time": [ - 3421 + 3467 ], "type": [ - 1029 + 1034 ], "__typename": [ - 70 + 75 ] }, "player_utility_sum_fields": { "attacker_steam_id": [ - 169 + 174 ], "round": [ 38 ], "__typename": [ - 70 + 75 ] }, "player_utility_sum_order_by": { "attacker_steam_id": [ - 2011 + 2016 ], "round": [ - 2011 + 2016 ], "__typename": [ - 70 + 75 ] }, "player_utility_update_column": {}, "player_utility_updates": { "_inc": [ - 2815 + 2852 ], "_set": [ - 2826 + 2863 ], "where": [ - 2813 + 2850 ], "__typename": [ - 70 + 75 ] }, "player_utility_var_pop_fields": { @@ -67954,18 +68585,18 @@ export default { 29 ], "__typename": [ - 70 + 75 ] }, "player_utility_var_pop_order_by": { "attacker_steam_id": [ - 2011 + 2016 ], "round": [ - 2011 + 2016 ], "__typename": [ - 70 + 75 ] }, "player_utility_var_samp_fields": { @@ -67976,18 +68607,18 @@ export default { 29 ], "__typename": [ - 70 + 75 ] }, "player_utility_var_samp_order_by": { "attacker_steam_id": [ - 2011 + 2016 ], "round": [ - 2011 + 2016 ], "__typename": [ - 70 + 75 ] }, "player_utility_variance_fields": { @@ -67998,18 +68629,18 @@ export default { 29 ], "__typename": [ - 70 + 75 ] }, "player_utility_variance_order_by": { "attacker_steam_id": [ - 2011 + 2016 ], "round": [ - 2011 + 2016 ], "__typename": [ - 70 + 75 ] }, "player_weapon_stats_v": { @@ -68026,7 +68657,7 @@ export default { 38 ], "match_id": [ - 3818 + 3864 ], "shots": [ 38 @@ -68035,60 +68666,60 @@ export default { 38 ], "steam_id": [ - 169 + 174 ], "weapon_class": [ - 70 + 75 ], "__typename": [ - 70 + 75 ] }, "player_weapon_stats_v_aggregate": { "aggregate": [ - 2849 + 2886 ], "nodes": [ - 2845 + 2882 ], "__typename": [ - 70 + 75 ] }, "player_weapon_stats_v_aggregate_bool_exp": { "count": [ - 2848 + 2885 ], "__typename": [ - 70 + 75 ] }, "player_weapon_stats_v_aggregate_bool_exp_count": { "arguments": [ - 2861 + 2898 ], "distinct": [ 3 ], "filter": [ - 2854 + 2891 ], "predicate": [ 39 ], "__typename": [ - 70 + 75 ] }, "player_weapon_stats_v_aggregate_fields": { "avg": [ - 2852 + 2889 ], "count": [ 38, { "columns": [ - 2861, + 2898, "[player_weapon_stats_v_select_column!]" ], "distinct": [ @@ -68097,80 +68728,80 @@ export default { } ], "max": [ - 2856 + 2893 ], "min": [ - 2858 + 2895 ], "stddev": [ - 2862 + 2899 ], "stddev_pop": [ - 2864 + 2901 ], "stddev_samp": [ - 2866 + 2903 ], "sum": [ - 2870 + 2907 ], "var_pop": [ - 2872 + 2909 ], "var_samp": [ - 2874 + 2911 ], "variance": [ - 2876 + 2913 ], "__typename": [ - 70 + 75 ] }, "player_weapon_stats_v_aggregate_order_by": { "avg": [ - 2853 + 2890 ], "count": [ - 2011 + 2016 ], "max": [ - 2857 + 2894 ], "min": [ - 2859 + 2896 ], "stddev": [ - 2863 + 2900 ], "stddev_pop": [ - 2865 + 2902 ], "stddev_samp": [ - 2867 + 2904 ], "sum": [ - 2871 + 2908 ], "var_pop": [ - 2873 + 2910 ], "var_samp": [ - 2875 + 2912 ], "variance": [ - 2877 + 2914 ], "__typename": [ - 70 + 75 ] }, "player_weapon_stats_v_arr_rel_insert_input": { "data": [ - 2855 + 2892 ], "__typename": [ - 70 + 75 ] }, "player_weapon_stats_v_avg_fields": { @@ -68196,44 +68827,44 @@ export default { 29 ], "__typename": [ - 70 + 75 ] }, "player_weapon_stats_v_avg_order_by": { "first_bullet_hits": [ - 2011 + 2016 ], "first_bullet_shots": [ - 2011 + 2016 ], "hits": [ - 2011 + 2016 ], "hits_spotted": [ - 2011 + 2016 ], "shots": [ - 2011 + 2016 ], "shots_spotted": [ - 2011 + 2016 ], "steam_id": [ - 2011 + 2016 ], "__typename": [ - 70 + 75 ] }, "player_weapon_stats_v_bool_exp": { "_and": [ - 2854 + 2891 ], "_not": [ - 2854 + 2891 ], "_or": [ - 2854 + 2891 ], "first_bullet_hits": [ 39 @@ -68248,7 +68879,7 @@ export default { 39 ], "match_id": [ - 3820 + 3866 ], "shots": [ 39 @@ -68257,13 +68888,13 @@ export default { 39 ], "steam_id": [ - 171 + 176 ], "weapon_class": [ - 72 + 77 ], "__typename": [ - 70 + 75 ] }, "player_weapon_stats_v_insert_input": { @@ -68280,7 +68911,7 @@ export default { 38 ], "match_id": [ - 3818 + 3864 ], "shots": [ 38 @@ -68289,13 +68920,13 @@ export default { 38 ], "steam_id": [ - 169 + 174 ], "weapon_class": [ - 70 + 75 ], "__typename": [ - 70 + 75 ] }, "player_weapon_stats_v_max_fields": { @@ -68312,7 +68943,7 @@ export default { 38 ], "match_id": [ - 3818 + 3864 ], "shots": [ 38 @@ -68321,45 +68952,45 @@ export default { 38 ], "steam_id": [ - 169 + 174 ], "weapon_class": [ - 70 + 75 ], "__typename": [ - 70 + 75 ] }, "player_weapon_stats_v_max_order_by": { "first_bullet_hits": [ - 2011 + 2016 ], "first_bullet_shots": [ - 2011 + 2016 ], "hits": [ - 2011 + 2016 ], "hits_spotted": [ - 2011 + 2016 ], "match_id": [ - 2011 + 2016 ], "shots": [ - 2011 + 2016 ], "shots_spotted": [ - 2011 + 2016 ], "steam_id": [ - 2011 + 2016 ], "weapon_class": [ - 2011 + 2016 ], "__typename": [ - 70 + 75 ] }, "player_weapon_stats_v_min_fields": { @@ -68376,7 +69007,7 @@ export default { 38 ], "match_id": [ - 3818 + 3864 ], "shots": [ 38 @@ -68385,77 +69016,77 @@ export default { 38 ], "steam_id": [ - 169 + 174 ], "weapon_class": [ - 70 + 75 ], "__typename": [ - 70 + 75 ] }, "player_weapon_stats_v_min_order_by": { "first_bullet_hits": [ - 2011 + 2016 ], "first_bullet_shots": [ - 2011 + 2016 ], "hits": [ - 2011 + 2016 ], "hits_spotted": [ - 2011 + 2016 ], "match_id": [ - 2011 + 2016 ], "shots": [ - 2011 + 2016 ], "shots_spotted": [ - 2011 + 2016 ], "steam_id": [ - 2011 + 2016 ], "weapon_class": [ - 2011 + 2016 ], "__typename": [ - 70 + 75 ] }, "player_weapon_stats_v_order_by": { "first_bullet_hits": [ - 2011 + 2016 ], "first_bullet_shots": [ - 2011 + 2016 ], "hits": [ - 2011 + 2016 ], "hits_spotted": [ - 2011 + 2016 ], "match_id": [ - 2011 + 2016 ], "shots": [ - 2011 + 2016 ], "shots_spotted": [ - 2011 + 2016 ], "steam_id": [ - 2011 + 2016 ], "weapon_class": [ - 2011 + 2016 ], "__typename": [ - 70 + 75 ] }, "player_weapon_stats_v_select_column": {}, @@ -68482,33 +69113,33 @@ export default { 29 ], "__typename": [ - 70 + 75 ] }, "player_weapon_stats_v_stddev_order_by": { "first_bullet_hits": [ - 2011 + 2016 ], "first_bullet_shots": [ - 2011 + 2016 ], "hits": [ - 2011 + 2016 ], "hits_spotted": [ - 2011 + 2016 ], "shots": [ - 2011 + 2016 ], "shots_spotted": [ - 2011 + 2016 ], "steam_id": [ - 2011 + 2016 ], "__typename": [ - 70 + 75 ] }, "player_weapon_stats_v_stddev_pop_fields": { @@ -68534,33 +69165,33 @@ export default { 29 ], "__typename": [ - 70 + 75 ] }, "player_weapon_stats_v_stddev_pop_order_by": { "first_bullet_hits": [ - 2011 + 2016 ], "first_bullet_shots": [ - 2011 + 2016 ], "hits": [ - 2011 + 2016 ], "hits_spotted": [ - 2011 + 2016 ], "shots": [ - 2011 + 2016 ], "shots_spotted": [ - 2011 + 2016 ], "steam_id": [ - 2011 + 2016 ], "__typename": [ - 70 + 75 ] }, "player_weapon_stats_v_stddev_samp_fields": { @@ -68586,44 +69217,44 @@ export default { 29 ], "__typename": [ - 70 + 75 ] }, "player_weapon_stats_v_stddev_samp_order_by": { "first_bullet_hits": [ - 2011 + 2016 ], "first_bullet_shots": [ - 2011 + 2016 ], "hits": [ - 2011 + 2016 ], "hits_spotted": [ - 2011 + 2016 ], "shots": [ - 2011 + 2016 ], "shots_spotted": [ - 2011 + 2016 ], "steam_id": [ - 2011 + 2016 ], "__typename": [ - 70 + 75 ] }, "player_weapon_stats_v_stream_cursor_input": { "initial_value": [ - 2869 + 2906 ], "ordering": [ - 224 + 229 ], "__typename": [ - 70 + 75 ] }, "player_weapon_stats_v_stream_cursor_value_input": { @@ -68640,7 +69271,7 @@ export default { 38 ], "match_id": [ - 3818 + 3864 ], "shots": [ 38 @@ -68649,13 +69280,13 @@ export default { 38 ], "steam_id": [ - 169 + 174 ], "weapon_class": [ - 70 + 75 ], "__typename": [ - 70 + 75 ] }, "player_weapon_stats_v_sum_fields": { @@ -68678,36 +69309,36 @@ export default { 38 ], "steam_id": [ - 169 + 174 ], "__typename": [ - 70 + 75 ] }, "player_weapon_stats_v_sum_order_by": { "first_bullet_hits": [ - 2011 + 2016 ], "first_bullet_shots": [ - 2011 + 2016 ], "hits": [ - 2011 + 2016 ], "hits_spotted": [ - 2011 + 2016 ], "shots": [ - 2011 + 2016 ], "shots_spotted": [ - 2011 + 2016 ], "steam_id": [ - 2011 + 2016 ], "__typename": [ - 70 + 75 ] }, "player_weapon_stats_v_var_pop_fields": { @@ -68733,33 +69364,33 @@ export default { 29 ], "__typename": [ - 70 + 75 ] }, "player_weapon_stats_v_var_pop_order_by": { "first_bullet_hits": [ - 2011 + 2016 ], "first_bullet_shots": [ - 2011 + 2016 ], "hits": [ - 2011 + 2016 ], "hits_spotted": [ - 2011 + 2016 ], "shots": [ - 2011 + 2016 ], "shots_spotted": [ - 2011 + 2016 ], "steam_id": [ - 2011 + 2016 ], "__typename": [ - 70 + 75 ] }, "player_weapon_stats_v_var_samp_fields": { @@ -68785,33 +69416,33 @@ export default { 29 ], "__typename": [ - 70 + 75 ] }, "player_weapon_stats_v_var_samp_order_by": { "first_bullet_hits": [ - 2011 + 2016 ], "first_bullet_shots": [ - 2011 + 2016 ], "hits": [ - 2011 + 2016 ], "hits_spotted": [ - 2011 + 2016 ], "shots": [ - 2011 + 2016 ], "shots_spotted": [ - 2011 + 2016 ], "steam_id": [ - 2011 + 2016 ], "__typename": [ - 70 + 75 ] }, "player_weapon_stats_v_variance_fields": { @@ -68837,41 +69468,41 @@ export default { 29 ], "__typename": [ - 70 + 75 ] }, "player_weapon_stats_v_variance_order_by": { "first_bullet_hits": [ - 2011 + 2016 ], "first_bullet_shots": [ - 2011 + 2016 ], "hits": [ - 2011 + 2016 ], "hits_spotted": [ - 2011 + 2016 ], "shots": [ - 2011 + 2016 ], "shots_spotted": [ - 2011 + 2016 ], "steam_id": [ - 2011 + 2016 ], "__typename": [ - 70 + 75 ] }, "players": { "abandoned_matches": [ - 101, + 106, { "distinct_on": [ - 122, + 127, "[abandoned_matches_select_column!]" ], "limit": [ @@ -68881,19 +69512,19 @@ export default { 38 ], "order_by": [ - 120, + 125, "[abandoned_matches_order_by!]" ], "where": [ - 110 + 115 ] } ], "abandoned_matches_aggregate": [ - 102, + 107, { "distinct_on": [ - 122, + 127, "[abandoned_matches_select_column!]" ], "limit": [ @@ -68903,19 +69534,19 @@ export default { 38 ], "order_by": [ - 120, + 125, "[abandoned_matches_order_by!]" ], "where": [ - 110 + 115 ] } ], "aim_weapon_stats": [ - 2108, + 2113, { "distinct_on": [ - 2129, + 2134, "[player_aim_weapon_stats_select_column!]" ], "limit": [ @@ -68925,19 +69556,19 @@ export default { 38 ], "order_by": [ - 2127, + 2132, "[player_aim_weapon_stats_order_by!]" ], "where": [ - 2117 + 2122 ] } ], "aim_weapon_stats_aggregate": [ - 2109, + 2114, { "distinct_on": [ - 2129, + 2134, "[player_aim_weapon_stats_select_column!]" ], "limit": [ @@ -68947,19 +69578,19 @@ export default { 38 ], "order_by": [ - 2127, + 2132, "[player_aim_weapon_stats_order_by!]" ], "where": [ - 2117 + 2122 ] } ], "assists": [ - 2149, + 2154, { "distinct_on": [ - 2172, + 2177, "[player_assists_select_column!]" ], "limit": [ @@ -68969,19 +69600,19 @@ export default { 38 ], "order_by": [ - 2170, + 2175, "[player_assists_order_by!]" ], "where": [ - 2160 + 2165 ] } ], "assists_aggregate": [ - 2150, + 2155, { "distinct_on": [ - 2172, + 2177, "[player_assists_select_column!]" ], "limit": [ @@ -68991,19 +69622,19 @@ export default { 38 ], "order_by": [ - 2170, + 2175, "[player_assists_order_by!]" ], "where": [ - 2160 + 2165 ] } ], "assited_by_players": [ - 2149, + 2154, { "distinct_on": [ - 2172, + 2177, "[player_assists_select_column!]" ], "limit": [ @@ -69013,19 +69644,19 @@ export default { 38 ], "order_by": [ - 2170, + 2175, "[player_assists_order_by!]" ], "where": [ - 2160 + 2165 ] } ], "assited_by_players_aggregate": [ - 2150, + 2155, { "distinct_on": [ - 2172, + 2177, "[player_assists_select_column!]" ], "limit": [ @@ -69035,22 +69666,22 @@ export default { 38 ], "order_by": [ - 2170, + 2175, "[player_assists_order_by!]" ], "where": [ - 2160 + 2165 ] } ], "avatar_url": [ - 70 + 75 ], "coach_lineups": [ - 1506, + 1511, { "distinct_on": [ - 1528, + 1533, "[match_lineups_select_column!]" ], "limit": [ @@ -69060,19 +69691,19 @@ export default { 38 ], "order_by": [ - 1526, + 1531, "[match_lineups_order_by!]" ], "where": [ - 1515 + 1520 ] } ], "coach_lineups_aggregate": [ - 1507, + 1512, { "distinct_on": [ - 1528, + 1533, "[match_lineups_select_column!]" ], "limit": [ @@ -69082,31 +69713,31 @@ export default { 38 ], "order_by": [ - 1526, + 1531, "[match_lineups_order_by!]" ], "where": [ - 1515 + 1520 ] } ], "country": [ - 70 + 75 ], "created_at": [ - 3421 + 3467 ], "current_lobby_id": [ - 3818 + 3864 ], "custom_avatar_url": [ - 70 + 75 ], "damage_dealt": [ - 2212, + 2217, { "distinct_on": [ - 2233, + 2238, "[player_damages_select_column!]" ], "limit": [ @@ -69116,19 +69747,19 @@ export default { 38 ], "order_by": [ - 2231, + 2236, "[player_damages_order_by!]" ], "where": [ - 2221 + 2226 ] } ], "damage_dealt_aggregate": [ - 2213, + 2218, { "distinct_on": [ - 2233, + 2238, "[player_damages_select_column!]" ], "limit": [ @@ -69138,19 +69769,19 @@ export default { 38 ], "order_by": [ - 2231, + 2236, "[player_damages_order_by!]" ], "where": [ - 2221 + 2226 ] } ], "damage_taken": [ - 2212, + 2217, { "distinct_on": [ - 2233, + 2238, "[player_damages_select_column!]" ], "limit": [ @@ -69160,19 +69791,19 @@ export default { 38 ], "order_by": [ - 2231, + 2236, "[player_damages_order_by!]" ], "where": [ - 2221 + 2226 ] } ], "damage_taken_aggregate": [ - 2213, + 2218, { "distinct_on": [ - 2233, + 2238, "[player_damages_select_column!]" ], "limit": [ @@ -69182,11 +69813,11 @@ export default { 38 ], "order_by": [ - 2231, + 2236, "[player_damages_order_by!]" ], "where": [ - 2221 + 2226 ] } ], @@ -69194,10 +69825,10 @@ export default { 38 ], "deaths": [ - 2366, + 2371, { "distinct_on": [ - 2430, + 2435, "[player_kills_select_column!]" ], "limit": [ @@ -69207,19 +69838,19 @@ export default { 38 ], "order_by": [ - 2428, + 2433, "[player_kills_order_by!]" ], "where": [ - 2377 + 2382 ] } ], "deaths_aggregate": [ - 2367, + 2372, { "distinct_on": [ - 2430, + 2435, "[player_kills_select_column!]" ], "limit": [ @@ -69229,22 +69860,22 @@ export default { 38 ], "order_by": [ - 2428, + 2433, "[player_kills_order_by!]" ], "where": [ - 2377 + 2382 ] } ], "discord_id": [ - 70 + 75 ], "draft_game_players": [ - 297, + 302, { "distinct_on": [ - 320, + 325, "[draft_game_players_select_column!]" ], "limit": [ @@ -69254,19 +69885,19 @@ export default { 38 ], "order_by": [ - 318, + 323, "[draft_game_players_order_by!]" ], "where": [ - 308 + 313 ] } ], "draft_game_players_aggregate": [ - 298, + 303, { "distinct_on": [ - 320, + 325, "[draft_game_players_select_column!]" ], "limit": [ @@ -69276,27 +69907,27 @@ export default { 38 ], "order_by": [ - 318, + 323, "[draft_game_players_order_by!]" ], "where": [ - 308 + 313 ] } ], "elo": [ - 1235, + 1240, { "path": [ - 70 + 75 ] } ], "elo_history": [ - 4060, + 4106, { "distinct_on": [ - 4086, + 4132, "[v_player_elo_select_column!]" ], "limit": [ @@ -69306,19 +69937,19 @@ export default { 38 ], "order_by": [ - 4085, + 4131, "[v_player_elo_order_by!]" ], "where": [ - 4079 + 4125 ] } ], "elo_history_aggregate": [ - 4061, + 4107, { "distinct_on": [ - 4086, + 4132, "[v_player_elo_select_column!]" ], "limit": [ @@ -69328,11 +69959,11 @@ export default { 38 ], "order_by": [ - 4085, + 4131, "[v_player_elo_order_by!]" ], "where": [ - 4079 + 4125 ] } ], @@ -69340,16 +69971,16 @@ export default { 38 ], "faceit_nickname": [ - 70 + 75 ], "faceit_player_id": [ - 70 + 75 ], "faceit_rank_history": [ - 2280, + 2285, { "distinct_on": [ - 2301, + 2306, "[player_faceit_rank_history_select_column!]" ], "limit": [ @@ -69359,19 +69990,19 @@ export default { 38 ], "order_by": [ - 2299, + 2304, "[player_faceit_rank_history_order_by!]" ], "where": [ - 2289 + 2294 ] } ], "faceit_rank_history_aggregate": [ - 2281, + 2286, { "distinct_on": [ - 2301, + 2306, "[player_faceit_rank_history_select_column!]" ], "limit": [ @@ -69381,11 +70012,11 @@ export default { 38 ], "order_by": [ - 2299, + 2304, "[player_faceit_rank_history_order_by!]" ], "where": [ - 2289 + 2294 ] } ], @@ -69393,16 +70024,16 @@ export default { 38 ], "faceit_updated_at": [ - 3421 + 3467 ], "faceit_url": [ - 70 + 75 ], "flashed_by_players": [ - 2321, + 2326, { "distinct_on": [ - 2344, + 2349, "[player_flashes_select_column!]" ], "limit": [ @@ -69412,19 +70043,19 @@ export default { 38 ], "order_by": [ - 2342, + 2347, "[player_flashes_order_by!]" ], "where": [ - 2332 + 2337 ] } ], "flashed_by_players_aggregate": [ - 2322, + 2327, { "distinct_on": [ - 2344, + 2349, "[player_flashes_select_column!]" ], "limit": [ @@ -69434,19 +70065,19 @@ export default { 38 ], "order_by": [ - 2342, + 2347, "[player_flashes_order_by!]" ], "where": [ - 2332 + 2337 ] } ], "flashed_players": [ - 2321, + 2326, { "distinct_on": [ - 2344, + 2349, "[player_flashes_select_column!]" ], "limit": [ @@ -69456,19 +70087,19 @@ export default { 38 ], "order_by": [ - 2342, + 2347, "[player_flashes_order_by!]" ], "where": [ - 2332 + 2337 ] } ], "flashed_players_aggregate": [ - 2322, + 2327, { "distinct_on": [ - 2344, + 2349, "[player_flashes_select_column!]" ], "limit": [ @@ -69478,19 +70109,19 @@ export default { 38 ], "order_by": [ - 2342, + 2347, "[player_flashes_order_by!]" ], "where": [ - 2332 + 2337 ] } ], "friends": [ - 1886, + 1891, { "distinct_on": [ - 1911, + 1916, "[my_friends_select_column!]" ], "limit": [ @@ -69500,19 +70131,19 @@ export default { 38 ], "order_by": [ - 1909, + 1914, "[my_friends_order_by!]" ], "where": [ - 1898 + 1903 ] } ], "friends_aggregate": [ - 1887, + 1892, { "distinct_on": [ - 1911, + 1916, "[my_friends_select_column!]" ], "limit": [ @@ -69522,11 +70153,11 @@ export default { 38 ], "order_by": [ - 1909, + 1914, "[my_friends_order_by!]" ], "where": [ - 1898 + 1903 ] } ], @@ -69534,10 +70165,10 @@ export default { 38 ], "invited_players": [ - 3095, + 3141, { "distinct_on": [ - 3116, + 3162, "[team_invites_select_column!]" ], "limit": [ @@ -69547,19 +70178,19 @@ export default { 38 ], "order_by": [ - 3114, + 3160, "[team_invites_order_by!]" ], "where": [ - 3104 + 3150 ] } ], "invited_players_aggregate": [ - 3096, + 3142, { "distinct_on": [ - 3116, + 3162, "[team_invites_select_column!]" ], "limit": [ @@ -69569,11 +70200,11 @@ export default { 38 ], "order_by": [ - 3114, + 3160, "[team_invites_order_by!]" ], "where": [ - 3104 + 3150 ] } ], @@ -69596,10 +70227,10 @@ export default { 3 ], "kills": [ - 2366, + 2371, { "distinct_on": [ - 2430, + 2435, "[player_kills_select_column!]" ], "limit": [ @@ -69609,19 +70240,19 @@ export default { 38 ], "order_by": [ - 2428, + 2433, "[player_kills_order_by!]" ], "where": [ - 2377 + 2382 ] } ], "kills_aggregate": [ - 2367, + 2372, { "distinct_on": [ - 2430, + 2435, "[player_kills_select_column!]" ], "limit": [ @@ -69631,19 +70262,19 @@ export default { 38 ], "order_by": [ - 2428, + 2433, "[player_kills_order_by!]" ], "where": [ - 2377 + 2382 ] } ], "kills_by_weapons": [ - 2378, + 2383, { "distinct_on": [ - 2399, + 2404, "[player_kills_by_weapon_select_column!]" ], "limit": [ @@ -69653,19 +70284,19 @@ export default { 38 ], "order_by": [ - 2397, + 2402, "[player_kills_by_weapon_order_by!]" ], "where": [ - 2387 + 2392 ] } ], "kills_by_weapons_aggregate": [ - 2379, + 2384, { "distinct_on": [ - 2399, + 2404, "[player_kills_by_weapon_select_column!]" ], "limit": [ @@ -69675,28 +70306,28 @@ export default { 38 ], "order_by": [ - 2397, + 2402, "[player_kills_by_weapon_order_by!]" ], "where": [ - 2387 + 2392 ] } ], "language": [ - 70 + 75 ], "last_read_news_at": [ - 3421 + 3467 ], "last_sign_in_at": [ - 3421 + 3467 ], "lobby_players": [ - 1280, + 1285, { "distinct_on": [ - 1303, + 1308, "[lobby_players_select_column!]" ], "limit": [ @@ -69706,19 +70337,19 @@ export default { 38 ], "order_by": [ - 1301, + 1306, "[lobby_players_order_by!]" ], "where": [ - 1291 + 1296 ] } ], "lobby_players_aggregate": [ - 1281, + 1286, { "distinct_on": [ - 1303, + 1308, "[lobby_players_select_column!]" ], "limit": [ @@ -69728,11 +70359,11 @@ export default { 38 ], "order_by": [ - 1301, + 1306, "[lobby_players_order_by!]" ], "where": [ - 1291 + 1296 ] } ], @@ -69749,10 +70380,10 @@ export default { 38 ], "match_map_hltv": [ - 4165, + 4211, { "distinct_on": [ - 4183, + 4229, "[v_player_match_map_hltv_select_column!]" ], "limit": [ @@ -69762,19 +70393,19 @@ export default { 38 ], "order_by": [ - 4182, + 4228, "[v_player_match_map_hltv_order_by!]" ], "where": [ - 4174 + 4220 ] } ], "match_map_hltv_aggregate": [ - 4166, + 4212, { "distinct_on": [ - 4183, + 4229, "[v_player_match_map_hltv_select_column!]" ], "limit": [ @@ -69784,19 +70415,19 @@ export default { 38 ], "order_by": [ - 4182, + 4228, "[v_player_match_map_hltv_order_by!]" ], "where": [ - 4174 + 4220 ] } ], "match_map_stats": [ - 2475, + 2480, { "distinct_on": [ - 2496, + 2501, "[player_match_map_stats_select_column!]" ], "limit": [ @@ -69806,19 +70437,19 @@ export default { 38 ], "order_by": [ - 2494, + 2499, "[player_match_map_stats_order_by!]" ], "where": [ - 2484 + 2489 ] } ], "match_map_stats_aggregate": [ - 2476, + 2481, { "distinct_on": [ - 2496, + 2501, "[player_match_map_stats_select_column!]" ], "limit": [ @@ -69828,19 +70459,19 @@ export default { 38 ], "order_by": [ - 2494, + 2499, "[player_match_map_stats_order_by!]" ], "where": [ - 2484 + 2489 ] } ], "match_stats": [ - 2534, + 2539, { "distinct_on": [ - 2550, + 2555, "[player_match_stats_v_select_column!]" ], "limit": [ @@ -69850,19 +70481,19 @@ export default { 38 ], "order_by": [ - 2549, + 2554, "[player_match_stats_v_order_by!]" ], "where": [ - 2543 + 2548 ] } ], "match_stats_aggregate": [ - 2535, + 2540, { "distinct_on": [ - 2550, + 2555, "[player_match_stats_v_select_column!]" ], "limit": [ @@ -69872,19 +70503,19 @@ export default { 38 ], "order_by": [ - 2549, + 2554, "[player_match_stats_v_order_by!]" ], "where": [ - 2543 + 2548 ] } ], "matches": [ - 1826, + 1831, { "distinct_on": [ - 1848, + 1853, "[matches_select_column!]" ], "limit": [ @@ -69894,22 +70525,22 @@ export default { 38 ], "order_by": [ - 1846, + 1851, "[matches_order_by!]" ], "where": [ - 1835 + 1840 ] } ], "matchmaking_cooldown": [ - 3421 + 3467 ], "multi_kills": [ - 4256, + 4302, { "distinct_on": [ - 4272, + 4318, "[v_player_multi_kills_select_column!]" ], "limit": [ @@ -69919,19 +70550,19 @@ export default { 38 ], "order_by": [ - 4271, + 4317, "[v_player_multi_kills_order_by!]" ], "where": [ - 4265 + 4311 ] } ], "multi_kills_aggregate": [ - 4257, + 4303, { "distinct_on": [ - 4272, + 4318, "[v_player_multi_kills_select_column!]" ], "limit": [ @@ -69941,25 +70572,25 @@ export default { 38 ], "order_by": [ - 4271, + 4317, "[v_player_multi_kills_order_by!]" ], "where": [ - 4265 + 4311 ] } ], "name": [ - 70 + 75 ], "name_registered": [ 3 ], "notifications": [ - 1959, + 1964, { "distinct_on": [ - 1987, + 1992, "[notifications_select_column!]" ], "limit": [ @@ -69969,19 +70600,19 @@ export default { 38 ], "order_by": [ - 1984, + 1989, "[notifications_order_by!]" ], "where": [ - 1971 + 1976 ] } ], "notifications_aggregate": [ - 1960, + 1965, { "distinct_on": [ - 1987, + 1992, "[notifications_select_column!]" ], "limit": [ @@ -69991,19 +70622,19 @@ export default { 38 ], "order_by": [ - 1984, + 1989, "[notifications_order_by!]" ], "where": [ - 1971 + 1976 ] } ], "objectives": [ - 2567, + 2572, { "distinct_on": [ - 2588, + 2593, "[player_objectives_select_column!]" ], "limit": [ @@ -70013,19 +70644,19 @@ export default { 38 ], "order_by": [ - 2586, + 2591, "[player_objectives_order_by!]" ], "where": [ - 2576 + 2581 ] } ], "objectives_aggregate": [ - 2568, + 2573, { "distinct_on": [ - 2588, + 2593, "[player_objectives_select_column!]" ], "limit": [ @@ -70035,19 +70666,19 @@ export default { 38 ], "order_by": [ - 2586, + 2591, "[player_objectives_order_by!]" ], "where": [ - 2576 + 2581 ] } ], "owned_teams": [ - 3378, + 3424, { "distinct_on": [ - 3400, + 3446, "[teams_select_column!]" ], "limit": [ @@ -70057,19 +70688,19 @@ export default { 38 ], "order_by": [ - 3398, + 3444, "[teams_order_by!]" ], "where": [ - 3387 + 3433 ] } ], "owned_teams_aggregate": [ - 3379, + 3425, { "distinct_on": [ - 3400, + 3446, "[teams_select_column!]" ], "limit": [ @@ -70079,27 +70710,27 @@ export default { 38 ], "order_by": [ - 3398, + 3444, "[teams_order_by!]" ], "where": [ - 3387 + 3433 ] } ], "peak_elo": [ - 1235, + 1240, { "path": [ - 70 + 75 ] } ], "pending_match_imports": [ - 2012, + 2017, { "distinct_on": [ - 2033, + 2038, "[pending_match_import_players_select_column!]" ], "limit": [ @@ -70109,19 +70740,19 @@ export default { 38 ], "order_by": [ - 2031, + 2036, "[pending_match_import_players_order_by!]" ], "where": [ - 2021 + 2026 ] } ], "pending_match_imports_aggregate": [ - 2013, + 2018, { "distinct_on": [ - 2033, + 2038, "[pending_match_import_players_select_column!]" ], "limit": [ @@ -70131,19 +70762,19 @@ export default { 38 ], "order_by": [ - 2031, + 2036, "[pending_match_import_players_order_by!]" ], "where": [ - 2021 + 2026 ] } ], "player_lineup": [ - 1461, + 1466, { "distinct_on": [ - 1484, + 1489, "[match_lineup_players_select_column!]" ], "limit": [ @@ -70153,19 +70784,19 @@ export default { 38 ], "order_by": [ - 1482, + 1487, "[match_lineup_players_order_by!]" ], "where": [ - 1472 + 1477 ] } ], "player_lineup_aggregate": [ - 1462, + 1467, { "distinct_on": [ - 1484, + 1489, "[match_lineup_players_select_column!]" ], "limit": [ @@ -70175,19 +70806,19 @@ export default { 38 ], "order_by": [ - 1482, + 1487, "[match_lineup_players_order_by!]" ], "where": [ - 1472 + 1477 ] } ], "player_unused_utilities": [ - 2763, + 2800, { "distinct_on": [ - 2784, + 2821, "[player_unused_utility_select_column!]" ], "limit": [ @@ -70197,19 +70828,19 @@ export default { 38 ], "order_by": [ - 2782, + 2819, "[player_unused_utility_order_by!]" ], "where": [ - 2772 + 2809 ] } ], "player_unused_utilities_aggregate": [ - 2764, + 2801, { "distinct_on": [ - 2784, + 2821, "[player_unused_utility_select_column!]" ], "limit": [ @@ -70219,11 +70850,11 @@ export default { 38 ], "order_by": [ - 2782, + 2819, "[player_unused_utility_order_by!]" ], "where": [ - 2772 + 2809 ] } ], @@ -70231,10 +70862,10 @@ export default { 38 ], "premier_rank_history": [ - 2626, + 2631, { "distinct_on": [ - 2647, + 2652, "[player_premier_rank_history_select_column!]" ], "limit": [ @@ -70244,19 +70875,19 @@ export default { 38 ], "order_by": [ - 2645, + 2650, "[player_premier_rank_history_order_by!]" ], "where": [ - 2635 + 2640 ] } ], "premier_rank_history_aggregate": [ - 2627, + 2632, { "distinct_on": [ - 2647, + 2652, "[player_premier_rank_history_select_column!]" ], "limit": [ @@ -70266,31 +70897,31 @@ export default { 38 ], "order_by": [ - 2645, + 2650, "[player_premier_rank_history_order_by!]" ], "where": [ - 2635 + 2640 ] } ], "premier_rank_updated_at": [ - 3421 + 3467 ], "profile_url": [ - 70 + 75 ], "role": [ - 785 + 790 ], "roster_image_url": [ - 70 + 75 ], "sanctions": [ - 2667, + 2672, { "distinct_on": [ - 2688, + 2693, "[player_sanctions_select_column!]" ], "limit": [ @@ -70300,19 +70931,19 @@ export default { 38 ], "order_by": [ - 2686, + 2691, "[player_sanctions_order_by!]" ], "where": [ - 2676 + 2681 ] } ], "sanctions_aggregate": [ - 2668, + 2673, { "distinct_on": [ - 2688, + 2693, "[player_sanctions_select_column!]" ], "limit": [ @@ -70322,11 +70953,11 @@ export default { 38 ], "order_by": [ - 2686, + 2691, "[player_sanctions_order_by!]" ], "where": [ - 2676 + 2681 ] } ], @@ -70334,19 +70965,19 @@ export default { 3 ], "stats": [ - 2708 + 2713 ], "steam_bans_checked_at": [ - 3421 + 3467 ], "steam_id": [ - 169 + 174 ], "team_invites": [ - 3095, + 3141, { "distinct_on": [ - 3116, + 3162, "[team_invites_select_column!]" ], "limit": [ @@ -70356,19 +70987,19 @@ export default { 38 ], "order_by": [ - 3114, + 3160, "[team_invites_order_by!]" ], "where": [ - 3104 + 3150 ] } ], "team_invites_aggregate": [ - 3096, + 3142, { "distinct_on": [ - 3116, + 3162, "[team_invites_select_column!]" ], "limit": [ @@ -70378,19 +71009,19 @@ export default { 38 ], "order_by": [ - 3114, + 3160, "[team_invites_order_by!]" ], "where": [ - 3104 + 3150 ] } ], "team_members": [ - 3136, + 3182, { "distinct_on": [ - 3159, + 3205, "[team_roster_select_column!]" ], "limit": [ @@ -70400,19 +71031,19 @@ export default { 38 ], "order_by": [ - 3157, + 3203, "[team_roster_order_by!]" ], "where": [ - 3147 + 3193 ] } ], "team_members_aggregate": [ - 3137, + 3183, { "distinct_on": [ - 3159, + 3205, "[team_roster_select_column!]" ], "limit": [ @@ -70422,19 +71053,19 @@ export default { 38 ], "order_by": [ - 3157, + 3203, "[team_roster_order_by!]" ], "where": [ - 3147 + 3193 ] } ], "teams": [ - 3378, + 3424, { "distinct_on": [ - 3400, + 3446, "[teams_select_column!]" ], "limit": [ @@ -70444,11 +71075,11 @@ export default { 38 ], "order_by": [ - 3398, + 3444, "[teams_order_by!]" ], "where": [ - 3387 + 3433 ] } ], @@ -70456,10 +71087,10 @@ export default { 38 ], "tournament_organizers": [ - 3469, + 3515, { "distinct_on": [ - 3490, + 3536, "[tournament_organizers_select_column!]" ], "limit": [ @@ -70469,19 +71100,19 @@ export default { 38 ], "order_by": [ - 3488, + 3534, "[tournament_organizers_order_by!]" ], "where": [ - 3478 + 3524 ] } ], "tournament_organizers_aggregate": [ - 3470, + 3516, { "distinct_on": [ - 3490, + 3536, "[tournament_organizers_select_column!]" ], "limit": [ @@ -70491,19 +71122,19 @@ export default { 38 ], "order_by": [ - 3488, + 3534, "[tournament_organizers_order_by!]" ], "where": [ - 3478 + 3524 ] } ], "tournament_rosters": [ - 3602, + 3648, { "distinct_on": [ - 3623, + 3669, "[tournament_team_roster_select_column!]" ], "limit": [ @@ -70513,19 +71144,19 @@ export default { 38 ], "order_by": [ - 3621, + 3667, "[tournament_team_roster_order_by!]" ], "where": [ - 3611 + 3657 ] } ], "tournament_rosters_aggregate": [ - 3603, + 3649, { "distinct_on": [ - 3623, + 3669, "[tournament_team_roster_select_column!]" ], "limit": [ @@ -70535,19 +71166,19 @@ export default { 38 ], "order_by": [ - 3621, + 3667, "[tournament_team_roster_order_by!]" ], "where": [ - 3611 + 3657 ] } ], "tournament_trophies": [ - 3685, + 3731, { "distinct_on": [ - 3708, + 3754, "[tournament_trophies_select_column!]" ], "limit": [ @@ -70557,19 +71188,19 @@ export default { 38 ], "order_by": [ - 3706, + 3752, "[tournament_trophies_order_by!]" ], "where": [ - 3696 + 3742 ] } ], "tournament_trophies_aggregate": [ - 3686, + 3732, { "distinct_on": [ - 3708, + 3754, "[tournament_trophies_select_column!]" ], "limit": [ @@ -70579,19 +71210,19 @@ export default { 38 ], "order_by": [ - 3706, + 3752, "[tournament_trophies_order_by!]" ], "where": [ - 3696 + 3742 ] } ], "tournaments": [ - 3772, + 3818, { "distinct_on": [ - 3796, + 3842, "[tournaments_select_column!]" ], "limit": [ @@ -70601,19 +71232,19 @@ export default { 38 ], "order_by": [ - 3794, + 3840, "[tournaments_order_by!]" ], "where": [ - 3783 + 3829 ] } ], "tournaments_aggregate": [ - 3773, + 3819, { "distinct_on": [ - 3796, + 3842, "[tournaments_select_column!]" ], "limit": [ @@ -70623,19 +71254,19 @@ export default { 38 ], "order_by": [ - 3794, + 3840, "[tournaments_order_by!]" ], "where": [ - 3783 + 3829 ] } ], "utility_thrown": [ - 2804, + 2841, { "distinct_on": [ - 2825, + 2862, "[player_utility_select_column!]" ], "limit": [ @@ -70645,19 +71276,19 @@ export default { 38 ], "order_by": [ - 2823, + 2860, "[player_utility_order_by!]" ], "where": [ - 2813 + 2850 ] } ], "utility_thrown_aggregate": [ - 2805, + 2842, { "distinct_on": [ - 2825, + 2862, "[player_utility_select_column!]" ], "limit": [ @@ -70667,11 +71298,11 @@ export default { 38 ], "order_by": [ - 2823, + 2860, "[player_utility_order_by!]" ], "where": [ - 2813 + 2850 ] } ], @@ -70682,10 +71313,10 @@ export default { 3 ], "weapon_stats": [ - 2845, + 2882, { "distinct_on": [ - 2861, + 2898, "[player_weapon_stats_v_select_column!]" ], "limit": [ @@ -70695,19 +71326,19 @@ export default { 38 ], "order_by": [ - 2860, + 2897, "[player_weapon_stats_v_order_by!]" ], "where": [ - 2854 + 2891 ] } ], "weapon_stats_aggregate": [ - 2846, + 2883, { "distinct_on": [ - 2861, + 2898, "[player_weapon_stats_v_select_column!]" ], "limit": [ @@ -70717,11 +71348,11 @@ export default { 38 ], "order_by": [ - 2860, + 2897, "[player_weapon_stats_v_order_by!]" ], "where": [ - 2854 + 2891 ] } ], @@ -70738,29 +71369,29 @@ export default { 38 ], "__typename": [ - 70 + 75 ] }, "players_aggregate": { "aggregate": [ - 2880 + 2917 ], "nodes": [ - 2878 + 2915 ], "__typename": [ - 70 + 75 ] }, "players_aggregate_fields": { "avg": [ - 2881 + 2918 ], "count": [ 38, { "columns": [ - 2893, + 2930, "[players_select_column!]" ], "distinct": [ @@ -70769,34 +71400,34 @@ export default { } ], "max": [ - 2886 + 2923 ], "min": [ - 2887 + 2924 ], "stddev": [ - 2895 + 2932 ], "stddev_pop": [ - 2896 + 2933 ], "stddev_samp": [ - 2897 + 2934 ], "sum": [ - 2900 + 2937 ], "var_pop": [ - 2903 + 2940 ], "var_samp": [ - 2904 + 2941 ], "variance": [ - 2905 + 2942 ], "__typename": [ - 70 + 75 ] }, "players_avg_fields": { @@ -70849,153 +71480,153 @@ export default { 38 ], "__typename": [ - 70 + 75 ] }, "players_bool_exp": { "_and": [ - 2882 + 2919 ], "_not": [ - 2882 + 2919 ], "_or": [ - 2882 + 2919 ], "abandoned_matches": [ - 110 + 115 ], "abandoned_matches_aggregate": [ - 103 + 108 ], "aim_weapon_stats": [ - 2117 + 2122 ], "aim_weapon_stats_aggregate": [ - 2110 + 2115 ], "assists": [ - 2160 + 2165 ], "assists_aggregate": [ - 2151 + 2156 ], "assited_by_players": [ - 2160 + 2165 ], "assited_by_players_aggregate": [ - 2151 + 2156 ], "avatar_url": [ - 72 + 77 ], "coach_lineups": [ - 1515 + 1520 ], "coach_lineups_aggregate": [ - 1508 + 1513 ], "country": [ - 72 + 77 ], "created_at": [ - 3422 + 3468 ], "current_lobby_id": [ - 3820 + 3866 ], "custom_avatar_url": [ - 72 + 77 ], "damage_dealt": [ - 2221 + 2226 ], "damage_dealt_aggregate": [ - 2214 + 2219 ], "damage_taken": [ - 2221 + 2226 ], "damage_taken_aggregate": [ - 2214 + 2219 ], "days_since_last_ban": [ 39 ], "deaths": [ - 2377 + 2382 ], "deaths_aggregate": [ - 2368 + 2373 ], "discord_id": [ - 72 + 77 ], "draft_game_players": [ - 308 + 313 ], "draft_game_players_aggregate": [ - 299 + 304 ], "elo": [ - 1237 + 1242 ], "elo_history": [ - 4079 + 4125 ], "elo_history_aggregate": [ - 4062 + 4108 ], "faceit_elo": [ 39 ], "faceit_nickname": [ - 72 + 77 ], "faceit_player_id": [ - 72 + 77 ], "faceit_rank_history": [ - 2289 + 2294 ], "faceit_rank_history_aggregate": [ - 2282 + 2287 ], "faceit_skill_level": [ 39 ], "faceit_updated_at": [ - 3422 + 3468 ], "faceit_url": [ - 72 + 77 ], "flashed_by_players": [ - 2332 + 2337 ], "flashed_by_players_aggregate": [ - 2323 + 2328 ], "flashed_players": [ - 2332 + 2337 ], "flashed_players_aggregate": [ - 2323 + 2328 ], "friends": [ - 1898 + 1903 ], "friends_aggregate": [ - 1888 + 1893 ], "game_ban_count": [ 39 ], "invited_players": [ - 3104 + 3150 ], "invited_players_aggregate": [ - 3097 + 3143 ], "is_banned": [ 4 @@ -71016,31 +71647,31 @@ export default { 4 ], "kills": [ - 2377 + 2382 ], "kills_aggregate": [ - 2368 + 2373 ], "kills_by_weapons": [ - 2387 + 2392 ], "kills_by_weapons_aggregate": [ - 2380 + 2385 ], "language": [ - 72 + 77 ], "last_read_news_at": [ - 3422 + 3468 ], "last_sign_in_at": [ - 3422 + 3468 ], "lobby_players": [ - 1291 + 1296 ], "lobby_players_aggregate": [ - 1282 + 1287 ], "losses": [ 39 @@ -71055,166 +71686,166 @@ export default { 39 ], "match_map_hltv": [ - 4174 + 4220 ], "match_map_hltv_aggregate": [ - 4167 + 4213 ], "match_map_stats": [ - 2484 + 2489 ], "match_map_stats_aggregate": [ - 2477 + 2482 ], "match_stats": [ - 2543 + 2548 ], "match_stats_aggregate": [ - 2536 + 2541 ], "matches": [ - 1835 + 1840 ], "matchmaking_cooldown": [ - 3422 + 3468 ], "multi_kills": [ - 4265 + 4311 ], "multi_kills_aggregate": [ - 4258 + 4304 ], "name": [ - 72 + 77 ], "name_registered": [ 4 ], "notifications": [ - 1971 + 1976 ], "notifications_aggregate": [ - 1961 + 1966 ], "objectives": [ - 2576 + 2581 ], "objectives_aggregate": [ - 2569 + 2574 ], "owned_teams": [ - 3387 + 3433 ], "owned_teams_aggregate": [ - 3380 + 3426 ], "peak_elo": [ - 1237 + 1242 ], "pending_match_imports": [ - 2021 + 2026 ], "pending_match_imports_aggregate": [ - 2014 + 2019 ], "player_lineup": [ - 1472 + 1477 ], "player_lineup_aggregate": [ - 1463 + 1468 ], "player_unused_utilities": [ - 2772 + 2809 ], "player_unused_utilities_aggregate": [ - 2765 + 2802 ], "premier_rank": [ 39 ], "premier_rank_history": [ - 2635 + 2640 ], "premier_rank_history_aggregate": [ - 2628 + 2633 ], "premier_rank_updated_at": [ - 3422 + 3468 ], "profile_url": [ - 72 + 77 ], "role": [ - 786 + 791 ], "roster_image_url": [ - 72 + 77 ], "sanctions": [ - 2676 + 2681 ], "sanctions_aggregate": [ - 2669 + 2674 ], "show_match_ready_modal": [ 4 ], "stats": [ - 2712 + 2717 ], "steam_bans_checked_at": [ - 3422 + 3468 ], "steam_id": [ - 171 + 176 ], "team_invites": [ - 3104 + 3150 ], "team_invites_aggregate": [ - 3097 + 3143 ], "team_members": [ - 3147 + 3193 ], "team_members_aggregate": [ - 3138 + 3184 ], "teams": [ - 3387 + 3433 ], "total_matches": [ 39 ], "tournament_organizers": [ - 3478 + 3524 ], "tournament_organizers_aggregate": [ - 3471 + 3517 ], "tournament_rosters": [ - 3611 + 3657 ], "tournament_rosters_aggregate": [ - 3604 + 3650 ], "tournament_trophies": [ - 3696 + 3742 ], "tournament_trophies_aggregate": [ - 3687 + 3733 ], "tournaments": [ - 3783 + 3829 ], "tournaments_aggregate": [ - 3774 + 3820 ], "utility_thrown": [ - 2813 + 2850 ], "utility_thrown_aggregate": [ - 2806 + 2843 ], "vac_ban_count": [ 39 @@ -71223,10 +71854,10 @@ export default { 4 ], "weapon_stats": [ - 2854 + 2891 ], "weapon_stats_aggregate": [ - 2847 + 2884 ], "wins": [ 39 @@ -71241,7 +71872,7 @@ export default { 39 ], "__typename": [ - 70 + 75 ] }, "players_constraint": {}, @@ -71262,207 +71893,207 @@ export default { 38 ], "steam_id": [ - 169 + 174 ], "vac_ban_count": [ 38 ], "__typename": [ - 70 + 75 ] }, "players_insert_input": { "abandoned_matches": [ - 107 + 112 ], "aim_weapon_stats": [ - 2114 + 2119 ], "assists": [ - 2157 + 2162 ], "assited_by_players": [ - 2157 + 2162 ], "avatar_url": [ - 70 + 75 ], "coach_lineups": [ - 1512 + 1517 ], "country": [ - 70 + 75 ], "created_at": [ - 3421 + 3467 ], "custom_avatar_url": [ - 70 + 75 ], "damage_dealt": [ - 2218 + 2223 ], "damage_taken": [ - 2218 + 2223 ], "days_since_last_ban": [ 38 ], "deaths": [ - 2374 + 2379 ], "discord_id": [ - 70 + 75 ], "draft_game_players": [ - 305 + 310 ], "elo_history": [ - 4076 + 4122 ], "faceit_elo": [ 38 ], "faceit_nickname": [ - 70 + 75 ], "faceit_player_id": [ - 70 + 75 ], "faceit_rank_history": [ - 2286 + 2291 ], "faceit_skill_level": [ 38 ], "faceit_updated_at": [ - 3421 + 3467 ], "faceit_url": [ - 70 + 75 ], "flashed_by_players": [ - 2329 + 2334 ], "flashed_players": [ - 2329 + 2334 ], "friends": [ - 1895 + 1900 ], "game_ban_count": [ 38 ], "invited_players": [ - 3101 + 3147 ], "kills": [ - 2374 + 2379 ], "kills_by_weapons": [ - 2384 + 2389 ], "language": [ - 70 + 75 ], "last_read_news_at": [ - 3421 + 3467 ], "last_sign_in_at": [ - 3421 + 3467 ], "lobby_players": [ - 1288 + 1293 ], "match_map_hltv": [ - 4171 + 4217 ], "match_map_stats": [ - 2481 + 2486 ], "match_stats": [ - 2540 + 2545 ], "multi_kills": [ - 4262 + 4308 ], "name": [ - 70 + 75 ], "name_registered": [ 3 ], "notifications": [ - 1968 + 1973 ], "objectives": [ - 2573 + 2578 ], "owned_teams": [ - 3384 + 3430 ], "pending_match_imports": [ - 2018 + 2023 ], "player_lineup": [ - 1469 + 1474 ], "player_unused_utilities": [ - 2769 + 2806 ], "premier_rank": [ 38 ], "premier_rank_history": [ - 2632 + 2637 ], "premier_rank_updated_at": [ - 3421 + 3467 ], "profile_url": [ - 70 + 75 ], "role": [ - 785 + 790 ], "roster_image_url": [ - 70 + 75 ], "sanctions": [ - 2673 + 2678 ], "show_match_ready_modal": [ 3 ], "stats": [ - 2719 + 2724 ], "steam_bans_checked_at": [ - 3421 + 3467 ], "steam_id": [ - 169 + 174 ], "team_invites": [ - 3101 + 3147 ], "team_members": [ - 3144 + 3190 ], "tournament_organizers": [ - 3475 + 3521 ], "tournament_rosters": [ - 3608 + 3654 ], "tournament_trophies": [ - 3693 + 3739 ], "tournaments": [ - 3780 + 3826 ], "utility_thrown": [ - 2810 + 2847 ], "vac_ban_count": [ 38 @@ -71471,63 +72102,63 @@ export default { 3 ], "weapon_stats": [ - 2851 + 2888 ], "__typename": [ - 70 + 75 ] }, "players_max_fields": { "avatar_url": [ - 70 + 75 ], "country": [ - 70 + 75 ], "created_at": [ - 3421 + 3467 ], "current_lobby_id": [ - 3818 + 3864 ], "custom_avatar_url": [ - 70 + 75 ], "days_since_last_ban": [ 38 ], "discord_id": [ - 70 + 75 ], "faceit_elo": [ 38 ], "faceit_nickname": [ - 70 + 75 ], "faceit_player_id": [ - 70 + 75 ], "faceit_skill_level": [ 38 ], "faceit_updated_at": [ - 3421 + 3467 ], "faceit_url": [ - 70 + 75 ], "game_ban_count": [ 38 ], "language": [ - 70 + 75 ], "last_read_news_at": [ - 3421 + 3467 ], "last_sign_in_at": [ - 3421 + 3467 ], "losses": [ 38 @@ -71542,28 +72173,28 @@ export default { 38 ], "matchmaking_cooldown": [ - 3421 + 3467 ], "name": [ - 70 + 75 ], "premier_rank": [ 38 ], "premier_rank_updated_at": [ - 3421 + 3467 ], "profile_url": [ - 70 + 75 ], "roster_image_url": [ - 70 + 75 ], "steam_bans_checked_at": [ - 3421 + 3467 ], "steam_id": [ - 169 + 174 ], "total_matches": [ 38 @@ -71584,60 +72215,60 @@ export default { 38 ], "__typename": [ - 70 + 75 ] }, "players_min_fields": { "avatar_url": [ - 70 + 75 ], "country": [ - 70 + 75 ], "created_at": [ - 3421 + 3467 ], "current_lobby_id": [ - 3818 + 3864 ], "custom_avatar_url": [ - 70 + 75 ], "days_since_last_ban": [ 38 ], "discord_id": [ - 70 + 75 ], "faceit_elo": [ 38 ], "faceit_nickname": [ - 70 + 75 ], "faceit_player_id": [ - 70 + 75 ], "faceit_skill_level": [ 38 ], "faceit_updated_at": [ - 3421 + 3467 ], "faceit_url": [ - 70 + 75 ], "game_ban_count": [ 38 ], "language": [ - 70 + 75 ], "last_read_news_at": [ - 3421 + 3467 ], "last_sign_in_at": [ - 3421 + 3467 ], "losses": [ 38 @@ -71652,28 +72283,28 @@ export default { 38 ], "matchmaking_cooldown": [ - 3421 + 3467 ], "name": [ - 70 + 75 ], "premier_rank": [ 38 ], "premier_rank_updated_at": [ - 3421 + 3467 ], "profile_url": [ - 70 + 75 ], "roster_image_url": [ - 70 + 75 ], "steam_bans_checked_at": [ - 3421 + 3467 ], "steam_id": [ - 169 + 174 ], "total_matches": [ 38 @@ -71694,7 +72325,7 @@ export default { 38 ], "__typename": [ - 70 + 75 ] }, "players_mutation_response": { @@ -71702,366 +72333,366 @@ export default { 38 ], "returning": [ - 2878 + 2915 ], "__typename": [ - 70 + 75 ] }, "players_obj_rel_insert_input": { "data": [ - 2885 + 2922 ], "on_conflict": [ - 2890 + 2927 ], "__typename": [ - 70 + 75 ] }, "players_on_conflict": { "constraint": [ - 2883 + 2920 ], "update_columns": [ - 2901 + 2938 ], "where": [ - 2882 + 2919 ], "__typename": [ - 70 + 75 ] }, "players_order_by": { "abandoned_matches_aggregate": [ - 106 + 111 ], "aim_weapon_stats_aggregate": [ - 2113 + 2118 ], "assists_aggregate": [ - 2156 + 2161 ], "assited_by_players_aggregate": [ - 2156 + 2161 ], "avatar_url": [ - 2011 + 2016 ], "coach_lineups_aggregate": [ - 1511 + 1516 ], "country": [ - 2011 + 2016 ], "created_at": [ - 2011 + 2016 ], "current_lobby_id": [ - 2011 + 2016 ], "custom_avatar_url": [ - 2011 + 2016 ], "damage_dealt_aggregate": [ - 2217 + 2222 ], "damage_taken_aggregate": [ - 2217 + 2222 ], "days_since_last_ban": [ - 2011 + 2016 ], "deaths_aggregate": [ - 2373 + 2378 ], "discord_id": [ - 2011 + 2016 ], "draft_game_players_aggregate": [ - 304 + 309 ], "elo": [ - 2011 + 2016 ], "elo_history_aggregate": [ - 4075 + 4121 ], "faceit_elo": [ - 2011 + 2016 ], "faceit_nickname": [ - 2011 + 2016 ], "faceit_player_id": [ - 2011 + 2016 ], "faceit_rank_history_aggregate": [ - 2285 + 2290 ], "faceit_skill_level": [ - 2011 + 2016 ], "faceit_updated_at": [ - 2011 + 2016 ], "faceit_url": [ - 2011 + 2016 ], "flashed_by_players_aggregate": [ - 2328 + 2333 ], "flashed_players_aggregate": [ - 2328 + 2333 ], "friends_aggregate": [ - 1893 + 1898 ], "game_ban_count": [ - 2011 + 2016 ], "invited_players_aggregate": [ - 3100 + 3146 ], "is_banned": [ - 2011 + 2016 ], "is_gagged": [ - 2011 + 2016 ], "is_in_another_match": [ - 2011 + 2016 ], "is_in_draft": [ - 2011 + 2016 ], "is_in_lobby": [ - 2011 + 2016 ], "is_muted": [ - 2011 + 2016 ], "kills_aggregate": [ - 2373 + 2378 ], "kills_by_weapons_aggregate": [ - 2383 + 2388 ], "language": [ - 2011 + 2016 ], "last_read_news_at": [ - 2011 + 2016 ], "last_sign_in_at": [ - 2011 + 2016 ], "lobby_players_aggregate": [ - 1287 + 1292 ], "losses": [ - 2011 + 2016 ], "losses_competitive": [ - 2011 + 2016 ], "losses_duel": [ - 2011 + 2016 ], "losses_wingman": [ - 2011 + 2016 ], "match_map_hltv_aggregate": [ - 4170 + 4216 ], "match_map_stats_aggregate": [ - 2480 + 2485 ], "match_stats_aggregate": [ - 2539 + 2544 ], "matches_aggregate": [ - 1831 + 1836 ], "matchmaking_cooldown": [ - 2011 + 2016 ], "multi_kills_aggregate": [ - 4261 + 4307 ], "name": [ - 2011 + 2016 ], "name_registered": [ - 2011 + 2016 ], "notifications_aggregate": [ - 1966 + 1971 ], "objectives_aggregate": [ - 2572 + 2577 ], "owned_teams_aggregate": [ - 3383 + 3429 ], "peak_elo": [ - 2011 + 2016 ], "pending_match_imports_aggregate": [ - 2017 + 2022 ], "player_lineup_aggregate": [ - 1468 + 1473 ], "player_unused_utilities_aggregate": [ - 2768 + 2805 ], "premier_rank": [ - 2011 + 2016 ], "premier_rank_history_aggregate": [ - 2631 + 2636 ], "premier_rank_updated_at": [ - 2011 + 2016 ], "profile_url": [ - 2011 + 2016 ], "role": [ - 2011 + 2016 ], "roster_image_url": [ - 2011 + 2016 ], "sanctions_aggregate": [ - 2672 + 2677 ], "show_match_ready_modal": [ - 2011 + 2016 ], "stats": [ - 2721 + 2726 ], "steam_bans_checked_at": [ - 2011 + 2016 ], "steam_id": [ - 2011 + 2016 ], "team_invites_aggregate": [ - 3100 + 3146 ], "team_members_aggregate": [ - 3143 + 3189 ], "teams_aggregate": [ - 3383 + 3429 ], "total_matches": [ - 2011 + 2016 ], "tournament_organizers_aggregate": [ - 3474 + 3520 ], "tournament_rosters_aggregate": [ - 3607 + 3653 ], "tournament_trophies_aggregate": [ - 3692 + 3738 ], "tournaments_aggregate": [ - 3779 + 3825 ], "utility_thrown_aggregate": [ - 2809 + 2846 ], "vac_ban_count": [ - 2011 + 2016 ], "vac_banned": [ - 2011 + 2016 ], "weapon_stats_aggregate": [ - 2850 + 2887 ], "wins": [ - 2011 + 2016 ], "wins_competitive": [ - 2011 + 2016 ], "wins_duel": [ - 2011 + 2016 ], "wins_wingman": [ - 2011 + 2016 ], "__typename": [ - 70 + 75 ] }, "players_pk_columns_input": { "steam_id": [ - 169 + 174 ], "__typename": [ - 70 + 75 ] }, "players_select_column": {}, "players_set_input": { "avatar_url": [ - 70 + 75 ], "country": [ - 70 + 75 ], "created_at": [ - 3421 + 3467 ], "custom_avatar_url": [ - 70 + 75 ], "days_since_last_ban": [ 38 ], "discord_id": [ - 70 + 75 ], "faceit_elo": [ 38 ], "faceit_nickname": [ - 70 + 75 ], "faceit_player_id": [ - 70 + 75 ], "faceit_skill_level": [ 38 ], "faceit_updated_at": [ - 3421 + 3467 ], "faceit_url": [ - 70 + 75 ], "game_ban_count": [ 38 ], "language": [ - 70 + 75 ], "last_read_news_at": [ - 3421 + 3467 ], "last_sign_in_at": [ - 3421 + 3467 ], "name": [ - 70 + 75 ], "name_registered": [ 3 @@ -72070,25 +72701,25 @@ export default { 38 ], "premier_rank_updated_at": [ - 3421 + 3467 ], "profile_url": [ - 70 + 75 ], "role": [ - 785 + 790 ], "roster_image_url": [ - 70 + 75 ], "show_match_ready_modal": [ 3 ], "steam_bans_checked_at": [ - 3421 + 3467 ], "steam_id": [ - 169 + 174 ], "vac_ban_count": [ 38 @@ -72097,7 +72728,7 @@ export default { 3 ], "__typename": [ - 70 + 75 ] }, "players_stddev_fields": { @@ -72150,7 +72781,7 @@ export default { 38 ], "__typename": [ - 70 + 75 ] }, "players_stddev_pop_fields": { @@ -72203,7 +72834,7 @@ export default { 38 ], "__typename": [ - 70 + 75 ] }, "players_stddev_samp_fields": { @@ -72256,71 +72887,71 @@ export default { 38 ], "__typename": [ - 70 + 75 ] }, "players_stream_cursor_input": { "initial_value": [ - 2899 + 2936 ], "ordering": [ - 224 + 229 ], "__typename": [ - 70 + 75 ] }, "players_stream_cursor_value_input": { "avatar_url": [ - 70 + 75 ], "country": [ - 70 + 75 ], "created_at": [ - 3421 + 3467 ], "custom_avatar_url": [ - 70 + 75 ], "days_since_last_ban": [ 38 ], "discord_id": [ - 70 + 75 ], "faceit_elo": [ 38 ], "faceit_nickname": [ - 70 + 75 ], "faceit_player_id": [ - 70 + 75 ], "faceit_skill_level": [ 38 ], "faceit_updated_at": [ - 3421 + 3467 ], "faceit_url": [ - 70 + 75 ], "game_ban_count": [ 38 ], "language": [ - 70 + 75 ], "last_read_news_at": [ - 3421 + 3467 ], "last_sign_in_at": [ - 3421 + 3467 ], "name": [ - 70 + 75 ], "name_registered": [ 3 @@ -72329,25 +72960,25 @@ export default { 38 ], "premier_rank_updated_at": [ - 3421 + 3467 ], "profile_url": [ - 70 + 75 ], "role": [ - 785 + 790 ], "roster_image_url": [ - 70 + 75 ], "show_match_ready_modal": [ 3 ], "steam_bans_checked_at": [ - 3421 + 3467 ], "steam_id": [ - 169 + 174 ], "vac_ban_count": [ 38 @@ -72356,7 +72987,7 @@ export default { 3 ], "__typename": [ - 70 + 75 ] }, "players_sum_fields": { @@ -72388,7 +73019,7 @@ export default { 38 ], "steam_id": [ - 169 + 174 ], "total_matches": [ 38 @@ -72409,22 +73040,22 @@ export default { 38 ], "__typename": [ - 70 + 75 ] }, "players_update_column": {}, "players_updates": { "_inc": [ - 2884 + 2921 ], "_set": [ - 2894 + 2931 ], "where": [ - 2882 + 2919 ], "__typename": [ - 70 + 75 ] }, "players_var_pop_fields": { @@ -72477,7 +73108,7 @@ export default { 38 ], "__typename": [ - 70 + 75 ] }, "players_var_samp_fields": { @@ -72530,7 +73161,7 @@ export default { 38 ], "__typename": [ - 70 + 75 ] }, "players_variance_fields": { @@ -72583,7 +73214,7 @@ export default { 38 ], "__typename": [ - 70 + 75 ] }, "plugin_versions": { @@ -72591,35 +73222,35 @@ export default { 38 ], "published_at": [ - 3421 + 3467 ], "version": [ - 70 + 75 ], "__typename": [ - 70 + 75 ] }, "plugin_versions_aggregate": { "aggregate": [ - 2908 + 2945 ], "nodes": [ - 2906 + 2943 ], "__typename": [ - 70 + 75 ] }, "plugin_versions_aggregate_fields": { "avg": [ - 2909 + 2946 ], "count": [ 38, { "columns": [ - 2920, + 2957, "[plugin_versions_select_column!]" ], "distinct": [ @@ -72628,34 +73259,34 @@ export default { } ], "max": [ - 2914 + 2951 ], "min": [ - 2915 + 2952 ], "stddev": [ - 2922 + 2959 ], "stddev_pop": [ - 2923 + 2960 ], "stddev_samp": [ - 2924 + 2961 ], "sum": [ - 2927 + 2964 ], "var_pop": [ - 2930 + 2967 ], "var_samp": [ - 2931 + 2968 ], "variance": [ - 2932 + 2969 ], "__typename": [ - 70 + 75 ] }, "plugin_versions_avg_fields": { @@ -72663,30 +73294,30 @@ export default { 29 ], "__typename": [ - 70 + 75 ] }, "plugin_versions_bool_exp": { "_and": [ - 2910 + 2947 ], "_not": [ - 2910 + 2947 ], "_or": [ - 2910 + 2947 ], "min_game_build_id": [ 39 ], "published_at": [ - 3422 + 3468 ], "version": [ - 72 + 77 ], "__typename": [ - 70 + 75 ] }, "plugin_versions_constraint": {}, @@ -72695,7 +73326,7 @@ export default { 38 ], "__typename": [ - 70 + 75 ] }, "plugin_versions_insert_input": { @@ -72703,13 +73334,13 @@ export default { 38 ], "published_at": [ - 3421 + 3467 ], "version": [ - 70 + 75 ], "__typename": [ - 70 + 75 ] }, "plugin_versions_max_fields": { @@ -72717,13 +73348,13 @@ export default { 38 ], "published_at": [ - 3421 + 3467 ], "version": [ - 70 + 75 ], "__typename": [ - 70 + 75 ] }, "plugin_versions_min_fields": { @@ -72731,13 +73362,13 @@ export default { 38 ], "published_at": [ - 3421 + 3467 ], "version": [ - 70 + 75 ], "__typename": [ - 70 + 75 ] }, "plugin_versions_mutation_response": { @@ -72745,46 +73376,46 @@ export default { 38 ], "returning": [ - 2906 + 2943 ], "__typename": [ - 70 + 75 ] }, "plugin_versions_on_conflict": { "constraint": [ - 2911 + 2948 ], "update_columns": [ - 2928 + 2965 ], "where": [ - 2910 + 2947 ], "__typename": [ - 70 + 75 ] }, "plugin_versions_order_by": { "min_game_build_id": [ - 2011 + 2016 ], "published_at": [ - 2011 + 2016 ], "version": [ - 2011 + 2016 ], "__typename": [ - 70 + 75 ] }, "plugin_versions_pk_columns_input": { "version": [ - 70 + 75 ], "__typename": [ - 70 + 75 ] }, "plugin_versions_select_column": {}, @@ -72793,13 +73424,13 @@ export default { 38 ], "published_at": [ - 3421 + 3467 ], "version": [ - 70 + 75 ], "__typename": [ - 70 + 75 ] }, "plugin_versions_stddev_fields": { @@ -72807,7 +73438,7 @@ export default { 29 ], "__typename": [ - 70 + 75 ] }, "plugin_versions_stddev_pop_fields": { @@ -72815,7 +73446,7 @@ export default { 29 ], "__typename": [ - 70 + 75 ] }, "plugin_versions_stddev_samp_fields": { @@ -72823,18 +73454,18 @@ export default { 29 ], "__typename": [ - 70 + 75 ] }, "plugin_versions_stream_cursor_input": { "initial_value": [ - 2926 + 2963 ], "ordering": [ - 224 + 229 ], "__typename": [ - 70 + 75 ] }, "plugin_versions_stream_cursor_value_input": { @@ -72842,13 +73473,13 @@ export default { 38 ], "published_at": [ - 3421 + 3467 ], "version": [ - 70 + 75 ], "__typename": [ - 70 + 75 ] }, "plugin_versions_sum_fields": { @@ -72856,22 +73487,22 @@ export default { 38 ], "__typename": [ - 70 + 75 ] }, "plugin_versions_update_column": {}, "plugin_versions_updates": { "_inc": [ - 2912 + 2949 ], "_set": [ - 2921 + 2958 ], "where": [ - 2910 + 2947 ], "__typename": [ - 70 + 75 ] }, "plugin_versions_var_pop_fields": { @@ -72879,7 +73510,7 @@ export default { 29 ], "__typename": [ - 70 + 75 ] }, "plugin_versions_var_samp_fields": { @@ -72887,7 +73518,7 @@ export default { 29 ], "__typename": [ - 70 + 75 ] }, "plugin_versions_variance_fields": { @@ -72895,15 +73526,15 @@ export default { 29 ], "__typename": [ - 70 + 75 ] }, "recalculate_tournament_trophies_args": { "_tournament_id": [ - 3818 + 3864 ], "__typename": [ - 70 + 75 ] }, "server_regions": { @@ -72911,13 +73542,13 @@ export default { 38 ], "description": [ - 70 + 75 ], "game_server_nodes": [ - 1113, + 1118, { "distinct_on": [ - 1142, + 1147, "[game_server_nodes_select_column!]" ], "limit": [ @@ -72927,19 +73558,19 @@ export default { 38 ], "order_by": [ - 1139, + 1144, "[game_server_nodes_order_by!]" ], "where": [ - 1125 + 1130 ] } ], "game_server_nodes_aggregate": [ - 1114, + 1119, { "distinct_on": [ - 1142, + 1147, "[game_server_nodes_select_column!]" ], "limit": [ @@ -72949,11 +73580,11 @@ export default { 38 ], "order_by": [ - 1139, + 1144, "[game_server_nodes_order_by!]" ], "where": [ - 1125 + 1130 ] } ], @@ -72964,7 +73595,7 @@ export default { 3 ], "status": [ - 70 + 75 ], "steam_relay": [ 3 @@ -72973,32 +73604,32 @@ export default { 38 ], "value": [ - 70 + 75 ], "__typename": [ - 70 + 75 ] }, "server_regions_aggregate": { "aggregate": [ - 2936 + 2973 ], "nodes": [ - 2934 + 2971 ], "__typename": [ - 70 + 75 ] }, "server_regions_aggregate_fields": { "avg": [ - 2937 + 2974 ], "count": [ 38, { "columns": [ - 2948, + 2985, "[server_regions_select_column!]" ], "distinct": [ @@ -73007,34 +73638,34 @@ export default { } ], "max": [ - 2941 + 2978 ], "min": [ - 2942 + 2979 ], "stddev": [ - 2950 + 2987 ], "stddev_pop": [ - 2951 + 2988 ], "stddev_samp": [ - 2952 + 2989 ], "sum": [ - 2955 + 2992 ], "var_pop": [ - 2958 + 2995 ], "var_samp": [ - 2959 + 2996 ], "variance": [ - 2960 + 2997 ], "__typename": [ - 70 + 75 ] }, "server_regions_avg_fields": { @@ -73045,30 +73676,30 @@ export default { 38 ], "__typename": [ - 70 + 75 ] }, "server_regions_bool_exp": { "_and": [ - 2938 + 2975 ], "_not": [ - 2938 + 2975 ], "_or": [ - 2938 + 2975 ], "available_server_count": [ 39 ], "description": [ - 72 + 77 ], "game_server_nodes": [ - 1125 + 1130 ], "game_server_nodes_aggregate": [ - 1115 + 1120 ], "has_node": [ 4 @@ -73077,7 +73708,7 @@ export default { 4 ], "status": [ - 72 + 77 ], "steam_relay": [ 4 @@ -73086,19 +73717,19 @@ export default { 39 ], "value": [ - 72 + 77 ], "__typename": [ - 70 + 75 ] }, "server_regions_constraint": {}, "server_regions_insert_input": { "description": [ - 70 + 75 ], "game_server_nodes": [ - 1122 + 1127 ], "is_lan": [ 3 @@ -73107,10 +73738,10 @@ export default { 3 ], "value": [ - 70 + 75 ], "__typename": [ - 70 + 75 ] }, "server_regions_max_fields": { @@ -73118,19 +73749,19 @@ export default { 38 ], "description": [ - 70 + 75 ], "status": [ - 70 + 75 ], "total_server_count": [ 38 ], "value": [ - 70 + 75 ], "__typename": [ - 70 + 75 ] }, "server_regions_min_fields": { @@ -73138,19 +73769,19 @@ export default { 38 ], "description": [ - 70 + 75 ], "status": [ - 70 + 75 ], "total_server_count": [ 38 ], "value": [ - 70 + 75 ], "__typename": [ - 70 + 75 ] }, "server_regions_mutation_response": { @@ -73158,81 +73789,81 @@ export default { 38 ], "returning": [ - 2934 + 2971 ], "__typename": [ - 70 + 75 ] }, "server_regions_obj_rel_insert_input": { "data": [ - 2940 + 2977 ], "on_conflict": [ - 2945 + 2982 ], "__typename": [ - 70 + 75 ] }, "server_regions_on_conflict": { "constraint": [ - 2939 + 2976 ], "update_columns": [ - 2956 + 2993 ], "where": [ - 2938 + 2975 ], "__typename": [ - 70 + 75 ] }, "server_regions_order_by": { "available_server_count": [ - 2011 + 2016 ], "description": [ - 2011 + 2016 ], "game_server_nodes_aggregate": [ - 1120 + 1125 ], "has_node": [ - 2011 + 2016 ], "is_lan": [ - 2011 + 2016 ], "status": [ - 2011 + 2016 ], "steam_relay": [ - 2011 + 2016 ], "total_server_count": [ - 2011 + 2016 ], "value": [ - 2011 + 2016 ], "__typename": [ - 70 + 75 ] }, "server_regions_pk_columns_input": { "value": [ - 70 + 75 ], "__typename": [ - 70 + 75 ] }, "server_regions_select_column": {}, "server_regions_set_input": { "description": [ - 70 + 75 ], "is_lan": [ 3 @@ -73241,10 +73872,10 @@ export default { 3 ], "value": [ - 70 + 75 ], "__typename": [ - 70 + 75 ] }, "server_regions_stddev_fields": { @@ -73255,7 +73886,7 @@ export default { 38 ], "__typename": [ - 70 + 75 ] }, "server_regions_stddev_pop_fields": { @@ -73266,7 +73897,7 @@ export default { 38 ], "__typename": [ - 70 + 75 ] }, "server_regions_stddev_samp_fields": { @@ -73277,23 +73908,23 @@ export default { 38 ], "__typename": [ - 70 + 75 ] }, "server_regions_stream_cursor_input": { "initial_value": [ - 2954 + 2991 ], "ordering": [ - 224 + 229 ], "__typename": [ - 70 + 75 ] }, "server_regions_stream_cursor_value_input": { "description": [ - 70 + 75 ], "is_lan": [ 3 @@ -73302,10 +73933,10 @@ export default { 3 ], "value": [ - 70 + 75 ], "__typename": [ - 70 + 75 ] }, "server_regions_sum_fields": { @@ -73316,19 +73947,19 @@ export default { 38 ], "__typename": [ - 70 + 75 ] }, "server_regions_update_column": {}, "server_regions_updates": { "_set": [ - 2949 + 2986 ], "where": [ - 2938 + 2975 ], "__typename": [ - 70 + 75 ] }, "server_regions_var_pop_fields": { @@ -73339,7 +73970,7 @@ export default { 38 ], "__typename": [ - 70 + 75 ] }, "server_regions_var_samp_fields": { @@ -73350,7 +73981,7 @@ export default { 38 ], "__typename": [ - 70 + 75 ] }, "server_regions_variance_fields": { @@ -73361,63 +73992,63 @@ export default { 38 ], "__typename": [ - 70 + 75 ] }, "servers": { "api_password": [ - 3818 + 3864 ], "boot_status": [ - 70 + 75 ], "boot_status_detail": [ - 70 + 75 ], "connect_password": [ - 70 + 75 ], "connected": [ 3 ], "connection_link": [ - 70 + 75 ], "connection_string": [ - 70 + 75 ], "current_match": [ - 1826 + 1831 ], "enabled": [ 3 ], "game": [ - 70 + 75 ], "game_server_node": [ - 1113 + 1118 ], "game_server_node_id": [ - 70 + 75 ], "host": [ - 70 + 75 ], "id": [ - 3818 + 3864 ], "is_dedicated": [ 3 ], "label": [ - 70 + 75 ], "matches": [ - 1826, + 1831, { "distinct_on": [ - 1848, + 1853, "[matches_select_column!]" ], "limit": [ @@ -73427,19 +74058,19 @@ export default { 38 ], "order_by": [ - 1846, + 1851, "[matches_order_by!]" ], "where": [ - 1835 + 1840 ] } ], "matches_aggregate": [ - 1827, + 1832, { "distinct_on": [ - 1848, + 1853, "[matches_select_column!]" ], "limit": [ @@ -73449,11 +74080,11 @@ export default { 38 ], "order_by": [ - 1846, + 1851, "[matches_order_by!]" ], "where": [ - 1835 + 1840 ] } ], @@ -73461,130 +74092,130 @@ export default { 38 ], "offline_at": [ - 3421 + 3467 ], "plugin_version": [ - 70 + 75 ], "port": [ 38 ], "rcon_password": [ - 172 + 177 ], "rcon_status": [ 3 ], "region": [ - 70 + 75 ], "reserved_by_match_id": [ - 3818 + 3864 ], "server_region": [ - 2934 + 2971 ], "steam_relay": [ - 70 + 75 ], "tv_port": [ 38 ], "type": [ - 866 + 871 ], "updated_at": [ - 3421 + 3467 ], "__typename": [ - 70 + 75 ] }, "servers_aggregate": { "aggregate": [ - 2967 + 3004 ], "nodes": [ - 2961 + 2998 ], "__typename": [ - 70 + 75 ] }, "servers_aggregate_bool_exp": { "bool_and": [ - 2964 + 3001 ], "bool_or": [ - 2965 + 3002 ], "count": [ - 2966 + 3003 ], "__typename": [ - 70 + 75 ] }, "servers_aggregate_bool_exp_bool_and": { "arguments": [ - 2986 + 3023 ], "distinct": [ 3 ], "filter": [ - 2972 + 3009 ], "predicate": [ 4 ], "__typename": [ - 70 + 75 ] }, "servers_aggregate_bool_exp_bool_or": { "arguments": [ - 2987 + 3024 ], "distinct": [ 3 ], "filter": [ - 2972 + 3009 ], "predicate": [ 4 ], "__typename": [ - 70 + 75 ] }, "servers_aggregate_bool_exp_count": { "arguments": [ - 2985 + 3022 ], "distinct": [ 3 ], "filter": [ - 2972 + 3009 ], "predicate": [ 39 ], "__typename": [ - 70 + 75 ] }, "servers_aggregate_fields": { "avg": [ - 2970 + 3007 ], "count": [ 38, { "columns": [ - 2985, + 3022, "[servers_select_column!]" ], "distinct": [ @@ -73593,83 +74224,83 @@ export default { } ], "max": [ - 2976 + 3013 ], "min": [ - 2978 + 3015 ], "stddev": [ - 2989 + 3026 ], "stddev_pop": [ - 2991 + 3028 ], "stddev_samp": [ - 2993 + 3030 ], "sum": [ - 2997 + 3034 ], "var_pop": [ - 3001 + 3038 ], "var_samp": [ - 3003 + 3040 ], "variance": [ - 3005 + 3042 ], "__typename": [ - 70 + 75 ] }, "servers_aggregate_order_by": { "avg": [ - 2971 + 3008 ], "count": [ - 2011 + 2016 ], "max": [ - 2977 + 3014 ], "min": [ - 2979 + 3016 ], "stddev": [ - 2990 + 3027 ], "stddev_pop": [ - 2992 + 3029 ], "stddev_samp": [ - 2994 + 3031 ], "sum": [ - 2998 + 3035 ], "var_pop": [ - 3002 + 3039 ], "var_samp": [ - 3004 + 3041 ], "variance": [ - 3006 + 3043 ], "__typename": [ - 70 + 75 ] }, "servers_arr_rel_insert_input": { "data": [ - 2975 + 3012 ], "on_conflict": [ - 2982 + 3019 ], "__typename": [ - 70 + 75 ] }, "servers_avg_fields": { @@ -73683,128 +74314,128 @@ export default { 29 ], "__typename": [ - 70 + 75 ] }, "servers_avg_order_by": { "max_players": [ - 2011 + 2016 ], "port": [ - 2011 + 2016 ], "tv_port": [ - 2011 + 2016 ], "__typename": [ - 70 + 75 ] }, "servers_bool_exp": { "_and": [ - 2972 + 3009 ], "_not": [ - 2972 + 3009 ], "_or": [ - 2972 + 3009 ], "api_password": [ - 3820 + 3866 ], "boot_status": [ - 72 + 77 ], "boot_status_detail": [ - 72 + 77 ], "connect_password": [ - 72 + 77 ], "connected": [ 4 ], "connection_link": [ - 72 + 77 ], "connection_string": [ - 72 + 77 ], "current_match": [ - 1835 + 1840 ], "enabled": [ 4 ], "game": [ - 72 + 77 ], "game_server_node": [ - 1125 + 1130 ], "game_server_node_id": [ - 72 + 77 ], "host": [ - 72 + 77 ], "id": [ - 3820 + 3866 ], "is_dedicated": [ 4 ], "label": [ - 72 + 77 ], "matches": [ - 1835 + 1840 ], "matches_aggregate": [ - 1828 + 1833 ], "max_players": [ 39 ], "offline_at": [ - 3422 + 3468 ], "plugin_version": [ - 72 + 77 ], "port": [ 39 ], "rcon_password": [ - 173 + 178 ], "rcon_status": [ 4 ], "region": [ - 72 + 77 ], "reserved_by_match_id": [ - 3820 + 3866 ], "server_region": [ - 2938 + 2975 ], "steam_relay": [ - 72 + 77 ], "tv_port": [ 39 ], "type": [ - 867 + 872 ], "updated_at": [ - 3422 + 3468 ], "__typename": [ - 70 + 75 ] }, "servers_constraint": {}, @@ -73819,344 +74450,344 @@ export default { 38 ], "__typename": [ - 70 + 75 ] }, "servers_insert_input": { "api_password": [ - 3818 + 3864 ], "boot_status": [ - 70 + 75 ], "boot_status_detail": [ - 70 + 75 ], "connect_password": [ - 70 + 75 ], "connected": [ 3 ], "current_match": [ - 1844 + 1849 ], "enabled": [ 3 ], "game": [ - 70 + 75 ], "game_server_node": [ - 1137 + 1142 ], "game_server_node_id": [ - 70 + 75 ], "host": [ - 70 + 75 ], "id": [ - 3818 + 3864 ], "is_dedicated": [ 3 ], "label": [ - 70 + 75 ], "matches": [ - 1832 + 1837 ], "max_players": [ 38 ], "offline_at": [ - 3421 + 3467 ], "plugin_version": [ - 70 + 75 ], "port": [ 38 ], "rcon_password": [ - 172 + 177 ], "rcon_status": [ 3 ], "region": [ - 70 + 75 ], "reserved_by_match_id": [ - 3818 + 3864 ], "server_region": [ - 2944 + 2981 ], "steam_relay": [ - 70 + 75 ], "tv_port": [ 38 ], "type": [ - 866 + 871 ], "updated_at": [ - 3421 + 3467 ], "__typename": [ - 70 + 75 ] }, "servers_max_fields": { "api_password": [ - 3818 + 3864 ], "boot_status": [ - 70 + 75 ], "boot_status_detail": [ - 70 + 75 ], "connect_password": [ - 70 + 75 ], "connection_link": [ - 70 + 75 ], "connection_string": [ - 70 + 75 ], "game": [ - 70 + 75 ], "game_server_node_id": [ - 70 + 75 ], "host": [ - 70 + 75 ], "id": [ - 3818 + 3864 ], "label": [ - 70 + 75 ], "max_players": [ 38 ], "offline_at": [ - 3421 + 3467 ], "plugin_version": [ - 70 + 75 ], "port": [ 38 ], "region": [ - 70 + 75 ], "reserved_by_match_id": [ - 3818 + 3864 ], "steam_relay": [ - 70 + 75 ], "tv_port": [ 38 ], "updated_at": [ - 3421 + 3467 ], "__typename": [ - 70 + 75 ] }, "servers_max_order_by": { "api_password": [ - 2011 + 2016 ], "boot_status": [ - 2011 + 2016 ], "boot_status_detail": [ - 2011 + 2016 ], "connect_password": [ - 2011 + 2016 ], "game": [ - 2011 + 2016 ], "game_server_node_id": [ - 2011 + 2016 ], "host": [ - 2011 + 2016 ], "id": [ - 2011 + 2016 ], "label": [ - 2011 + 2016 ], "max_players": [ - 2011 + 2016 ], "offline_at": [ - 2011 + 2016 ], "plugin_version": [ - 2011 + 2016 ], "port": [ - 2011 + 2016 ], "region": [ - 2011 + 2016 ], "reserved_by_match_id": [ - 2011 + 2016 ], "steam_relay": [ - 2011 + 2016 ], "tv_port": [ - 2011 + 2016 ], "updated_at": [ - 2011 + 2016 ], "__typename": [ - 70 + 75 ] }, "servers_min_fields": { "api_password": [ - 3818 + 3864 ], "boot_status": [ - 70 + 75 ], "boot_status_detail": [ - 70 + 75 ], "connect_password": [ - 70 + 75 ], "connection_link": [ - 70 + 75 ], "connection_string": [ - 70 + 75 ], "game": [ - 70 + 75 ], "game_server_node_id": [ - 70 + 75 ], "host": [ - 70 + 75 ], "id": [ - 3818 + 3864 ], "label": [ - 70 + 75 ], "max_players": [ 38 ], "offline_at": [ - 3421 + 3467 ], "plugin_version": [ - 70 + 75 ], "port": [ 38 ], "region": [ - 70 + 75 ], "reserved_by_match_id": [ - 3818 + 3864 ], "steam_relay": [ - 70 + 75 ], "tv_port": [ 38 ], "updated_at": [ - 3421 + 3467 ], "__typename": [ - 70 + 75 ] }, "servers_min_order_by": { "api_password": [ - 2011 + 2016 ], "boot_status": [ - 2011 + 2016 ], "boot_status_detail": [ - 2011 + 2016 ], "connect_password": [ - 2011 + 2016 ], "game": [ - 2011 + 2016 ], "game_server_node_id": [ - 2011 + 2016 ], "host": [ - 2011 + 2016 ], "id": [ - 2011 + 2016 ], "label": [ - 2011 + 2016 ], "max_players": [ - 2011 + 2016 ], "offline_at": [ - 2011 + 2016 ], "plugin_version": [ - 2011 + 2016 ], "port": [ - 2011 + 2016 ], "region": [ - 2011 + 2016 ], "reserved_by_match_id": [ - 2011 + 2016 ], "steam_relay": [ - 2011 + 2016 ], "tv_port": [ - 2011 + 2016 ], "updated_at": [ - 2011 + 2016 ], "__typename": [ - 70 + 75 ] }, "servers_mutation_response": { @@ -74164,138 +74795,138 @@ export default { 38 ], "returning": [ - 2961 + 2998 ], "__typename": [ - 70 + 75 ] }, "servers_obj_rel_insert_input": { "data": [ - 2975 + 3012 ], "on_conflict": [ - 2982 + 3019 ], "__typename": [ - 70 + 75 ] }, "servers_on_conflict": { "constraint": [ - 2973 + 3010 ], "update_columns": [ - 2999 + 3036 ], "where": [ - 2972 + 3009 ], "__typename": [ - 70 + 75 ] }, "servers_order_by": { "api_password": [ - 2011 + 2016 ], "boot_status": [ - 2011 + 2016 ], "boot_status_detail": [ - 2011 + 2016 ], "connect_password": [ - 2011 + 2016 ], "connected": [ - 2011 + 2016 ], "connection_link": [ - 2011 + 2016 ], "connection_string": [ - 2011 + 2016 ], "current_match": [ - 1846 + 1851 ], "enabled": [ - 2011 + 2016 ], "game": [ - 2011 + 2016 ], "game_server_node": [ - 1139 + 1144 ], "game_server_node_id": [ - 2011 + 2016 ], "host": [ - 2011 + 2016 ], "id": [ - 2011 + 2016 ], "is_dedicated": [ - 2011 + 2016 ], "label": [ - 2011 + 2016 ], "matches_aggregate": [ - 1831 + 1836 ], "max_players": [ - 2011 + 2016 ], "offline_at": [ - 2011 + 2016 ], "plugin_version": [ - 2011 + 2016 ], "port": [ - 2011 + 2016 ], "rcon_password": [ - 2011 + 2016 ], "rcon_status": [ - 2011 + 2016 ], "region": [ - 2011 + 2016 ], "reserved_by_match_id": [ - 2011 + 2016 ], "server_region": [ - 2946 + 2983 ], "steam_relay": [ - 2011 + 2016 ], "tv_port": [ - 2011 + 2016 ], "type": [ - 2011 + 2016 ], "updated_at": [ - 2011 + 2016 ], "__typename": [ - 70 + 75 ] }, "servers_pk_columns_input": { "id": [ - 3818 + 3864 ], "__typename": [ - 70 + 75 ] }, "servers_select_column": {}, @@ -74303,16 +74934,16 @@ export default { "servers_select_column_servers_aggregate_bool_exp_bool_or_arguments_columns": {}, "servers_set_input": { "api_password": [ - 3818 + 3864 ], "boot_status": [ - 70 + 75 ], "boot_status_detail": [ - 70 + 75 ], "connect_password": [ - 70 + 75 ], "connected": [ 3 @@ -74321,61 +74952,61 @@ export default { 3 ], "game": [ - 70 + 75 ], "game_server_node_id": [ - 70 + 75 ], "host": [ - 70 + 75 ], "id": [ - 3818 + 3864 ], "is_dedicated": [ 3 ], "label": [ - 70 + 75 ], "max_players": [ 38 ], "offline_at": [ - 3421 + 3467 ], "plugin_version": [ - 70 + 75 ], "port": [ 38 ], "rcon_password": [ - 172 + 177 ], "rcon_status": [ 3 ], "region": [ - 70 + 75 ], "reserved_by_match_id": [ - 3818 + 3864 ], "steam_relay": [ - 70 + 75 ], "tv_port": [ 38 ], "type": [ - 866 + 871 ], "updated_at": [ - 3421 + 3467 ], "__typename": [ - 70 + 75 ] }, "servers_stddev_fields": { @@ -74389,21 +75020,21 @@ export default { 29 ], "__typename": [ - 70 + 75 ] }, "servers_stddev_order_by": { "max_players": [ - 2011 + 2016 ], "port": [ - 2011 + 2016 ], "tv_port": [ - 2011 + 2016 ], "__typename": [ - 70 + 75 ] }, "servers_stddev_pop_fields": { @@ -74417,21 +75048,21 @@ export default { 29 ], "__typename": [ - 70 + 75 ] }, "servers_stddev_pop_order_by": { "max_players": [ - 2011 + 2016 ], "port": [ - 2011 + 2016 ], "tv_port": [ - 2011 + 2016 ], "__typename": [ - 70 + 75 ] }, "servers_stddev_samp_fields": { @@ -74445,46 +75076,46 @@ export default { 29 ], "__typename": [ - 70 + 75 ] }, "servers_stddev_samp_order_by": { "max_players": [ - 2011 + 2016 ], "port": [ - 2011 + 2016 ], "tv_port": [ - 2011 + 2016 ], "__typename": [ - 70 + 75 ] }, "servers_stream_cursor_input": { "initial_value": [ - 2996 + 3033 ], "ordering": [ - 224 + 229 ], "__typename": [ - 70 + 75 ] }, "servers_stream_cursor_value_input": { "api_password": [ - 3818 + 3864 ], "boot_status": [ - 70 + 75 ], "boot_status_detail": [ - 70 + 75 ], "connect_password": [ - 70 + 75 ], "connected": [ 3 @@ -74493,61 +75124,61 @@ export default { 3 ], "game": [ - 70 + 75 ], "game_server_node_id": [ - 70 + 75 ], "host": [ - 70 + 75 ], "id": [ - 3818 + 3864 ], "is_dedicated": [ 3 ], "label": [ - 70 + 75 ], "max_players": [ 38 ], "offline_at": [ - 3421 + 3467 ], "plugin_version": [ - 70 + 75 ], "port": [ 38 ], "rcon_password": [ - 172 + 177 ], "rcon_status": [ 3 ], "region": [ - 70 + 75 ], "reserved_by_match_id": [ - 3818 + 3864 ], "steam_relay": [ - 70 + 75 ], "tv_port": [ 38 ], "type": [ - 866 + 871 ], "updated_at": [ - 3421 + 3467 ], "__typename": [ - 70 + 75 ] }, "servers_sum_fields": { @@ -74561,36 +75192,36 @@ export default { 38 ], "__typename": [ - 70 + 75 ] }, "servers_sum_order_by": { "max_players": [ - 2011 + 2016 ], "port": [ - 2011 + 2016 ], "tv_port": [ - 2011 + 2016 ], "__typename": [ - 70 + 75 ] }, "servers_update_column": {}, "servers_updates": { "_inc": [ - 2974 + 3011 ], "_set": [ - 2988 + 3025 ], "where": [ - 2972 + 3009 ], "__typename": [ - 70 + 75 ] }, "servers_var_pop_fields": { @@ -74604,21 +75235,21 @@ export default { 29 ], "__typename": [ - 70 + 75 ] }, "servers_var_pop_order_by": { "max_players": [ - 2011 + 2016 ], "port": [ - 2011 + 2016 ], "tv_port": [ - 2011 + 2016 ], "__typename": [ - 70 + 75 ] }, "servers_var_samp_fields": { @@ -74632,21 +75263,21 @@ export default { 29 ], "__typename": [ - 70 + 75 ] }, "servers_var_samp_order_by": { "max_players": [ - 2011 + 2016 ], "port": [ - 2011 + 2016 ], "tv_port": [ - 2011 + 2016 ], "__typename": [ - 70 + 75 ] }, "servers_variance_fields": { @@ -74660,43 +75291,43 @@ export default { 29 ], "__typename": [ - 70 + 75 ] }, "servers_variance_order_by": { "max_players": [ - 2011 + 2016 ], "port": [ - 2011 + 2016 ], "tv_port": [ - 2011 + 2016 ], "__typename": [ - 70 + 75 ] }, "settings": { "name": [ - 70 + 75 ], "value": [ - 70 + 75 ], "__typename": [ - 70 + 75 ] }, "settings_aggregate": { "aggregate": [ - 3009 + 3046 ], "nodes": [ - 3007 + 3044 ], "__typename": [ - 70 + 75 ] }, "settings_aggregate_fields": { @@ -74704,7 +75335,7 @@ export default { 38, { "columns": [ - 3019, + 3056, "[settings_select_column!]" ], "distinct": [ @@ -74713,67 +75344,67 @@ export default { } ], "max": [ - 3013 + 3050 ], "min": [ - 3014 + 3051 ], "__typename": [ - 70 + 75 ] }, "settings_bool_exp": { "_and": [ - 3010 + 3047 ], "_not": [ - 3010 + 3047 ], "_or": [ - 3010 + 3047 ], "name": [ - 72 + 77 ], "value": [ - 72 + 77 ], "__typename": [ - 70 + 75 ] }, "settings_constraint": {}, "settings_insert_input": { "name": [ - 70 + 75 ], "value": [ - 70 + 75 ], "__typename": [ - 70 + 75 ] }, "settings_max_fields": { "name": [ - 70 + 75 ], "value": [ - 70 + 75 ], "__typename": [ - 70 + 75 ] }, "settings_min_fields": { "name": [ - 70 + 75 ], "value": [ - 70 + 75 ], "__typename": [ - 70 + 75 ] }, "settings_mutation_response": { @@ -74781,154 +75412,154 @@ export default { 38 ], "returning": [ - 3007 + 3044 ], "__typename": [ - 70 + 75 ] }, "settings_on_conflict": { "constraint": [ - 3011 + 3048 ], "update_columns": [ - 3023 + 3060 ], "where": [ - 3010 + 3047 ], "__typename": [ - 70 + 75 ] }, "settings_order_by": { "name": [ - 2011 + 2016 ], "value": [ - 2011 + 2016 ], "__typename": [ - 70 + 75 ] }, "settings_pk_columns_input": { "name": [ - 70 + 75 ], "__typename": [ - 70 + 75 ] }, "settings_select_column": {}, "settings_set_input": { "name": [ - 70 + 75 ], "value": [ - 70 + 75 ], "__typename": [ - 70 + 75 ] }, "settings_stream_cursor_input": { "initial_value": [ - 3022 + 3059 ], "ordering": [ - 224 + 229 ], "__typename": [ - 70 + 75 ] }, "settings_stream_cursor_value_input": { "name": [ - 70 + 75 ], "value": [ - 70 + 75 ], "__typename": [ - 70 + 75 ] }, "settings_update_column": {}, "settings_updates": { "_set": [ - 3020 + 3057 ], "where": [ - 3010 + 3047 ], "__typename": [ - 70 + 75 ] }, "steam_account_claims": { "created_at": [ - 3421 + 3467 ], "id": [ - 3818 + 3864 ], "k8s_job_name": [ - 70 + 75 ], "node": [ - 1113 + 1118 ], "node_id": [ - 70 + 75 ], "purpose": [ - 70 + 75 ], "steam_account": [ - 3049 + 3086 ], "steam_account_id": [ - 3818 + 3864 ], "__typename": [ - 70 + 75 ] }, "steam_account_claims_aggregate": { "aggregate": [ - 3029 + 3066 ], "nodes": [ - 3025 + 3062 ], "__typename": [ - 70 + 75 ] }, "steam_account_claims_aggregate_bool_exp": { "count": [ - 3028 + 3065 ], "__typename": [ - 70 + 75 ] }, "steam_account_claims_aggregate_bool_exp_count": { "arguments": [ - 3043 + 3080 ], "distinct": [ 3 ], "filter": [ - 3032 + 3069 ], "predicate": [ 39 ], "__typename": [ - 70 + 75 ] }, "steam_account_claims_aggregate_fields": { @@ -74936,7 +75567,7 @@ export default { 38, { "columns": [ - 3043, + 3080, "[steam_account_claims_select_column!]" ], "distinct": [ @@ -74945,198 +75576,198 @@ export default { } ], "max": [ - 3035 + 3072 ], "min": [ - 3037 + 3074 ], "__typename": [ - 70 + 75 ] }, "steam_account_claims_aggregate_order_by": { "count": [ - 2011 + 2016 ], "max": [ - 3036 + 3073 ], "min": [ - 3038 + 3075 ], "__typename": [ - 70 + 75 ] }, "steam_account_claims_arr_rel_insert_input": { "data": [ - 3034 + 3071 ], "on_conflict": [ - 3040 + 3077 ], "__typename": [ - 70 + 75 ] }, "steam_account_claims_bool_exp": { "_and": [ - 3032 + 3069 ], "_not": [ - 3032 + 3069 ], "_or": [ - 3032 + 3069 ], "created_at": [ - 3422 + 3468 ], "id": [ - 3820 + 3866 ], "k8s_job_name": [ - 72 + 77 ], "node": [ - 1125 + 1130 ], "node_id": [ - 72 + 77 ], "purpose": [ - 72 + 77 ], "steam_account": [ - 3052 + 3090 ], "steam_account_id": [ - 3820 + 3866 ], "__typename": [ - 70 + 75 ] }, "steam_account_claims_constraint": {}, "steam_account_claims_insert_input": { "created_at": [ - 3421 + 3467 ], "id": [ - 3818 + 3864 ], "k8s_job_name": [ - 70 + 75 ], "node": [ - 1137 + 1142 ], "node_id": [ - 70 + 75 ], "purpose": [ - 70 + 75 ], "steam_account": [ - 3058 + 3097 ], "steam_account_id": [ - 3818 + 3864 ], "__typename": [ - 70 + 75 ] }, "steam_account_claims_max_fields": { "created_at": [ - 3421 + 3467 ], "id": [ - 3818 + 3864 ], "k8s_job_name": [ - 70 + 75 ], "node_id": [ - 70 + 75 ], "purpose": [ - 70 + 75 ], "steam_account_id": [ - 3818 + 3864 ], "__typename": [ - 70 + 75 ] }, "steam_account_claims_max_order_by": { "created_at": [ - 2011 + 2016 ], "id": [ - 2011 + 2016 ], "k8s_job_name": [ - 2011 + 2016 ], "node_id": [ - 2011 + 2016 ], "purpose": [ - 2011 + 2016 ], "steam_account_id": [ - 2011 + 2016 ], "__typename": [ - 70 + 75 ] }, "steam_account_claims_min_fields": { "created_at": [ - 3421 + 3467 ], "id": [ - 3818 + 3864 ], "k8s_job_name": [ - 70 + 75 ], "node_id": [ - 70 + 75 ], "purpose": [ - 70 + 75 ], "steam_account_id": [ - 3818 + 3864 ], "__typename": [ - 70 + 75 ] }, "steam_account_claims_min_order_by": { "created_at": [ - 2011 + 2016 ], "id": [ - 2011 + 2016 ], "k8s_job_name": [ - 2011 + 2016 ], "node_id": [ - 2011 + 2016 ], "purpose": [ - 2011 + 2016 ], "steam_account_id": [ - 2011 + 2016 ], "__typename": [ - 70 + 75 ] }, "steam_account_claims_mutation_response": { @@ -75144,139 +75775,139 @@ export default { 38 ], "returning": [ - 3025 + 3062 ], "__typename": [ - 70 + 75 ] }, "steam_account_claims_on_conflict": { "constraint": [ - 3033 + 3070 ], "update_columns": [ - 3047 + 3084 ], "where": [ - 3032 + 3069 ], "__typename": [ - 70 + 75 ] }, "steam_account_claims_order_by": { "created_at": [ - 2011 + 2016 ], "id": [ - 2011 + 2016 ], "k8s_job_name": [ - 2011 + 2016 ], "node": [ - 1139 + 1144 ], "node_id": [ - 2011 + 2016 ], "purpose": [ - 2011 + 2016 ], "steam_account": [ - 3060 + 3099 ], "steam_account_id": [ - 2011 + 2016 ], "__typename": [ - 70 + 75 ] }, "steam_account_claims_pk_columns_input": { "id": [ - 3818 + 3864 ], "__typename": [ - 70 + 75 ] }, "steam_account_claims_select_column": {}, "steam_account_claims_set_input": { "created_at": [ - 3421 + 3467 ], "id": [ - 3818 + 3864 ], "k8s_job_name": [ - 70 + 75 ], "node_id": [ - 70 + 75 ], "purpose": [ - 70 + 75 ], "steam_account_id": [ - 3818 + 3864 ], "__typename": [ - 70 + 75 ] }, "steam_account_claims_stream_cursor_input": { "initial_value": [ - 3046 + 3083 ], "ordering": [ - 224 + 229 ], "__typename": [ - 70 + 75 ] }, "steam_account_claims_stream_cursor_value_input": { "created_at": [ - 3421 + 3467 ], "id": [ - 3818 + 3864 ], "k8s_job_name": [ - 70 + 75 ], "node_id": [ - 70 + 75 ], "purpose": [ - 70 + 75 ], "steam_account_id": [ - 3818 + 3864 ], "__typename": [ - 70 + 75 ] }, "steam_account_claims_update_column": {}, "steam_account_claims_updates": { "_set": [ - 3044 + 3081 ], "where": [ - 3032 + 3069 ], "__typename": [ - 70 + 75 ] }, "steam_accounts": { "claims": [ - 3025, + 3062, { "distinct_on": [ - 3043, + 3080, "[steam_account_claims_select_column!]" ], "limit": [ @@ -75286,19 +75917,19 @@ export default { 38 ], "order_by": [ - 3041, + 3078, "[steam_account_claims_order_by!]" ], "where": [ - 3032 + 3069 ] } ], "claims_aggregate": [ - 3026, + 3063, { "distinct_on": [ - 3043, + 3080, "[steam_account_claims_select_column!]" ], "limit": [ @@ -75308,56 +75939,68 @@ export default { 38 ], "order_by": [ - 3041, + 3078, "[steam_account_claims_order_by!]" ], "where": [ - 3032 + 3069 ] } ], "created_at": [ - 3421 + 3467 + ], + "friend_capacity": [ + 38 ], "id": [ - 3818 + 3864 ], "last_node": [ - 1113 + 1118 ], "last_node_id": [ - 70 + 75 ], "password": [ - 70 + 75 + ], + "role": [ + 75 + ], + "steamid64": [ + 174 ], "updated_at": [ - 3421 + 3467 ], "username": [ - 70 + 75 ], "__typename": [ - 70 + 75 ] }, "steam_accounts_aggregate": { "aggregate": [ - 3051 + 3088 ], "nodes": [ - 3049 + 3086 ], "__typename": [ - 70 + 75 ] }, "steam_accounts_aggregate_fields": { + "avg": [ + 3089 + ], "count": [ 38, { "columns": [ - 3062, + 3101, "[steam_accounts_select_column!]" ], "distinct": [ @@ -75365,131 +76008,210 @@ export default { ] } ], - "max": [ - 3055 + "max": [ + 3094 + ], + "min": [ + 3095 + ], + "stddev": [ + 3103 + ], + "stddev_pop": [ + 3104 + ], + "stddev_samp": [ + 3105 + ], + "sum": [ + 3108 + ], + "var_pop": [ + 3111 + ], + "var_samp": [ + 3112 + ], + "variance": [ + 3113 + ], + "__typename": [ + 75 + ] + }, + "steam_accounts_avg_fields": { + "friend_capacity": [ + 29 ], - "min": [ - 3056 + "steamid64": [ + 29 ], "__typename": [ - 70 + 75 ] }, "steam_accounts_bool_exp": { "_and": [ - 3052 + 3090 ], "_not": [ - 3052 + 3090 ], "_or": [ - 3052 + 3090 ], "claims": [ - 3032 + 3069 ], "claims_aggregate": [ - 3027 + 3064 ], "created_at": [ - 3422 + 3468 + ], + "friend_capacity": [ + 39 ], "id": [ - 3820 + 3866 ], "last_node": [ - 1125 + 1130 ], "last_node_id": [ - 72 + 77 ], "password": [ - 72 + 77 + ], + "role": [ + 77 + ], + "steamid64": [ + 176 ], "updated_at": [ - 3422 + 3468 ], "username": [ - 72 + 77 ], "__typename": [ - 70 + 75 ] }, "steam_accounts_constraint": {}, + "steam_accounts_inc_input": { + "friend_capacity": [ + 38 + ], + "steamid64": [ + 174 + ], + "__typename": [ + 75 + ] + }, "steam_accounts_insert_input": { "claims": [ - 3031 + 3068 ], "created_at": [ - 3421 + 3467 + ], + "friend_capacity": [ + 38 ], "id": [ - 3818 + 3864 ], "last_node": [ - 1137 + 1142 ], "last_node_id": [ - 70 + 75 ], "password": [ - 70 + 75 + ], + "role": [ + 75 + ], + "steamid64": [ + 174 ], "updated_at": [ - 3421 + 3467 ], "username": [ - 70 + 75 ], "__typename": [ - 70 + 75 ] }, "steam_accounts_max_fields": { "created_at": [ - 3421 + 3467 + ], + "friend_capacity": [ + 38 ], "id": [ - 3818 + 3864 ], "last_node_id": [ - 70 + 75 ], "password": [ - 70 + 75 + ], + "role": [ + 75 + ], + "steamid64": [ + 174 ], "updated_at": [ - 3421 + 3467 ], "username": [ - 70 + 75 ], "__typename": [ - 70 + 75 ] }, "steam_accounts_min_fields": { "created_at": [ - 3421 + 3467 + ], + "friend_capacity": [ + 38 ], "id": [ - 3818 + 3864 ], "last_node_id": [ - 70 + 75 ], "password": [ - 70 + 75 + ], + "role": [ + 75 + ], + "steamid64": [ + 174 ], "updated_at": [ - 3421 + 3467 ], "username": [ - 70 + 75 ], "__typename": [ - 70 + 75 ] }, "steam_accounts_mutation_response": { @@ -75497,199 +76219,306 @@ export default { 38 ], "returning": [ - 3049 + 3086 ], "__typename": [ - 70 + 75 ] }, "steam_accounts_obj_rel_insert_input": { "data": [ - 3054 + 3093 ], "on_conflict": [ - 3059 + 3098 ], "__typename": [ - 70 + 75 ] }, "steam_accounts_on_conflict": { "constraint": [ - 3053 + 3091 ], "update_columns": [ - 3066 + 3109 ], "where": [ - 3052 + 3090 ], "__typename": [ - 70 + 75 ] }, "steam_accounts_order_by": { "claims_aggregate": [ - 3030 + 3067 ], "created_at": [ - 2011 + 2016 + ], + "friend_capacity": [ + 2016 ], "id": [ - 2011 + 2016 ], "last_node": [ - 1139 + 1144 ], "last_node_id": [ - 2011 + 2016 ], "password": [ - 2011 + 2016 + ], + "role": [ + 2016 + ], + "steamid64": [ + 2016 ], "updated_at": [ - 2011 + 2016 ], "username": [ - 2011 + 2016 ], "__typename": [ - 70 + 75 ] }, "steam_accounts_pk_columns_input": { "id": [ - 3818 + 3864 ], "__typename": [ - 70 + 75 ] }, "steam_accounts_select_column": {}, "steam_accounts_set_input": { "created_at": [ - 3421 + 3467 + ], + "friend_capacity": [ + 38 ], "id": [ - 3818 + 3864 ], "last_node_id": [ - 70 + 75 ], "password": [ - 70 + 75 + ], + "role": [ + 75 + ], + "steamid64": [ + 174 ], "updated_at": [ - 3421 + 3467 ], "username": [ - 70 + 75 ], "__typename": [ - 70 + 75 + ] + }, + "steam_accounts_stddev_fields": { + "friend_capacity": [ + 29 + ], + "steamid64": [ + 29 + ], + "__typename": [ + 75 + ] + }, + "steam_accounts_stddev_pop_fields": { + "friend_capacity": [ + 29 + ], + "steamid64": [ + 29 + ], + "__typename": [ + 75 + ] + }, + "steam_accounts_stddev_samp_fields": { + "friend_capacity": [ + 29 + ], + "steamid64": [ + 29 + ], + "__typename": [ + 75 ] }, "steam_accounts_stream_cursor_input": { "initial_value": [ - 3065 + 3107 ], "ordering": [ - 224 + 229 ], "__typename": [ - 70 + 75 ] }, "steam_accounts_stream_cursor_value_input": { "created_at": [ - 3421 + 3467 + ], + "friend_capacity": [ + 38 ], "id": [ - 3818 + 3864 ], "last_node_id": [ - 70 + 75 ], "password": [ - 70 + 75 + ], + "role": [ + 75 + ], + "steamid64": [ + 174 ], "updated_at": [ - 3421 + 3467 ], "username": [ - 70 + 75 ], "__typename": [ - 70 + 75 + ] + }, + "steam_accounts_sum_fields": { + "friend_capacity": [ + 38 + ], + "steamid64": [ + 174 + ], + "__typename": [ + 75 ] }, "steam_accounts_update_column": {}, "steam_accounts_updates": { + "_inc": [ + 3092 + ], "_set": [ - 3063 + 3102 ], "where": [ - 3052 + 3090 ], "__typename": [ - 70 + 75 + ] + }, + "steam_accounts_var_pop_fields": { + "friend_capacity": [ + 29 + ], + "steamid64": [ + 29 + ], + "__typename": [ + 75 + ] + }, + "steam_accounts_var_samp_fields": { + "friend_capacity": [ + 29 + ], + "steamid64": [ + 29 + ], + "__typename": [ + 75 + ] + }, + "steam_accounts_variance_fields": { + "friend_capacity": [ + 29 + ], + "steamid64": [ + 29 + ], + "__typename": [ + 75 ] }, "system_alerts": { "created_at": [ - 3421 + 3467 ], "created_by": [ - 169 + 174 ], "dismissible": [ 3 ], "expires_at": [ - 3421 + 3467 ], "id": [ - 3818 + 3864 ], "is_active": [ 3 ], "message": [ - 70 + 75 ], "title": [ - 70 + 75 ], "type": [ - 906 + 911 ], "updated_at": [ - 3421 + 3467 ], "__typename": [ - 70 + 75 ] }, "system_alerts_aggregate": { "aggregate": [ - 3070 + 3116 ], "nodes": [ - 3068 + 3114 ], "__typename": [ - 70 + 75 ] }, "system_alerts_aggregate_fields": { "avg": [ - 3071 + 3117 ], "count": [ 38, { "columns": [ - 3082, + 3128, "[system_alerts_select_column!]" ], "distinct": [ @@ -75698,34 +76527,34 @@ export default { } ], "max": [ - 3076 + 3122 ], "min": [ - 3077 + 3123 ], "stddev": [ - 3084 + 3130 ], "stddev_pop": [ - 3085 + 3131 ], "stddev_samp": [ - 3086 + 3132 ], "sum": [ - 3089 + 3135 ], "var_pop": [ - 3092 + 3138 ], "var_samp": [ - 3093 + 3139 ], "variance": [ - 3094 + 3140 ], "__typename": [ - 70 + 75 ] }, "system_alerts_avg_fields": { @@ -75733,147 +76562,147 @@ export default { 29 ], "__typename": [ - 70 + 75 ] }, "system_alerts_bool_exp": { "_and": [ - 3072 + 3118 ], "_not": [ - 3072 + 3118 ], "_or": [ - 3072 + 3118 ], "created_at": [ - 3422 + 3468 ], "created_by": [ - 171 + 176 ], "dismissible": [ 4 ], "expires_at": [ - 3422 + 3468 ], "id": [ - 3820 + 3866 ], "is_active": [ 4 ], "message": [ - 72 + 77 ], "title": [ - 72 + 77 ], "type": [ - 907 + 912 ], "updated_at": [ - 3422 + 3468 ], "__typename": [ - 70 + 75 ] }, "system_alerts_constraint": {}, "system_alerts_inc_input": { "created_by": [ - 169 + 174 ], "__typename": [ - 70 + 75 ] }, "system_alerts_insert_input": { "created_at": [ - 3421 + 3467 ], "created_by": [ - 169 + 174 ], "dismissible": [ 3 ], "expires_at": [ - 3421 + 3467 ], "id": [ - 3818 + 3864 ], "is_active": [ 3 ], "message": [ - 70 + 75 ], "title": [ - 70 + 75 ], "type": [ - 906 + 911 ], "updated_at": [ - 3421 + 3467 ], "__typename": [ - 70 + 75 ] }, "system_alerts_max_fields": { "created_at": [ - 3421 + 3467 ], "created_by": [ - 169 + 174 ], "expires_at": [ - 3421 + 3467 ], "id": [ - 3818 + 3864 ], "message": [ - 70 + 75 ], "title": [ - 70 + 75 ], "updated_at": [ - 3421 + 3467 ], "__typename": [ - 70 + 75 ] }, "system_alerts_min_fields": { "created_at": [ - 3421 + 3467 ], "created_by": [ - 169 + 174 ], "expires_at": [ - 3421 + 3467 ], "id": [ - 3818 + 3864 ], "message": [ - 70 + 75 ], "title": [ - 70 + 75 ], "updated_at": [ - 3421 + 3467 ], "__typename": [ - 70 + 75 ] }, "system_alerts_mutation_response": { @@ -75881,103 +76710,103 @@ export default { 38 ], "returning": [ - 3068 + 3114 ], "__typename": [ - 70 + 75 ] }, "system_alerts_on_conflict": { "constraint": [ - 3073 + 3119 ], "update_columns": [ - 3090 + 3136 ], "where": [ - 3072 + 3118 ], "__typename": [ - 70 + 75 ] }, "system_alerts_order_by": { "created_at": [ - 2011 + 2016 ], "created_by": [ - 2011 + 2016 ], "dismissible": [ - 2011 + 2016 ], "expires_at": [ - 2011 + 2016 ], "id": [ - 2011 + 2016 ], "is_active": [ - 2011 + 2016 ], "message": [ - 2011 + 2016 ], "title": [ - 2011 + 2016 ], "type": [ - 2011 + 2016 ], "updated_at": [ - 2011 + 2016 ], "__typename": [ - 70 + 75 ] }, "system_alerts_pk_columns_input": { "id": [ - 3818 + 3864 ], "__typename": [ - 70 + 75 ] }, "system_alerts_select_column": {}, "system_alerts_set_input": { "created_at": [ - 3421 + 3467 ], "created_by": [ - 169 + 174 ], "dismissible": [ 3 ], "expires_at": [ - 3421 + 3467 ], "id": [ - 3818 + 3864 ], "is_active": [ 3 ], "message": [ - 70 + 75 ], "title": [ - 70 + 75 ], "type": [ - 906 + 911 ], "updated_at": [ - 3421 + 3467 ], "__typename": [ - 70 + 75 ] }, "system_alerts_stddev_fields": { @@ -75985,7 +76814,7 @@ export default { 29 ], "__typename": [ - 70 + 75 ] }, "system_alerts_stddev_pop_fields": { @@ -75993,7 +76822,7 @@ export default { 29 ], "__typename": [ - 70 + 75 ] }, "system_alerts_stddev_samp_fields": { @@ -76001,76 +76830,76 @@ export default { 29 ], "__typename": [ - 70 + 75 ] }, "system_alerts_stream_cursor_input": { "initial_value": [ - 3088 + 3134 ], "ordering": [ - 224 + 229 ], "__typename": [ - 70 + 75 ] }, "system_alerts_stream_cursor_value_input": { "created_at": [ - 3421 + 3467 ], "created_by": [ - 169 + 174 ], "dismissible": [ 3 ], "expires_at": [ - 3421 + 3467 ], "id": [ - 3818 + 3864 ], "is_active": [ 3 ], "message": [ - 70 + 75 ], "title": [ - 70 + 75 ], "type": [ - 906 + 911 ], "updated_at": [ - 3421 + 3467 ], "__typename": [ - 70 + 75 ] }, "system_alerts_sum_fields": { "created_by": [ - 169 + 174 ], "__typename": [ - 70 + 75 ] }, "system_alerts_update_column": {}, "system_alerts_updates": { "_inc": [ - 3074 + 3120 ], "_set": [ - 3083 + 3129 ], "where": [ - 3072 + 3118 ], "__typename": [ - 70 + 75 ] }, "system_alerts_var_pop_fields": { @@ -76078,7 +76907,7 @@ export default { 29 ], "__typename": [ - 70 + 75 ] }, "system_alerts_var_samp_fields": { @@ -76086,7 +76915,7 @@ export default { 29 ], "__typename": [ - 70 + 75 ] }, "system_alerts_variance_fields": { @@ -76094,83 +76923,83 @@ export default { 29 ], "__typename": [ - 70 + 75 ] }, "team_invites": { "created_at": [ - 3421 + 3467 ], "id": [ - 3818 + 3864 ], "invited_by": [ - 2878 + 2915 ], "invited_by_player_steam_id": [ - 169 + 174 ], "player": [ - 2878 + 2915 ], "steam_id": [ - 169 + 174 ], "team": [ - 3378 + 3424 ], "team_id": [ - 3818 + 3864 ], "__typename": [ - 70 + 75 ] }, "team_invites_aggregate": { "aggregate": [ - 3099 + 3145 ], "nodes": [ - 3095 + 3141 ], "__typename": [ - 70 + 75 ] }, "team_invites_aggregate_bool_exp": { "count": [ - 3098 + 3144 ], "__typename": [ - 70 + 75 ] }, "team_invites_aggregate_bool_exp_count": { "arguments": [ - 3116 + 3162 ], "distinct": [ 3 ], "filter": [ - 3104 + 3150 ], "predicate": [ 39 ], "__typename": [ - 70 + 75 ] }, "team_invites_aggregate_fields": { "avg": [ - 3102 + 3148 ], "count": [ 38, { "columns": [ - 3116, + 3162, "[team_invites_select_column!]" ], "distinct": [ @@ -76179,83 +77008,83 @@ export default { } ], "max": [ - 3108 + 3154 ], "min": [ - 3110 + 3156 ], "stddev": [ - 3118 + 3164 ], "stddev_pop": [ - 3120 + 3166 ], "stddev_samp": [ - 3122 + 3168 ], "sum": [ - 3126 + 3172 ], "var_pop": [ - 3130 + 3176 ], "var_samp": [ - 3132 + 3178 ], "variance": [ - 3134 + 3180 ], "__typename": [ - 70 + 75 ] }, "team_invites_aggregate_order_by": { "avg": [ - 3103 + 3149 ], "count": [ - 2011 + 2016 ], "max": [ - 3109 + 3155 ], "min": [ - 3111 + 3157 ], "stddev": [ - 3119 + 3165 ], "stddev_pop": [ - 3121 + 3167 ], "stddev_samp": [ - 3123 + 3169 ], "sum": [ - 3127 + 3173 ], "var_pop": [ - 3131 + 3177 ], "var_samp": [ - 3133 + 3179 ], "variance": [ - 3135 + 3181 ], "__typename": [ - 70 + 75 ] }, "team_invites_arr_rel_insert_input": { "data": [ - 3107 + 3153 ], "on_conflict": [ - 3113 + 3159 ], "__typename": [ - 70 + 75 ] }, "team_invites_avg_fields": { @@ -76266,177 +77095,177 @@ export default { 29 ], "__typename": [ - 70 + 75 ] }, "team_invites_avg_order_by": { "invited_by_player_steam_id": [ - 2011 + 2016 ], "steam_id": [ - 2011 + 2016 ], "__typename": [ - 70 + 75 ] }, "team_invites_bool_exp": { "_and": [ - 3104 + 3150 ], "_not": [ - 3104 + 3150 ], "_or": [ - 3104 + 3150 ], "created_at": [ - 3422 + 3468 ], "id": [ - 3820 + 3866 ], "invited_by": [ - 2882 + 2919 ], "invited_by_player_steam_id": [ - 171 + 176 ], "player": [ - 2882 + 2919 ], "steam_id": [ - 171 + 176 ], "team": [ - 3387 + 3433 ], "team_id": [ - 3820 + 3866 ], "__typename": [ - 70 + 75 ] }, "team_invites_constraint": {}, "team_invites_inc_input": { "invited_by_player_steam_id": [ - 169 + 174 ], "steam_id": [ - 169 + 174 ], "__typename": [ - 70 + 75 ] }, "team_invites_insert_input": { "created_at": [ - 3421 + 3467 ], "id": [ - 3818 + 3864 ], "invited_by": [ - 2889 + 2926 ], "invited_by_player_steam_id": [ - 169 + 174 ], "player": [ - 2889 + 2926 ], "steam_id": [ - 169 + 174 ], "team": [ - 3396 + 3442 ], "team_id": [ - 3818 + 3864 ], "__typename": [ - 70 + 75 ] }, "team_invites_max_fields": { "created_at": [ - 3421 + 3467 ], "id": [ - 3818 + 3864 ], "invited_by_player_steam_id": [ - 169 + 174 ], "steam_id": [ - 169 + 174 ], "team_id": [ - 3818 + 3864 ], "__typename": [ - 70 + 75 ] }, "team_invites_max_order_by": { "created_at": [ - 2011 + 2016 ], "id": [ - 2011 + 2016 ], "invited_by_player_steam_id": [ - 2011 + 2016 ], "steam_id": [ - 2011 + 2016 ], "team_id": [ - 2011 + 2016 ], "__typename": [ - 70 + 75 ] }, "team_invites_min_fields": { "created_at": [ - 3421 + 3467 ], "id": [ - 3818 + 3864 ], "invited_by_player_steam_id": [ - 169 + 174 ], "steam_id": [ - 169 + 174 ], "team_id": [ - 3818 + 3864 ], "__typename": [ - 70 + 75 ] }, "team_invites_min_order_by": { "created_at": [ - 2011 + 2016 ], "id": [ - 2011 + 2016 ], "invited_by_player_steam_id": [ - 2011 + 2016 ], "steam_id": [ - 2011 + 2016 ], "team_id": [ - 2011 + 2016 ], "__typename": [ - 70 + 75 ] }, "team_invites_mutation_response": { @@ -76444,82 +77273,82 @@ export default { 38 ], "returning": [ - 3095 + 3141 ], "__typename": [ - 70 + 75 ] }, "team_invites_on_conflict": { "constraint": [ - 3105 + 3151 ], "update_columns": [ - 3128 + 3174 ], "where": [ - 3104 + 3150 ], "__typename": [ - 70 + 75 ] }, "team_invites_order_by": { "created_at": [ - 2011 + 2016 ], "id": [ - 2011 + 2016 ], "invited_by": [ - 2891 + 2928 ], "invited_by_player_steam_id": [ - 2011 + 2016 ], "player": [ - 2891 + 2928 ], "steam_id": [ - 2011 + 2016 ], "team": [ - 3398 + 3444 ], "team_id": [ - 2011 + 2016 ], "__typename": [ - 70 + 75 ] }, "team_invites_pk_columns_input": { "id": [ - 3818 + 3864 ], "__typename": [ - 70 + 75 ] }, "team_invites_select_column": {}, "team_invites_set_input": { "created_at": [ - 3421 + 3467 ], "id": [ - 3818 + 3864 ], "invited_by_player_steam_id": [ - 169 + 174 ], "steam_id": [ - 169 + 174 ], "team_id": [ - 3818 + 3864 ], "__typename": [ - 70 + 75 ] }, "team_invites_stddev_fields": { @@ -76530,18 +77359,18 @@ export default { 29 ], "__typename": [ - 70 + 75 ] }, "team_invites_stddev_order_by": { "invited_by_player_steam_id": [ - 2011 + 2016 ], "steam_id": [ - 2011 + 2016 ], "__typename": [ - 70 + 75 ] }, "team_invites_stddev_pop_fields": { @@ -76552,18 +77381,18 @@ export default { 29 ], "__typename": [ - 70 + 75 ] }, "team_invites_stddev_pop_order_by": { "invited_by_player_steam_id": [ - 2011 + 2016 ], "steam_id": [ - 2011 + 2016 ], "__typename": [ - 70 + 75 ] }, "team_invites_stddev_samp_fields": { @@ -76574,86 +77403,86 @@ export default { 29 ], "__typename": [ - 70 + 75 ] }, "team_invites_stddev_samp_order_by": { "invited_by_player_steam_id": [ - 2011 + 2016 ], "steam_id": [ - 2011 + 2016 ], "__typename": [ - 70 + 75 ] }, "team_invites_stream_cursor_input": { "initial_value": [ - 3125 + 3171 ], "ordering": [ - 224 + 229 ], "__typename": [ - 70 + 75 ] }, "team_invites_stream_cursor_value_input": { "created_at": [ - 3421 + 3467 ], "id": [ - 3818 + 3864 ], "invited_by_player_steam_id": [ - 169 + 174 ], "steam_id": [ - 169 + 174 ], "team_id": [ - 3818 + 3864 ], "__typename": [ - 70 + 75 ] }, "team_invites_sum_fields": { "invited_by_player_steam_id": [ - 169 + 174 ], "steam_id": [ - 169 + 174 ], "__typename": [ - 70 + 75 ] }, "team_invites_sum_order_by": { "invited_by_player_steam_id": [ - 2011 + 2016 ], "steam_id": [ - 2011 + 2016 ], "__typename": [ - 70 + 75 ] }, "team_invites_update_column": {}, "team_invites_updates": { "_inc": [ - 3106 + 3152 ], "_set": [ - 3117 + 3163 ], "where": [ - 3104 + 3150 ], "__typename": [ - 70 + 75 ] }, "team_invites_var_pop_fields": { @@ -76664,18 +77493,18 @@ export default { 29 ], "__typename": [ - 70 + 75 ] }, "team_invites_var_pop_order_by": { "invited_by_player_steam_id": [ - 2011 + 2016 ], "steam_id": [ - 2011 + 2016 ], "__typename": [ - 70 + 75 ] }, "team_invites_var_samp_fields": { @@ -76686,18 +77515,18 @@ export default { 29 ], "__typename": [ - 70 + 75 ] }, "team_invites_var_samp_order_by": { "invited_by_player_steam_id": [ - 2011 + 2016 ], "steam_id": [ - 2011 + 2016 ], "__typename": [ - 70 + 75 ] }, "team_invites_variance_fields": { @@ -76708,18 +77537,18 @@ export default { 29 ], "__typename": [ - 70 + 75 ] }, "team_invites_variance_order_by": { "invited_by_player_steam_id": [ - 2011 + 2016 ], "steam_id": [ - 2011 + 2016 ], "__typename": [ - 70 + 75 ] }, "team_roster": { @@ -76727,115 +77556,115 @@ export default { 3 ], "player": [ - 2878 + 2915 ], "player_steam_id": [ - 169 + 174 ], "role": [ - 926 + 931 ], "roster_image_url": [ - 70 + 75 ], "status": [ - 947 + 952 ], "team": [ - 3378 + 3424 ], "team_id": [ - 3818 + 3864 ], "__typename": [ - 70 + 75 ] }, "team_roster_aggregate": { "aggregate": [ - 3142 + 3188 ], "nodes": [ - 3136 + 3182 ], "__typename": [ - 70 + 75 ] }, "team_roster_aggregate_bool_exp": { "bool_and": [ - 3139 + 3185 ], "bool_or": [ - 3140 + 3186 ], "count": [ - 3141 + 3187 ], "__typename": [ - 70 + 75 ] }, "team_roster_aggregate_bool_exp_bool_and": { "arguments": [ - 3160 + 3206 ], "distinct": [ 3 ], "filter": [ - 3147 + 3193 ], "predicate": [ 4 ], "__typename": [ - 70 + 75 ] }, "team_roster_aggregate_bool_exp_bool_or": { "arguments": [ - 3161 + 3207 ], "distinct": [ 3 ], "filter": [ - 3147 + 3193 ], "predicate": [ 4 ], "__typename": [ - 70 + 75 ] }, "team_roster_aggregate_bool_exp_count": { "arguments": [ - 3159 + 3205 ], "distinct": [ 3 ], "filter": [ - 3147 + 3193 ], "predicate": [ 39 ], "__typename": [ - 70 + 75 ] }, "team_roster_aggregate_fields": { "avg": [ - 3145 + 3191 ], "count": [ 38, { "columns": [ - 3159, + 3205, "[team_roster_select_column!]" ], "distinct": [ @@ -76844,83 +77673,83 @@ export default { } ], "max": [ - 3151 + 3197 ], "min": [ - 3153 + 3199 ], "stddev": [ - 3163 + 3209 ], "stddev_pop": [ - 3165 + 3211 ], "stddev_samp": [ - 3167 + 3213 ], "sum": [ - 3171 + 3217 ], "var_pop": [ - 3175 + 3221 ], "var_samp": [ - 3177 + 3223 ], "variance": [ - 3179 + 3225 ], "__typename": [ - 70 + 75 ] }, "team_roster_aggregate_order_by": { "avg": [ - 3146 + 3192 ], "count": [ - 2011 + 2016 ], "max": [ - 3152 + 3198 ], "min": [ - 3154 + 3200 ], "stddev": [ - 3164 + 3210 ], "stddev_pop": [ - 3166 + 3212 ], "stddev_samp": [ - 3168 + 3214 ], "sum": [ - 3172 + 3218 ], "var_pop": [ - 3176 + 3222 ], "var_samp": [ - 3178 + 3224 ], "variance": [ - 3180 + 3226 ], "__typename": [ - 70 + 75 ] }, "team_roster_arr_rel_insert_input": { "data": [ - 3150 + 3196 ], "on_conflict": [ - 3156 + 3202 ], "__typename": [ - 70 + 75 ] }, "team_roster_avg_fields": { @@ -76928,62 +77757,62 @@ export default { 29 ], "__typename": [ - 70 + 75 ] }, "team_roster_avg_order_by": { "player_steam_id": [ - 2011 + 2016 ], "__typename": [ - 70 + 75 ] }, "team_roster_bool_exp": { "_and": [ - 3147 + 3193 ], "_not": [ - 3147 + 3193 ], "_or": [ - 3147 + 3193 ], "coach": [ 4 ], "player": [ - 2882 + 2919 ], "player_steam_id": [ - 171 + 176 ], "role": [ - 927 + 932 ], "roster_image_url": [ - 72 + 77 ], "status": [ - 948 + 953 ], "team": [ - 3387 + 3433 ], "team_id": [ - 3820 + 3866 ], "__typename": [ - 70 + 75 ] }, "team_roster_constraint": {}, "team_roster_inc_input": { "player_steam_id": [ - 169 + 174 ], "__typename": [ - 70 + 75 ] }, "team_roster_insert_input": { @@ -76991,84 +77820,84 @@ export default { 3 ], "player": [ - 2889 + 2926 ], "player_steam_id": [ - 169 + 174 ], "role": [ - 926 + 931 ], "roster_image_url": [ - 70 + 75 ], "status": [ - 947 + 952 ], "team": [ - 3396 + 3442 ], "team_id": [ - 3818 + 3864 ], "__typename": [ - 70 + 75 ] }, "team_roster_max_fields": { "player_steam_id": [ - 169 + 174 ], "roster_image_url": [ - 70 + 75 ], "team_id": [ - 3818 + 3864 ], "__typename": [ - 70 + 75 ] }, "team_roster_max_order_by": { "player_steam_id": [ - 2011 + 2016 ], "roster_image_url": [ - 2011 + 2016 ], "team_id": [ - 2011 + 2016 ], "__typename": [ - 70 + 75 ] }, "team_roster_min_fields": { "player_steam_id": [ - 169 + 174 ], "roster_image_url": [ - 70 + 75 ], "team_id": [ - 3818 + 3864 ], "__typename": [ - 70 + 75 ] }, "team_roster_min_order_by": { "player_steam_id": [ - 2011 + 2016 ], "roster_image_url": [ - 2011 + 2016 ], "team_id": [ - 2011 + 2016 ], "__typename": [ - 70 + 75 ] }, "team_roster_mutation_response": { @@ -77076,64 +77905,64 @@ export default { 38 ], "returning": [ - 3136 + 3182 ], "__typename": [ - 70 + 75 ] }, "team_roster_on_conflict": { "constraint": [ - 3148 + 3194 ], "update_columns": [ - 3173 + 3219 ], "where": [ - 3147 + 3193 ], "__typename": [ - 70 + 75 ] }, "team_roster_order_by": { "coach": [ - 2011 + 2016 ], "player": [ - 2891 + 2928 ], "player_steam_id": [ - 2011 + 2016 ], "role": [ - 2011 + 2016 ], "roster_image_url": [ - 2011 + 2016 ], "status": [ - 2011 + 2016 ], "team": [ - 3398 + 3444 ], "team_id": [ - 2011 + 2016 ], "__typename": [ - 70 + 75 ] }, "team_roster_pk_columns_input": { "player_steam_id": [ - 169 + 174 ], "team_id": [ - 3818 + 3864 ], "__typename": [ - 70 + 75 ] }, "team_roster_select_column": {}, @@ -77144,22 +77973,22 @@ export default { 3 ], "player_steam_id": [ - 169 + 174 ], "role": [ - 926 + 931 ], "roster_image_url": [ - 70 + 75 ], "status": [ - 947 + 952 ], "team_id": [ - 3818 + 3864 ], "__typename": [ - 70 + 75 ] }, "team_roster_stddev_fields": { @@ -77167,15 +77996,15 @@ export default { 29 ], "__typename": [ - 70 + 75 ] }, "team_roster_stddev_order_by": { "player_steam_id": [ - 2011 + 2016 ], "__typename": [ - 70 + 75 ] }, "team_roster_stddev_pop_fields": { @@ -77183,15 +78012,15 @@ export default { 29 ], "__typename": [ - 70 + 75 ] }, "team_roster_stddev_pop_order_by": { "player_steam_id": [ - 2011 + 2016 ], "__typename": [ - 70 + 75 ] }, "team_roster_stddev_samp_fields": { @@ -77199,26 +78028,26 @@ export default { 29 ], "__typename": [ - 70 + 75 ] }, "team_roster_stddev_samp_order_by": { "player_steam_id": [ - 2011 + 2016 ], "__typename": [ - 70 + 75 ] }, "team_roster_stream_cursor_input": { "initial_value": [ - 3170 + 3216 ], "ordering": [ - 224 + 229 ], "__typename": [ - 70 + 75 ] }, "team_roster_stream_cursor_value_input": { @@ -77226,53 +78055,53 @@ export default { 3 ], "player_steam_id": [ - 169 + 174 ], "role": [ - 926 + 931 ], "roster_image_url": [ - 70 + 75 ], "status": [ - 947 + 952 ], "team_id": [ - 3818 + 3864 ], "__typename": [ - 70 + 75 ] }, "team_roster_sum_fields": { "player_steam_id": [ - 169 + 174 ], "__typename": [ - 70 + 75 ] }, "team_roster_sum_order_by": { "player_steam_id": [ - 2011 + 2016 ], "__typename": [ - 70 + 75 ] }, "team_roster_update_column": {}, "team_roster_updates": { "_inc": [ - 3149 + 3195 ], "_set": [ - 3162 + 3208 ], "where": [ - 3147 + 3193 ], "__typename": [ - 70 + 75 ] }, "team_roster_var_pop_fields": { @@ -77280,15 +78109,15 @@ export default { 29 ], "__typename": [ - 70 + 75 ] }, "team_roster_var_pop_order_by": { "player_steam_id": [ - 2011 + 2016 ], "__typename": [ - 70 + 75 ] }, "team_roster_var_samp_fields": { @@ -77296,15 +78125,15 @@ export default { 29 ], "__typename": [ - 70 + 75 ] }, "team_roster_var_samp_order_by": { "player_steam_id": [ - 2011 + 2016 ], "__typename": [ - 70 + 75 ] }, "team_roster_variance_fields": { @@ -77312,20 +78141,20 @@ export default { 29 ], "__typename": [ - 70 + 75 ] }, "team_roster_variance_order_by": { "player_steam_id": [ - 2011 + 2016 ], "__typename": [ - 70 + 75 ] }, "team_scrim_alerts": { "created_at": [ - 3421 + 3467 ], "elo_max": [ 38 @@ -77337,44 +78166,44 @@ export default { 3 ], "id": [ - 3818 + 3864 ], "last_notified_at": [ - 3421 + 3467 ], "regions": [ - 70 + 75 ], "team": [ - 3378 + 3424 ], "team_id": [ - 3818 + 3864 ], "__typename": [ - 70 + 75 ] }, "team_scrim_alerts_aggregate": { "aggregate": [ - 3183 + 3229 ], "nodes": [ - 3181 + 3227 ], "__typename": [ - 70 + 75 ] }, "team_scrim_alerts_aggregate_fields": { "avg": [ - 3184 + 3230 ], "count": [ 38, { "columns": [ - 3195, + 3241, "[team_scrim_alerts_select_column!]" ], "distinct": [ @@ -77383,34 +78212,34 @@ export default { } ], "max": [ - 3189 + 3235 ], "min": [ - 3190 + 3236 ], "stddev": [ - 3197 + 3243 ], "stddev_pop": [ - 3198 + 3244 ], "stddev_samp": [ - 3199 + 3245 ], "sum": [ - 3202 + 3248 ], "var_pop": [ - 3205 + 3251 ], "var_samp": [ - 3206 + 3252 ], "variance": [ - 3207 + 3253 ], "__typename": [ - 70 + 75 ] }, "team_scrim_alerts_avg_fields": { @@ -77421,21 +78250,21 @@ export default { 29 ], "__typename": [ - 70 + 75 ] }, "team_scrim_alerts_bool_exp": { "_and": [ - 3185 + 3231 ], "_not": [ - 3185 + 3231 ], "_or": [ - 3185 + 3231 ], "created_at": [ - 3422 + 3468 ], "elo_max": [ 39 @@ -77447,22 +78276,22 @@ export default { 4 ], "id": [ - 3820 + 3866 ], "last_notified_at": [ - 3422 + 3468 ], "regions": [ - 71 + 76 ], "team": [ - 3387 + 3433 ], "team_id": [ - 3820 + 3866 ], "__typename": [ - 70 + 75 ] }, "team_scrim_alerts_constraint": {}, @@ -77474,12 +78303,12 @@ export default { 38 ], "__typename": [ - 70 + 75 ] }, "team_scrim_alerts_insert_input": { "created_at": [ - 3421 + 3467 ], "elo_max": [ 38 @@ -77491,27 +78320,27 @@ export default { 3 ], "id": [ - 3818 + 3864 ], "last_notified_at": [ - 3421 + 3467 ], "regions": [ - 70 + 75 ], "team": [ - 3396 + 3442 ], "team_id": [ - 3818 + 3864 ], "__typename": [ - 70 + 75 ] }, "team_scrim_alerts_max_fields": { "created_at": [ - 3421 + 3467 ], "elo_max": [ 38 @@ -77520,24 +78349,24 @@ export default { 38 ], "id": [ - 3818 + 3864 ], "last_notified_at": [ - 3421 + 3467 ], "regions": [ - 70 + 75 ], "team_id": [ - 3818 + 3864 ], "__typename": [ - 70 + 75 ] }, "team_scrim_alerts_min_fields": { "created_at": [ - 3421 + 3467 ], "elo_max": [ 38 @@ -77546,19 +78375,19 @@ export default { 38 ], "id": [ - 3818 + 3864 ], "last_notified_at": [ - 3421 + 3467 ], "regions": [ - 70 + 75 ], "team_id": [ - 3818 + 3864 ], "__typename": [ - 70 + 75 ] }, "team_scrim_alerts_mutation_response": { @@ -77566,70 +78395,70 @@ export default { 38 ], "returning": [ - 3181 + 3227 ], "__typename": [ - 70 + 75 ] }, "team_scrim_alerts_on_conflict": { "constraint": [ - 3186 + 3232 ], "update_columns": [ - 3203 + 3249 ], "where": [ - 3185 + 3231 ], "__typename": [ - 70 + 75 ] }, "team_scrim_alerts_order_by": { "created_at": [ - 2011 + 2016 ], "elo_max": [ - 2011 + 2016 ], "elo_min": [ - 2011 + 2016 ], "enabled": [ - 2011 + 2016 ], "id": [ - 2011 + 2016 ], "last_notified_at": [ - 2011 + 2016 ], "regions": [ - 2011 + 2016 ], "team": [ - 3398 + 3444 ], "team_id": [ - 2011 + 2016 ], "__typename": [ - 70 + 75 ] }, "team_scrim_alerts_pk_columns_input": { "id": [ - 3818 + 3864 ], "__typename": [ - 70 + 75 ] }, "team_scrim_alerts_select_column": {}, "team_scrim_alerts_set_input": { "created_at": [ - 3421 + 3467 ], "elo_max": [ 38 @@ -77641,19 +78470,19 @@ export default { 3 ], "id": [ - 3818 + 3864 ], "last_notified_at": [ - 3421 + 3467 ], "regions": [ - 70 + 75 ], "team_id": [ - 3818 + 3864 ], "__typename": [ - 70 + 75 ] }, "team_scrim_alerts_stddev_fields": { @@ -77664,7 +78493,7 @@ export default { 29 ], "__typename": [ - 70 + 75 ] }, "team_scrim_alerts_stddev_pop_fields": { @@ -77675,7 +78504,7 @@ export default { 29 ], "__typename": [ - 70 + 75 ] }, "team_scrim_alerts_stddev_samp_fields": { @@ -77686,23 +78515,23 @@ export default { 29 ], "__typename": [ - 70 + 75 ] }, "team_scrim_alerts_stream_cursor_input": { "initial_value": [ - 3201 + 3247 ], "ordering": [ - 224 + 229 ], "__typename": [ - 70 + 75 ] }, "team_scrim_alerts_stream_cursor_value_input": { "created_at": [ - 3421 + 3467 ], "elo_max": [ 38 @@ -77714,19 +78543,19 @@ export default { 3 ], "id": [ - 3818 + 3864 ], "last_notified_at": [ - 3421 + 3467 ], "regions": [ - 70 + 75 ], "team_id": [ - 3818 + 3864 ], "__typename": [ - 70 + 75 ] }, "team_scrim_alerts_sum_fields": { @@ -77737,22 +78566,22 @@ export default { 38 ], "__typename": [ - 70 + 75 ] }, "team_scrim_alerts_update_column": {}, "team_scrim_alerts_updates": { "_inc": [ - 3187 + 3233 ], "_set": [ - 3196 + 3242 ], "where": [ - 3185 + 3231 ], "__typename": [ - 70 + 75 ] }, "team_scrim_alerts_var_pop_fields": { @@ -77763,7 +78592,7 @@ export default { 29 ], "__typename": [ - 70 + 75 ] }, "team_scrim_alerts_var_samp_fields": { @@ -77774,7 +78603,7 @@ export default { 29 ], "__typename": [ - 70 + 75 ] }, "team_scrim_alerts_variance_fields": { @@ -77785,109 +78614,109 @@ export default { 29 ], "__typename": [ - 70 + 75 ] }, "team_scrim_availability": { "created_at": [ - 3421 + 3467 ], "ends_at": [ - 3421 + 3467 ], "id": [ - 3818 + 3864 ], "recurring_weekly": [ 3 ], "starts_at": [ - 3421 + 3467 ], "team": [ - 3378 + 3424 ], "team_id": [ - 3818 + 3864 ], "__typename": [ - 70 + 75 ] }, "team_scrim_availability_aggregate": { "aggregate": [ - 3214 + 3260 ], "nodes": [ - 3208 + 3254 ], "__typename": [ - 70 + 75 ] }, "team_scrim_availability_aggregate_bool_exp": { "bool_and": [ - 3211 + 3257 ], "bool_or": [ - 3212 + 3258 ], "count": [ - 3213 + 3259 ], "__typename": [ - 70 + 75 ] }, "team_scrim_availability_aggregate_bool_exp_bool_and": { "arguments": [ - 3229 + 3275 ], "distinct": [ 3 ], "filter": [ - 3217 + 3263 ], "predicate": [ 4 ], "__typename": [ - 70 + 75 ] }, "team_scrim_availability_aggregate_bool_exp_bool_or": { "arguments": [ - 3230 + 3276 ], "distinct": [ 3 ], "filter": [ - 3217 + 3263 ], "predicate": [ 4 ], "__typename": [ - 70 + 75 ] }, "team_scrim_availability_aggregate_bool_exp_count": { "arguments": [ - 3228 + 3274 ], "distinct": [ 3 ], "filter": [ - 3217 + 3263 ], "predicate": [ 39 ], "__typename": [ - 70 + 75 ] }, "team_scrim_availability_aggregate_fields": { @@ -77895,7 +78724,7 @@ export default { 38, { "columns": [ - 3228, + 3274, "[team_scrim_availability_select_column!]" ], "distinct": [ @@ -77904,180 +78733,180 @@ export default { } ], "max": [ - 3220 + 3266 ], "min": [ - 3222 + 3268 ], "__typename": [ - 70 + 75 ] }, "team_scrim_availability_aggregate_order_by": { "count": [ - 2011 + 2016 ], "max": [ - 3221 + 3267 ], "min": [ - 3223 + 3269 ], "__typename": [ - 70 + 75 ] }, "team_scrim_availability_arr_rel_insert_input": { "data": [ - 3219 + 3265 ], "on_conflict": [ - 3225 + 3271 ], "__typename": [ - 70 + 75 ] }, "team_scrim_availability_bool_exp": { "_and": [ - 3217 + 3263 ], "_not": [ - 3217 + 3263 ], "_or": [ - 3217 + 3263 ], "created_at": [ - 3422 + 3468 ], "ends_at": [ - 3422 + 3468 ], "id": [ - 3820 + 3866 ], "recurring_weekly": [ 4 ], "starts_at": [ - 3422 + 3468 ], "team": [ - 3387 + 3433 ], "team_id": [ - 3820 + 3866 ], "__typename": [ - 70 + 75 ] }, "team_scrim_availability_constraint": {}, "team_scrim_availability_insert_input": { "created_at": [ - 3421 + 3467 ], "ends_at": [ - 3421 + 3467 ], "id": [ - 3818 + 3864 ], "recurring_weekly": [ 3 ], "starts_at": [ - 3421 + 3467 ], "team": [ - 3396 + 3442 ], "team_id": [ - 3818 + 3864 ], "__typename": [ - 70 + 75 ] }, "team_scrim_availability_max_fields": { "created_at": [ - 3421 + 3467 ], "ends_at": [ - 3421 + 3467 ], "id": [ - 3818 + 3864 ], "starts_at": [ - 3421 + 3467 ], "team_id": [ - 3818 + 3864 ], "__typename": [ - 70 + 75 ] }, "team_scrim_availability_max_order_by": { "created_at": [ - 2011 + 2016 ], "ends_at": [ - 2011 + 2016 ], "id": [ - 2011 + 2016 ], "starts_at": [ - 2011 + 2016 ], "team_id": [ - 2011 + 2016 ], "__typename": [ - 70 + 75 ] }, "team_scrim_availability_min_fields": { "created_at": [ - 3421 + 3467 ], "ends_at": [ - 3421 + 3467 ], "id": [ - 3818 + 3864 ], "starts_at": [ - 3421 + 3467 ], "team_id": [ - 3818 + 3864 ], "__typename": [ - 70 + 75 ] }, "team_scrim_availability_min_order_by": { "created_at": [ - 2011 + 2016 ], "ends_at": [ - 2011 + 2016 ], "id": [ - 2011 + 2016 ], "starts_at": [ - 2011 + 2016 ], "team_id": [ - 2011 + 2016 ], "__typename": [ - 70 + 75 ] }, "team_scrim_availability_mutation_response": { @@ -78085,58 +78914,58 @@ export default { 38 ], "returning": [ - 3208 + 3254 ], "__typename": [ - 70 + 75 ] }, "team_scrim_availability_on_conflict": { "constraint": [ - 3218 + 3264 ], "update_columns": [ - 3234 + 3280 ], "where": [ - 3217 + 3263 ], "__typename": [ - 70 + 75 ] }, "team_scrim_availability_order_by": { "created_at": [ - 2011 + 2016 ], "ends_at": [ - 2011 + 2016 ], "id": [ - 2011 + 2016 ], "recurring_weekly": [ - 2011 + 2016 ], "starts_at": [ - 2011 + 2016 ], "team": [ - 3398 + 3444 ], "team_id": [ - 2011 + 2016 ], "__typename": [ - 70 + 75 ] }, "team_scrim_availability_pk_columns_input": { "id": [ - 3818 + 3864 ], "__typename": [ - 70 + 75 ] }, "team_scrim_availability_select_column": {}, @@ -78144,150 +78973,150 @@ export default { "team_scrim_availability_select_column_team_scrim_availability_aggregate_bool_exp_bool_or_arguments_columns": {}, "team_scrim_availability_set_input": { "created_at": [ - 3421 + 3467 ], "ends_at": [ - 3421 + 3467 ], "id": [ - 3818 + 3864 ], "recurring_weekly": [ 3 ], "starts_at": [ - 3421 + 3467 ], "team_id": [ - 3818 + 3864 ], "__typename": [ - 70 + 75 ] }, "team_scrim_availability_stream_cursor_input": { "initial_value": [ - 3233 + 3279 ], "ordering": [ - 224 + 229 ], "__typename": [ - 70 + 75 ] }, "team_scrim_availability_stream_cursor_value_input": { "created_at": [ - 3421 + 3467 ], "ends_at": [ - 3421 + 3467 ], "id": [ - 3818 + 3864 ], "recurring_weekly": [ 3 ], "starts_at": [ - 3421 + 3467 ], "team_id": [ - 3818 + 3864 ], "__typename": [ - 70 + 75 ] }, "team_scrim_availability_update_column": {}, "team_scrim_availability_updates": { "_set": [ - 3231 + 3277 ], "where": [ - 3217 + 3263 ], "__typename": [ - 70 + 75 ] }, "team_scrim_request_proposals": { "created_at": [ - 3421 + 3467 ], "id": [ - 3818 + 3864 ], "proposed_by": [ - 2878 + 2915 ], "proposed_by_steam_id": [ - 169 + 174 ], "proposed_by_team": [ - 3378 + 3424 ], "proposed_by_team_id": [ - 3818 + 3864 ], "proposed_scheduled_at": [ - 3421 + 3467 ], "request": [ - 3277 + 3323 ], "request_id": [ - 3818 + 3864 ], "__typename": [ - 70 + 75 ] }, "team_scrim_request_proposals_aggregate": { "aggregate": [ - 3240 + 3286 ], "nodes": [ - 3236 + 3282 ], "__typename": [ - 70 + 75 ] }, "team_scrim_request_proposals_aggregate_bool_exp": { "count": [ - 3239 + 3285 ], "__typename": [ - 70 + 75 ] }, "team_scrim_request_proposals_aggregate_bool_exp_count": { "arguments": [ - 3257 + 3303 ], "distinct": [ 3 ], "filter": [ - 3245 + 3291 ], "predicate": [ 39 ], "__typename": [ - 70 + 75 ] }, "team_scrim_request_proposals_aggregate_fields": { "avg": [ - 3243 + 3289 ], "count": [ 38, { "columns": [ - 3257, + 3303, "[team_scrim_request_proposals_select_column!]" ], "distinct": [ @@ -78296,83 +79125,83 @@ export default { } ], "max": [ - 3249 + 3295 ], "min": [ - 3251 + 3297 ], "stddev": [ - 3259 + 3305 ], "stddev_pop": [ - 3261 + 3307 ], "stddev_samp": [ - 3263 + 3309 ], "sum": [ - 3267 + 3313 ], "var_pop": [ - 3271 + 3317 ], "var_samp": [ - 3273 + 3319 ], "variance": [ - 3275 + 3321 ], "__typename": [ - 70 + 75 ] }, "team_scrim_request_proposals_aggregate_order_by": { "avg": [ - 3244 + 3290 ], "count": [ - 2011 + 2016 ], "max": [ - 3250 + 3296 ], "min": [ - 3252 + 3298 ], "stddev": [ - 3260 + 3306 ], "stddev_pop": [ - 3262 + 3308 ], "stddev_samp": [ - 3264 + 3310 ], "sum": [ - 3268 + 3314 ], "var_pop": [ - 3272 + 3318 ], "var_samp": [ - 3274 + 3320 ], "variance": [ - 3276 + 3322 ], "__typename": [ - 70 + 75 ] }, "team_scrim_request_proposals_arr_rel_insert_input": { "data": [ - 3248 + 3294 ], "on_conflict": [ - 3254 + 3300 ], "__typename": [ - 70 + 75 ] }, "team_scrim_request_proposals_avg_fields": { @@ -78380,189 +79209,189 @@ export default { 29 ], "__typename": [ - 70 + 75 ] }, "team_scrim_request_proposals_avg_order_by": { "proposed_by_steam_id": [ - 2011 + 2016 ], "__typename": [ - 70 + 75 ] }, "team_scrim_request_proposals_bool_exp": { "_and": [ - 3245 + 3291 ], "_not": [ - 3245 + 3291 ], "_or": [ - 3245 + 3291 ], "created_at": [ - 3422 + 3468 ], "id": [ - 3820 + 3866 ], "proposed_by": [ - 2882 + 2919 ], "proposed_by_steam_id": [ - 171 + 176 ], "proposed_by_team": [ - 3387 + 3433 ], "proposed_by_team_id": [ - 3820 + 3866 ], "proposed_scheduled_at": [ - 3422 + 3468 ], "request": [ - 3288 + 3334 ], "request_id": [ - 3820 + 3866 ], "__typename": [ - 70 + 75 ] }, "team_scrim_request_proposals_constraint": {}, "team_scrim_request_proposals_inc_input": { "proposed_by_steam_id": [ - 169 + 174 ], "__typename": [ - 70 + 75 ] }, "team_scrim_request_proposals_insert_input": { "created_at": [ - 3421 + 3467 ], "id": [ - 3818 + 3864 ], "proposed_by": [ - 2889 + 2926 ], "proposed_by_steam_id": [ - 169 + 174 ], "proposed_by_team": [ - 3396 + 3442 ], "proposed_by_team_id": [ - 3818 + 3864 ], "proposed_scheduled_at": [ - 3421 + 3467 ], "request": [ - 3297 + 3343 ], "request_id": [ - 3818 + 3864 ], "__typename": [ - 70 + 75 ] }, "team_scrim_request_proposals_max_fields": { "created_at": [ - 3421 + 3467 ], "id": [ - 3818 + 3864 ], "proposed_by_steam_id": [ - 169 + 174 ], "proposed_by_team_id": [ - 3818 + 3864 ], "proposed_scheduled_at": [ - 3421 + 3467 ], "request_id": [ - 3818 + 3864 ], "__typename": [ - 70 + 75 ] }, "team_scrim_request_proposals_max_order_by": { "created_at": [ - 2011 + 2016 ], "id": [ - 2011 + 2016 ], "proposed_by_steam_id": [ - 2011 + 2016 ], "proposed_by_team_id": [ - 2011 + 2016 ], "proposed_scheduled_at": [ - 2011 + 2016 ], "request_id": [ - 2011 + 2016 ], "__typename": [ - 70 + 75 ] }, "team_scrim_request_proposals_min_fields": { "created_at": [ - 3421 + 3467 ], "id": [ - 3818 + 3864 ], "proposed_by_steam_id": [ - 169 + 174 ], "proposed_by_team_id": [ - 3818 + 3864 ], "proposed_scheduled_at": [ - 3421 + 3467 ], "request_id": [ - 3818 + 3864 ], "__typename": [ - 70 + 75 ] }, "team_scrim_request_proposals_min_order_by": { "created_at": [ - 2011 + 2016 ], "id": [ - 2011 + 2016 ], "proposed_by_steam_id": [ - 2011 + 2016 ], "proposed_by_team_id": [ - 2011 + 2016 ], "proposed_scheduled_at": [ - 2011 + 2016 ], "request_id": [ - 2011 + 2016 ], "__typename": [ - 70 + 75 ] }, "team_scrim_request_proposals_mutation_response": { @@ -78570,88 +79399,88 @@ export default { 38 ], "returning": [ - 3236 + 3282 ], "__typename": [ - 70 + 75 ] }, "team_scrim_request_proposals_on_conflict": { "constraint": [ - 3246 + 3292 ], "update_columns": [ - 3269 + 3315 ], "where": [ - 3245 + 3291 ], "__typename": [ - 70 + 75 ] }, "team_scrim_request_proposals_order_by": { "created_at": [ - 2011 + 2016 ], "id": [ - 2011 + 2016 ], "proposed_by": [ - 2891 + 2928 ], "proposed_by_steam_id": [ - 2011 + 2016 ], "proposed_by_team": [ - 3398 + 3444 ], "proposed_by_team_id": [ - 2011 + 2016 ], "proposed_scheduled_at": [ - 2011 + 2016 ], "request": [ - 3299 + 3345 ], "request_id": [ - 2011 + 2016 ], "__typename": [ - 70 + 75 ] }, "team_scrim_request_proposals_pk_columns_input": { "id": [ - 3818 + 3864 ], "__typename": [ - 70 + 75 ] }, "team_scrim_request_proposals_select_column": {}, "team_scrim_request_proposals_set_input": { "created_at": [ - 3421 + 3467 ], "id": [ - 3818 + 3864 ], "proposed_by_steam_id": [ - 169 + 174 ], "proposed_by_team_id": [ - 3818 + 3864 ], "proposed_scheduled_at": [ - 3421 + 3467 ], "request_id": [ - 3818 + 3864 ], "__typename": [ - 70 + 75 ] }, "team_scrim_request_proposals_stddev_fields": { @@ -78659,15 +79488,15 @@ export default { 29 ], "__typename": [ - 70 + 75 ] }, "team_scrim_request_proposals_stddev_order_by": { "proposed_by_steam_id": [ - 2011 + 2016 ], "__typename": [ - 70 + 75 ] }, "team_scrim_request_proposals_stddev_pop_fields": { @@ -78675,15 +79504,15 @@ export default { 29 ], "__typename": [ - 70 + 75 ] }, "team_scrim_request_proposals_stddev_pop_order_by": { "proposed_by_steam_id": [ - 2011 + 2016 ], "__typename": [ - 70 + 75 ] }, "team_scrim_request_proposals_stddev_samp_fields": { @@ -78691,80 +79520,80 @@ export default { 29 ], "__typename": [ - 70 + 75 ] }, "team_scrim_request_proposals_stddev_samp_order_by": { "proposed_by_steam_id": [ - 2011 + 2016 ], "__typename": [ - 70 + 75 ] }, "team_scrim_request_proposals_stream_cursor_input": { "initial_value": [ - 3266 + 3312 ], "ordering": [ - 224 + 229 ], "__typename": [ - 70 + 75 ] }, "team_scrim_request_proposals_stream_cursor_value_input": { "created_at": [ - 3421 + 3467 ], "id": [ - 3818 + 3864 ], "proposed_by_steam_id": [ - 169 + 174 ], "proposed_by_team_id": [ - 3818 + 3864 ], "proposed_scheduled_at": [ - 3421 + 3467 ], "request_id": [ - 3818 + 3864 ], "__typename": [ - 70 + 75 ] }, "team_scrim_request_proposals_sum_fields": { "proposed_by_steam_id": [ - 169 + 174 ], "__typename": [ - 70 + 75 ] }, "team_scrim_request_proposals_sum_order_by": { "proposed_by_steam_id": [ - 2011 + 2016 ], "__typename": [ - 70 + 75 ] }, "team_scrim_request_proposals_update_column": {}, "team_scrim_request_proposals_updates": { "_inc": [ - 3247 + 3293 ], "_set": [ - 3258 + 3304 ], "where": [ - 3245 + 3291 ], "__typename": [ - 70 + 75 ] }, "team_scrim_request_proposals_var_pop_fields": { @@ -78772,15 +79601,15 @@ export default { 29 ], "__typename": [ - 70 + 75 ] }, "team_scrim_request_proposals_var_pop_order_by": { "proposed_by_steam_id": [ - 2011 + 2016 ], "__typename": [ - 70 + 75 ] }, "team_scrim_request_proposals_var_samp_fields": { @@ -78788,15 +79617,15 @@ export default { 29 ], "__typename": [ - 70 + 75 ] }, "team_scrim_request_proposals_var_samp_order_by": { "proposed_by_steam_id": [ - 2011 + 2016 ], "__typename": [ - 70 + 75 ] }, "team_scrim_request_proposals_variance_fields": { @@ -78804,15 +79633,15 @@ export default { 29 ], "__typename": [ - 70 + 75 ] }, "team_scrim_request_proposals_variance_order_by": { "proposed_by_steam_id": [ - 2011 + 2016 ], "__typename": [ - 70 + 75 ] }, "team_scrim_requests": { @@ -78820,55 +79649,55 @@ export default { 3 ], "awaiting_team": [ - 3378 + 3424 ], "awaiting_team_id": [ - 3818 + 3864 ], "canceled_by_team_id": [ - 3818 + 3864 ], "canceled_late": [ 3 ], "created_at": [ - 3421 + 3467 ], "expires_at": [ - 3421 + 3467 ], "from_team": [ - 3378 + 3424 ], "from_team_checked_in": [ 3 ], "from_team_id": [ - 3818 + 3864 ], "id": [ - 3818 + 3864 ], "match": [ - 1826 + 1831 ], "match_id": [ - 3818 + 3864 ], "match_options": [ - 1706 + 1711 ], "match_options_id": [ - 3818 + 3864 ], "match_outcome": [ - 70 + 75 ], "proposals": [ - 3236, + 3282, { "distinct_on": [ - 3257, + 3303, "[team_scrim_request_proposals_select_column!]" ], "limit": [ @@ -78878,19 +79707,19 @@ export default { 38 ], "order_by": [ - 3255, + 3301, "[team_scrim_request_proposals_order_by!]" ], "where": [ - 3245 + 3291 ] } ], "proposals_aggregate": [ - 3237, + 3283, { "distinct_on": [ - 3257, + 3303, "[team_scrim_request_proposals_select_column!]" ], "limit": [ @@ -78900,130 +79729,130 @@ export default { 38 ], "order_by": [ - 3255, + 3301, "[team_scrim_request_proposals_order_by!]" ], "where": [ - 3245 + 3291 ] } ], "proposed_scheduled_at": [ - 3421 + 3467 ], "region": [ - 70 + 75 ], "requested_by": [ - 2878 + 2915 ], "requested_by_steam_id": [ - 169 + 174 ], "responded_at": [ - 3421 + 3467 ], "status": [ - 846 + 851 ], "to_team": [ - 3378 + 3424 ], "to_team_checked_in": [ 3 ], "to_team_id": [ - 3818 + 3864 ], "__typename": [ - 70 + 75 ] }, "team_scrim_requests_aggregate": { "aggregate": [ - 3283 + 3329 ], "nodes": [ - 3277 + 3323 ], "__typename": [ - 70 + 75 ] }, "team_scrim_requests_aggregate_bool_exp": { "bool_and": [ - 3280 + 3326 ], "bool_or": [ - 3281 + 3327 ], "count": [ - 3282 + 3328 ], "__typename": [ - 70 + 75 ] }, "team_scrim_requests_aggregate_bool_exp_bool_and": { "arguments": [ - 3302 + 3348 ], "distinct": [ 3 ], "filter": [ - 3288 + 3334 ], "predicate": [ 4 ], "__typename": [ - 70 + 75 ] }, "team_scrim_requests_aggregate_bool_exp_bool_or": { "arguments": [ - 3303 + 3349 ], "distinct": [ 3 ], "filter": [ - 3288 + 3334 ], "predicate": [ 4 ], "__typename": [ - 70 + 75 ] }, "team_scrim_requests_aggregate_bool_exp_count": { "arguments": [ - 3301 + 3347 ], "distinct": [ 3 ], "filter": [ - 3288 + 3334 ], "predicate": [ 39 ], "__typename": [ - 70 + 75 ] }, "team_scrim_requests_aggregate_fields": { "avg": [ - 3286 + 3332 ], "count": [ 38, { "columns": [ - 3301, + 3347, "[team_scrim_requests_select_column!]" ], "distinct": [ @@ -79032,83 +79861,83 @@ export default { } ], "max": [ - 3292 + 3338 ], "min": [ - 3294 + 3340 ], "stddev": [ - 3305 + 3351 ], "stddev_pop": [ - 3307 + 3353 ], "stddev_samp": [ - 3309 + 3355 ], "sum": [ - 3313 + 3359 ], "var_pop": [ - 3317 + 3363 ], "var_samp": [ - 3319 + 3365 ], "variance": [ - 3321 + 3367 ], "__typename": [ - 70 + 75 ] }, "team_scrim_requests_aggregate_order_by": { "avg": [ - 3287 + 3333 ], "count": [ - 2011 + 2016 ], "max": [ - 3293 + 3339 ], "min": [ - 3295 + 3341 ], "stddev": [ - 3306 + 3352 ], "stddev_pop": [ - 3308 + 3354 ], "stddev_samp": [ - 3310 + 3356 ], "sum": [ - 3314 + 3360 ], "var_pop": [ - 3318 + 3364 ], "var_samp": [ - 3320 + 3366 ], "variance": [ - 3322 + 3368 ], "__typename": [ - 70 + 75 ] }, "team_scrim_requests_arr_rel_insert_input": { "data": [ - 3291 + 3337 ], "on_conflict": [ - 3298 + 3344 ], "__typename": [ - 70 + 75 ] }, "team_scrim_requests_avg_fields": { @@ -79116,119 +79945,119 @@ export default { 29 ], "__typename": [ - 70 + 75 ] }, "team_scrim_requests_avg_order_by": { "requested_by_steam_id": [ - 2011 + 2016 ], "__typename": [ - 70 + 75 ] }, "team_scrim_requests_bool_exp": { "_and": [ - 3288 + 3334 ], "_not": [ - 3288 + 3334 ], "_or": [ - 3288 + 3334 ], "auto_generated": [ 4 ], "awaiting_team": [ - 3387 + 3433 ], "awaiting_team_id": [ - 3820 + 3866 ], "canceled_by_team_id": [ - 3820 + 3866 ], "canceled_late": [ 4 ], "created_at": [ - 3422 + 3468 ], "expires_at": [ - 3422 + 3468 ], "from_team": [ - 3387 + 3433 ], "from_team_checked_in": [ 4 ], "from_team_id": [ - 3820 + 3866 ], "id": [ - 3820 + 3866 ], "match": [ - 1835 + 1840 ], "match_id": [ - 3820 + 3866 ], "match_options": [ - 1710 + 1715 ], "match_options_id": [ - 3820 + 3866 ], "match_outcome": [ - 72 + 77 ], "proposals": [ - 3245 + 3291 ], "proposals_aggregate": [ - 3238 + 3284 ], "proposed_scheduled_at": [ - 3422 + 3468 ], "region": [ - 72 + 77 ], "requested_by": [ - 2882 + 2919 ], "requested_by_steam_id": [ - 171 + 176 ], "responded_at": [ - 3422 + 3468 ], "status": [ - 847 + 852 ], "to_team": [ - 3387 + 3433 ], "to_team_checked_in": [ 4 ], "to_team_id": [ - 3820 + 3866 ], "__typename": [ - 70 + 75 ] }, "team_scrim_requests_constraint": {}, "team_scrim_requests_inc_input": { "requested_by_steam_id": [ - 169 + 174 ], "__typename": [ - 70 + 75 ] }, "team_scrim_requests_insert_input": { @@ -79236,270 +80065,270 @@ export default { 3 ], "awaiting_team": [ - 3396 + 3442 ], "awaiting_team_id": [ - 3818 + 3864 ], "canceled_by_team_id": [ - 3818 + 3864 ], "canceled_late": [ 3 ], "created_at": [ - 3421 + 3467 ], "expires_at": [ - 3421 + 3467 ], "from_team": [ - 3396 + 3442 ], "from_team_checked_in": [ 3 ], "from_team_id": [ - 3818 + 3864 ], "id": [ - 3818 + 3864 ], "match": [ - 1844 + 1849 ], "match_id": [ - 3818 + 3864 ], "match_options": [ - 1717 + 1722 ], "match_options_id": [ - 3818 + 3864 ], "match_outcome": [ - 70 + 75 ], "proposals": [ - 3242 + 3288 ], "proposed_scheduled_at": [ - 3421 + 3467 ], "region": [ - 70 + 75 ], "requested_by": [ - 2889 + 2926 ], "requested_by_steam_id": [ - 169 + 174 ], "responded_at": [ - 3421 + 3467 ], "status": [ - 846 + 851 ], "to_team": [ - 3396 + 3442 ], "to_team_checked_in": [ 3 ], "to_team_id": [ - 3818 + 3864 ], "__typename": [ - 70 + 75 ] }, "team_scrim_requests_max_fields": { "awaiting_team_id": [ - 3818 + 3864 ], "canceled_by_team_id": [ - 3818 + 3864 ], "created_at": [ - 3421 + 3467 ], "expires_at": [ - 3421 + 3467 ], "from_team_id": [ - 3818 + 3864 ], "id": [ - 3818 + 3864 ], "match_id": [ - 3818 + 3864 ], "match_options_id": [ - 3818 + 3864 ], "match_outcome": [ - 70 + 75 ], "proposed_scheduled_at": [ - 3421 + 3467 ], "region": [ - 70 + 75 ], "requested_by_steam_id": [ - 169 + 174 ], "responded_at": [ - 3421 + 3467 ], "to_team_id": [ - 3818 + 3864 ], "__typename": [ - 70 + 75 ] }, "team_scrim_requests_max_order_by": { "awaiting_team_id": [ - 2011 + 2016 ], "canceled_by_team_id": [ - 2011 + 2016 ], "created_at": [ - 2011 + 2016 ], "expires_at": [ - 2011 + 2016 ], "from_team_id": [ - 2011 + 2016 ], "id": [ - 2011 + 2016 ], "match_id": [ - 2011 + 2016 ], "match_options_id": [ - 2011 + 2016 ], "match_outcome": [ - 2011 + 2016 ], "proposed_scheduled_at": [ - 2011 + 2016 ], "region": [ - 2011 + 2016 ], "requested_by_steam_id": [ - 2011 + 2016 ], "responded_at": [ - 2011 + 2016 ], "to_team_id": [ - 2011 + 2016 ], "__typename": [ - 70 + 75 ] }, "team_scrim_requests_min_fields": { "awaiting_team_id": [ - 3818 + 3864 ], "canceled_by_team_id": [ - 3818 + 3864 ], "created_at": [ - 3421 + 3467 ], "expires_at": [ - 3421 + 3467 ], "from_team_id": [ - 3818 + 3864 ], "id": [ - 3818 + 3864 ], "match_id": [ - 3818 + 3864 ], "match_options_id": [ - 3818 + 3864 ], "match_outcome": [ - 70 + 75 ], "proposed_scheduled_at": [ - 3421 + 3467 ], "region": [ - 70 + 75 ], "requested_by_steam_id": [ - 169 + 174 ], "responded_at": [ - 3421 + 3467 ], "to_team_id": [ - 3818 + 3864 ], "__typename": [ - 70 + 75 ] }, "team_scrim_requests_min_order_by": { "awaiting_team_id": [ - 2011 + 2016 ], "canceled_by_team_id": [ - 2011 + 2016 ], "created_at": [ - 2011 + 2016 ], "expires_at": [ - 2011 + 2016 ], "from_team_id": [ - 2011 + 2016 ], "id": [ - 2011 + 2016 ], "match_id": [ - 2011 + 2016 ], "match_options_id": [ - 2011 + 2016 ], "match_outcome": [ - 2011 + 2016 ], "proposed_scheduled_at": [ - 2011 + 2016 ], "region": [ - 2011 + 2016 ], "requested_by_steam_id": [ - 2011 + 2016 ], "responded_at": [ - 2011 + 2016 ], "to_team_id": [ - 2011 + 2016 ], "__typename": [ - 70 + 75 ] }, "team_scrim_requests_mutation_response": { @@ -79507,126 +80336,126 @@ export default { 38 ], "returning": [ - 3277 + 3323 ], "__typename": [ - 70 + 75 ] }, "team_scrim_requests_obj_rel_insert_input": { "data": [ - 3291 + 3337 ], "on_conflict": [ - 3298 + 3344 ], "__typename": [ - 70 + 75 ] }, "team_scrim_requests_on_conflict": { "constraint": [ - 3289 + 3335 ], "update_columns": [ - 3315 + 3361 ], "where": [ - 3288 + 3334 ], "__typename": [ - 70 + 75 ] }, "team_scrim_requests_order_by": { "auto_generated": [ - 2011 + 2016 ], "awaiting_team": [ - 3398 + 3444 ], "awaiting_team_id": [ - 2011 + 2016 ], "canceled_by_team_id": [ - 2011 + 2016 ], "canceled_late": [ - 2011 + 2016 ], "created_at": [ - 2011 + 2016 ], "expires_at": [ - 2011 + 2016 ], "from_team": [ - 3398 + 3444 ], "from_team_checked_in": [ - 2011 + 2016 ], "from_team_id": [ - 2011 + 2016 ], "id": [ - 2011 + 2016 ], "match": [ - 1846 + 1851 ], "match_id": [ - 2011 + 2016 ], "match_options": [ - 1719 + 1724 ], "match_options_id": [ - 2011 + 2016 ], "match_outcome": [ - 2011 + 2016 ], "proposals_aggregate": [ - 3241 + 3287 ], "proposed_scheduled_at": [ - 2011 + 2016 ], "region": [ - 2011 + 2016 ], "requested_by": [ - 2891 + 2928 ], "requested_by_steam_id": [ - 2011 + 2016 ], "responded_at": [ - 2011 + 2016 ], "status": [ - 2011 + 2016 ], "to_team": [ - 3398 + 3444 ], "to_team_checked_in": [ - 2011 + 2016 ], "to_team_id": [ - 2011 + 2016 ], "__typename": [ - 70 + 75 ] }, "team_scrim_requests_pk_columns_input": { "id": [ - 3818 + 3864 ], "__typename": [ - 70 + 75 ] }, "team_scrim_requests_select_column": {}, @@ -79637,61 +80466,61 @@ export default { 3 ], "awaiting_team_id": [ - 3818 + 3864 ], "canceled_by_team_id": [ - 3818 + 3864 ], "canceled_late": [ 3 ], "created_at": [ - 3421 + 3467 ], "expires_at": [ - 3421 + 3467 ], "from_team_checked_in": [ 3 ], "from_team_id": [ - 3818 + 3864 ], "id": [ - 3818 + 3864 ], "match_id": [ - 3818 + 3864 ], "match_options_id": [ - 3818 + 3864 ], "match_outcome": [ - 70 + 75 ], "proposed_scheduled_at": [ - 3421 + 3467 ], "region": [ - 70 + 75 ], "requested_by_steam_id": [ - 169 + 174 ], "responded_at": [ - 3421 + 3467 ], "status": [ - 846 + 851 ], "to_team_checked_in": [ 3 ], "to_team_id": [ - 3818 + 3864 ], "__typename": [ - 70 + 75 ] }, "team_scrim_requests_stddev_fields": { @@ -79699,15 +80528,15 @@ export default { 29 ], "__typename": [ - 70 + 75 ] }, "team_scrim_requests_stddev_order_by": { "requested_by_steam_id": [ - 2011 + 2016 ], "__typename": [ - 70 + 75 ] }, "team_scrim_requests_stddev_pop_fields": { @@ -79715,15 +80544,15 @@ export default { 29 ], "__typename": [ - 70 + 75 ] }, "team_scrim_requests_stddev_pop_order_by": { "requested_by_steam_id": [ - 2011 + 2016 ], "__typename": [ - 70 + 75 ] }, "team_scrim_requests_stddev_samp_fields": { @@ -79731,26 +80560,26 @@ export default { 29 ], "__typename": [ - 70 + 75 ] }, "team_scrim_requests_stddev_samp_order_by": { "requested_by_steam_id": [ - 2011 + 2016 ], "__typename": [ - 70 + 75 ] }, "team_scrim_requests_stream_cursor_input": { "initial_value": [ - 3312 + 3358 ], "ordering": [ - 224 + 229 ], "__typename": [ - 70 + 75 ] }, "team_scrim_requests_stream_cursor_value_input": { @@ -79758,92 +80587,92 @@ export default { 3 ], "awaiting_team_id": [ - 3818 + 3864 ], "canceled_by_team_id": [ - 3818 + 3864 ], "canceled_late": [ 3 ], "created_at": [ - 3421 + 3467 ], "expires_at": [ - 3421 + 3467 ], "from_team_checked_in": [ 3 ], "from_team_id": [ - 3818 + 3864 ], "id": [ - 3818 + 3864 ], "match_id": [ - 3818 + 3864 ], "match_options_id": [ - 3818 + 3864 ], "match_outcome": [ - 70 + 75 ], "proposed_scheduled_at": [ - 3421 + 3467 ], "region": [ - 70 + 75 ], "requested_by_steam_id": [ - 169 + 174 ], "responded_at": [ - 3421 + 3467 ], "status": [ - 846 + 851 ], "to_team_checked_in": [ 3 ], "to_team_id": [ - 3818 + 3864 ], "__typename": [ - 70 + 75 ] }, "team_scrim_requests_sum_fields": { "requested_by_steam_id": [ - 169 + 174 ], "__typename": [ - 70 + 75 ] }, "team_scrim_requests_sum_order_by": { "requested_by_steam_id": [ - 2011 + 2016 ], "__typename": [ - 70 + 75 ] }, "team_scrim_requests_update_column": {}, "team_scrim_requests_updates": { "_inc": [ - 3290 + 3336 ], "_set": [ - 3304 + 3350 ], "where": [ - 3288 + 3334 ], "__typename": [ - 70 + 75 ] }, "team_scrim_requests_var_pop_fields": { @@ -79851,15 +80680,15 @@ export default { 29 ], "__typename": [ - 70 + 75 ] }, "team_scrim_requests_var_pop_order_by": { "requested_by_steam_id": [ - 2011 + 2016 ], "__typename": [ - 70 + 75 ] }, "team_scrim_requests_var_samp_fields": { @@ -79867,15 +80696,15 @@ export default { 29 ], "__typename": [ - 70 + 75 ] }, "team_scrim_requests_var_samp_order_by": { "requested_by_steam_id": [ - 2011 + 2016 ], "__typename": [ - 70 + 75 ] }, "team_scrim_requests_variance_fields": { @@ -79883,15 +80712,15 @@ export default { 29 ], "__typename": [ - 70 + 75 ] }, "team_scrim_requests_variance_order_by": { "requested_by_steam_id": [ - 2011 + 2016 ], "__typename": [ - 70 + 75 ] }, "team_scrim_settings": { @@ -79899,7 +80728,7 @@ export default { 3 ], "created_at": [ - 3421 + 3467 ], "elo_max": [ 38 @@ -79911,50 +80740,50 @@ export default { 3 ], "id": [ - 3818 + 3864 ], "map_ids": [ - 3818 + 3864 ], "notes": [ - 70 + 75 ], "regions": [ - 70 + 75 ], "team": [ - 3378 + 3424 ], "team_id": [ - 3818 + 3864 ], "updated_at": [ - 3421 + 3467 ], "__typename": [ - 70 + 75 ] }, "team_scrim_settings_aggregate": { "aggregate": [ - 3325 + 3371 ], "nodes": [ - 3323 + 3369 ], "__typename": [ - 70 + 75 ] }, "team_scrim_settings_aggregate_fields": { "avg": [ - 3326 + 3372 ], "count": [ 38, { "columns": [ - 3338, + 3384, "[team_scrim_settings_select_column!]" ], "distinct": [ @@ -79963,34 +80792,34 @@ export default { } ], "max": [ - 3331 + 3377 ], "min": [ - 3332 + 3378 ], "stddev": [ - 3340 + 3386 ], "stddev_pop": [ - 3341 + 3387 ], "stddev_samp": [ - 3342 + 3388 ], "sum": [ - 3345 + 3391 ], "var_pop": [ - 3348 + 3394 ], "var_samp": [ - 3349 + 3395 ], "variance": [ - 3350 + 3396 ], "__typename": [ - 70 + 75 ] }, "team_scrim_settings_avg_fields": { @@ -80001,24 +80830,24 @@ export default { 29 ], "__typename": [ - 70 + 75 ] }, "team_scrim_settings_bool_exp": { "_and": [ - 3327 + 3373 ], "_not": [ - 3327 + 3373 ], "_or": [ - 3327 + 3373 ], "allow_outside_availability": [ 4 ], "created_at": [ - 3422 + 3468 ], "elo_max": [ 39 @@ -80030,28 +80859,28 @@ export default { 4 ], "id": [ - 3820 + 3866 ], "map_ids": [ - 3819 + 3865 ], "notes": [ - 72 + 77 ], "regions": [ - 71 + 76 ], "team": [ - 3387 + 3433 ], "team_id": [ - 3820 + 3866 ], "updated_at": [ - 3422 + 3468 ], "__typename": [ - 70 + 75 ] }, "team_scrim_settings_constraint": {}, @@ -80063,7 +80892,7 @@ export default { 38 ], "__typename": [ - 70 + 75 ] }, "team_scrim_settings_insert_input": { @@ -80071,7 +80900,7 @@ export default { 3 ], "created_at": [ - 3421 + 3467 ], "elo_max": [ 38 @@ -80083,33 +80912,33 @@ export default { 3 ], "id": [ - 3818 + 3864 ], "map_ids": [ - 3818 + 3864 ], "notes": [ - 70 + 75 ], "regions": [ - 70 + 75 ], "team": [ - 3396 + 3442 ], "team_id": [ - 3818 + 3864 ], "updated_at": [ - 3421 + 3467 ], "__typename": [ - 70 + 75 ] }, "team_scrim_settings_max_fields": { "created_at": [ - 3421 + 3467 ], "elo_max": [ 38 @@ -80118,30 +80947,30 @@ export default { 38 ], "id": [ - 3818 + 3864 ], "map_ids": [ - 3818 + 3864 ], "notes": [ - 70 + 75 ], "regions": [ - 70 + 75 ], "team_id": [ - 3818 + 3864 ], "updated_at": [ - 3421 + 3467 ], "__typename": [ - 70 + 75 ] }, "team_scrim_settings_min_fields": { "created_at": [ - 3421 + 3467 ], "elo_max": [ 38 @@ -80150,25 +80979,25 @@ export default { 38 ], "id": [ - 3818 + 3864 ], "map_ids": [ - 3818 + 3864 ], "notes": [ - 70 + 75 ], "regions": [ - 70 + 75 ], "team_id": [ - 3818 + 3864 ], "updated_at": [ - 3421 + 3467 ], "__typename": [ - 70 + 75 ] }, "team_scrim_settings_mutation_response": { @@ -80176,84 +81005,84 @@ export default { 38 ], "returning": [ - 3323 + 3369 ], "__typename": [ - 70 + 75 ] }, "team_scrim_settings_obj_rel_insert_input": { "data": [ - 3330 + 3376 ], "on_conflict": [ - 3335 + 3381 ], "__typename": [ - 70 + 75 ] }, "team_scrim_settings_on_conflict": { "constraint": [ - 3328 + 3374 ], "update_columns": [ - 3346 + 3392 ], "where": [ - 3327 + 3373 ], "__typename": [ - 70 + 75 ] }, "team_scrim_settings_order_by": { "allow_outside_availability": [ - 2011 + 2016 ], "created_at": [ - 2011 + 2016 ], "elo_max": [ - 2011 + 2016 ], "elo_min": [ - 2011 + 2016 ], "enabled": [ - 2011 + 2016 ], "id": [ - 2011 + 2016 ], "map_ids": [ - 2011 + 2016 ], "notes": [ - 2011 + 2016 ], "regions": [ - 2011 + 2016 ], "team": [ - 3398 + 3444 ], "team_id": [ - 2011 + 2016 ], "updated_at": [ - 2011 + 2016 ], "__typename": [ - 70 + 75 ] }, "team_scrim_settings_pk_columns_input": { "id": [ - 3818 + 3864 ], "__typename": [ - 70 + 75 ] }, "team_scrim_settings_select_column": {}, @@ -80262,7 +81091,7 @@ export default { 3 ], "created_at": [ - 3421 + 3467 ], "elo_max": [ 38 @@ -80274,25 +81103,25 @@ export default { 3 ], "id": [ - 3818 + 3864 ], "map_ids": [ - 3818 + 3864 ], "notes": [ - 70 + 75 ], "regions": [ - 70 + 75 ], "team_id": [ - 3818 + 3864 ], "updated_at": [ - 3421 + 3467 ], "__typename": [ - 70 + 75 ] }, "team_scrim_settings_stddev_fields": { @@ -80303,7 +81132,7 @@ export default { 29 ], "__typename": [ - 70 + 75 ] }, "team_scrim_settings_stddev_pop_fields": { @@ -80314,7 +81143,7 @@ export default { 29 ], "__typename": [ - 70 + 75 ] }, "team_scrim_settings_stddev_samp_fields": { @@ -80325,18 +81154,18 @@ export default { 29 ], "__typename": [ - 70 + 75 ] }, "team_scrim_settings_stream_cursor_input": { "initial_value": [ - 3344 + 3390 ], "ordering": [ - 224 + 229 ], "__typename": [ - 70 + 75 ] }, "team_scrim_settings_stream_cursor_value_input": { @@ -80344,7 +81173,7 @@ export default { 3 ], "created_at": [ - 3421 + 3467 ], "elo_max": [ 38 @@ -80356,25 +81185,25 @@ export default { 3 ], "id": [ - 3818 + 3864 ], "map_ids": [ - 3818 + 3864 ], "notes": [ - 70 + 75 ], "regions": [ - 70 + 75 ], "team_id": [ - 3818 + 3864 ], "updated_at": [ - 3421 + 3467 ], "__typename": [ - 70 + 75 ] }, "team_scrim_settings_sum_fields": { @@ -80385,22 +81214,22 @@ export default { 38 ], "__typename": [ - 70 + 75 ] }, "team_scrim_settings_update_column": {}, "team_scrim_settings_updates": { "_inc": [ - 3329 + 3375 ], "_set": [ - 3339 + 3385 ], "where": [ - 3327 + 3373 ], "__typename": [ - 70 + 75 ] }, "team_scrim_settings_var_pop_fields": { @@ -80411,7 +81240,7 @@ export default { 29 ], "__typename": [ - 70 + 75 ] }, "team_scrim_settings_var_samp_fields": { @@ -80422,7 +81251,7 @@ export default { 29 ], "__typename": [ - 70 + 75 ] }, "team_scrim_settings_variance_fields": { @@ -80433,55 +81262,55 @@ export default { 29 ], "__typename": [ - 70 + 75 ] }, "team_suggestions": { "created_at": [ - 3421 + 3467 ], "group_hash": [ - 70 + 75 ], "id": [ - 3818 + 3864 ], "last_notified_at": [ - 3421 + 3467 ], "member_steam_ids": [ - 169 + 174 ], "status": [ - 70 + 75 ], "together_count": [ 38 ], "__typename": [ - 70 + 75 ] }, "team_suggestions_aggregate": { "aggregate": [ - 3353 + 3399 ], "nodes": [ - 3351 + 3397 ], "__typename": [ - 70 + 75 ] }, "team_suggestions_aggregate_fields": { "avg": [ - 3354 + 3400 ], "count": [ 38, { "columns": [ - 3365, + 3411, "[team_suggestions_select_column!]" ], "distinct": [ @@ -80490,34 +81319,34 @@ export default { } ], "max": [ - 3359 + 3405 ], "min": [ - 3360 + 3406 ], "stddev": [ - 3367 + 3413 ], "stddev_pop": [ - 3368 + 3414 ], "stddev_samp": [ - 3369 + 3415 ], "sum": [ - 3372 + 3418 ], "var_pop": [ - 3375 + 3421 ], "var_samp": [ - 3376 + 3422 ], "variance": [ - 3377 + 3423 ], "__typename": [ - 70 + 75 ] }, "team_suggestions_avg_fields": { @@ -80525,42 +81354,42 @@ export default { 29 ], "__typename": [ - 70 + 75 ] }, "team_suggestions_bool_exp": { "_and": [ - 3355 + 3401 ], "_not": [ - 3355 + 3401 ], "_or": [ - 3355 + 3401 ], "created_at": [ - 3422 + 3468 ], "group_hash": [ - 72 + 77 ], "id": [ - 3820 + 3866 ], "last_notified_at": [ - 3422 + 3468 ], "member_steam_ids": [ - 170 + 175 ], "status": [ - 72 + 77 ], "together_count": [ 39 ], "__typename": [ - 70 + 75 ] }, "team_suggestions_constraint": {}, @@ -80569,85 +81398,85 @@ export default { 38 ], "__typename": [ - 70 + 75 ] }, "team_suggestions_insert_input": { "created_at": [ - 3421 + 3467 ], "group_hash": [ - 70 + 75 ], "id": [ - 3818 + 3864 ], "last_notified_at": [ - 3421 + 3467 ], "member_steam_ids": [ - 169 + 174 ], "status": [ - 70 + 75 ], "together_count": [ 38 ], "__typename": [ - 70 + 75 ] }, "team_suggestions_max_fields": { "created_at": [ - 3421 + 3467 ], "group_hash": [ - 70 + 75 ], "id": [ - 3818 + 3864 ], "last_notified_at": [ - 3421 + 3467 ], "member_steam_ids": [ - 169 + 174 ], "status": [ - 70 + 75 ], "together_count": [ 38 ], "__typename": [ - 70 + 75 ] }, "team_suggestions_min_fields": { "created_at": [ - 3421 + 3467 ], "group_hash": [ - 70 + 75 ], "id": [ - 3818 + 3864 ], "last_notified_at": [ - 3421 + 3467 ], "member_steam_ids": [ - 169 + 174 ], "status": [ - 70 + 75 ], "together_count": [ 38 ], "__typename": [ - 70 + 75 ] }, "team_suggestions_mutation_response": { @@ -80655,85 +81484,85 @@ export default { 38 ], "returning": [ - 3351 + 3397 ], "__typename": [ - 70 + 75 ] }, "team_suggestions_on_conflict": { "constraint": [ - 3356 + 3402 ], "update_columns": [ - 3373 + 3419 ], "where": [ - 3355 + 3401 ], "__typename": [ - 70 + 75 ] }, "team_suggestions_order_by": { "created_at": [ - 2011 + 2016 ], "group_hash": [ - 2011 + 2016 ], "id": [ - 2011 + 2016 ], "last_notified_at": [ - 2011 + 2016 ], "member_steam_ids": [ - 2011 + 2016 ], "status": [ - 2011 + 2016 ], "together_count": [ - 2011 + 2016 ], "__typename": [ - 70 + 75 ] }, "team_suggestions_pk_columns_input": { "id": [ - 3818 + 3864 ], "__typename": [ - 70 + 75 ] }, "team_suggestions_select_column": {}, "team_suggestions_set_input": { "created_at": [ - 3421 + 3467 ], "group_hash": [ - 70 + 75 ], "id": [ - 3818 + 3864 ], "last_notified_at": [ - 3421 + 3467 ], "member_steam_ids": [ - 169 + 174 ], "status": [ - 70 + 75 ], "together_count": [ 38 ], "__typename": [ - 70 + 75 ] }, "team_suggestions_stddev_fields": { @@ -80741,7 +81570,7 @@ export default { 29 ], "__typename": [ - 70 + 75 ] }, "team_suggestions_stddev_pop_fields": { @@ -80749,7 +81578,7 @@ export default { 29 ], "__typename": [ - 70 + 75 ] }, "team_suggestions_stddev_samp_fields": { @@ -80757,44 +81586,44 @@ export default { 29 ], "__typename": [ - 70 + 75 ] }, "team_suggestions_stream_cursor_input": { "initial_value": [ - 3371 + 3417 ], "ordering": [ - 224 + 229 ], "__typename": [ - 70 + 75 ] }, "team_suggestions_stream_cursor_value_input": { "created_at": [ - 3421 + 3467 ], "group_hash": [ - 70 + 75 ], "id": [ - 3818 + 3864 ], "last_notified_at": [ - 3421 + 3467 ], "member_steam_ids": [ - 169 + 174 ], "status": [ - 70 + 75 ], "together_count": [ 38 ], "__typename": [ - 70 + 75 ] }, "team_suggestions_sum_fields": { @@ -80802,22 +81631,22 @@ export default { 38 ], "__typename": [ - 70 + 75 ] }, "team_suggestions_update_column": {}, "team_suggestions_updates": { "_inc": [ - 3357 + 3403 ], "_set": [ - 3366 + 3412 ], "where": [ - 3355 + 3401 ], "__typename": [ - 70 + 75 ] }, "team_suggestions_var_pop_fields": { @@ -80825,7 +81654,7 @@ export default { 29 ], "__typename": [ - 70 + 75 ] }, "team_suggestions_var_samp_fields": { @@ -80833,7 +81662,7 @@ export default { 29 ], "__typename": [ - 70 + 75 ] }, "team_suggestions_variance_fields": { @@ -80841,12 +81670,12 @@ export default { 29 ], "__typename": [ - 70 + 75 ] }, "teams": { "avatar_url": [ - 70 + 75 ], "can_change_role": [ 3 @@ -80861,19 +81690,19 @@ export default { 3 ], "captain": [ - 2878 + 2915 ], "captain_steam_id": [ - 169 + 174 ], "id": [ - 3818 + 3864 ], "invites": [ - 3095, + 3141, { "distinct_on": [ - 3116, + 3162, "[team_invites_select_column!]" ], "limit": [ @@ -80883,19 +81712,19 @@ export default { 38 ], "order_by": [ - 3114, + 3160, "[team_invites_order_by!]" ], "where": [ - 3104 + 3150 ] } ], "invites_aggregate": [ - 3096, + 3142, { "distinct_on": [ - 3116, + 3162, "[team_invites_select_column!]" ], "limit": [ @@ -80905,19 +81734,19 @@ export default { 38 ], "order_by": [ - 3114, + 3160, "[team_invites_order_by!]" ], "where": [ - 3104 + 3150 ] } ], "match_lineups": [ - 1506, + 1511, { "distinct_on": [ - 1528, + 1533, "[match_lineups_select_column!]" ], "limit": [ @@ -80927,19 +81756,19 @@ export default { 38 ], "order_by": [ - 1526, + 1531, "[match_lineups_order_by!]" ], "where": [ - 1515 + 1520 ] } ], "match_lineups_aggregate": [ - 1507, + 1512, { "distinct_on": [ - 1528, + 1533, "[match_lineups_select_column!]" ], "limit": [ @@ -80949,19 +81778,19 @@ export default { 38 ], "order_by": [ - 1526, + 1531, "[match_lineups_order_by!]" ], "where": [ - 1515 + 1520 ] } ], "matches": [ - 1826, + 1831, { "distinct_on": [ - 1848, + 1853, "[matches_select_column!]" ], "limit": [ @@ -80971,37 +81800,37 @@ export default { 38 ], "order_by": [ - 1846, + 1851, "[matches_order_by!]" ], "where": [ - 1835 + 1840 ] } ], "name": [ - 70 + 75 ], "owner": [ - 2878 + 2915 ], "owner_steam_id": [ - 169 + 174 ], "ranks": [ - 4367 + 4413 ], "reputation": [ - 4387 + 4433 ], "role": [ - 70 + 75 ], "roster": [ - 3136, + 3182, { "distinct_on": [ - 3159, + 3205, "[team_roster_select_column!]" ], "limit": [ @@ -81011,19 +81840,19 @@ export default { 38 ], "order_by": [ - 3157, + 3203, "[team_roster_order_by!]" ], "where": [ - 3147 + 3193 ] } ], "roster_aggregate": [ - 3137, + 3183, { "distinct_on": [ - 3159, + 3205, "[team_roster_select_column!]" ], "limit": [ @@ -81033,19 +81862,19 @@ export default { 38 ], "order_by": [ - 3157, + 3203, "[team_roster_order_by!]" ], "where": [ - 3147 + 3193 ] } ], "scrim_availability": [ - 3208, + 3254, { "distinct_on": [ - 3228, + 3274, "[team_scrim_availability_select_column!]" ], "limit": [ @@ -81055,19 +81884,19 @@ export default { 38 ], "order_by": [ - 3226, + 3272, "[team_scrim_availability_order_by!]" ], "where": [ - 3217 + 3263 ] } ], "scrim_availability_aggregate": [ - 3209, + 3255, { "distinct_on": [ - 3228, + 3274, "[team_scrim_availability_select_column!]" ], "limit": [ @@ -81077,25 +81906,25 @@ export default { 38 ], "order_by": [ - 3226, + 3272, "[team_scrim_availability_order_by!]" ], "where": [ - 3217 + 3263 ] } ], "scrim_settings": [ - 3323 + 3369 ], "short_name": [ - 70 + 75 ], "tournament_teams": [ - 3643, + 3689, { "distinct_on": [ - 3665, + 3711, "[tournament_teams_select_column!]" ], "limit": [ @@ -81105,19 +81934,19 @@ export default { 38 ], "order_by": [ - 3663, + 3709, "[tournament_teams_order_by!]" ], "where": [ - 3652 + 3698 ] } ], "tournament_teams_aggregate": [ - 3644, + 3690, { "distinct_on": [ - 3665, + 3711, "[tournament_teams_select_column!]" ], "limit": [ @@ -81127,63 +81956,63 @@ export default { 38 ], "order_by": [ - 3663, + 3709, "[tournament_teams_order_by!]" ], "where": [ - 3652 + 3698 ] } ], "__typename": [ - 70 + 75 ] }, "teams_aggregate": { "aggregate": [ - 3382 + 3428 ], "nodes": [ - 3378 + 3424 ], "__typename": [ - 70 + 75 ] }, "teams_aggregate_bool_exp": { "count": [ - 3381 + 3427 ], "__typename": [ - 70 + 75 ] }, "teams_aggregate_bool_exp_count": { "arguments": [ - 3400 + 3446 ], "distinct": [ 3 ], "filter": [ - 3387 + 3433 ], "predicate": [ 39 ], "__typename": [ - 70 + 75 ] }, "teams_aggregate_fields": { "avg": [ - 3385 + 3431 ], "count": [ 38, { "columns": [ - 3400, + 3446, "[teams_select_column!]" ], "distinct": [ @@ -81192,83 +82021,83 @@ export default { } ], "max": [ - 3391 + 3437 ], "min": [ - 3393 + 3439 ], "stddev": [ - 3402 + 3448 ], "stddev_pop": [ - 3404 + 3450 ], "stddev_samp": [ - 3406 + 3452 ], "sum": [ - 3410 + 3456 ], "var_pop": [ - 3414 + 3460 ], "var_samp": [ - 3416 + 3462 ], "variance": [ - 3418 + 3464 ], "__typename": [ - 70 + 75 ] }, "teams_aggregate_order_by": { "avg": [ - 3386 + 3432 ], "count": [ - 2011 + 2016 ], "max": [ - 3392 + 3438 ], "min": [ - 3394 + 3440 ], "stddev": [ - 3403 + 3449 ], "stddev_pop": [ - 3405 + 3451 ], "stddev_samp": [ - 3407 + 3453 ], "sum": [ - 3411 + 3457 ], "var_pop": [ - 3415 + 3461 ], "var_samp": [ - 3417 + 3463 ], "variance": [ - 3419 + 3465 ], "__typename": [ - 70 + 75 ] }, "teams_arr_rel_insert_input": { "data": [ - 3390 + 3436 ], "on_conflict": [ - 3397 + 3443 ], "__typename": [ - 70 + 75 ] }, "teams_avg_fields": { @@ -81279,32 +82108,32 @@ export default { 29 ], "__typename": [ - 70 + 75 ] }, "teams_avg_order_by": { "captain_steam_id": [ - 2011 + 2016 ], "owner_steam_id": [ - 2011 + 2016 ], "__typename": [ - 70 + 75 ] }, "teams_bool_exp": { "_and": [ - 3387 + 3433 ], "_not": [ - 3387 + 3433 ], "_or": [ - 3387 + 3433 ], "avatar_url": [ - 72 + 77 ], "can_change_role": [ 4 @@ -81319,236 +82148,236 @@ export default { 4 ], "captain": [ - 2882 + 2919 ], "captain_steam_id": [ - 171 + 176 ], "id": [ - 3820 + 3866 ], "invites": [ - 3104 + 3150 ], "invites_aggregate": [ - 3097 + 3143 ], "match_lineups": [ - 1515 + 1520 ], "match_lineups_aggregate": [ - 1508 + 1513 ], "matches": [ - 1835 + 1840 ], "name": [ - 72 + 77 ], "owner": [ - 2882 + 2919 ], "owner_steam_id": [ - 171 + 176 ], "ranks": [ - 4371 + 4417 ], "reputation": [ - 4391 + 4437 ], "role": [ - 72 + 77 ], "roster": [ - 3147 + 3193 ], "roster_aggregate": [ - 3138 + 3184 ], "scrim_availability": [ - 3217 + 3263 ], "scrim_availability_aggregate": [ - 3210 + 3256 ], "scrim_settings": [ - 3327 + 3373 ], "short_name": [ - 72 + 77 ], "tournament_teams": [ - 3652 + 3698 ], "tournament_teams_aggregate": [ - 3645 + 3691 ], "__typename": [ - 70 + 75 ] }, "teams_constraint": {}, "teams_inc_input": { "captain_steam_id": [ - 169 + 174 ], "owner_steam_id": [ - 169 + 174 ], "__typename": [ - 70 + 75 ] }, "teams_insert_input": { "avatar_url": [ - 70 + 75 ], "captain": [ - 2889 + 2926 ], "captain_steam_id": [ - 169 + 174 ], "id": [ - 3818 + 3864 ], "invites": [ - 3101 + 3147 ], "match_lineups": [ - 1512 + 1517 ], "name": [ - 70 + 75 ], "owner": [ - 2889 + 2926 ], "owner_steam_id": [ - 169 + 174 ], "ranks": [ - 4375 + 4421 ], "reputation": [ - 4395 + 4441 ], "roster": [ - 3144 + 3190 ], "scrim_availability": [ - 3216 + 3262 ], "scrim_settings": [ - 3334 + 3380 ], "short_name": [ - 70 + 75 ], "tournament_teams": [ - 3649 + 3695 ], "__typename": [ - 70 + 75 ] }, "teams_max_fields": { "avatar_url": [ - 70 + 75 ], "captain_steam_id": [ - 169 + 174 ], "id": [ - 3818 + 3864 ], "name": [ - 70 + 75 ], "owner_steam_id": [ - 169 + 174 ], "role": [ - 70 + 75 ], "short_name": [ - 70 + 75 ], "__typename": [ - 70 + 75 ] }, "teams_max_order_by": { "avatar_url": [ - 2011 + 2016 ], "captain_steam_id": [ - 2011 + 2016 ], "id": [ - 2011 + 2016 ], "name": [ - 2011 + 2016 ], "owner_steam_id": [ - 2011 + 2016 ], "short_name": [ - 2011 + 2016 ], "__typename": [ - 70 + 75 ] }, "teams_min_fields": { "avatar_url": [ - 70 + 75 ], "captain_steam_id": [ - 169 + 174 ], "id": [ - 3818 + 3864 ], "name": [ - 70 + 75 ], "owner_steam_id": [ - 169 + 174 ], "role": [ - 70 + 75 ], "short_name": [ - 70 + 75 ], "__typename": [ - 70 + 75 ] }, "teams_min_order_by": { "avatar_url": [ - 2011 + 2016 ], "captain_steam_id": [ - 2011 + 2016 ], "id": [ - 2011 + 2016 ], "name": [ - 2011 + 2016 ], "owner_steam_id": [ - 2011 + 2016 ], "short_name": [ - 2011 + 2016 ], "__typename": [ - 70 + 75 ] }, "teams_mutation_response": { @@ -81556,138 +82385,138 @@ export default { 38 ], "returning": [ - 3378 + 3424 ], "__typename": [ - 70 + 75 ] }, "teams_obj_rel_insert_input": { "data": [ - 3390 + 3436 ], "on_conflict": [ - 3397 + 3443 ], "__typename": [ - 70 + 75 ] }, "teams_on_conflict": { "constraint": [ - 3388 + 3434 ], "update_columns": [ - 3412 + 3458 ], "where": [ - 3387 + 3433 ], "__typename": [ - 70 + 75 ] }, "teams_order_by": { "avatar_url": [ - 2011 + 2016 ], "can_change_role": [ - 2011 + 2016 ], "can_invite": [ - 2011 + 2016 ], "can_manage_scrims": [ - 2011 + 2016 ], "can_remove": [ - 2011 + 2016 ], "captain": [ - 2891 + 2928 ], "captain_steam_id": [ - 2011 + 2016 ], "id": [ - 2011 + 2016 ], "invites_aggregate": [ - 3100 + 3146 ], "match_lineups_aggregate": [ - 1511 + 1516 ], "matches_aggregate": [ - 1831 + 1836 ], "name": [ - 2011 + 2016 ], "owner": [ - 2891 + 2928 ], "owner_steam_id": [ - 2011 + 2016 ], "ranks": [ - 4376 + 4422 ], "reputation": [ - 4396 + 4442 ], "role": [ - 2011 + 2016 ], "roster_aggregate": [ - 3143 + 3189 ], "scrim_availability_aggregate": [ - 3215 + 3261 ], "scrim_settings": [ - 3336 + 3382 ], "short_name": [ - 2011 + 2016 ], "tournament_teams_aggregate": [ - 3648 + 3694 ], "__typename": [ - 70 + 75 ] }, "teams_pk_columns_input": { "id": [ - 3818 + 3864 ], "__typename": [ - 70 + 75 ] }, "teams_select_column": {}, "teams_set_input": { "avatar_url": [ - 70 + 75 ], "captain_steam_id": [ - 169 + 174 ], "id": [ - 3818 + 3864 ], "name": [ - 70 + 75 ], "owner_steam_id": [ - 169 + 174 ], "short_name": [ - 70 + 75 ], "__typename": [ - 70 + 75 ] }, "teams_stddev_fields": { @@ -81698,18 +82527,18 @@ export default { 29 ], "__typename": [ - 70 + 75 ] }, "teams_stddev_order_by": { "captain_steam_id": [ - 2011 + 2016 ], "owner_steam_id": [ - 2011 + 2016 ], "__typename": [ - 70 + 75 ] }, "teams_stddev_pop_fields": { @@ -81720,18 +82549,18 @@ export default { 29 ], "__typename": [ - 70 + 75 ] }, "teams_stddev_pop_order_by": { "captain_steam_id": [ - 2011 + 2016 ], "owner_steam_id": [ - 2011 + 2016 ], "__typename": [ - 70 + 75 ] }, "teams_stddev_samp_fields": { @@ -81742,89 +82571,89 @@ export default { 29 ], "__typename": [ - 70 + 75 ] }, "teams_stddev_samp_order_by": { "captain_steam_id": [ - 2011 + 2016 ], "owner_steam_id": [ - 2011 + 2016 ], "__typename": [ - 70 + 75 ] }, "teams_stream_cursor_input": { "initial_value": [ - 3409 + 3455 ], "ordering": [ - 224 + 229 ], "__typename": [ - 70 + 75 ] }, "teams_stream_cursor_value_input": { "avatar_url": [ - 70 + 75 ], "captain_steam_id": [ - 169 + 174 ], "id": [ - 3818 + 3864 ], "name": [ - 70 + 75 ], "owner_steam_id": [ - 169 + 174 ], "short_name": [ - 70 + 75 ], "__typename": [ - 70 + 75 ] }, "teams_sum_fields": { "captain_steam_id": [ - 169 + 174 ], "owner_steam_id": [ - 169 + 174 ], "__typename": [ - 70 + 75 ] }, "teams_sum_order_by": { "captain_steam_id": [ - 2011 + 2016 ], "owner_steam_id": [ - 2011 + 2016 ], "__typename": [ - 70 + 75 ] }, "teams_update_column": {}, "teams_updates": { "_inc": [ - 3389 + 3435 ], "_set": [ - 3401 + 3447 ], "where": [ - 3387 + 3433 ], "__typename": [ - 70 + 75 ] }, "teams_var_pop_fields": { @@ -81835,18 +82664,18 @@ export default { 29 ], "__typename": [ - 70 + 75 ] }, "teams_var_pop_order_by": { "captain_steam_id": [ - 2011 + 2016 ], "owner_steam_id": [ - 2011 + 2016 ], "__typename": [ - 70 + 75 ] }, "teams_var_samp_fields": { @@ -81857,18 +82686,18 @@ export default { 29 ], "__typename": [ - 70 + 75 ] }, "teams_var_samp_order_by": { "captain_steam_id": [ - 2011 + 2016 ], "owner_steam_id": [ - 2011 + 2016 ], "__typename": [ - 70 + 75 ] }, "teams_variance_fields": { @@ -81879,52 +82708,52 @@ export default { 29 ], "__typename": [ - 70 + 75 ] }, "teams_variance_order_by": { "captain_steam_id": [ - 2011 + 2016 ], "owner_steam_id": [ - 2011 + 2016 ], "__typename": [ - 70 + 75 ] }, "timestamp": {}, "timestamptz": {}, "timestamptz_comparison_exp": { "_eq": [ - 3421 + 3467 ], "_gt": [ - 3421 + 3467 ], "_gte": [ - 3421 + 3467 ], "_in": [ - 3421 + 3467 ], "_is_null": [ 3 ], "_lt": [ - 3421 + 3467 ], "_lte": [ - 3421 + 3467 ], "_neq": [ - 3421 + 3467 ], "_nin": [ - 3421 + 3467 ], "__typename": [ - 70 + 75 ] }, "tournament_brackets": { @@ -81932,13 +82761,13 @@ export default { 3 ], "created_at": [ - 3421 + 3467 ], "feeding_brackets": [ - 3423, + 3469, { "distinct_on": [ - 3447, + 3493, "[tournament_brackets_select_column!]" ], "limit": [ @@ -81948,11 +82777,11 @@ export default { 38 ], "order_by": [ - 3445, + 3491, "[tournament_brackets_order_by!]" ], "where": [ - 3434 + 3480 ] } ], @@ -81960,163 +82789,163 @@ export default { 3 ], "group": [ - 2009 + 2014 ], "id": [ - 3818 + 3864 ], "loser_bracket": [ - 3423 + 3469 ], "loser_parent_bracket_id": [ - 3818 + 3864 ], "match": [ - 1826 + 1831 ], "match_id": [ - 3818 + 3864 ], "match_number": [ 38 ], "match_options_id": [ - 3818 + 3864 ], "options": [ - 1706 + 1711 ], "parent_bracket": [ - 3423 + 3469 ], "parent_bracket_id": [ - 3818 + 3864 ], "path": [ - 70 + 75 ], "round": [ 38 ], "scheduled_at": [ - 3421 + 3467 ], "scheduled_eta": [ - 3421 + 3467 ], "stage": [ - 3510 + 3556 ], "team_1": [ - 3643 + 3689 ], "team_1_seed": [ 38 ], "team_2": [ - 3643 + 3689 ], "team_2_seed": [ 38 ], "tournament_stage_id": [ - 3818 + 3864 ], "tournament_team_id_1": [ - 3818 + 3864 ], "tournament_team_id_2": [ - 3818 + 3864 ], "__typename": [ - 70 + 75 ] }, "tournament_brackets_aggregate": { "aggregate": [ - 3429 + 3475 ], "nodes": [ - 3423 + 3469 ], "__typename": [ - 70 + 75 ] }, "tournament_brackets_aggregate_bool_exp": { "bool_and": [ - 3426 + 3472 ], "bool_or": [ - 3427 + 3473 ], "count": [ - 3428 + 3474 ], "__typename": [ - 70 + 75 ] }, "tournament_brackets_aggregate_bool_exp_bool_and": { "arguments": [ - 3448 + 3494 ], "distinct": [ 3 ], "filter": [ - 3434 + 3480 ], "predicate": [ 4 ], "__typename": [ - 70 + 75 ] }, "tournament_brackets_aggregate_bool_exp_bool_or": { "arguments": [ - 3449 + 3495 ], "distinct": [ 3 ], "filter": [ - 3434 + 3480 ], "predicate": [ 4 ], "__typename": [ - 70 + 75 ] }, "tournament_brackets_aggregate_bool_exp_count": { "arguments": [ - 3447 + 3493 ], "distinct": [ 3 ], "filter": [ - 3434 + 3480 ], "predicate": [ 39 ], "__typename": [ - 70 + 75 ] }, "tournament_brackets_aggregate_fields": { "avg": [ - 3432 + 3478 ], "count": [ 38, { "columns": [ - 3447, + 3493, "[tournament_brackets_select_column!]" ], "distinct": [ @@ -82125,83 +82954,83 @@ export default { } ], "max": [ - 3438 + 3484 ], "min": [ - 3440 + 3486 ], "stddev": [ - 3451 + 3497 ], "stddev_pop": [ - 3453 + 3499 ], "stddev_samp": [ - 3455 + 3501 ], "sum": [ - 3459 + 3505 ], "var_pop": [ - 3463 + 3509 ], "var_samp": [ - 3465 + 3511 ], "variance": [ - 3467 + 3513 ], "__typename": [ - 70 + 75 ] }, "tournament_brackets_aggregate_order_by": { "avg": [ - 3433 + 3479 ], "count": [ - 2011 + 2016 ], "max": [ - 3439 + 3485 ], "min": [ - 3441 + 3487 ], "stddev": [ - 3452 + 3498 ], "stddev_pop": [ - 3454 + 3500 ], "stddev_samp": [ - 3456 + 3502 ], "sum": [ - 3460 + 3506 ], "var_pop": [ - 3464 + 3510 ], "var_samp": [ - 3466 + 3512 ], "variance": [ - 3468 + 3514 ], "__typename": [ - 70 + 75 ] }, "tournament_brackets_arr_rel_insert_input": { "data": [ - 3437 + 3483 ], "on_conflict": [ - 3444 + 3490 ], "__typename": [ - 70 + 75 ] }, "tournament_brackets_avg_fields": { @@ -82221,128 +83050,128 @@ export default { 29 ], "__typename": [ - 70 + 75 ] }, "tournament_brackets_avg_order_by": { "group": [ - 2011 + 2016 ], "match_number": [ - 2011 + 2016 ], "round": [ - 2011 + 2016 ], "team_1_seed": [ - 2011 + 2016 ], "team_2_seed": [ - 2011 + 2016 ], "__typename": [ - 70 + 75 ] }, "tournament_brackets_bool_exp": { "_and": [ - 3434 + 3480 ], "_not": [ - 3434 + 3480 ], "_or": [ - 3434 + 3480 ], "bye": [ 4 ], "created_at": [ - 3422 + 3468 ], "feeding_brackets": [ - 3434 + 3480 ], "finished": [ 4 ], "group": [ - 2010 + 2015 ], "id": [ - 3820 + 3866 ], "loser_bracket": [ - 3434 + 3480 ], "loser_parent_bracket_id": [ - 3820 + 3866 ], "match": [ - 1835 + 1840 ], "match_id": [ - 3820 + 3866 ], "match_number": [ 39 ], "match_options_id": [ - 3820 + 3866 ], "options": [ - 1710 + 1715 ], "parent_bracket": [ - 3434 + 3480 ], "parent_bracket_id": [ - 3820 + 3866 ], "path": [ - 72 + 77 ], "round": [ 39 ], "scheduled_at": [ - 3422 + 3468 ], "scheduled_eta": [ - 3422 + 3468 ], "stage": [ - 3522 + 3568 ], "team_1": [ - 3652 + 3698 ], "team_1_seed": [ 39 ], "team_2": [ - 3652 + 3698 ], "team_2_seed": [ 39 ], "tournament_stage_id": [ - 3820 + 3866 ], "tournament_team_id_1": [ - 3820 + 3866 ], "tournament_team_id_2": [ - 3820 + 3866 ], "__typename": [ - 70 + 75 ] }, "tournament_brackets_constraint": {}, "tournament_brackets_inc_input": { "group": [ - 2009 + 2014 ], "match_number": [ 38 @@ -82357,7 +83186,7 @@ export default { 38 ], "__typename": [ - 70 + 75 ] }, "tournament_brackets_insert_input": { @@ -82365,120 +83194,120 @@ export default { 3 ], "created_at": [ - 3421 + 3467 ], "finished": [ 3 ], "group": [ - 2009 + 2014 ], "id": [ - 3818 + 3864 ], "loser_bracket": [ - 3443 + 3489 ], "loser_parent_bracket_id": [ - 3818 + 3864 ], "match": [ - 1844 + 1849 ], "match_id": [ - 3818 + 3864 ], "match_number": [ 38 ], "match_options_id": [ - 3818 + 3864 ], "options": [ - 1717 + 1722 ], "parent_bracket": [ - 3443 + 3489 ], "parent_bracket_id": [ - 3818 + 3864 ], "path": [ - 70 + 75 ], "round": [ 38 ], "scheduled_at": [ - 3421 + 3467 ], "scheduled_eta": [ - 3421 + 3467 ], "stage": [ - 3534 + 3580 ], "team_1": [ - 3661 + 3707 ], "team_1_seed": [ 38 ], "team_2": [ - 3661 + 3707 ], "team_2_seed": [ 38 ], "tournament_stage_id": [ - 3818 + 3864 ], "tournament_team_id_1": [ - 3818 + 3864 ], "tournament_team_id_2": [ - 3818 + 3864 ], "__typename": [ - 70 + 75 ] }, "tournament_brackets_max_fields": { "created_at": [ - 3421 + 3467 ], "group": [ - 2009 + 2014 ], "id": [ - 3818 + 3864 ], "loser_parent_bracket_id": [ - 3818 + 3864 ], "match_id": [ - 3818 + 3864 ], "match_number": [ 38 ], "match_options_id": [ - 3818 + 3864 ], "parent_bracket_id": [ - 3818 + 3864 ], "path": [ - 70 + 75 ], "round": [ 38 ], "scheduled_at": [ - 3421 + 3467 ], "scheduled_eta": [ - 3421 + 3467 ], "team_1_seed": [ 38 @@ -82487,110 +83316,110 @@ export default { 38 ], "tournament_stage_id": [ - 3818 + 3864 ], "tournament_team_id_1": [ - 3818 + 3864 ], "tournament_team_id_2": [ - 3818 + 3864 ], "__typename": [ - 70 + 75 ] }, "tournament_brackets_max_order_by": { "created_at": [ - 2011 + 2016 ], "group": [ - 2011 + 2016 ], "id": [ - 2011 + 2016 ], "loser_parent_bracket_id": [ - 2011 + 2016 ], "match_id": [ - 2011 + 2016 ], "match_number": [ - 2011 + 2016 ], "match_options_id": [ - 2011 + 2016 ], "parent_bracket_id": [ - 2011 + 2016 ], "path": [ - 2011 + 2016 ], "round": [ - 2011 + 2016 ], "scheduled_at": [ - 2011 + 2016 ], "scheduled_eta": [ - 2011 + 2016 ], "team_1_seed": [ - 2011 + 2016 ], "team_2_seed": [ - 2011 + 2016 ], "tournament_stage_id": [ - 2011 + 2016 ], "tournament_team_id_1": [ - 2011 + 2016 ], "tournament_team_id_2": [ - 2011 + 2016 ], "__typename": [ - 70 + 75 ] }, "tournament_brackets_min_fields": { "created_at": [ - 3421 + 3467 ], "group": [ - 2009 + 2014 ], "id": [ - 3818 + 3864 ], "loser_parent_bracket_id": [ - 3818 + 3864 ], "match_id": [ - 3818 + 3864 ], "match_number": [ 38 ], "match_options_id": [ - 3818 + 3864 ], "parent_bracket_id": [ - 3818 + 3864 ], "path": [ - 70 + 75 ], "round": [ 38 ], "scheduled_at": [ - 3421 + 3467 ], "scheduled_eta": [ - 3421 + 3467 ], "team_1_seed": [ 38 @@ -82599,72 +83428,72 @@ export default { 38 ], "tournament_stage_id": [ - 3818 + 3864 ], "tournament_team_id_1": [ - 3818 + 3864 ], "tournament_team_id_2": [ - 3818 + 3864 ], "__typename": [ - 70 + 75 ] }, "tournament_brackets_min_order_by": { "created_at": [ - 2011 + 2016 ], "group": [ - 2011 + 2016 ], "id": [ - 2011 + 2016 ], "loser_parent_bracket_id": [ - 2011 + 2016 ], "match_id": [ - 2011 + 2016 ], "match_number": [ - 2011 + 2016 ], "match_options_id": [ - 2011 + 2016 ], "parent_bracket_id": [ - 2011 + 2016 ], "path": [ - 2011 + 2016 ], "round": [ - 2011 + 2016 ], "scheduled_at": [ - 2011 + 2016 ], "scheduled_eta": [ - 2011 + 2016 ], "team_1_seed": [ - 2011 + 2016 ], "team_2_seed": [ - 2011 + 2016 ], "tournament_stage_id": [ - 2011 + 2016 ], "tournament_team_id_1": [ - 2011 + 2016 ], "tournament_team_id_2": [ - 2011 + 2016 ], "__typename": [ - 70 + 75 ] }, "tournament_brackets_mutation_response": { @@ -82672,129 +83501,129 @@ export default { 38 ], "returning": [ - 3423 + 3469 ], "__typename": [ - 70 + 75 ] }, "tournament_brackets_obj_rel_insert_input": { "data": [ - 3437 + 3483 ], "on_conflict": [ - 3444 + 3490 ], "__typename": [ - 70 + 75 ] }, "tournament_brackets_on_conflict": { "constraint": [ - 3435 + 3481 ], "update_columns": [ - 3461 + 3507 ], "where": [ - 3434 + 3480 ], "__typename": [ - 70 + 75 ] }, "tournament_brackets_order_by": { "bye": [ - 2011 + 2016 ], "created_at": [ - 2011 + 2016 ], "feeding_brackets_aggregate": [ - 3430 + 3476 ], "finished": [ - 2011 + 2016 ], "group": [ - 2011 + 2016 ], "id": [ - 2011 + 2016 ], "loser_bracket": [ - 3445 + 3491 ], "loser_parent_bracket_id": [ - 2011 + 2016 ], "match": [ - 1846 + 1851 ], "match_id": [ - 2011 + 2016 ], "match_number": [ - 2011 + 2016 ], "match_options_id": [ - 2011 + 2016 ], "options": [ - 1719 + 1724 ], "parent_bracket": [ - 3445 + 3491 ], "parent_bracket_id": [ - 2011 + 2016 ], "path": [ - 2011 + 2016 ], "round": [ - 2011 + 2016 ], "scheduled_at": [ - 2011 + 2016 ], "scheduled_eta": [ - 2011 + 2016 ], "stage": [ - 3536 + 3582 ], "team_1": [ - 3663 + 3709 ], "team_1_seed": [ - 2011 + 2016 ], "team_2": [ - 3663 + 3709 ], "team_2_seed": [ - 2011 + 2016 ], "tournament_stage_id": [ - 2011 + 2016 ], "tournament_team_id_1": [ - 2011 + 2016 ], "tournament_team_id_2": [ - 2011 + 2016 ], "__typename": [ - 70 + 75 ] }, "tournament_brackets_pk_columns_input": { "id": [ - 3818 + 3864 ], "__typename": [ - 70 + 75 ] }, "tournament_brackets_select_column": {}, @@ -82805,43 +83634,43 @@ export default { 3 ], "created_at": [ - 3421 + 3467 ], "finished": [ 3 ], "group": [ - 2009 + 2014 ], "id": [ - 3818 + 3864 ], "loser_parent_bracket_id": [ - 3818 + 3864 ], "match_id": [ - 3818 + 3864 ], "match_number": [ 38 ], "match_options_id": [ - 3818 + 3864 ], "parent_bracket_id": [ - 3818 + 3864 ], "path": [ - 70 + 75 ], "round": [ 38 ], "scheduled_at": [ - 3421 + 3467 ], "scheduled_eta": [ - 3421 + 3467 ], "team_1_seed": [ 38 @@ -82850,16 +83679,16 @@ export default { 38 ], "tournament_stage_id": [ - 3818 + 3864 ], "tournament_team_id_1": [ - 3818 + 3864 ], "tournament_team_id_2": [ - 3818 + 3864 ], "__typename": [ - 70 + 75 ] }, "tournament_brackets_stddev_fields": { @@ -82879,27 +83708,27 @@ export default { 29 ], "__typename": [ - 70 + 75 ] }, "tournament_brackets_stddev_order_by": { "group": [ - 2011 + 2016 ], "match_number": [ - 2011 + 2016 ], "round": [ - 2011 + 2016 ], "team_1_seed": [ - 2011 + 2016 ], "team_2_seed": [ - 2011 + 2016 ], "__typename": [ - 70 + 75 ] }, "tournament_brackets_stddev_pop_fields": { @@ -82919,27 +83748,27 @@ export default { 29 ], "__typename": [ - 70 + 75 ] }, "tournament_brackets_stddev_pop_order_by": { "group": [ - 2011 + 2016 ], "match_number": [ - 2011 + 2016 ], "round": [ - 2011 + 2016 ], "team_1_seed": [ - 2011 + 2016 ], "team_2_seed": [ - 2011 + 2016 ], "__typename": [ - 70 + 75 ] }, "tournament_brackets_stddev_samp_fields": { @@ -82959,38 +83788,38 @@ export default { 29 ], "__typename": [ - 70 + 75 ] }, "tournament_brackets_stddev_samp_order_by": { "group": [ - 2011 + 2016 ], "match_number": [ - 2011 + 2016 ], "round": [ - 2011 + 2016 ], "team_1_seed": [ - 2011 + 2016 ], "team_2_seed": [ - 2011 + 2016 ], "__typename": [ - 70 + 75 ] }, "tournament_brackets_stream_cursor_input": { "initial_value": [ - 3458 + 3504 ], "ordering": [ - 224 + 229 ], "__typename": [ - 70 + 75 ] }, "tournament_brackets_stream_cursor_value_input": { @@ -82998,43 +83827,43 @@ export default { 3 ], "created_at": [ - 3421 + 3467 ], "finished": [ 3 ], "group": [ - 2009 + 2014 ], "id": [ - 3818 + 3864 ], "loser_parent_bracket_id": [ - 3818 + 3864 ], "match_id": [ - 3818 + 3864 ], "match_number": [ 38 ], "match_options_id": [ - 3818 + 3864 ], "parent_bracket_id": [ - 3818 + 3864 ], "path": [ - 70 + 75 ], "round": [ 38 ], "scheduled_at": [ - 3421 + 3467 ], "scheduled_eta": [ - 3421 + 3467 ], "team_1_seed": [ 38 @@ -83043,21 +83872,21 @@ export default { 38 ], "tournament_stage_id": [ - 3818 + 3864 ], "tournament_team_id_1": [ - 3818 + 3864 ], "tournament_team_id_2": [ - 3818 + 3864 ], "__typename": [ - 70 + 75 ] }, "tournament_brackets_sum_fields": { "group": [ - 2009 + 2014 ], "match_number": [ 38 @@ -83072,42 +83901,42 @@ export default { 38 ], "__typename": [ - 70 + 75 ] }, "tournament_brackets_sum_order_by": { "group": [ - 2011 + 2016 ], "match_number": [ - 2011 + 2016 ], "round": [ - 2011 + 2016 ], "team_1_seed": [ - 2011 + 2016 ], "team_2_seed": [ - 2011 + 2016 ], "__typename": [ - 70 + 75 ] }, "tournament_brackets_update_column": {}, "tournament_brackets_updates": { "_inc": [ - 3436 + 3482 ], "_set": [ - 3450 + 3496 ], "where": [ - 3434 + 3480 ], "__typename": [ - 70 + 75 ] }, "tournament_brackets_var_pop_fields": { @@ -83127,27 +83956,27 @@ export default { 29 ], "__typename": [ - 70 + 75 ] }, "tournament_brackets_var_pop_order_by": { "group": [ - 2011 + 2016 ], "match_number": [ - 2011 + 2016 ], "round": [ - 2011 + 2016 ], "team_1_seed": [ - 2011 + 2016 ], "team_2_seed": [ - 2011 + 2016 ], "__typename": [ - 70 + 75 ] }, "tournament_brackets_var_samp_fields": { @@ -83167,27 +83996,27 @@ export default { 29 ], "__typename": [ - 70 + 75 ] }, "tournament_brackets_var_samp_order_by": { "group": [ - 2011 + 2016 ], "match_number": [ - 2011 + 2016 ], "round": [ - 2011 + 2016 ], "team_1_seed": [ - 2011 + 2016 ], "team_2_seed": [ - 2011 + 2016 ], "__typename": [ - 70 + 75 ] }, "tournament_brackets_variance_fields": { @@ -83207,91 +84036,91 @@ export default { 29 ], "__typename": [ - 70 + 75 ] }, "tournament_brackets_variance_order_by": { "group": [ - 2011 + 2016 ], "match_number": [ - 2011 + 2016 ], "round": [ - 2011 + 2016 ], "team_1_seed": [ - 2011 + 2016 ], "team_2_seed": [ - 2011 + 2016 ], "__typename": [ - 70 + 75 ] }, "tournament_organizers": { "organizer": [ - 2878 + 2915 ], "steam_id": [ - 169 + 174 ], "tournament": [ - 3772 + 3818 ], "tournament_id": [ - 3818 + 3864 ], "__typename": [ - 70 + 75 ] }, "tournament_organizers_aggregate": { "aggregate": [ - 3473 + 3519 ], "nodes": [ - 3469 + 3515 ], "__typename": [ - 70 + 75 ] }, "tournament_organizers_aggregate_bool_exp": { "count": [ - 3472 + 3518 ], "__typename": [ - 70 + 75 ] }, "tournament_organizers_aggregate_bool_exp_count": { "arguments": [ - 3490 + 3536 ], "distinct": [ 3 ], "filter": [ - 3478 + 3524 ], "predicate": [ 39 ], "__typename": [ - 70 + 75 ] }, "tournament_organizers_aggregate_fields": { "avg": [ - 3476 + 3522 ], "count": [ 38, { "columns": [ - 3490, + 3536, "[tournament_organizers_select_column!]" ], "distinct": [ @@ -83300,83 +84129,83 @@ export default { } ], "max": [ - 3482 + 3528 ], "min": [ - 3484 + 3530 ], "stddev": [ - 3492 + 3538 ], "stddev_pop": [ - 3494 + 3540 ], "stddev_samp": [ - 3496 + 3542 ], "sum": [ - 3500 + 3546 ], "var_pop": [ - 3504 + 3550 ], "var_samp": [ - 3506 + 3552 ], "variance": [ - 3508 + 3554 ], "__typename": [ - 70 + 75 ] }, "tournament_organizers_aggregate_order_by": { "avg": [ - 3477 + 3523 ], "count": [ - 2011 + 2016 ], "max": [ - 3483 + 3529 ], "min": [ - 3485 + 3531 ], "stddev": [ - 3493 + 3539 ], "stddev_pop": [ - 3495 + 3541 ], "stddev_samp": [ - 3497 + 3543 ], "sum": [ - 3501 + 3547 ], "var_pop": [ - 3505 + 3551 ], "var_samp": [ - 3507 + 3553 ], "variance": [ - 3509 + 3555 ], "__typename": [ - 70 + 75 ] }, "tournament_organizers_arr_rel_insert_input": { "data": [ - 3481 + 3527 ], "on_conflict": [ - 3487 + 3533 ], "__typename": [ - 70 + 75 ] }, "tournament_organizers_avg_fields": { @@ -83384,111 +84213,111 @@ export default { 29 ], "__typename": [ - 70 + 75 ] }, "tournament_organizers_avg_order_by": { "steam_id": [ - 2011 + 2016 ], "__typename": [ - 70 + 75 ] }, "tournament_organizers_bool_exp": { "_and": [ - 3478 + 3524 ], "_not": [ - 3478 + 3524 ], "_or": [ - 3478 + 3524 ], "organizer": [ - 2882 + 2919 ], "steam_id": [ - 171 + 176 ], "tournament": [ - 3783 + 3829 ], "tournament_id": [ - 3820 + 3866 ], "__typename": [ - 70 + 75 ] }, "tournament_organizers_constraint": {}, "tournament_organizers_inc_input": { "steam_id": [ - 169 + 174 ], "__typename": [ - 70 + 75 ] }, "tournament_organizers_insert_input": { "organizer": [ - 2889 + 2926 ], "steam_id": [ - 169 + 174 ], "tournament": [ - 3792 + 3838 ], "tournament_id": [ - 3818 + 3864 ], "__typename": [ - 70 + 75 ] }, "tournament_organizers_max_fields": { "steam_id": [ - 169 + 174 ], "tournament_id": [ - 3818 + 3864 ], "__typename": [ - 70 + 75 ] }, "tournament_organizers_max_order_by": { "steam_id": [ - 2011 + 2016 ], "tournament_id": [ - 2011 + 2016 ], "__typename": [ - 70 + 75 ] }, "tournament_organizers_min_fields": { "steam_id": [ - 169 + 174 ], "tournament_id": [ - 3818 + 3864 ], "__typename": [ - 70 + 75 ] }, "tournament_organizers_min_order_by": { "steam_id": [ - 2011 + 2016 ], "tournament_id": [ - 2011 + 2016 ], "__typename": [ - 70 + 75 ] }, "tournament_organizers_mutation_response": { @@ -83496,64 +84325,64 @@ export default { 38 ], "returning": [ - 3469 + 3515 ], "__typename": [ - 70 + 75 ] }, "tournament_organizers_on_conflict": { "constraint": [ - 3479 + 3525 ], "update_columns": [ - 3502 + 3548 ], "where": [ - 3478 + 3524 ], "__typename": [ - 70 + 75 ] }, "tournament_organizers_order_by": { "organizer": [ - 2891 + 2928 ], "steam_id": [ - 2011 + 2016 ], "tournament": [ - 3794 + 3840 ], "tournament_id": [ - 2011 + 2016 ], "__typename": [ - 70 + 75 ] }, "tournament_organizers_pk_columns_input": { "steam_id": [ - 169 + 174 ], "tournament_id": [ - 3818 + 3864 ], "__typename": [ - 70 + 75 ] }, "tournament_organizers_select_column": {}, "tournament_organizers_set_input": { "steam_id": [ - 169 + 174 ], "tournament_id": [ - 3818 + 3864 ], "__typename": [ - 70 + 75 ] }, "tournament_organizers_stddev_fields": { @@ -83561,15 +84390,15 @@ export default { 29 ], "__typename": [ - 70 + 75 ] }, "tournament_organizers_stddev_order_by": { "steam_id": [ - 2011 + 2016 ], "__typename": [ - 70 + 75 ] }, "tournament_organizers_stddev_pop_fields": { @@ -83577,15 +84406,15 @@ export default { 29 ], "__typename": [ - 70 + 75 ] }, "tournament_organizers_stddev_pop_order_by": { "steam_id": [ - 2011 + 2016 ], "__typename": [ - 70 + 75 ] }, "tournament_organizers_stddev_samp_fields": { @@ -83593,68 +84422,68 @@ export default { 29 ], "__typename": [ - 70 + 75 ] }, "tournament_organizers_stddev_samp_order_by": { "steam_id": [ - 2011 + 2016 ], "__typename": [ - 70 + 75 ] }, "tournament_organizers_stream_cursor_input": { "initial_value": [ - 3499 + 3545 ], "ordering": [ - 224 + 229 ], "__typename": [ - 70 + 75 ] }, "tournament_organizers_stream_cursor_value_input": { "steam_id": [ - 169 + 174 ], "tournament_id": [ - 3818 + 3864 ], "__typename": [ - 70 + 75 ] }, "tournament_organizers_sum_fields": { "steam_id": [ - 169 + 174 ], "__typename": [ - 70 + 75 ] }, "tournament_organizers_sum_order_by": { "steam_id": [ - 2011 + 2016 ], "__typename": [ - 70 + 75 ] }, "tournament_organizers_update_column": {}, "tournament_organizers_updates": { "_inc": [ - 3480 + 3526 ], "_set": [ - 3491 + 3537 ], "where": [ - 3478 + 3524 ], "__typename": [ - 70 + 75 ] }, "tournament_organizers_var_pop_fields": { @@ -83662,15 +84491,15 @@ export default { 29 ], "__typename": [ - 70 + 75 ] }, "tournament_organizers_var_pop_order_by": { "steam_id": [ - 2011 + 2016 ], "__typename": [ - 70 + 75 ] }, "tournament_organizers_var_samp_fields": { @@ -83678,15 +84507,15 @@ export default { 29 ], "__typename": [ - 70 + 75 ] }, "tournament_organizers_var_samp_order_by": { "steam_id": [ - 2011 + 2016 ], "__typename": [ - 70 + 75 ] }, "tournament_organizers_variance_fields": { @@ -83694,23 +84523,23 @@ export default { 29 ], "__typename": [ - 70 + 75 ] }, "tournament_organizers_variance_order_by": { "steam_id": [ - 2011 + 2016 ], "__typename": [ - 70 + 75 ] }, "tournament_stages": { "brackets": [ - 3423, + 3469, { "distinct_on": [ - 3447, + 3493, "[tournament_brackets_select_column!]" ], "limit": [ @@ -83720,19 +84549,19 @@ export default { 38 ], "order_by": [ - 3445, + 3491, "[tournament_brackets_order_by!]" ], "where": [ - 3434 + 3480 ] } ], "brackets_aggregate": [ - 3424, + 3470, { "distinct_on": [ - 3447, + 3493, "[tournament_brackets_select_column!]" ], "limit": [ @@ -83742,11 +84571,11 @@ export default { 38 ], "order_by": [ - 3445, + 3491, "[tournament_brackets_order_by!]" ], "where": [ - 3434 + 3480 ] } ], @@ -83757,16 +84586,16 @@ export default { 38 ], "e_tournament_stage_type": [ - 982 + 987 ], "groups": [ 38 ], "id": [ - 3818 + 3864 ], "match_options_id": [ - 3818 + 3864 ], "max_teams": [ 38 @@ -83775,16 +84604,16 @@ export default { 38 ], "options": [ - 1706 + 1711 ], "order": [ 38 ], "results": [ - 4407, + 4453, { "distinct_on": [ - 4439, + 4485, "[v_team_stage_results_select_column!]" ], "limit": [ @@ -83794,19 +84623,19 @@ export default { 38 ], "order_by": [ - 4437, + 4483, "[v_team_stage_results_order_by!]" ], "where": [ - 4426 + 4472 ] } ], "results_aggregate": [ - 4408, + 4454, { "distinct_on": [ - 4439, + 4485, "[v_team_stage_results_select_column!]" ], "limit": [ @@ -83816,19 +84645,19 @@ export default { 38 ], "order_by": [ - 4437, + 4483, "[v_team_stage_results_order_by!]" ], "where": [ - 4426 + 4472 ] } ], "settings": [ - 1235, + 1240, { "path": [ - 70 + 75 ] } ], @@ -83836,103 +84665,103 @@ export default { 3 ], "tournament": [ - 3772 + 3818 ], "tournament_id": [ - 3818 + 3864 ], "type": [ - 987 + 992 ], "__typename": [ - 70 + 75 ] }, "tournament_stages_aggregate": { "aggregate": [ - 3516 + 3562 ], "nodes": [ - 3510 + 3556 ], "__typename": [ - 70 + 75 ] }, "tournament_stages_aggregate_bool_exp": { "bool_and": [ - 3513 + 3559 ], "bool_or": [ - 3514 + 3560 ], "count": [ - 3515 + 3561 ], "__typename": [ - 70 + 75 ] }, "tournament_stages_aggregate_bool_exp_bool_and": { "arguments": [ - 3540 + 3586 ], "distinct": [ 3 ], "filter": [ - 3522 + 3568 ], "predicate": [ 4 ], "__typename": [ - 70 + 75 ] }, "tournament_stages_aggregate_bool_exp_bool_or": { "arguments": [ - 3541 + 3587 ], "distinct": [ 3 ], "filter": [ - 3522 + 3568 ], "predicate": [ 4 ], "__typename": [ - 70 + 75 ] }, "tournament_stages_aggregate_bool_exp_count": { "arguments": [ - 3539 + 3585 ], "distinct": [ 3 ], "filter": [ - 3522 + 3568 ], "predicate": [ 39 ], "__typename": [ - 70 + 75 ] }, "tournament_stages_aggregate_fields": { "avg": [ - 3520 + 3566 ], "count": [ 38, { "columns": [ - 3539, + 3585, "[tournament_stages_select_column!]" ], "distinct": [ @@ -83941,91 +84770,91 @@ export default { } ], "max": [ - 3529 + 3575 ], "min": [ - 3531 + 3577 ], "stddev": [ - 3543 + 3589 ], "stddev_pop": [ - 3545 + 3591 ], "stddev_samp": [ - 3547 + 3593 ], "sum": [ - 3551 + 3597 ], "var_pop": [ - 3555 + 3601 ], "var_samp": [ - 3557 + 3603 ], "variance": [ - 3559 + 3605 ], "__typename": [ - 70 + 75 ] }, "tournament_stages_aggregate_order_by": { "avg": [ - 3521 + 3567 ], "count": [ - 2011 + 2016 ], "max": [ - 3530 + 3576 ], "min": [ - 3532 + 3578 ], "stddev": [ - 3544 + 3590 ], "stddev_pop": [ - 3546 + 3592 ], "stddev_samp": [ - 3548 + 3594 ], "sum": [ - 3552 + 3598 ], "var_pop": [ - 3556 + 3602 ], "var_samp": [ - 3558 + 3604 ], "variance": [ - 3560 + 3606 ], "__typename": [ - 70 + 75 ] }, "tournament_stages_append_input": { "settings": [ - 1235 + 1240 ], "__typename": [ - 70 + 75 ] }, "tournament_stages_arr_rel_insert_input": { "data": [ - 3528 + 3574 ], "on_conflict": [ - 3535 + 3581 ], "__typename": [ - 70 + 75 ] }, "tournament_stages_avg_fields": { @@ -84048,47 +84877,47 @@ export default { 29 ], "__typename": [ - 70 + 75 ] }, "tournament_stages_avg_order_by": { "decider_best_of": [ - 2011 + 2016 ], "default_best_of": [ - 2011 + 2016 ], "groups": [ - 2011 + 2016 ], "max_teams": [ - 2011 + 2016 ], "min_teams": [ - 2011 + 2016 ], "order": [ - 2011 + 2016 ], "__typename": [ - 70 + 75 ] }, "tournament_stages_bool_exp": { "_and": [ - 3522 + 3568 ], "_not": [ - 3522 + 3568 ], "_or": [ - 3522 + 3568 ], "brackets": [ - 3434 + 3480 ], "brackets_aggregate": [ - 3425 + 3471 ], "decider_best_of": [ 39 @@ -84097,16 +84926,16 @@ export default { 39 ], "e_tournament_stage_type": [ - 985 + 990 ], "groups": [ 39 ], "id": [ - 3820 + 3866 ], "match_options_id": [ - 3820 + 3866 ], "max_teams": [ 39 @@ -84115,43 +84944,43 @@ export default { 39 ], "options": [ - 1710 + 1715 ], "order": [ 39 ], "results": [ - 4426 + 4472 ], "results_aggregate": [ - 4409 + 4455 ], "settings": [ - 1237 + 1242 ], "third_place_match": [ 4 ], "tournament": [ - 3783 + 3829 ], "tournament_id": [ - 3820 + 3866 ], "type": [ - 988 + 993 ], "__typename": [ - 70 + 75 ] }, "tournament_stages_constraint": {}, "tournament_stages_delete_at_path_input": { "settings": [ - 70 + 75 ], "__typename": [ - 70 + 75 ] }, "tournament_stages_delete_elem_input": { @@ -84159,15 +84988,15 @@ export default { 38 ], "__typename": [ - 70 + 75 ] }, "tournament_stages_delete_key_input": { "settings": [ - 70 + 75 ], "__typename": [ - 70 + 75 ] }, "tournament_stages_inc_input": { @@ -84190,12 +85019,12 @@ export default { 38 ], "__typename": [ - 70 + 75 ] }, "tournament_stages_insert_input": { "brackets": [ - 3431 + 3477 ], "decider_best_of": [ 38 @@ -84204,16 +85033,16 @@ export default { 38 ], "e_tournament_stage_type": [ - 993 + 998 ], "groups": [ 38 ], "id": [ - 3818 + 3864 ], "match_options_id": [ - 3818 + 3864 ], "max_teams": [ 38 @@ -84222,31 +85051,31 @@ export default { 38 ], "options": [ - 1717 + 1722 ], "order": [ 38 ], "results": [ - 4423 + 4469 ], "settings": [ - 1235 + 1240 ], "third_place_match": [ 3 ], "tournament": [ - 3792 + 3838 ], "tournament_id": [ - 3818 + 3864 ], "type": [ - 987 + 992 ], "__typename": [ - 70 + 75 ] }, "tournament_stages_max_fields": { @@ -84260,10 +85089,10 @@ export default { 38 ], "id": [ - 3818 + 3864 ], "match_options_id": [ - 3818 + 3864 ], "max_teams": [ 38 @@ -84275,42 +85104,42 @@ export default { 38 ], "tournament_id": [ - 3818 + 3864 ], "__typename": [ - 70 + 75 ] }, "tournament_stages_max_order_by": { "decider_best_of": [ - 2011 + 2016 ], "default_best_of": [ - 2011 + 2016 ], "groups": [ - 2011 + 2016 ], "id": [ - 2011 + 2016 ], "match_options_id": [ - 2011 + 2016 ], "max_teams": [ - 2011 + 2016 ], "min_teams": [ - 2011 + 2016 ], "order": [ - 2011 + 2016 ], "tournament_id": [ - 2011 + 2016 ], "__typename": [ - 70 + 75 ] }, "tournament_stages_min_fields": { @@ -84324,10 +85153,10 @@ export default { 38 ], "id": [ - 3818 + 3864 ], "match_options_id": [ - 3818 + 3864 ], "max_teams": [ 38 @@ -84339,42 +85168,42 @@ export default { 38 ], "tournament_id": [ - 3818 + 3864 ], "__typename": [ - 70 + 75 ] }, "tournament_stages_min_order_by": { "decider_best_of": [ - 2011 + 2016 ], "default_best_of": [ - 2011 + 2016 ], "groups": [ - 2011 + 2016 ], "id": [ - 2011 + 2016 ], "match_options_id": [ - 2011 + 2016 ], "max_teams": [ - 2011 + 2016 ], "min_teams": [ - 2011 + 2016 ], "order": [ - 2011 + 2016 ], "tournament_id": [ - 2011 + 2016 ], "__typename": [ - 70 + 75 ] }, "tournament_stages_mutation_response": { @@ -84382,107 +85211,107 @@ export default { 38 ], "returning": [ - 3510 + 3556 ], "__typename": [ - 70 + 75 ] }, "tournament_stages_obj_rel_insert_input": { "data": [ - 3528 + 3574 ], "on_conflict": [ - 3535 + 3581 ], "__typename": [ - 70 + 75 ] }, "tournament_stages_on_conflict": { "constraint": [ - 3523 + 3569 ], "update_columns": [ - 3553 + 3599 ], "where": [ - 3522 + 3568 ], "__typename": [ - 70 + 75 ] }, "tournament_stages_order_by": { "brackets_aggregate": [ - 3430 + 3476 ], "decider_best_of": [ - 2011 + 2016 ], "default_best_of": [ - 2011 + 2016 ], "e_tournament_stage_type": [ - 995 + 1000 ], "groups": [ - 2011 + 2016 ], "id": [ - 2011 + 2016 ], "match_options_id": [ - 2011 + 2016 ], "max_teams": [ - 2011 + 2016 ], "min_teams": [ - 2011 + 2016 ], "options": [ - 1719 + 1724 ], "order": [ - 2011 + 2016 ], "results_aggregate": [ - 4422 + 4468 ], "settings": [ - 2011 + 2016 ], "third_place_match": [ - 2011 + 2016 ], "tournament": [ - 3794 + 3840 ], "tournament_id": [ - 2011 + 2016 ], "type": [ - 2011 + 2016 ], "__typename": [ - 70 + 75 ] }, "tournament_stages_pk_columns_input": { "id": [ - 3818 + 3864 ], "__typename": [ - 70 + 75 ] }, "tournament_stages_prepend_input": { "settings": [ - 1235 + 1240 ], "__typename": [ - 70 + 75 ] }, "tournament_stages_select_column": {}, @@ -84499,10 +85328,10 @@ export default { 38 ], "id": [ - 3818 + 3864 ], "match_options_id": [ - 3818 + 3864 ], "max_teams": [ 38 @@ -84514,19 +85343,19 @@ export default { 38 ], "settings": [ - 1235 + 1240 ], "third_place_match": [ 3 ], "tournament_id": [ - 3818 + 3864 ], "type": [ - 987 + 992 ], "__typename": [ - 70 + 75 ] }, "tournament_stages_stddev_fields": { @@ -84549,30 +85378,30 @@ export default { 29 ], "__typename": [ - 70 + 75 ] }, "tournament_stages_stddev_order_by": { "decider_best_of": [ - 2011 + 2016 ], "default_best_of": [ - 2011 + 2016 ], "groups": [ - 2011 + 2016 ], "max_teams": [ - 2011 + 2016 ], "min_teams": [ - 2011 + 2016 ], "order": [ - 2011 + 2016 ], "__typename": [ - 70 + 75 ] }, "tournament_stages_stddev_pop_fields": { @@ -84595,30 +85424,30 @@ export default { 29 ], "__typename": [ - 70 + 75 ] }, "tournament_stages_stddev_pop_order_by": { "decider_best_of": [ - 2011 + 2016 ], "default_best_of": [ - 2011 + 2016 ], "groups": [ - 2011 + 2016 ], "max_teams": [ - 2011 + 2016 ], "min_teams": [ - 2011 + 2016 ], "order": [ - 2011 + 2016 ], "__typename": [ - 70 + 75 ] }, "tournament_stages_stddev_samp_fields": { @@ -84641,41 +85470,41 @@ export default { 29 ], "__typename": [ - 70 + 75 ] }, "tournament_stages_stddev_samp_order_by": { "decider_best_of": [ - 2011 + 2016 ], "default_best_of": [ - 2011 + 2016 ], "groups": [ - 2011 + 2016 ], "max_teams": [ - 2011 + 2016 ], "min_teams": [ - 2011 + 2016 ], "order": [ - 2011 + 2016 ], "__typename": [ - 70 + 75 ] }, "tournament_stages_stream_cursor_input": { "initial_value": [ - 3550 + 3596 ], "ordering": [ - 224 + 229 ], "__typename": [ - 70 + 75 ] }, "tournament_stages_stream_cursor_value_input": { @@ -84689,10 +85518,10 @@ export default { 38 ], "id": [ - 3818 + 3864 ], "match_options_id": [ - 3818 + 3864 ], "max_teams": [ 38 @@ -84704,19 +85533,19 @@ export default { 38 ], "settings": [ - 1235 + 1240 ], "third_place_match": [ 3 ], "tournament_id": [ - 3818 + 3864 ], "type": [ - 987 + 992 ], "__typename": [ - 70 + 75 ] }, "tournament_stages_sum_fields": { @@ -84739,60 +85568,60 @@ export default { 38 ], "__typename": [ - 70 + 75 ] }, "tournament_stages_sum_order_by": { "decider_best_of": [ - 2011 + 2016 ], "default_best_of": [ - 2011 + 2016 ], "groups": [ - 2011 + 2016 ], "max_teams": [ - 2011 + 2016 ], "min_teams": [ - 2011 + 2016 ], "order": [ - 2011 + 2016 ], "__typename": [ - 70 + 75 ] }, "tournament_stages_update_column": {}, "tournament_stages_updates": { "_append": [ - 3518 + 3564 ], "_delete_at_path": [ - 3524 + 3570 ], "_delete_elem": [ - 3525 + 3571 ], "_delete_key": [ - 3526 + 3572 ], "_inc": [ - 3527 + 3573 ], "_prepend": [ - 3538 + 3584 ], "_set": [ - 3542 + 3588 ], "where": [ - 3522 + 3568 ], "__typename": [ - 70 + 75 ] }, "tournament_stages_var_pop_fields": { @@ -84815,30 +85644,30 @@ export default { 29 ], "__typename": [ - 70 + 75 ] }, "tournament_stages_var_pop_order_by": { "decider_best_of": [ - 2011 + 2016 ], "default_best_of": [ - 2011 + 2016 ], "groups": [ - 2011 + 2016 ], "max_teams": [ - 2011 + 2016 ], "min_teams": [ - 2011 + 2016 ], "order": [ - 2011 + 2016 ], "__typename": [ - 70 + 75 ] }, "tournament_stages_var_samp_fields": { @@ -84861,30 +85690,30 @@ export default { 29 ], "__typename": [ - 70 + 75 ] }, "tournament_stages_var_samp_order_by": { "decider_best_of": [ - 2011 + 2016 ], "default_best_of": [ - 2011 + 2016 ], "groups": [ - 2011 + 2016 ], "max_teams": [ - 2011 + 2016 ], "min_teams": [ - 2011 + 2016 ], "order": [ - 2011 + 2016 ], "__typename": [ - 70 + 75 ] }, "tournament_stages_variance_fields": { @@ -84907,106 +85736,106 @@ export default { 29 ], "__typename": [ - 70 + 75 ] }, "tournament_stages_variance_order_by": { "decider_best_of": [ - 2011 + 2016 ], "default_best_of": [ - 2011 + 2016 ], "groups": [ - 2011 + 2016 ], "max_teams": [ - 2011 + 2016 ], "min_teams": [ - 2011 + 2016 ], "order": [ - 2011 + 2016 ], "__typename": [ - 70 + 75 ] }, "tournament_team_invites": { "created_at": [ - 3421 + 3467 ], "id": [ - 3818 + 3864 ], "invited_by": [ - 2878 + 2915 ], "invited_by_player_steam_id": [ - 169 + 174 ], "player": [ - 2878 + 2915 ], "steam_id": [ - 169 + 174 ], "team": [ - 3643 + 3689 ], "tournament_team_id": [ - 3818 + 3864 ], "__typename": [ - 70 + 75 ] }, "tournament_team_invites_aggregate": { "aggregate": [ - 3565 + 3611 ], "nodes": [ - 3561 + 3607 ], "__typename": [ - 70 + 75 ] }, "tournament_team_invites_aggregate_bool_exp": { "count": [ - 3564 + 3610 ], "__typename": [ - 70 + 75 ] }, "tournament_team_invites_aggregate_bool_exp_count": { "arguments": [ - 3582 + 3628 ], "distinct": [ 3 ], "filter": [ - 3570 + 3616 ], "predicate": [ 39 ], "__typename": [ - 70 + 75 ] }, "tournament_team_invites_aggregate_fields": { "avg": [ - 3568 + 3614 ], "count": [ 38, { "columns": [ - 3582, + 3628, "[tournament_team_invites_select_column!]" ], "distinct": [ @@ -85015,83 +85844,83 @@ export default { } ], "max": [ - 3574 + 3620 ], "min": [ - 3576 + 3622 ], "stddev": [ - 3584 + 3630 ], "stddev_pop": [ - 3586 + 3632 ], "stddev_samp": [ - 3588 + 3634 ], "sum": [ - 3592 + 3638 ], "var_pop": [ - 3596 + 3642 ], "var_samp": [ - 3598 + 3644 ], "variance": [ - 3600 + 3646 ], "__typename": [ - 70 + 75 ] }, "tournament_team_invites_aggregate_order_by": { "avg": [ - 3569 + 3615 ], "count": [ - 2011 + 2016 ], "max": [ - 3575 + 3621 ], "min": [ - 3577 + 3623 ], "stddev": [ - 3585 + 3631 ], "stddev_pop": [ - 3587 + 3633 ], "stddev_samp": [ - 3589 + 3635 ], "sum": [ - 3593 + 3639 ], "var_pop": [ - 3597 + 3643 ], "var_samp": [ - 3599 + 3645 ], "variance": [ - 3601 + 3647 ], "__typename": [ - 70 + 75 ] }, "tournament_team_invites_arr_rel_insert_input": { "data": [ - 3573 + 3619 ], "on_conflict": [ - 3579 + 3625 ], "__typename": [ - 70 + 75 ] }, "tournament_team_invites_avg_fields": { @@ -85102,177 +85931,177 @@ export default { 29 ], "__typename": [ - 70 + 75 ] }, "tournament_team_invites_avg_order_by": { "invited_by_player_steam_id": [ - 2011 + 2016 ], "steam_id": [ - 2011 + 2016 ], "__typename": [ - 70 + 75 ] }, "tournament_team_invites_bool_exp": { "_and": [ - 3570 + 3616 ], "_not": [ - 3570 + 3616 ], "_or": [ - 3570 + 3616 ], "created_at": [ - 3422 + 3468 ], "id": [ - 3820 + 3866 ], "invited_by": [ - 2882 + 2919 ], "invited_by_player_steam_id": [ - 171 + 176 ], "player": [ - 2882 + 2919 ], "steam_id": [ - 171 + 176 ], "team": [ - 3652 + 3698 ], "tournament_team_id": [ - 3820 + 3866 ], "__typename": [ - 70 + 75 ] }, "tournament_team_invites_constraint": {}, "tournament_team_invites_inc_input": { "invited_by_player_steam_id": [ - 169 + 174 ], "steam_id": [ - 169 + 174 ], "__typename": [ - 70 + 75 ] }, "tournament_team_invites_insert_input": { "created_at": [ - 3421 + 3467 ], "id": [ - 3818 + 3864 ], "invited_by": [ - 2889 + 2926 ], "invited_by_player_steam_id": [ - 169 + 174 ], "player": [ - 2889 + 2926 ], "steam_id": [ - 169 + 174 ], "team": [ - 3661 + 3707 ], "tournament_team_id": [ - 3818 + 3864 ], "__typename": [ - 70 + 75 ] }, "tournament_team_invites_max_fields": { "created_at": [ - 3421 + 3467 ], "id": [ - 3818 + 3864 ], "invited_by_player_steam_id": [ - 169 + 174 ], "steam_id": [ - 169 + 174 ], "tournament_team_id": [ - 3818 + 3864 ], "__typename": [ - 70 + 75 ] }, "tournament_team_invites_max_order_by": { "created_at": [ - 2011 + 2016 ], "id": [ - 2011 + 2016 ], "invited_by_player_steam_id": [ - 2011 + 2016 ], "steam_id": [ - 2011 + 2016 ], "tournament_team_id": [ - 2011 + 2016 ], "__typename": [ - 70 + 75 ] }, "tournament_team_invites_min_fields": { "created_at": [ - 3421 + 3467 ], "id": [ - 3818 + 3864 ], "invited_by_player_steam_id": [ - 169 + 174 ], "steam_id": [ - 169 + 174 ], "tournament_team_id": [ - 3818 + 3864 ], "__typename": [ - 70 + 75 ] }, "tournament_team_invites_min_order_by": { "created_at": [ - 2011 + 2016 ], "id": [ - 2011 + 2016 ], "invited_by_player_steam_id": [ - 2011 + 2016 ], "steam_id": [ - 2011 + 2016 ], "tournament_team_id": [ - 2011 + 2016 ], "__typename": [ - 70 + 75 ] }, "tournament_team_invites_mutation_response": { @@ -85280,82 +86109,82 @@ export default { 38 ], "returning": [ - 3561 + 3607 ], "__typename": [ - 70 + 75 ] }, "tournament_team_invites_on_conflict": { "constraint": [ - 3571 + 3617 ], "update_columns": [ - 3594 + 3640 ], "where": [ - 3570 + 3616 ], "__typename": [ - 70 + 75 ] }, "tournament_team_invites_order_by": { "created_at": [ - 2011 + 2016 ], "id": [ - 2011 + 2016 ], "invited_by": [ - 2891 + 2928 ], "invited_by_player_steam_id": [ - 2011 + 2016 ], "player": [ - 2891 + 2928 ], "steam_id": [ - 2011 + 2016 ], "team": [ - 3663 + 3709 ], "tournament_team_id": [ - 2011 + 2016 ], "__typename": [ - 70 + 75 ] }, "tournament_team_invites_pk_columns_input": { "id": [ - 3818 + 3864 ], "__typename": [ - 70 + 75 ] }, "tournament_team_invites_select_column": {}, "tournament_team_invites_set_input": { "created_at": [ - 3421 + 3467 ], "id": [ - 3818 + 3864 ], "invited_by_player_steam_id": [ - 169 + 174 ], "steam_id": [ - 169 + 174 ], "tournament_team_id": [ - 3818 + 3864 ], "__typename": [ - 70 + 75 ] }, "tournament_team_invites_stddev_fields": { @@ -85366,18 +86195,18 @@ export default { 29 ], "__typename": [ - 70 + 75 ] }, "tournament_team_invites_stddev_order_by": { "invited_by_player_steam_id": [ - 2011 + 2016 ], "steam_id": [ - 2011 + 2016 ], "__typename": [ - 70 + 75 ] }, "tournament_team_invites_stddev_pop_fields": { @@ -85388,18 +86217,18 @@ export default { 29 ], "__typename": [ - 70 + 75 ] }, "tournament_team_invites_stddev_pop_order_by": { "invited_by_player_steam_id": [ - 2011 + 2016 ], "steam_id": [ - 2011 + 2016 ], "__typename": [ - 70 + 75 ] }, "tournament_team_invites_stddev_samp_fields": { @@ -85410,86 +86239,86 @@ export default { 29 ], "__typename": [ - 70 + 75 ] }, "tournament_team_invites_stddev_samp_order_by": { "invited_by_player_steam_id": [ - 2011 + 2016 ], "steam_id": [ - 2011 + 2016 ], "__typename": [ - 70 + 75 ] }, "tournament_team_invites_stream_cursor_input": { "initial_value": [ - 3591 + 3637 ], "ordering": [ - 224 + 229 ], "__typename": [ - 70 + 75 ] }, "tournament_team_invites_stream_cursor_value_input": { "created_at": [ - 3421 + 3467 ], "id": [ - 3818 + 3864 ], "invited_by_player_steam_id": [ - 169 + 174 ], "steam_id": [ - 169 + 174 ], "tournament_team_id": [ - 3818 + 3864 ], "__typename": [ - 70 + 75 ] }, "tournament_team_invites_sum_fields": { "invited_by_player_steam_id": [ - 169 + 174 ], "steam_id": [ - 169 + 174 ], "__typename": [ - 70 + 75 ] }, "tournament_team_invites_sum_order_by": { "invited_by_player_steam_id": [ - 2011 + 2016 ], "steam_id": [ - 2011 + 2016 ], "__typename": [ - 70 + 75 ] }, "tournament_team_invites_update_column": {}, "tournament_team_invites_updates": { "_inc": [ - 3572 + 3618 ], "_set": [ - 3583 + 3629 ], "where": [ - 3570 + 3616 ], "__typename": [ - 70 + 75 ] }, "tournament_team_invites_var_pop_fields": { @@ -85500,18 +86329,18 @@ export default { 29 ], "__typename": [ - 70 + 75 ] }, "tournament_team_invites_var_pop_order_by": { "invited_by_player_steam_id": [ - 2011 + 2016 ], "steam_id": [ - 2011 + 2016 ], "__typename": [ - 70 + 75 ] }, "tournament_team_invites_var_samp_fields": { @@ -85522,18 +86351,18 @@ export default { 29 ], "__typename": [ - 70 + 75 ] }, "tournament_team_invites_var_samp_order_by": { "invited_by_player_steam_id": [ - 2011 + 2016 ], "steam_id": [ - 2011 + 2016 ], "__typename": [ - 70 + 75 ] }, "tournament_team_invites_variance_fields": { @@ -85544,94 +86373,94 @@ export default { 29 ], "__typename": [ - 70 + 75 ] }, "tournament_team_invites_variance_order_by": { "invited_by_player_steam_id": [ - 2011 + 2016 ], "steam_id": [ - 2011 + 2016 ], "__typename": [ - 70 + 75 ] }, "tournament_team_roster": { "e_team_role": [ - 921 + 926 ], "player": [ - 2878 + 2915 ], "player_steam_id": [ - 169 + 174 ], "role": [ - 926 + 931 ], "tournament": [ - 3772 + 3818 ], "tournament_id": [ - 3818 + 3864 ], "tournament_team": [ - 3643 + 3689 ], "tournament_team_id": [ - 3818 + 3864 ], "__typename": [ - 70 + 75 ] }, "tournament_team_roster_aggregate": { "aggregate": [ - 3606 + 3652 ], "nodes": [ - 3602 + 3648 ], "__typename": [ - 70 + 75 ] }, "tournament_team_roster_aggregate_bool_exp": { "count": [ - 3605 + 3651 ], "__typename": [ - 70 + 75 ] }, "tournament_team_roster_aggregate_bool_exp_count": { "arguments": [ - 3623 + 3669 ], "distinct": [ 3 ], "filter": [ - 3611 + 3657 ], "predicate": [ 39 ], "__typename": [ - 70 + 75 ] }, "tournament_team_roster_aggregate_fields": { "avg": [ - 3609 + 3655 ], "count": [ 38, { "columns": [ - 3623, + 3669, "[tournament_team_roster_select_column!]" ], "distinct": [ @@ -85640,83 +86469,83 @@ export default { } ], "max": [ - 3615 + 3661 ], "min": [ - 3617 + 3663 ], "stddev": [ - 3625 + 3671 ], "stddev_pop": [ - 3627 + 3673 ], "stddev_samp": [ - 3629 + 3675 ], "sum": [ - 3633 + 3679 ], "var_pop": [ - 3637 + 3683 ], "var_samp": [ - 3639 + 3685 ], "variance": [ - 3641 + 3687 ], "__typename": [ - 70 + 75 ] }, "tournament_team_roster_aggregate_order_by": { "avg": [ - 3610 + 3656 ], "count": [ - 2011 + 2016 ], "max": [ - 3616 + 3662 ], "min": [ - 3618 + 3664 ], "stddev": [ - 3626 + 3672 ], "stddev_pop": [ - 3628 + 3674 ], "stddev_samp": [ - 3630 + 3676 ], "sum": [ - 3634 + 3680 ], "var_pop": [ - 3638 + 3684 ], "var_samp": [ - 3640 + 3686 ], "variance": [ - 3642 + 3688 ], "__typename": [ - 70 + 75 ] }, "tournament_team_roster_arr_rel_insert_input": { "data": [ - 3614 + 3660 ], "on_conflict": [ - 3620 + 3666 ], "__typename": [ - 70 + 75 ] }, "tournament_team_roster_avg_fields": { @@ -85724,147 +86553,147 @@ export default { 29 ], "__typename": [ - 70 + 75 ] }, "tournament_team_roster_avg_order_by": { "player_steam_id": [ - 2011 + 2016 ], "__typename": [ - 70 + 75 ] }, "tournament_team_roster_bool_exp": { "_and": [ - 3611 + 3657 ], "_not": [ - 3611 + 3657 ], "_or": [ - 3611 + 3657 ], "e_team_role": [ - 924 + 929 ], "player": [ - 2882 + 2919 ], "player_steam_id": [ - 171 + 176 ], "role": [ - 927 + 932 ], "tournament": [ - 3783 + 3829 ], "tournament_id": [ - 3820 + 3866 ], "tournament_team": [ - 3652 + 3698 ], "tournament_team_id": [ - 3820 + 3866 ], "__typename": [ - 70 + 75 ] }, "tournament_team_roster_constraint": {}, "tournament_team_roster_inc_input": { "player_steam_id": [ - 169 + 174 ], "__typename": [ - 70 + 75 ] }, "tournament_team_roster_insert_input": { "e_team_role": [ - 932 + 937 ], "player": [ - 2889 + 2926 ], "player_steam_id": [ - 169 + 174 ], "role": [ - 926 + 931 ], "tournament": [ - 3792 + 3838 ], "tournament_id": [ - 3818 + 3864 ], "tournament_team": [ - 3661 + 3707 ], "tournament_team_id": [ - 3818 + 3864 ], "__typename": [ - 70 + 75 ] }, "tournament_team_roster_max_fields": { "player_steam_id": [ - 169 + 174 ], "tournament_id": [ - 3818 + 3864 ], "tournament_team_id": [ - 3818 + 3864 ], "__typename": [ - 70 + 75 ] }, "tournament_team_roster_max_order_by": { "player_steam_id": [ - 2011 + 2016 ], "tournament_id": [ - 2011 + 2016 ], "tournament_team_id": [ - 2011 + 2016 ], "__typename": [ - 70 + 75 ] }, "tournament_team_roster_min_fields": { "player_steam_id": [ - 169 + 174 ], "tournament_id": [ - 3818 + 3864 ], "tournament_team_id": [ - 3818 + 3864 ], "__typename": [ - 70 + 75 ] }, "tournament_team_roster_min_order_by": { "player_steam_id": [ - 2011 + 2016 ], "tournament_id": [ - 2011 + 2016 ], "tournament_team_id": [ - 2011 + 2016 ], "__typename": [ - 70 + 75 ] }, "tournament_team_roster_mutation_response": { @@ -85872,82 +86701,82 @@ export default { 38 ], "returning": [ - 3602 + 3648 ], "__typename": [ - 70 + 75 ] }, "tournament_team_roster_on_conflict": { "constraint": [ - 3612 + 3658 ], "update_columns": [ - 3635 + 3681 ], "where": [ - 3611 + 3657 ], "__typename": [ - 70 + 75 ] }, "tournament_team_roster_order_by": { "e_team_role": [ - 934 + 939 ], "player": [ - 2891 + 2928 ], "player_steam_id": [ - 2011 + 2016 ], "role": [ - 2011 + 2016 ], "tournament": [ - 3794 + 3840 ], "tournament_id": [ - 2011 + 2016 ], "tournament_team": [ - 3663 + 3709 ], "tournament_team_id": [ - 2011 + 2016 ], "__typename": [ - 70 + 75 ] }, "tournament_team_roster_pk_columns_input": { "player_steam_id": [ - 169 + 174 ], "tournament_id": [ - 3818 + 3864 ], "__typename": [ - 70 + 75 ] }, "tournament_team_roster_select_column": {}, "tournament_team_roster_set_input": { "player_steam_id": [ - 169 + 174 ], "role": [ - 926 + 931 ], "tournament_id": [ - 3818 + 3864 ], "tournament_team_id": [ - 3818 + 3864 ], "__typename": [ - 70 + 75 ] }, "tournament_team_roster_stddev_fields": { @@ -85955,15 +86784,15 @@ export default { 29 ], "__typename": [ - 70 + 75 ] }, "tournament_team_roster_stddev_order_by": { "player_steam_id": [ - 2011 + 2016 ], "__typename": [ - 70 + 75 ] }, "tournament_team_roster_stddev_pop_fields": { @@ -85971,15 +86800,15 @@ export default { 29 ], "__typename": [ - 70 + 75 ] }, "tournament_team_roster_stddev_pop_order_by": { "player_steam_id": [ - 2011 + 2016 ], "__typename": [ - 70 + 75 ] }, "tournament_team_roster_stddev_samp_fields": { @@ -85987,74 +86816,74 @@ export default { 29 ], "__typename": [ - 70 + 75 ] }, "tournament_team_roster_stddev_samp_order_by": { "player_steam_id": [ - 2011 + 2016 ], "__typename": [ - 70 + 75 ] }, "tournament_team_roster_stream_cursor_input": { "initial_value": [ - 3632 + 3678 ], "ordering": [ - 224 + 229 ], "__typename": [ - 70 + 75 ] }, "tournament_team_roster_stream_cursor_value_input": { "player_steam_id": [ - 169 + 174 ], "role": [ - 926 + 931 ], "tournament_id": [ - 3818 + 3864 ], "tournament_team_id": [ - 3818 + 3864 ], "__typename": [ - 70 + 75 ] }, "tournament_team_roster_sum_fields": { "player_steam_id": [ - 169 + 174 ], "__typename": [ - 70 + 75 ] }, "tournament_team_roster_sum_order_by": { "player_steam_id": [ - 2011 + 2016 ], "__typename": [ - 70 + 75 ] }, "tournament_team_roster_update_column": {}, "tournament_team_roster_updates": { "_inc": [ - 3613 + 3659 ], "_set": [ - 3624 + 3670 ], "where": [ - 3611 + 3657 ], "__typename": [ - 70 + 75 ] }, "tournament_team_roster_var_pop_fields": { @@ -86062,15 +86891,15 @@ export default { 29 ], "__typename": [ - 70 + 75 ] }, "tournament_team_roster_var_pop_order_by": { "player_steam_id": [ - 2011 + 2016 ], "__typename": [ - 70 + 75 ] }, "tournament_team_roster_var_samp_fields": { @@ -86078,15 +86907,15 @@ export default { 29 ], "__typename": [ - 70 + 75 ] }, "tournament_team_roster_var_samp_order_by": { "player_steam_id": [ - 2011 + 2016 ], "__typename": [ - 70 + 75 ] }, "tournament_team_roster_variance_fields": { @@ -86094,15 +86923,15 @@ export default { 29 ], "__typename": [ - 70 + 75 ] }, "tournament_team_roster_variance_order_by": { "player_steam_id": [ - 2011 + 2016 ], "__typename": [ - 70 + 75 ] }, "tournament_teams": { @@ -86110,28 +86939,28 @@ export default { 3 ], "captain": [ - 2878 + 2915 ], "captain_steam_id": [ - 169 + 174 ], "created_at": [ - 3421 + 3467 ], "creator": [ - 2878 + 2915 ], "eligible_at": [ - 3421 + 3467 ], "id": [ - 3818 + 3864 ], "invites": [ - 3561, + 3607, { "distinct_on": [ - 3582, + 3628, "[tournament_team_invites_select_column!]" ], "limit": [ @@ -86141,19 +86970,19 @@ export default { 38 ], "order_by": [ - 3580, + 3626, "[tournament_team_invites_order_by!]" ], "where": [ - 3570 + 3616 ] } ], "invites_aggregate": [ - 3562, + 3608, { "distinct_on": [ - 3582, + 3628, "[tournament_team_invites_select_column!]" ], "limit": [ @@ -86163,28 +86992,28 @@ export default { 38 ], "order_by": [ - 3580, + 3626, "[tournament_team_invites_order_by!]" ], "where": [ - 3570 + 3616 ] } ], "name": [ - 70 + 75 ], "owner_steam_id": [ - 169 + 174 ], "results": [ - 4407 + 4453 ], "roster": [ - 3602, + 3648, { "distinct_on": [ - 3623, + 3669, "[tournament_team_roster_select_column!]" ], "limit": [ @@ -86194,19 +87023,19 @@ export default { 38 ], "order_by": [ - 3621, + 3667, "[tournament_team_roster_order_by!]" ], "where": [ - 3611 + 3657 ] } ], "roster_aggregate": [ - 3603, + 3649, { "distinct_on": [ - 3623, + 3669, "[tournament_team_roster_select_column!]" ], "limit": [ @@ -86216,11 +87045,11 @@ export default { 38 ], "order_by": [ - 3621, + 3667, "[tournament_team_roster_order_by!]" ], "where": [ - 3611 + 3657 ] } ], @@ -86228,69 +87057,69 @@ export default { 38 ], "short_name": [ - 70 + 75 ], "team": [ - 3378 + 3424 ], "team_id": [ - 3818 + 3864 ], "tournament": [ - 3772 + 3818 ], "tournament_id": [ - 3818 + 3864 ], "__typename": [ - 70 + 75 ] }, "tournament_teams_aggregate": { "aggregate": [ - 3647 + 3693 ], "nodes": [ - 3643 + 3689 ], "__typename": [ - 70 + 75 ] }, "tournament_teams_aggregate_bool_exp": { "count": [ - 3646 + 3692 ], "__typename": [ - 70 + 75 ] }, "tournament_teams_aggregate_bool_exp_count": { "arguments": [ - 3665 + 3711 ], "distinct": [ 3 ], "filter": [ - 3652 + 3698 ], "predicate": [ 39 ], "__typename": [ - 70 + 75 ] }, "tournament_teams_aggregate_fields": { "avg": [ - 3650 + 3696 ], "count": [ 38, { "columns": [ - 3665, + 3711, "[tournament_teams_select_column!]" ], "distinct": [ @@ -86299,83 +87128,83 @@ export default { } ], "max": [ - 3656 + 3702 ], "min": [ - 3658 + 3704 ], "stddev": [ - 3667 + 3713 ], "stddev_pop": [ - 3669 + 3715 ], "stddev_samp": [ - 3671 + 3717 ], "sum": [ - 3675 + 3721 ], "var_pop": [ - 3679 + 3725 ], "var_samp": [ - 3681 + 3727 ], "variance": [ - 3683 + 3729 ], "__typename": [ - 70 + 75 ] }, "tournament_teams_aggregate_order_by": { "avg": [ - 3651 + 3697 ], "count": [ - 2011 + 2016 ], "max": [ - 3657 + 3703 ], "min": [ - 3659 + 3705 ], "stddev": [ - 3668 + 3714 ], "stddev_pop": [ - 3670 + 3716 ], "stddev_samp": [ - 3672 + 3718 ], "sum": [ - 3676 + 3722 ], "var_pop": [ - 3680 + 3726 ], "var_samp": [ - 3682 + 3728 ], "variance": [ - 3684 + 3730 ], "__typename": [ - 70 + 75 ] }, "tournament_teams_arr_rel_insert_input": { "data": [ - 3655 + 3701 ], "on_conflict": [ - 3662 + 3708 ], "__typename": [ - 70 + 75 ] }, "tournament_teams_avg_fields": { @@ -86389,306 +87218,306 @@ export default { 29 ], "__typename": [ - 70 + 75 ] }, "tournament_teams_avg_order_by": { "captain_steam_id": [ - 2011 + 2016 ], "owner_steam_id": [ - 2011 + 2016 ], "seed": [ - 2011 + 2016 ], "__typename": [ - 70 + 75 ] }, "tournament_teams_bool_exp": { "_and": [ - 3652 + 3698 ], "_not": [ - 3652 + 3698 ], "_or": [ - 3652 + 3698 ], "can_manage": [ 4 ], "captain": [ - 2882 + 2919 ], "captain_steam_id": [ - 171 + 176 ], "created_at": [ - 3422 + 3468 ], "creator": [ - 2882 + 2919 ], "eligible_at": [ - 3422 + 3468 ], "id": [ - 3820 + 3866 ], "invites": [ - 3570 + 3616 ], "invites_aggregate": [ - 3563 + 3609 ], "name": [ - 72 + 77 ], "owner_steam_id": [ - 171 + 176 ], "results": [ - 4426 + 4472 ], "roster": [ - 3611 + 3657 ], "roster_aggregate": [ - 3604 + 3650 ], "seed": [ 39 ], "short_name": [ - 72 + 77 ], "team": [ - 3387 + 3433 ], "team_id": [ - 3820 + 3866 ], "tournament": [ - 3783 + 3829 ], "tournament_id": [ - 3820 + 3866 ], "__typename": [ - 70 + 75 ] }, "tournament_teams_constraint": {}, "tournament_teams_inc_input": { "captain_steam_id": [ - 169 + 174 ], "owner_steam_id": [ - 169 + 174 ], "seed": [ 38 ], "__typename": [ - 70 + 75 ] }, "tournament_teams_insert_input": { "captain": [ - 2889 + 2926 ], "captain_steam_id": [ - 169 + 174 ], "created_at": [ - 3421 + 3467 ], "creator": [ - 2889 + 2926 ], "eligible_at": [ - 3421 + 3467 ], "id": [ - 3818 + 3864 ], "invites": [ - 3567 + 3613 ], "name": [ - 70 + 75 ], "owner_steam_id": [ - 169 + 174 ], "results": [ - 4435 + 4481 ], "roster": [ - 3608 + 3654 ], "seed": [ 38 ], "short_name": [ - 70 + 75 ], "team": [ - 3396 + 3442 ], "team_id": [ - 3818 + 3864 ], "tournament": [ - 3792 + 3838 ], "tournament_id": [ - 3818 + 3864 ], "__typename": [ - 70 + 75 ] }, "tournament_teams_max_fields": { "captain_steam_id": [ - 169 + 174 ], "created_at": [ - 3421 + 3467 ], "eligible_at": [ - 3421 + 3467 ], "id": [ - 3818 + 3864 ], "name": [ - 70 + 75 ], "owner_steam_id": [ - 169 + 174 ], "seed": [ 38 ], "short_name": [ - 70 + 75 ], "team_id": [ - 3818 + 3864 ], "tournament_id": [ - 3818 + 3864 ], "__typename": [ - 70 + 75 ] }, "tournament_teams_max_order_by": { "captain_steam_id": [ - 2011 + 2016 ], "created_at": [ - 2011 + 2016 ], "eligible_at": [ - 2011 + 2016 ], "id": [ - 2011 + 2016 ], "name": [ - 2011 + 2016 ], "owner_steam_id": [ - 2011 + 2016 ], "seed": [ - 2011 + 2016 ], "short_name": [ - 2011 + 2016 ], "team_id": [ - 2011 + 2016 ], "tournament_id": [ - 2011 + 2016 ], "__typename": [ - 70 + 75 ] }, "tournament_teams_min_fields": { "captain_steam_id": [ - 169 + 174 ], "created_at": [ - 3421 + 3467 ], "eligible_at": [ - 3421 + 3467 ], "id": [ - 3818 + 3864 ], "name": [ - 70 + 75 ], "owner_steam_id": [ - 169 + 174 ], "seed": [ 38 ], "short_name": [ - 70 + 75 ], "team_id": [ - 3818 + 3864 ], "tournament_id": [ - 3818 + 3864 ], "__typename": [ - 70 + 75 ] }, "tournament_teams_min_order_by": { "captain_steam_id": [ - 2011 + 2016 ], "created_at": [ - 2011 + 2016 ], "eligible_at": [ - 2011 + 2016 ], "id": [ - 2011 + 2016 ], "name": [ - 2011 + 2016 ], "owner_steam_id": [ - 2011 + 2016 ], "seed": [ - 2011 + 2016 ], "short_name": [ - 2011 + 2016 ], "team_id": [ - 2011 + 2016 ], "tournament_id": [ - 2011 + 2016 ], "__typename": [ - 70 + 75 ] }, "tournament_teams_mutation_response": { @@ -86696,138 +87525,138 @@ export default { 38 ], "returning": [ - 3643 + 3689 ], "__typename": [ - 70 + 75 ] }, "tournament_teams_obj_rel_insert_input": { "data": [ - 3655 + 3701 ], "on_conflict": [ - 3662 + 3708 ], "__typename": [ - 70 + 75 ] }, "tournament_teams_on_conflict": { "constraint": [ - 3653 + 3699 ], "update_columns": [ - 3677 + 3723 ], "where": [ - 3652 + 3698 ], "__typename": [ - 70 + 75 ] }, "tournament_teams_order_by": { "can_manage": [ - 2011 + 2016 ], "captain": [ - 2891 + 2928 ], "captain_steam_id": [ - 2011 + 2016 ], "created_at": [ - 2011 + 2016 ], "creator": [ - 2891 + 2928 ], "eligible_at": [ - 2011 + 2016 ], "id": [ - 2011 + 2016 ], "invites_aggregate": [ - 3566 + 3612 ], "name": [ - 2011 + 2016 ], "owner_steam_id": [ - 2011 + 2016 ], "results": [ - 4437 + 4483 ], "roster_aggregate": [ - 3607 + 3653 ], "seed": [ - 2011 + 2016 ], "short_name": [ - 2011 + 2016 ], "team": [ - 3398 + 3444 ], "team_id": [ - 2011 + 2016 ], "tournament": [ - 3794 + 3840 ], "tournament_id": [ - 2011 + 2016 ], "__typename": [ - 70 + 75 ] }, "tournament_teams_pk_columns_input": { "id": [ - 3818 + 3864 ], "__typename": [ - 70 + 75 ] }, "tournament_teams_select_column": {}, "tournament_teams_set_input": { "captain_steam_id": [ - 169 + 174 ], "created_at": [ - 3421 + 3467 ], "eligible_at": [ - 3421 + 3467 ], "id": [ - 3818 + 3864 ], "name": [ - 70 + 75 ], "owner_steam_id": [ - 169 + 174 ], "seed": [ 38 ], "short_name": [ - 70 + 75 ], "team_id": [ - 3818 + 3864 ], "tournament_id": [ - 3818 + 3864 ], "__typename": [ - 70 + 75 ] }, "tournament_teams_stddev_fields": { @@ -86841,21 +87670,21 @@ export default { 29 ], "__typename": [ - 70 + 75 ] }, "tournament_teams_stddev_order_by": { "captain_steam_id": [ - 2011 + 2016 ], "owner_steam_id": [ - 2011 + 2016 ], "seed": [ - 2011 + 2016 ], "__typename": [ - 70 + 75 ] }, "tournament_teams_stddev_pop_fields": { @@ -86869,21 +87698,21 @@ export default { 29 ], "__typename": [ - 70 + 75 ] }, "tournament_teams_stddev_pop_order_by": { "captain_steam_id": [ - 2011 + 2016 ], "owner_steam_id": [ - 2011 + 2016 ], "seed": [ - 2011 + 2016 ], "__typename": [ - 70 + 75 ] }, "tournament_teams_stddev_samp_fields": { @@ -86897,110 +87726,110 @@ export default { 29 ], "__typename": [ - 70 + 75 ] }, "tournament_teams_stddev_samp_order_by": { "captain_steam_id": [ - 2011 + 2016 ], "owner_steam_id": [ - 2011 + 2016 ], "seed": [ - 2011 + 2016 ], "__typename": [ - 70 + 75 ] }, "tournament_teams_stream_cursor_input": { "initial_value": [ - 3674 + 3720 ], "ordering": [ - 224 + 229 ], "__typename": [ - 70 + 75 ] }, "tournament_teams_stream_cursor_value_input": { "captain_steam_id": [ - 169 + 174 ], "created_at": [ - 3421 + 3467 ], "eligible_at": [ - 3421 + 3467 ], "id": [ - 3818 + 3864 ], "name": [ - 70 + 75 ], "owner_steam_id": [ - 169 + 174 ], "seed": [ 38 ], "short_name": [ - 70 + 75 ], "team_id": [ - 3818 + 3864 ], "tournament_id": [ - 3818 + 3864 ], "__typename": [ - 70 + 75 ] }, "tournament_teams_sum_fields": { "captain_steam_id": [ - 169 + 174 ], "owner_steam_id": [ - 169 + 174 ], "seed": [ 38 ], "__typename": [ - 70 + 75 ] }, "tournament_teams_sum_order_by": { "captain_steam_id": [ - 2011 + 2016 ], "owner_steam_id": [ - 2011 + 2016 ], "seed": [ - 2011 + 2016 ], "__typename": [ - 70 + 75 ] }, "tournament_teams_update_column": {}, "tournament_teams_updates": { "_inc": [ - 3654 + 3700 ], "_set": [ - 3666 + 3712 ], "where": [ - 3652 + 3698 ], "__typename": [ - 70 + 75 ] }, "tournament_teams_var_pop_fields": { @@ -87014,21 +87843,21 @@ export default { 29 ], "__typename": [ - 70 + 75 ] }, "tournament_teams_var_pop_order_by": { "captain_steam_id": [ - 2011 + 2016 ], "owner_steam_id": [ - 2011 + 2016 ], "seed": [ - 2011 + 2016 ], "__typename": [ - 70 + 75 ] }, "tournament_teams_var_samp_fields": { @@ -87042,21 +87871,21 @@ export default { 29 ], "__typename": [ - 70 + 75 ] }, "tournament_teams_var_samp_order_by": { "captain_steam_id": [ - 2011 + 2016 ], "owner_steam_id": [ - 2011 + 2016 ], "seed": [ - 2011 + 2016 ], "__typename": [ - 70 + 75 ] }, "tournament_teams_variance_fields": { @@ -87070,29 +87899,29 @@ export default { 29 ], "__typename": [ - 70 + 75 ] }, "tournament_teams_variance_order_by": { "captain_steam_id": [ - 2011 + 2016 ], "owner_steam_id": [ - 2011 + 2016 ], "seed": [ - 2011 + 2016 ], "__typename": [ - 70 + 75 ] }, "tournament_trophies": { "created_at": [ - 3421 + 3467 ], "id": [ - 3818 + 3864 ], "manual": [ 3 @@ -87101,124 +87930,124 @@ export default { 38 ], "placement_tier": [ - 70 + 75 ], "player": [ - 2878 + 2915 ], "player_steam_id": [ - 169 + 174 ], "team": [ - 3378 + 3424 ], "team_id": [ - 3818 + 3864 ], "tournament": [ - 3772 + 3818 ], "tournament_id": [ - 3818 + 3864 ], "tournament_team": [ - 3643 + 3689 ], "tournament_team_id": [ - 3818 + 3864 ], "trophy_config": [ - 3730 + 3776 ], "__typename": [ - 70 + 75 ] }, "tournament_trophies_aggregate": { "aggregate": [ - 3691 + 3737 ], "nodes": [ - 3685 + 3731 ], "__typename": [ - 70 + 75 ] }, "tournament_trophies_aggregate_bool_exp": { "bool_and": [ - 3688 + 3734 ], "bool_or": [ - 3689 + 3735 ], "count": [ - 3690 + 3736 ], "__typename": [ - 70 + 75 ] }, "tournament_trophies_aggregate_bool_exp_bool_and": { "arguments": [ - 3709 + 3755 ], "distinct": [ 3 ], "filter": [ - 3696 + 3742 ], "predicate": [ 4 ], "__typename": [ - 70 + 75 ] }, "tournament_trophies_aggregate_bool_exp_bool_or": { "arguments": [ - 3710 + 3756 ], "distinct": [ 3 ], "filter": [ - 3696 + 3742 ], "predicate": [ 4 ], "__typename": [ - 70 + 75 ] }, "tournament_trophies_aggregate_bool_exp_count": { "arguments": [ - 3708 + 3754 ], "distinct": [ 3 ], "filter": [ - 3696 + 3742 ], "predicate": [ 39 ], "__typename": [ - 70 + 75 ] }, "tournament_trophies_aggregate_fields": { "avg": [ - 3694 + 3740 ], "count": [ 38, { "columns": [ - 3708, + 3754, "[tournament_trophies_select_column!]" ], "distinct": [ @@ -87227,83 +88056,83 @@ export default { } ], "max": [ - 3700 + 3746 ], "min": [ - 3702 + 3748 ], "stddev": [ - 3712 + 3758 ], "stddev_pop": [ - 3714 + 3760 ], "stddev_samp": [ - 3716 + 3762 ], "sum": [ - 3720 + 3766 ], "var_pop": [ - 3724 + 3770 ], "var_samp": [ - 3726 + 3772 ], "variance": [ - 3728 + 3774 ], "__typename": [ - 70 + 75 ] }, "tournament_trophies_aggregate_order_by": { "avg": [ - 3695 + 3741 ], "count": [ - 2011 + 2016 ], "max": [ - 3701 + 3747 ], "min": [ - 3703 + 3749 ], "stddev": [ - 3713 + 3759 ], "stddev_pop": [ - 3715 + 3761 ], "stddev_samp": [ - 3717 + 3763 ], "sum": [ - 3721 + 3767 ], "var_pop": [ - 3725 + 3771 ], "var_samp": [ - 3727 + 3773 ], "variance": [ - 3729 + 3775 ], "__typename": [ - 70 + 75 ] }, "tournament_trophies_arr_rel_insert_input": { "data": [ - 3699 + 3745 ], "on_conflict": [ - 3705 + 3751 ], "__typename": [ - 70 + 75 ] }, "tournament_trophies_avg_fields": { @@ -87314,35 +88143,35 @@ export default { 29 ], "__typename": [ - 70 + 75 ] }, "tournament_trophies_avg_order_by": { "placement": [ - 2011 + 2016 ], "player_steam_id": [ - 2011 + 2016 ], "__typename": [ - 70 + 75 ] }, "tournament_trophies_bool_exp": { "_and": [ - 3696 + 3742 ], "_not": [ - 3696 + 3742 ], "_or": [ - 3696 + 3742 ], "created_at": [ - 3422 + 3468 ], "id": [ - 3820 + 3866 ], "manual": [ 4 @@ -87351,37 +88180,37 @@ export default { 39 ], "placement_tier": [ - 72 + 77 ], "player": [ - 2882 + 2919 ], "player_steam_id": [ - 171 + 176 ], "team": [ - 3387 + 3433 ], "team_id": [ - 3820 + 3866 ], "tournament": [ - 3783 + 3829 ], "tournament_id": [ - 3820 + 3866 ], "tournament_team": [ - 3652 + 3698 ], "tournament_team_id": [ - 3820 + 3866 ], "trophy_config": [ - 3739 + 3785 ], "__typename": [ - 70 + 75 ] }, "tournament_trophies_constraint": {}, @@ -87390,18 +88219,18 @@ export default { 38 ], "player_steam_id": [ - 169 + 174 ], "__typename": [ - 70 + 75 ] }, "tournament_trophies_insert_input": { "created_at": [ - 3421 + 3467 ], "id": [ - 3818 + 3864 ], "manual": [ 3 @@ -87410,150 +88239,150 @@ export default { 38 ], "player": [ - 2889 + 2926 ], "player_steam_id": [ - 169 + 174 ], "team": [ - 3396 + 3442 ], "team_id": [ - 3818 + 3864 ], "tournament": [ - 3792 + 3838 ], "tournament_id": [ - 3818 + 3864 ], "tournament_team": [ - 3661 + 3707 ], "tournament_team_id": [ - 3818 + 3864 ], "trophy_config": [ - 3748 + 3794 ], "__typename": [ - 70 + 75 ] }, "tournament_trophies_max_fields": { "created_at": [ - 3421 + 3467 ], "id": [ - 3818 + 3864 ], "placement": [ 38 ], "placement_tier": [ - 70 + 75 ], "player_steam_id": [ - 169 + 174 ], "team_id": [ - 3818 + 3864 ], "tournament_id": [ - 3818 + 3864 ], "tournament_team_id": [ - 3818 + 3864 ], "__typename": [ - 70 + 75 ] }, "tournament_trophies_max_order_by": { "created_at": [ - 2011 + 2016 ], "id": [ - 2011 + 2016 ], "placement": [ - 2011 + 2016 ], "placement_tier": [ - 2011 + 2016 ], "player_steam_id": [ - 2011 + 2016 ], "team_id": [ - 2011 + 2016 ], "tournament_id": [ - 2011 + 2016 ], "tournament_team_id": [ - 2011 + 2016 ], "__typename": [ - 70 + 75 ] }, "tournament_trophies_min_fields": { "created_at": [ - 3421 + 3467 ], "id": [ - 3818 + 3864 ], "placement": [ 38 ], "placement_tier": [ - 70 + 75 ], "player_steam_id": [ - 169 + 174 ], "team_id": [ - 3818 + 3864 ], "tournament_id": [ - 3818 + 3864 ], "tournament_team_id": [ - 3818 + 3864 ], "__typename": [ - 70 + 75 ] }, "tournament_trophies_min_order_by": { "created_at": [ - 2011 + 2016 ], "id": [ - 2011 + 2016 ], "placement": [ - 2011 + 2016 ], "placement_tier": [ - 2011 + 2016 ], "player_steam_id": [ - 2011 + 2016 ], "team_id": [ - 2011 + 2016 ], "tournament_id": [ - 2011 + 2016 ], "tournament_team_id": [ - 2011 + 2016 ], "__typename": [ - 70 + 75 ] }, "tournament_trophies_mutation_response": { @@ -87561,79 +88390,79 @@ export default { 38 ], "returning": [ - 3685 + 3731 ], "__typename": [ - 70 + 75 ] }, "tournament_trophies_on_conflict": { "constraint": [ - 3697 + 3743 ], "update_columns": [ - 3722 + 3768 ], "where": [ - 3696 + 3742 ], "__typename": [ - 70 + 75 ] }, "tournament_trophies_order_by": { "created_at": [ - 2011 + 2016 ], "id": [ - 2011 + 2016 ], "manual": [ - 2011 + 2016 ], "placement": [ - 2011 + 2016 ], "placement_tier": [ - 2011 + 2016 ], "player": [ - 2891 + 2928 ], "player_steam_id": [ - 2011 + 2016 ], "team": [ - 3398 + 3444 ], "team_id": [ - 2011 + 2016 ], "tournament": [ - 3794 + 3840 ], "tournament_id": [ - 2011 + 2016 ], "tournament_team": [ - 3663 + 3709 ], "tournament_team_id": [ - 2011 + 2016 ], "trophy_config": [ - 3750 + 3796 ], "__typename": [ - 70 + 75 ] }, "tournament_trophies_pk_columns_input": { "id": [ - 3818 + 3864 ], "__typename": [ - 70 + 75 ] }, "tournament_trophies_select_column": {}, @@ -87641,10 +88470,10 @@ export default { "tournament_trophies_select_column_tournament_trophies_aggregate_bool_exp_bool_or_arguments_columns": {}, "tournament_trophies_set_input": { "created_at": [ - 3421 + 3467 ], "id": [ - 3818 + 3864 ], "manual": [ 3 @@ -87653,19 +88482,19 @@ export default { 38 ], "player_steam_id": [ - 169 + 174 ], "team_id": [ - 3818 + 3864 ], "tournament_id": [ - 3818 + 3864 ], "tournament_team_id": [ - 3818 + 3864 ], "__typename": [ - 70 + 75 ] }, "tournament_trophies_stddev_fields": { @@ -87676,18 +88505,18 @@ export default { 29 ], "__typename": [ - 70 + 75 ] }, "tournament_trophies_stddev_order_by": { "placement": [ - 2011 + 2016 ], "player_steam_id": [ - 2011 + 2016 ], "__typename": [ - 70 + 75 ] }, "tournament_trophies_stddev_pop_fields": { @@ -87698,18 +88527,18 @@ export default { 29 ], "__typename": [ - 70 + 75 ] }, "tournament_trophies_stddev_pop_order_by": { "placement": [ - 2011 + 2016 ], "player_steam_id": [ - 2011 + 2016 ], "__typename": [ - 70 + 75 ] }, "tournament_trophies_stddev_samp_fields": { @@ -87720,37 +88549,37 @@ export default { 29 ], "__typename": [ - 70 + 75 ] }, "tournament_trophies_stddev_samp_order_by": { "placement": [ - 2011 + 2016 ], "player_steam_id": [ - 2011 + 2016 ], "__typename": [ - 70 + 75 ] }, "tournament_trophies_stream_cursor_input": { "initial_value": [ - 3719 + 3765 ], "ordering": [ - 224 + 229 ], "__typename": [ - 70 + 75 ] }, "tournament_trophies_stream_cursor_value_input": { "created_at": [ - 3421 + 3467 ], "id": [ - 3818 + 3864 ], "manual": [ 3 @@ -87759,22 +88588,22 @@ export default { 38 ], "placement_tier": [ - 70 + 75 ], "player_steam_id": [ - 169 + 174 ], "team_id": [ - 3818 + 3864 ], "tournament_id": [ - 3818 + 3864 ], "tournament_team_id": [ - 3818 + 3864 ], "__typename": [ - 70 + 75 ] }, "tournament_trophies_sum_fields": { @@ -87782,36 +88611,36 @@ export default { 38 ], "player_steam_id": [ - 169 + 174 ], "__typename": [ - 70 + 75 ] }, "tournament_trophies_sum_order_by": { "placement": [ - 2011 + 2016 ], "player_steam_id": [ - 2011 + 2016 ], "__typename": [ - 70 + 75 ] }, "tournament_trophies_update_column": {}, "tournament_trophies_updates": { "_inc": [ - 3698 + 3744 ], "_set": [ - 3711 + 3757 ], "where": [ - 3696 + 3742 ], "__typename": [ - 70 + 75 ] }, "tournament_trophies_var_pop_fields": { @@ -87822,18 +88651,18 @@ export default { 29 ], "__typename": [ - 70 + 75 ] }, "tournament_trophies_var_pop_order_by": { "placement": [ - 2011 + 2016 ], "player_steam_id": [ - 2011 + 2016 ], "__typename": [ - 70 + 75 ] }, "tournament_trophies_var_samp_fields": { @@ -87844,18 +88673,18 @@ export default { 29 ], "__typename": [ - 70 + 75 ] }, "tournament_trophies_var_samp_order_by": { "placement": [ - 2011 + 2016 ], "player_steam_id": [ - 2011 + 2016 ], "__typename": [ - 70 + 75 ] }, "tournament_trophies_variance_fields": { @@ -87866,32 +88695,32 @@ export default { 29 ], "__typename": [ - 70 + 75 ] }, "tournament_trophies_variance_order_by": { "placement": [ - 2011 + 2016 ], "player_steam_id": [ - 2011 + 2016 ], "__typename": [ - 70 + 75 ] }, "tournament_trophy_configs": { "created_at": [ - 3421 + 3467 ], "custom_name": [ - 70 + 75 ], "id": [ - 3818 + 3864 ], "image_url": [ - 70 + 75 ], "placement": [ 38 @@ -87900,63 +88729,63 @@ export default { 38 ], "tournament": [ - 3772 + 3818 ], "tournament_id": [ - 3818 + 3864 ], "updated_at": [ - 3421 + 3467 ], "__typename": [ - 70 + 75 ] }, "tournament_trophy_configs_aggregate": { "aggregate": [ - 3734 + 3780 ], "nodes": [ - 3730 + 3776 ], "__typename": [ - 70 + 75 ] }, "tournament_trophy_configs_aggregate_bool_exp": { "count": [ - 3733 + 3779 ], "__typename": [ - 70 + 75 ] }, "tournament_trophy_configs_aggregate_bool_exp_count": { "arguments": [ - 3752 + 3798 ], "distinct": [ 3 ], "filter": [ - 3739 + 3785 ], "predicate": [ 39 ], "__typename": [ - 70 + 75 ] }, "tournament_trophy_configs_aggregate_fields": { "avg": [ - 3737 + 3783 ], "count": [ 38, { "columns": [ - 3752, + 3798, "[tournament_trophy_configs_select_column!]" ], "distinct": [ @@ -87965,83 +88794,83 @@ export default { } ], "max": [ - 3743 + 3789 ], "min": [ - 3745 + 3791 ], "stddev": [ - 3754 + 3800 ], "stddev_pop": [ - 3756 + 3802 ], "stddev_samp": [ - 3758 + 3804 ], "sum": [ - 3762 + 3808 ], "var_pop": [ - 3766 + 3812 ], "var_samp": [ - 3768 + 3814 ], "variance": [ - 3770 + 3816 ], "__typename": [ - 70 + 75 ] }, "tournament_trophy_configs_aggregate_order_by": { "avg": [ - 3738 + 3784 ], "count": [ - 2011 + 2016 ], "max": [ - 3744 + 3790 ], "min": [ - 3746 + 3792 ], "stddev": [ - 3755 + 3801 ], "stddev_pop": [ - 3757 + 3803 ], "stddev_samp": [ - 3759 + 3805 ], "sum": [ - 3763 + 3809 ], "var_pop": [ - 3767 + 3813 ], "var_samp": [ - 3769 + 3815 ], "variance": [ - 3771 + 3817 ], "__typename": [ - 70 + 75 ] }, "tournament_trophy_configs_arr_rel_insert_input": { "data": [ - 3742 + 3788 ], "on_conflict": [ - 3749 + 3795 ], "__typename": [ - 70 + 75 ] }, "tournament_trophy_configs_avg_fields": { @@ -88052,41 +88881,41 @@ export default { 29 ], "__typename": [ - 70 + 75 ] }, "tournament_trophy_configs_avg_order_by": { "placement": [ - 2011 + 2016 ], "silhouette": [ - 2011 + 2016 ], "__typename": [ - 70 + 75 ] }, "tournament_trophy_configs_bool_exp": { "_and": [ - 3739 + 3785 ], "_not": [ - 3739 + 3785 ], "_or": [ - 3739 + 3785 ], "created_at": [ - 3422 + 3468 ], "custom_name": [ - 72 + 77 ], "id": [ - 3820 + 3866 ], "image_url": [ - 72 + 77 ], "placement": [ 39 @@ -88095,16 +88924,16 @@ export default { 39 ], "tournament": [ - 3783 + 3829 ], "tournament_id": [ - 3820 + 3866 ], "updated_at": [ - 3422 + 3468 ], "__typename": [ - 70 + 75 ] }, "tournament_trophy_configs_constraint": {}, @@ -88116,21 +88945,21 @@ export default { 38 ], "__typename": [ - 70 + 75 ] }, "tournament_trophy_configs_insert_input": { "created_at": [ - 3421 + 3467 ], "custom_name": [ - 70 + 75 ], "id": [ - 3818 + 3864 ], "image_url": [ - 70 + 75 ], "placement": [ 38 @@ -88139,30 +88968,30 @@ export default { 38 ], "tournament": [ - 3792 + 3838 ], "tournament_id": [ - 3818 + 3864 ], "updated_at": [ - 3421 + 3467 ], "__typename": [ - 70 + 75 ] }, "tournament_trophy_configs_max_fields": { "created_at": [ - 3421 + 3467 ], "custom_name": [ - 70 + 75 ], "id": [ - 3818 + 3864 ], "image_url": [ - 70 + 75 ], "placement": [ 38 @@ -88171,56 +89000,56 @@ export default { 38 ], "tournament_id": [ - 3818 + 3864 ], "updated_at": [ - 3421 + 3467 ], "__typename": [ - 70 + 75 ] }, "tournament_trophy_configs_max_order_by": { "created_at": [ - 2011 + 2016 ], "custom_name": [ - 2011 + 2016 ], "id": [ - 2011 + 2016 ], "image_url": [ - 2011 + 2016 ], "placement": [ - 2011 + 2016 ], "silhouette": [ - 2011 + 2016 ], "tournament_id": [ - 2011 + 2016 ], "updated_at": [ - 2011 + 2016 ], "__typename": [ - 70 + 75 ] }, "tournament_trophy_configs_min_fields": { "created_at": [ - 3421 + 3467 ], "custom_name": [ - 70 + 75 ], "id": [ - 3818 + 3864 ], "image_url": [ - 70 + 75 ], "placement": [ 38 @@ -88229,42 +89058,42 @@ export default { 38 ], "tournament_id": [ - 3818 + 3864 ], "updated_at": [ - 3421 + 3467 ], "__typename": [ - 70 + 75 ] }, "tournament_trophy_configs_min_order_by": { "created_at": [ - 2011 + 2016 ], "custom_name": [ - 2011 + 2016 ], "id": [ - 2011 + 2016 ], "image_url": [ - 2011 + 2016 ], "placement": [ - 2011 + 2016 ], "silhouette": [ - 2011 + 2016 ], "tournament_id": [ - 2011 + 2016 ], "updated_at": [ - 2011 + 2016 ], "__typename": [ - 70 + 75 ] }, "tournament_trophy_configs_mutation_response": { @@ -88272,90 +89101,90 @@ export default { 38 ], "returning": [ - 3730 + 3776 ], "__typename": [ - 70 + 75 ] }, "tournament_trophy_configs_obj_rel_insert_input": { "data": [ - 3742 + 3788 ], "on_conflict": [ - 3749 + 3795 ], "__typename": [ - 70 + 75 ] }, "tournament_trophy_configs_on_conflict": { "constraint": [ - 3740 + 3786 ], "update_columns": [ - 3764 + 3810 ], "where": [ - 3739 + 3785 ], "__typename": [ - 70 + 75 ] }, "tournament_trophy_configs_order_by": { "created_at": [ - 2011 + 2016 ], "custom_name": [ - 2011 + 2016 ], "id": [ - 2011 + 2016 ], "image_url": [ - 2011 + 2016 ], "placement": [ - 2011 + 2016 ], "silhouette": [ - 2011 + 2016 ], "tournament": [ - 3794 + 3840 ], "tournament_id": [ - 2011 + 2016 ], "updated_at": [ - 2011 + 2016 ], "__typename": [ - 70 + 75 ] }, "tournament_trophy_configs_pk_columns_input": { "id": [ - 3818 + 3864 ], "__typename": [ - 70 + 75 ] }, "tournament_trophy_configs_select_column": {}, "tournament_trophy_configs_set_input": { "created_at": [ - 3421 + 3467 ], "custom_name": [ - 70 + 75 ], "id": [ - 3818 + 3864 ], "image_url": [ - 70 + 75 ], "placement": [ 38 @@ -88364,13 +89193,13 @@ export default { 38 ], "tournament_id": [ - 3818 + 3864 ], "updated_at": [ - 3421 + 3467 ], "__typename": [ - 70 + 75 ] }, "tournament_trophy_configs_stddev_fields": { @@ -88381,18 +89210,18 @@ export default { 29 ], "__typename": [ - 70 + 75 ] }, "tournament_trophy_configs_stddev_order_by": { "placement": [ - 2011 + 2016 ], "silhouette": [ - 2011 + 2016 ], "__typename": [ - 70 + 75 ] }, "tournament_trophy_configs_stddev_pop_fields": { @@ -88403,18 +89232,18 @@ export default { 29 ], "__typename": [ - 70 + 75 ] }, "tournament_trophy_configs_stddev_pop_order_by": { "placement": [ - 2011 + 2016 ], "silhouette": [ - 2011 + 2016 ], "__typename": [ - 70 + 75 ] }, "tournament_trophy_configs_stddev_samp_fields": { @@ -88425,43 +89254,43 @@ export default { 29 ], "__typename": [ - 70 + 75 ] }, "tournament_trophy_configs_stddev_samp_order_by": { "placement": [ - 2011 + 2016 ], "silhouette": [ - 2011 + 2016 ], "__typename": [ - 70 + 75 ] }, "tournament_trophy_configs_stream_cursor_input": { "initial_value": [ - 3761 + 3807 ], "ordering": [ - 224 + 229 ], "__typename": [ - 70 + 75 ] }, "tournament_trophy_configs_stream_cursor_value_input": { "created_at": [ - 3421 + 3467 ], "custom_name": [ - 70 + 75 ], "id": [ - 3818 + 3864 ], "image_url": [ - 70 + 75 ], "placement": [ 38 @@ -88470,13 +89299,13 @@ export default { 38 ], "tournament_id": [ - 3818 + 3864 ], "updated_at": [ - 3421 + 3467 ], "__typename": [ - 70 + 75 ] }, "tournament_trophy_configs_sum_fields": { @@ -88487,33 +89316,33 @@ export default { 38 ], "__typename": [ - 70 + 75 ] }, "tournament_trophy_configs_sum_order_by": { "placement": [ - 2011 + 2016 ], "silhouette": [ - 2011 + 2016 ], "__typename": [ - 70 + 75 ] }, "tournament_trophy_configs_update_column": {}, "tournament_trophy_configs_updates": { "_inc": [ - 3741 + 3787 ], "_set": [ - 3753 + 3799 ], "where": [ - 3739 + 3785 ], "__typename": [ - 70 + 75 ] }, "tournament_trophy_configs_var_pop_fields": { @@ -88524,18 +89353,18 @@ export default { 29 ], "__typename": [ - 70 + 75 ] }, "tournament_trophy_configs_var_pop_order_by": { "placement": [ - 2011 + 2016 ], "silhouette": [ - 2011 + 2016 ], "__typename": [ - 70 + 75 ] }, "tournament_trophy_configs_var_samp_fields": { @@ -88546,18 +89375,18 @@ export default { 29 ], "__typename": [ - 70 + 75 ] }, "tournament_trophy_configs_var_samp_order_by": { "placement": [ - 2011 + 2016 ], "silhouette": [ - 2011 + 2016 ], "__typename": [ - 70 + 75 ] }, "tournament_trophy_configs_variance_fields": { @@ -88568,23 +89397,23 @@ export default { 29 ], "__typename": [ - 70 + 75 ] }, "tournament_trophy_configs_variance_order_by": { "placement": [ - 2011 + 2016 ], "silhouette": [ - 2011 + 2016 ], "__typename": [ - 70 + 75 ] }, "tournaments": { "admin": [ - 2878 + 2915 ], "auto_start": [ 3 @@ -88614,13 +89443,13 @@ export default { 3 ], "created_at": [ - 3421 + 3467 ], "description": [ - 70 + 75 ], "discord_guild_id": [ - 70 + 75 ], "discord_notifications_enabled": [ 3 @@ -88662,22 +89491,22 @@ export default { 3 ], "discord_role_id": [ - 70 + 75 ], "discord_voice_enabled": [ 3 ], "discord_webhook": [ - 70 + 75 ], "e_tournament_status": [ - 1003 + 1008 ], "has_min_teams": [ 3 ], "id": [ - 3818 + 3864 ], "is_organizer": [ 3 @@ -88686,7 +89515,7 @@ export default { 3 ], "match_options_id": [ - 3818 + 3864 ], "max_players_per_lineup": [ 38 @@ -88695,19 +89524,19 @@ export default { 38 ], "name": [ - 70 + 75 ], "options": [ - 1706 + 1711 ], "organizer_steam_id": [ - 169 + 174 ], "organizers": [ - 3469, + 3515, { "distinct_on": [ - 3490, + 3536, "[tournament_organizers_select_column!]" ], "limit": [ @@ -88717,19 +89546,19 @@ export default { 38 ], "order_by": [ - 3488, + 3534, "[tournament_organizers_order_by!]" ], "where": [ - 3478 + 3524 ] } ], "organizers_aggregate": [ - 3470, + 3516, { "distinct_on": [ - 3490, + 3536, "[tournament_organizers_select_column!]" ], "limit": [ @@ -88739,19 +89568,19 @@ export default { 38 ], "order_by": [ - 3488, + 3534, "[tournament_organizers_order_by!]" ], "where": [ - 3478 + 3524 ] } ], "player_stats": [ - 4518, + 4564, { "distinct_on": [ - 4544, + 4590, "[v_tournament_player_stats_select_column!]" ], "limit": [ @@ -88761,19 +89590,19 @@ export default { 38 ], "order_by": [ - 4543, + 4589, "[v_tournament_player_stats_order_by!]" ], "where": [ - 4537 + 4583 ] } ], "player_stats_aggregate": [ - 4519, + 4565, { "distinct_on": [ - 4544, + 4590, "[v_tournament_player_stats_select_column!]" ], "limit": [ @@ -88783,19 +89612,19 @@ export default { 38 ], "order_by": [ - 4543, + 4589, "[v_tournament_player_stats_order_by!]" ], "where": [ - 4537 + 4583 ] } ], "results": [ - 4467, + 4513, { "distinct_on": [ - 4493, + 4539, "[v_team_tournament_results_select_column!]" ], "limit": [ @@ -88805,19 +89634,19 @@ export default { 38 ], "order_by": [ - 4492, + 4538, "[v_team_tournament_results_order_by!]" ], "where": [ - 4486 + 4532 ] } ], "results_aggregate": [ - 4468, + 4514, { "distinct_on": [ - 4493, + 4539, "[v_team_tournament_results_select_column!]" ], "limit": [ @@ -88827,19 +89656,19 @@ export default { 38 ], "order_by": [ - 4492, + 4538, "[v_team_tournament_results_order_by!]" ], "where": [ - 4486 + 4532 ] } ], "rosters": [ - 3602, + 3648, { "distinct_on": [ - 3623, + 3669, "[tournament_team_roster_select_column!]" ], "limit": [ @@ -88849,19 +89678,19 @@ export default { 38 ], "order_by": [ - 3621, + 3667, "[tournament_team_roster_order_by!]" ], "where": [ - 3611 + 3657 ] } ], "rosters_aggregate": [ - 3603, + 3649, { "distinct_on": [ - 3623, + 3669, "[tournament_team_roster_select_column!]" ], "limit": [ @@ -88871,19 +89700,19 @@ export default { 38 ], "order_by": [ - 3621, + 3667, "[tournament_team_roster_order_by!]" ], "where": [ - 3611 + 3657 ] } ], "stages": [ - 3510, + 3556, { "distinct_on": [ - 3539, + 3585, "[tournament_stages_select_column!]" ], "limit": [ @@ -88893,19 +89722,19 @@ export default { 38 ], "order_by": [ - 3536, + 3582, "[tournament_stages_order_by!]" ], "where": [ - 3522 + 3568 ] } ], "stages_aggregate": [ - 3511, + 3557, { "distinct_on": [ - 3539, + 3585, "[tournament_stages_select_column!]" ], "limit": [ @@ -88915,25 +89744,25 @@ export default { 38 ], "order_by": [ - 3536, + 3582, "[tournament_stages_order_by!]" ], "where": [ - 3522 + 3568 ] } ], "start": [ - 3421 + 3467 ], "status": [ - 1008 + 1013 ], "teams": [ - 3643, + 3689, { "distinct_on": [ - 3665, + 3711, "[tournament_teams_select_column!]" ], "limit": [ @@ -88943,19 +89772,19 @@ export default { 38 ], "order_by": [ - 3663, + 3709, "[tournament_teams_order_by!]" ], "where": [ - 3652 + 3698 ] } ], "teams_aggregate": [ - 3644, + 3690, { "distinct_on": [ - 3665, + 3711, "[tournament_teams_select_column!]" ], "limit": [ @@ -88965,19 +89794,19 @@ export default { 38 ], "order_by": [ - 3663, + 3709, "[tournament_teams_order_by!]" ], "where": [ - 3652 + 3698 ] } ], "trophies": [ - 3685, + 3731, { "distinct_on": [ - 3708, + 3754, "[tournament_trophies_select_column!]" ], "limit": [ @@ -88987,19 +89816,19 @@ export default { 38 ], "order_by": [ - 3706, + 3752, "[tournament_trophies_order_by!]" ], "where": [ - 3696 + 3742 ] } ], "trophies_aggregate": [ - 3686, + 3732, { "distinct_on": [ - 3708, + 3754, "[tournament_trophies_select_column!]" ], "limit": [ @@ -89009,11 +89838,11 @@ export default { 38 ], "order_by": [ - 3706, + 3752, "[tournament_trophies_order_by!]" ], "where": [ - 3696 + 3742 ] } ], @@ -89021,10 +89850,10 @@ export default { 3 ], "trophy_configs": [ - 3730, + 3776, { "distinct_on": [ - 3752, + 3798, "[tournament_trophy_configs_select_column!]" ], "limit": [ @@ -89034,19 +89863,19 @@ export default { 38 ], "order_by": [ - 3750, + 3796, "[tournament_trophy_configs_order_by!]" ], "where": [ - 3739 + 3785 ] } ], "trophy_configs_aggregate": [ - 3731, + 3777, { "distinct_on": [ - 3752, + 3798, "[tournament_trophy_configs_select_column!]" ], "limit": [ @@ -89056,103 +89885,103 @@ export default { 38 ], "order_by": [ - 3750, + 3796, "[tournament_trophy_configs_order_by!]" ], "where": [ - 3739 + 3785 ] } ], "__typename": [ - 70 + 75 ] }, "tournaments_aggregate": { "aggregate": [ - 3778 + 3824 ], "nodes": [ - 3772 + 3818 ], "__typename": [ - 70 + 75 ] }, "tournaments_aggregate_bool_exp": { "bool_and": [ - 3775 + 3821 ], "bool_or": [ - 3776 + 3822 ], "count": [ - 3777 + 3823 ], "__typename": [ - 70 + 75 ] }, "tournaments_aggregate_bool_exp_bool_and": { "arguments": [ - 3797 + 3843 ], "distinct": [ 3 ], "filter": [ - 3783 + 3829 ], "predicate": [ 4 ], "__typename": [ - 70 + 75 ] }, "tournaments_aggregate_bool_exp_bool_or": { "arguments": [ - 3798 + 3844 ], "distinct": [ 3 ], "filter": [ - 3783 + 3829 ], "predicate": [ 4 ], "__typename": [ - 70 + 75 ] }, "tournaments_aggregate_bool_exp_count": { "arguments": [ - 3796 + 3842 ], "distinct": [ 3 ], "filter": [ - 3783 + 3829 ], "predicate": [ 39 ], "__typename": [ - 70 + 75 ] }, "tournaments_aggregate_fields": { "avg": [ - 3781 + 3827 ], "count": [ 38, { "columns": [ - 3796, + 3842, "[tournaments_select_column!]" ], "distinct": [ @@ -89161,83 +89990,83 @@ export default { } ], "max": [ - 3787 + 3833 ], "min": [ - 3789 + 3835 ], "stddev": [ - 3800 + 3846 ], "stddev_pop": [ - 3802 + 3848 ], "stddev_samp": [ - 3804 + 3850 ], "sum": [ - 3808 + 3854 ], "var_pop": [ - 3812 + 3858 ], "var_samp": [ - 3814 + 3860 ], "variance": [ - 3816 + 3862 ], "__typename": [ - 70 + 75 ] }, "tournaments_aggregate_order_by": { "avg": [ - 3782 + 3828 ], "count": [ - 2011 + 2016 ], "max": [ - 3788 + 3834 ], "min": [ - 3790 + 3836 ], "stddev": [ - 3801 + 3847 ], "stddev_pop": [ - 3803 + 3849 ], "stddev_samp": [ - 3805 + 3851 ], "sum": [ - 3809 + 3855 ], "var_pop": [ - 3813 + 3859 ], "var_samp": [ - 3815 + 3861 ], "variance": [ - 3817 + 3863 ], "__typename": [ - 70 + 75 ] }, "tournaments_arr_rel_insert_input": { "data": [ - 3786 + 3832 ], "on_conflict": [ - 3793 + 3839 ], "__typename": [ - 70 + 75 ] }, "tournaments_avg_fields": { @@ -89251,29 +90080,29 @@ export default { 29 ], "__typename": [ - 70 + 75 ] }, "tournaments_avg_order_by": { "organizer_steam_id": [ - 2011 + 2016 ], "__typename": [ - 70 + 75 ] }, "tournaments_bool_exp": { "_and": [ - 3783 + 3829 ], "_not": [ - 3783 + 3829 ], "_or": [ - 3783 + 3829 ], "admin": [ - 2882 + 2919 ], "auto_start": [ 4 @@ -89303,13 +90132,13 @@ export default { 4 ], "created_at": [ - 3422 + 3468 ], "description": [ - 72 + 77 ], "discord_guild_id": [ - 72 + 77 ], "discord_notifications_enabled": [ 4 @@ -89351,22 +90180,22 @@ export default { 4 ], "discord_role_id": [ - 72 + 77 ], "discord_voice_enabled": [ 4 ], "discord_webhook": [ - 72 + 77 ], "e_tournament_status": [ - 1006 + 1011 ], "has_min_teams": [ 4 ], "id": [ - 3820 + 3866 ], "is_organizer": [ 4 @@ -89375,7 +90204,7 @@ export default { 4 ], "match_options_id": [ - 3820 + 3866 ], "max_players_per_lineup": [ 39 @@ -89384,99 +90213,99 @@ export default { 39 ], "name": [ - 72 + 77 ], "options": [ - 1710 + 1715 ], "organizer_steam_id": [ - 171 + 176 ], "organizers": [ - 3478 + 3524 ], "organizers_aggregate": [ - 3471 + 3517 ], "player_stats": [ - 4537 + 4583 ], "player_stats_aggregate": [ - 4520 + 4566 ], "results": [ - 4486 + 4532 ], "results_aggregate": [ - 4469 + 4515 ], "rosters": [ - 3611 + 3657 ], "rosters_aggregate": [ - 3604 + 3650 ], "stages": [ - 3522 + 3568 ], "stages_aggregate": [ - 3512 + 3558 ], "start": [ - 3422 + 3468 ], "status": [ - 1009 + 1014 ], "teams": [ - 3652 + 3698 ], "teams_aggregate": [ - 3645 + 3691 ], "trophies": [ - 3696 + 3742 ], "trophies_aggregate": [ - 3687 + 3733 ], "trophies_enabled": [ 4 ], "trophy_configs": [ - 3739 + 3785 ], "trophy_configs_aggregate": [ - 3732 + 3778 ], "__typename": [ - 70 + 75 ] }, "tournaments_constraint": {}, "tournaments_inc_input": { "organizer_steam_id": [ - 169 + 174 ], "__typename": [ - 70 + 75 ] }, "tournaments_insert_input": { "admin": [ - 2889 + 2926 ], "auto_start": [ 3 ], "created_at": [ - 3421 + 3467 ], "description": [ - 70 + 75 ], "discord_guild_id": [ - 70 + 75 ], "discord_notifications_enabled": [ 3 @@ -89518,90 +90347,90 @@ export default { 3 ], "discord_role_id": [ - 70 + 75 ], "discord_voice_enabled": [ 3 ], "discord_webhook": [ - 70 + 75 ], "e_tournament_status": [ - 1014 + 1019 ], "id": [ - 3818 + 3864 ], "match_options_id": [ - 3818 + 3864 ], "name": [ - 70 + 75 ], "options": [ - 1717 + 1722 ], "organizer_steam_id": [ - 169 + 174 ], "organizers": [ - 3475 + 3521 ], "player_stats": [ - 4534 + 4580 ], "results": [ - 4483 + 4529 ], "rosters": [ - 3608 + 3654 ], "stages": [ - 3519 + 3565 ], "start": [ - 3421 + 3467 ], "status": [ - 1008 + 1013 ], "teams": [ - 3649 + 3695 ], "trophies": [ - 3693 + 3739 ], "trophies_enabled": [ 3 ], "trophy_configs": [ - 3736 + 3782 ], "__typename": [ - 70 + 75 ] }, "tournaments_max_fields": { "created_at": [ - 3421 + 3467 ], "description": [ - 70 + 75 ], "discord_guild_id": [ - 70 + 75 ], "discord_role_id": [ - 70 + 75 ], "discord_webhook": [ - 70 + 75 ], "id": [ - 3818 + 3864 ], "match_options_id": [ - 3818 + 3864 ], "max_players_per_lineup": [ 38 @@ -89610,74 +90439,74 @@ export default { 38 ], "name": [ - 70 + 75 ], "organizer_steam_id": [ - 169 + 174 ], "start": [ - 3421 + 3467 ], "__typename": [ - 70 + 75 ] }, "tournaments_max_order_by": { "created_at": [ - 2011 + 2016 ], "description": [ - 2011 + 2016 ], "discord_guild_id": [ - 2011 + 2016 ], "discord_role_id": [ - 2011 + 2016 ], "discord_webhook": [ - 2011 + 2016 ], "id": [ - 2011 + 2016 ], "match_options_id": [ - 2011 + 2016 ], "name": [ - 2011 + 2016 ], "organizer_steam_id": [ - 2011 + 2016 ], "start": [ - 2011 + 2016 ], "__typename": [ - 70 + 75 ] }, "tournaments_min_fields": { "created_at": [ - 3421 + 3467 ], "description": [ - 70 + 75 ], "discord_guild_id": [ - 70 + 75 ], "discord_role_id": [ - 70 + 75 ], "discord_webhook": [ - 70 + 75 ], "id": [ - 3818 + 3864 ], "match_options_id": [ - 3818 + 3864 ], "max_players_per_lineup": [ 38 @@ -89686,51 +90515,51 @@ export default { 38 ], "name": [ - 70 + 75 ], "organizer_steam_id": [ - 169 + 174 ], "start": [ - 3421 + 3467 ], "__typename": [ - 70 + 75 ] }, "tournaments_min_order_by": { "created_at": [ - 2011 + 2016 ], "description": [ - 2011 + 2016 ], "discord_guild_id": [ - 2011 + 2016 ], "discord_role_id": [ - 2011 + 2016 ], "discord_webhook": [ - 2011 + 2016 ], "id": [ - 2011 + 2016 ], "match_options_id": [ - 2011 + 2016 ], "name": [ - 2011 + 2016 ], "organizer_steam_id": [ - 2011 + 2016 ], "start": [ - 2011 + 2016 ], "__typename": [ - 70 + 75 ] }, "tournaments_mutation_response": { @@ -89738,201 +90567,201 @@ export default { 38 ], "returning": [ - 3772 + 3818 ], "__typename": [ - 70 + 75 ] }, "tournaments_obj_rel_insert_input": { "data": [ - 3786 + 3832 ], "on_conflict": [ - 3793 + 3839 ], "__typename": [ - 70 + 75 ] }, "tournaments_on_conflict": { "constraint": [ - 3784 + 3830 ], "update_columns": [ - 3810 + 3856 ], "where": [ - 3783 + 3829 ], "__typename": [ - 70 + 75 ] }, "tournaments_order_by": { "admin": [ - 2891 + 2928 ], "auto_start": [ - 2011 + 2016 ], "can_cancel": [ - 2011 + 2016 ], "can_close_registration": [ - 2011 + 2016 ], "can_join": [ - 2011 + 2016 ], "can_open_registration": [ - 2011 + 2016 ], "can_pause": [ - 2011 + 2016 ], "can_resume": [ - 2011 + 2016 ], "can_setup": [ - 2011 + 2016 ], "can_start": [ - 2011 + 2016 ], "created_at": [ - 2011 + 2016 ], "description": [ - 2011 + 2016 ], "discord_guild_id": [ - 2011 + 2016 ], "discord_notifications_enabled": [ - 2011 + 2016 ], "discord_notify_Canceled": [ - 2011 + 2016 ], "discord_notify_Finished": [ - 2011 + 2016 ], "discord_notify_Forfeit": [ - 2011 + 2016 ], "discord_notify_Live": [ - 2011 + 2016 ], "discord_notify_MapPaused": [ - 2011 + 2016 ], "discord_notify_PickingPlayers": [ - 2011 + 2016 ], "discord_notify_Scheduled": [ - 2011 + 2016 ], "discord_notify_Surrendered": [ - 2011 + 2016 ], "discord_notify_Tie": [ - 2011 + 2016 ], "discord_notify_Veto": [ - 2011 + 2016 ], "discord_notify_WaitingForCheckIn": [ - 2011 + 2016 ], "discord_notify_WaitingForServer": [ - 2011 + 2016 ], "discord_role_id": [ - 2011 + 2016 ], "discord_voice_enabled": [ - 2011 + 2016 ], "discord_webhook": [ - 2011 + 2016 ], "e_tournament_status": [ - 1016 + 1021 ], "has_min_teams": [ - 2011 + 2016 ], "id": [ - 2011 + 2016 ], "is_organizer": [ - 2011 + 2016 ], "joined_tournament": [ - 2011 + 2016 ], "match_options_id": [ - 2011 + 2016 ], "max_players_per_lineup": [ - 2011 + 2016 ], "min_players_per_lineup": [ - 2011 + 2016 ], "name": [ - 2011 + 2016 ], "options": [ - 1719 + 1724 ], "organizer_steam_id": [ - 2011 + 2016 ], "organizers_aggregate": [ - 3474 + 3520 ], "player_stats_aggregate": [ - 4533 + 4579 ], "results_aggregate": [ - 4482 + 4528 ], "rosters_aggregate": [ - 3607 + 3653 ], "stages_aggregate": [ - 3517 + 3563 ], "start": [ - 2011 + 2016 ], "status": [ - 2011 + 2016 ], "teams_aggregate": [ - 3648 + 3694 ], "trophies_aggregate": [ - 3692 + 3738 ], "trophies_enabled": [ - 2011 + 2016 ], "trophy_configs_aggregate": [ - 3735 + 3781 ], "__typename": [ - 70 + 75 ] }, "tournaments_pk_columns_input": { "id": [ - 3818 + 3864 ], "__typename": [ - 70 + 75 ] }, "tournaments_select_column": {}, @@ -89943,13 +90772,13 @@ export default { 3 ], "created_at": [ - 3421 + 3467 ], "description": [ - 70 + 75 ], "discord_guild_id": [ - 70 + 75 ], "discord_notifications_enabled": [ 3 @@ -89991,37 +90820,37 @@ export default { 3 ], "discord_role_id": [ - 70 + 75 ], "discord_voice_enabled": [ 3 ], "discord_webhook": [ - 70 + 75 ], "id": [ - 3818 + 3864 ], "match_options_id": [ - 3818 + 3864 ], "name": [ - 70 + 75 ], "organizer_steam_id": [ - 169 + 174 ], "start": [ - 3421 + 3467 ], "status": [ - 1008 + 1013 ], "trophies_enabled": [ 3 ], "__typename": [ - 70 + 75 ] }, "tournaments_stddev_fields": { @@ -90035,15 +90864,15 @@ export default { 29 ], "__typename": [ - 70 + 75 ] }, "tournaments_stddev_order_by": { "organizer_steam_id": [ - 2011 + 2016 ], "__typename": [ - 70 + 75 ] }, "tournaments_stddev_pop_fields": { @@ -90057,15 +90886,15 @@ export default { 29 ], "__typename": [ - 70 + 75 ] }, "tournaments_stddev_pop_order_by": { "organizer_steam_id": [ - 2011 + 2016 ], "__typename": [ - 70 + 75 ] }, "tournaments_stddev_samp_fields": { @@ -90079,26 +90908,26 @@ export default { 29 ], "__typename": [ - 70 + 75 ] }, "tournaments_stddev_samp_order_by": { "organizer_steam_id": [ - 2011 + 2016 ], "__typename": [ - 70 + 75 ] }, "tournaments_stream_cursor_input": { "initial_value": [ - 3807 + 3853 ], "ordering": [ - 224 + 229 ], "__typename": [ - 70 + 75 ] }, "tournaments_stream_cursor_value_input": { @@ -90106,13 +90935,13 @@ export default { 3 ], "created_at": [ - 3421 + 3467 ], "description": [ - 70 + 75 ], "discord_guild_id": [ - 70 + 75 ], "discord_notifications_enabled": [ 3 @@ -90154,37 +90983,37 @@ export default { 3 ], "discord_role_id": [ - 70 + 75 ], "discord_voice_enabled": [ 3 ], "discord_webhook": [ - 70 + 75 ], "id": [ - 3818 + 3864 ], "match_options_id": [ - 3818 + 3864 ], "name": [ - 70 + 75 ], "organizer_steam_id": [ - 169 + 174 ], "start": [ - 3421 + 3467 ], "status": [ - 1008 + 1013 ], "trophies_enabled": [ 3 ], "__typename": [ - 70 + 75 ] }, "tournaments_sum_fields": { @@ -90195,33 +91024,33 @@ export default { 38 ], "organizer_steam_id": [ - 169 + 174 ], "__typename": [ - 70 + 75 ] }, "tournaments_sum_order_by": { "organizer_steam_id": [ - 2011 + 2016 ], "__typename": [ - 70 + 75 ] }, "tournaments_update_column": {}, "tournaments_updates": { "_inc": [ - 3785 + 3831 ], "_set": [ - 3799 + 3845 ], "where": [ - 3783 + 3829 ], "__typename": [ - 70 + 75 ] }, "tournaments_var_pop_fields": { @@ -90235,15 +91064,15 @@ export default { 29 ], "__typename": [ - 70 + 75 ] }, "tournaments_var_pop_order_by": { "organizer_steam_id": [ - 2011 + 2016 ], "__typename": [ - 70 + 75 ] }, "tournaments_var_samp_fields": { @@ -90257,15 +91086,15 @@ export default { 29 ], "__typename": [ - 70 + 75 ] }, "tournaments_var_samp_order_by": { "organizer_steam_id": [ - 2011 + 2016 ], "__typename": [ - 70 + 75 ] }, "tournaments_variance_fields": { @@ -90279,86 +91108,86 @@ export default { 29 ], "__typename": [ - 70 + 75 ] }, "tournaments_variance_order_by": { "organizer_steam_id": [ - 2011 + 2016 ], "__typename": [ - 70 + 75 ] }, "uuid": {}, "uuid_array_comparison_exp": { "_contained_in": [ - 3818 + 3864 ], "_contains": [ - 3818 + 3864 ], "_eq": [ - 3818 + 3864 ], "_gt": [ - 3818 + 3864 ], "_gte": [ - 3818 + 3864 ], "_in": [ - 3818 + 3864 ], "_is_null": [ 3 ], "_lt": [ - 3818 + 3864 ], "_lte": [ - 3818 + 3864 ], "_neq": [ - 3818 + 3864 ], "_nin": [ - 3818 + 3864 ], "__typename": [ - 70 + 75 ] }, "uuid_comparison_exp": { "_eq": [ - 3818 + 3864 ], "_gt": [ - 3818 + 3864 ], "_gte": [ - 3818 + 3864 ], "_in": [ - 3818 + 3864 ], "_is_null": [ 3 ], "_lt": [ - 3818 + 3864 ], "_lte": [ - 3818 + 3864 ], "_neq": [ - 3818 + 3864 ], "_nin": [ - 3818 + 3864 ], "__typename": [ - 70 + 75 ] }, "v_gpu_pool_status": { @@ -90405,29 +91234,29 @@ export default { 38 ], "__typename": [ - 70 + 75 ] }, "v_gpu_pool_status_aggregate": { "aggregate": [ - 3823 + 3869 ], "nodes": [ - 3821 + 3867 ], "__typename": [ - 70 + 75 ] }, "v_gpu_pool_status_aggregate_fields": { "avg": [ - 3824 + 3870 ], "count": [ 38, { "columns": [ - 3829, + 3875, "[v_gpu_pool_status_select_column!]" ], "distinct": [ @@ -90436,34 +91265,34 @@ export default { } ], "max": [ - 3826 + 3872 ], "min": [ - 3827 + 3873 ], "stddev": [ - 3830 + 3876 ], "stddev_pop": [ - 3831 + 3877 ], "stddev_samp": [ - 3832 + 3878 ], "sum": [ - 3835 + 3881 ], "var_pop": [ - 3836 + 3882 ], "var_samp": [ - 3837 + 3883 ], "variance": [ - 3838 + 3884 ], "__typename": [ - 70 + 75 ] }, "v_gpu_pool_status_avg_fields": { @@ -90498,18 +91327,18 @@ export default { 29 ], "__typename": [ - 70 + 75 ] }, "v_gpu_pool_status_bool_exp": { "_and": [ - 3825 + 3871 ], "_not": [ - 3825 + 3871 ], "_or": [ - 3825 + 3871 ], "demo_free_gpu_nodes": [ 39 @@ -90554,7 +91383,7 @@ export default { 39 ], "__typename": [ - 70 + 75 ] }, "v_gpu_pool_status_max_fields": { @@ -90589,7 +91418,7 @@ export default { 38 ], "__typename": [ - 70 + 75 ] }, "v_gpu_pool_status_min_fields": { @@ -90624,54 +91453,54 @@ export default { 38 ], "__typename": [ - 70 + 75 ] }, "v_gpu_pool_status_order_by": { "demo_free_gpu_nodes": [ - 2011 + 2016 ], "demo_in_progress": [ - 2011 + 2016 ], "demo_total_gpu_nodes": [ - 2011 + 2016 ], "free_gpu_nodes": [ - 2011 + 2016 ], "free_gpu_nodes_for_batch": [ - 2011 + 2016 ], "highlights_in_progress": [ - 2011 + 2016 ], "id": [ - 2011 + 2016 ], "live_in_progress": [ - 2011 + 2016 ], "registered_gpu_nodes": [ - 2011 + 2016 ], "rendering_total_gpu_nodes": [ - 2011 + 2016 ], "renders_paused_for_active_match": [ - 2011 + 2016 ], "streaming_free_gpu_nodes": [ - 2011 + 2016 ], "streaming_total_gpu_nodes": [ - 2011 + 2016 ], "total_gpu_nodes": [ - 2011 + 2016 ], "__typename": [ - 70 + 75 ] }, "v_gpu_pool_status_select_column": {}, @@ -90707,7 +91536,7 @@ export default { 29 ], "__typename": [ - 70 + 75 ] }, "v_gpu_pool_status_stddev_pop_fields": { @@ -90742,7 +91571,7 @@ export default { 29 ], "__typename": [ - 70 + 75 ] }, "v_gpu_pool_status_stddev_samp_fields": { @@ -90777,18 +91606,18 @@ export default { 29 ], "__typename": [ - 70 + 75 ] }, "v_gpu_pool_status_stream_cursor_input": { "initial_value": [ - 3834 + 3880 ], "ordering": [ - 224 + 229 ], "__typename": [ - 70 + 75 ] }, "v_gpu_pool_status_stream_cursor_value_input": { @@ -90835,7 +91664,7 @@ export default { 38 ], "__typename": [ - 70 + 75 ] }, "v_gpu_pool_status_sum_fields": { @@ -90870,7 +91699,7 @@ export default { 38 ], "__typename": [ - 70 + 75 ] }, "v_gpu_pool_status_var_pop_fields": { @@ -90905,7 +91734,7 @@ export default { 29 ], "__typename": [ - 70 + 75 ] }, "v_gpu_pool_status_var_samp_fields": { @@ -90940,7 +91769,7 @@ export default { 29 ], "__typename": [ - 70 + 75 ] }, "v_gpu_pool_status_variance_fields": { @@ -90975,7 +91804,7 @@ export default { 29 ], "__typename": [ - 70 + 75 ] }, "v_match_captains": { @@ -90983,50 +91812,50 @@ export default { 3 ], "discord_id": [ - 70 + 75 ], "id": [ - 3818 + 3864 ], "lineup": [ - 1506 + 1511 ], "match_lineup_id": [ - 3818 + 3864 ], "placeholder_name": [ - 70 + 75 ], "player": [ - 2878 + 2915 ], "steam_id": [ - 169 + 174 ], "__typename": [ - 70 + 75 ] }, "v_match_captains_aggregate": { "aggregate": [ - 3841 + 3887 ], "nodes": [ - 3839 + 3885 ], "__typename": [ - 70 + 75 ] }, "v_match_captains_aggregate_fields": { "avg": [ - 3842 + 3888 ], "count": [ 38, { "columns": [ - 3851, + 3897, "[v_match_captains_select_column!]" ], "distinct": [ @@ -91035,34 +91864,34 @@ export default { } ], "max": [ - 3846 + 3892 ], "min": [ - 3847 + 3893 ], "stddev": [ - 3853 + 3899 ], "stddev_pop": [ - 3854 + 3900 ], "stddev_samp": [ - 3855 + 3901 ], "sum": [ - 3858 + 3904 ], "var_pop": [ - 3860 + 3906 ], "var_samp": [ - 3861 + 3907 ], "variance": [ - 3862 + 3908 ], "__typename": [ - 70 + 75 ] }, "v_match_captains_avg_fields": { @@ -91070,53 +91899,53 @@ export default { 29 ], "__typename": [ - 70 + 75 ] }, "v_match_captains_bool_exp": { "_and": [ - 3843 + 3889 ], "_not": [ - 3843 + 3889 ], "_or": [ - 3843 + 3889 ], "captain": [ 4 ], "discord_id": [ - 72 + 77 ], "id": [ - 3820 + 3866 ], "lineup": [ - 1515 + 1520 ], "match_lineup_id": [ - 3820 + 3866 ], "placeholder_name": [ - 72 + 77 ], "player": [ - 2882 + 2919 ], "steam_id": [ - 171 + 176 ], "__typename": [ - 70 + 75 ] }, "v_match_captains_inc_input": { "steam_id": [ - 169 + 174 ], "__typename": [ - 70 + 75 ] }, "v_match_captains_insert_input": { @@ -91124,68 +91953,68 @@ export default { 3 ], "discord_id": [ - 70 + 75 ], "id": [ - 3818 + 3864 ], "lineup": [ - 1524 + 1529 ], "match_lineup_id": [ - 3818 + 3864 ], "placeholder_name": [ - 70 + 75 ], "player": [ - 2889 + 2926 ], "steam_id": [ - 169 + 174 ], "__typename": [ - 70 + 75 ] }, "v_match_captains_max_fields": { "discord_id": [ - 70 + 75 ], "id": [ - 3818 + 3864 ], "match_lineup_id": [ - 3818 + 3864 ], "placeholder_name": [ - 70 + 75 ], "steam_id": [ - 169 + 174 ], "__typename": [ - 70 + 75 ] }, "v_match_captains_min_fields": { "discord_id": [ - 70 + 75 ], "id": [ - 3818 + 3864 ], "match_lineup_id": [ - 3818 + 3864 ], "placeholder_name": [ - 70 + 75 ], "steam_id": [ - 169 + 174 ], "__typename": [ - 70 + 75 ] }, "v_match_captains_mutation_response": { @@ -91193,47 +92022,47 @@ export default { 38 ], "returning": [ - 3839 + 3885 ], "__typename": [ - 70 + 75 ] }, "v_match_captains_obj_rel_insert_input": { "data": [ - 3845 + 3891 ], "__typename": [ - 70 + 75 ] }, "v_match_captains_order_by": { "captain": [ - 2011 + 2016 ], "discord_id": [ - 2011 + 2016 ], "id": [ - 2011 + 2016 ], "lineup": [ - 1526 + 1531 ], "match_lineup_id": [ - 2011 + 2016 ], "placeholder_name": [ - 2011 + 2016 ], "player": [ - 2891 + 2928 ], "steam_id": [ - 2011 + 2016 ], "__typename": [ - 70 + 75 ] }, "v_match_captains_select_column": {}, @@ -91242,22 +92071,22 @@ export default { 3 ], "discord_id": [ - 70 + 75 ], "id": [ - 3818 + 3864 ], "match_lineup_id": [ - 3818 + 3864 ], "placeholder_name": [ - 70 + 75 ], "steam_id": [ - 169 + 174 ], "__typename": [ - 70 + 75 ] }, "v_match_captains_stddev_fields": { @@ -91265,7 +92094,7 @@ export default { 29 ], "__typename": [ - 70 + 75 ] }, "v_match_captains_stddev_pop_fields": { @@ -91273,7 +92102,7 @@ export default { 29 ], "__typename": [ - 70 + 75 ] }, "v_match_captains_stddev_samp_fields": { @@ -91281,18 +92110,18 @@ export default { 29 ], "__typename": [ - 70 + 75 ] }, "v_match_captains_stream_cursor_input": { "initial_value": [ - 3857 + 3903 ], "ordering": [ - 224 + 229 ], "__typename": [ - 70 + 75 ] }, "v_match_captains_stream_cursor_value_input": { @@ -91300,44 +92129,44 @@ export default { 3 ], "discord_id": [ - 70 + 75 ], "id": [ - 3818 + 3864 ], "match_lineup_id": [ - 3818 + 3864 ], "placeholder_name": [ - 70 + 75 ], "steam_id": [ - 169 + 174 ], "__typename": [ - 70 + 75 ] }, "v_match_captains_sum_fields": { "steam_id": [ - 169 + 174 ], "__typename": [ - 70 + 75 ] }, "v_match_captains_updates": { "_inc": [ - 3844 + 3890 ], "_set": [ - 3852 + 3898 ], "where": [ - 3843 + 3889 ], "__typename": [ - 70 + 75 ] }, "v_match_captains_var_pop_fields": { @@ -91345,7 +92174,7 @@ export default { 29 ], "__typename": [ - 70 + 75 ] }, "v_match_captains_var_samp_fields": { @@ -91353,7 +92182,7 @@ export default { 29 ], "__typename": [ - 70 + 75 ] }, "v_match_captains_variance_fields": { @@ -91361,7 +92190,7 @@ export default { 29 ], "__typename": [ - 70 + 75 ] }, "v_match_clutches": { @@ -91369,90 +92198,90 @@ export default { 38 ], "clutcher": [ - 2878 + 2915 ], "clutcher_steam_id": [ - 169 + 174 ], "kills_in_clutch": [ 38 ], "match": [ - 1826 + 1831 ], "match_id": [ - 3818 + 3864 ], "match_lineup": [ - 1506 + 1511 ], "match_lineup_id": [ - 3818 + 3864 ], "match_map": [ - 1664 + 1669 ], "match_map_id": [ - 3818 + 3864 ], "outcome": [ - 70 + 75 ], "round": [ 38 ], "side": [ - 70 + 75 ], "__typename": [ - 70 + 75 ] }, "v_match_clutches_aggregate": { "aggregate": [ - 3867 + 3913 ], "nodes": [ - 3863 + 3909 ], "__typename": [ - 70 + 75 ] }, "v_match_clutches_aggregate_bool_exp": { "count": [ - 3866 + 3912 ], "__typename": [ - 70 + 75 ] }, "v_match_clutches_aggregate_bool_exp_count": { "arguments": [ - 3879 + 3925 ], "distinct": [ 3 ], "filter": [ - 3872 + 3918 ], "predicate": [ 39 ], "__typename": [ - 70 + 75 ] }, "v_match_clutches_aggregate_fields": { "avg": [ - 3870 + 3916 ], "count": [ 38, { "columns": [ - 3879, + 3925, "[v_match_clutches_select_column!]" ], "distinct": [ @@ -91461,80 +92290,80 @@ export default { } ], "max": [ - 3874 + 3920 ], "min": [ - 3876 + 3922 ], "stddev": [ - 3880 + 3926 ], "stddev_pop": [ - 3882 + 3928 ], "stddev_samp": [ - 3884 + 3930 ], "sum": [ - 3888 + 3934 ], "var_pop": [ - 3890 + 3936 ], "var_samp": [ - 3892 + 3938 ], "variance": [ - 3894 + 3940 ], "__typename": [ - 70 + 75 ] }, "v_match_clutches_aggregate_order_by": { "avg": [ - 3871 + 3917 ], "count": [ - 2011 + 2016 ], "max": [ - 3875 + 3921 ], "min": [ - 3877 + 3923 ], "stddev": [ - 3881 + 3927 ], "stddev_pop": [ - 3883 + 3929 ], "stddev_samp": [ - 3885 + 3931 ], "sum": [ - 3889 + 3935 ], "var_pop": [ - 3891 + 3937 ], "var_samp": [ - 3893 + 3939 ], "variance": [ - 3895 + 3941 ], "__typename": [ - 70 + 75 ] }, "v_match_clutches_arr_rel_insert_input": { "data": [ - 3873 + 3919 ], "__typename": [ - 70 + 75 ] }, "v_match_clutches_avg_fields": { @@ -91551,77 +92380,77 @@ export default { 29 ], "__typename": [ - 70 + 75 ] }, "v_match_clutches_avg_order_by": { "against_count": [ - 2011 + 2016 ], "clutcher_steam_id": [ - 2011 + 2016 ], "kills_in_clutch": [ - 2011 + 2016 ], "round": [ - 2011 + 2016 ], "__typename": [ - 70 + 75 ] }, "v_match_clutches_bool_exp": { "_and": [ - 3872 + 3918 ], "_not": [ - 3872 + 3918 ], "_or": [ - 3872 + 3918 ], "against_count": [ 39 ], "clutcher": [ - 2882 + 2919 ], "clutcher_steam_id": [ - 171 + 176 ], "kills_in_clutch": [ 39 ], "match": [ - 1835 + 1840 ], "match_id": [ - 3820 + 3866 ], "match_lineup": [ - 1515 + 1520 ], "match_lineup_id": [ - 3820 + 3866 ], "match_map": [ - 1673 + 1678 ], "match_map_id": [ - 3820 + 3866 ], "outcome": [ - 72 + 77 ], "round": [ 39 ], "side": [ - 72 + 77 ], "__typename": [ - 70 + 75 ] }, "v_match_clutches_insert_input": { @@ -91629,43 +92458,43 @@ export default { 38 ], "clutcher": [ - 2889 + 2926 ], "clutcher_steam_id": [ - 169 + 174 ], "kills_in_clutch": [ 38 ], "match": [ - 1844 + 1849 ], "match_id": [ - 3818 + 3864 ], "match_lineup": [ - 1524 + 1529 ], "match_lineup_id": [ - 3818 + 3864 ], "match_map": [ - 1682 + 1687 ], "match_map_id": [ - 3818 + 3864 ], "outcome": [ - 70 + 75 ], "round": [ 38 ], "side": [ - 70 + 75 ], "__typename": [ - 70 + 75 ] }, "v_match_clutches_max_fields": { @@ -91673,63 +92502,63 @@ export default { 38 ], "clutcher_steam_id": [ - 169 + 174 ], "kills_in_clutch": [ 38 ], "match_id": [ - 3818 + 3864 ], "match_lineup_id": [ - 3818 + 3864 ], "match_map_id": [ - 3818 + 3864 ], "outcome": [ - 70 + 75 ], "round": [ 38 ], "side": [ - 70 + 75 ], "__typename": [ - 70 + 75 ] }, "v_match_clutches_max_order_by": { "against_count": [ - 2011 + 2016 ], "clutcher_steam_id": [ - 2011 + 2016 ], "kills_in_clutch": [ - 2011 + 2016 ], "match_id": [ - 2011 + 2016 ], "match_lineup_id": [ - 2011 + 2016 ], "match_map_id": [ - 2011 + 2016 ], "outcome": [ - 2011 + 2016 ], "round": [ - 2011 + 2016 ], "side": [ - 2011 + 2016 ], "__typename": [ - 70 + 75 ] }, "v_match_clutches_min_fields": { @@ -91737,107 +92566,107 @@ export default { 38 ], "clutcher_steam_id": [ - 169 + 174 ], "kills_in_clutch": [ 38 ], "match_id": [ - 3818 + 3864 ], "match_lineup_id": [ - 3818 + 3864 ], "match_map_id": [ - 3818 + 3864 ], "outcome": [ - 70 + 75 ], "round": [ 38 ], "side": [ - 70 + 75 ], "__typename": [ - 70 + 75 ] }, "v_match_clutches_min_order_by": { "against_count": [ - 2011 + 2016 ], "clutcher_steam_id": [ - 2011 + 2016 ], "kills_in_clutch": [ - 2011 + 2016 ], "match_id": [ - 2011 + 2016 ], "match_lineup_id": [ - 2011 + 2016 ], "match_map_id": [ - 2011 + 2016 ], "outcome": [ - 2011 + 2016 ], "round": [ - 2011 + 2016 ], "side": [ - 2011 + 2016 ], "__typename": [ - 70 + 75 ] }, "v_match_clutches_order_by": { "against_count": [ - 2011 + 2016 ], "clutcher": [ - 2891 + 2928 ], "clutcher_steam_id": [ - 2011 + 2016 ], "kills_in_clutch": [ - 2011 + 2016 ], "match": [ - 1846 + 1851 ], "match_id": [ - 2011 + 2016 ], "match_lineup": [ - 1526 + 1531 ], "match_lineup_id": [ - 2011 + 2016 ], "match_map": [ - 1684 + 1689 ], "match_map_id": [ - 2011 + 2016 ], "outcome": [ - 2011 + 2016 ], "round": [ - 2011 + 2016 ], "side": [ - 2011 + 2016 ], "__typename": [ - 70 + 75 ] }, "v_match_clutches_select_column": {}, @@ -91855,24 +92684,24 @@ export default { 29 ], "__typename": [ - 70 + 75 ] }, "v_match_clutches_stddev_order_by": { "against_count": [ - 2011 + 2016 ], "clutcher_steam_id": [ - 2011 + 2016 ], "kills_in_clutch": [ - 2011 + 2016 ], "round": [ - 2011 + 2016 ], "__typename": [ - 70 + 75 ] }, "v_match_clutches_stddev_pop_fields": { @@ -91889,24 +92718,24 @@ export default { 29 ], "__typename": [ - 70 + 75 ] }, "v_match_clutches_stddev_pop_order_by": { "against_count": [ - 2011 + 2016 ], "clutcher_steam_id": [ - 2011 + 2016 ], "kills_in_clutch": [ - 2011 + 2016 ], "round": [ - 2011 + 2016 ], "__typename": [ - 70 + 75 ] }, "v_match_clutches_stddev_samp_fields": { @@ -91923,35 +92752,35 @@ export default { 29 ], "__typename": [ - 70 + 75 ] }, "v_match_clutches_stddev_samp_order_by": { "against_count": [ - 2011 + 2016 ], "clutcher_steam_id": [ - 2011 + 2016 ], "kills_in_clutch": [ - 2011 + 2016 ], "round": [ - 2011 + 2016 ], "__typename": [ - 70 + 75 ] }, "v_match_clutches_stream_cursor_input": { "initial_value": [ - 3887 + 3933 ], "ordering": [ - 224 + 229 ], "__typename": [ - 70 + 75 ] }, "v_match_clutches_stream_cursor_value_input": { @@ -91959,31 +92788,31 @@ export default { 38 ], "clutcher_steam_id": [ - 169 + 174 ], "kills_in_clutch": [ 38 ], "match_id": [ - 3818 + 3864 ], "match_lineup_id": [ - 3818 + 3864 ], "match_map_id": [ - 3818 + 3864 ], "outcome": [ - 70 + 75 ], "round": [ 38 ], "side": [ - 70 + 75 ], "__typename": [ - 70 + 75 ] }, "v_match_clutches_sum_fields": { @@ -91991,7 +92820,7 @@ export default { 38 ], "clutcher_steam_id": [ - 169 + 174 ], "kills_in_clutch": [ 38 @@ -92000,24 +92829,24 @@ export default { 38 ], "__typename": [ - 70 + 75 ] }, "v_match_clutches_sum_order_by": { "against_count": [ - 2011 + 2016 ], "clutcher_steam_id": [ - 2011 + 2016 ], "kills_in_clutch": [ - 2011 + 2016 ], "round": [ - 2011 + 2016 ], "__typename": [ - 70 + 75 ] }, "v_match_clutches_var_pop_fields": { @@ -92034,24 +92863,24 @@ export default { 29 ], "__typename": [ - 70 + 75 ] }, "v_match_clutches_var_pop_order_by": { "against_count": [ - 2011 + 2016 ], "clutcher_steam_id": [ - 2011 + 2016 ], "kills_in_clutch": [ - 2011 + 2016 ], "round": [ - 2011 + 2016 ], "__typename": [ - 70 + 75 ] }, "v_match_clutches_var_samp_fields": { @@ -92068,24 +92897,24 @@ export default { 29 ], "__typename": [ - 70 + 75 ] }, "v_match_clutches_var_samp_order_by": { "against_count": [ - 2011 + 2016 ], "clutcher_steam_id": [ - 2011 + 2016 ], "kills_in_clutch": [ - 2011 + 2016 ], "round": [ - 2011 + 2016 ], "__typename": [ - 70 + 75 ] }, "v_match_clutches_variance_fields": { @@ -92102,81 +92931,81 @@ export default { 29 ], "__typename": [ - 70 + 75 ] }, "v_match_clutches_variance_order_by": { "against_count": [ - 2011 + 2016 ], "clutcher_steam_id": [ - 2011 + 2016 ], "kills_in_clutch": [ - 2011 + 2016 ], "round": [ - 2011 + 2016 ], "__typename": [ - 70 + 75 ] }, "v_match_kill_pairs": { "killer_side": [ - 70 + 75 ], "killer_steam_id": [ - 169 + 174 ], "kills": [ 38 ], "match": [ - 1826 + 1831 ], "match_id": [ - 3818 + 3864 ], "match_map": [ - 1664 + 1669 ], "match_map_id": [ - 3818 + 3864 ], "victim_side": [ - 70 + 75 ], "victim_steam_id": [ - 169 + 174 ], "weapon": [ - 70 + 75 ], "__typename": [ - 70 + 75 ] }, "v_match_kill_pairs_aggregate": { "aggregate": [ - 3898 + 3944 ], "nodes": [ - 3896 + 3942 ], "__typename": [ - 70 + 75 ] }, "v_match_kill_pairs_aggregate_fields": { "avg": [ - 3899 + 3945 ], "count": [ 38, { "columns": [ - 3904, + 3950, "[v_match_kill_pairs_select_column!]" ], "distinct": [ @@ -92185,34 +93014,34 @@ export default { } ], "max": [ - 3901 + 3947 ], "min": [ - 3902 + 3948 ], "stddev": [ - 3905 + 3951 ], "stddev_pop": [ - 3906 + 3952 ], "stddev_samp": [ - 3907 + 3953 ], "sum": [ - 3910 + 3956 ], "var_pop": [ - 3911 + 3957 ], "var_samp": [ - 3912 + 3958 ], "variance": [ - 3913 + 3959 ], "__typename": [ - 70 + 75 ] }, "v_match_kill_pairs_avg_fields": { @@ -92226,144 +93055,144 @@ export default { 29 ], "__typename": [ - 70 + 75 ] }, "v_match_kill_pairs_bool_exp": { "_and": [ - 3900 + 3946 ], "_not": [ - 3900 + 3946 ], "_or": [ - 3900 + 3946 ], "killer_side": [ - 72 + 77 ], "killer_steam_id": [ - 171 + 176 ], "kills": [ 39 ], "match": [ - 1835 + 1840 ], "match_id": [ - 3820 + 3866 ], "match_map": [ - 1673 + 1678 ], "match_map_id": [ - 3820 + 3866 ], "victim_side": [ - 72 + 77 ], "victim_steam_id": [ - 171 + 176 ], "weapon": [ - 72 + 77 ], "__typename": [ - 70 + 75 ] }, "v_match_kill_pairs_max_fields": { "killer_side": [ - 70 + 75 ], "killer_steam_id": [ - 169 + 174 ], "kills": [ 38 ], "match_id": [ - 3818 + 3864 ], "match_map_id": [ - 3818 + 3864 ], "victim_side": [ - 70 + 75 ], "victim_steam_id": [ - 169 + 174 ], "weapon": [ - 70 + 75 ], "__typename": [ - 70 + 75 ] }, "v_match_kill_pairs_min_fields": { "killer_side": [ - 70 + 75 ], "killer_steam_id": [ - 169 + 174 ], "kills": [ 38 ], "match_id": [ - 3818 + 3864 ], "match_map_id": [ - 3818 + 3864 ], "victim_side": [ - 70 + 75 ], "victim_steam_id": [ - 169 + 174 ], "weapon": [ - 70 + 75 ], "__typename": [ - 70 + 75 ] }, "v_match_kill_pairs_order_by": { "killer_side": [ - 2011 + 2016 ], "killer_steam_id": [ - 2011 + 2016 ], "kills": [ - 2011 + 2016 ], "match": [ - 1846 + 1851 ], "match_id": [ - 2011 + 2016 ], "match_map": [ - 1684 + 1689 ], "match_map_id": [ - 2011 + 2016 ], "victim_side": [ - 2011 + 2016 ], "victim_steam_id": [ - 2011 + 2016 ], "weapon": [ - 2011 + 2016 ], "__typename": [ - 70 + 75 ] }, "v_match_kill_pairs_select_column": {}, @@ -92378,7 +93207,7 @@ export default { 29 ], "__typename": [ - 70 + 75 ] }, "v_match_kill_pairs_stddev_pop_fields": { @@ -92392,7 +93221,7 @@ export default { 29 ], "__typename": [ - 70 + 75 ] }, "v_match_kill_pairs_stddev_samp_fields": { @@ -92406,61 +93235,61 @@ export default { 29 ], "__typename": [ - 70 + 75 ] }, "v_match_kill_pairs_stream_cursor_input": { "initial_value": [ - 3909 + 3955 ], "ordering": [ - 224 + 229 ], "__typename": [ - 70 + 75 ] }, "v_match_kill_pairs_stream_cursor_value_input": { "killer_side": [ - 70 + 75 ], "killer_steam_id": [ - 169 + 174 ], "kills": [ 38 ], "match_id": [ - 3818 + 3864 ], "match_map_id": [ - 3818 + 3864 ], "victim_side": [ - 70 + 75 ], "victim_steam_id": [ - 169 + 174 ], "weapon": [ - 70 + 75 ], "__typename": [ - 70 + 75 ] }, "v_match_kill_pairs_sum_fields": { "killer_steam_id": [ - 169 + 174 ], "kills": [ 38 ], "victim_steam_id": [ - 169 + 174 ], "__typename": [ - 70 + 75 ] }, "v_match_kill_pairs_var_pop_fields": { @@ -92474,7 +93303,7 @@ export default { 29 ], "__typename": [ - 70 + 75 ] }, "v_match_kill_pairs_var_samp_fields": { @@ -92488,7 +93317,7 @@ export default { 29 ], "__typename": [ - 70 + 75 ] }, "v_match_kill_pairs_variance_fields": { @@ -92502,64 +93331,64 @@ export default { 29 ], "__typename": [ - 70 + 75 ] }, "v_match_lineup_buy_types": { "match": [ - 1826 + 1831 ], "match_id": [ - 3818 + 3864 ], "match_lineup": [ - 1506 + 1511 ], "match_lineup_id": [ - 3818 + 3864 ], "match_map": [ - 1664 + 1669 ], "match_map_id": [ - 3818 + 3864 ], "matchup": [ - 70 + 75 ], "rounds": [ 38 ], "side": [ - 70 + 75 ], "wins": [ 38 ], "__typename": [ - 70 + 75 ] }, "v_match_lineup_buy_types_aggregate": { "aggregate": [ - 3916 + 3962 ], "nodes": [ - 3914 + 3960 ], "__typename": [ - 70 + 75 ] }, "v_match_lineup_buy_types_aggregate_fields": { "avg": [ - 3917 + 3963 ], "count": [ 38, { "columns": [ - 3922, + 3968, "[v_match_lineup_buy_types_select_column!]" ], "distinct": [ @@ -92568,34 +93397,34 @@ export default { } ], "max": [ - 3919 + 3965 ], "min": [ - 3920 + 3966 ], "stddev": [ - 3923 + 3969 ], "stddev_pop": [ - 3924 + 3970 ], "stddev_samp": [ - 3925 + 3971 ], "sum": [ - 3928 + 3974 ], "var_pop": [ - 3929 + 3975 ], "var_samp": [ - 3930 + 3976 ], "variance": [ - 3931 + 3977 ], "__typename": [ - 70 + 75 ] }, "v_match_lineup_buy_types_avg_fields": { @@ -92606,138 +93435,138 @@ export default { 29 ], "__typename": [ - 70 + 75 ] }, "v_match_lineup_buy_types_bool_exp": { "_and": [ - 3918 + 3964 ], "_not": [ - 3918 + 3964 ], "_or": [ - 3918 + 3964 ], "match": [ - 1835 + 1840 ], "match_id": [ - 3820 + 3866 ], "match_lineup": [ - 1515 + 1520 ], "match_lineup_id": [ - 3820 + 3866 ], "match_map": [ - 1673 + 1678 ], "match_map_id": [ - 3820 + 3866 ], "matchup": [ - 72 + 77 ], "rounds": [ 39 ], "side": [ - 72 + 77 ], "wins": [ 39 ], "__typename": [ - 70 + 75 ] }, "v_match_lineup_buy_types_max_fields": { "match_id": [ - 3818 + 3864 ], "match_lineup_id": [ - 3818 + 3864 ], "match_map_id": [ - 3818 + 3864 ], "matchup": [ - 70 + 75 ], "rounds": [ 38 ], "side": [ - 70 + 75 ], "wins": [ 38 ], "__typename": [ - 70 + 75 ] }, "v_match_lineup_buy_types_min_fields": { "match_id": [ - 3818 + 3864 ], "match_lineup_id": [ - 3818 + 3864 ], "match_map_id": [ - 3818 + 3864 ], "matchup": [ - 70 + 75 ], "rounds": [ 38 ], "side": [ - 70 + 75 ], "wins": [ 38 ], "__typename": [ - 70 + 75 ] }, "v_match_lineup_buy_types_order_by": { "match": [ - 1846 + 1851 ], "match_id": [ - 2011 + 2016 ], "match_lineup": [ - 1526 + 1531 ], "match_lineup_id": [ - 2011 + 2016 ], "match_map": [ - 1684 + 1689 ], "match_map_id": [ - 2011 + 2016 ], "matchup": [ - 2011 + 2016 ], "rounds": [ - 2011 + 2016 ], "side": [ - 2011 + 2016 ], "wins": [ - 2011 + 2016 ], "__typename": [ - 70 + 75 ] }, "v_match_lineup_buy_types_select_column": {}, @@ -92749,7 +93578,7 @@ export default { 29 ], "__typename": [ - 70 + 75 ] }, "v_match_lineup_buy_types_stddev_pop_fields": { @@ -92760,7 +93589,7 @@ export default { 29 ], "__typename": [ - 70 + 75 ] }, "v_match_lineup_buy_types_stddev_samp_fields": { @@ -92771,44 +93600,44 @@ export default { 29 ], "__typename": [ - 70 + 75 ] }, "v_match_lineup_buy_types_stream_cursor_input": { "initial_value": [ - 3927 + 3973 ], "ordering": [ - 224 + 229 ], "__typename": [ - 70 + 75 ] }, "v_match_lineup_buy_types_stream_cursor_value_input": { "match_id": [ - 3818 + 3864 ], "match_lineup_id": [ - 3818 + 3864 ], "match_map_id": [ - 3818 + 3864 ], "matchup": [ - 70 + 75 ], "rounds": [ 38 ], "side": [ - 70 + 75 ], "wins": [ 38 ], "__typename": [ - 70 + 75 ] }, "v_match_lineup_buy_types_sum_fields": { @@ -92819,7 +93648,7 @@ export default { 38 ], "__typename": [ - 70 + 75 ] }, "v_match_lineup_buy_types_var_pop_fields": { @@ -92830,7 +93659,7 @@ export default { 29 ], "__typename": [ - 70 + 75 ] }, "v_match_lineup_buy_types_var_samp_fields": { @@ -92841,7 +93670,7 @@ export default { 29 ], "__typename": [ - 70 + 75 ] }, "v_match_lineup_buy_types_variance_fields": { @@ -92852,7 +93681,7 @@ export default { 29 ], "__typename": [ - 70 + 75 ] }, "v_match_lineup_map_stats": { @@ -92869,22 +93698,22 @@ export default { 38 ], "match": [ - 1826 + 1831 ], "match_id": [ - 3818 + 3864 ], "match_lineup": [ - 1506 + 1511 ], "match_lineup_id": [ - 3818 + 3864 ], "match_map": [ - 1664 + 1669 ], "match_map_id": [ - 3818 + 3864 ], "opening_attempts": [ 38 @@ -92905,7 +93734,7 @@ export default { 38 ], "side": [ - 70 + 75 ], "won_buy_eco": [ 38 @@ -92920,29 +93749,29 @@ export default { 38 ], "__typename": [ - 70 + 75 ] }, "v_match_lineup_map_stats_aggregate": { "aggregate": [ - 3934 + 3980 ], "nodes": [ - 3932 + 3978 ], "__typename": [ - 70 + 75 ] }, "v_match_lineup_map_stats_aggregate_fields": { "avg": [ - 3935 + 3981 ], "count": [ 38, { "columns": [ - 3940, + 3986, "[v_match_lineup_map_stats_select_column!]" ], "distinct": [ @@ -92951,34 +93780,34 @@ export default { } ], "max": [ - 3937 + 3983 ], "min": [ - 3938 + 3984 ], "stddev": [ - 3941 + 3987 ], "stddev_pop": [ - 3942 + 3988 ], "stddev_samp": [ - 3943 + 3989 ], "sum": [ - 3946 + 3992 ], "var_pop": [ - 3947 + 3993 ], "var_samp": [ - 3948 + 3994 ], "variance": [ - 3949 + 3995 ], "__typename": [ - 70 + 75 ] }, "v_match_lineup_map_stats_avg_fields": { @@ -93025,18 +93854,18 @@ export default { 29 ], "__typename": [ - 70 + 75 ] }, "v_match_lineup_map_stats_bool_exp": { "_and": [ - 3936 + 3982 ], "_not": [ - 3936 + 3982 ], "_or": [ - 3936 + 3982 ], "man_adv_rounds": [ 39 @@ -93051,22 +93880,22 @@ export default { 39 ], "match": [ - 1835 + 1840 ], "match_id": [ - 3820 + 3866 ], "match_lineup": [ - 1515 + 1520 ], "match_lineup_id": [ - 3820 + 3866 ], "match_map": [ - 1673 + 1678 ], "match_map_id": [ - 3820 + 3866 ], "opening_attempts": [ 39 @@ -93087,7 +93916,7 @@ export default { 39 ], "side": [ - 72 + 77 ], "won_buy_eco": [ 39 @@ -93102,7 +93931,7 @@ export default { 39 ], "__typename": [ - 70 + 75 ] }, "v_match_lineup_map_stats_max_fields": { @@ -93119,13 +93948,13 @@ export default { 38 ], "match_id": [ - 3818 + 3864 ], "match_lineup_id": [ - 3818 + 3864 ], "match_map_id": [ - 3818 + 3864 ], "opening_attempts": [ 38 @@ -93146,7 +93975,7 @@ export default { 38 ], "side": [ - 70 + 75 ], "won_buy_eco": [ 38 @@ -93161,7 +93990,7 @@ export default { 38 ], "__typename": [ - 70 + 75 ] }, "v_match_lineup_map_stats_min_fields": { @@ -93178,13 +94007,13 @@ export default { 38 ], "match_id": [ - 3818 + 3864 ], "match_lineup_id": [ - 3818 + 3864 ], "match_map_id": [ - 3818 + 3864 ], "opening_attempts": [ 38 @@ -93205,7 +94034,7 @@ export default { 38 ], "side": [ - 70 + 75 ], "won_buy_eco": [ 38 @@ -93220,75 +94049,75 @@ export default { 38 ], "__typename": [ - 70 + 75 ] }, "v_match_lineup_map_stats_order_by": { "man_adv_rounds": [ - 2011 + 2016 ], "man_adv_wins": [ - 2011 + 2016 ], "man_dis_rounds": [ - 2011 + 2016 ], "man_dis_wins": [ - 2011 + 2016 ], "match": [ - 1846 + 1851 ], "match_id": [ - 2011 + 2016 ], "match_lineup": [ - 1526 + 1531 ], "match_lineup_id": [ - 2011 + 2016 ], "match_map": [ - 1684 + 1689 ], "match_map_id": [ - 2011 + 2016 ], "opening_attempts": [ - 2011 + 2016 ], "opening_wins": [ - 2011 + 2016 ], "pistol_rounds": [ - 2011 + 2016 ], "pistol_wins": [ - 2011 + 2016 ], "round_wins": [ - 2011 + 2016 ], "rounds": [ - 2011 + 2016 ], "side": [ - 2011 + 2016 ], "won_buy_eco": [ - 2011 + 2016 ], "won_buy_force": [ - 2011 + 2016 ], "won_buy_full": [ - 2011 + 2016 ], "won_buy_pistol": [ - 2011 + 2016 ], "__typename": [ - 70 + 75 ] }, "v_match_lineup_map_stats_select_column": {}, @@ -93336,7 +94165,7 @@ export default { 29 ], "__typename": [ - 70 + 75 ] }, "v_match_lineup_map_stats_stddev_pop_fields": { @@ -93383,7 +94212,7 @@ export default { 29 ], "__typename": [ - 70 + 75 ] }, "v_match_lineup_map_stats_stddev_samp_fields": { @@ -93430,18 +94259,18 @@ export default { 29 ], "__typename": [ - 70 + 75 ] }, "v_match_lineup_map_stats_stream_cursor_input": { "initial_value": [ - 3945 + 3991 ], "ordering": [ - 224 + 229 ], "__typename": [ - 70 + 75 ] }, "v_match_lineup_map_stats_stream_cursor_value_input": { @@ -93458,13 +94287,13 @@ export default { 38 ], "match_id": [ - 3818 + 3864 ], "match_lineup_id": [ - 3818 + 3864 ], "match_map_id": [ - 3818 + 3864 ], "opening_attempts": [ 38 @@ -93485,7 +94314,7 @@ export default { 38 ], "side": [ - 70 + 75 ], "won_buy_eco": [ 38 @@ -93500,7 +94329,7 @@ export default { 38 ], "__typename": [ - 70 + 75 ] }, "v_match_lineup_map_stats_sum_fields": { @@ -93547,7 +94376,7 @@ export default { 38 ], "__typename": [ - 70 + 75 ] }, "v_match_lineup_map_stats_var_pop_fields": { @@ -93594,7 +94423,7 @@ export default { 29 ], "__typename": [ - 70 + 75 ] }, "v_match_lineup_map_stats_var_samp_fields": { @@ -93641,7 +94470,7 @@ export default { 29 ], "__typename": [ - 70 + 75 ] }, "v_match_lineup_map_stats_variance_fields": { @@ -93688,7 +94517,7 @@ export default { 29 ], "__typename": [ - 70 + 75 ] }, "v_match_map_backup_rounds": { @@ -93696,35 +94525,35 @@ export default { 3 ], "match_map_id": [ - 3818 + 3864 ], "round": [ 38 ], "__typename": [ - 70 + 75 ] }, "v_match_map_backup_rounds_aggregate": { "aggregate": [ - 3952 + 3998 ], "nodes": [ - 3950 + 3996 ], "__typename": [ - 70 + 75 ] }, "v_match_map_backup_rounds_aggregate_fields": { "avg": [ - 3953 + 3999 ], "count": [ 38, { "columns": [ - 3961, + 4007, "[v_match_map_backup_rounds_select_column!]" ], "distinct": [ @@ -93733,34 +94562,34 @@ export default { } ], "max": [ - 3957 + 4003 ], "min": [ - 3958 + 4004 ], "stddev": [ - 3963 + 4009 ], "stddev_pop": [ - 3964 + 4010 ], "stddev_samp": [ - 3965 + 4011 ], "sum": [ - 3968 + 4014 ], "var_pop": [ - 3970 + 4016 ], "var_samp": [ - 3971 + 4017 ], "variance": [ - 3972 + 4018 ], "__typename": [ - 70 + 75 ] }, "v_match_map_backup_rounds_avg_fields": { @@ -93768,30 +94597,30 @@ export default { 29 ], "__typename": [ - 70 + 75 ] }, "v_match_map_backup_rounds_bool_exp": { "_and": [ - 3954 + 4000 ], "_not": [ - 3954 + 4000 ], "_or": [ - 3954 + 4000 ], "has_backup_file": [ 4 ], "match_map_id": [ - 3820 + 3866 ], "round": [ 39 ], "__typename": [ - 70 + 75 ] }, "v_match_map_backup_rounds_inc_input": { @@ -93799,7 +94628,7 @@ export default { 38 ], "__typename": [ - 70 + 75 ] }, "v_match_map_backup_rounds_insert_input": { @@ -93807,35 +94636,35 @@ export default { 3 ], "match_map_id": [ - 3818 + 3864 ], "round": [ 38 ], "__typename": [ - 70 + 75 ] }, "v_match_map_backup_rounds_max_fields": { "match_map_id": [ - 3818 + 3864 ], "round": [ 38 ], "__typename": [ - 70 + 75 ] }, "v_match_map_backup_rounds_min_fields": { "match_map_id": [ - 3818 + 3864 ], "round": [ 38 ], "__typename": [ - 70 + 75 ] }, "v_match_map_backup_rounds_mutation_response": { @@ -93843,24 +94672,24 @@ export default { 38 ], "returning": [ - 3950 + 3996 ], "__typename": [ - 70 + 75 ] }, "v_match_map_backup_rounds_order_by": { "has_backup_file": [ - 2011 + 2016 ], "match_map_id": [ - 2011 + 2016 ], "round": [ - 2011 + 2016 ], "__typename": [ - 70 + 75 ] }, "v_match_map_backup_rounds_select_column": {}, @@ -93869,13 +94698,13 @@ export default { 3 ], "match_map_id": [ - 3818 + 3864 ], "round": [ 38 ], "__typename": [ - 70 + 75 ] }, "v_match_map_backup_rounds_stddev_fields": { @@ -93883,7 +94712,7 @@ export default { 29 ], "__typename": [ - 70 + 75 ] }, "v_match_map_backup_rounds_stddev_pop_fields": { @@ -93891,7 +94720,7 @@ export default { 29 ], "__typename": [ - 70 + 75 ] }, "v_match_map_backup_rounds_stddev_samp_fields": { @@ -93899,18 +94728,18 @@ export default { 29 ], "__typename": [ - 70 + 75 ] }, "v_match_map_backup_rounds_stream_cursor_input": { "initial_value": [ - 3967 + 4013 ], "ordering": [ - 224 + 229 ], "__typename": [ - 70 + 75 ] }, "v_match_map_backup_rounds_stream_cursor_value_input": { @@ -93918,13 +94747,13 @@ export default { 3 ], "match_map_id": [ - 3818 + 3864 ], "round": [ 38 ], "__typename": [ - 70 + 75 ] }, "v_match_map_backup_rounds_sum_fields": { @@ -93932,21 +94761,21 @@ export default { 38 ], "__typename": [ - 70 + 75 ] }, "v_match_map_backup_rounds_updates": { "_inc": [ - 3955 + 4001 ], "_set": [ - 3962 + 4008 ], "where": [ - 3954 + 4000 ], "__typename": [ - 70 + 75 ] }, "v_match_map_backup_rounds_var_pop_fields": { @@ -93954,7 +94783,7 @@ export default { 29 ], "__typename": [ - 70 + 75 ] }, "v_match_map_backup_rounds_var_samp_fields": { @@ -93962,7 +94791,7 @@ export default { 29 ], "__typename": [ - 70 + 75 ] }, "v_match_map_backup_rounds_variance_fields": { @@ -93970,7 +94799,7 @@ export default { 29 ], "__typename": [ - 70 + 75 ] }, "v_match_player_buy_types": { @@ -93981,62 +94810,62 @@ export default { 38 ], "match": [ - 1826 + 1831 ], "match_id": [ - 3818 + 3864 ], "match_lineup": [ - 1506 + 1511 ], "match_lineup_id": [ - 3818 + 3864 ], "match_map": [ - 1664 + 1669 ], "match_map_id": [ - 3818 + 3864 ], "matchup": [ - 70 + 75 ], "player": [ - 2878 + 2915 ], "rounds": [ 38 ], "side": [ - 70 + 75 ], "steam_id": [ - 169 + 174 ], "__typename": [ - 70 + 75 ] }, "v_match_player_buy_types_aggregate": { "aggregate": [ - 3975 + 4021 ], "nodes": [ - 3973 + 4019 ], "__typename": [ - 70 + 75 ] }, "v_match_player_buy_types_aggregate_fields": { "avg": [ - 3976 + 4022 ], "count": [ 38, { "columns": [ - 3981, + 4027, "[v_match_player_buy_types_select_column!]" ], "distinct": [ @@ -94045,34 +94874,34 @@ export default { } ], "max": [ - 3978 + 4024 ], "min": [ - 3979 + 4025 ], "stddev": [ - 3982 + 4028 ], "stddev_pop": [ - 3983 + 4029 ], "stddev_samp": [ - 3984 + 4030 ], "sum": [ - 3987 + 4033 ], "var_pop": [ - 3988 + 4034 ], "var_samp": [ - 3989 + 4035 ], "variance": [ - 3990 + 4036 ], "__typename": [ - 70 + 75 ] }, "v_match_player_buy_types_avg_fields": { @@ -94089,18 +94918,18 @@ export default { 29 ], "__typename": [ - 70 + 75 ] }, "v_match_player_buy_types_bool_exp": { "_and": [ - 3977 + 4023 ], "_not": [ - 3977 + 4023 ], "_or": [ - 3977 + 4023 ], "deaths": [ 39 @@ -94109,40 +94938,40 @@ export default { 39 ], "match": [ - 1835 + 1840 ], "match_id": [ - 3820 + 3866 ], "match_lineup": [ - 1515 + 1520 ], "match_lineup_id": [ - 3820 + 3866 ], "match_map": [ - 1673 + 1678 ], "match_map_id": [ - 3820 + 3866 ], "matchup": [ - 72 + 77 ], "player": [ - 2882 + 2919 ], "rounds": [ 39 ], "side": [ - 72 + 77 ], "steam_id": [ - 171 + 176 ], "__typename": [ - 70 + 75 ] }, "v_match_player_buy_types_max_fields": { @@ -94153,28 +94982,28 @@ export default { 38 ], "match_id": [ - 3818 + 3864 ], "match_lineup_id": [ - 3818 + 3864 ], "match_map_id": [ - 3818 + 3864 ], "matchup": [ - 70 + 75 ], "rounds": [ 38 ], "side": [ - 70 + 75 ], "steam_id": [ - 169 + 174 ], "__typename": [ - 70 + 75 ] }, "v_match_player_buy_types_min_fields": { @@ -94185,72 +95014,72 @@ export default { 38 ], "match_id": [ - 3818 + 3864 ], "match_lineup_id": [ - 3818 + 3864 ], "match_map_id": [ - 3818 + 3864 ], "matchup": [ - 70 + 75 ], "rounds": [ 38 ], "side": [ - 70 + 75 ], "steam_id": [ - 169 + 174 ], "__typename": [ - 70 + 75 ] }, "v_match_player_buy_types_order_by": { "deaths": [ - 2011 + 2016 ], "kills": [ - 2011 + 2016 ], "match": [ - 1846 + 1851 ], "match_id": [ - 2011 + 2016 ], "match_lineup": [ - 1526 + 1531 ], "match_lineup_id": [ - 2011 + 2016 ], "match_map": [ - 1684 + 1689 ], "match_map_id": [ - 2011 + 2016 ], "matchup": [ - 2011 + 2016 ], "player": [ - 2891 + 2928 ], "rounds": [ - 2011 + 2016 ], "side": [ - 2011 + 2016 ], "steam_id": [ - 2011 + 2016 ], "__typename": [ - 70 + 75 ] }, "v_match_player_buy_types_select_column": {}, @@ -94268,7 +95097,7 @@ export default { 29 ], "__typename": [ - 70 + 75 ] }, "v_match_player_buy_types_stddev_pop_fields": { @@ -94285,7 +95114,7 @@ export default { 29 ], "__typename": [ - 70 + 75 ] }, "v_match_player_buy_types_stddev_samp_fields": { @@ -94302,18 +95131,18 @@ export default { 29 ], "__typename": [ - 70 + 75 ] }, "v_match_player_buy_types_stream_cursor_input": { "initial_value": [ - 3986 + 4032 ], "ordering": [ - 224 + 229 ], "__typename": [ - 70 + 75 ] }, "v_match_player_buy_types_stream_cursor_value_input": { @@ -94324,28 +95153,28 @@ export default { 38 ], "match_id": [ - 3818 + 3864 ], "match_lineup_id": [ - 3818 + 3864 ], "match_map_id": [ - 3818 + 3864 ], "matchup": [ - 70 + 75 ], "rounds": [ 38 ], "side": [ - 70 + 75 ], "steam_id": [ - 169 + 174 ], "__typename": [ - 70 + 75 ] }, "v_match_player_buy_types_sum_fields": { @@ -94359,10 +95188,10 @@ export default { 38 ], "steam_id": [ - 169 + 174 ], "__typename": [ - 70 + 75 ] }, "v_match_player_buy_types_var_pop_fields": { @@ -94379,7 +95208,7 @@ export default { 29 ], "__typename": [ - 70 + 75 ] }, "v_match_player_buy_types_var_samp_fields": { @@ -94396,7 +95225,7 @@ export default { 29 ], "__typename": [ - 70 + 75 ] }, "v_match_player_buy_types_variance_fields": { @@ -94413,7 +95242,7 @@ export default { 29 ], "__typename": [ - 70 + 75 ] }, "v_match_player_opening_duels": { @@ -94424,31 +95253,31 @@ export default { 38 ], "match": [ - 1826 + 1831 ], "match_id": [ - 3818 + 3864 ], "match_lineup": [ - 1506 + 1511 ], "match_lineup_id": [ - 3818 + 3864 ], "match_map": [ - 1664 + 1669 ], "match_map_id": [ - 3818 + 3864 ], "player": [ - 2878 + 2915 ], "side": [ - 70 + 75 ], "steam_id": [ - 169 + 174 ], "traded_deaths": [ 38 @@ -94457,54 +95286,54 @@ export default { 38 ], "__typename": [ - 70 + 75 ] }, "v_match_player_opening_duels_aggregate": { "aggregate": [ - 3995 + 4041 ], "nodes": [ - 3991 + 4037 ], "__typename": [ - 70 + 75 ] }, "v_match_player_opening_duels_aggregate_bool_exp": { "count": [ - 3994 + 4040 ], "__typename": [ - 70 + 75 ] }, "v_match_player_opening_duels_aggregate_bool_exp_count": { "arguments": [ - 4007 + 4053 ], "distinct": [ 3 ], "filter": [ - 4000 + 4046 ], "predicate": [ 39 ], "__typename": [ - 70 + 75 ] }, "v_match_player_opening_duels_aggregate_fields": { "avg": [ - 3998 + 4044 ], "count": [ 38, { "columns": [ - 4007, + 4053, "[v_match_player_opening_duels_select_column!]" ], "distinct": [ @@ -94513,80 +95342,80 @@ export default { } ], "max": [ - 4002 + 4048 ], "min": [ - 4004 + 4050 ], "stddev": [ - 4008 + 4054 ], "stddev_pop": [ - 4010 + 4056 ], "stddev_samp": [ - 4012 + 4058 ], "sum": [ - 4016 + 4062 ], "var_pop": [ - 4018 + 4064 ], "var_samp": [ - 4020 + 4066 ], "variance": [ - 4022 + 4068 ], "__typename": [ - 70 + 75 ] }, "v_match_player_opening_duels_aggregate_order_by": { "avg": [ - 3999 + 4045 ], "count": [ - 2011 + 2016 ], "max": [ - 4003 + 4049 ], "min": [ - 4005 + 4051 ], "stddev": [ - 4009 + 4055 ], "stddev_pop": [ - 4011 + 4057 ], "stddev_samp": [ - 4013 + 4059 ], "sum": [ - 4017 + 4063 ], "var_pop": [ - 4019 + 4065 ], "var_samp": [ - 4021 + 4067 ], "variance": [ - 4023 + 4069 ], "__typename": [ - 70 + 75 ] }, "v_match_player_opening_duels_arr_rel_insert_input": { "data": [ - 4001 + 4047 ], "__typename": [ - 70 + 75 ] }, "v_match_player_opening_duels_avg_fields": { @@ -94606,38 +95435,38 @@ export default { 29 ], "__typename": [ - 70 + 75 ] }, "v_match_player_opening_duels_avg_order_by": { "attempts": [ - 2011 + 2016 ], "deaths": [ - 2011 + 2016 ], "steam_id": [ - 2011 + 2016 ], "traded_deaths": [ - 2011 + 2016 ], "wins": [ - 2011 + 2016 ], "__typename": [ - 70 + 75 ] }, "v_match_player_opening_duels_bool_exp": { "_and": [ - 4000 + 4046 ], "_not": [ - 4000 + 4046 ], "_or": [ - 4000 + 4046 ], "attempts": [ 39 @@ -94646,31 +95475,31 @@ export default { 39 ], "match": [ - 1835 + 1840 ], "match_id": [ - 3820 + 3866 ], "match_lineup": [ - 1515 + 1520 ], "match_lineup_id": [ - 3820 + 3866 ], "match_map": [ - 1673 + 1678 ], "match_map_id": [ - 3820 + 3866 ], "player": [ - 2882 + 2919 ], "side": [ - 72 + 77 ], "steam_id": [ - 171 + 176 ], "traded_deaths": [ 39 @@ -94679,7 +95508,7 @@ export default { 39 ], "__typename": [ - 70 + 75 ] }, "v_match_player_opening_duels_insert_input": { @@ -94690,31 +95519,31 @@ export default { 38 ], "match": [ - 1844 + 1849 ], "match_id": [ - 3818 + 3864 ], "match_lineup": [ - 1524 + 1529 ], "match_lineup_id": [ - 3818 + 3864 ], "match_map": [ - 1682 + 1687 ], "match_map_id": [ - 3818 + 3864 ], "player": [ - 2889 + 2926 ], "side": [ - 70 + 75 ], "steam_id": [ - 169 + 174 ], "traded_deaths": [ 38 @@ -94723,7 +95552,7 @@ export default { 38 ], "__typename": [ - 70 + 75 ] }, "v_match_player_opening_duels_max_fields": { @@ -94734,19 +95563,19 @@ export default { 38 ], "match_id": [ - 3818 + 3864 ], "match_lineup_id": [ - 3818 + 3864 ], "match_map_id": [ - 3818 + 3864 ], "side": [ - 70 + 75 ], "steam_id": [ - 169 + 174 ], "traded_deaths": [ 38 @@ -94755,39 +95584,39 @@ export default { 38 ], "__typename": [ - 70 + 75 ] }, "v_match_player_opening_duels_max_order_by": { "attempts": [ - 2011 + 2016 ], "deaths": [ - 2011 + 2016 ], "match_id": [ - 2011 + 2016 ], "match_lineup_id": [ - 2011 + 2016 ], "match_map_id": [ - 2011 + 2016 ], "side": [ - 2011 + 2016 ], "steam_id": [ - 2011 + 2016 ], "traded_deaths": [ - 2011 + 2016 ], "wins": [ - 2011 + 2016 ], "__typename": [ - 70 + 75 ] }, "v_match_player_opening_duels_min_fields": { @@ -94798,19 +95627,19 @@ export default { 38 ], "match_id": [ - 3818 + 3864 ], "match_lineup_id": [ - 3818 + 3864 ], "match_map_id": [ - 3818 + 3864 ], "side": [ - 70 + 75 ], "steam_id": [ - 169 + 174 ], "traded_deaths": [ 38 @@ -94819,83 +95648,83 @@ export default { 38 ], "__typename": [ - 70 + 75 ] }, "v_match_player_opening_duels_min_order_by": { "attempts": [ - 2011 + 2016 ], "deaths": [ - 2011 + 2016 ], "match_id": [ - 2011 + 2016 ], "match_lineup_id": [ - 2011 + 2016 ], "match_map_id": [ - 2011 + 2016 ], "side": [ - 2011 + 2016 ], "steam_id": [ - 2011 + 2016 ], "traded_deaths": [ - 2011 + 2016 ], "wins": [ - 2011 + 2016 ], "__typename": [ - 70 + 75 ] }, "v_match_player_opening_duels_order_by": { "attempts": [ - 2011 + 2016 ], "deaths": [ - 2011 + 2016 ], "match": [ - 1846 + 1851 ], "match_id": [ - 2011 + 2016 ], "match_lineup": [ - 1526 + 1531 ], "match_lineup_id": [ - 2011 + 2016 ], "match_map": [ - 1684 + 1689 ], "match_map_id": [ - 2011 + 2016 ], "player": [ - 2891 + 2928 ], "side": [ - 2011 + 2016 ], "steam_id": [ - 2011 + 2016 ], "traded_deaths": [ - 2011 + 2016 ], "wins": [ - 2011 + 2016 ], "__typename": [ - 70 + 75 ] }, "v_match_player_opening_duels_select_column": {}, @@ -94916,27 +95745,27 @@ export default { 29 ], "__typename": [ - 70 + 75 ] }, "v_match_player_opening_duels_stddev_order_by": { "attempts": [ - 2011 + 2016 ], "deaths": [ - 2011 + 2016 ], "steam_id": [ - 2011 + 2016 ], "traded_deaths": [ - 2011 + 2016 ], "wins": [ - 2011 + 2016 ], "__typename": [ - 70 + 75 ] }, "v_match_player_opening_duels_stddev_pop_fields": { @@ -94956,27 +95785,27 @@ export default { 29 ], "__typename": [ - 70 + 75 ] }, "v_match_player_opening_duels_stddev_pop_order_by": { "attempts": [ - 2011 + 2016 ], "deaths": [ - 2011 + 2016 ], "steam_id": [ - 2011 + 2016 ], "traded_deaths": [ - 2011 + 2016 ], "wins": [ - 2011 + 2016 ], "__typename": [ - 70 + 75 ] }, "v_match_player_opening_duels_stddev_samp_fields": { @@ -94996,38 +95825,38 @@ export default { 29 ], "__typename": [ - 70 + 75 ] }, "v_match_player_opening_duels_stddev_samp_order_by": { "attempts": [ - 2011 + 2016 ], "deaths": [ - 2011 + 2016 ], "steam_id": [ - 2011 + 2016 ], "traded_deaths": [ - 2011 + 2016 ], "wins": [ - 2011 + 2016 ], "__typename": [ - 70 + 75 ] }, "v_match_player_opening_duels_stream_cursor_input": { "initial_value": [ - 4015 + 4061 ], "ordering": [ - 224 + 229 ], "__typename": [ - 70 + 75 ] }, "v_match_player_opening_duels_stream_cursor_value_input": { @@ -95038,19 +95867,19 @@ export default { 38 ], "match_id": [ - 3818 + 3864 ], "match_lineup_id": [ - 3818 + 3864 ], "match_map_id": [ - 3818 + 3864 ], "side": [ - 70 + 75 ], "steam_id": [ - 169 + 174 ], "traded_deaths": [ 38 @@ -95059,7 +95888,7 @@ export default { 38 ], "__typename": [ - 70 + 75 ] }, "v_match_player_opening_duels_sum_fields": { @@ -95070,7 +95899,7 @@ export default { 38 ], "steam_id": [ - 169 + 174 ], "traded_deaths": [ 38 @@ -95079,27 +95908,27 @@ export default { 38 ], "__typename": [ - 70 + 75 ] }, "v_match_player_opening_duels_sum_order_by": { "attempts": [ - 2011 + 2016 ], "deaths": [ - 2011 + 2016 ], "steam_id": [ - 2011 + 2016 ], "traded_deaths": [ - 2011 + 2016 ], "wins": [ - 2011 + 2016 ], "__typename": [ - 70 + 75 ] }, "v_match_player_opening_duels_var_pop_fields": { @@ -95119,27 +95948,27 @@ export default { 29 ], "__typename": [ - 70 + 75 ] }, "v_match_player_opening_duels_var_pop_order_by": { "attempts": [ - 2011 + 2016 ], "deaths": [ - 2011 + 2016 ], "steam_id": [ - 2011 + 2016 ], "traded_deaths": [ - 2011 + 2016 ], "wins": [ - 2011 + 2016 ], "__typename": [ - 70 + 75 ] }, "v_match_player_opening_duels_var_samp_fields": { @@ -95159,27 +95988,27 @@ export default { 29 ], "__typename": [ - 70 + 75 ] }, "v_match_player_opening_duels_var_samp_order_by": { "attempts": [ - 2011 + 2016 ], "deaths": [ - 2011 + 2016 ], "steam_id": [ - 2011 + 2016 ], "traded_deaths": [ - 2011 + 2016 ], "wins": [ - 2011 + 2016 ], "__typename": [ - 70 + 75 ] }, "v_match_player_opening_duels_variance_fields": { @@ -95199,69 +96028,69 @@ export default { 29 ], "__typename": [ - 70 + 75 ] }, "v_match_player_opening_duels_variance_order_by": { "attempts": [ - 2011 + 2016 ], "deaths": [ - 2011 + 2016 ], "steam_id": [ - 2011 + 2016 ], "traded_deaths": [ - 2011 + 2016 ], "wins": [ - 2011 + 2016 ], "__typename": [ - 70 + 75 ] }, "v_player_arch_nemesis": { "attacker_id": [ - 169 + 174 ], "kill_count": [ - 169 + 174 ], "nemsis": [ - 2878 + 2915 ], "player": [ - 2878 + 2915 ], "victim_id": [ - 169 + 174 ], "__typename": [ - 70 + 75 ] }, "v_player_arch_nemesis_aggregate": { "aggregate": [ - 4026 + 4072 ], "nodes": [ - 4024 + 4070 ], "__typename": [ - 70 + 75 ] }, "v_player_arch_nemesis_aggregate_fields": { "avg": [ - 4027 + 4073 ], "count": [ 38, { "columns": [ - 4032, + 4078, "[v_player_arch_nemesis_select_column!]" ], "distinct": [ @@ -95270,34 +96099,34 @@ export default { } ], "max": [ - 4029 + 4075 ], "min": [ - 4030 + 4076 ], "stddev": [ - 4033 + 4079 ], "stddev_pop": [ - 4034 + 4080 ], "stddev_samp": [ - 4035 + 4081 ], "sum": [ - 4038 + 4084 ], "var_pop": [ - 4039 + 4085 ], "var_samp": [ - 4040 + 4086 ], "variance": [ - 4041 + 4087 ], "__typename": [ - 70 + 75 ] }, "v_player_arch_nemesis_avg_fields": { @@ -95311,84 +96140,84 @@ export default { 29 ], "__typename": [ - 70 + 75 ] }, "v_player_arch_nemesis_bool_exp": { "_and": [ - 4028 + 4074 ], "_not": [ - 4028 + 4074 ], "_or": [ - 4028 + 4074 ], "attacker_id": [ - 171 + 176 ], "kill_count": [ - 171 + 176 ], "nemsis": [ - 2882 + 2919 ], "player": [ - 2882 + 2919 ], "victim_id": [ - 171 + 176 ], "__typename": [ - 70 + 75 ] }, "v_player_arch_nemesis_max_fields": { "attacker_id": [ - 169 + 174 ], "kill_count": [ - 169 + 174 ], "victim_id": [ - 169 + 174 ], "__typename": [ - 70 + 75 ] }, "v_player_arch_nemesis_min_fields": { "attacker_id": [ - 169 + 174 ], "kill_count": [ - 169 + 174 ], "victim_id": [ - 169 + 174 ], "__typename": [ - 70 + 75 ] }, "v_player_arch_nemesis_order_by": { "attacker_id": [ - 2011 + 2016 ], "kill_count": [ - 2011 + 2016 ], "nemsis": [ - 2891 + 2928 ], "player": [ - 2891 + 2928 ], "victim_id": [ - 2011 + 2016 ], "__typename": [ - 70 + 75 ] }, "v_player_arch_nemesis_select_column": {}, @@ -95403,7 +96232,7 @@ export default { 29 ], "__typename": [ - 70 + 75 ] }, "v_player_arch_nemesis_stddev_pop_fields": { @@ -95417,7 +96246,7 @@ export default { 29 ], "__typename": [ - 70 + 75 ] }, "v_player_arch_nemesis_stddev_samp_fields": { @@ -95431,46 +96260,46 @@ export default { 29 ], "__typename": [ - 70 + 75 ] }, "v_player_arch_nemesis_stream_cursor_input": { "initial_value": [ - 4037 + 4083 ], "ordering": [ - 224 + 229 ], "__typename": [ - 70 + 75 ] }, "v_player_arch_nemesis_stream_cursor_value_input": { "attacker_id": [ - 169 + 174 ], "kill_count": [ - 169 + 174 ], "victim_id": [ - 169 + 174 ], "__typename": [ - 70 + 75 ] }, "v_player_arch_nemesis_sum_fields": { "attacker_id": [ - 169 + 174 ], "kill_count": [ - 169 + 174 ], "victim_id": [ - 169 + 174 ], "__typename": [ - 70 + 75 ] }, "v_player_arch_nemesis_var_pop_fields": { @@ -95484,7 +96313,7 @@ export default { 29 ], "__typename": [ - 70 + 75 ] }, "v_player_arch_nemesis_var_samp_fields": { @@ -95498,7 +96327,7 @@ export default { 29 ], "__typename": [ - 70 + 75 ] }, "v_player_arch_nemesis_variance_fields": { @@ -95512,49 +96341,49 @@ export default { 29 ], "__typename": [ - 70 + 75 ] }, "v_player_damage": { "avg_damage_per_round": [ - 169 + 174 ], "player": [ - 2878 + 2915 ], "player_steam_id": [ - 169 + 174 ], "total_damage": [ - 169 + 174 ], "total_rounds": [ - 169 + 174 ], "__typename": [ - 70 + 75 ] }, "v_player_damage_aggregate": { "aggregate": [ - 4044 + 4090 ], "nodes": [ - 4042 + 4088 ], "__typename": [ - 70 + 75 ] }, "v_player_damage_aggregate_fields": { "avg": [ - 4045 + 4091 ], "count": [ 38, { "columns": [ - 4050, + 4096, "[v_player_damage_select_column!]" ], "distinct": [ @@ -95563,34 +96392,34 @@ export default { } ], "max": [ - 4047 + 4093 ], "min": [ - 4048 + 4094 ], "stddev": [ - 4051 + 4097 ], "stddev_pop": [ - 4052 + 4098 ], "stddev_samp": [ - 4053 + 4099 ], "sum": [ - 4056 + 4102 ], "var_pop": [ - 4057 + 4103 ], "var_samp": [ - 4058 + 4104 ], "variance": [ - 4059 + 4105 ], "__typename": [ - 70 + 75 ] }, "v_player_damage_avg_fields": { @@ -95607,90 +96436,90 @@ export default { 29 ], "__typename": [ - 70 + 75 ] }, "v_player_damage_bool_exp": { "_and": [ - 4046 + 4092 ], "_not": [ - 4046 + 4092 ], "_or": [ - 4046 + 4092 ], "avg_damage_per_round": [ - 171 + 176 ], "player": [ - 2882 + 2919 ], "player_steam_id": [ - 171 + 176 ], "total_damage": [ - 171 + 176 ], "total_rounds": [ - 171 + 176 ], "__typename": [ - 70 + 75 ] }, "v_player_damage_max_fields": { "avg_damage_per_round": [ - 169 + 174 ], "player_steam_id": [ - 169 + 174 ], "total_damage": [ - 169 + 174 ], "total_rounds": [ - 169 + 174 ], "__typename": [ - 70 + 75 ] }, "v_player_damage_min_fields": { "avg_damage_per_round": [ - 169 + 174 ], "player_steam_id": [ - 169 + 174 ], "total_damage": [ - 169 + 174 ], "total_rounds": [ - 169 + 174 ], "__typename": [ - 70 + 75 ] }, "v_player_damage_order_by": { "avg_damage_per_round": [ - 2011 + 2016 ], "player": [ - 2891 + 2928 ], "player_steam_id": [ - 2011 + 2016 ], "total_damage": [ - 2011 + 2016 ], "total_rounds": [ - 2011 + 2016 ], "__typename": [ - 70 + 75 ] }, "v_player_damage_select_column": {}, @@ -95708,7 +96537,7 @@ export default { 29 ], "__typename": [ - 70 + 75 ] }, "v_player_damage_stddev_pop_fields": { @@ -95725,7 +96554,7 @@ export default { 29 ], "__typename": [ - 70 + 75 ] }, "v_player_damage_stddev_samp_fields": { @@ -95742,52 +96571,52 @@ export default { 29 ], "__typename": [ - 70 + 75 ] }, "v_player_damage_stream_cursor_input": { "initial_value": [ - 4055 + 4101 ], "ordering": [ - 224 + 229 ], "__typename": [ - 70 + 75 ] }, "v_player_damage_stream_cursor_value_input": { "avg_damage_per_round": [ - 169 + 174 ], "player_steam_id": [ - 169 + 174 ], "total_damage": [ - 169 + 174 ], "total_rounds": [ - 169 + 174 ], "__typename": [ - 70 + 75 ] }, "v_player_damage_sum_fields": { "avg_damage_per_round": [ - 169 + 174 ], "player_steam_id": [ - 169 + 174 ], "total_damage": [ - 169 + 174 ], "total_rounds": [ - 169 + 174 ], "__typename": [ - 70 + 75 ] }, "v_player_damage_var_pop_fields": { @@ -95804,7 +96633,7 @@ export default { 29 ], "__typename": [ - 70 + 75 ] }, "v_player_damage_var_samp_fields": { @@ -95821,7 +96650,7 @@ export default { 29 ], "__typename": [ - 70 + 75 ] }, "v_player_damage_variance_fields": { @@ -95838,12 +96667,12 @@ export default { 29 ], "__typename": [ - 70 + 75 ] }, "v_player_elo": { "actual_score": [ - 1084 + 1089 ], "assists": [ 38 @@ -95855,7 +96684,7 @@ export default { 38 ], "damage_percent": [ - 1084 + 1089 ], "deaths": [ 38 @@ -95864,16 +96693,16 @@ export default { 38 ], "expected_score": [ - 1084 + 1089 ], "impact": [ - 1084 + 1089 ], "k_factor": [ 38 ], "kda": [ - 1084 + 1089 ], "kills": [ 38 @@ -95885,275 +96714,275 @@ export default { 38 ], "match": [ - 1826 + 1831 ], "match_created_at": [ - 3421 + 3467 ], "match_id": [ - 3818 + 3864 ], "match_result": [ - 70 + 75 ], "opponent_team_elo_avg": [ - 1084 + 1089 ], "performance_multiplier": [ - 1084 + 1089 ], "player_name": [ - 70 + 75 ], "player_steam_id": [ - 169 + 174 ], "player_team_elo_avg": [ - 1084 + 1089 ], "series_multiplier": [ 38 ], "team_avg_kda": [ - 1084 + 1089 ], "type": [ - 70 + 75 ], "updated_elo": [ 38 ], "__typename": [ - 70 + 75 ] }, "v_player_elo_aggregate": { "aggregate": [ - 4074 + 4120 ], "nodes": [ - 4060 + 4106 ], "__typename": [ - 70 + 75 ] }, "v_player_elo_aggregate_bool_exp": { "avg": [ - 4063 + 4109 ], "corr": [ - 4064 + 4110 ], "count": [ - 4066 + 4112 ], "covar_samp": [ - 4067 + 4113 ], "max": [ - 4069 + 4115 ], "min": [ - 4070 + 4116 ], "stddev_samp": [ - 4071 + 4117 ], "sum": [ - 4072 + 4118 ], "var_samp": [ - 4073 + 4119 ], "__typename": [ - 70 + 75 ] }, "v_player_elo_aggregate_bool_exp_avg": { "arguments": [ - 4087 + 4133 ], "distinct": [ 3 ], "filter": [ - 4079 + 4125 ], "predicate": [ - 1085 + 1090 ], "__typename": [ - 70 + 75 ] }, "v_player_elo_aggregate_bool_exp_corr": { "arguments": [ - 4065 + 4111 ], "distinct": [ 3 ], "filter": [ - 4079 + 4125 ], "predicate": [ - 1085 + 1090 ], "__typename": [ - 70 + 75 ] }, "v_player_elo_aggregate_bool_exp_corr_arguments": { "X": [ - 4088 + 4134 ], "Y": [ - 4088 + 4134 ], "__typename": [ - 70 + 75 ] }, "v_player_elo_aggregate_bool_exp_count": { "arguments": [ - 4086 + 4132 ], "distinct": [ 3 ], "filter": [ - 4079 + 4125 ], "predicate": [ 39 ], "__typename": [ - 70 + 75 ] }, "v_player_elo_aggregate_bool_exp_covar_samp": { "arguments": [ - 4068 + 4114 ], "distinct": [ 3 ], "filter": [ - 4079 + 4125 ], "predicate": [ - 1085 + 1090 ], "__typename": [ - 70 + 75 ] }, "v_player_elo_aggregate_bool_exp_covar_samp_arguments": { "X": [ - 4089 + 4135 ], "Y": [ - 4089 + 4135 ], "__typename": [ - 70 + 75 ] }, "v_player_elo_aggregate_bool_exp_max": { "arguments": [ - 4090 + 4136 ], "distinct": [ 3 ], "filter": [ - 4079 + 4125 ], "predicate": [ - 1085 + 1090 ], "__typename": [ - 70 + 75 ] }, "v_player_elo_aggregate_bool_exp_min": { "arguments": [ - 4091 + 4137 ], "distinct": [ 3 ], "filter": [ - 4079 + 4125 ], "predicate": [ - 1085 + 1090 ], "__typename": [ - 70 + 75 ] }, "v_player_elo_aggregate_bool_exp_stddev_samp": { "arguments": [ - 4092 + 4138 ], "distinct": [ 3 ], "filter": [ - 4079 + 4125 ], "predicate": [ - 1085 + 1090 ], "__typename": [ - 70 + 75 ] }, "v_player_elo_aggregate_bool_exp_sum": { "arguments": [ - 4093 + 4139 ], "distinct": [ 3 ], "filter": [ - 4079 + 4125 ], "predicate": [ - 1085 + 1090 ], "__typename": [ - 70 + 75 ] }, "v_player_elo_aggregate_bool_exp_var_samp": { "arguments": [ - 4094 + 4140 ], "distinct": [ 3 ], "filter": [ - 4079 + 4125 ], "predicate": [ - 1085 + 1090 ], "__typename": [ - 70 + 75 ] }, "v_player_elo_aggregate_fields": { "avg": [ - 4077 + 4123 ], "count": [ 38, { "columns": [ - 4086, + 4132, "[v_player_elo_select_column!]" ], "distinct": [ @@ -96162,80 +96991,80 @@ export default { } ], "max": [ - 4081 + 4127 ], "min": [ - 4083 + 4129 ], "stddev": [ - 4095 + 4141 ], "stddev_pop": [ - 4097 + 4143 ], "stddev_samp": [ - 4099 + 4145 ], "sum": [ - 4103 + 4149 ], "var_pop": [ - 4105 + 4151 ], "var_samp": [ - 4107 + 4153 ], "variance": [ - 4109 + 4155 ], "__typename": [ - 70 + 75 ] }, "v_player_elo_aggregate_order_by": { "avg": [ - 4078 + 4124 ], "count": [ - 2011 + 2016 ], "max": [ - 4082 + 4128 ], "min": [ - 4084 + 4130 ], "stddev": [ - 4096 + 4142 ], "stddev_pop": [ - 4098 + 4144 ], "stddev_samp": [ - 4100 + 4146 ], "sum": [ - 4104 + 4150 ], "var_pop": [ - 4106 + 4152 ], "var_samp": [ - 4108 + 4154 ], "variance": [ - 4110 + 4156 ], "__typename": [ - 70 + 75 ] }, "v_player_elo_arr_rel_insert_input": { "data": [ - 4080 + 4126 ], "__typename": [ - 70 + 75 ] }, "v_player_elo_avg_fields": { @@ -96303,89 +97132,89 @@ export default { 29 ], "__typename": [ - 70 + 75 ] }, "v_player_elo_avg_order_by": { "actual_score": [ - 2011 + 2016 ], "assists": [ - 2011 + 2016 ], "current_elo": [ - 2011 + 2016 ], "damage": [ - 2011 + 2016 ], "damage_percent": [ - 2011 + 2016 ], "deaths": [ - 2011 + 2016 ], "elo_change": [ - 2011 + 2016 ], "expected_score": [ - 2011 + 2016 ], "impact": [ - 2011 + 2016 ], "k_factor": [ - 2011 + 2016 ], "kda": [ - 2011 + 2016 ], "kills": [ - 2011 + 2016 ], "map_losses": [ - 2011 + 2016 ], "map_wins": [ - 2011 + 2016 ], "opponent_team_elo_avg": [ - 2011 + 2016 ], "performance_multiplier": [ - 2011 + 2016 ], "player_steam_id": [ - 2011 + 2016 ], "player_team_elo_avg": [ - 2011 + 2016 ], "series_multiplier": [ - 2011 + 2016 ], "team_avg_kda": [ - 2011 + 2016 ], "updated_elo": [ - 2011 + 2016 ], "__typename": [ - 70 + 75 ] }, "v_player_elo_bool_exp": { "_and": [ - 4079 + 4125 ], "_not": [ - 4079 + 4125 ], "_or": [ - 4079 + 4125 ], "actual_score": [ - 1085 + 1090 ], "assists": [ 39 @@ -96397,7 +97226,7 @@ export default { 39 ], "damage_percent": [ - 1085 + 1090 ], "deaths": [ 39 @@ -96406,16 +97235,16 @@ export default { 39 ], "expected_score": [ - 1085 + 1090 ], "impact": [ - 1085 + 1090 ], "k_factor": [ 39 ], "kda": [ - 1085 + 1090 ], "kills": [ 39 @@ -96427,51 +97256,51 @@ export default { 39 ], "match": [ - 1835 + 1840 ], "match_created_at": [ - 3422 + 3468 ], "match_id": [ - 3820 + 3866 ], "match_result": [ - 72 + 77 ], "opponent_team_elo_avg": [ - 1085 + 1090 ], "performance_multiplier": [ - 1085 + 1090 ], "player_name": [ - 72 + 77 ], "player_steam_id": [ - 171 + 176 ], "player_team_elo_avg": [ - 1085 + 1090 ], "series_multiplier": [ 39 ], "team_avg_kda": [ - 1085 + 1090 ], "type": [ - 72 + 77 ], "updated_elo": [ 39 ], "__typename": [ - 70 + 75 ] }, "v_player_elo_insert_input": { "actual_score": [ - 1084 + 1089 ], "assists": [ 38 @@ -96483,7 +97312,7 @@ export default { 38 ], "damage_percent": [ - 1084 + 1089 ], "deaths": [ 38 @@ -96492,16 +97321,16 @@ export default { 38 ], "expected_score": [ - 1084 + 1089 ], "impact": [ - 1084 + 1089 ], "k_factor": [ 38 ], "kda": [ - 1084 + 1089 ], "kills": [ 38 @@ -96513,51 +97342,51 @@ export default { 38 ], "match": [ - 1844 + 1849 ], "match_created_at": [ - 3421 + 3467 ], "match_id": [ - 3818 + 3864 ], "match_result": [ - 70 + 75 ], "opponent_team_elo_avg": [ - 1084 + 1089 ], "performance_multiplier": [ - 1084 + 1089 ], "player_name": [ - 70 + 75 ], "player_steam_id": [ - 169 + 174 ], "player_team_elo_avg": [ - 1084 + 1089 ], "series_multiplier": [ 38 ], "team_avg_kda": [ - 1084 + 1089 ], "type": [ - 70 + 75 ], "updated_elo": [ 38 ], "__typename": [ - 70 + 75 ] }, "v_player_elo_max_fields": { "actual_score": [ - 1084 + 1089 ], "assists": [ 38 @@ -96569,7 +97398,7 @@ export default { 38 ], "damage_percent": [ - 1084 + 1089 ], "deaths": [ 38 @@ -96578,16 +97407,16 @@ export default { 38 ], "expected_score": [ - 1084 + 1089 ], "impact": [ - 1084 + 1089 ], "k_factor": [ 38 ], "kda": [ - 1084 + 1089 ], "kills": [ 38 @@ -96599,131 +97428,131 @@ export default { 38 ], "match_created_at": [ - 3421 + 3467 ], "match_id": [ - 3818 + 3864 ], "match_result": [ - 70 + 75 ], "opponent_team_elo_avg": [ - 1084 + 1089 ], "performance_multiplier": [ - 1084 + 1089 ], "player_name": [ - 70 + 75 ], "player_steam_id": [ - 169 + 174 ], "player_team_elo_avg": [ - 1084 + 1089 ], "series_multiplier": [ 38 ], "team_avg_kda": [ - 1084 + 1089 ], "type": [ - 70 + 75 ], "updated_elo": [ 38 ], "__typename": [ - 70 + 75 ] }, "v_player_elo_max_order_by": { "actual_score": [ - 2011 + 2016 ], "assists": [ - 2011 + 2016 ], "current_elo": [ - 2011 + 2016 ], "damage": [ - 2011 + 2016 ], "damage_percent": [ - 2011 + 2016 ], "deaths": [ - 2011 + 2016 ], "elo_change": [ - 2011 + 2016 ], "expected_score": [ - 2011 + 2016 ], "impact": [ - 2011 + 2016 ], "k_factor": [ - 2011 + 2016 ], "kda": [ - 2011 + 2016 ], "kills": [ - 2011 + 2016 ], "map_losses": [ - 2011 + 2016 ], "map_wins": [ - 2011 + 2016 ], "match_created_at": [ - 2011 + 2016 ], "match_id": [ - 2011 + 2016 ], "match_result": [ - 2011 + 2016 ], "opponent_team_elo_avg": [ - 2011 + 2016 ], "performance_multiplier": [ - 2011 + 2016 ], "player_name": [ - 2011 + 2016 ], "player_steam_id": [ - 2011 + 2016 ], "player_team_elo_avg": [ - 2011 + 2016 ], "series_multiplier": [ - 2011 + 2016 ], "team_avg_kda": [ - 2011 + 2016 ], "type": [ - 2011 + 2016 ], "updated_elo": [ - 2011 + 2016 ], "__typename": [ - 70 + 75 ] }, "v_player_elo_min_fields": { "actual_score": [ - 1084 + 1089 ], "assists": [ 38 @@ -96735,7 +97564,7 @@ export default { 38 ], "damage_percent": [ - 1084 + 1089 ], "deaths": [ 38 @@ -96744,16 +97573,16 @@ export default { 38 ], "expected_score": [ - 1084 + 1089 ], "impact": [ - 1084 + 1089 ], "k_factor": [ 38 ], "kda": [ - 1084 + 1089 ], "kills": [ 38 @@ -96765,212 +97594,212 @@ export default { 38 ], "match_created_at": [ - 3421 + 3467 ], "match_id": [ - 3818 + 3864 ], "match_result": [ - 70 + 75 ], "opponent_team_elo_avg": [ - 1084 + 1089 ], "performance_multiplier": [ - 1084 + 1089 ], "player_name": [ - 70 + 75 ], "player_steam_id": [ - 169 + 174 ], "player_team_elo_avg": [ - 1084 + 1089 ], "series_multiplier": [ 38 ], "team_avg_kda": [ - 1084 + 1089 ], "type": [ - 70 + 75 ], "updated_elo": [ 38 ], "__typename": [ - 70 + 75 ] }, "v_player_elo_min_order_by": { "actual_score": [ - 2011 + 2016 ], "assists": [ - 2011 + 2016 ], "current_elo": [ - 2011 + 2016 ], "damage": [ - 2011 + 2016 ], "damage_percent": [ - 2011 + 2016 ], "deaths": [ - 2011 + 2016 ], "elo_change": [ - 2011 + 2016 ], "expected_score": [ - 2011 + 2016 ], "impact": [ - 2011 + 2016 ], "k_factor": [ - 2011 + 2016 ], "kda": [ - 2011 + 2016 ], "kills": [ - 2011 + 2016 ], "map_losses": [ - 2011 + 2016 ], "map_wins": [ - 2011 + 2016 ], "match_created_at": [ - 2011 + 2016 ], "match_id": [ - 2011 + 2016 ], "match_result": [ - 2011 + 2016 ], "opponent_team_elo_avg": [ - 2011 + 2016 ], "performance_multiplier": [ - 2011 + 2016 ], "player_name": [ - 2011 + 2016 ], "player_steam_id": [ - 2011 + 2016 ], "player_team_elo_avg": [ - 2011 + 2016 ], "series_multiplier": [ - 2011 + 2016 ], "team_avg_kda": [ - 2011 + 2016 ], "type": [ - 2011 + 2016 ], "updated_elo": [ - 2011 + 2016 ], "__typename": [ - 70 + 75 ] }, "v_player_elo_order_by": { "actual_score": [ - 2011 + 2016 ], "assists": [ - 2011 + 2016 ], "current_elo": [ - 2011 + 2016 ], "damage": [ - 2011 + 2016 ], "damage_percent": [ - 2011 + 2016 ], "deaths": [ - 2011 + 2016 ], "elo_change": [ - 2011 + 2016 ], "expected_score": [ - 2011 + 2016 ], "impact": [ - 2011 + 2016 ], "k_factor": [ - 2011 + 2016 ], "kda": [ - 2011 + 2016 ], "kills": [ - 2011 + 2016 ], "map_losses": [ - 2011 + 2016 ], "map_wins": [ - 2011 + 2016 ], "match": [ - 1846 + 1851 ], "match_created_at": [ - 2011 + 2016 ], "match_id": [ - 2011 + 2016 ], "match_result": [ - 2011 + 2016 ], "opponent_team_elo_avg": [ - 2011 + 2016 ], "performance_multiplier": [ - 2011 + 2016 ], "player_name": [ - 2011 + 2016 ], "player_steam_id": [ - 2011 + 2016 ], "player_team_elo_avg": [ - 2011 + 2016 ], "series_multiplier": [ - 2011 + 2016 ], "team_avg_kda": [ - 2011 + 2016 ], "type": [ - 2011 + 2016 ], "updated_elo": [ - 2011 + 2016 ], "__typename": [ - 70 + 75 ] }, "v_player_elo_select_column": {}, @@ -97047,75 +97876,75 @@ export default { 29 ], "__typename": [ - 70 + 75 ] }, "v_player_elo_stddev_order_by": { "actual_score": [ - 2011 + 2016 ], "assists": [ - 2011 + 2016 ], "current_elo": [ - 2011 + 2016 ], "damage": [ - 2011 + 2016 ], "damage_percent": [ - 2011 + 2016 ], "deaths": [ - 2011 + 2016 ], "elo_change": [ - 2011 + 2016 ], "expected_score": [ - 2011 + 2016 ], "impact": [ - 2011 + 2016 ], "k_factor": [ - 2011 + 2016 ], "kda": [ - 2011 + 2016 ], "kills": [ - 2011 + 2016 ], "map_losses": [ - 2011 + 2016 ], "map_wins": [ - 2011 + 2016 ], "opponent_team_elo_avg": [ - 2011 + 2016 ], "performance_multiplier": [ - 2011 + 2016 ], "player_steam_id": [ - 2011 + 2016 ], "player_team_elo_avg": [ - 2011 + 2016 ], "series_multiplier": [ - 2011 + 2016 ], "team_avg_kda": [ - 2011 + 2016 ], "updated_elo": [ - 2011 + 2016 ], "__typename": [ - 70 + 75 ] }, "v_player_elo_stddev_pop_fields": { @@ -97183,75 +98012,75 @@ export default { 29 ], "__typename": [ - 70 + 75 ] }, "v_player_elo_stddev_pop_order_by": { "actual_score": [ - 2011 + 2016 ], "assists": [ - 2011 + 2016 ], "current_elo": [ - 2011 + 2016 ], "damage": [ - 2011 + 2016 ], "damage_percent": [ - 2011 + 2016 ], "deaths": [ - 2011 + 2016 ], "elo_change": [ - 2011 + 2016 ], "expected_score": [ - 2011 + 2016 ], "impact": [ - 2011 + 2016 ], "k_factor": [ - 2011 + 2016 ], "kda": [ - 2011 + 2016 ], "kills": [ - 2011 + 2016 ], "map_losses": [ - 2011 + 2016 ], "map_wins": [ - 2011 + 2016 ], "opponent_team_elo_avg": [ - 2011 + 2016 ], "performance_multiplier": [ - 2011 + 2016 ], "player_steam_id": [ - 2011 + 2016 ], "player_team_elo_avg": [ - 2011 + 2016 ], "series_multiplier": [ - 2011 + 2016 ], "team_avg_kda": [ - 2011 + 2016 ], "updated_elo": [ - 2011 + 2016 ], "__typename": [ - 70 + 75 ] }, "v_player_elo_stddev_samp_fields": { @@ -97319,91 +98148,91 @@ export default { 29 ], "__typename": [ - 70 + 75 ] }, "v_player_elo_stddev_samp_order_by": { "actual_score": [ - 2011 + 2016 ], "assists": [ - 2011 + 2016 ], "current_elo": [ - 2011 + 2016 ], "damage": [ - 2011 + 2016 ], "damage_percent": [ - 2011 + 2016 ], "deaths": [ - 2011 + 2016 ], "elo_change": [ - 2011 + 2016 ], "expected_score": [ - 2011 + 2016 ], "impact": [ - 2011 + 2016 ], "k_factor": [ - 2011 + 2016 ], "kda": [ - 2011 + 2016 ], "kills": [ - 2011 + 2016 ], "map_losses": [ - 2011 + 2016 ], "map_wins": [ - 2011 + 2016 ], "opponent_team_elo_avg": [ - 2011 + 2016 ], "performance_multiplier": [ - 2011 + 2016 ], "player_steam_id": [ - 2011 + 2016 ], "player_team_elo_avg": [ - 2011 + 2016 ], "series_multiplier": [ - 2011 + 2016 ], "team_avg_kda": [ - 2011 + 2016 ], "updated_elo": [ - 2011 + 2016 ], "__typename": [ - 70 + 75 ] }, "v_player_elo_stream_cursor_input": { "initial_value": [ - 4102 + 4148 ], "ordering": [ - 224 + 229 ], "__typename": [ - 70 + 75 ] }, "v_player_elo_stream_cursor_value_input": { "actual_score": [ - 1084 + 1089 ], "assists": [ 38 @@ -97415,7 +98244,7 @@ export default { 38 ], "damage_percent": [ - 1084 + 1089 ], "deaths": [ 38 @@ -97424,16 +98253,16 @@ export default { 38 ], "expected_score": [ - 1084 + 1089 ], "impact": [ - 1084 + 1089 ], "k_factor": [ 38 ], "kda": [ - 1084 + 1089 ], "kills": [ 38 @@ -97445,48 +98274,48 @@ export default { 38 ], "match_created_at": [ - 3421 + 3467 ], "match_id": [ - 3818 + 3864 ], "match_result": [ - 70 + 75 ], "opponent_team_elo_avg": [ - 1084 + 1089 ], "performance_multiplier": [ - 1084 + 1089 ], "player_name": [ - 70 + 75 ], "player_steam_id": [ - 169 + 174 ], "player_team_elo_avg": [ - 1084 + 1089 ], "series_multiplier": [ 38 ], "team_avg_kda": [ - 1084 + 1089 ], "type": [ - 70 + 75 ], "updated_elo": [ 38 ], "__typename": [ - 70 + 75 ] }, "v_player_elo_sum_fields": { "actual_score": [ - 1084 + 1089 ], "assists": [ 38 @@ -97498,7 +98327,7 @@ export default { 38 ], "damage_percent": [ - 1084 + 1089 ], "deaths": [ 38 @@ -97507,16 +98336,16 @@ export default { 38 ], "expected_score": [ - 1084 + 1089 ], "impact": [ - 1084 + 1089 ], "k_factor": [ 38 ], "kda": [ - 1084 + 1089 ], "kills": [ 38 @@ -97528,96 +98357,96 @@ export default { 38 ], "opponent_team_elo_avg": [ - 1084 + 1089 ], "performance_multiplier": [ - 1084 + 1089 ], "player_steam_id": [ - 169 + 174 ], "player_team_elo_avg": [ - 1084 + 1089 ], "series_multiplier": [ 38 ], "team_avg_kda": [ - 1084 + 1089 ], "updated_elo": [ 38 ], "__typename": [ - 70 + 75 ] }, "v_player_elo_sum_order_by": { "actual_score": [ - 2011 + 2016 ], "assists": [ - 2011 + 2016 ], "current_elo": [ - 2011 + 2016 ], "damage": [ - 2011 + 2016 ], "damage_percent": [ - 2011 + 2016 ], "deaths": [ - 2011 + 2016 ], "elo_change": [ - 2011 + 2016 ], "expected_score": [ - 2011 + 2016 ], "impact": [ - 2011 + 2016 ], "k_factor": [ - 2011 + 2016 ], "kda": [ - 2011 + 2016 ], "kills": [ - 2011 + 2016 ], "map_losses": [ - 2011 + 2016 ], "map_wins": [ - 2011 + 2016 ], "opponent_team_elo_avg": [ - 2011 + 2016 ], "performance_multiplier": [ - 2011 + 2016 ], "player_steam_id": [ - 2011 + 2016 ], "player_team_elo_avg": [ - 2011 + 2016 ], "series_multiplier": [ - 2011 + 2016 ], "team_avg_kda": [ - 2011 + 2016 ], "updated_elo": [ - 2011 + 2016 ], "__typename": [ - 70 + 75 ] }, "v_player_elo_var_pop_fields": { @@ -97685,75 +98514,75 @@ export default { 29 ], "__typename": [ - 70 + 75 ] }, "v_player_elo_var_pop_order_by": { "actual_score": [ - 2011 + 2016 ], "assists": [ - 2011 + 2016 ], "current_elo": [ - 2011 + 2016 ], "damage": [ - 2011 + 2016 ], "damage_percent": [ - 2011 + 2016 ], "deaths": [ - 2011 + 2016 ], "elo_change": [ - 2011 + 2016 ], "expected_score": [ - 2011 + 2016 ], "impact": [ - 2011 + 2016 ], "k_factor": [ - 2011 + 2016 ], "kda": [ - 2011 + 2016 ], "kills": [ - 2011 + 2016 ], "map_losses": [ - 2011 + 2016 ], "map_wins": [ - 2011 + 2016 ], "opponent_team_elo_avg": [ - 2011 + 2016 ], "performance_multiplier": [ - 2011 + 2016 ], "player_steam_id": [ - 2011 + 2016 ], "player_team_elo_avg": [ - 2011 + 2016 ], "series_multiplier": [ - 2011 + 2016 ], "team_avg_kda": [ - 2011 + 2016 ], "updated_elo": [ - 2011 + 2016 ], "__typename": [ - 70 + 75 ] }, "v_player_elo_var_samp_fields": { @@ -97821,75 +98650,75 @@ export default { 29 ], "__typename": [ - 70 + 75 ] }, "v_player_elo_var_samp_order_by": { "actual_score": [ - 2011 + 2016 ], "assists": [ - 2011 + 2016 ], "current_elo": [ - 2011 + 2016 ], "damage": [ - 2011 + 2016 ], "damage_percent": [ - 2011 + 2016 ], "deaths": [ - 2011 + 2016 ], "elo_change": [ - 2011 + 2016 ], "expected_score": [ - 2011 + 2016 ], "impact": [ - 2011 + 2016 ], "k_factor": [ - 2011 + 2016 ], "kda": [ - 2011 + 2016 ], "kills": [ - 2011 + 2016 ], "map_losses": [ - 2011 + 2016 ], "map_wins": [ - 2011 + 2016 ], "opponent_team_elo_avg": [ - 2011 + 2016 ], "performance_multiplier": [ - 2011 + 2016 ], "player_steam_id": [ - 2011 + 2016 ], "player_team_elo_avg": [ - 2011 + 2016 ], "series_multiplier": [ - 2011 + 2016 ], "team_avg_kda": [ - 2011 + 2016 ], "updated_elo": [ - 2011 + 2016 ], "__typename": [ - 70 + 75 ] }, "v_player_elo_variance_fields": { @@ -97957,120 +98786,120 @@ export default { 29 ], "__typename": [ - 70 + 75 ] }, "v_player_elo_variance_order_by": { "actual_score": [ - 2011 + 2016 ], "assists": [ - 2011 + 2016 ], "current_elo": [ - 2011 + 2016 ], "damage": [ - 2011 + 2016 ], "damage_percent": [ - 2011 + 2016 ], "deaths": [ - 2011 + 2016 ], "elo_change": [ - 2011 + 2016 ], "expected_score": [ - 2011 + 2016 ], "impact": [ - 2011 + 2016 ], "k_factor": [ - 2011 + 2016 ], "kda": [ - 2011 + 2016 ], "kills": [ - 2011 + 2016 ], "map_losses": [ - 2011 + 2016 ], "map_wins": [ - 2011 + 2016 ], "opponent_team_elo_avg": [ - 2011 + 2016 ], "performance_multiplier": [ - 2011 + 2016 ], "player_steam_id": [ - 2011 + 2016 ], "player_team_elo_avg": [ - 2011 + 2016 ], "series_multiplier": [ - 2011 + 2016 ], "team_avg_kda": [ - 2011 + 2016 ], "updated_elo": [ - 2011 + 2016 ], "__typename": [ - 70 + 75 ] }, "v_player_map_losses": { "map": [ - 1344 + 1349 ], "map_id": [ - 3818 + 3864 ], "match": [ - 1826 + 1831 ], "match_id": [ - 3818 + 3864 ], "started_at": [ - 3421 + 3467 ], "steam_id": [ - 169 + 174 ], "__typename": [ - 70 + 75 ] }, "v_player_map_losses_aggregate": { "aggregate": [ - 4113 + 4159 ], "nodes": [ - 4111 + 4157 ], "__typename": [ - 70 + 75 ] }, "v_player_map_losses_aggregate_fields": { "avg": [ - 4114 + 4160 ], "count": [ 38, { "columns": [ - 4119, + 4165, "[v_player_map_losses_select_column!]" ], "distinct": [ @@ -98079,34 +98908,34 @@ export default { } ], "max": [ - 4116 + 4162 ], "min": [ - 4117 + 4163 ], "stddev": [ - 4120 + 4166 ], "stddev_pop": [ - 4121 + 4167 ], "stddev_samp": [ - 4122 + 4168 ], "sum": [ - 4125 + 4171 ], "var_pop": [ - 4126 + 4172 ], "var_samp": [ - 4127 + 4173 ], "variance": [ - 4128 + 4174 ], "__typename": [ - 70 + 75 ] }, "v_player_map_losses_avg_fields": { @@ -98114,96 +98943,96 @@ export default { 29 ], "__typename": [ - 70 + 75 ] }, "v_player_map_losses_bool_exp": { "_and": [ - 4115 + 4161 ], "_not": [ - 4115 + 4161 ], "_or": [ - 4115 + 4161 ], "map": [ - 1353 + 1358 ], "map_id": [ - 3820 + 3866 ], "match": [ - 1835 + 1840 ], "match_id": [ - 3820 + 3866 ], "started_at": [ - 3422 + 3468 ], "steam_id": [ - 171 + 176 ], "__typename": [ - 70 + 75 ] }, "v_player_map_losses_max_fields": { "map_id": [ - 3818 + 3864 ], "match_id": [ - 3818 + 3864 ], "started_at": [ - 3421 + 3467 ], "steam_id": [ - 169 + 174 ], "__typename": [ - 70 + 75 ] }, "v_player_map_losses_min_fields": { "map_id": [ - 3818 + 3864 ], "match_id": [ - 3818 + 3864 ], "started_at": [ - 3421 + 3467 ], "steam_id": [ - 169 + 174 ], "__typename": [ - 70 + 75 ] }, "v_player_map_losses_order_by": { "map": [ - 1363 + 1368 ], "map_id": [ - 2011 + 2016 ], "match": [ - 1846 + 1851 ], "match_id": [ - 2011 + 2016 ], "started_at": [ - 2011 + 2016 ], "steam_id": [ - 2011 + 2016 ], "__typename": [ - 70 + 75 ] }, "v_player_map_losses_select_column": {}, @@ -98212,7 +99041,7 @@ export default { 29 ], "__typename": [ - 70 + 75 ] }, "v_player_map_losses_stddev_pop_fields": { @@ -98220,7 +99049,7 @@ export default { 29 ], "__typename": [ - 70 + 75 ] }, "v_player_map_losses_stddev_samp_fields": { @@ -98228,43 +99057,43 @@ export default { 29 ], "__typename": [ - 70 + 75 ] }, "v_player_map_losses_stream_cursor_input": { "initial_value": [ - 4124 + 4170 ], "ordering": [ - 224 + 229 ], "__typename": [ - 70 + 75 ] }, "v_player_map_losses_stream_cursor_value_input": { "map_id": [ - 3818 + 3864 ], "match_id": [ - 3818 + 3864 ], "started_at": [ - 3421 + 3467 ], "steam_id": [ - 169 + 174 ], "__typename": [ - 70 + 75 ] }, "v_player_map_losses_sum_fields": { "steam_id": [ - 169 + 174 ], "__typename": [ - 70 + 75 ] }, "v_player_map_losses_var_pop_fields": { @@ -98272,7 +99101,7 @@ export default { 29 ], "__typename": [ - 70 + 75 ] }, "v_player_map_losses_var_samp_fields": { @@ -98280,7 +99109,7 @@ export default { 29 ], "__typename": [ - 70 + 75 ] }, "v_player_map_losses_variance_fields": { @@ -98288,52 +99117,52 @@ export default { 29 ], "__typename": [ - 70 + 75 ] }, "v_player_map_wins": { "map": [ - 1344 + 1349 ], "map_id": [ - 3818 + 3864 ], "match": [ - 1826 + 1831 ], "match_id": [ - 3818 + 3864 ], "started_at": [ - 3421 + 3467 ], "steam_id": [ - 169 + 174 ], "__typename": [ - 70 + 75 ] }, "v_player_map_wins_aggregate": { "aggregate": [ - 4131 + 4177 ], "nodes": [ - 4129 + 4175 ], "__typename": [ - 70 + 75 ] }, "v_player_map_wins_aggregate_fields": { "avg": [ - 4132 + 4178 ], "count": [ 38, { "columns": [ - 4137, + 4183, "[v_player_map_wins_select_column!]" ], "distinct": [ @@ -98342,34 +99171,34 @@ export default { } ], "max": [ - 4134 + 4180 ], "min": [ - 4135 + 4181 ], "stddev": [ - 4138 + 4184 ], "stddev_pop": [ - 4139 + 4185 ], "stddev_samp": [ - 4140 + 4186 ], "sum": [ - 4143 + 4189 ], "var_pop": [ - 4144 + 4190 ], "var_samp": [ - 4145 + 4191 ], "variance": [ - 4146 + 4192 ], "__typename": [ - 70 + 75 ] }, "v_player_map_wins_avg_fields": { @@ -98377,96 +99206,96 @@ export default { 29 ], "__typename": [ - 70 + 75 ] }, "v_player_map_wins_bool_exp": { "_and": [ - 4133 + 4179 ], "_not": [ - 4133 + 4179 ], "_or": [ - 4133 + 4179 ], "map": [ - 1353 + 1358 ], "map_id": [ - 3820 + 3866 ], "match": [ - 1835 + 1840 ], "match_id": [ - 3820 + 3866 ], "started_at": [ - 3422 + 3468 ], "steam_id": [ - 171 + 176 ], "__typename": [ - 70 + 75 ] }, "v_player_map_wins_max_fields": { "map_id": [ - 3818 + 3864 ], "match_id": [ - 3818 + 3864 ], "started_at": [ - 3421 + 3467 ], "steam_id": [ - 169 + 174 ], "__typename": [ - 70 + 75 ] }, "v_player_map_wins_min_fields": { "map_id": [ - 3818 + 3864 ], "match_id": [ - 3818 + 3864 ], "started_at": [ - 3421 + 3467 ], "steam_id": [ - 169 + 174 ], "__typename": [ - 70 + 75 ] }, "v_player_map_wins_order_by": { "map": [ - 1363 + 1368 ], "map_id": [ - 2011 + 2016 ], "match": [ - 1846 + 1851 ], "match_id": [ - 2011 + 2016 ], "started_at": [ - 2011 + 2016 ], "steam_id": [ - 2011 + 2016 ], "__typename": [ - 70 + 75 ] }, "v_player_map_wins_select_column": {}, @@ -98475,7 +99304,7 @@ export default { 29 ], "__typename": [ - 70 + 75 ] }, "v_player_map_wins_stddev_pop_fields": { @@ -98483,7 +99312,7 @@ export default { 29 ], "__typename": [ - 70 + 75 ] }, "v_player_map_wins_stddev_samp_fields": { @@ -98491,43 +99320,43 @@ export default { 29 ], "__typename": [ - 70 + 75 ] }, "v_player_map_wins_stream_cursor_input": { "initial_value": [ - 4142 + 4188 ], "ordering": [ - 224 + 229 ], "__typename": [ - 70 + 75 ] }, "v_player_map_wins_stream_cursor_value_input": { "map_id": [ - 3818 + 3864 ], "match_id": [ - 3818 + 3864 ], "started_at": [ - 3421 + 3467 ], "steam_id": [ - 169 + 174 ], "__typename": [ - 70 + 75 ] }, "v_player_map_wins_sum_fields": { "steam_id": [ - 169 + 174 ], "__typename": [ - 70 + 75 ] }, "v_player_map_wins_var_pop_fields": { @@ -98535,7 +99364,7 @@ export default { 29 ], "__typename": [ - 70 + 75 ] }, "v_player_map_wins_var_samp_fields": { @@ -98543,7 +99372,7 @@ export default { 29 ], "__typename": [ - 70 + 75 ] }, "v_player_map_wins_variance_fields": { @@ -98551,67 +99380,67 @@ export default { 29 ], "__typename": [ - 70 + 75 ] }, "v_player_match_head_to_head": { "attacked": [ - 2878 + 2915 ], "attacked_steam_id": [ - 169 + 174 ], "attacker": [ - 2878 + 2915 ], "attacker_steam_id": [ - 169 + 174 ], "damage_dealt": [ 38 ], "flash_count": [ - 169 + 174 ], "headshot_kills": [ - 169 + 174 ], "hits": [ - 169 + 174 ], "kills": [ - 169 + 174 ], "match": [ - 1826 + 1831 ], "match_id": [ - 3818 + 3864 ], "__typename": [ - 70 + 75 ] }, "v_player_match_head_to_head_aggregate": { "aggregate": [ - 4149 + 4195 ], "nodes": [ - 4147 + 4193 ], "__typename": [ - 70 + 75 ] }, "v_player_match_head_to_head_aggregate_fields": { "avg": [ - 4150 + 4196 ], "count": [ 38, { "columns": [ - 4155, + 4201, "[v_player_match_head_to_head_select_column!]" ], "distinct": [ @@ -98620,34 +99449,34 @@ export default { } ], "max": [ - 4152 + 4198 ], "min": [ - 4153 + 4199 ], "stddev": [ - 4156 + 4202 ], "stddev_pop": [ - 4157 + 4203 ], "stddev_samp": [ - 4158 + 4204 ], "sum": [ - 4161 + 4207 ], "var_pop": [ - 4162 + 4208 ], "var_samp": [ - 4163 + 4209 ], "variance": [ - 4164 + 4210 ], "__typename": [ - 70 + 75 ] }, "v_player_match_head_to_head_avg_fields": { @@ -98673,150 +99502,150 @@ export default { 29 ], "__typename": [ - 70 + 75 ] }, "v_player_match_head_to_head_bool_exp": { "_and": [ - 4151 + 4197 ], "_not": [ - 4151 + 4197 ], "_or": [ - 4151 + 4197 ], "attacked": [ - 2882 + 2919 ], "attacked_steam_id": [ - 171 + 176 ], "attacker": [ - 2882 + 2919 ], "attacker_steam_id": [ - 171 + 176 ], "damage_dealt": [ 39 ], "flash_count": [ - 171 + 176 ], "headshot_kills": [ - 171 + 176 ], "hits": [ - 171 + 176 ], "kills": [ - 171 + 176 ], "match": [ - 1835 + 1840 ], "match_id": [ - 3820 + 3866 ], "__typename": [ - 70 + 75 ] }, "v_player_match_head_to_head_max_fields": { "attacked_steam_id": [ - 169 + 174 ], "attacker_steam_id": [ - 169 + 174 ], "damage_dealt": [ 38 ], "flash_count": [ - 169 + 174 ], "headshot_kills": [ - 169 + 174 ], "hits": [ - 169 + 174 ], "kills": [ - 169 + 174 ], "match_id": [ - 3818 + 3864 ], "__typename": [ - 70 + 75 ] }, "v_player_match_head_to_head_min_fields": { "attacked_steam_id": [ - 169 + 174 ], "attacker_steam_id": [ - 169 + 174 ], "damage_dealt": [ 38 ], "flash_count": [ - 169 + 174 ], "headshot_kills": [ - 169 + 174 ], "hits": [ - 169 + 174 ], "kills": [ - 169 + 174 ], "match_id": [ - 3818 + 3864 ], "__typename": [ - 70 + 75 ] }, "v_player_match_head_to_head_order_by": { "attacked": [ - 2891 + 2928 ], "attacked_steam_id": [ - 2011 + 2016 ], "attacker": [ - 2891 + 2928 ], "attacker_steam_id": [ - 2011 + 2016 ], "damage_dealt": [ - 2011 + 2016 ], "flash_count": [ - 2011 + 2016 ], "headshot_kills": [ - 2011 + 2016 ], "hits": [ - 2011 + 2016 ], "kills": [ - 2011 + 2016 ], "match": [ - 1846 + 1851 ], "match_id": [ - 2011 + 2016 ], "__typename": [ - 70 + 75 ] }, "v_player_match_head_to_head_select_column": {}, @@ -98843,7 +99672,7 @@ export default { 29 ], "__typename": [ - 70 + 75 ] }, "v_player_match_head_to_head_stddev_pop_fields": { @@ -98869,7 +99698,7 @@ export default { 29 ], "__typename": [ - 70 + 75 ] }, "v_player_match_head_to_head_stddev_samp_fields": { @@ -98895,73 +99724,73 @@ export default { 29 ], "__typename": [ - 70 + 75 ] }, "v_player_match_head_to_head_stream_cursor_input": { "initial_value": [ - 4160 + 4206 ], "ordering": [ - 224 + 229 ], "__typename": [ - 70 + 75 ] }, "v_player_match_head_to_head_stream_cursor_value_input": { "attacked_steam_id": [ - 169 + 174 ], "attacker_steam_id": [ - 169 + 174 ], "damage_dealt": [ 38 ], "flash_count": [ - 169 + 174 ], "headshot_kills": [ - 169 + 174 ], "hits": [ - 169 + 174 ], "kills": [ - 169 + 174 ], "match_id": [ - 3818 + 3864 ], "__typename": [ - 70 + 75 ] }, "v_player_match_head_to_head_sum_fields": { "attacked_steam_id": [ - 169 + 174 ], "attacker_steam_id": [ - 169 + 174 ], "damage_dealt": [ 38 ], "flash_count": [ - 169 + 174 ], "headshot_kills": [ - 169 + 174 ], "hits": [ - 169 + 174 ], "kills": [ - 169 + 174 ], "__typename": [ - 70 + 75 ] }, "v_player_match_head_to_head_var_pop_fields": { @@ -98987,7 +99816,7 @@ export default { 29 ], "__typename": [ - 70 + 75 ] }, "v_player_match_head_to_head_var_samp_fields": { @@ -99013,7 +99842,7 @@ export default { 29 ], "__typename": [ - 70 + 75 ] }, "v_player_match_head_to_head_variance_fields": { @@ -99039,98 +99868,98 @@ export default { 29 ], "__typename": [ - 70 + 75 ] }, "v_player_match_map_hltv": { "adr": [ - 2009 + 2014 ], "apr": [ - 2009 + 2014 ], "dpr": [ - 2009 + 2014 ], "hltv_rating": [ - 2009 + 2014 ], "kast_pct": [ - 2009 + 2014 ], "kpr": [ - 2009 + 2014 ], "match": [ - 1826 + 1831 ], "match_id": [ - 3818 + 3864 ], "match_map": [ - 1664 + 1669 ], "match_map_id": [ - 3818 + 3864 ], "player": [ - 2878 + 2915 ], "rounds_played": [ 38 ], "steam_id": [ - 169 + 174 ], "__typename": [ - 70 + 75 ] }, "v_player_match_map_hltv_aggregate": { "aggregate": [ - 4169 + 4215 ], "nodes": [ - 4165 + 4211 ], "__typename": [ - 70 + 75 ] }, "v_player_match_map_hltv_aggregate_bool_exp": { "count": [ - 4168 + 4214 ], "__typename": [ - 70 + 75 ] }, "v_player_match_map_hltv_aggregate_bool_exp_count": { "arguments": [ - 4183 + 4229 ], "distinct": [ 3 ], "filter": [ - 4174 + 4220 ], "predicate": [ 39 ], "__typename": [ - 70 + 75 ] }, "v_player_match_map_hltv_aggregate_fields": { "avg": [ - 4172 + 4218 ], "count": [ 38, { "columns": [ - 4183, + 4229, "[v_player_match_map_hltv_select_column!]" ], "distinct": [ @@ -99139,80 +99968,80 @@ export default { } ], "max": [ - 4177 + 4223 ], "min": [ - 4179 + 4225 ], "stddev": [ - 4185 + 4231 ], "stddev_pop": [ - 4187 + 4233 ], "stddev_samp": [ - 4189 + 4235 ], "sum": [ - 4193 + 4239 ], "var_pop": [ - 4196 + 4242 ], "var_samp": [ - 4198 + 4244 ], "variance": [ - 4200 + 4246 ], "__typename": [ - 70 + 75 ] }, "v_player_match_map_hltv_aggregate_order_by": { "avg": [ - 4173 + 4219 ], "count": [ - 2011 + 2016 ], "max": [ - 4178 + 4224 ], "min": [ - 4180 + 4226 ], "stddev": [ - 4186 + 4232 ], "stddev_pop": [ - 4188 + 4234 ], "stddev_samp": [ - 4190 + 4236 ], "sum": [ - 4194 + 4240 ], "var_pop": [ - 4197 + 4243 ], "var_samp": [ - 4199 + 4245 ], "variance": [ - 4201 + 4247 ], "__typename": [ - 70 + 75 ] }, "v_player_match_map_hltv_arr_rel_insert_input": { "data": [ - 4176 + 4222 ], "__typename": [ - 70 + 75 ] }, "v_player_match_map_hltv_avg_fields": { @@ -99241,302 +100070,302 @@ export default { 29 ], "__typename": [ - 70 + 75 ] }, "v_player_match_map_hltv_avg_order_by": { "adr": [ - 2011 + 2016 ], "apr": [ - 2011 + 2016 ], "dpr": [ - 2011 + 2016 ], "hltv_rating": [ - 2011 + 2016 ], "kast_pct": [ - 2011 + 2016 ], "kpr": [ - 2011 + 2016 ], "rounds_played": [ - 2011 + 2016 ], "steam_id": [ - 2011 + 2016 ], "__typename": [ - 70 + 75 ] }, "v_player_match_map_hltv_bool_exp": { "_and": [ - 4174 + 4220 ], "_not": [ - 4174 + 4220 ], "_or": [ - 4174 + 4220 ], "adr": [ - 2010 + 2015 ], "apr": [ - 2010 + 2015 ], "dpr": [ - 2010 + 2015 ], "hltv_rating": [ - 2010 + 2015 ], "kast_pct": [ - 2010 + 2015 ], "kpr": [ - 2010 + 2015 ], "match": [ - 1835 + 1840 ], "match_id": [ - 3820 + 3866 ], "match_map": [ - 1673 + 1678 ], "match_map_id": [ - 3820 + 3866 ], "player": [ - 2882 + 2919 ], "rounds_played": [ 39 ], "steam_id": [ - 171 + 176 ], "__typename": [ - 70 + 75 ] }, "v_player_match_map_hltv_inc_input": { "adr": [ - 2009 + 2014 ], "apr": [ - 2009 + 2014 ], "dpr": [ - 2009 + 2014 ], "hltv_rating": [ - 2009 + 2014 ], "kast_pct": [ - 2009 + 2014 ], "kpr": [ - 2009 + 2014 ], "rounds_played": [ 38 ], "steam_id": [ - 169 + 174 ], "__typename": [ - 70 + 75 ] }, "v_player_match_map_hltv_insert_input": { "adr": [ - 2009 + 2014 ], "apr": [ - 2009 + 2014 ], "dpr": [ - 2009 + 2014 ], "hltv_rating": [ - 2009 + 2014 ], "kast_pct": [ - 2009 + 2014 ], "kpr": [ - 2009 + 2014 ], "match": [ - 1844 + 1849 ], "match_id": [ - 3818 + 3864 ], "match_map": [ - 1682 + 1687 ], "match_map_id": [ - 3818 + 3864 ], "player": [ - 2889 + 2926 ], "rounds_played": [ 38 ], "steam_id": [ - 169 + 174 ], "__typename": [ - 70 + 75 ] }, "v_player_match_map_hltv_max_fields": { "adr": [ - 2009 + 2014 ], "apr": [ - 2009 + 2014 ], "dpr": [ - 2009 + 2014 ], "hltv_rating": [ - 2009 + 2014 ], "kast_pct": [ - 2009 + 2014 ], "kpr": [ - 2009 + 2014 ], "match_id": [ - 3818 + 3864 ], "match_map_id": [ - 3818 + 3864 ], "rounds_played": [ 38 ], "steam_id": [ - 169 + 174 ], "__typename": [ - 70 + 75 ] }, "v_player_match_map_hltv_max_order_by": { "adr": [ - 2011 + 2016 ], "apr": [ - 2011 + 2016 ], "dpr": [ - 2011 + 2016 ], "hltv_rating": [ - 2011 + 2016 ], "kast_pct": [ - 2011 + 2016 ], "kpr": [ - 2011 + 2016 ], "match_id": [ - 2011 + 2016 ], "match_map_id": [ - 2011 + 2016 ], "rounds_played": [ - 2011 + 2016 ], "steam_id": [ - 2011 + 2016 ], "__typename": [ - 70 + 75 ] }, "v_player_match_map_hltv_min_fields": { "adr": [ - 2009 + 2014 ], "apr": [ - 2009 + 2014 ], "dpr": [ - 2009 + 2014 ], "hltv_rating": [ - 2009 + 2014 ], "kast_pct": [ - 2009 + 2014 ], "kpr": [ - 2009 + 2014 ], "match_id": [ - 3818 + 3864 ], "match_map_id": [ - 3818 + 3864 ], "rounds_played": [ 38 ], "steam_id": [ - 169 + 174 ], "__typename": [ - 70 + 75 ] }, "v_player_match_map_hltv_min_order_by": { "adr": [ - 2011 + 2016 ], "apr": [ - 2011 + 2016 ], "dpr": [ - 2011 + 2016 ], "hltv_rating": [ - 2011 + 2016 ], "kast_pct": [ - 2011 + 2016 ], "kpr": [ - 2011 + 2016 ], "match_id": [ - 2011 + 2016 ], "match_map_id": [ - 2011 + 2016 ], "rounds_played": [ - 2011 + 2016 ], "steam_id": [ - 2011 + 2016 ], "__typename": [ - 70 + 75 ] }, "v_player_match_map_hltv_mutation_response": { @@ -99544,90 +100373,90 @@ export default { 38 ], "returning": [ - 4165 + 4211 ], "__typename": [ - 70 + 75 ] }, "v_player_match_map_hltv_order_by": { "adr": [ - 2011 + 2016 ], "apr": [ - 2011 + 2016 ], "dpr": [ - 2011 + 2016 ], "hltv_rating": [ - 2011 + 2016 ], "kast_pct": [ - 2011 + 2016 ], "kpr": [ - 2011 + 2016 ], "match": [ - 1846 + 1851 ], "match_id": [ - 2011 + 2016 ], "match_map": [ - 1684 + 1689 ], "match_map_id": [ - 2011 + 2016 ], "player": [ - 2891 + 2928 ], "rounds_played": [ - 2011 + 2016 ], "steam_id": [ - 2011 + 2016 ], "__typename": [ - 70 + 75 ] }, "v_player_match_map_hltv_select_column": {}, "v_player_match_map_hltv_set_input": { "adr": [ - 2009 + 2014 ], "apr": [ - 2009 + 2014 ], "dpr": [ - 2009 + 2014 ], "hltv_rating": [ - 2009 + 2014 ], "kast_pct": [ - 2009 + 2014 ], "kpr": [ - 2009 + 2014 ], "match_id": [ - 3818 + 3864 ], "match_map_id": [ - 3818 + 3864 ], "rounds_played": [ 38 ], "steam_id": [ - 169 + 174 ], "__typename": [ - 70 + 75 ] }, "v_player_match_map_hltv_stddev_fields": { @@ -99656,36 +100485,36 @@ export default { 29 ], "__typename": [ - 70 + 75 ] }, "v_player_match_map_hltv_stddev_order_by": { "adr": [ - 2011 + 2016 ], "apr": [ - 2011 + 2016 ], "dpr": [ - 2011 + 2016 ], "hltv_rating": [ - 2011 + 2016 ], "kast_pct": [ - 2011 + 2016 ], "kpr": [ - 2011 + 2016 ], "rounds_played": [ - 2011 + 2016 ], "steam_id": [ - 2011 + 2016 ], "__typename": [ - 70 + 75 ] }, "v_player_match_map_hltv_stddev_pop_fields": { @@ -99714,36 +100543,36 @@ export default { 29 ], "__typename": [ - 70 + 75 ] }, "v_player_match_map_hltv_stddev_pop_order_by": { "adr": [ - 2011 + 2016 ], "apr": [ - 2011 + 2016 ], "dpr": [ - 2011 + 2016 ], "hltv_rating": [ - 2011 + 2016 ], "kast_pct": [ - 2011 + 2016 ], "kpr": [ - 2011 + 2016 ], "rounds_played": [ - 2011 + 2016 ], "steam_id": [ - 2011 + 2016 ], "__typename": [ - 70 + 75 ] }, "v_player_match_map_hltv_stddev_samp_fields": { @@ -99772,154 +100601,154 @@ export default { 29 ], "__typename": [ - 70 + 75 ] }, "v_player_match_map_hltv_stddev_samp_order_by": { "adr": [ - 2011 + 2016 ], "apr": [ - 2011 + 2016 ], "dpr": [ - 2011 + 2016 ], "hltv_rating": [ - 2011 + 2016 ], "kast_pct": [ - 2011 + 2016 ], "kpr": [ - 2011 + 2016 ], "rounds_played": [ - 2011 + 2016 ], "steam_id": [ - 2011 + 2016 ], "__typename": [ - 70 + 75 ] }, "v_player_match_map_hltv_stream_cursor_input": { "initial_value": [ - 4192 + 4238 ], "ordering": [ - 224 + 229 ], "__typename": [ - 70 + 75 ] }, "v_player_match_map_hltv_stream_cursor_value_input": { "adr": [ - 2009 + 2014 ], "apr": [ - 2009 + 2014 ], "dpr": [ - 2009 + 2014 ], "hltv_rating": [ - 2009 + 2014 ], "kast_pct": [ - 2009 + 2014 ], "kpr": [ - 2009 + 2014 ], "match_id": [ - 3818 + 3864 ], "match_map_id": [ - 3818 + 3864 ], "rounds_played": [ 38 ], "steam_id": [ - 169 + 174 ], "__typename": [ - 70 + 75 ] }, "v_player_match_map_hltv_sum_fields": { "adr": [ - 2009 + 2014 ], "apr": [ - 2009 + 2014 ], "dpr": [ - 2009 + 2014 ], "hltv_rating": [ - 2009 + 2014 ], "kast_pct": [ - 2009 + 2014 ], "kpr": [ - 2009 + 2014 ], "rounds_played": [ 38 ], "steam_id": [ - 169 + 174 ], "__typename": [ - 70 + 75 ] }, "v_player_match_map_hltv_sum_order_by": { "adr": [ - 2011 + 2016 ], "apr": [ - 2011 + 2016 ], "dpr": [ - 2011 + 2016 ], "hltv_rating": [ - 2011 + 2016 ], "kast_pct": [ - 2011 + 2016 ], "kpr": [ - 2011 + 2016 ], "rounds_played": [ - 2011 + 2016 ], "steam_id": [ - 2011 + 2016 ], "__typename": [ - 70 + 75 ] }, "v_player_match_map_hltv_updates": { "_inc": [ - 4175 + 4221 ], "_set": [ - 4184 + 4230 ], "where": [ - 4174 + 4220 ], "__typename": [ - 70 + 75 ] }, "v_player_match_map_hltv_var_pop_fields": { @@ -99948,36 +100777,36 @@ export default { 29 ], "__typename": [ - 70 + 75 ] }, "v_player_match_map_hltv_var_pop_order_by": { "adr": [ - 2011 + 2016 ], "apr": [ - 2011 + 2016 ], "dpr": [ - 2011 + 2016 ], "hltv_rating": [ - 2011 + 2016 ], "kast_pct": [ - 2011 + 2016 ], "kpr": [ - 2011 + 2016 ], "rounds_played": [ - 2011 + 2016 ], "steam_id": [ - 2011 + 2016 ], "__typename": [ - 70 + 75 ] }, "v_player_match_map_hltv_var_samp_fields": { @@ -100006,36 +100835,36 @@ export default { 29 ], "__typename": [ - 70 + 75 ] }, "v_player_match_map_hltv_var_samp_order_by": { "adr": [ - 2011 + 2016 ], "apr": [ - 2011 + 2016 ], "dpr": [ - 2011 + 2016 ], "hltv_rating": [ - 2011 + 2016 ], "kast_pct": [ - 2011 + 2016 ], "kpr": [ - 2011 + 2016 ], "rounds_played": [ - 2011 + 2016 ], "steam_id": [ - 2011 + 2016 ], "__typename": [ - 70 + 75 ] }, "v_player_match_map_hltv_variance_fields": { @@ -100064,86 +100893,86 @@ export default { 29 ], "__typename": [ - 70 + 75 ] }, "v_player_match_map_hltv_variance_order_by": { "adr": [ - 2011 + 2016 ], "apr": [ - 2011 + 2016 ], "dpr": [ - 2011 + 2016 ], "hltv_rating": [ - 2011 + 2016 ], "kast_pct": [ - 2011 + 2016 ], "kpr": [ - 2011 + 2016 ], "rounds_played": [ - 2011 + 2016 ], "steam_id": [ - 2011 + 2016 ], "__typename": [ - 70 + 75 ] }, "v_player_match_map_roles": { "adr": [ - 2009 + 2014 ], "awp_kills": [ 38 ], "awp_share": [ - 2009 + 2014 ], "deaths": [ 38 ], "dpr": [ - 2009 + 2014 ], "entry_rate": [ - 2009 + 2014 ], "flash_assists": [ 38 ], "hltv_rating": [ - 2009 + 2014 ], "kast_pct": [ - 2009 + 2014 ], "kills": [ 38 ], "kpr": [ - 2009 + 2014 ], "lineup_id": [ - 3818 + 3864 ], "match": [ - 1826 + 1831 ], "match_id": [ - 3818 + 3864 ], "match_map": [ - 1664 + 1669 ], "match_map_id": [ - 3818 + 3864 ], "open_deaths": [ 38 @@ -100155,19 +100984,19 @@ export default { 38 ], "player": [ - 2878 + 2915 ], "role": [ - 70 + 75 ], "rounds": [ 38 ], "steam_id": [ - 169 + 174 ], "support_idx": [ - 2009 + 2014 ], "total_kills": [ 38 @@ -100182,29 +101011,29 @@ export default { 38 ], "__typename": [ - 70 + 75 ] }, "v_player_match_map_roles_aggregate": { "aggregate": [ - 4204 + 4250 ], "nodes": [ - 4202 + 4248 ], "__typename": [ - 70 + 75 ] }, "v_player_match_map_roles_aggregate_fields": { "avg": [ - 4205 + 4251 ], "count": [ 38, { "columns": [ - 4210, + 4256, "[v_player_match_map_roles_select_column!]" ], "distinct": [ @@ -100213,34 +101042,34 @@ export default { } ], "max": [ - 4207 + 4253 ], "min": [ - 4208 + 4254 ], "stddev": [ - 4211 + 4257 ], "stddev_pop": [ - 4212 + 4258 ], "stddev_samp": [ - 4213 + 4259 ], "sum": [ - 4216 + 4262 ], "var_pop": [ - 4217 + 4263 ], "var_samp": [ - 4218 + 4264 ], "variance": [ - 4219 + 4265 ], "__typename": [ - 70 + 75 ] }, "v_player_match_map_roles_avg_fields": { @@ -100308,66 +101137,66 @@ export default { 29 ], "__typename": [ - 70 + 75 ] }, "v_player_match_map_roles_bool_exp": { "_and": [ - 4206 + 4252 ], "_not": [ - 4206 + 4252 ], "_or": [ - 4206 + 4252 ], "adr": [ - 2010 + 2015 ], "awp_kills": [ 39 ], "awp_share": [ - 2010 + 2015 ], "deaths": [ 39 ], "dpr": [ - 2010 + 2015 ], "entry_rate": [ - 2010 + 2015 ], "flash_assists": [ 39 ], "hltv_rating": [ - 2010 + 2015 ], "kast_pct": [ - 2010 + 2015 ], "kills": [ 39 ], "kpr": [ - 2010 + 2015 ], "lineup_id": [ - 3820 + 3866 ], "match": [ - 1835 + 1840 ], "match_id": [ - 3820 + 3866 ], "match_map": [ - 1673 + 1678 ], "match_map_id": [ - 3820 + 3866 ], "open_deaths": [ 39 @@ -100379,19 +101208,19 @@ export default { 39 ], "player": [ - 2882 + 2919 ], "role": [ - 72 + 77 ], "rounds": [ 39 ], "steam_id": [ - 171 + 176 ], "support_idx": [ - 2010 + 2015 ], "total_kills": [ 39 @@ -100406,51 +101235,51 @@ export default { 39 ], "__typename": [ - 70 + 75 ] }, "v_player_match_map_roles_max_fields": { "adr": [ - 2009 + 2014 ], "awp_kills": [ 38 ], "awp_share": [ - 2009 + 2014 ], "deaths": [ 38 ], "dpr": [ - 2009 + 2014 ], "entry_rate": [ - 2009 + 2014 ], "flash_assists": [ 38 ], "hltv_rating": [ - 2009 + 2014 ], "kast_pct": [ - 2009 + 2014 ], "kills": [ 38 ], "kpr": [ - 2009 + 2014 ], "lineup_id": [ - 3818 + 3864 ], "match_id": [ - 3818 + 3864 ], "match_map_id": [ - 3818 + 3864 ], "open_deaths": [ 38 @@ -100462,16 +101291,16 @@ export default { 38 ], "role": [ - 70 + 75 ], "rounds": [ 38 ], "steam_id": [ - 169 + 174 ], "support_idx": [ - 2009 + 2014 ], "total_kills": [ 38 @@ -100486,51 +101315,51 @@ export default { 38 ], "__typename": [ - 70 + 75 ] }, "v_player_match_map_roles_min_fields": { "adr": [ - 2009 + 2014 ], "awp_kills": [ 38 ], "awp_share": [ - 2009 + 2014 ], "deaths": [ 38 ], "dpr": [ - 2009 + 2014 ], "entry_rate": [ - 2009 + 2014 ], "flash_assists": [ 38 ], "hltv_rating": [ - 2009 + 2014 ], "kast_pct": [ - 2009 + 2014 ], "kills": [ 38 ], "kpr": [ - 2009 + 2014 ], "lineup_id": [ - 3818 + 3864 ], "match_id": [ - 3818 + 3864 ], "match_map_id": [ - 3818 + 3864 ], "open_deaths": [ 38 @@ -100542,16 +101371,16 @@ export default { 38 ], "role": [ - 70 + 75 ], "rounds": [ 38 ], "steam_id": [ - 169 + 174 ], "support_idx": [ - 2009 + 2014 ], "total_kills": [ 38 @@ -100566,96 +101395,96 @@ export default { 38 ], "__typename": [ - 70 + 75 ] }, "v_player_match_map_roles_order_by": { "adr": [ - 2011 + 2016 ], "awp_kills": [ - 2011 + 2016 ], "awp_share": [ - 2011 + 2016 ], "deaths": [ - 2011 + 2016 ], "dpr": [ - 2011 + 2016 ], "entry_rate": [ - 2011 + 2016 ], "flash_assists": [ - 2011 + 2016 ], "hltv_rating": [ - 2011 + 2016 ], "kast_pct": [ - 2011 + 2016 ], "kills": [ - 2011 + 2016 ], "kpr": [ - 2011 + 2016 ], "lineup_id": [ - 2011 + 2016 ], "match": [ - 1846 + 1851 ], "match_id": [ - 2011 + 2016 ], "match_map": [ - 1684 + 1689 ], "match_map_id": [ - 2011 + 2016 ], "open_deaths": [ - 2011 + 2016 ], "open_kills": [ - 2011 + 2016 ], "opening_attempts": [ - 2011 + 2016 ], "player": [ - 2891 + 2928 ], "role": [ - 2011 + 2016 ], "rounds": [ - 2011 + 2016 ], "steam_id": [ - 2011 + 2016 ], "support_idx": [ - 2011 + 2016 ], "total_kills": [ - 2011 + 2016 ], "trade_kill_successes": [ - 2011 + 2016 ], "traded_death_successes": [ - 2011 + 2016 ], "util_damage": [ - 2011 + 2016 ], "__typename": [ - 70 + 75 ] }, "v_player_match_map_roles_select_column": {}, @@ -100724,7 +101553,7 @@ export default { 29 ], "__typename": [ - 70 + 75 ] }, "v_player_match_map_roles_stddev_pop_fields": { @@ -100792,7 +101621,7 @@ export default { 29 ], "__typename": [ - 70 + 75 ] }, "v_player_match_map_roles_stddev_samp_fields": { @@ -100860,62 +101689,62 @@ export default { 29 ], "__typename": [ - 70 + 75 ] }, "v_player_match_map_roles_stream_cursor_input": { "initial_value": [ - 4215 + 4261 ], "ordering": [ - 224 + 229 ], "__typename": [ - 70 + 75 ] }, "v_player_match_map_roles_stream_cursor_value_input": { "adr": [ - 2009 + 2014 ], "awp_kills": [ 38 ], "awp_share": [ - 2009 + 2014 ], "deaths": [ 38 ], "dpr": [ - 2009 + 2014 ], "entry_rate": [ - 2009 + 2014 ], "flash_assists": [ 38 ], "hltv_rating": [ - 2009 + 2014 ], "kast_pct": [ - 2009 + 2014 ], "kills": [ 38 ], "kpr": [ - 2009 + 2014 ], "lineup_id": [ - 3818 + 3864 ], "match_id": [ - 3818 + 3864 ], "match_map_id": [ - 3818 + 3864 ], "open_deaths": [ 38 @@ -100927,16 +101756,16 @@ export default { 38 ], "role": [ - 70 + 75 ], "rounds": [ 38 ], "steam_id": [ - 169 + 174 ], "support_idx": [ - 2009 + 2014 ], "total_kills": [ 38 @@ -100951,42 +101780,42 @@ export default { 38 ], "__typename": [ - 70 + 75 ] }, "v_player_match_map_roles_sum_fields": { "adr": [ - 2009 + 2014 ], "awp_kills": [ 38 ], "awp_share": [ - 2009 + 2014 ], "deaths": [ 38 ], "dpr": [ - 2009 + 2014 ], "entry_rate": [ - 2009 + 2014 ], "flash_assists": [ 38 ], "hltv_rating": [ - 2009 + 2014 ], "kast_pct": [ - 2009 + 2014 ], "kills": [ 38 ], "kpr": [ - 2009 + 2014 ], "open_deaths": [ 38 @@ -101001,10 +101830,10 @@ export default { 38 ], "steam_id": [ - 169 + 174 ], "support_idx": [ - 2009 + 2014 ], "total_kills": [ 38 @@ -101019,7 +101848,7 @@ export default { 38 ], "__typename": [ - 70 + 75 ] }, "v_player_match_map_roles_var_pop_fields": { @@ -101087,7 +101916,7 @@ export default { 29 ], "__typename": [ - 70 + 75 ] }, "v_player_match_map_roles_var_samp_fields": { @@ -101155,7 +101984,7 @@ export default { 29 ], "__typename": [ - 70 + 75 ] }, "v_player_match_map_roles_variance_fields": { @@ -101223,7 +102052,7 @@ export default { 29 ], "__typename": [ - 70 + 75 ] }, "v_player_match_performance": { @@ -101237,56 +102066,56 @@ export default { 38 ], "map": [ - 1344 + 1349 ], "map_id": [ - 3818 + 3864 ], "match": [ - 1826 + 1831 ], "match_created_at": [ - 3421 + 3467 ], "match_id": [ - 3818 + 3864 ], "match_result": [ - 70 + 75 ], "player_steam_id": [ - 169 + 174 ], "source": [ - 70 + 75 ], "type": [ - 70 + 75 ], "__typename": [ - 70 + 75 ] }, "v_player_match_performance_aggregate": { "aggregate": [ - 4222 + 4268 ], "nodes": [ - 4220 + 4266 ], "__typename": [ - 70 + 75 ] }, "v_player_match_performance_aggregate_fields": { "avg": [ - 4223 + 4269 ], "count": [ 38, { "columns": [ - 4228, + 4274, "[v_player_match_performance_select_column!]" ], "distinct": [ @@ -101295,34 +102124,34 @@ export default { } ], "max": [ - 4225 + 4271 ], "min": [ - 4226 + 4272 ], "stddev": [ - 4229 + 4275 ], "stddev_pop": [ - 4230 + 4276 ], "stddev_samp": [ - 4231 + 4277 ], "sum": [ - 4234 + 4280 ], "var_pop": [ - 4235 + 4281 ], "var_samp": [ - 4236 + 4282 ], "variance": [ - 4237 + 4283 ], "__typename": [ - 70 + 75 ] }, "v_player_match_performance_avg_fields": { @@ -101339,18 +102168,18 @@ export default { 29 ], "__typename": [ - 70 + 75 ] }, "v_player_match_performance_bool_exp": { "_and": [ - 4224 + 4270 ], "_not": [ - 4224 + 4270 ], "_or": [ - 4224 + 4270 ], "assists": [ 39 @@ -101362,34 +102191,34 @@ export default { 39 ], "map": [ - 1353 + 1358 ], "map_id": [ - 3820 + 3866 ], "match": [ - 1835 + 1840 ], "match_created_at": [ - 3422 + 3468 ], "match_id": [ - 3820 + 3866 ], "match_result": [ - 72 + 77 ], "player_steam_id": [ - 171 + 176 ], "source": [ - 72 + 77 ], "type": [ - 72 + 77 ], "__typename": [ - 70 + 75 ] }, "v_player_match_performance_max_fields": { @@ -101403,28 +102232,28 @@ export default { 38 ], "map_id": [ - 3818 + 3864 ], "match_created_at": [ - 3421 + 3467 ], "match_id": [ - 3818 + 3864 ], "match_result": [ - 70 + 75 ], "player_steam_id": [ - 169 + 174 ], "source": [ - 70 + 75 ], "type": [ - 70 + 75 ], "__typename": [ - 70 + 75 ] }, "v_player_match_performance_min_fields": { @@ -101438,69 +102267,69 @@ export default { 38 ], "map_id": [ - 3818 + 3864 ], "match_created_at": [ - 3421 + 3467 ], "match_id": [ - 3818 + 3864 ], "match_result": [ - 70 + 75 ], "player_steam_id": [ - 169 + 174 ], "source": [ - 70 + 75 ], "type": [ - 70 + 75 ], "__typename": [ - 70 + 75 ] }, "v_player_match_performance_order_by": { "assists": [ - 2011 + 2016 ], "deaths": [ - 2011 + 2016 ], "kills": [ - 2011 + 2016 ], "map": [ - 1363 + 1368 ], "map_id": [ - 2011 + 2016 ], "match": [ - 1846 + 1851 ], "match_created_at": [ - 2011 + 2016 ], "match_id": [ - 2011 + 2016 ], "match_result": [ - 2011 + 2016 ], "player_steam_id": [ - 2011 + 2016 ], "source": [ - 2011 + 2016 ], "type": [ - 2011 + 2016 ], "__typename": [ - 70 + 75 ] }, "v_player_match_performance_select_column": {}, @@ -101518,7 +102347,7 @@ export default { 29 ], "__typename": [ - 70 + 75 ] }, "v_player_match_performance_stddev_pop_fields": { @@ -101535,7 +102364,7 @@ export default { 29 ], "__typename": [ - 70 + 75 ] }, "v_player_match_performance_stddev_samp_fields": { @@ -101552,18 +102381,18 @@ export default { 29 ], "__typename": [ - 70 + 75 ] }, "v_player_match_performance_stream_cursor_input": { "initial_value": [ - 4233 + 4279 ], "ordering": [ - 224 + 229 ], "__typename": [ - 70 + 75 ] }, "v_player_match_performance_stream_cursor_value_input": { @@ -101577,28 +102406,28 @@ export default { 38 ], "map_id": [ - 3818 + 3864 ], "match_created_at": [ - 3421 + 3467 ], "match_id": [ - 3818 + 3864 ], "match_result": [ - 70 + 75 ], "player_steam_id": [ - 169 + 174 ], "source": [ - 70 + 75 ], "type": [ - 70 + 75 ], "__typename": [ - 70 + 75 ] }, "v_player_match_performance_sum_fields": { @@ -101612,10 +102441,10 @@ export default { 38 ], "player_steam_id": [ - 169 + 174 ], "__typename": [ - 70 + 75 ] }, "v_player_match_performance_var_pop_fields": { @@ -101632,7 +102461,7 @@ export default { 29 ], "__typename": [ - 70 + 75 ] }, "v_player_match_performance_var_samp_fields": { @@ -101649,7 +102478,7 @@ export default { 29 ], "__typename": [ - 70 + 75 ] }, "v_player_match_performance_variance_fields": { @@ -101666,64 +102495,64 @@ export default { 29 ], "__typename": [ - 70 + 75 ] }, "v_player_match_rating": { "adr": [ - 2009 + 2014 ], "dpr": [ - 2009 + 2014 ], "hltv_rating": [ - 2009 + 2014 ], "kast_pct": [ - 2009 + 2014 ], "kpr": [ - 2009 + 2014 ], "match": [ - 1826 + 1831 ], "match_id": [ - 3818 + 3864 ], "player": [ - 2878 + 2915 ], "rounds_played": [ 38 ], "steam_id": [ - 169 + 174 ], "__typename": [ - 70 + 75 ] }, "v_player_match_rating_aggregate": { "aggregate": [ - 4240 + 4286 ], "nodes": [ - 4238 + 4284 ], "__typename": [ - 70 + 75 ] }, "v_player_match_rating_aggregate_fields": { "avg": [ - 4241 + 4287 ], "count": [ 38, { "columns": [ - 4246, + 4292, "[v_player_match_rating_select_column!]" ], "distinct": [ @@ -101732,34 +102561,34 @@ export default { } ], "max": [ - 4243 + 4289 ], "min": [ - 4244 + 4290 ], "stddev": [ - 4247 + 4293 ], "stddev_pop": [ - 4248 + 4294 ], "stddev_samp": [ - 4249 + 4295 ], "sum": [ - 4252 + 4298 ], "var_pop": [ - 4253 + 4299 ], "var_samp": [ - 4254 + 4300 ], "variance": [ - 4255 + 4301 ], "__typename": [ - 70 + 75 ] }, "v_player_match_rating_avg_fields": { @@ -101785,144 +102614,144 @@ export default { 29 ], "__typename": [ - 70 + 75 ] }, "v_player_match_rating_bool_exp": { "_and": [ - 4242 + 4288 ], "_not": [ - 4242 + 4288 ], "_or": [ - 4242 + 4288 ], "adr": [ - 2010 + 2015 ], "dpr": [ - 2010 + 2015 ], "hltv_rating": [ - 2010 + 2015 ], "kast_pct": [ - 2010 + 2015 ], "kpr": [ - 2010 + 2015 ], "match": [ - 1835 + 1840 ], "match_id": [ - 3820 + 3866 ], "player": [ - 2882 + 2919 ], "rounds_played": [ 39 ], "steam_id": [ - 171 + 176 ], "__typename": [ - 70 + 75 ] }, "v_player_match_rating_max_fields": { "adr": [ - 2009 + 2014 ], "dpr": [ - 2009 + 2014 ], "hltv_rating": [ - 2009 + 2014 ], "kast_pct": [ - 2009 + 2014 ], "kpr": [ - 2009 + 2014 ], "match_id": [ - 3818 + 3864 ], "rounds_played": [ 38 ], "steam_id": [ - 169 + 174 ], "__typename": [ - 70 + 75 ] }, "v_player_match_rating_min_fields": { "adr": [ - 2009 + 2014 ], "dpr": [ - 2009 + 2014 ], "hltv_rating": [ - 2009 + 2014 ], "kast_pct": [ - 2009 + 2014 ], "kpr": [ - 2009 + 2014 ], "match_id": [ - 3818 + 3864 ], "rounds_played": [ 38 ], "steam_id": [ - 169 + 174 ], "__typename": [ - 70 + 75 ] }, "v_player_match_rating_order_by": { "adr": [ - 2011 + 2016 ], "dpr": [ - 2011 + 2016 ], "hltv_rating": [ - 2011 + 2016 ], "kast_pct": [ - 2011 + 2016 ], "kpr": [ - 2011 + 2016 ], "match": [ - 1846 + 1851 ], "match_id": [ - 2011 + 2016 ], "player": [ - 2891 + 2928 ], "rounds_played": [ - 2011 + 2016 ], "steam_id": [ - 2011 + 2016 ], "__typename": [ - 70 + 75 ] }, "v_player_match_rating_select_column": {}, @@ -101949,7 +102778,7 @@ export default { 29 ], "__typename": [ - 70 + 75 ] }, "v_player_match_rating_stddev_pop_fields": { @@ -101975,7 +102804,7 @@ export default { 29 ], "__typename": [ - 70 + 75 ] }, "v_player_match_rating_stddev_samp_fields": { @@ -102001,73 +102830,73 @@ export default { 29 ], "__typename": [ - 70 + 75 ] }, "v_player_match_rating_stream_cursor_input": { "initial_value": [ - 4251 + 4297 ], "ordering": [ - 224 + 229 ], "__typename": [ - 70 + 75 ] }, "v_player_match_rating_stream_cursor_value_input": { "adr": [ - 2009 + 2014 ], "dpr": [ - 2009 + 2014 ], "hltv_rating": [ - 2009 + 2014 ], "kast_pct": [ - 2009 + 2014 ], "kpr": [ - 2009 + 2014 ], "match_id": [ - 3818 + 3864 ], "rounds_played": [ 38 ], "steam_id": [ - 169 + 174 ], "__typename": [ - 70 + 75 ] }, "v_player_match_rating_sum_fields": { "adr": [ - 2009 + 2014 ], "dpr": [ - 2009 + 2014 ], "hltv_rating": [ - 2009 + 2014 ], "kast_pct": [ - 2009 + 2014 ], "kpr": [ - 2009 + 2014 ], "rounds_played": [ 38 ], "steam_id": [ - 169 + 174 ], "__typename": [ - 70 + 75 ] }, "v_player_match_rating_var_pop_fields": { @@ -102093,7 +102922,7 @@ export default { 29 ], "__typename": [ - 70 + 75 ] }, "v_player_match_rating_var_samp_fields": { @@ -102119,7 +102948,7 @@ export default { 29 ], "__typename": [ - 70 + 75 ] }, "v_player_match_rating_variance_fields": { @@ -102145,71 +102974,71 @@ export default { 29 ], "__typename": [ - 70 + 75 ] }, "v_player_multi_kills": { "attacker_steam_id": [ - 169 + 174 ], "kills": [ - 169 + 174 ], "match_id": [ - 3818 + 3864 ], "round": [ 38 ], "__typename": [ - 70 + 75 ] }, "v_player_multi_kills_aggregate": { "aggregate": [ - 4260 + 4306 ], "nodes": [ - 4256 + 4302 ], "__typename": [ - 70 + 75 ] }, "v_player_multi_kills_aggregate_bool_exp": { "count": [ - 4259 + 4305 ], "__typename": [ - 70 + 75 ] }, "v_player_multi_kills_aggregate_bool_exp_count": { "arguments": [ - 4272 + 4318 ], "distinct": [ 3 ], "filter": [ - 4265 + 4311 ], "predicate": [ 39 ], "__typename": [ - 70 + 75 ] }, "v_player_multi_kills_aggregate_fields": { "avg": [ - 4263 + 4309 ], "count": [ 38, { "columns": [ - 4272, + 4318, "[v_player_multi_kills_select_column!]" ], "distinct": [ @@ -102218,80 +103047,80 @@ export default { } ], "max": [ - 4267 + 4313 ], "min": [ - 4269 + 4315 ], "stddev": [ - 4273 + 4319 ], "stddev_pop": [ - 4275 + 4321 ], "stddev_samp": [ - 4277 + 4323 ], "sum": [ - 4281 + 4327 ], "var_pop": [ - 4283 + 4329 ], "var_samp": [ - 4285 + 4331 ], "variance": [ - 4287 + 4333 ], "__typename": [ - 70 + 75 ] }, "v_player_multi_kills_aggregate_order_by": { "avg": [ - 4264 + 4310 ], "count": [ - 2011 + 2016 ], "max": [ - 4268 + 4314 ], "min": [ - 4270 + 4316 ], "stddev": [ - 4274 + 4320 ], "stddev_pop": [ - 4276 + 4322 ], "stddev_samp": [ - 4278 + 4324 ], "sum": [ - 4282 + 4328 ], "var_pop": [ - 4284 + 4330 ], "var_samp": [ - 4286 + 4332 ], "variance": [ - 4288 + 4334 ], "__typename": [ - 70 + 75 ] }, "v_player_multi_kills_arr_rel_insert_input": { "data": [ - 4266 + 4312 ], "__typename": [ - 70 + 75 ] }, "v_player_multi_kills_avg_fields": { @@ -102305,149 +103134,149 @@ export default { 29 ], "__typename": [ - 70 + 75 ] }, "v_player_multi_kills_avg_order_by": { "attacker_steam_id": [ - 2011 + 2016 ], "kills": [ - 2011 + 2016 ], "round": [ - 2011 + 2016 ], "__typename": [ - 70 + 75 ] }, "v_player_multi_kills_bool_exp": { "_and": [ - 4265 + 4311 ], "_not": [ - 4265 + 4311 ], "_or": [ - 4265 + 4311 ], "attacker_steam_id": [ - 171 + 176 ], "kills": [ - 171 + 176 ], "match_id": [ - 3820 + 3866 ], "round": [ 39 ], "__typename": [ - 70 + 75 ] }, "v_player_multi_kills_insert_input": { "attacker_steam_id": [ - 169 + 174 ], "kills": [ - 169 + 174 ], "match_id": [ - 3818 + 3864 ], "round": [ 38 ], "__typename": [ - 70 + 75 ] }, "v_player_multi_kills_max_fields": { "attacker_steam_id": [ - 169 + 174 ], "kills": [ - 169 + 174 ], "match_id": [ - 3818 + 3864 ], "round": [ 38 ], "__typename": [ - 70 + 75 ] }, "v_player_multi_kills_max_order_by": { "attacker_steam_id": [ - 2011 + 2016 ], "kills": [ - 2011 + 2016 ], "match_id": [ - 2011 + 2016 ], "round": [ - 2011 + 2016 ], "__typename": [ - 70 + 75 ] }, "v_player_multi_kills_min_fields": { "attacker_steam_id": [ - 169 + 174 ], "kills": [ - 169 + 174 ], "match_id": [ - 3818 + 3864 ], "round": [ 38 ], "__typename": [ - 70 + 75 ] }, "v_player_multi_kills_min_order_by": { "attacker_steam_id": [ - 2011 + 2016 ], "kills": [ - 2011 + 2016 ], "match_id": [ - 2011 + 2016 ], "round": [ - 2011 + 2016 ], "__typename": [ - 70 + 75 ] }, "v_player_multi_kills_order_by": { "attacker_steam_id": [ - 2011 + 2016 ], "kills": [ - 2011 + 2016 ], "match_id": [ - 2011 + 2016 ], "round": [ - 2011 + 2016 ], "__typename": [ - 70 + 75 ] }, "v_player_multi_kills_select_column": {}, @@ -102462,21 +103291,21 @@ export default { 29 ], "__typename": [ - 70 + 75 ] }, "v_player_multi_kills_stddev_order_by": { "attacker_steam_id": [ - 2011 + 2016 ], "kills": [ - 2011 + 2016 ], "round": [ - 2011 + 2016 ], "__typename": [ - 70 + 75 ] }, "v_player_multi_kills_stddev_pop_fields": { @@ -102490,21 +103319,21 @@ export default { 29 ], "__typename": [ - 70 + 75 ] }, "v_player_multi_kills_stddev_pop_order_by": { "attacker_steam_id": [ - 2011 + 2016 ], "kills": [ - 2011 + 2016 ], "round": [ - 2011 + 2016 ], "__typename": [ - 70 + 75 ] }, "v_player_multi_kills_stddev_samp_fields": { @@ -102518,77 +103347,77 @@ export default { 29 ], "__typename": [ - 70 + 75 ] }, "v_player_multi_kills_stddev_samp_order_by": { "attacker_steam_id": [ - 2011 + 2016 ], "kills": [ - 2011 + 2016 ], "round": [ - 2011 + 2016 ], "__typename": [ - 70 + 75 ] }, "v_player_multi_kills_stream_cursor_input": { "initial_value": [ - 4280 + 4326 ], "ordering": [ - 224 + 229 ], "__typename": [ - 70 + 75 ] }, "v_player_multi_kills_stream_cursor_value_input": { "attacker_steam_id": [ - 169 + 174 ], "kills": [ - 169 + 174 ], "match_id": [ - 3818 + 3864 ], "round": [ 38 ], "__typename": [ - 70 + 75 ] }, "v_player_multi_kills_sum_fields": { "attacker_steam_id": [ - 169 + 174 ], "kills": [ - 169 + 174 ], "round": [ 38 ], "__typename": [ - 70 + 75 ] }, "v_player_multi_kills_sum_order_by": { "attacker_steam_id": [ - 2011 + 2016 ], "kills": [ - 2011 + 2016 ], "round": [ - 2011 + 2016 ], "__typename": [ - 70 + 75 ] }, "v_player_multi_kills_var_pop_fields": { @@ -102602,21 +103431,21 @@ export default { 29 ], "__typename": [ - 70 + 75 ] }, "v_player_multi_kills_var_pop_order_by": { "attacker_steam_id": [ - 2011 + 2016 ], "kills": [ - 2011 + 2016 ], "round": [ - 2011 + 2016 ], "__typename": [ - 70 + 75 ] }, "v_player_multi_kills_var_samp_fields": { @@ -102630,21 +103459,21 @@ export default { 29 ], "__typename": [ - 70 + 75 ] }, "v_player_multi_kills_var_samp_order_by": { "attacker_steam_id": [ - 2011 + 2016 ], "kills": [ - 2011 + 2016 ], "round": [ - 2011 + 2016 ], "__typename": [ - 70 + 75 ] }, "v_player_multi_kills_variance_fields": { @@ -102658,66 +103487,66 @@ export default { 29 ], "__typename": [ - 70 + 75 ] }, "v_player_multi_kills_variance_order_by": { "attacker_steam_id": [ - 2011 + 2016 ], "kills": [ - 2011 + 2016 ], "round": [ - 2011 + 2016 ], "__typename": [ - 70 + 75 ] }, "v_player_weapon_damage": { "damage": [ - 169 + 174 ], "hits": [ - 169 + 174 ], "player_steam_id": [ - 169 + 174 ], "source": [ - 70 + 75 ], "type": [ - 70 + 75 ], "with": [ - 70 + 75 ], "__typename": [ - 70 + 75 ] }, "v_player_weapon_damage_aggregate": { "aggregate": [ - 4291 + 4337 ], "nodes": [ - 4289 + 4335 ], "__typename": [ - 70 + 75 ] }, "v_player_weapon_damage_aggregate_fields": { "avg": [ - 4292 + 4338 ], "count": [ 38, { "columns": [ - 4297, + 4343, "[v_player_weapon_damage_select_column!]" ], "distinct": [ @@ -102726,34 +103555,34 @@ export default { } ], "max": [ - 4294 + 4340 ], "min": [ - 4295 + 4341 ], "stddev": [ - 4298 + 4344 ], "stddev_pop": [ - 4299 + 4345 ], "stddev_samp": [ - 4300 + 4346 ], "sum": [ - 4303 + 4349 ], "var_pop": [ - 4304 + 4350 ], "var_samp": [ - 4305 + 4351 ], "variance": [ - 4306 + 4352 ], "__typename": [ - 70 + 75 ] }, "v_player_weapon_damage_avg_fields": { @@ -102767,108 +103596,108 @@ export default { 29 ], "__typename": [ - 70 + 75 ] }, "v_player_weapon_damage_bool_exp": { "_and": [ - 4293 + 4339 ], "_not": [ - 4293 + 4339 ], "_or": [ - 4293 + 4339 ], "damage": [ - 171 + 176 ], "hits": [ - 171 + 176 ], "player_steam_id": [ - 171 + 176 ], "source": [ - 72 + 77 ], "type": [ - 72 + 77 ], "with": [ - 72 + 77 ], "__typename": [ - 70 + 75 ] }, "v_player_weapon_damage_max_fields": { "damage": [ - 169 + 174 ], "hits": [ - 169 + 174 ], "player_steam_id": [ - 169 + 174 ], "source": [ - 70 + 75 ], "type": [ - 70 + 75 ], "with": [ - 70 + 75 ], "__typename": [ - 70 + 75 ] }, "v_player_weapon_damage_min_fields": { "damage": [ - 169 + 174 ], "hits": [ - 169 + 174 ], "player_steam_id": [ - 169 + 174 ], "source": [ - 70 + 75 ], "type": [ - 70 + 75 ], "with": [ - 70 + 75 ], "__typename": [ - 70 + 75 ] }, "v_player_weapon_damage_order_by": { "damage": [ - 2011 + 2016 ], "hits": [ - 2011 + 2016 ], "player_steam_id": [ - 2011 + 2016 ], "source": [ - 2011 + 2016 ], "type": [ - 2011 + 2016 ], "with": [ - 2011 + 2016 ], "__typename": [ - 70 + 75 ] }, "v_player_weapon_damage_select_column": {}, @@ -102883,7 +103712,7 @@ export default { 29 ], "__typename": [ - 70 + 75 ] }, "v_player_weapon_damage_stddev_pop_fields": { @@ -102897,7 +103726,7 @@ export default { 29 ], "__typename": [ - 70 + 75 ] }, "v_player_weapon_damage_stddev_samp_fields": { @@ -102911,55 +103740,55 @@ export default { 29 ], "__typename": [ - 70 + 75 ] }, "v_player_weapon_damage_stream_cursor_input": { "initial_value": [ - 4302 + 4348 ], "ordering": [ - 224 + 229 ], "__typename": [ - 70 + 75 ] }, "v_player_weapon_damage_stream_cursor_value_input": { "damage": [ - 169 + 174 ], "hits": [ - 169 + 174 ], "player_steam_id": [ - 169 + 174 ], "source": [ - 70 + 75 ], "type": [ - 70 + 75 ], "with": [ - 70 + 75 ], "__typename": [ - 70 + 75 ] }, "v_player_weapon_damage_sum_fields": { "damage": [ - 169 + 174 ], "hits": [ - 169 + 174 ], "player_steam_id": [ - 169 + 174 ], "__typename": [ - 70 + 75 ] }, "v_player_weapon_damage_var_pop_fields": { @@ -102973,7 +103802,7 @@ export default { 29 ], "__typename": [ - 70 + 75 ] }, "v_player_weapon_damage_var_samp_fields": { @@ -102987,7 +103816,7 @@ export default { 29 ], "__typename": [ - 70 + 75 ] }, "v_player_weapon_damage_variance_fields": { @@ -103001,52 +103830,52 @@ export default { 29 ], "__typename": [ - 70 + 75 ] }, "v_player_weapon_kills": { "kill_count": [ - 169 + 174 ], "player_steam_id": [ - 169 + 174 ], "rounds": [ - 169 + 174 ], "source": [ - 70 + 75 ], "type": [ - 70 + 75 ], "with": [ - 70 + 75 ], "__typename": [ - 70 + 75 ] }, "v_player_weapon_kills_aggregate": { "aggregate": [ - 4309 + 4355 ], "nodes": [ - 4307 + 4353 ], "__typename": [ - 70 + 75 ] }, "v_player_weapon_kills_aggregate_fields": { "avg": [ - 4310 + 4356 ], "count": [ 38, { "columns": [ - 4315, + 4361, "[v_player_weapon_kills_select_column!]" ], "distinct": [ @@ -103055,34 +103884,34 @@ export default { } ], "max": [ - 4312 + 4358 ], "min": [ - 4313 + 4359 ], "stddev": [ - 4316 + 4362 ], "stddev_pop": [ - 4317 + 4363 ], "stddev_samp": [ - 4318 + 4364 ], "sum": [ - 4321 + 4367 ], "var_pop": [ - 4322 + 4368 ], "var_samp": [ - 4323 + 4369 ], "variance": [ - 4324 + 4370 ], "__typename": [ - 70 + 75 ] }, "v_player_weapon_kills_avg_fields": { @@ -103096,108 +103925,108 @@ export default { 29 ], "__typename": [ - 70 + 75 ] }, "v_player_weapon_kills_bool_exp": { "_and": [ - 4311 + 4357 ], "_not": [ - 4311 + 4357 ], "_or": [ - 4311 + 4357 ], "kill_count": [ - 171 + 176 ], "player_steam_id": [ - 171 + 176 ], "rounds": [ - 171 + 176 ], "source": [ - 72 + 77 ], "type": [ - 72 + 77 ], "with": [ - 72 + 77 ], "__typename": [ - 70 + 75 ] }, "v_player_weapon_kills_max_fields": { "kill_count": [ - 169 + 174 ], "player_steam_id": [ - 169 + 174 ], "rounds": [ - 169 + 174 ], "source": [ - 70 + 75 ], "type": [ - 70 + 75 ], "with": [ - 70 + 75 ], "__typename": [ - 70 + 75 ] }, "v_player_weapon_kills_min_fields": { "kill_count": [ - 169 + 174 ], "player_steam_id": [ - 169 + 174 ], "rounds": [ - 169 + 174 ], "source": [ - 70 + 75 ], "type": [ - 70 + 75 ], "with": [ - 70 + 75 ], "__typename": [ - 70 + 75 ] }, "v_player_weapon_kills_order_by": { "kill_count": [ - 2011 + 2016 ], "player_steam_id": [ - 2011 + 2016 ], "rounds": [ - 2011 + 2016 ], "source": [ - 2011 + 2016 ], "type": [ - 2011 + 2016 ], "with": [ - 2011 + 2016 ], "__typename": [ - 70 + 75 ] }, "v_player_weapon_kills_select_column": {}, @@ -103212,7 +104041,7 @@ export default { 29 ], "__typename": [ - 70 + 75 ] }, "v_player_weapon_kills_stddev_pop_fields": { @@ -103226,7 +104055,7 @@ export default { 29 ], "__typename": [ - 70 + 75 ] }, "v_player_weapon_kills_stddev_samp_fields": { @@ -103240,55 +104069,55 @@ export default { 29 ], "__typename": [ - 70 + 75 ] }, "v_player_weapon_kills_stream_cursor_input": { "initial_value": [ - 4320 + 4366 ], "ordering": [ - 224 + 229 ], "__typename": [ - 70 + 75 ] }, "v_player_weapon_kills_stream_cursor_value_input": { "kill_count": [ - 169 + 174 ], "player_steam_id": [ - 169 + 174 ], "rounds": [ - 169 + 174 ], "source": [ - 70 + 75 ], "type": [ - 70 + 75 ], "with": [ - 70 + 75 ], "__typename": [ - 70 + 75 ] }, "v_player_weapon_kills_sum_fields": { "kill_count": [ - 169 + 174 ], "player_steam_id": [ - 169 + 174 ], "rounds": [ - 169 + 174 ], "__typename": [ - 70 + 75 ] }, "v_player_weapon_kills_var_pop_fields": { @@ -103302,7 +104131,7 @@ export default { 29 ], "__typename": [ - 70 + 75 ] }, "v_player_weapon_kills_var_samp_fields": { @@ -103316,7 +104145,7 @@ export default { 29 ], "__typename": [ - 70 + 75 ] }, "v_player_weapon_kills_variance_fields": { @@ -103330,7 +104159,7 @@ export default { 29 ], "__typename": [ - 70 + 75 ] }, "v_pool_maps": { @@ -103338,110 +104167,110 @@ export default { 3 ], "id": [ - 3818 + 3864 ], "label": [ - 70 + 75 ], "map_pool": [ - 1325 + 1330 ], "map_pool_id": [ - 3818 + 3864 ], "name": [ - 70 + 75 ], "patch": [ - 70 + 75 ], "poster": [ - 70 + 75 ], "type": [ - 70 + 75 ], "workshop_map_id": [ - 70 + 75 ], "__typename": [ - 70 + 75 ] }, "v_pool_maps_aggregate": { "aggregate": [ - 4331 + 4377 ], "nodes": [ - 4325 + 4371 ], "__typename": [ - 70 + 75 ] }, "v_pool_maps_aggregate_bool_exp": { "bool_and": [ - 4328 + 4374 ], "bool_or": [ - 4329 + 4375 ], "count": [ - 4330 + 4376 ], "__typename": [ - 70 + 75 ] }, "v_pool_maps_aggregate_bool_exp_bool_and": { "arguments": [ - 4343 + 4389 ], "distinct": [ 3 ], "filter": [ - 4334 + 4380 ], "predicate": [ 4 ], "__typename": [ - 70 + 75 ] }, "v_pool_maps_aggregate_bool_exp_bool_or": { "arguments": [ - 4344 + 4390 ], "distinct": [ 3 ], "filter": [ - 4334 + 4380 ], "predicate": [ 4 ], "__typename": [ - 70 + 75 ] }, "v_pool_maps_aggregate_bool_exp_count": { "arguments": [ - 4342 + 4388 ], "distinct": [ 3 ], "filter": [ - 4334 + 4380 ], "predicate": [ 39 ], "__typename": [ - 70 + 75 ] }, "v_pool_maps_aggregate_fields": { @@ -103449,7 +104278,7 @@ export default { 38, { "columns": [ - 4342, + 4388, "[v_pool_maps_select_column!]" ], "distinct": [ @@ -103458,79 +104287,79 @@ export default { } ], "max": [ - 4336 + 4382 ], "min": [ - 4338 + 4384 ], "__typename": [ - 70 + 75 ] }, "v_pool_maps_aggregate_order_by": { "count": [ - 2011 + 2016 ], "max": [ - 4337 + 4383 ], "min": [ - 4339 + 4385 ], "__typename": [ - 70 + 75 ] }, "v_pool_maps_arr_rel_insert_input": { "data": [ - 4335 + 4381 ], "__typename": [ - 70 + 75 ] }, "v_pool_maps_bool_exp": { "_and": [ - 4334 + 4380 ], "_not": [ - 4334 + 4380 ], "_or": [ - 4334 + 4380 ], "active_pool": [ 4 ], "id": [ - 3820 + 3866 ], "label": [ - 72 + 77 ], "map_pool": [ - 1328 + 1333 ], "map_pool_id": [ - 3820 + 3866 ], "name": [ - 72 + 77 ], "patch": [ - 72 + 77 ], "poster": [ - 72 + 77 ], "type": [ - 72 + 77 ], "workshop_map_id": [ - 72 + 77 ], "__typename": [ - 70 + 75 ] }, "v_pool_maps_insert_input": { @@ -103538,150 +104367,150 @@ export default { 3 ], "id": [ - 3818 + 3864 ], "label": [ - 70 + 75 ], "map_pool": [ - 1334 + 1339 ], "map_pool_id": [ - 3818 + 3864 ], "name": [ - 70 + 75 ], "patch": [ - 70 + 75 ], "poster": [ - 70 + 75 ], "type": [ - 70 + 75 ], "workshop_map_id": [ - 70 + 75 ], "__typename": [ - 70 + 75 ] }, "v_pool_maps_max_fields": { "id": [ - 3818 + 3864 ], "label": [ - 70 + 75 ], "map_pool_id": [ - 3818 + 3864 ], "name": [ - 70 + 75 ], "patch": [ - 70 + 75 ], "poster": [ - 70 + 75 ], "type": [ - 70 + 75 ], "workshop_map_id": [ - 70 + 75 ], "__typename": [ - 70 + 75 ] }, "v_pool_maps_max_order_by": { "id": [ - 2011 + 2016 ], "label": [ - 2011 + 2016 ], "map_pool_id": [ - 2011 + 2016 ], "name": [ - 2011 + 2016 ], "patch": [ - 2011 + 2016 ], "poster": [ - 2011 + 2016 ], "type": [ - 2011 + 2016 ], "workshop_map_id": [ - 2011 + 2016 ], "__typename": [ - 70 + 75 ] }, "v_pool_maps_min_fields": { "id": [ - 3818 + 3864 ], "label": [ - 70 + 75 ], "map_pool_id": [ - 3818 + 3864 ], "name": [ - 70 + 75 ], "patch": [ - 70 + 75 ], "poster": [ - 70 + 75 ], "type": [ - 70 + 75 ], "workshop_map_id": [ - 70 + 75 ], "__typename": [ - 70 + 75 ] }, "v_pool_maps_min_order_by": { "id": [ - 2011 + 2016 ], "label": [ - 2011 + 2016 ], "map_pool_id": [ - 2011 + 2016 ], "name": [ - 2011 + 2016 ], "patch": [ - 2011 + 2016 ], "poster": [ - 2011 + 2016 ], "type": [ - 2011 + 2016 ], "workshop_map_id": [ - 2011 + 2016 ], "__typename": [ - 70 + 75 ] }, "v_pool_maps_mutation_response": { @@ -103689,45 +104518,45 @@ export default { 38 ], "returning": [ - 4325 + 4371 ], "__typename": [ - 70 + 75 ] }, "v_pool_maps_order_by": { "active_pool": [ - 2011 + 2016 ], "id": [ - 2011 + 2016 ], "label": [ - 2011 + 2016 ], "map_pool": [ - 1336 + 1341 ], "map_pool_id": [ - 2011 + 2016 ], "name": [ - 2011 + 2016 ], "patch": [ - 2011 + 2016 ], "poster": [ - 2011 + 2016 ], "type": [ - 2011 + 2016 ], "workshop_map_id": [ - 2011 + 2016 ], "__typename": [ - 70 + 75 ] }, "v_pool_maps_select_column": {}, @@ -103738,42 +104567,42 @@ export default { 3 ], "id": [ - 3818 + 3864 ], "label": [ - 70 + 75 ], "map_pool_id": [ - 3818 + 3864 ], "name": [ - 70 + 75 ], "patch": [ - 70 + 75 ], "poster": [ - 70 + 75 ], "type": [ - 70 + 75 ], "workshop_map_id": [ - 70 + 75 ], "__typename": [ - 70 + 75 ] }, "v_pool_maps_stream_cursor_input": { "initial_value": [ - 4347 + 4393 ], "ordering": [ - 224 + 229 ], "__typename": [ - 70 + 75 ] }, "v_pool_maps_stream_cursor_value_input": { @@ -103781,42 +104610,42 @@ export default { 3 ], "id": [ - 3818 + 3864 ], "label": [ - 70 + 75 ], "map_pool_id": [ - 3818 + 3864 ], "name": [ - 70 + 75 ], "patch": [ - 70 + 75 ], "poster": [ - 70 + 75 ], "type": [ - 70 + 75 ], "workshop_map_id": [ - 70 + 75 ], "__typename": [ - 70 + 75 ] }, "v_pool_maps_updates": { "_set": [ - 4345 + 4391 ], "where": [ - 4334 + 4380 ], "__typename": [ - 70 + 75 ] }, "v_steam_account_pool_status": { @@ -103833,29 +104662,29 @@ export default { 38 ], "__typename": [ - 70 + 75 ] }, "v_steam_account_pool_status_aggregate": { "aggregate": [ - 4351 + 4397 ], "nodes": [ - 4349 + 4395 ], "__typename": [ - 70 + 75 ] }, "v_steam_account_pool_status_aggregate_fields": { "avg": [ - 4352 + 4398 ], "count": [ 38, { "columns": [ - 4357, + 4403, "[v_steam_account_pool_status_select_column!]" ], "distinct": [ @@ -103864,34 +104693,34 @@ export default { } ], "max": [ - 4354 + 4400 ], "min": [ - 4355 + 4401 ], "stddev": [ - 4358 + 4404 ], "stddev_pop": [ - 4359 + 4405 ], "stddev_samp": [ - 4360 + 4406 ], "sum": [ - 4363 + 4409 ], "var_pop": [ - 4364 + 4410 ], "var_samp": [ - 4365 + 4411 ], "variance": [ - 4366 + 4412 ], "__typename": [ - 70 + 75 ] }, "v_steam_account_pool_status_avg_fields": { @@ -103908,18 +104737,18 @@ export default { 29 ], "__typename": [ - 70 + 75 ] }, "v_steam_account_pool_status_bool_exp": { "_and": [ - 4353 + 4399 ], "_not": [ - 4353 + 4399 ], "_or": [ - 4353 + 4399 ], "busy_accounts": [ 39 @@ -103934,7 +104763,7 @@ export default { 39 ], "__typename": [ - 70 + 75 ] }, "v_steam_account_pool_status_max_fields": { @@ -103951,7 +104780,7 @@ export default { 38 ], "__typename": [ - 70 + 75 ] }, "v_steam_account_pool_status_min_fields": { @@ -103968,24 +104797,24 @@ export default { 38 ], "__typename": [ - 70 + 75 ] }, "v_steam_account_pool_status_order_by": { "busy_accounts": [ - 2011 + 2016 ], "free_accounts": [ - 2011 + 2016 ], "id": [ - 2011 + 2016 ], "total_accounts": [ - 2011 + 2016 ], "__typename": [ - 70 + 75 ] }, "v_steam_account_pool_status_select_column": {}, @@ -104003,7 +104832,7 @@ export default { 29 ], "__typename": [ - 70 + 75 ] }, "v_steam_account_pool_status_stddev_pop_fields": { @@ -104020,7 +104849,7 @@ export default { 29 ], "__typename": [ - 70 + 75 ] }, "v_steam_account_pool_status_stddev_samp_fields": { @@ -104037,18 +104866,18 @@ export default { 29 ], "__typename": [ - 70 + 75 ] }, "v_steam_account_pool_status_stream_cursor_input": { "initial_value": [ - 4362 + 4408 ], "ordering": [ - 224 + 229 ], "__typename": [ - 70 + 75 ] }, "v_steam_account_pool_status_stream_cursor_value_input": { @@ -104065,7 +104894,7 @@ export default { 38 ], "__typename": [ - 70 + 75 ] }, "v_steam_account_pool_status_sum_fields": { @@ -104082,7 +104911,7 @@ export default { 38 ], "__typename": [ - 70 + 75 ] }, "v_steam_account_pool_status_var_pop_fields": { @@ -104099,7 +104928,7 @@ export default { 29 ], "__typename": [ - 70 + 75 ] }, "v_steam_account_pool_status_var_samp_fields": { @@ -104116,7 +104945,7 @@ export default { 29 ], "__typename": [ - 70 + 75 ] }, "v_steam_account_pool_status_variance_fields": { @@ -104133,7 +104962,7 @@ export default { 29 ], "__typename": [ - 70 + 75 ] }, "v_team_ranks": { @@ -104144,7 +104973,7 @@ export default { 38 ], "avg_faceit_level": [ - 1084 + 1089 ], "avg_premier": [ 38 @@ -104156,38 +104985,38 @@ export default { 38 ], "roster_size": [ - 169 + 174 ], "team": [ - 3378 + 3424 ], "team_id": [ - 3818 + 3864 ], "__typename": [ - 70 + 75 ] }, "v_team_ranks_aggregate": { "aggregate": [ - 4369 + 4415 ], "nodes": [ - 4367 + 4413 ], "__typename": [ - 70 + 75 ] }, "v_team_ranks_aggregate_fields": { "avg": [ - 4370 + 4416 ], "count": [ 38, { "columns": [ - 4377, + 4423, "[v_team_ranks_select_column!]" ], "distinct": [ @@ -104196,34 +105025,34 @@ export default { } ], "max": [ - 4373 + 4419 ], "min": [ - 4374 + 4420 ], "stddev": [ - 4378 + 4424 ], "stddev_pop": [ - 4379 + 4425 ], "stddev_samp": [ - 4380 + 4426 ], "sum": [ - 4383 + 4429 ], "var_pop": [ - 4384 + 4430 ], "var_samp": [ - 4385 + 4431 ], "variance": [ - 4386 + 4432 ], "__typename": [ - 70 + 75 ] }, "v_team_ranks_avg_fields": { @@ -104249,18 +105078,18 @@ export default { 29 ], "__typename": [ - 70 + 75 ] }, "v_team_ranks_bool_exp": { "_and": [ - 4371 + 4417 ], "_not": [ - 4371 + 4417 ], "_or": [ - 4371 + 4417 ], "avg_elo": [ 39 @@ -104269,7 +105098,7 @@ export default { 39 ], "avg_faceit_level": [ - 1085 + 1090 ], "avg_premier": [ 39 @@ -104281,16 +105110,16 @@ export default { 39 ], "roster_size": [ - 171 + 176 ], "team": [ - 3387 + 3433 ], "team_id": [ - 3820 + 3866 ], "__typename": [ - 70 + 75 ] }, "v_team_ranks_insert_input": { @@ -104301,7 +105130,7 @@ export default { 38 ], "avg_faceit_level": [ - 1084 + 1089 ], "avg_premier": [ 38 @@ -104313,16 +105142,16 @@ export default { 38 ], "roster_size": [ - 169 + 174 ], "team": [ - 3396 + 3442 ], "team_id": [ - 3818 + 3864 ], "__typename": [ - 70 + 75 ] }, "v_team_ranks_max_fields": { @@ -104333,7 +105162,7 @@ export default { 38 ], "avg_faceit_level": [ - 1084 + 1089 ], "avg_premier": [ 38 @@ -104345,13 +105174,13 @@ export default { 38 ], "roster_size": [ - 169 + 174 ], "team_id": [ - 3818 + 3864 ], "__typename": [ - 70 + 75 ] }, "v_team_ranks_min_fields": { @@ -104362,7 +105191,7 @@ export default { 38 ], "avg_faceit_level": [ - 1084 + 1089 ], "avg_premier": [ 38 @@ -104374,53 +105203,53 @@ export default { 38 ], "roster_size": [ - 169 + 174 ], "team_id": [ - 3818 + 3864 ], "__typename": [ - 70 + 75 ] }, "v_team_ranks_obj_rel_insert_input": { "data": [ - 4372 + 4418 ], "__typename": [ - 70 + 75 ] }, "v_team_ranks_order_by": { "avg_elo": [ - 2011 + 2016 ], "avg_faceit_elo": [ - 2011 + 2016 ], "avg_faceit_level": [ - 2011 + 2016 ], "avg_premier": [ - 2011 + 2016 ], "max_elo": [ - 2011 + 2016 ], "min_elo": [ - 2011 + 2016 ], "roster_size": [ - 2011 + 2016 ], "team": [ - 3398 + 3444 ], "team_id": [ - 2011 + 2016 ], "__typename": [ - 70 + 75 ] }, "v_team_ranks_select_column": {}, @@ -104447,7 +105276,7 @@ export default { 29 ], "__typename": [ - 70 + 75 ] }, "v_team_ranks_stddev_pop_fields": { @@ -104473,7 +105302,7 @@ export default { 29 ], "__typename": [ - 70 + 75 ] }, "v_team_ranks_stddev_samp_fields": { @@ -104499,18 +105328,18 @@ export default { 29 ], "__typename": [ - 70 + 75 ] }, "v_team_ranks_stream_cursor_input": { "initial_value": [ - 4382 + 4428 ], "ordering": [ - 224 + 229 ], "__typename": [ - 70 + 75 ] }, "v_team_ranks_stream_cursor_value_input": { @@ -104521,7 +105350,7 @@ export default { 38 ], "avg_faceit_level": [ - 1084 + 1089 ], "avg_premier": [ 38 @@ -104533,13 +105362,13 @@ export default { 38 ], "roster_size": [ - 169 + 174 ], "team_id": [ - 3818 + 3864 ], "__typename": [ - 70 + 75 ] }, "v_team_ranks_sum_fields": { @@ -104550,7 +105379,7 @@ export default { 38 ], "avg_faceit_level": [ - 1084 + 1089 ], "avg_premier": [ 38 @@ -104562,10 +105391,10 @@ export default { 38 ], "roster_size": [ - 169 + 174 ], "__typename": [ - 70 + 75 ] }, "v_team_ranks_var_pop_fields": { @@ -104591,7 +105420,7 @@ export default { 29 ], "__typename": [ - 70 + 75 ] }, "v_team_ranks_var_samp_fields": { @@ -104617,7 +105446,7 @@ export default { 29 ], "__typename": [ - 70 + 75 ] }, "v_team_ranks_variance_fields": { @@ -104643,52 +105472,52 @@ export default { 29 ], "__typename": [ - 70 + 75 ] }, "v_team_reputation": { "late_cancels": [ - 169 + 174 ], "no_shows": [ - 169 + 174 ], "reliability_pct": [ - 2009 + 2014 ], "scrims_completed": [ - 169 + 174 ], "team": [ - 3378 + 3424 ], "team_id": [ - 3818 + 3864 ], "__typename": [ - 70 + 75 ] }, "v_team_reputation_aggregate": { "aggregate": [ - 4389 + 4435 ], "nodes": [ - 4387 + 4433 ], "__typename": [ - 70 + 75 ] }, "v_team_reputation_aggregate_fields": { "avg": [ - 4390 + 4436 ], "count": [ 38, { "columns": [ - 4397, + 4443, "[v_team_reputation_select_column!]" ], "distinct": [ @@ -104697,34 +105526,34 @@ export default { } ], "max": [ - 4393 + 4439 ], "min": [ - 4394 + 4440 ], "stddev": [ - 4398 + 4444 ], "stddev_pop": [ - 4399 + 4445 ], "stddev_samp": [ - 4400 + 4446 ], "sum": [ - 4403 + 4449 ], "var_pop": [ - 4404 + 4450 ], "var_samp": [ - 4405 + 4451 ], "variance": [ - 4406 + 4452 ], "__typename": [ - 70 + 75 ] }, "v_team_reputation_avg_fields": { @@ -104741,133 +105570,133 @@ export default { 29 ], "__typename": [ - 70 + 75 ] }, "v_team_reputation_bool_exp": { "_and": [ - 4391 + 4437 ], "_not": [ - 4391 + 4437 ], "_or": [ - 4391 + 4437 ], "late_cancels": [ - 171 + 176 ], "no_shows": [ - 171 + 176 ], "reliability_pct": [ - 2010 + 2015 ], "scrims_completed": [ - 171 + 176 ], "team": [ - 3387 + 3433 ], "team_id": [ - 3820 + 3866 ], "__typename": [ - 70 + 75 ] }, "v_team_reputation_insert_input": { "late_cancels": [ - 169 + 174 ], "no_shows": [ - 169 + 174 ], "reliability_pct": [ - 2009 + 2014 ], "scrims_completed": [ - 169 + 174 ], "team": [ - 3396 + 3442 ], "team_id": [ - 3818 + 3864 ], "__typename": [ - 70 + 75 ] }, "v_team_reputation_max_fields": { "late_cancels": [ - 169 + 174 ], "no_shows": [ - 169 + 174 ], "reliability_pct": [ - 2009 + 2014 ], "scrims_completed": [ - 169 + 174 ], "team_id": [ - 3818 + 3864 ], "__typename": [ - 70 + 75 ] }, "v_team_reputation_min_fields": { "late_cancels": [ - 169 + 174 ], "no_shows": [ - 169 + 174 ], "reliability_pct": [ - 2009 + 2014 ], "scrims_completed": [ - 169 + 174 ], "team_id": [ - 3818 + 3864 ], "__typename": [ - 70 + 75 ] }, "v_team_reputation_obj_rel_insert_input": { "data": [ - 4392 + 4438 ], "__typename": [ - 70 + 75 ] }, "v_team_reputation_order_by": { "late_cancels": [ - 2011 + 2016 ], "no_shows": [ - 2011 + 2016 ], "reliability_pct": [ - 2011 + 2016 ], "scrims_completed": [ - 2011 + 2016 ], "team": [ - 3398 + 3444 ], "team_id": [ - 2011 + 2016 ], "__typename": [ - 70 + 75 ] }, "v_team_reputation_select_column": {}, @@ -104885,7 +105714,7 @@ export default { 29 ], "__typename": [ - 70 + 75 ] }, "v_team_reputation_stddev_pop_fields": { @@ -104902,7 +105731,7 @@ export default { 29 ], "__typename": [ - 70 + 75 ] }, "v_team_reputation_stddev_samp_fields": { @@ -104919,55 +105748,55 @@ export default { 29 ], "__typename": [ - 70 + 75 ] }, "v_team_reputation_stream_cursor_input": { "initial_value": [ - 4402 + 4448 ], "ordering": [ - 224 + 229 ], "__typename": [ - 70 + 75 ] }, "v_team_reputation_stream_cursor_value_input": { "late_cancels": [ - 169 + 174 ], "no_shows": [ - 169 + 174 ], "reliability_pct": [ - 2009 + 2014 ], "scrims_completed": [ - 169 + 174 ], "team_id": [ - 3818 + 3864 ], "__typename": [ - 70 + 75 ] }, "v_team_reputation_sum_fields": { "late_cancels": [ - 169 + 174 ], "no_shows": [ - 169 + 174 ], "reliability_pct": [ - 2009 + 2014 ], "scrims_completed": [ - 169 + 174 ], "__typename": [ - 70 + 75 ] }, "v_team_reputation_var_pop_fields": { @@ -104984,7 +105813,7 @@ export default { 29 ], "__typename": [ - 70 + 75 ] }, "v_team_reputation_var_samp_fields": { @@ -105001,7 +105830,7 @@ export default { 29 ], "__typename": [ - 70 + 75 ] }, "v_team_reputation_variance_fields": { @@ -105018,7 +105847,7 @@ export default { 29 ], "__typename": [ - 70 + 75 ] }, "v_team_stage_results": { @@ -105059,13 +105888,13 @@ export default { 38 ], "stage": [ - 3510 + 3556 ], "team": [ - 3643 + 3689 ], "team_kdr": [ - 1084 + 1089 ], "total_deaths": [ 38 @@ -105074,245 +105903,245 @@ export default { 38 ], "tournament_stage_id": [ - 3818 + 3864 ], "tournament_team_id": [ - 3818 + 3864 ], "wins": [ 38 ], "__typename": [ - 70 + 75 ] }, "v_team_stage_results_aggregate": { "aggregate": [ - 4421 + 4467 ], "nodes": [ - 4407 + 4453 ], "__typename": [ - 70 + 75 ] }, "v_team_stage_results_aggregate_bool_exp": { "avg": [ - 4410 + 4456 ], "corr": [ - 4411 + 4457 ], "count": [ - 4413 + 4459 ], "covar_samp": [ - 4414 + 4460 ], "max": [ - 4416 + 4462 ], "min": [ - 4417 + 4463 ], "stddev_samp": [ - 4418 + 4464 ], "sum": [ - 4419 + 4465 ], "var_samp": [ - 4420 + 4466 ], "__typename": [ - 70 + 75 ] }, "v_team_stage_results_aggregate_bool_exp_avg": { "arguments": [ - 4440 + 4486 ], "distinct": [ 3 ], "filter": [ - 4426 + 4472 ], "predicate": [ - 1085 + 1090 ], "__typename": [ - 70 + 75 ] }, "v_team_stage_results_aggregate_bool_exp_corr": { "arguments": [ - 4412 + 4458 ], "distinct": [ 3 ], "filter": [ - 4426 + 4472 ], "predicate": [ - 1085 + 1090 ], "__typename": [ - 70 + 75 ] }, "v_team_stage_results_aggregate_bool_exp_corr_arguments": { "X": [ - 4441 + 4487 ], "Y": [ - 4441 + 4487 ], "__typename": [ - 70 + 75 ] }, "v_team_stage_results_aggregate_bool_exp_count": { "arguments": [ - 4439 + 4485 ], "distinct": [ 3 ], "filter": [ - 4426 + 4472 ], "predicate": [ 39 ], "__typename": [ - 70 + 75 ] }, "v_team_stage_results_aggregate_bool_exp_covar_samp": { "arguments": [ - 4415 + 4461 ], "distinct": [ 3 ], "filter": [ - 4426 + 4472 ], "predicate": [ - 1085 + 1090 ], "__typename": [ - 70 + 75 ] }, "v_team_stage_results_aggregate_bool_exp_covar_samp_arguments": { "X": [ - 4442 + 4488 ], "Y": [ - 4442 + 4488 ], "__typename": [ - 70 + 75 ] }, "v_team_stage_results_aggregate_bool_exp_max": { "arguments": [ - 4443 + 4489 ], "distinct": [ 3 ], "filter": [ - 4426 + 4472 ], "predicate": [ - 1085 + 1090 ], "__typename": [ - 70 + 75 ] }, "v_team_stage_results_aggregate_bool_exp_min": { "arguments": [ - 4444 + 4490 ], "distinct": [ 3 ], "filter": [ - 4426 + 4472 ], "predicate": [ - 1085 + 1090 ], "__typename": [ - 70 + 75 ] }, "v_team_stage_results_aggregate_bool_exp_stddev_samp": { "arguments": [ - 4445 + 4491 ], "distinct": [ 3 ], "filter": [ - 4426 + 4472 ], "predicate": [ - 1085 + 1090 ], "__typename": [ - 70 + 75 ] }, "v_team_stage_results_aggregate_bool_exp_sum": { "arguments": [ - 4446 + 4492 ], "distinct": [ 3 ], "filter": [ - 4426 + 4472 ], "predicate": [ - 1085 + 1090 ], "__typename": [ - 70 + 75 ] }, "v_team_stage_results_aggregate_bool_exp_var_samp": { "arguments": [ - 4447 + 4493 ], "distinct": [ 3 ], "filter": [ - 4426 + 4472 ], "predicate": [ - 1085 + 1090 ], "__typename": [ - 70 + 75 ] }, "v_team_stage_results_aggregate_fields": { "avg": [ - 4424 + 4470 ], "count": [ 38, { "columns": [ - 4439, + 4485, "[v_team_stage_results_select_column!]" ], "distinct": [ @@ -105321,83 +106150,83 @@ export default { } ], "max": [ - 4430 + 4476 ], "min": [ - 4432 + 4478 ], "stddev": [ - 4449 + 4495 ], "stddev_pop": [ - 4451 + 4497 ], "stddev_samp": [ - 4453 + 4499 ], "sum": [ - 4457 + 4503 ], "var_pop": [ - 4461 + 4507 ], "var_samp": [ - 4463 + 4509 ], "variance": [ - 4465 + 4511 ], "__typename": [ - 70 + 75 ] }, "v_team_stage_results_aggregate_order_by": { "avg": [ - 4425 + 4471 ], "count": [ - 2011 + 2016 ], "max": [ - 4431 + 4477 ], "min": [ - 4433 + 4479 ], "stddev": [ - 4450 + 4496 ], "stddev_pop": [ - 4452 + 4498 ], "stddev_samp": [ - 4454 + 4500 ], "sum": [ - 4458 + 4504 ], "var_pop": [ - 4462 + 4508 ], "var_samp": [ - 4464 + 4510 ], "variance": [ - 4466 + 4512 ], "__typename": [ - 70 + 75 ] }, "v_team_stage_results_arr_rel_insert_input": { "data": [ - 4429 + 4475 ], "on_conflict": [ - 4436 + 4482 ], "__typename": [ - 70 + 75 ] }, "v_team_stage_results_avg_fields": { @@ -105450,71 +106279,71 @@ export default { 29 ], "__typename": [ - 70 + 75 ] }, "v_team_stage_results_avg_order_by": { "group_number": [ - 2011 + 2016 ], "head_to_head_match_wins": [ - 2011 + 2016 ], "head_to_head_rounds_won": [ - 2011 + 2016 ], "losses": [ - 2011 + 2016 ], "maps_lost": [ - 2011 + 2016 ], "maps_won": [ - 2011 + 2016 ], "matches_played": [ - 2011 + 2016 ], "matches_remaining": [ - 2011 + 2016 ], "placement": [ - 2011 + 2016 ], "rank": [ - 2011 + 2016 ], "rounds_lost": [ - 2011 + 2016 ], "rounds_won": [ - 2011 + 2016 ], "team_kdr": [ - 2011 + 2016 ], "total_deaths": [ - 2011 + 2016 ], "total_kills": [ - 2011 + 2016 ], "wins": [ - 2011 + 2016 ], "__typename": [ - 70 + 75 ] }, "v_team_stage_results_bool_exp": { "_and": [ - 4426 + 4472 ], "_not": [ - 4426 + 4472 ], "_or": [ - 4426 + 4472 ], "group_number": [ 39 @@ -105553,13 +106382,13 @@ export default { 39 ], "stage": [ - 3522 + 3568 ], "team": [ - 3652 + 3698 ], "team_kdr": [ - 1085 + 1090 ], "total_deaths": [ 39 @@ -105568,16 +106397,16 @@ export default { 39 ], "tournament_stage_id": [ - 3820 + 3866 ], "tournament_team_id": [ - 3820 + 3866 ], "wins": [ 39 ], "__typename": [ - 70 + 75 ] }, "v_team_stage_results_constraint": {}, @@ -105619,7 +106448,7 @@ export default { 38 ], "team_kdr": [ - 1084 + 1089 ], "total_deaths": [ 38 @@ -105631,7 +106460,7 @@ export default { 38 ], "__typename": [ - 70 + 75 ] }, "v_team_stage_results_insert_input": { @@ -105672,13 +106501,13 @@ export default { 38 ], "stage": [ - 3534 + 3580 ], "team": [ - 3661 + 3707 ], "team_kdr": [ - 1084 + 1089 ], "total_deaths": [ 38 @@ -105687,16 +106516,16 @@ export default { 38 ], "tournament_stage_id": [ - 3818 + 3864 ], "tournament_team_id": [ - 3818 + 3864 ], "wins": [ 38 ], "__typename": [ - 70 + 75 ] }, "v_team_stage_results_max_fields": { @@ -105737,7 +106566,7 @@ export default { 38 ], "team_kdr": [ - 1084 + 1089 ], "total_deaths": [ 38 @@ -105746,75 +106575,75 @@ export default { 38 ], "tournament_stage_id": [ - 3818 + 3864 ], "tournament_team_id": [ - 3818 + 3864 ], "wins": [ 38 ], "__typename": [ - 70 + 75 ] }, "v_team_stage_results_max_order_by": { "group_number": [ - 2011 + 2016 ], "head_to_head_match_wins": [ - 2011 + 2016 ], "head_to_head_rounds_won": [ - 2011 + 2016 ], "losses": [ - 2011 + 2016 ], "maps_lost": [ - 2011 + 2016 ], "maps_won": [ - 2011 + 2016 ], "matches_played": [ - 2011 + 2016 ], "matches_remaining": [ - 2011 + 2016 ], "placement": [ - 2011 + 2016 ], "rank": [ - 2011 + 2016 ], "rounds_lost": [ - 2011 + 2016 ], "rounds_won": [ - 2011 + 2016 ], "team_kdr": [ - 2011 + 2016 ], "total_deaths": [ - 2011 + 2016 ], "total_kills": [ - 2011 + 2016 ], "tournament_stage_id": [ - 2011 + 2016 ], "tournament_team_id": [ - 2011 + 2016 ], "wins": [ - 2011 + 2016 ], "__typename": [ - 70 + 75 ] }, "v_team_stage_results_min_fields": { @@ -105855,7 +106684,7 @@ export default { 38 ], "team_kdr": [ - 1084 + 1089 ], "total_deaths": [ 38 @@ -105864,75 +106693,75 @@ export default { 38 ], "tournament_stage_id": [ - 3818 + 3864 ], "tournament_team_id": [ - 3818 + 3864 ], "wins": [ 38 ], "__typename": [ - 70 + 75 ] }, "v_team_stage_results_min_order_by": { "group_number": [ - 2011 + 2016 ], "head_to_head_match_wins": [ - 2011 + 2016 ], "head_to_head_rounds_won": [ - 2011 + 2016 ], "losses": [ - 2011 + 2016 ], "maps_lost": [ - 2011 + 2016 ], "maps_won": [ - 2011 + 2016 ], "matches_played": [ - 2011 + 2016 ], "matches_remaining": [ - 2011 + 2016 ], "placement": [ - 2011 + 2016 ], "rank": [ - 2011 + 2016 ], "rounds_lost": [ - 2011 + 2016 ], "rounds_won": [ - 2011 + 2016 ], "team_kdr": [ - 2011 + 2016 ], "total_deaths": [ - 2011 + 2016 ], "total_kills": [ - 2011 + 2016 ], "tournament_stage_id": [ - 2011 + 2016 ], "tournament_team_id": [ - 2011 + 2016 ], "wins": [ - 2011 + 2016 ], "__typename": [ - 70 + 75 ] }, "v_team_stage_results_mutation_response": { @@ -105940,111 +106769,111 @@ export default { 38 ], "returning": [ - 4407 + 4453 ], "__typename": [ - 70 + 75 ] }, "v_team_stage_results_obj_rel_insert_input": { "data": [ - 4429 + 4475 ], "on_conflict": [ - 4436 + 4482 ], "__typename": [ - 70 + 75 ] }, "v_team_stage_results_on_conflict": { "constraint": [ - 4427 + 4473 ], "update_columns": [ - 4459 + 4505 ], "where": [ - 4426 + 4472 ], "__typename": [ - 70 + 75 ] }, "v_team_stage_results_order_by": { "group_number": [ - 2011 + 2016 ], "head_to_head_match_wins": [ - 2011 + 2016 ], "head_to_head_rounds_won": [ - 2011 + 2016 ], "losses": [ - 2011 + 2016 ], "maps_lost": [ - 2011 + 2016 ], "maps_won": [ - 2011 + 2016 ], "matches_played": [ - 2011 + 2016 ], "matches_remaining": [ - 2011 + 2016 ], "placement": [ - 2011 + 2016 ], "rank": [ - 2011 + 2016 ], "rounds_lost": [ - 2011 + 2016 ], "rounds_won": [ - 2011 + 2016 ], "stage": [ - 3536 + 3582 ], "team": [ - 3663 + 3709 ], "team_kdr": [ - 2011 + 2016 ], "total_deaths": [ - 2011 + 2016 ], "total_kills": [ - 2011 + 2016 ], "tournament_stage_id": [ - 2011 + 2016 ], "tournament_team_id": [ - 2011 + 2016 ], "wins": [ - 2011 + 2016 ], "__typename": [ - 70 + 75 ] }, "v_team_stage_results_pk_columns_input": { "tournament_stage_id": [ - 3818 + 3864 ], "tournament_team_id": [ - 3818 + 3864 ], "__typename": [ - 70 + 75 ] }, "v_team_stage_results_select_column": {}, @@ -106094,7 +106923,7 @@ export default { 38 ], "team_kdr": [ - 1084 + 1089 ], "total_deaths": [ 38 @@ -106103,16 +106932,16 @@ export default { 38 ], "tournament_stage_id": [ - 3818 + 3864 ], "tournament_team_id": [ - 3818 + 3864 ], "wins": [ 38 ], "__typename": [ - 70 + 75 ] }, "v_team_stage_results_stddev_fields": { @@ -106165,60 +106994,60 @@ export default { 29 ], "__typename": [ - 70 + 75 ] }, "v_team_stage_results_stddev_order_by": { "group_number": [ - 2011 + 2016 ], "head_to_head_match_wins": [ - 2011 + 2016 ], "head_to_head_rounds_won": [ - 2011 + 2016 ], "losses": [ - 2011 + 2016 ], "maps_lost": [ - 2011 + 2016 ], "maps_won": [ - 2011 + 2016 ], "matches_played": [ - 2011 + 2016 ], "matches_remaining": [ - 2011 + 2016 ], "placement": [ - 2011 + 2016 ], "rank": [ - 2011 + 2016 ], "rounds_lost": [ - 2011 + 2016 ], "rounds_won": [ - 2011 + 2016 ], "team_kdr": [ - 2011 + 2016 ], "total_deaths": [ - 2011 + 2016 ], "total_kills": [ - 2011 + 2016 ], "wins": [ - 2011 + 2016 ], "__typename": [ - 70 + 75 ] }, "v_team_stage_results_stddev_pop_fields": { @@ -106271,60 +107100,60 @@ export default { 29 ], "__typename": [ - 70 + 75 ] }, "v_team_stage_results_stddev_pop_order_by": { "group_number": [ - 2011 + 2016 ], "head_to_head_match_wins": [ - 2011 + 2016 ], "head_to_head_rounds_won": [ - 2011 + 2016 ], "losses": [ - 2011 + 2016 ], "maps_lost": [ - 2011 + 2016 ], "maps_won": [ - 2011 + 2016 ], "matches_played": [ - 2011 + 2016 ], "matches_remaining": [ - 2011 + 2016 ], "placement": [ - 2011 + 2016 ], "rank": [ - 2011 + 2016 ], "rounds_lost": [ - 2011 + 2016 ], "rounds_won": [ - 2011 + 2016 ], "team_kdr": [ - 2011 + 2016 ], "total_deaths": [ - 2011 + 2016 ], "total_kills": [ - 2011 + 2016 ], "wins": [ - 2011 + 2016 ], "__typename": [ - 70 + 75 ] }, "v_team_stage_results_stddev_samp_fields": { @@ -106377,71 +107206,71 @@ export default { 29 ], "__typename": [ - 70 + 75 ] }, "v_team_stage_results_stddev_samp_order_by": { "group_number": [ - 2011 + 2016 ], "head_to_head_match_wins": [ - 2011 + 2016 ], "head_to_head_rounds_won": [ - 2011 + 2016 ], "losses": [ - 2011 + 2016 ], "maps_lost": [ - 2011 + 2016 ], "maps_won": [ - 2011 + 2016 ], "matches_played": [ - 2011 + 2016 ], "matches_remaining": [ - 2011 + 2016 ], "placement": [ - 2011 + 2016 ], "rank": [ - 2011 + 2016 ], "rounds_lost": [ - 2011 + 2016 ], "rounds_won": [ - 2011 + 2016 ], "team_kdr": [ - 2011 + 2016 ], "total_deaths": [ - 2011 + 2016 ], "total_kills": [ - 2011 + 2016 ], "wins": [ - 2011 + 2016 ], "__typename": [ - 70 + 75 ] }, "v_team_stage_results_stream_cursor_input": { "initial_value": [ - 4456 + 4502 ], "ordering": [ - 224 + 229 ], "__typename": [ - 70 + 75 ] }, "v_team_stage_results_stream_cursor_value_input": { @@ -106482,7 +107311,7 @@ export default { 38 ], "team_kdr": [ - 1084 + 1089 ], "total_deaths": [ 38 @@ -106491,16 +107320,16 @@ export default { 38 ], "tournament_stage_id": [ - 3818 + 3864 ], "tournament_team_id": [ - 3818 + 3864 ], "wins": [ 38 ], "__typename": [ - 70 + 75 ] }, "v_team_stage_results_sum_fields": { @@ -106541,7 +107370,7 @@ export default { 38 ], "team_kdr": [ - 1084 + 1089 ], "total_deaths": [ 38 @@ -106553,75 +107382,75 @@ export default { 38 ], "__typename": [ - 70 + 75 ] }, "v_team_stage_results_sum_order_by": { "group_number": [ - 2011 + 2016 ], "head_to_head_match_wins": [ - 2011 + 2016 ], "head_to_head_rounds_won": [ - 2011 + 2016 ], "losses": [ - 2011 + 2016 ], "maps_lost": [ - 2011 + 2016 ], "maps_won": [ - 2011 + 2016 ], "matches_played": [ - 2011 + 2016 ], "matches_remaining": [ - 2011 + 2016 ], "placement": [ - 2011 + 2016 ], "rank": [ - 2011 + 2016 ], "rounds_lost": [ - 2011 + 2016 ], "rounds_won": [ - 2011 + 2016 ], "team_kdr": [ - 2011 + 2016 ], "total_deaths": [ - 2011 + 2016 ], "total_kills": [ - 2011 + 2016 ], "wins": [ - 2011 + 2016 ], "__typename": [ - 70 + 75 ] }, "v_team_stage_results_update_column": {}, "v_team_stage_results_updates": { "_inc": [ - 4428 + 4474 ], "_set": [ - 4448 + 4494 ], "where": [ - 4426 + 4472 ], "__typename": [ - 70 + 75 ] }, "v_team_stage_results_var_pop_fields": { @@ -106674,60 +107503,60 @@ export default { 29 ], "__typename": [ - 70 + 75 ] }, "v_team_stage_results_var_pop_order_by": { "group_number": [ - 2011 + 2016 ], "head_to_head_match_wins": [ - 2011 + 2016 ], "head_to_head_rounds_won": [ - 2011 + 2016 ], "losses": [ - 2011 + 2016 ], "maps_lost": [ - 2011 + 2016 ], "maps_won": [ - 2011 + 2016 ], "matches_played": [ - 2011 + 2016 ], "matches_remaining": [ - 2011 + 2016 ], "placement": [ - 2011 + 2016 ], "rank": [ - 2011 + 2016 ], "rounds_lost": [ - 2011 + 2016 ], "rounds_won": [ - 2011 + 2016 ], "team_kdr": [ - 2011 + 2016 ], "total_deaths": [ - 2011 + 2016 ], "total_kills": [ - 2011 + 2016 ], "wins": [ - 2011 + 2016 ], "__typename": [ - 70 + 75 ] }, "v_team_stage_results_var_samp_fields": { @@ -106780,60 +107609,60 @@ export default { 29 ], "__typename": [ - 70 + 75 ] }, "v_team_stage_results_var_samp_order_by": { "group_number": [ - 2011 + 2016 ], "head_to_head_match_wins": [ - 2011 + 2016 ], "head_to_head_rounds_won": [ - 2011 + 2016 ], "losses": [ - 2011 + 2016 ], "maps_lost": [ - 2011 + 2016 ], "maps_won": [ - 2011 + 2016 ], "matches_played": [ - 2011 + 2016 ], "matches_remaining": [ - 2011 + 2016 ], "placement": [ - 2011 + 2016 ], "rank": [ - 2011 + 2016 ], "rounds_lost": [ - 2011 + 2016 ], "rounds_won": [ - 2011 + 2016 ], "team_kdr": [ - 2011 + 2016 ], "total_deaths": [ - 2011 + 2016 ], "total_kills": [ - 2011 + 2016 ], "wins": [ - 2011 + 2016 ], "__typename": [ - 70 + 75 ] }, "v_team_stage_results_variance_fields": { @@ -106886,60 +107715,60 @@ export default { 29 ], "__typename": [ - 70 + 75 ] }, "v_team_stage_results_variance_order_by": { "group_number": [ - 2011 + 2016 ], "head_to_head_match_wins": [ - 2011 + 2016 ], "head_to_head_rounds_won": [ - 2011 + 2016 ], "losses": [ - 2011 + 2016 ], "maps_lost": [ - 2011 + 2016 ], "maps_won": [ - 2011 + 2016 ], "matches_played": [ - 2011 + 2016 ], "matches_remaining": [ - 2011 + 2016 ], "placement": [ - 2011 + 2016 ], "rank": [ - 2011 + 2016 ], "rounds_lost": [ - 2011 + 2016 ], "rounds_won": [ - 2011 + 2016 ], "team_kdr": [ - 2011 + 2016 ], "total_deaths": [ - 2011 + 2016 ], "total_kills": [ - 2011 + 2016 ], "wins": [ - 2011 + 2016 ], "__typename": [ - 70 + 75 ] }, "v_team_tournament_results": { @@ -106971,10 +107800,10 @@ export default { 38 ], "team": [ - 3643 + 3689 ], "team_kdr": [ - 1084 + 1089 ], "total_deaths": [ 38 @@ -106983,248 +107812,248 @@ export default { 38 ], "tournament": [ - 3772 + 3818 ], "tournament_id": [ - 3818 + 3864 ], "tournament_team_id": [ - 3818 + 3864 ], "wins": [ 38 ], "__typename": [ - 70 + 75 ] }, "v_team_tournament_results_aggregate": { "aggregate": [ - 4481 + 4527 ], "nodes": [ - 4467 + 4513 ], "__typename": [ - 70 + 75 ] }, "v_team_tournament_results_aggregate_bool_exp": { "avg": [ - 4470 + 4516 ], "corr": [ - 4471 + 4517 ], "count": [ - 4473 + 4519 ], "covar_samp": [ - 4474 + 4520 ], "max": [ - 4476 + 4522 ], "min": [ - 4477 + 4523 ], "stddev_samp": [ - 4478 + 4524 ], "sum": [ - 4479 + 4525 ], "var_samp": [ - 4480 + 4526 ], "__typename": [ - 70 + 75 ] }, "v_team_tournament_results_aggregate_bool_exp_avg": { "arguments": [ - 4494 + 4540 ], "distinct": [ 3 ], "filter": [ - 4486 + 4532 ], "predicate": [ - 1085 + 1090 ], "__typename": [ - 70 + 75 ] }, "v_team_tournament_results_aggregate_bool_exp_corr": { "arguments": [ - 4472 + 4518 ], "distinct": [ 3 ], "filter": [ - 4486 + 4532 ], "predicate": [ - 1085 + 1090 ], "__typename": [ - 70 + 75 ] }, "v_team_tournament_results_aggregate_bool_exp_corr_arguments": { "X": [ - 4495 + 4541 ], "Y": [ - 4495 + 4541 ], "__typename": [ - 70 + 75 ] }, "v_team_tournament_results_aggregate_bool_exp_count": { "arguments": [ - 4493 + 4539 ], "distinct": [ 3 ], "filter": [ - 4486 + 4532 ], "predicate": [ 39 ], "__typename": [ - 70 + 75 ] }, "v_team_tournament_results_aggregate_bool_exp_covar_samp": { "arguments": [ - 4475 + 4521 ], "distinct": [ 3 ], "filter": [ - 4486 + 4532 ], "predicate": [ - 1085 + 1090 ], "__typename": [ - 70 + 75 ] }, "v_team_tournament_results_aggregate_bool_exp_covar_samp_arguments": { "X": [ - 4496 + 4542 ], "Y": [ - 4496 + 4542 ], "__typename": [ - 70 + 75 ] }, "v_team_tournament_results_aggregate_bool_exp_max": { "arguments": [ - 4497 + 4543 ], "distinct": [ 3 ], "filter": [ - 4486 + 4532 ], "predicate": [ - 1085 + 1090 ], "__typename": [ - 70 + 75 ] }, "v_team_tournament_results_aggregate_bool_exp_min": { "arguments": [ - 4498 + 4544 ], "distinct": [ 3 ], "filter": [ - 4486 + 4532 ], "predicate": [ - 1085 + 1090 ], "__typename": [ - 70 + 75 ] }, "v_team_tournament_results_aggregate_bool_exp_stddev_samp": { "arguments": [ - 4499 + 4545 ], "distinct": [ 3 ], "filter": [ - 4486 + 4532 ], "predicate": [ - 1085 + 1090 ], "__typename": [ - 70 + 75 ] }, "v_team_tournament_results_aggregate_bool_exp_sum": { "arguments": [ - 4500 + 4546 ], "distinct": [ 3 ], "filter": [ - 4486 + 4532 ], "predicate": [ - 1085 + 1090 ], "__typename": [ - 70 + 75 ] }, "v_team_tournament_results_aggregate_bool_exp_var_samp": { "arguments": [ - 4501 + 4547 ], "distinct": [ 3 ], "filter": [ - 4486 + 4532 ], "predicate": [ - 1085 + 1090 ], "__typename": [ - 70 + 75 ] }, "v_team_tournament_results_aggregate_fields": { "avg": [ - 4484 + 4530 ], "count": [ 38, { "columns": [ - 4493, + 4539, "[v_team_tournament_results_select_column!]" ], "distinct": [ @@ -107233,80 +108062,80 @@ export default { } ], "max": [ - 4488 + 4534 ], "min": [ - 4490 + 4536 ], "stddev": [ - 4502 + 4548 ], "stddev_pop": [ - 4504 + 4550 ], "stddev_samp": [ - 4506 + 4552 ], "sum": [ - 4510 + 4556 ], "var_pop": [ - 4512 + 4558 ], "var_samp": [ - 4514 + 4560 ], "variance": [ - 4516 + 4562 ], "__typename": [ - 70 + 75 ] }, "v_team_tournament_results_aggregate_order_by": { "avg": [ - 4485 + 4531 ], "count": [ - 2011 + 2016 ], "max": [ - 4489 + 4535 ], "min": [ - 4491 + 4537 ], "stddev": [ - 4503 + 4549 ], "stddev_pop": [ - 4505 + 4551 ], "stddev_samp": [ - 4507 + 4553 ], "sum": [ - 4511 + 4557 ], "var_pop": [ - 4513 + 4559 ], "var_samp": [ - 4515 + 4561 ], "variance": [ - 4517 + 4563 ], "__typename": [ - 70 + 75 ] }, "v_team_tournament_results_arr_rel_insert_input": { "data": [ - 4487 + 4533 ], "__typename": [ - 70 + 75 ] }, "v_team_tournament_results_avg_fields": { @@ -107350,62 +108179,62 @@ export default { 29 ], "__typename": [ - 70 + 75 ] }, "v_team_tournament_results_avg_order_by": { "head_to_head_match_wins": [ - 2011 + 2016 ], "head_to_head_rounds_won": [ - 2011 + 2016 ], "losses": [ - 2011 + 2016 ], "maps_lost": [ - 2011 + 2016 ], "maps_won": [ - 2011 + 2016 ], "matches_played": [ - 2011 + 2016 ], "matches_remaining": [ - 2011 + 2016 ], "rounds_lost": [ - 2011 + 2016 ], "rounds_won": [ - 2011 + 2016 ], "team_kdr": [ - 2011 + 2016 ], "total_deaths": [ - 2011 + 2016 ], "total_kills": [ - 2011 + 2016 ], "wins": [ - 2011 + 2016 ], "__typename": [ - 70 + 75 ] }, "v_team_tournament_results_bool_exp": { "_and": [ - 4486 + 4532 ], "_not": [ - 4486 + 4532 ], "_or": [ - 4486 + 4532 ], "head_to_head_match_wins": [ 39 @@ -107435,10 +108264,10 @@ export default { 39 ], "team": [ - 3652 + 3698 ], "team_kdr": [ - 1085 + 1090 ], "total_deaths": [ 39 @@ -107447,19 +108276,19 @@ export default { 39 ], "tournament": [ - 3783 + 3829 ], "tournament_id": [ - 3820 + 3866 ], "tournament_team_id": [ - 3820 + 3866 ], "wins": [ 39 ], "__typename": [ - 70 + 75 ] }, "v_team_tournament_results_insert_input": { @@ -107491,10 +108320,10 @@ export default { 38 ], "team": [ - 3661 + 3707 ], "team_kdr": [ - 1084 + 1089 ], "total_deaths": [ 38 @@ -107503,19 +108332,19 @@ export default { 38 ], "tournament": [ - 3792 + 3838 ], "tournament_id": [ - 3818 + 3864 ], "tournament_team_id": [ - 3818 + 3864 ], "wins": [ 38 ], "__typename": [ - 70 + 75 ] }, "v_team_tournament_results_max_fields": { @@ -107547,7 +108376,7 @@ export default { 38 ], "team_kdr": [ - 1084 + 1089 ], "total_deaths": [ 38 @@ -107556,66 +108385,66 @@ export default { 38 ], "tournament_id": [ - 3818 + 3864 ], "tournament_team_id": [ - 3818 + 3864 ], "wins": [ 38 ], "__typename": [ - 70 + 75 ] }, "v_team_tournament_results_max_order_by": { "head_to_head_match_wins": [ - 2011 + 2016 ], "head_to_head_rounds_won": [ - 2011 + 2016 ], "losses": [ - 2011 + 2016 ], "maps_lost": [ - 2011 + 2016 ], "maps_won": [ - 2011 + 2016 ], "matches_played": [ - 2011 + 2016 ], "matches_remaining": [ - 2011 + 2016 ], "rounds_lost": [ - 2011 + 2016 ], "rounds_won": [ - 2011 + 2016 ], "team_kdr": [ - 2011 + 2016 ], "total_deaths": [ - 2011 + 2016 ], "total_kills": [ - 2011 + 2016 ], "tournament_id": [ - 2011 + 2016 ], "tournament_team_id": [ - 2011 + 2016 ], "wins": [ - 2011 + 2016 ], "__typename": [ - 70 + 75 ] }, "v_team_tournament_results_min_fields": { @@ -107647,7 +108476,7 @@ export default { 38 ], "team_kdr": [ - 1084 + 1089 ], "total_deaths": [ 38 @@ -107656,122 +108485,122 @@ export default { 38 ], "tournament_id": [ - 3818 + 3864 ], "tournament_team_id": [ - 3818 + 3864 ], "wins": [ 38 ], "__typename": [ - 70 + 75 ] }, "v_team_tournament_results_min_order_by": { "head_to_head_match_wins": [ - 2011 + 2016 ], "head_to_head_rounds_won": [ - 2011 + 2016 ], "losses": [ - 2011 + 2016 ], "maps_lost": [ - 2011 + 2016 ], "maps_won": [ - 2011 + 2016 ], "matches_played": [ - 2011 + 2016 ], "matches_remaining": [ - 2011 + 2016 ], "rounds_lost": [ - 2011 + 2016 ], "rounds_won": [ - 2011 + 2016 ], "team_kdr": [ - 2011 + 2016 ], "total_deaths": [ - 2011 + 2016 ], "total_kills": [ - 2011 + 2016 ], "tournament_id": [ - 2011 + 2016 ], "tournament_team_id": [ - 2011 + 2016 ], "wins": [ - 2011 + 2016 ], "__typename": [ - 70 + 75 ] }, "v_team_tournament_results_order_by": { "head_to_head_match_wins": [ - 2011 + 2016 ], "head_to_head_rounds_won": [ - 2011 + 2016 ], "losses": [ - 2011 + 2016 ], "maps_lost": [ - 2011 + 2016 ], "maps_won": [ - 2011 + 2016 ], "matches_played": [ - 2011 + 2016 ], "matches_remaining": [ - 2011 + 2016 ], "rounds_lost": [ - 2011 + 2016 ], "rounds_won": [ - 2011 + 2016 ], "team": [ - 3663 + 3709 ], "team_kdr": [ - 2011 + 2016 ], "total_deaths": [ - 2011 + 2016 ], "total_kills": [ - 2011 + 2016 ], "tournament": [ - 3794 + 3840 ], "tournament_id": [ - 2011 + 2016 ], "tournament_team_id": [ - 2011 + 2016 ], "wins": [ - 2011 + 2016 ], "__typename": [ - 70 + 75 ] }, "v_team_tournament_results_select_column": {}, @@ -107824,51 +108653,51 @@ export default { 29 ], "__typename": [ - 70 + 75 ] }, "v_team_tournament_results_stddev_order_by": { "head_to_head_match_wins": [ - 2011 + 2016 ], "head_to_head_rounds_won": [ - 2011 + 2016 ], "losses": [ - 2011 + 2016 ], "maps_lost": [ - 2011 + 2016 ], "maps_won": [ - 2011 + 2016 ], "matches_played": [ - 2011 + 2016 ], "matches_remaining": [ - 2011 + 2016 ], "rounds_lost": [ - 2011 + 2016 ], "rounds_won": [ - 2011 + 2016 ], "team_kdr": [ - 2011 + 2016 ], "total_deaths": [ - 2011 + 2016 ], "total_kills": [ - 2011 + 2016 ], "wins": [ - 2011 + 2016 ], "__typename": [ - 70 + 75 ] }, "v_team_tournament_results_stddev_pop_fields": { @@ -107912,51 +108741,51 @@ export default { 29 ], "__typename": [ - 70 + 75 ] }, "v_team_tournament_results_stddev_pop_order_by": { "head_to_head_match_wins": [ - 2011 + 2016 ], "head_to_head_rounds_won": [ - 2011 + 2016 ], "losses": [ - 2011 + 2016 ], "maps_lost": [ - 2011 + 2016 ], "maps_won": [ - 2011 + 2016 ], "matches_played": [ - 2011 + 2016 ], "matches_remaining": [ - 2011 + 2016 ], "rounds_lost": [ - 2011 + 2016 ], "rounds_won": [ - 2011 + 2016 ], "team_kdr": [ - 2011 + 2016 ], "total_deaths": [ - 2011 + 2016 ], "total_kills": [ - 2011 + 2016 ], "wins": [ - 2011 + 2016 ], "__typename": [ - 70 + 75 ] }, "v_team_tournament_results_stddev_samp_fields": { @@ -108000,62 +108829,62 @@ export default { 29 ], "__typename": [ - 70 + 75 ] }, "v_team_tournament_results_stddev_samp_order_by": { "head_to_head_match_wins": [ - 2011 + 2016 ], "head_to_head_rounds_won": [ - 2011 + 2016 ], "losses": [ - 2011 + 2016 ], "maps_lost": [ - 2011 + 2016 ], "maps_won": [ - 2011 + 2016 ], "matches_played": [ - 2011 + 2016 ], "matches_remaining": [ - 2011 + 2016 ], "rounds_lost": [ - 2011 + 2016 ], "rounds_won": [ - 2011 + 2016 ], "team_kdr": [ - 2011 + 2016 ], "total_deaths": [ - 2011 + 2016 ], "total_kills": [ - 2011 + 2016 ], "wins": [ - 2011 + 2016 ], "__typename": [ - 70 + 75 ] }, "v_team_tournament_results_stream_cursor_input": { "initial_value": [ - 4509 + 4555 ], "ordering": [ - 224 + 229 ], "__typename": [ - 70 + 75 ] }, "v_team_tournament_results_stream_cursor_value_input": { @@ -108087,7 +108916,7 @@ export default { 38 ], "team_kdr": [ - 1084 + 1089 ], "total_deaths": [ 38 @@ -108096,16 +108925,16 @@ export default { 38 ], "tournament_id": [ - 3818 + 3864 ], "tournament_team_id": [ - 3818 + 3864 ], "wins": [ 38 ], "__typename": [ - 70 + 75 ] }, "v_team_tournament_results_sum_fields": { @@ -108137,7 +108966,7 @@ export default { 38 ], "team_kdr": [ - 1084 + 1089 ], "total_deaths": [ 38 @@ -108149,51 +108978,51 @@ export default { 38 ], "__typename": [ - 70 + 75 ] }, "v_team_tournament_results_sum_order_by": { "head_to_head_match_wins": [ - 2011 + 2016 ], "head_to_head_rounds_won": [ - 2011 + 2016 ], "losses": [ - 2011 + 2016 ], "maps_lost": [ - 2011 + 2016 ], "maps_won": [ - 2011 + 2016 ], "matches_played": [ - 2011 + 2016 ], "matches_remaining": [ - 2011 + 2016 ], "rounds_lost": [ - 2011 + 2016 ], "rounds_won": [ - 2011 + 2016 ], "team_kdr": [ - 2011 + 2016 ], "total_deaths": [ - 2011 + 2016 ], "total_kills": [ - 2011 + 2016 ], "wins": [ - 2011 + 2016 ], "__typename": [ - 70 + 75 ] }, "v_team_tournament_results_var_pop_fields": { @@ -108237,51 +109066,51 @@ export default { 29 ], "__typename": [ - 70 + 75 ] }, "v_team_tournament_results_var_pop_order_by": { "head_to_head_match_wins": [ - 2011 + 2016 ], "head_to_head_rounds_won": [ - 2011 + 2016 ], "losses": [ - 2011 + 2016 ], "maps_lost": [ - 2011 + 2016 ], "maps_won": [ - 2011 + 2016 ], "matches_played": [ - 2011 + 2016 ], "matches_remaining": [ - 2011 + 2016 ], "rounds_lost": [ - 2011 + 2016 ], "rounds_won": [ - 2011 + 2016 ], "team_kdr": [ - 2011 + 2016 ], "total_deaths": [ - 2011 + 2016 ], "total_kills": [ - 2011 + 2016 ], "wins": [ - 2011 + 2016 ], "__typename": [ - 70 + 75 ] }, "v_team_tournament_results_var_samp_fields": { @@ -108325,51 +109154,51 @@ export default { 29 ], "__typename": [ - 70 + 75 ] }, "v_team_tournament_results_var_samp_order_by": { "head_to_head_match_wins": [ - 2011 + 2016 ], "head_to_head_rounds_won": [ - 2011 + 2016 ], "losses": [ - 2011 + 2016 ], "maps_lost": [ - 2011 + 2016 ], "maps_won": [ - 2011 + 2016 ], "matches_played": [ - 2011 + 2016 ], "matches_remaining": [ - 2011 + 2016 ], "rounds_lost": [ - 2011 + 2016 ], "rounds_won": [ - 2011 + 2016 ], "team_kdr": [ - 2011 + 2016 ], "total_deaths": [ - 2011 + 2016 ], "total_kills": [ - 2011 + 2016 ], "wins": [ - 2011 + 2016 ], "__typename": [ - 70 + 75 ] }, "v_team_tournament_results_variance_fields": { @@ -108413,51 +109242,51 @@ export default { 29 ], "__typename": [ - 70 + 75 ] }, "v_team_tournament_results_variance_order_by": { "head_to_head_match_wins": [ - 2011 + 2016 ], "head_to_head_rounds_won": [ - 2011 + 2016 ], "losses": [ - 2011 + 2016 ], "maps_lost": [ - 2011 + 2016 ], "maps_won": [ - 2011 + 2016 ], "matches_played": [ - 2011 + 2016 ], "matches_remaining": [ - 2011 + 2016 ], "rounds_lost": [ - 2011 + 2016 ], "rounds_won": [ - 2011 + 2016 ], "team_kdr": [ - 2011 + 2016 ], "total_deaths": [ - 2011 + 2016 ], "total_kills": [ - 2011 + 2016 ], "wins": [ - 2011 + 2016 ], "__typename": [ - 70 + 75 ] }, "v_tournament_player_stats": { @@ -108468,13 +109297,13 @@ export default { 38 ], "headshot_percentage": [ - 1084 + 1089 ], "headshots": [ 38 ], "kdr": [ - 1084 + 1089 ], "kills": [ 38 @@ -108483,248 +109312,248 @@ export default { 38 ], "player": [ - 2878 + 2915 ], "player_steam_id": [ - 169 + 174 ], "tournament": [ - 3772 + 3818 ], "tournament_id": [ - 3818 + 3864 ], "__typename": [ - 70 + 75 ] }, "v_tournament_player_stats_aggregate": { "aggregate": [ - 4532 + 4578 ], "nodes": [ - 4518 + 4564 ], "__typename": [ - 70 + 75 ] }, "v_tournament_player_stats_aggregate_bool_exp": { "avg": [ - 4521 + 4567 ], "corr": [ - 4522 + 4568 ], "count": [ - 4524 + 4570 ], "covar_samp": [ - 4525 + 4571 ], "max": [ - 4527 + 4573 ], "min": [ - 4528 + 4574 ], "stddev_samp": [ - 4529 + 4575 ], "sum": [ - 4530 + 4576 ], "var_samp": [ - 4531 + 4577 ], "__typename": [ - 70 + 75 ] }, "v_tournament_player_stats_aggregate_bool_exp_avg": { "arguments": [ - 4545 + 4591 ], "distinct": [ 3 ], "filter": [ - 4537 + 4583 ], "predicate": [ - 1085 + 1090 ], "__typename": [ - 70 + 75 ] }, "v_tournament_player_stats_aggregate_bool_exp_corr": { "arguments": [ - 4523 + 4569 ], "distinct": [ 3 ], "filter": [ - 4537 + 4583 ], "predicate": [ - 1085 + 1090 ], "__typename": [ - 70 + 75 ] }, "v_tournament_player_stats_aggregate_bool_exp_corr_arguments": { "X": [ - 4546 + 4592 ], "Y": [ - 4546 + 4592 ], "__typename": [ - 70 + 75 ] }, "v_tournament_player_stats_aggregate_bool_exp_count": { "arguments": [ - 4544 + 4590 ], "distinct": [ 3 ], "filter": [ - 4537 + 4583 ], "predicate": [ 39 ], "__typename": [ - 70 + 75 ] }, "v_tournament_player_stats_aggregate_bool_exp_covar_samp": { "arguments": [ - 4526 + 4572 ], "distinct": [ 3 ], "filter": [ - 4537 + 4583 ], "predicate": [ - 1085 + 1090 ], "__typename": [ - 70 + 75 ] }, "v_tournament_player_stats_aggregate_bool_exp_covar_samp_arguments": { "X": [ - 4547 + 4593 ], "Y": [ - 4547 + 4593 ], "__typename": [ - 70 + 75 ] }, "v_tournament_player_stats_aggregate_bool_exp_max": { "arguments": [ - 4548 + 4594 ], "distinct": [ 3 ], "filter": [ - 4537 + 4583 ], "predicate": [ - 1085 + 1090 ], "__typename": [ - 70 + 75 ] }, "v_tournament_player_stats_aggregate_bool_exp_min": { "arguments": [ - 4549 + 4595 ], "distinct": [ 3 ], "filter": [ - 4537 + 4583 ], "predicate": [ - 1085 + 1090 ], "__typename": [ - 70 + 75 ] }, "v_tournament_player_stats_aggregate_bool_exp_stddev_samp": { "arguments": [ - 4550 + 4596 ], "distinct": [ 3 ], "filter": [ - 4537 + 4583 ], "predicate": [ - 1085 + 1090 ], "__typename": [ - 70 + 75 ] }, "v_tournament_player_stats_aggregate_bool_exp_sum": { "arguments": [ - 4551 + 4597 ], "distinct": [ 3 ], "filter": [ - 4537 + 4583 ], "predicate": [ - 1085 + 1090 ], "__typename": [ - 70 + 75 ] }, "v_tournament_player_stats_aggregate_bool_exp_var_samp": { "arguments": [ - 4552 + 4598 ], "distinct": [ 3 ], "filter": [ - 4537 + 4583 ], "predicate": [ - 1085 + 1090 ], "__typename": [ - 70 + 75 ] }, "v_tournament_player_stats_aggregate_fields": { "avg": [ - 4535 + 4581 ], "count": [ 38, { "columns": [ - 4544, + 4590, "[v_tournament_player_stats_select_column!]" ], "distinct": [ @@ -108733,80 +109562,80 @@ export default { } ], "max": [ - 4539 + 4585 ], "min": [ - 4541 + 4587 ], "stddev": [ - 4553 + 4599 ], "stddev_pop": [ - 4555 + 4601 ], "stddev_samp": [ - 4557 + 4603 ], "sum": [ - 4561 + 4607 ], "var_pop": [ - 4563 + 4609 ], "var_samp": [ - 4565 + 4611 ], "variance": [ - 4567 + 4613 ], "__typename": [ - 70 + 75 ] }, "v_tournament_player_stats_aggregate_order_by": { "avg": [ - 4536 + 4582 ], "count": [ - 2011 + 2016 ], "max": [ - 4540 + 4586 ], "min": [ - 4542 + 4588 ], "stddev": [ - 4554 + 4600 ], "stddev_pop": [ - 4556 + 4602 ], "stddev_samp": [ - 4558 + 4604 ], "sum": [ - 4562 + 4608 ], "var_pop": [ - 4564 + 4610 ], "var_samp": [ - 4566 + 4612 ], "variance": [ - 4568 + 4614 ], "__typename": [ - 70 + 75 ] }, "v_tournament_player_stats_arr_rel_insert_input": { "data": [ - 4538 + 4584 ], "__typename": [ - 70 + 75 ] }, "v_tournament_player_stats_avg_fields": { @@ -108835,47 +109664,47 @@ export default { 29 ], "__typename": [ - 70 + 75 ] }, "v_tournament_player_stats_avg_order_by": { "assists": [ - 2011 + 2016 ], "deaths": [ - 2011 + 2016 ], "headshot_percentage": [ - 2011 + 2016 ], "headshots": [ - 2011 + 2016 ], "kdr": [ - 2011 + 2016 ], "kills": [ - 2011 + 2016 ], "matches_played": [ - 2011 + 2016 ], "player_steam_id": [ - 2011 + 2016 ], "__typename": [ - 70 + 75 ] }, "v_tournament_player_stats_bool_exp": { "_and": [ - 4537 + 4583 ], "_not": [ - 4537 + 4583 ], "_or": [ - 4537 + 4583 ], "assists": [ 39 @@ -108884,13 +109713,13 @@ export default { 39 ], "headshot_percentage": [ - 1085 + 1090 ], "headshots": [ 39 ], "kdr": [ - 1085 + 1090 ], "kills": [ 39 @@ -108899,19 +109728,19 @@ export default { 39 ], "player": [ - 2882 + 2919 ], "player_steam_id": [ - 171 + 176 ], "tournament": [ - 3783 + 3829 ], "tournament_id": [ - 3820 + 3866 ], "__typename": [ - 70 + 75 ] }, "v_tournament_player_stats_insert_input": { @@ -108922,13 +109751,13 @@ export default { 38 ], "headshot_percentage": [ - 1084 + 1089 ], "headshots": [ 38 ], "kdr": [ - 1084 + 1089 ], "kills": [ 38 @@ -108937,19 +109766,19 @@ export default { 38 ], "player": [ - 2889 + 2926 ], "player_steam_id": [ - 169 + 174 ], "tournament": [ - 3792 + 3838 ], "tournament_id": [ - 3818 + 3864 ], "__typename": [ - 70 + 75 ] }, "v_tournament_player_stats_max_fields": { @@ -108960,13 +109789,13 @@ export default { 38 ], "headshot_percentage": [ - 1084 + 1089 ], "headshots": [ 38 ], "kdr": [ - 1084 + 1089 ], "kills": [ 38 @@ -108975,45 +109804,45 @@ export default { 38 ], "player_steam_id": [ - 169 + 174 ], "tournament_id": [ - 3818 + 3864 ], "__typename": [ - 70 + 75 ] }, "v_tournament_player_stats_max_order_by": { "assists": [ - 2011 + 2016 ], "deaths": [ - 2011 + 2016 ], "headshot_percentage": [ - 2011 + 2016 ], "headshots": [ - 2011 + 2016 ], "kdr": [ - 2011 + 2016 ], "kills": [ - 2011 + 2016 ], "matches_played": [ - 2011 + 2016 ], "player_steam_id": [ - 2011 + 2016 ], "tournament_id": [ - 2011 + 2016 ], "__typename": [ - 70 + 75 ] }, "v_tournament_player_stats_min_fields": { @@ -109024,13 +109853,13 @@ export default { 38 ], "headshot_percentage": [ - 1084 + 1089 ], "headshots": [ 38 ], "kdr": [ - 1084 + 1089 ], "kills": [ 38 @@ -109039,83 +109868,83 @@ export default { 38 ], "player_steam_id": [ - 169 + 174 ], "tournament_id": [ - 3818 + 3864 ], "__typename": [ - 70 + 75 ] }, "v_tournament_player_stats_min_order_by": { "assists": [ - 2011 + 2016 ], "deaths": [ - 2011 + 2016 ], "headshot_percentage": [ - 2011 + 2016 ], "headshots": [ - 2011 + 2016 ], "kdr": [ - 2011 + 2016 ], "kills": [ - 2011 + 2016 ], "matches_played": [ - 2011 + 2016 ], "player_steam_id": [ - 2011 + 2016 ], "tournament_id": [ - 2011 + 2016 ], "__typename": [ - 70 + 75 ] }, "v_tournament_player_stats_order_by": { "assists": [ - 2011 + 2016 ], "deaths": [ - 2011 + 2016 ], "headshot_percentage": [ - 2011 + 2016 ], "headshots": [ - 2011 + 2016 ], "kdr": [ - 2011 + 2016 ], "kills": [ - 2011 + 2016 ], "matches_played": [ - 2011 + 2016 ], "player": [ - 2891 + 2928 ], "player_steam_id": [ - 2011 + 2016 ], "tournament": [ - 3794 + 3840 ], "tournament_id": [ - 2011 + 2016 ], "__typename": [ - 70 + 75 ] }, "v_tournament_player_stats_select_column": {}, @@ -109153,36 +109982,36 @@ export default { 29 ], "__typename": [ - 70 + 75 ] }, "v_tournament_player_stats_stddev_order_by": { "assists": [ - 2011 + 2016 ], "deaths": [ - 2011 + 2016 ], "headshot_percentage": [ - 2011 + 2016 ], "headshots": [ - 2011 + 2016 ], "kdr": [ - 2011 + 2016 ], "kills": [ - 2011 + 2016 ], "matches_played": [ - 2011 + 2016 ], "player_steam_id": [ - 2011 + 2016 ], "__typename": [ - 70 + 75 ] }, "v_tournament_player_stats_stddev_pop_fields": { @@ -109211,36 +110040,36 @@ export default { 29 ], "__typename": [ - 70 + 75 ] }, "v_tournament_player_stats_stddev_pop_order_by": { "assists": [ - 2011 + 2016 ], "deaths": [ - 2011 + 2016 ], "headshot_percentage": [ - 2011 + 2016 ], "headshots": [ - 2011 + 2016 ], "kdr": [ - 2011 + 2016 ], "kills": [ - 2011 + 2016 ], "matches_played": [ - 2011 + 2016 ], "player_steam_id": [ - 2011 + 2016 ], "__typename": [ - 70 + 75 ] }, "v_tournament_player_stats_stddev_samp_fields": { @@ -109269,47 +110098,47 @@ export default { 29 ], "__typename": [ - 70 + 75 ] }, "v_tournament_player_stats_stddev_samp_order_by": { "assists": [ - 2011 + 2016 ], "deaths": [ - 2011 + 2016 ], "headshot_percentage": [ - 2011 + 2016 ], "headshots": [ - 2011 + 2016 ], "kdr": [ - 2011 + 2016 ], "kills": [ - 2011 + 2016 ], "matches_played": [ - 2011 + 2016 ], "player_steam_id": [ - 2011 + 2016 ], "__typename": [ - 70 + 75 ] }, "v_tournament_player_stats_stream_cursor_input": { "initial_value": [ - 4560 + 4606 ], "ordering": [ - 224 + 229 ], "__typename": [ - 70 + 75 ] }, "v_tournament_player_stats_stream_cursor_value_input": { @@ -109320,13 +110149,13 @@ export default { 38 ], "headshot_percentage": [ - 1084 + 1089 ], "headshots": [ 38 ], "kdr": [ - 1084 + 1089 ], "kills": [ 38 @@ -109335,13 +110164,13 @@ export default { 38 ], "player_steam_id": [ - 169 + 174 ], "tournament_id": [ - 3818 + 3864 ], "__typename": [ - 70 + 75 ] }, "v_tournament_player_stats_sum_fields": { @@ -109352,13 +110181,13 @@ export default { 38 ], "headshot_percentage": [ - 1084 + 1089 ], "headshots": [ 38 ], "kdr": [ - 1084 + 1089 ], "kills": [ 38 @@ -109367,39 +110196,39 @@ export default { 38 ], "player_steam_id": [ - 169 + 174 ], "__typename": [ - 70 + 75 ] }, "v_tournament_player_stats_sum_order_by": { "assists": [ - 2011 + 2016 ], "deaths": [ - 2011 + 2016 ], "headshot_percentage": [ - 2011 + 2016 ], "headshots": [ - 2011 + 2016 ], "kdr": [ - 2011 + 2016 ], "kills": [ - 2011 + 2016 ], "matches_played": [ - 2011 + 2016 ], "player_steam_id": [ - 2011 + 2016 ], "__typename": [ - 70 + 75 ] }, "v_tournament_player_stats_var_pop_fields": { @@ -109428,36 +110257,36 @@ export default { 29 ], "__typename": [ - 70 + 75 ] }, "v_tournament_player_stats_var_pop_order_by": { "assists": [ - 2011 + 2016 ], "deaths": [ - 2011 + 2016 ], "headshot_percentage": [ - 2011 + 2016 ], "headshots": [ - 2011 + 2016 ], "kdr": [ - 2011 + 2016 ], "kills": [ - 2011 + 2016 ], "matches_played": [ - 2011 + 2016 ], "player_steam_id": [ - 2011 + 2016 ], "__typename": [ - 70 + 75 ] }, "v_tournament_player_stats_var_samp_fields": { @@ -109486,36 +110315,36 @@ export default { 29 ], "__typename": [ - 70 + 75 ] }, "v_tournament_player_stats_var_samp_order_by": { "assists": [ - 2011 + 2016 ], "deaths": [ - 2011 + 2016 ], "headshot_percentage": [ - 2011 + 2016 ], "headshots": [ - 2011 + 2016 ], "kdr": [ - 2011 + 2016 ], "kills": [ - 2011 + 2016 ], "matches_played": [ - 2011 + 2016 ], "player_steam_id": [ - 2011 + 2016 ], "__typename": [ - 70 + 75 ] }, "v_tournament_player_stats_variance_fields": { @@ -109544,44 +110373,44 @@ export default { 29 ], "__typename": [ - 70 + 75 ] }, "v_tournament_player_stats_variance_order_by": { "assists": [ - 2011 + 2016 ], "deaths": [ - 2011 + 2016 ], "headshot_percentage": [ - 2011 + 2016 ], "headshots": [ - 2011 + 2016 ], "kdr": [ - 2011 + 2016 ], "kills": [ - 2011 + 2016 ], "matches_played": [ - 2011 + 2016 ], "player_steam_id": [ - 2011 + 2016 ], "__typename": [ - 70 + 75 ] }, "Query": { "_map_pool": [ - 83, + 88, { "distinct_on": [ - 95, + 100, "[_map_pool_select_column!]" ], "limit": [ @@ -109591,19 +110420,19 @@ export default { 38 ], "order_by": [ - 93, + 98, "[_map_pool_order_by!]" ], "where": [ - 86 + 91 ] } ], "_map_pool_aggregate": [ - 84, + 89, { "distinct_on": [ - 95, + 100, "[_map_pool_select_column!]" ], "limit": [ @@ -109613,32 +110442,32 @@ export default { 38 ], "order_by": [ - 93, + 98, "[_map_pool_order_by!]" ], "where": [ - 86 + 91 ] } ], "_map_pool_by_pk": [ - 83, + 88, { "map_id": [ - 3818, + 3864, "uuid!" ], "map_pool_id": [ - 3818, + 3864, "uuid!" ] } ], "abandoned_matches": [ - 101, + 106, { "distinct_on": [ - 122, + 127, "[abandoned_matches_select_column!]" ], "limit": [ @@ -109648,19 +110477,19 @@ export default { 38 ], "order_by": [ - 120, + 125, "[abandoned_matches_order_by!]" ], "where": [ - 110 + 115 ] } ], "abandoned_matches_aggregate": [ - 102, + 107, { "distinct_on": [ - 122, + 127, "[abandoned_matches_select_column!]" ], "limit": [ @@ -109670,28 +110499,28 @@ export default { 38 ], "order_by": [ - 120, + 125, "[abandoned_matches_order_by!]" ], "where": [ - 110 + 115 ] } ], "abandoned_matches_by_pk": [ - 101, + 106, { "id": [ - 3818, + 3864, "uuid!" ] } ], "api_keys": [ - 142, + 147, { "distinct_on": [ - 156, + 161, "[api_keys_select_column!]" ], "limit": [ @@ -109701,19 +110530,19 @@ export default { 38 ], "order_by": [ - 154, + 159, "[api_keys_order_by!]" ], "where": [ - 146 + 151 ] } ], "api_keys_aggregate": [ - 143, + 148, { "distinct_on": [ - 156, + 161, "[api_keys_select_column!]" ], "limit": [ @@ -109723,28 +110552,28 @@ export default { 38 ], "order_by": [ - 154, + 159, "[api_keys_order_by!]" ], "where": [ - 146 + 151 ] } ], "api_keys_by_pk": [ - 142, + 147, { "id": [ - 3818, + 3864, "uuid!" ] } ], "clip_render_jobs": [ - 174, + 179, { "distinct_on": [ - 202, + 207, "[clip_render_jobs_select_column!]" ], "limit": [ @@ -109754,19 +110583,19 @@ export default { 38 ], "order_by": [ - 199, + 204, "[clip_render_jobs_order_by!]" ], "where": [ - 186 + 191 ] } ], "clip_render_jobs_aggregate": [ - 175, + 180, { "distinct_on": [ - 202, + 207, "[clip_render_jobs_select_column!]" ], "limit": [ @@ -109776,19 +110605,19 @@ export default { 38 ], "order_by": [ - 199, + 204, "[clip_render_jobs_order_by!]" ], "where": [ - 186 + 191 ] } ], "clip_render_jobs_by_pk": [ - 174, + 179, { "id": [ - 3818, + 3864, "uuid!" ] } @@ -109797,10 +110626,10 @@ export default { 17 ], "db_backups": [ - 225, + 230, { "distinct_on": [ - 239, + 244, "[db_backups_select_column!]" ], "limit": [ @@ -109810,19 +110639,19 @@ export default { 38 ], "order_by": [ - 237, + 242, "[db_backups_order_by!]" ], "where": [ - 229 + 234 ] } ], "db_backups_aggregate": [ - 226, + 231, { "distinct_on": [ - 239, + 244, "[db_backups_select_column!]" ], "limit": [ @@ -109832,28 +110661,28 @@ export default { 38 ], "order_by": [ - 237, + 242, "[db_backups_order_by!]" ], "where": [ - 229 + 234 ] } ], "db_backups_by_pk": [ - 225, + 230, { "id": [ - 3818, + 3864, "uuid!" ] } ], "draft_game_picks": [ - 252, + 257, { "distinct_on": [ - 275, + 280, "[draft_game_picks_select_column!]" ], "limit": [ @@ -109863,19 +110692,19 @@ export default { 38 ], "order_by": [ - 273, + 278, "[draft_game_picks_order_by!]" ], "where": [ - 263 + 268 ] } ], "draft_game_picks_aggregate": [ - 253, + 258, { "distinct_on": [ - 275, + 280, "[draft_game_picks_select_column!]" ], "limit": [ @@ -109885,28 +110714,28 @@ export default { 38 ], "order_by": [ - 273, + 278, "[draft_game_picks_order_by!]" ], "where": [ - 263 + 268 ] } ], "draft_game_picks_by_pk": [ - 252, + 257, { "id": [ - 3818, + 3864, "uuid!" ] } ], "draft_game_players": [ - 297, + 302, { "distinct_on": [ - 320, + 325, "[draft_game_players_select_column!]" ], "limit": [ @@ -109916,19 +110745,19 @@ export default { 38 ], "order_by": [ - 318, + 323, "[draft_game_players_order_by!]" ], "where": [ - 308 + 313 ] } ], "draft_game_players_aggregate": [ - 298, + 303, { "distinct_on": [ - 320, + 325, "[draft_game_players_select_column!]" ], "limit": [ @@ -109938,32 +110767,32 @@ export default { 38 ], "order_by": [ - 318, + 323, "[draft_game_players_order_by!]" ], "where": [ - 308 + 313 ] } ], "draft_game_players_by_pk": [ - 297, + 302, { "draft_game_id": [ - 3818, + 3864, "uuid!" ], "steam_id": [ - 169, + 174, "bigint!" ] } ], "draft_games": [ - 342, + 347, { "distinct_on": [ - 366, + 371, "[draft_games_select_column!]" ], "limit": [ @@ -109973,19 +110802,19 @@ export default { 38 ], "order_by": [ - 364, + 369, "[draft_games_order_by!]" ], "where": [ - 353 + 358 ] } ], "draft_games_aggregate": [ - 343, + 348, { "distinct_on": [ - 366, + 371, "[draft_games_select_column!]" ], "limit": [ @@ -109995,28 +110824,28 @@ export default { 38 ], "order_by": [ - 364, + 369, "[draft_games_order_by!]" ], "where": [ - 353 + 358 ] } ], "draft_games_by_pk": [ - 342, + 347, { "id": [ - 3818, + 3864, "uuid!" ] } ], "e_check_in_settings": [ - 388, + 393, { "distinct_on": [ - 402, + 407, "[e_check_in_settings_select_column!]" ], "limit": [ @@ -110026,19 +110855,19 @@ export default { 38 ], "order_by": [ - 400, + 405, "[e_check_in_settings_order_by!]" ], "where": [ - 391 + 396 ] } ], "e_check_in_settings_aggregate": [ - 389, + 394, { "distinct_on": [ - 402, + 407, "[e_check_in_settings_select_column!]" ], "limit": [ @@ -110048,28 +110877,28 @@ export default { 38 ], "order_by": [ - 400, + 405, "[e_check_in_settings_order_by!]" ], "where": [ - 391 + 396 ] } ], "e_check_in_settings_by_pk": [ - 388, + 393, { "value": [ - 70, + 75, "String!" ] } ], "e_draft_game_captain_selection": [ - 408, + 413, { "distinct_on": [ - 423, + 428, "[e_draft_game_captain_selection_select_column!]" ], "limit": [ @@ -110079,19 +110908,19 @@ export default { 38 ], "order_by": [ - 421, + 426, "[e_draft_game_captain_selection_order_by!]" ], "where": [ - 411 + 416 ] } ], "e_draft_game_captain_selection_aggregate": [ - 409, + 414, { "distinct_on": [ - 423, + 428, "[e_draft_game_captain_selection_select_column!]" ], "limit": [ @@ -110101,28 +110930,28 @@ export default { 38 ], "order_by": [ - 421, + 426, "[e_draft_game_captain_selection_order_by!]" ], "where": [ - 411 + 416 ] } ], "e_draft_game_captain_selection_by_pk": [ - 408, + 413, { "value": [ - 70, + 75, "String!" ] } ], "e_draft_game_draft_order": [ - 429, + 434, { "distinct_on": [ - 444, + 449, "[e_draft_game_draft_order_select_column!]" ], "limit": [ @@ -110132,19 +110961,19 @@ export default { 38 ], "order_by": [ - 442, + 447, "[e_draft_game_draft_order_order_by!]" ], "where": [ - 432 + 437 ] } ], "e_draft_game_draft_order_aggregate": [ - 430, + 435, { "distinct_on": [ - 444, + 449, "[e_draft_game_draft_order_select_column!]" ], "limit": [ @@ -110154,28 +110983,28 @@ export default { 38 ], "order_by": [ - 442, + 447, "[e_draft_game_draft_order_order_by!]" ], "where": [ - 432 + 437 ] } ], "e_draft_game_draft_order_by_pk": [ - 429, + 434, { "value": [ - 70, + 75, "String!" ] } ], "e_draft_game_mode": [ - 450, + 455, { "distinct_on": [ - 465, + 470, "[e_draft_game_mode_select_column!]" ], "limit": [ @@ -110185,19 +111014,19 @@ export default { 38 ], "order_by": [ - 463, + 468, "[e_draft_game_mode_order_by!]" ], "where": [ - 453 + 458 ] } ], "e_draft_game_mode_aggregate": [ - 451, + 456, { "distinct_on": [ - 465, + 470, "[e_draft_game_mode_select_column!]" ], "limit": [ @@ -110207,28 +111036,28 @@ export default { 38 ], "order_by": [ - 463, + 468, "[e_draft_game_mode_order_by!]" ], "where": [ - 453 + 458 ] } ], "e_draft_game_mode_by_pk": [ - 450, + 455, { "value": [ - 70, + 75, "String!" ] } ], "e_draft_game_player_status": [ - 471, + 476, { "distinct_on": [ - 486, + 491, "[e_draft_game_player_status_select_column!]" ], "limit": [ @@ -110238,19 +111067,19 @@ export default { 38 ], "order_by": [ - 484, + 489, "[e_draft_game_player_status_order_by!]" ], "where": [ - 474 + 479 ] } ], "e_draft_game_player_status_aggregate": [ - 472, + 477, { "distinct_on": [ - 486, + 491, "[e_draft_game_player_status_select_column!]" ], "limit": [ @@ -110260,28 +111089,28 @@ export default { 38 ], "order_by": [ - 484, + 489, "[e_draft_game_player_status_order_by!]" ], "where": [ - 474 + 479 ] } ], "e_draft_game_player_status_by_pk": [ - 471, + 476, { "value": [ - 70, + 75, "String!" ] } ], "e_draft_game_status": [ - 492, + 497, { "distinct_on": [ - 507, + 512, "[e_draft_game_status_select_column!]" ], "limit": [ @@ -110291,19 +111120,19 @@ export default { 38 ], "order_by": [ - 505, + 510, "[e_draft_game_status_order_by!]" ], "where": [ - 495 + 500 ] } ], "e_draft_game_status_aggregate": [ - 493, + 498, { "distinct_on": [ - 507, + 512, "[e_draft_game_status_select_column!]" ], "limit": [ @@ -110313,28 +111142,28 @@ export default { 38 ], "order_by": [ - 505, + 510, "[e_draft_game_status_order_by!]" ], "where": [ - 495 + 500 ] } ], "e_draft_game_status_by_pk": [ - 492, + 497, { "value": [ - 70, + 75, "String!" ] } ], "e_friend_status": [ - 513, + 518, { "distinct_on": [ - 528, + 533, "[e_friend_status_select_column!]" ], "limit": [ @@ -110344,19 +111173,19 @@ export default { 38 ], "order_by": [ - 526, + 531, "[e_friend_status_order_by!]" ], "where": [ - 516 + 521 ] } ], "e_friend_status_aggregate": [ - 514, + 519, { "distinct_on": [ - 528, + 533, "[e_friend_status_select_column!]" ], "limit": [ @@ -110366,28 +111195,28 @@ export default { 38 ], "order_by": [ - 526, + 531, "[e_friend_status_order_by!]" ], "where": [ - 516 + 521 ] } ], "e_friend_status_by_pk": [ - 513, + 518, { "value": [ - 70, + 75, "String!" ] } ], "e_game_cfg_types": [ - 534, + 539, { "distinct_on": [ - 548, + 553, "[e_game_cfg_types_select_column!]" ], "limit": [ @@ -110397,19 +111226,19 @@ export default { 38 ], "order_by": [ - 546, + 551, "[e_game_cfg_types_order_by!]" ], "where": [ - 537 + 542 ] } ], "e_game_cfg_types_aggregate": [ - 535, + 540, { "distinct_on": [ - 548, + 553, "[e_game_cfg_types_select_column!]" ], "limit": [ @@ -110419,28 +111248,28 @@ export default { 38 ], "order_by": [ - 546, + 551, "[e_game_cfg_types_order_by!]" ], "where": [ - 537 + 542 ] } ], "e_game_cfg_types_by_pk": [ - 534, + 539, { "value": [ - 70, + 75, "String!" ] } ], "e_game_server_node_statuses": [ - 554, + 559, { "distinct_on": [ - 569, + 574, "[e_game_server_node_statuses_select_column!]" ], "limit": [ @@ -110450,19 +111279,19 @@ export default { 38 ], "order_by": [ - 567, + 572, "[e_game_server_node_statuses_order_by!]" ], "where": [ - 557 + 562 ] } ], "e_game_server_node_statuses_aggregate": [ - 555, + 560, { "distinct_on": [ - 569, + 574, "[e_game_server_node_statuses_select_column!]" ], "limit": [ @@ -110472,28 +111301,28 @@ export default { 38 ], "order_by": [ - 567, + 572, "[e_game_server_node_statuses_order_by!]" ], "where": [ - 557 + 562 ] } ], "e_game_server_node_statuses_by_pk": [ - 554, + 559, { "value": [ - 70, + 75, "String!" ] } ], "e_lobby_access": [ - 575, + 580, { "distinct_on": [ - 590, + 595, "[e_lobby_access_select_column!]" ], "limit": [ @@ -110503,19 +111332,19 @@ export default { 38 ], "order_by": [ - 588, + 593, "[e_lobby_access_order_by!]" ], "where": [ - 578 + 583 ] } ], "e_lobby_access_aggregate": [ - 576, + 581, { "distinct_on": [ - 590, + 595, "[e_lobby_access_select_column!]" ], "limit": [ @@ -110525,28 +111354,28 @@ export default { 38 ], "order_by": [ - 588, + 593, "[e_lobby_access_order_by!]" ], "where": [ - 578 + 583 ] } ], "e_lobby_access_by_pk": [ - 575, + 580, { "value": [ - 70, + 75, "String!" ] } ], "e_lobby_player_status": [ - 596, + 601, { "distinct_on": [ - 610, + 615, "[e_lobby_player_status_select_column!]" ], "limit": [ @@ -110556,19 +111385,19 @@ export default { 38 ], "order_by": [ - 608, + 613, "[e_lobby_player_status_order_by!]" ], "where": [ - 599 + 604 ] } ], "e_lobby_player_status_aggregate": [ - 597, + 602, { "distinct_on": [ - 610, + 615, "[e_lobby_player_status_select_column!]" ], "limit": [ @@ -110578,28 +111407,28 @@ export default { 38 ], "order_by": [ - 608, + 613, "[e_lobby_player_status_order_by!]" ], "where": [ - 599 + 604 ] } ], "e_lobby_player_status_by_pk": [ - 596, + 601, { "value": [ - 70, + 75, "String!" ] } ], "e_map_pool_types": [ - 616, + 621, { "distinct_on": [ - 631, + 636, "[e_map_pool_types_select_column!]" ], "limit": [ @@ -110609,19 +111438,19 @@ export default { 38 ], "order_by": [ - 629, + 634, "[e_map_pool_types_order_by!]" ], "where": [ - 619 + 624 ] } ], "e_map_pool_types_aggregate": [ - 617, + 622, { "distinct_on": [ - 631, + 636, "[e_map_pool_types_select_column!]" ], "limit": [ @@ -110631,28 +111460,28 @@ export default { 38 ], "order_by": [ - 629, + 634, "[e_map_pool_types_order_by!]" ], "where": [ - 619 + 624 ] } ], "e_map_pool_types_by_pk": [ - 616, + 621, { "value": [ - 70, + 75, "String!" ] } ], "e_match_clip_visibility": [ - 637, + 642, { "distinct_on": [ - 651, + 656, "[e_match_clip_visibility_select_column!]" ], "limit": [ @@ -110662,19 +111491,19 @@ export default { 38 ], "order_by": [ - 649, + 654, "[e_match_clip_visibility_order_by!]" ], "where": [ - 640 + 645 ] } ], "e_match_clip_visibility_aggregate": [ - 638, + 643, { "distinct_on": [ - 651, + 656, "[e_match_clip_visibility_select_column!]" ], "limit": [ @@ -110684,28 +111513,28 @@ export default { 38 ], "order_by": [ - 649, + 654, "[e_match_clip_visibility_order_by!]" ], "where": [ - 640 + 645 ] } ], "e_match_clip_visibility_by_pk": [ - 637, + 642, { "value": [ - 70, + 75, "String!" ] } ], "e_match_map_status": [ - 657, + 662, { "distinct_on": [ - 672, + 677, "[e_match_map_status_select_column!]" ], "limit": [ @@ -110715,19 +111544,19 @@ export default { 38 ], "order_by": [ - 670, + 675, "[e_match_map_status_order_by!]" ], "where": [ - 660 + 665 ] } ], "e_match_map_status_aggregate": [ - 658, + 663, { "distinct_on": [ - 672, + 677, "[e_match_map_status_select_column!]" ], "limit": [ @@ -110737,28 +111566,28 @@ export default { 38 ], "order_by": [ - 670, + 675, "[e_match_map_status_order_by!]" ], "where": [ - 660 + 665 ] } ], "e_match_map_status_by_pk": [ - 657, + 662, { "value": [ - 70, + 75, "String!" ] } ], "e_match_mode": [ - 678, + 683, { "distinct_on": [ - 692, + 697, "[e_match_mode_select_column!]" ], "limit": [ @@ -110768,19 +111597,19 @@ export default { 38 ], "order_by": [ - 690, + 695, "[e_match_mode_order_by!]" ], "where": [ - 681 + 686 ] } ], "e_match_mode_aggregate": [ - 679, + 684, { "distinct_on": [ - 692, + 697, "[e_match_mode_select_column!]" ], "limit": [ @@ -110790,28 +111619,28 @@ export default { 38 ], "order_by": [ - 690, + 695, "[e_match_mode_order_by!]" ], "where": [ - 681 + 686 ] } ], "e_match_mode_by_pk": [ - 678, + 683, { "value": [ - 70, + 75, "String!" ] } ], "e_match_status": [ - 698, + 703, { "distinct_on": [ - 713, + 718, "[e_match_status_select_column!]" ], "limit": [ @@ -110821,19 +111650,19 @@ export default { 38 ], "order_by": [ - 711, + 716, "[e_match_status_order_by!]" ], "where": [ - 701 + 706 ] } ], "e_match_status_aggregate": [ - 699, + 704, { "distinct_on": [ - 713, + 718, "[e_match_status_select_column!]" ], "limit": [ @@ -110843,28 +111672,28 @@ export default { 38 ], "order_by": [ - 711, + 716, "[e_match_status_order_by!]" ], "where": [ - 701 + 706 ] } ], "e_match_status_by_pk": [ - 698, + 703, { "value": [ - 70, + 75, "String!" ] } ], "e_match_types": [ - 719, + 724, { "distinct_on": [ - 734, + 739, "[e_match_types_select_column!]" ], "limit": [ @@ -110874,19 +111703,19 @@ export default { 38 ], "order_by": [ - 732, + 737, "[e_match_types_order_by!]" ], "where": [ - 722 + 727 ] } ], "e_match_types_aggregate": [ - 720, + 725, { "distinct_on": [ - 734, + 739, "[e_match_types_select_column!]" ], "limit": [ @@ -110896,28 +111725,28 @@ export default { 38 ], "order_by": [ - 732, + 737, "[e_match_types_order_by!]" ], "where": [ - 722 + 727 ] } ], "e_match_types_by_pk": [ - 719, + 724, { "value": [ - 70, + 75, "String!" ] } ], "e_notification_types": [ - 740, + 745, { "distinct_on": [ - 754, + 759, "[e_notification_types_select_column!]" ], "limit": [ @@ -110927,19 +111756,19 @@ export default { 38 ], "order_by": [ - 752, + 757, "[e_notification_types_order_by!]" ], "where": [ - 743 + 748 ] } ], "e_notification_types_aggregate": [ - 741, + 746, { "distinct_on": [ - 754, + 759, "[e_notification_types_select_column!]" ], "limit": [ @@ -110949,28 +111778,28 @@ export default { 38 ], "order_by": [ - 752, + 757, "[e_notification_types_order_by!]" ], "where": [ - 743 + 748 ] } ], "e_notification_types_by_pk": [ - 740, + 745, { "value": [ - 70, + 75, "String!" ] } ], "e_objective_types": [ - 760, + 765, { "distinct_on": [ - 774, + 779, "[e_objective_types_select_column!]" ], "limit": [ @@ -110980,19 +111809,19 @@ export default { 38 ], "order_by": [ - 772, + 777, "[e_objective_types_order_by!]" ], "where": [ - 763 + 768 ] } ], "e_objective_types_aggregate": [ - 761, + 766, { "distinct_on": [ - 774, + 779, "[e_objective_types_select_column!]" ], "limit": [ @@ -111002,28 +111831,28 @@ export default { 38 ], "order_by": [ - 772, + 777, "[e_objective_types_order_by!]" ], "where": [ - 763 + 768 ] } ], "e_objective_types_by_pk": [ - 760, + 765, { "value": [ - 70, + 75, "String!" ] } ], "e_player_roles": [ - 780, + 785, { "distinct_on": [ - 794, + 799, "[e_player_roles_select_column!]" ], "limit": [ @@ -111033,19 +111862,19 @@ export default { 38 ], "order_by": [ - 792, + 797, "[e_player_roles_order_by!]" ], "where": [ - 783 + 788 ] } ], "e_player_roles_aggregate": [ - 781, + 786, { "distinct_on": [ - 794, + 799, "[e_player_roles_select_column!]" ], "limit": [ @@ -111055,28 +111884,28 @@ export default { 38 ], "order_by": [ - 792, + 797, "[e_player_roles_order_by!]" ], "where": [ - 783 + 788 ] } ], "e_player_roles_by_pk": [ - 780, + 785, { "value": [ - 70, + 75, "String!" ] } ], "e_ready_settings": [ - 800, + 805, { "distinct_on": [ - 814, + 819, "[e_ready_settings_select_column!]" ], "limit": [ @@ -111086,19 +111915,19 @@ export default { 38 ], "order_by": [ - 812, + 817, "[e_ready_settings_order_by!]" ], "where": [ - 803 + 808 ] } ], "e_ready_settings_aggregate": [ - 801, + 806, { "distinct_on": [ - 814, + 819, "[e_ready_settings_select_column!]" ], "limit": [ @@ -111108,28 +111937,28 @@ export default { 38 ], "order_by": [ - 812, + 817, "[e_ready_settings_order_by!]" ], "where": [ - 803 + 808 ] } ], "e_ready_settings_by_pk": [ - 800, + 805, { "value": [ - 70, + 75, "String!" ] } ], "e_sanction_types": [ - 820, + 825, { "distinct_on": [ - 835, + 840, "[e_sanction_types_select_column!]" ], "limit": [ @@ -111139,19 +111968,19 @@ export default { 38 ], "order_by": [ - 833, + 838, "[e_sanction_types_order_by!]" ], "where": [ - 823 + 828 ] } ], "e_sanction_types_aggregate": [ - 821, + 826, { "distinct_on": [ - 835, + 840, "[e_sanction_types_select_column!]" ], "limit": [ @@ -111161,28 +111990,28 @@ export default { 38 ], "order_by": [ - 833, + 838, "[e_sanction_types_order_by!]" ], "where": [ - 823 + 828 ] } ], "e_sanction_types_by_pk": [ - 820, + 825, { "value": [ - 70, + 75, "String!" ] } ], "e_scrim_request_statuses": [ - 841, + 846, { "distinct_on": [ - 855, + 860, "[e_scrim_request_statuses_select_column!]" ], "limit": [ @@ -111192,19 +112021,19 @@ export default { 38 ], "order_by": [ - 853, + 858, "[e_scrim_request_statuses_order_by!]" ], "where": [ - 844 + 849 ] } ], "e_scrim_request_statuses_aggregate": [ - 842, + 847, { "distinct_on": [ - 855, + 860, "[e_scrim_request_statuses_select_column!]" ], "limit": [ @@ -111214,28 +112043,28 @@ export default { 38 ], "order_by": [ - 853, + 858, "[e_scrim_request_statuses_order_by!]" ], "where": [ - 844 + 849 ] } ], "e_scrim_request_statuses_by_pk": [ - 841, + 846, { "value": [ - 70, + 75, "String!" ] } ], "e_server_types": [ - 861, + 866, { "distinct_on": [ - 875, + 880, "[e_server_types_select_column!]" ], "limit": [ @@ -111245,19 +112074,19 @@ export default { 38 ], "order_by": [ - 873, + 878, "[e_server_types_order_by!]" ], "where": [ - 864 + 869 ] } ], "e_server_types_aggregate": [ - 862, + 867, { "distinct_on": [ - 875, + 880, "[e_server_types_select_column!]" ], "limit": [ @@ -111267,28 +112096,28 @@ export default { 38 ], "order_by": [ - 873, + 878, "[e_server_types_order_by!]" ], "where": [ - 864 + 869 ] } ], "e_server_types_by_pk": [ - 861, + 866, { "value": [ - 70, + 75, "String!" ] } ], "e_sides": [ - 881, + 886, { "distinct_on": [ - 895, + 900, "[e_sides_select_column!]" ], "limit": [ @@ -111298,19 +112127,19 @@ export default { 38 ], "order_by": [ - 893, + 898, "[e_sides_order_by!]" ], "where": [ - 884 + 889 ] } ], "e_sides_aggregate": [ - 882, + 887, { "distinct_on": [ - 895, + 900, "[e_sides_select_column!]" ], "limit": [ @@ -111320,28 +112149,28 @@ export default { 38 ], "order_by": [ - 893, + 898, "[e_sides_order_by!]" ], "where": [ - 884 + 889 ] } ], "e_sides_by_pk": [ - 881, + 886, { "value": [ - 70, + 75, "String!" ] } ], "e_system_alert_types": [ - 901, + 906, { "distinct_on": [ - 915, + 920, "[e_system_alert_types_select_column!]" ], "limit": [ @@ -111351,19 +112180,19 @@ export default { 38 ], "order_by": [ - 913, + 918, "[e_system_alert_types_order_by!]" ], "where": [ - 904 + 909 ] } ], "e_system_alert_types_aggregate": [ - 902, + 907, { "distinct_on": [ - 915, + 920, "[e_system_alert_types_select_column!]" ], "limit": [ @@ -111373,28 +112202,28 @@ export default { 38 ], "order_by": [ - 913, + 918, "[e_system_alert_types_order_by!]" ], "where": [ - 904 + 909 ] } ], "e_system_alert_types_by_pk": [ - 901, + 906, { "value": [ - 70, + 75, "String!" ] } ], "e_team_roles": [ - 921, + 926, { "distinct_on": [ - 936, + 941, "[e_team_roles_select_column!]" ], "limit": [ @@ -111404,19 +112233,19 @@ export default { 38 ], "order_by": [ - 934, + 939, "[e_team_roles_order_by!]" ], "where": [ - 924 + 929 ] } ], "e_team_roles_aggregate": [ - 922, + 927, { "distinct_on": [ - 936, + 941, "[e_team_roles_select_column!]" ], "limit": [ @@ -111426,28 +112255,28 @@ export default { 38 ], "order_by": [ - 934, + 939, "[e_team_roles_order_by!]" ], "where": [ - 924 + 929 ] } ], "e_team_roles_by_pk": [ - 921, + 926, { "value": [ - 70, + 75, "String!" ] } ], "e_team_roster_statuses": [ - 942, + 947, { "distinct_on": [ - 956, + 961, "[e_team_roster_statuses_select_column!]" ], "limit": [ @@ -111457,19 +112286,19 @@ export default { 38 ], "order_by": [ - 954, + 959, "[e_team_roster_statuses_order_by!]" ], "where": [ - 945 + 950 ] } ], "e_team_roster_statuses_aggregate": [ - 943, + 948, { "distinct_on": [ - 956, + 961, "[e_team_roster_statuses_select_column!]" ], "limit": [ @@ -111479,28 +112308,28 @@ export default { 38 ], "order_by": [ - 954, + 959, "[e_team_roster_statuses_order_by!]" ], "where": [ - 945 + 950 ] } ], "e_team_roster_statuses_by_pk": [ - 942, + 947, { "value": [ - 70, + 75, "String!" ] } ], "e_timeout_settings": [ - 962, + 967, { "distinct_on": [ - 976, + 981, "[e_timeout_settings_select_column!]" ], "limit": [ @@ -111510,19 +112339,19 @@ export default { 38 ], "order_by": [ - 974, + 979, "[e_timeout_settings_order_by!]" ], "where": [ - 965 + 970 ] } ], "e_timeout_settings_aggregate": [ - 963, + 968, { "distinct_on": [ - 976, + 981, "[e_timeout_settings_select_column!]" ], "limit": [ @@ -111532,28 +112361,28 @@ export default { 38 ], "order_by": [ - 974, + 979, "[e_timeout_settings_order_by!]" ], "where": [ - 965 + 970 ] } ], "e_timeout_settings_by_pk": [ - 962, + 967, { "value": [ - 70, + 75, "String!" ] } ], "e_tournament_stage_types": [ - 982, + 987, { "distinct_on": [ - 997, + 1002, "[e_tournament_stage_types_select_column!]" ], "limit": [ @@ -111563,19 +112392,19 @@ export default { 38 ], "order_by": [ - 995, + 1000, "[e_tournament_stage_types_order_by!]" ], "where": [ - 985 + 990 ] } ], "e_tournament_stage_types_aggregate": [ - 983, + 988, { "distinct_on": [ - 997, + 1002, "[e_tournament_stage_types_select_column!]" ], "limit": [ @@ -111585,28 +112414,28 @@ export default { 38 ], "order_by": [ - 995, + 1000, "[e_tournament_stage_types_order_by!]" ], "where": [ - 985 + 990 ] } ], "e_tournament_stage_types_by_pk": [ - 982, + 987, { "value": [ - 70, + 75, "String!" ] } ], "e_tournament_status": [ - 1003, + 1008, { "distinct_on": [ - 1018, + 1023, "[e_tournament_status_select_column!]" ], "limit": [ @@ -111616,19 +112445,19 @@ export default { 38 ], "order_by": [ - 1016, + 1021, "[e_tournament_status_order_by!]" ], "where": [ - 1006 + 1011 ] } ], "e_tournament_status_aggregate": [ - 1004, + 1009, { "distinct_on": [ - 1018, + 1023, "[e_tournament_status_select_column!]" ], "limit": [ @@ -111638,28 +112467,28 @@ export default { 38 ], "order_by": [ - 1016, + 1021, "[e_tournament_status_order_by!]" ], "where": [ - 1006 + 1011 ] } ], "e_tournament_status_by_pk": [ - 1003, + 1008, { "value": [ - 70, + 75, "String!" ] } ], "e_utility_types": [ - 1024, + 1029, { "distinct_on": [ - 1038, + 1043, "[e_utility_types_select_column!]" ], "limit": [ @@ -111669,19 +112498,19 @@ export default { 38 ], "order_by": [ - 1036, + 1041, "[e_utility_types_order_by!]" ], "where": [ - 1027 + 1032 ] } ], "e_utility_types_aggregate": [ - 1025, + 1030, { "distinct_on": [ - 1038, + 1043, "[e_utility_types_select_column!]" ], "limit": [ @@ -111691,28 +112520,28 @@ export default { 38 ], "order_by": [ - 1036, + 1041, "[e_utility_types_order_by!]" ], "where": [ - 1027 + 1032 ] } ], "e_utility_types_by_pk": [ - 1024, + 1029, { "value": [ - 70, + 75, "String!" ] } ], "e_veto_pick_types": [ - 1044, + 1049, { "distinct_on": [ - 1058, + 1063, "[e_veto_pick_types_select_column!]" ], "limit": [ @@ -111722,19 +112551,19 @@ export default { 38 ], "order_by": [ - 1056, + 1061, "[e_veto_pick_types_order_by!]" ], "where": [ - 1047 + 1052 ] } ], "e_veto_pick_types_aggregate": [ - 1045, + 1050, { "distinct_on": [ - 1058, + 1063, "[e_veto_pick_types_select_column!]" ], "limit": [ @@ -111744,28 +112573,28 @@ export default { 38 ], "order_by": [ - 1056, + 1061, "[e_veto_pick_types_order_by!]" ], "where": [ - 1047 + 1052 ] } ], "e_veto_pick_types_by_pk": [ - 1044, + 1049, { "value": [ - 70, + 75, "String!" ] } ], "e_winning_reasons": [ - 1064, + 1069, { "distinct_on": [ - 1078, + 1083, "[e_winning_reasons_select_column!]" ], "limit": [ @@ -111775,19 +112604,19 @@ export default { 38 ], "order_by": [ - 1076, + 1081, "[e_winning_reasons_order_by!]" ], "where": [ - 1067 + 1072 ] } ], "e_winning_reasons_aggregate": [ - 1065, + 1070, { "distinct_on": [ - 1078, + 1083, "[e_winning_reasons_select_column!]" ], "limit": [ @@ -111797,28 +112626,28 @@ export default { 38 ], "order_by": [ - 1076, + 1081, "[e_winning_reasons_order_by!]" ], "where": [ - 1067 + 1072 ] } ], "e_winning_reasons_by_pk": [ - 1064, + 1069, { "value": [ - 70, + 75, "String!" ] } ], "friends": [ - 1086, + 1091, { "distinct_on": [ - 1100, + 1105, "[friends_select_column!]" ], "limit": [ @@ -111828,19 +112657,19 @@ export default { 38 ], "order_by": [ - 1098, + 1103, "[friends_order_by!]" ], "where": [ - 1090 + 1095 ] } ], "friends_aggregate": [ - 1087, + 1092, { "distinct_on": [ - 1100, + 1105, "[friends_select_column!]" ], "limit": [ @@ -111850,32 +112679,32 @@ export default { 38 ], "order_by": [ - 1098, + 1103, "[friends_order_by!]" ], "where": [ - 1090 + 1095 ] } ], "friends_by_pk": [ - 1086, + 1091, { "other_player_steam_id": [ - 169, + 174, "bigint!" ], "player_steam_id": [ - 169, + 174, "bigint!" ] } ], "game_server_nodes": [ - 1113, + 1118, { "distinct_on": [ - 1142, + 1147, "[game_server_nodes_select_column!]" ], "limit": [ @@ -111885,19 +112714,19 @@ export default { 38 ], "order_by": [ - 1139, + 1144, "[game_server_nodes_order_by!]" ], "where": [ - 1125 + 1130 ] } ], "game_server_nodes_aggregate": [ - 1114, + 1119, { "distinct_on": [ - 1142, + 1147, "[game_server_nodes_select_column!]" ], "limit": [ @@ -111907,28 +112736,28 @@ export default { 38 ], "order_by": [ - 1139, + 1144, "[game_server_nodes_order_by!]" ], "where": [ - 1125 + 1130 ] } ], "game_server_nodes_by_pk": [ - 1113, + 1118, { "id": [ - 70, + 75, "String!" ] } ], "game_versions": [ - 1164, + 1169, { "distinct_on": [ - 1184, + 1189, "[game_versions_select_column!]" ], "limit": [ @@ -111938,19 +112767,19 @@ export default { 38 ], "order_by": [ - 1181, + 1186, "[game_versions_order_by!]" ], "where": [ - 1169 + 1174 ] } ], "game_versions_aggregate": [ - 1165, + 1170, { "distinct_on": [ - 1184, + 1189, "[game_versions_select_column!]" ], "limit": [ @@ -111960,16 +112789,16 @@ export default { 38 ], "order_by": [ - 1181, + 1186, "[game_versions_order_by!]" ], "where": [ - 1169 + 1174 ] } ], "game_versions_by_pk": [ - 1164, + 1169, { "build_id": [ 38, @@ -111978,10 +112807,10 @@ export default { } ], "gamedata_signature_validations": [ - 1197, + 1202, { "distinct_on": [ - 1216, + 1221, "[gamedata_signature_validations_select_column!]" ], "limit": [ @@ -111991,19 +112820,19 @@ export default { 38 ], "order_by": [ - 1213, + 1218, "[gamedata_signature_validations_order_by!]" ], "where": [ - 1202 + 1207 ] } ], "gamedata_signature_validations_aggregate": [ - 1198, + 1203, { "distinct_on": [ - 1216, + 1221, "[gamedata_signature_validations_select_column!]" ], "limit": [ @@ -112013,19 +112842,19 @@ export default { 38 ], "order_by": [ - 1213, + 1218, "[gamedata_signature_validations_order_by!]" ], "where": [ - 1202 + 1207 ] } ], "gamedata_signature_validations_by_pk": [ - 1197, + 1202, { "id": [ - 3818, + 3864, "uuid!" ] } @@ -112052,7 +112881,7 @@ export default { 64, { "serverId": [ - 70, + 75, "String!" ] } @@ -112061,11 +112890,11 @@ export default { 34, { "match_map_id": [ - 3818, + 3864, "uuid!" ], "target_steam_id": [ - 70, + 75, "String!" ] } @@ -112074,7 +112903,7 @@ export default { 36, { "schemas": [ - 70, + 75, "[String!]" ] } @@ -112083,7 +112912,7 @@ export default { 37, { "schemas": [ - 70, + 75, "[String!]" ] } @@ -112092,7 +112921,7 @@ export default { 50, { "node": [ - 70, + 75, "String!" ] } @@ -112101,7 +112930,7 @@ export default { 56, { "queryid": [ - 70, + 75, "String!" ] } @@ -112110,50 +112939,50 @@ export default { 57 ], "getSchemas": [ - 70 + 75 ], "getServiceStats": [ 54 ], "getStorageStats": [ - 68, + 73, { "schemas": [ - 70, + 75, "[String!]" ] } ], "getTableIOStats": [ - 74, + 79, { "schemas": [ - 70, + 75, "[String!]" ] } ], "getTableStats": [ - 76, + 81, { "schemas": [ - 70, + 75, "[String!]" ] } ], "getTimescaleStats": [ - 80 + 85 ], "get_leaderboard": [ - 1238, + 1243, { "args": [ - 1229, + 1234, "get_leaderboard_args!" ], "distinct_on": [ - 1249, + 1254, "[leaderboard_entries_select_column!]" ], "limit": [ @@ -112163,23 +112992,23 @@ export default { 38 ], "order_by": [ - 1248, + 1253, "[leaderboard_entries_order_by!]" ], "where": [ - 1242 + 1247 ] } ], "get_leaderboard_aggregate": [ - 1239, + 1244, { "args": [ - 1229, + 1234, "get_leaderboard_args!" ], "distinct_on": [ - 1249, + 1254, "[leaderboard_entries_select_column!]" ], "limit": [ @@ -112189,23 +113018,23 @@ export default { 38 ], "order_by": [ - 1248, + 1253, "[leaderboard_entries_order_by!]" ], "where": [ - 1242 + 1247 ] } ], "get_player_leaderboard_rank": [ - 2452, + 2457, { "args": [ - 1230, + 1235, "get_player_leaderboard_rank_args!" ], "distinct_on": [ - 2463, + 2468, "[player_leaderboard_rank_select_column!]" ], "limit": [ @@ -112215,23 +113044,23 @@ export default { 38 ], "order_by": [ - 2462, + 2467, "[player_leaderboard_rank_order_by!]" ], "where": [ - 2456 + 2461 ] } ], "get_player_leaderboard_rank_aggregate": [ - 2453, + 2458, { "args": [ - 1230, + 1235, "get_player_leaderboard_rank_args!" ], "distinct_on": [ - 2463, + 2468, "[player_leaderboard_rank_select_column!]" ], "limit": [ @@ -112241,19 +113070,19 @@ export default { 38 ], "order_by": [ - 2462, + 2467, "[player_leaderboard_rank_order_by!]" ], "where": [ - 2456 + 2461 ] } ], "leaderboard_entries": [ - 1238, + 1243, { "distinct_on": [ - 1249, + 1254, "[leaderboard_entries_select_column!]" ], "limit": [ @@ -112263,19 +113092,19 @@ export default { 38 ], "order_by": [ - 1248, + 1253, "[leaderboard_entries_order_by!]" ], "where": [ - 1242 + 1247 ] } ], "leaderboard_entries_aggregate": [ - 1239, + 1244, { "distinct_on": [ - 1249, + 1254, "[leaderboard_entries_select_column!]" ], "limit": [ @@ -112285,11 +113114,11 @@ export default { 38 ], "order_by": [ - 1248, + 1253, "[leaderboard_entries_order_by!]" ], "where": [ - 1242 + 1247 ] } ], @@ -112297,22 +113126,22 @@ export default { 28, { "node_id": [ - 70, + 75, "String!" ], "path": [ - 70 + 75 ], "server_id": [ - 70 + 75 ] } ], "lobbies": [ - 1261, + 1266, { "distinct_on": [ - 1274, + 1279, "[lobbies_select_column!]" ], "limit": [ @@ -112322,19 +113151,19 @@ export default { 38 ], "order_by": [ - 1272, + 1277, "[lobbies_order_by!]" ], "where": [ - 1264 + 1269 ] } ], "lobbies_aggregate": [ - 1262, + 1267, { "distinct_on": [ - 1274, + 1279, "[lobbies_select_column!]" ], "limit": [ @@ -112344,28 +113173,28 @@ export default { 38 ], "order_by": [ - 1272, + 1277, "[lobbies_order_by!]" ], "where": [ - 1264 + 1269 ] } ], "lobbies_by_pk": [ - 1261, + 1266, { "id": [ - 3818, + 3864, "uuid!" ] } ], "lobby_players": [ - 1280, + 1285, { "distinct_on": [ - 1303, + 1308, "[lobby_players_select_column!]" ], "limit": [ @@ -112375,19 +113204,19 @@ export default { 38 ], "order_by": [ - 1301, + 1306, "[lobby_players_order_by!]" ], "where": [ - 1291 + 1296 ] } ], "lobby_players_aggregate": [ - 1281, + 1286, { "distinct_on": [ - 1303, + 1308, "[lobby_players_select_column!]" ], "limit": [ @@ -112397,32 +113226,32 @@ export default { 38 ], "order_by": [ - 1301, + 1306, "[lobby_players_order_by!]" ], "where": [ - 1291 + 1296 ] } ], "lobby_players_by_pk": [ - 1280, + 1285, { "lobby_id": [ - 3818, + 3864, "uuid!" ], "steam_id": [ - 169, + 174, "bigint!" ] } ], "map_pools": [ - 1325, + 1330, { "distinct_on": [ - 1338, + 1343, "[map_pools_select_column!]" ], "limit": [ @@ -112432,19 +113261,19 @@ export default { 38 ], "order_by": [ - 1336, + 1341, "[map_pools_order_by!]" ], "where": [ - 1328 + 1333 ] } ], "map_pools_aggregate": [ - 1326, + 1331, { "distinct_on": [ - 1338, + 1343, "[map_pools_select_column!]" ], "limit": [ @@ -112454,28 +113283,28 @@ export default { 38 ], "order_by": [ - 1336, + 1341, "[map_pools_order_by!]" ], "where": [ - 1328 + 1333 ] } ], "map_pools_by_pk": [ - 1325, + 1330, { "id": [ - 3818, + 3864, "uuid!" ] } ], "maps": [ - 1344, + 1349, { "distinct_on": [ - 1365, + 1370, "[maps_select_column!]" ], "limit": [ @@ -112485,19 +113314,19 @@ export default { 38 ], "order_by": [ - 1363, + 1368, "[maps_order_by!]" ], "where": [ - 1353 + 1358 ] } ], "maps_aggregate": [ - 1345, + 1350, { "distinct_on": [ - 1365, + 1370, "[maps_select_column!]" ], "limit": [ @@ -112507,28 +113336,28 @@ export default { 38 ], "order_by": [ - 1363, + 1368, "[maps_order_by!]" ], "where": [ - 1353 + 1358 ] } ], "maps_by_pk": [ - 1344, + 1349, { "id": [ - 3818, + 3864, "uuid!" ] } ], "match_clips": [ - 1373, + 1378, { "distinct_on": [ - 1395, + 1400, "[match_clips_select_column!]" ], "limit": [ @@ -112538,19 +113367,19 @@ export default { 38 ], "order_by": [ - 1393, + 1398, "[match_clips_order_by!]" ], "where": [ - 1382 + 1387 ] } ], "match_clips_aggregate": [ - 1374, + 1379, { "distinct_on": [ - 1395, + 1400, "[match_clips_select_column!]" ], "limit": [ @@ -112560,28 +113389,28 @@ export default { 38 ], "order_by": [ - 1393, + 1398, "[match_clips_order_by!]" ], "where": [ - 1382 + 1387 ] } ], "match_clips_by_pk": [ - 1373, + 1378, { "id": [ - 3818, + 3864, "uuid!" ] } ], "match_demo_sessions": [ - 1415, + 1420, { "distinct_on": [ - 1441, + 1446, "[match_demo_sessions_select_column!]" ], "limit": [ @@ -112591,19 +113420,19 @@ export default { 38 ], "order_by": [ - 1438, + 1443, "[match_demo_sessions_order_by!]" ], "where": [ - 1425 + 1430 ] } ], "match_demo_sessions_aggregate": [ - 1416, + 1421, { "distinct_on": [ - 1441, + 1446, "[match_demo_sessions_select_column!]" ], "limit": [ @@ -112613,28 +113442,28 @@ export default { 38 ], "order_by": [ - 1438, + 1443, "[match_demo_sessions_order_by!]" ], "where": [ - 1425 + 1430 ] } ], "match_demo_sessions_by_pk": [ - 1415, + 1420, { "id": [ - 3818, + 3864, "uuid!" ] } ], "match_lineup_players": [ - 1461, + 1466, { "distinct_on": [ - 1484, + 1489, "[match_lineup_players_select_column!]" ], "limit": [ @@ -112644,19 +113473,19 @@ export default { 38 ], "order_by": [ - 1482, + 1487, "[match_lineup_players_order_by!]" ], "where": [ - 1472 + 1477 ] } ], "match_lineup_players_aggregate": [ - 1462, + 1467, { "distinct_on": [ - 1484, + 1489, "[match_lineup_players_select_column!]" ], "limit": [ @@ -112666,28 +113495,28 @@ export default { 38 ], "order_by": [ - 1482, + 1487, "[match_lineup_players_order_by!]" ], "where": [ - 1472 + 1477 ] } ], "match_lineup_players_by_pk": [ - 1461, + 1466, { "id": [ - 3818, + 3864, "uuid!" ] } ], "match_lineups": [ - 1506, + 1511, { "distinct_on": [ - 1528, + 1533, "[match_lineups_select_column!]" ], "limit": [ @@ -112697,19 +113526,19 @@ export default { 38 ], "order_by": [ - 1526, + 1531, "[match_lineups_order_by!]" ], "where": [ - 1515 + 1520 ] } ], "match_lineups_aggregate": [ - 1507, + 1512, { "distinct_on": [ - 1528, + 1533, "[match_lineups_select_column!]" ], "limit": [ @@ -112719,28 +113548,28 @@ export default { 38 ], "order_by": [ - 1526, + 1531, "[match_lineups_order_by!]" ], "where": [ - 1515 + 1520 ] } ], "match_lineups_by_pk": [ - 1506, + 1511, { "id": [ - 3818, + 3864, "uuid!" ] } ], "match_map_demos": [ - 1548, + 1553, { "distinct_on": [ - 1577, + 1582, "[match_map_demos_select_column!]" ], "limit": [ @@ -112750,19 +113579,19 @@ export default { 38 ], "order_by": [ - 1574, + 1579, "[match_map_demos_order_by!]" ], "where": [ - 1560 + 1565 ] } ], "match_map_demos_aggregate": [ - 1549, + 1554, { "distinct_on": [ - 1577, + 1582, "[match_map_demos_select_column!]" ], "limit": [ @@ -112772,28 +113601,28 @@ export default { 38 ], "order_by": [ - 1574, + 1579, "[match_map_demos_order_by!]" ], "where": [ - 1560 + 1565 ] } ], "match_map_demos_by_pk": [ - 1548, + 1553, { "id": [ - 3818, + 3864, "uuid!" ] } ], "match_map_rounds": [ - 1599, + 1604, { "distinct_on": [ - 1620, + 1625, "[match_map_rounds_select_column!]" ], "limit": [ @@ -112803,19 +113632,19 @@ export default { 38 ], "order_by": [ - 1618, + 1623, "[match_map_rounds_order_by!]" ], "where": [ - 1608 + 1613 ] } ], "match_map_rounds_aggregate": [ - 1600, + 1605, { "distinct_on": [ - 1620, + 1625, "[match_map_rounds_select_column!]" ], "limit": [ @@ -112825,28 +113654,28 @@ export default { 38 ], "order_by": [ - 1618, + 1623, "[match_map_rounds_order_by!]" ], "where": [ - 1608 + 1613 ] } ], "match_map_rounds_by_pk": [ - 1599, + 1604, { "id": [ - 3818, + 3864, "uuid!" ] } ], "match_map_veto_picks": [ - 1640, + 1645, { "distinct_on": [ - 1658, + 1663, "[match_map_veto_picks_select_column!]" ], "limit": [ @@ -112856,19 +113685,19 @@ export default { 38 ], "order_by": [ - 1656, + 1661, "[match_map_veto_picks_order_by!]" ], "where": [ - 1647 + 1652 ] } ], "match_map_veto_picks_aggregate": [ - 1641, + 1646, { "distinct_on": [ - 1658, + 1663, "[match_map_veto_picks_select_column!]" ], "limit": [ @@ -112878,28 +113707,28 @@ export default { 38 ], "order_by": [ - 1656, + 1661, "[match_map_veto_picks_order_by!]" ], "where": [ - 1647 + 1652 ] } ], "match_map_veto_picks_by_pk": [ - 1640, + 1645, { "id": [ - 3818, + 3864, "uuid!" ] } ], "match_maps": [ - 1664, + 1669, { "distinct_on": [ - 1686, + 1691, "[match_maps_select_column!]" ], "limit": [ @@ -112909,19 +113738,19 @@ export default { 38 ], "order_by": [ - 1684, + 1689, "[match_maps_order_by!]" ], "where": [ - 1673 + 1678 ] } ], "match_maps_aggregate": [ - 1665, + 1670, { "distinct_on": [ - 1686, + 1691, "[match_maps_select_column!]" ], "limit": [ @@ -112931,28 +113760,28 @@ export default { 38 ], "order_by": [ - 1684, + 1689, "[match_maps_order_by!]" ], "where": [ - 1673 + 1678 ] } ], "match_maps_by_pk": [ - 1664, + 1669, { "id": [ - 3818, + 3864, "uuid!" ] } ], "match_options": [ - 1706, + 1711, { "distinct_on": [ - 1721, + 1726, "[match_options_select_column!]" ], "limit": [ @@ -112962,19 +113791,19 @@ export default { 38 ], "order_by": [ - 1719, + 1724, "[match_options_order_by!]" ], "where": [ - 1710 + 1715 ] } ], "match_options_aggregate": [ - 1707, + 1712, { "distinct_on": [ - 1721, + 1726, "[match_options_select_column!]" ], "limit": [ @@ -112984,28 +113813,28 @@ export default { 38 ], "order_by": [ - 1719, + 1724, "[match_options_order_by!]" ], "where": [ - 1710 + 1715 ] } ], "match_options_by_pk": [ - 1706, + 1711, { "id": [ - 3818, + 3864, "uuid!" ] } ], "match_region_veto_picks": [ - 1734, + 1739, { "distinct_on": [ - 1752, + 1757, "[match_region_veto_picks_select_column!]" ], "limit": [ @@ -113015,19 +113844,19 @@ export default { 38 ], "order_by": [ - 1750, + 1755, "[match_region_veto_picks_order_by!]" ], "where": [ - 1741 + 1746 ] } ], "match_region_veto_picks_aggregate": [ - 1735, + 1740, { "distinct_on": [ - 1752, + 1757, "[match_region_veto_picks_select_column!]" ], "limit": [ @@ -113037,28 +113866,28 @@ export default { 38 ], "order_by": [ - 1750, + 1755, "[match_region_veto_picks_order_by!]" ], "where": [ - 1741 + 1746 ] } ], "match_region_veto_picks_by_pk": [ - 1734, + 1739, { "id": [ - 3818, + 3864, "uuid!" ] } ], "match_streams": [ - 1758, + 1763, { "distinct_on": [ - 1786, + 1791, "[match_streams_select_column!]" ], "limit": [ @@ -113068,19 +113897,19 @@ export default { 38 ], "order_by": [ - 1783, + 1788, "[match_streams_order_by!]" ], "where": [ - 1770 + 1775 ] } ], "match_streams_aggregate": [ - 1759, + 1764, { "distinct_on": [ - 1786, + 1791, "[match_streams_select_column!]" ], "limit": [ @@ -113090,28 +113919,28 @@ export default { 38 ], "order_by": [ - 1783, + 1788, "[match_streams_order_by!]" ], "where": [ - 1770 + 1775 ] } ], "match_streams_by_pk": [ - 1758, + 1763, { "id": [ - 3818, + 3864, "uuid!" ] } ], "match_type_cfgs": [ - 1808, + 1813, { "distinct_on": [ - 1820, + 1825, "[match_type_cfgs_select_column!]" ], "limit": [ @@ -113121,19 +113950,19 @@ export default { 38 ], "order_by": [ - 1818, + 1823, "[match_type_cfgs_order_by!]" ], "where": [ - 1811 + 1816 ] } ], "match_type_cfgs_aggregate": [ - 1809, + 1814, { "distinct_on": [ - 1820, + 1825, "[match_type_cfgs_select_column!]" ], "limit": [ @@ -113143,28 +113972,28 @@ export default { 38 ], "order_by": [ - 1818, + 1823, "[match_type_cfgs_order_by!]" ], "where": [ - 1811 + 1816 ] } ], "match_type_cfgs_by_pk": [ - 1808, + 1813, { "type": [ - 539, + 544, "e_game_cfg_types_enum!" ] } ], "matches": [ - 1826, + 1831, { "distinct_on": [ - 1848, + 1853, "[matches_select_column!]" ], "limit": [ @@ -113174,19 +114003,19 @@ export default { 38 ], "order_by": [ - 1846, + 1851, "[matches_order_by!]" ], "where": [ - 1835 + 1840 ] } ], "matches_aggregate": [ - 1827, + 1832, { "distinct_on": [ - 1848, + 1853, "[matches_select_column!]" ], "limit": [ @@ -113196,19 +114025,19 @@ export default { 38 ], "order_by": [ - 1846, + 1851, "[matches_order_by!]" ], "where": [ - 1835 + 1840 ] } ], "matches_by_pk": [ - 1826, + 1831, { "id": [ - 3818, + 3864, "uuid!" ] } @@ -113217,10 +114046,10 @@ export default { 45 ], "migration_hashes_hashes": [ - 1868, + 1873, { "distinct_on": [ - 1880, + 1885, "[migration_hashes_hashes_select_column!]" ], "limit": [ @@ -113230,19 +114059,19 @@ export default { 38 ], "order_by": [ - 1878, + 1883, "[migration_hashes_hashes_order_by!]" ], "where": [ - 1871 + 1876 ] } ], "migration_hashes_hashes_aggregate": [ - 1869, + 1874, { "distinct_on": [ - 1880, + 1885, "[migration_hashes_hashes_select_column!]" ], "limit": [ @@ -113252,28 +114081,28 @@ export default { 38 ], "order_by": [ - 1878, + 1883, "[migration_hashes_hashes_order_by!]" ], "where": [ - 1871 + 1876 ] } ], "migration_hashes_hashes_by_pk": [ - 1868, + 1873, { "name": [ - 70, + 75, "String!" ] } ], "my_friends": [ - 1886, + 1891, { "distinct_on": [ - 1911, + 1916, "[my_friends_select_column!]" ], "limit": [ @@ -113283,19 +114112,19 @@ export default { 38 ], "order_by": [ - 1909, + 1914, "[my_friends_order_by!]" ], "where": [ - 1898 + 1903 ] } ], "my_friends_aggregate": [ - 1887, + 1892, { "distinct_on": [ - 1911, + 1916, "[my_friends_select_column!]" ], "limit": [ @@ -113305,11 +114134,11 @@ export default { 38 ], "order_by": [ - 1909, + 1914, "[my_friends_order_by!]" ], "where": [ - 1898 + 1903 ] } ], @@ -113317,7 +114146,7 @@ export default { 48, { "id": [ - 3818, + 3864, "uuid!" ] } @@ -113326,10 +114155,10 @@ export default { 48 ], "news_articles": [ - 1932, + 1937, { "distinct_on": [ - 1946, + 1951, "[news_articles_select_column!]" ], "limit": [ @@ -113339,19 +114168,19 @@ export default { 38 ], "order_by": [ - 1944, + 1949, "[news_articles_order_by!]" ], "where": [ - 1936 + 1941 ] } ], "news_articles_aggregate": [ - 1933, + 1938, { "distinct_on": [ - 1946, + 1951, "[news_articles_select_column!]" ], "limit": [ @@ -113361,28 +114190,28 @@ export default { 38 ], "order_by": [ - 1944, + 1949, "[news_articles_order_by!]" ], "where": [ - 1936 + 1941 ] } ], "news_articles_by_pk": [ - 1932, + 1937, { "id": [ - 3818, + 3864, "uuid!" ] } ], "notifications": [ - 1959, + 1964, { "distinct_on": [ - 1987, + 1992, "[notifications_select_column!]" ], "limit": [ @@ -113392,19 +114221,19 @@ export default { 38 ], "order_by": [ - 1984, + 1989, "[notifications_order_by!]" ], "where": [ - 1971 + 1976 ] } ], "notifications_aggregate": [ - 1960, + 1965, { "distinct_on": [ - 1987, + 1992, "[notifications_select_column!]" ], "limit": [ @@ -113414,28 +114243,28 @@ export default { 38 ], "order_by": [ - 1984, + 1989, "[notifications_order_by!]" ], "where": [ - 1971 + 1976 ] } ], "notifications_by_pk": [ - 1959, + 1964, { "id": [ - 3818, + 3864, "uuid!" ] } ], "pending_match_import_players": [ - 2012, + 2017, { "distinct_on": [ - 2033, + 2038, "[pending_match_import_players_select_column!]" ], "limit": [ @@ -113445,19 +114274,19 @@ export default { 38 ], "order_by": [ - 2031, + 2036, "[pending_match_import_players_order_by!]" ], "where": [ - 2021 + 2026 ] } ], "pending_match_import_players_aggregate": [ - 2013, + 2018, { "distinct_on": [ - 2033, + 2038, "[pending_match_import_players_select_column!]" ], "limit": [ @@ -113467,32 +114296,32 @@ export default { 38 ], "order_by": [ - 2031, + 2036, "[pending_match_import_players_order_by!]" ], "where": [ - 2021 + 2026 ] } ], "pending_match_import_players_by_pk": [ - 2012, + 2017, { "steam_id": [ - 169, + 174, "bigint!" ], "valve_match_id": [ - 2009, + 2014, "numeric!" ] } ], "pending_match_imports": [ - 2053, + 2058, { "distinct_on": [ - 2068, + 2073, "[pending_match_imports_select_column!]" ], "limit": [ @@ -113502,19 +114331,19 @@ export default { 38 ], "order_by": [ - 2066, + 2071, "[pending_match_imports_order_by!]" ], "where": [ - 2057 + 2062 ] } ], "pending_match_imports_aggregate": [ - 2054, + 2059, { "distinct_on": [ - 2068, + 2073, "[pending_match_imports_select_column!]" ], "limit": [ @@ -113524,28 +114353,28 @@ export default { 38 ], "order_by": [ - 2066, + 2071, "[pending_match_imports_order_by!]" ], "where": [ - 2057 + 2062 ] } ], "pending_match_imports_by_pk": [ - 2053, + 2058, { "valve_match_id": [ - 2009, + 2014, "numeric!" ] } ], "player_aim_stats_demo": [ - 2081, + 2086, { "distinct_on": [ - 2095, + 2100, "[player_aim_stats_demo_select_column!]" ], "limit": [ @@ -113555,19 +114384,19 @@ export default { 38 ], "order_by": [ - 2093, + 2098, "[player_aim_stats_demo_order_by!]" ], "where": [ - 2085 + 2090 ] } ], "player_aim_stats_demo_aggregate": [ - 2082, + 2087, { "distinct_on": [ - 2095, + 2100, "[player_aim_stats_demo_select_column!]" ], "limit": [ @@ -113577,32 +114406,32 @@ export default { 38 ], "order_by": [ - 2093, + 2098, "[player_aim_stats_demo_order_by!]" ], "where": [ - 2085 + 2090 ] } ], "player_aim_stats_demo_by_pk": [ - 2081, + 2086, { "attacker_steam_id": [ - 169, + 174, "bigint!" ], "match_map_id": [ - 3818, + 3864, "uuid!" ] } ], "player_aim_weapon_stats": [ - 2108, + 2113, { "distinct_on": [ - 2129, + 2134, "[player_aim_weapon_stats_select_column!]" ], "limit": [ @@ -113612,19 +114441,19 @@ export default { 38 ], "order_by": [ - 2127, + 2132, "[player_aim_weapon_stats_order_by!]" ], "where": [ - 2117 + 2122 ] } ], "player_aim_weapon_stats_aggregate": [ - 2109, + 2114, { "distinct_on": [ - 2129, + 2134, "[player_aim_weapon_stats_select_column!]" ], "limit": [ @@ -113634,36 +114463,36 @@ export default { 38 ], "order_by": [ - 2127, + 2132, "[player_aim_weapon_stats_order_by!]" ], "where": [ - 2117 + 2122 ] } ], "player_aim_weapon_stats_by_pk": [ - 2108, + 2113, { "match_map_id": [ - 3818, + 3864, "uuid!" ], "steam_id": [ - 169, + 174, "bigint!" ], "weapon_class": [ - 70, + 75, "String!" ] } ], "player_assists": [ - 2149, + 2154, { "distinct_on": [ - 2172, + 2177, "[player_assists_select_column!]" ], "limit": [ @@ -113673,19 +114502,19 @@ export default { 38 ], "order_by": [ - 2170, + 2175, "[player_assists_order_by!]" ], "where": [ - 2160 + 2165 ] } ], "player_assists_aggregate": [ - 2150, + 2155, { "distinct_on": [ - 2172, + 2177, "[player_assists_select_column!]" ], "limit": [ @@ -113695,40 +114524,40 @@ export default { 38 ], "order_by": [ - 2170, + 2175, "[player_assists_order_by!]" ], "where": [ - 2160 + 2165 ] } ], "player_assists_by_pk": [ - 2149, + 2154, { "attacked_steam_id": [ - 169, + 174, "bigint!" ], "attacker_steam_id": [ - 169, + 174, "bigint!" ], "match_map_id": [ - 3818, + 3864, "uuid!" ], "time": [ - 3421, + 3467, "timestamptz!" ] } ], "player_career_stats_v": [ - 2194, + 2199, { "distinct_on": [ - 2202, + 2207, "[player_career_stats_v_select_column!]" ], "limit": [ @@ -113738,19 +114567,19 @@ export default { 38 ], "order_by": [ - 2201, + 2206, "[player_career_stats_v_order_by!]" ], "where": [ - 2198 + 2203 ] } ], "player_career_stats_v_aggregate": [ - 2195, + 2200, { "distinct_on": [ - 2202, + 2207, "[player_career_stats_v_select_column!]" ], "limit": [ @@ -113760,19 +114589,19 @@ export default { 38 ], "order_by": [ - 2201, + 2206, "[player_career_stats_v_order_by!]" ], "where": [ - 2198 + 2203 ] } ], "player_damages": [ - 2212, + 2217, { "distinct_on": [ - 2233, + 2238, "[player_damages_select_column!]" ], "limit": [ @@ -113782,19 +114611,19 @@ export default { 38 ], "order_by": [ - 2231, + 2236, "[player_damages_order_by!]" ], "where": [ - 2221 + 2226 ] } ], "player_damages_aggregate": [ - 2213, + 2218, { "distinct_on": [ - 2233, + 2238, "[player_damages_select_column!]" ], "limit": [ @@ -113804,36 +114633,36 @@ export default { 38 ], "order_by": [ - 2231, + 2236, "[player_damages_order_by!]" ], "where": [ - 2221 + 2226 ] } ], "player_damages_by_pk": [ - 2212, + 2217, { "id": [ - 3818, + 3864, "uuid!" ], "match_map_id": [ - 3818, + 3864, "uuid!" ], "time": [ - 3421, + 3467, "timestamptz!" ] } ], "player_elo": [ - 2253, + 2258, { "distinct_on": [ - 2267, + 2272, "[player_elo_select_column!]" ], "limit": [ @@ -113843,19 +114672,19 @@ export default { 38 ], "order_by": [ - 2265, + 2270, "[player_elo_order_by!]" ], "where": [ - 2257 + 2262 ] } ], "player_elo_aggregate": [ - 2254, + 2259, { "distinct_on": [ - 2267, + 2272, "[player_elo_select_column!]" ], "limit": [ @@ -113865,36 +114694,36 @@ export default { 38 ], "order_by": [ - 2265, + 2270, "[player_elo_order_by!]" ], "where": [ - 2257 + 2262 ] } ], "player_elo_by_pk": [ - 2253, + 2258, { "match_id": [ - 3818, + 3864, "uuid!" ], "steam_id": [ - 169, + 174, "bigint!" ], "type": [ - 724, + 729, "e_match_types_enum!" ] } ], "player_faceit_rank_history": [ - 2280, + 2285, { "distinct_on": [ - 2301, + 2306, "[player_faceit_rank_history_select_column!]" ], "limit": [ @@ -113904,19 +114733,19 @@ export default { 38 ], "order_by": [ - 2299, + 2304, "[player_faceit_rank_history_order_by!]" ], "where": [ - 2289 + 2294 ] } ], "player_faceit_rank_history_aggregate": [ - 2281, + 2286, { "distinct_on": [ - 2301, + 2306, "[player_faceit_rank_history_select_column!]" ], "limit": [ @@ -113926,28 +114755,28 @@ export default { 38 ], "order_by": [ - 2299, + 2304, "[player_faceit_rank_history_order_by!]" ], "where": [ - 2289 + 2294 ] } ], "player_faceit_rank_history_by_pk": [ - 2280, + 2285, { "id": [ - 3818, + 3864, "uuid!" ] } ], "player_flashes": [ - 2321, + 2326, { "distinct_on": [ - 2344, + 2349, "[player_flashes_select_column!]" ], "limit": [ @@ -113957,19 +114786,19 @@ export default { 38 ], "order_by": [ - 2342, + 2347, "[player_flashes_order_by!]" ], "where": [ - 2332 + 2337 ] } ], "player_flashes_aggregate": [ - 2322, + 2327, { "distinct_on": [ - 2344, + 2349, "[player_flashes_select_column!]" ], "limit": [ @@ -113979,40 +114808,40 @@ export default { 38 ], "order_by": [ - 2342, + 2347, "[player_flashes_order_by!]" ], "where": [ - 2332 + 2337 ] } ], "player_flashes_by_pk": [ - 2321, + 2326, { "attacked_steam_id": [ - 169, + 174, "bigint!" ], "attacker_steam_id": [ - 169, + 174, "bigint!" ], "match_map_id": [ - 3818, + 3864, "uuid!" ], "time": [ - 3421, + 3467, "timestamptz!" ] } ], "player_kills": [ - 2366, + 2371, { "distinct_on": [ - 2430, + 2435, "[player_kills_select_column!]" ], "limit": [ @@ -114022,19 +114851,19 @@ export default { 38 ], "order_by": [ - 2428, + 2433, "[player_kills_order_by!]" ], "where": [ - 2377 + 2382 ] } ], "player_kills_aggregate": [ - 2367, + 2372, { "distinct_on": [ - 2430, + 2435, "[player_kills_select_column!]" ], "limit": [ @@ -114044,40 +114873,40 @@ export default { 38 ], "order_by": [ - 2428, + 2433, "[player_kills_order_by!]" ], "where": [ - 2377 + 2382 ] } ], "player_kills_by_pk": [ - 2366, + 2371, { "attacked_steam_id": [ - 169, + 174, "bigint!" ], "attacker_steam_id": [ - 169, + 174, "bigint!" ], "match_map_id": [ - 3818, + 3864, "uuid!" ], "time": [ - 3421, + 3467, "timestamptz!" ] } ], "player_kills_by_weapon": [ - 2378, + 2383, { "distinct_on": [ - 2399, + 2404, "[player_kills_by_weapon_select_column!]" ], "limit": [ @@ -114087,19 +114916,19 @@ export default { 38 ], "order_by": [ - 2397, + 2402, "[player_kills_by_weapon_order_by!]" ], "where": [ - 2387 + 2392 ] } ], "player_kills_by_weapon_aggregate": [ - 2379, + 2384, { "distinct_on": [ - 2399, + 2404, "[player_kills_by_weapon_select_column!]" ], "limit": [ @@ -114109,32 +114938,32 @@ export default { 38 ], "order_by": [ - 2397, + 2402, "[player_kills_by_weapon_order_by!]" ], "where": [ - 2387 + 2392 ] } ], "player_kills_by_weapon_by_pk": [ - 2378, + 2383, { "player_steam_id": [ - 169, + 174, "bigint!" ], "with": [ - 70, + 75, "String!" ] } ], "player_leaderboard_rank": [ - 2452, + 2457, { "distinct_on": [ - 2463, + 2468, "[player_leaderboard_rank_select_column!]" ], "limit": [ @@ -114144,19 +114973,19 @@ export default { 38 ], "order_by": [ - 2462, + 2467, "[player_leaderboard_rank_order_by!]" ], "where": [ - 2456 + 2461 ] } ], "player_leaderboard_rank_aggregate": [ - 2453, + 2458, { "distinct_on": [ - 2463, + 2468, "[player_leaderboard_rank_select_column!]" ], "limit": [ @@ -114166,19 +114995,19 @@ export default { 38 ], "order_by": [ - 2462, + 2467, "[player_leaderboard_rank_order_by!]" ], "where": [ - 2456 + 2461 ] } ], "player_match_map_stats": [ - 2475, + 2480, { "distinct_on": [ - 2496, + 2501, "[player_match_map_stats_select_column!]" ], "limit": [ @@ -114188,19 +115017,19 @@ export default { 38 ], "order_by": [ - 2494, + 2499, "[player_match_map_stats_order_by!]" ], "where": [ - 2484 + 2489 ] } ], "player_match_map_stats_aggregate": [ - 2476, + 2481, { "distinct_on": [ - 2496, + 2501, "[player_match_map_stats_select_column!]" ], "limit": [ @@ -114210,32 +115039,32 @@ export default { 38 ], "order_by": [ - 2494, + 2499, "[player_match_map_stats_order_by!]" ], "where": [ - 2484 + 2489 ] } ], "player_match_map_stats_by_pk": [ - 2475, + 2480, { "match_map_id": [ - 3818, + 3864, "uuid!" ], "steam_id": [ - 169, + 174, "bigint!" ] } ], "player_match_performance_v": [ - 2516, + 2521, { "distinct_on": [ - 2524, + 2529, "[player_match_performance_v_select_column!]" ], "limit": [ @@ -114245,19 +115074,19 @@ export default { 38 ], "order_by": [ - 2523, + 2528, "[player_match_performance_v_order_by!]" ], "where": [ - 2520 + 2525 ] } ], "player_match_performance_v_aggregate": [ - 2517, + 2522, { "distinct_on": [ - 2524, + 2529, "[player_match_performance_v_select_column!]" ], "limit": [ @@ -114267,19 +115096,19 @@ export default { 38 ], "order_by": [ - 2523, + 2528, "[player_match_performance_v_order_by!]" ], "where": [ - 2520 + 2525 ] } ], "player_match_stats_v": [ - 2534, + 2539, { "distinct_on": [ - 2550, + 2555, "[player_match_stats_v_select_column!]" ], "limit": [ @@ -114289,19 +115118,19 @@ export default { 38 ], "order_by": [ - 2549, + 2554, "[player_match_stats_v_order_by!]" ], "where": [ - 2543 + 2548 ] } ], "player_match_stats_v_aggregate": [ - 2535, + 2540, { "distinct_on": [ - 2550, + 2555, "[player_match_stats_v_select_column!]" ], "limit": [ @@ -114311,19 +115140,19 @@ export default { 38 ], "order_by": [ - 2549, + 2554, "[player_match_stats_v_order_by!]" ], "where": [ - 2543 + 2548 ] } ], "player_objectives": [ - 2567, + 2572, { "distinct_on": [ - 2588, + 2593, "[player_objectives_select_column!]" ], "limit": [ @@ -114333,19 +115162,19 @@ export default { 38 ], "order_by": [ - 2586, + 2591, "[player_objectives_order_by!]" ], "where": [ - 2576 + 2581 ] } ], "player_objectives_aggregate": [ - 2568, + 2573, { "distinct_on": [ - 2588, + 2593, "[player_objectives_select_column!]" ], "limit": [ @@ -114355,36 +115184,36 @@ export default { 38 ], "order_by": [ - 2586, + 2591, "[player_objectives_order_by!]" ], "where": [ - 2576 + 2581 ] } ], "player_objectives_by_pk": [ - 2567, + 2572, { "match_map_id": [ - 3818, + 3864, "uuid!" ], "player_steam_id": [ - 169, + 174, "bigint!" ], "time": [ - 3421, + 3467, "timestamptz!" ] } ], "player_performance_v": [ - 2608, + 2613, { "distinct_on": [ - 2616, + 2621, "[player_performance_v_select_column!]" ], "limit": [ @@ -114394,19 +115223,19 @@ export default { 38 ], "order_by": [ - 2615, + 2620, "[player_performance_v_order_by!]" ], "where": [ - 2612 + 2617 ] } ], "player_performance_v_aggregate": [ - 2609, + 2614, { "distinct_on": [ - 2616, + 2621, "[player_performance_v_select_column!]" ], "limit": [ @@ -114416,19 +115245,19 @@ export default { 38 ], "order_by": [ - 2615, + 2620, "[player_performance_v_order_by!]" ], "where": [ - 2612 + 2617 ] } ], "player_premier_rank_history": [ - 2626, + 2631, { "distinct_on": [ - 2647, + 2652, "[player_premier_rank_history_select_column!]" ], "limit": [ @@ -114438,19 +115267,19 @@ export default { 38 ], "order_by": [ - 2645, + 2650, "[player_premier_rank_history_order_by!]" ], "where": [ - 2635 + 2640 ] } ], "player_premier_rank_history_aggregate": [ - 2627, + 2632, { "distinct_on": [ - 2647, + 2652, "[player_premier_rank_history_select_column!]" ], "limit": [ @@ -114460,28 +115289,28 @@ export default { 38 ], "order_by": [ - 2645, + 2650, "[player_premier_rank_history_order_by!]" ], "where": [ - 2635 + 2640 ] } ], "player_premier_rank_history_by_pk": [ - 2626, + 2631, { "id": [ - 3818, + 3864, "uuid!" ] } ], "player_sanctions": [ - 2667, + 2672, { "distinct_on": [ - 2688, + 2693, "[player_sanctions_select_column!]" ], "limit": [ @@ -114491,19 +115320,19 @@ export default { 38 ], "order_by": [ - 2686, + 2691, "[player_sanctions_order_by!]" ], "where": [ - 2676 + 2681 ] } ], "player_sanctions_aggregate": [ - 2668, + 2673, { "distinct_on": [ - 2688, + 2693, "[player_sanctions_select_column!]" ], "limit": [ @@ -114513,32 +115342,32 @@ export default { 38 ], "order_by": [ - 2686, + 2691, "[player_sanctions_order_by!]" ], "where": [ - 2676 + 2681 ] } ], "player_sanctions_by_pk": [ - 2667, + 2672, { "created_at": [ - 3421, + 3467, "timestamptz!" ], "id": [ - 3818, + 3864, "uuid!" ] } ], "player_stats": [ - 2708, + 2713, { "distinct_on": [ - 2723, + 2728, "[player_stats_select_column!]" ], "limit": [ @@ -114548,19 +115377,19 @@ export default { 38 ], "order_by": [ - 2721, + 2726, "[player_stats_order_by!]" ], "where": [ - 2712 + 2717 ] } ], "player_stats_aggregate": [ - 2709, + 2714, { "distinct_on": [ - 2723, + 2728, "[player_stats_select_column!]" ], "limit": [ @@ -114570,28 +115399,81 @@ export default { 38 ], "order_by": [ - 2721, + 2726, "[player_stats_order_by!]" ], "where": [ - 2712 + 2717 ] } ], "player_stats_by_pk": [ - 2708, + 2713, { "player_steam_id": [ - 169, + 174, + "bigint!" + ] + } + ], + "player_steam_bot_friend": [ + 2741, + { + "distinct_on": [ + 2760, + "[player_steam_bot_friend_select_column!]" + ], + "limit": [ + 38 + ], + "offset": [ + 38 + ], + "order_by": [ + 2757, + "[player_steam_bot_friend_order_by!]" + ], + "where": [ + 2746 + ] + } + ], + "player_steam_bot_friend_aggregate": [ + 2742, + { + "distinct_on": [ + 2760, + "[player_steam_bot_friend_select_column!]" + ], + "limit": [ + 38 + ], + "offset": [ + 38 + ], + "order_by": [ + 2757, + "[player_steam_bot_friend_order_by!]" + ], + "where": [ + 2746 + ] + } + ], + "player_steam_bot_friend_by_pk": [ + 2741, + { + "steam_id": [ + 174, "bigint!" ] } ], "player_steam_match_auth": [ - 2736, + 2773, { "distinct_on": [ - 2750, + 2787, "[player_steam_match_auth_select_column!]" ], "limit": [ @@ -114601,19 +115483,19 @@ export default { 38 ], "order_by": [ - 2748, + 2785, "[player_steam_match_auth_order_by!]" ], "where": [ - 2740 + 2777 ] } ], "player_steam_match_auth_aggregate": [ - 2737, + 2774, { "distinct_on": [ - 2750, + 2787, "[player_steam_match_auth_select_column!]" ], "limit": [ @@ -114623,28 +115505,28 @@ export default { 38 ], "order_by": [ - 2748, + 2785, "[player_steam_match_auth_order_by!]" ], "where": [ - 2740 + 2777 ] } ], "player_steam_match_auth_by_pk": [ - 2736, + 2773, { "steam_id": [ - 169, + 174, "bigint!" ] } ], "player_unused_utility": [ - 2763, + 2800, { "distinct_on": [ - 2784, + 2821, "[player_unused_utility_select_column!]" ], "limit": [ @@ -114654,19 +115536,19 @@ export default { 38 ], "order_by": [ - 2782, + 2819, "[player_unused_utility_order_by!]" ], "where": [ - 2772 + 2809 ] } ], "player_unused_utility_aggregate": [ - 2764, + 2801, { "distinct_on": [ - 2784, + 2821, "[player_unused_utility_select_column!]" ], "limit": [ @@ -114676,32 +115558,32 @@ export default { 38 ], "order_by": [ - 2782, + 2819, "[player_unused_utility_order_by!]" ], "where": [ - 2772 + 2809 ] } ], "player_unused_utility_by_pk": [ - 2763, + 2800, { "match_map_id": [ - 3818, + 3864, "uuid!" ], "player_steam_id": [ - 169, + 174, "bigint!" ] } ], "player_utility": [ - 2804, + 2841, { "distinct_on": [ - 2825, + 2862, "[player_utility_select_column!]" ], "limit": [ @@ -114711,19 +115593,19 @@ export default { 38 ], "order_by": [ - 2823, + 2860, "[player_utility_order_by!]" ], "where": [ - 2813 + 2850 ] } ], "player_utility_aggregate": [ - 2805, + 2842, { "distinct_on": [ - 2825, + 2862, "[player_utility_select_column!]" ], "limit": [ @@ -114733,36 +115615,36 @@ export default { 38 ], "order_by": [ - 2823, + 2860, "[player_utility_order_by!]" ], "where": [ - 2813 + 2850 ] } ], "player_utility_by_pk": [ - 2804, + 2841, { "attacker_steam_id": [ - 169, + 174, "bigint!" ], "match_map_id": [ - 3818, + 3864, "uuid!" ], "time": [ - 3421, + 3467, "timestamptz!" ] } ], "player_weapon_stats_v": [ - 2845, + 2882, { "distinct_on": [ - 2861, + 2898, "[player_weapon_stats_v_select_column!]" ], "limit": [ @@ -114772,19 +115654,19 @@ export default { 38 ], "order_by": [ - 2860, + 2897, "[player_weapon_stats_v_order_by!]" ], "where": [ - 2854 + 2891 ] } ], "player_weapon_stats_v_aggregate": [ - 2846, + 2883, { "distinct_on": [ - 2861, + 2898, "[player_weapon_stats_v_select_column!]" ], "limit": [ @@ -114794,19 +115676,19 @@ export default { 38 ], "order_by": [ - 2860, + 2897, "[player_weapon_stats_v_order_by!]" ], "where": [ - 2854 + 2891 ] } ], "players": [ - 2878, + 2915, { "distinct_on": [ - 2893, + 2930, "[players_select_column!]" ], "limit": [ @@ -114816,19 +115698,19 @@ export default { 38 ], "order_by": [ - 2891, + 2928, "[players_order_by!]" ], "where": [ - 2882 + 2919 ] } ], "players_aggregate": [ - 2879, + 2916, { "distinct_on": [ - 2893, + 2930, "[players_select_column!]" ], "limit": [ @@ -114838,28 +115720,28 @@ export default { 38 ], "order_by": [ - 2891, + 2928, "[players_order_by!]" ], "where": [ - 2882 + 2919 ] } ], "players_by_pk": [ - 2878, + 2915, { "steam_id": [ - 169, + 174, "bigint!" ] } ], "plugin_versions": [ - 2906, + 2943, { "distinct_on": [ - 2920, + 2957, "[plugin_versions_select_column!]" ], "limit": [ @@ -114869,19 +115751,19 @@ export default { 38 ], "order_by": [ - 2918, + 2955, "[plugin_versions_order_by!]" ], "where": [ - 2910 + 2947 ] } ], "plugin_versions_aggregate": [ - 2907, + 2944, { "distinct_on": [ - 2920, + 2957, "[plugin_versions_select_column!]" ], "limit": [ @@ -114891,19 +115773,19 @@ export default { 38 ], "order_by": [ - 2918, + 2955, "[plugin_versions_order_by!]" ], "where": [ - 2910 + 2947 ] } ], "plugin_versions_by_pk": [ - 2906, + 2943, { "version": [ - 70, + 75, "String!" ] } @@ -114912,15 +115794,15 @@ export default { 26, { "file_path": [ - 70, + 75, "String!" ], "node_id": [ - 70, + 75, "String!" ], "server_id": [ - 70 + 75 ] } ], @@ -114928,16 +115810,16 @@ export default { 63, { "team_id": [ - 3818, + 3864, "uuid!" ] } ], "server_regions": [ - 2934, + 2971, { "distinct_on": [ - 2948, + 2985, "[server_regions_select_column!]" ], "limit": [ @@ -114947,19 +115829,19 @@ export default { 38 ], "order_by": [ - 2946, + 2983, "[server_regions_order_by!]" ], "where": [ - 2938 + 2975 ] } ], "server_regions_aggregate": [ - 2935, + 2972, { "distinct_on": [ - 2948, + 2985, "[server_regions_select_column!]" ], "limit": [ @@ -114969,28 +115851,28 @@ export default { 38 ], "order_by": [ - 2946, + 2983, "[server_regions_order_by!]" ], "where": [ - 2938 + 2975 ] } ], "server_regions_by_pk": [ - 2934, + 2971, { "value": [ - 70, + 75, "String!" ] } ], "servers": [ - 2961, + 2998, { "distinct_on": [ - 2985, + 3022, "[servers_select_column!]" ], "limit": [ @@ -115000,19 +115882,19 @@ export default { 38 ], "order_by": [ - 2983, + 3020, "[servers_order_by!]" ], "where": [ - 2972 + 3009 ] } ], "servers_aggregate": [ - 2962, + 2999, { "distinct_on": [ - 2985, + 3022, "[servers_select_column!]" ], "limit": [ @@ -115022,28 +115904,28 @@ export default { 38 ], "order_by": [ - 2983, + 3020, "[servers_order_by!]" ], "where": [ - 2972 + 3009 ] } ], "servers_by_pk": [ - 2961, + 2998, { "id": [ - 3818, + 3864, "uuid!" ] } ], "settings": [ - 3007, + 3044, { "distinct_on": [ - 3019, + 3056, "[settings_select_column!]" ], "limit": [ @@ -115053,19 +115935,19 @@ export default { 38 ], "order_by": [ - 3017, + 3054, "[settings_order_by!]" ], "where": [ - 3010 + 3047 ] } ], "settings_aggregate": [ - 3008, + 3045, { "distinct_on": [ - 3019, + 3056, "[settings_select_column!]" ], "limit": [ @@ -115075,28 +115957,31 @@ export default { 38 ], "order_by": [ - 3017, + 3054, "[settings_order_by!]" ], "where": [ - 3010 + 3047 ] } ], "settings_by_pk": [ - 3007, + 3044, { "name": [ - 70, + 75, "String!" ] } ], + "steamPresenceAdminStatus": [ + 68 + ], "steam_account_claims": [ - 3025, + 3062, { "distinct_on": [ - 3043, + 3080, "[steam_account_claims_select_column!]" ], "limit": [ @@ -115106,19 +115991,19 @@ export default { 38 ], "order_by": [ - 3041, + 3078, "[steam_account_claims_order_by!]" ], "where": [ - 3032 + 3069 ] } ], "steam_account_claims_aggregate": [ - 3026, + 3063, { "distinct_on": [ - 3043, + 3080, "[steam_account_claims_select_column!]" ], "limit": [ @@ -115128,28 +116013,28 @@ export default { 38 ], "order_by": [ - 3041, + 3078, "[steam_account_claims_order_by!]" ], "where": [ - 3032 + 3069 ] } ], "steam_account_claims_by_pk": [ - 3025, + 3062, { "id": [ - 3818, + 3864, "uuid!" ] } ], "steam_accounts": [ - 3049, + 3086, { "distinct_on": [ - 3062, + 3101, "[steam_accounts_select_column!]" ], "limit": [ @@ -115159,19 +116044,19 @@ export default { 38 ], "order_by": [ - 3060, + 3099, "[steam_accounts_order_by!]" ], "where": [ - 3052 + 3090 ] } ], "steam_accounts_aggregate": [ - 3050, + 3087, { "distinct_on": [ - 3062, + 3101, "[steam_accounts_select_column!]" ], "limit": [ @@ -115181,28 +116066,28 @@ export default { 38 ], "order_by": [ - 3060, + 3099, "[steam_accounts_order_by!]" ], "where": [ - 3052 + 3090 ] } ], "steam_accounts_by_pk": [ - 3049, + 3086, { "id": [ - 3818, + 3864, "uuid!" ] } ], "system_alerts": [ - 3068, + 3114, { "distinct_on": [ - 3082, + 3128, "[system_alerts_select_column!]" ], "limit": [ @@ -115212,19 +116097,19 @@ export default { 38 ], "order_by": [ - 3080, + 3126, "[system_alerts_order_by!]" ], "where": [ - 3072 + 3118 ] } ], "system_alerts_aggregate": [ - 3069, + 3115, { "distinct_on": [ - 3082, + 3128, "[system_alerts_select_column!]" ], "limit": [ @@ -115234,28 +116119,28 @@ export default { 38 ], "order_by": [ - 3080, + 3126, "[system_alerts_order_by!]" ], "where": [ - 3072 + 3118 ] } ], "system_alerts_by_pk": [ - 3068, + 3114, { "id": [ - 3818, + 3864, "uuid!" ] } ], "team_invites": [ - 3095, + 3141, { "distinct_on": [ - 3116, + 3162, "[team_invites_select_column!]" ], "limit": [ @@ -115265,19 +116150,19 @@ export default { 38 ], "order_by": [ - 3114, + 3160, "[team_invites_order_by!]" ], "where": [ - 3104 + 3150 ] } ], "team_invites_aggregate": [ - 3096, + 3142, { "distinct_on": [ - 3116, + 3162, "[team_invites_select_column!]" ], "limit": [ @@ -115287,28 +116172,28 @@ export default { 38 ], "order_by": [ - 3114, + 3160, "[team_invites_order_by!]" ], "where": [ - 3104 + 3150 ] } ], "team_invites_by_pk": [ - 3095, + 3141, { "id": [ - 3818, + 3864, "uuid!" ] } ], "team_roster": [ - 3136, + 3182, { "distinct_on": [ - 3159, + 3205, "[team_roster_select_column!]" ], "limit": [ @@ -115318,19 +116203,19 @@ export default { 38 ], "order_by": [ - 3157, + 3203, "[team_roster_order_by!]" ], "where": [ - 3147 + 3193 ] } ], "team_roster_aggregate": [ - 3137, + 3183, { "distinct_on": [ - 3159, + 3205, "[team_roster_select_column!]" ], "limit": [ @@ -115340,32 +116225,32 @@ export default { 38 ], "order_by": [ - 3157, + 3203, "[team_roster_order_by!]" ], "where": [ - 3147 + 3193 ] } ], "team_roster_by_pk": [ - 3136, + 3182, { "player_steam_id": [ - 169, + 174, "bigint!" ], "team_id": [ - 3818, + 3864, "uuid!" ] } ], "team_scrim_alerts": [ - 3181, + 3227, { "distinct_on": [ - 3195, + 3241, "[team_scrim_alerts_select_column!]" ], "limit": [ @@ -115375,19 +116260,19 @@ export default { 38 ], "order_by": [ - 3193, + 3239, "[team_scrim_alerts_order_by!]" ], "where": [ - 3185 + 3231 ] } ], "team_scrim_alerts_aggregate": [ - 3182, + 3228, { "distinct_on": [ - 3195, + 3241, "[team_scrim_alerts_select_column!]" ], "limit": [ @@ -115397,28 +116282,28 @@ export default { 38 ], "order_by": [ - 3193, + 3239, "[team_scrim_alerts_order_by!]" ], "where": [ - 3185 + 3231 ] } ], "team_scrim_alerts_by_pk": [ - 3181, + 3227, { "id": [ - 3818, + 3864, "uuid!" ] } ], "team_scrim_availability": [ - 3208, + 3254, { "distinct_on": [ - 3228, + 3274, "[team_scrim_availability_select_column!]" ], "limit": [ @@ -115428,19 +116313,19 @@ export default { 38 ], "order_by": [ - 3226, + 3272, "[team_scrim_availability_order_by!]" ], "where": [ - 3217 + 3263 ] } ], "team_scrim_availability_aggregate": [ - 3209, + 3255, { "distinct_on": [ - 3228, + 3274, "[team_scrim_availability_select_column!]" ], "limit": [ @@ -115450,28 +116335,28 @@ export default { 38 ], "order_by": [ - 3226, + 3272, "[team_scrim_availability_order_by!]" ], "where": [ - 3217 + 3263 ] } ], "team_scrim_availability_by_pk": [ - 3208, + 3254, { "id": [ - 3818, + 3864, "uuid!" ] } ], "team_scrim_request_proposals": [ - 3236, + 3282, { "distinct_on": [ - 3257, + 3303, "[team_scrim_request_proposals_select_column!]" ], "limit": [ @@ -115481,19 +116366,19 @@ export default { 38 ], "order_by": [ - 3255, + 3301, "[team_scrim_request_proposals_order_by!]" ], "where": [ - 3245 + 3291 ] } ], "team_scrim_request_proposals_aggregate": [ - 3237, + 3283, { "distinct_on": [ - 3257, + 3303, "[team_scrim_request_proposals_select_column!]" ], "limit": [ @@ -115503,28 +116388,28 @@ export default { 38 ], "order_by": [ - 3255, + 3301, "[team_scrim_request_proposals_order_by!]" ], "where": [ - 3245 + 3291 ] } ], "team_scrim_request_proposals_by_pk": [ - 3236, + 3282, { "id": [ - 3818, + 3864, "uuid!" ] } ], "team_scrim_requests": [ - 3277, + 3323, { "distinct_on": [ - 3301, + 3347, "[team_scrim_requests_select_column!]" ], "limit": [ @@ -115534,19 +116419,19 @@ export default { 38 ], "order_by": [ - 3299, + 3345, "[team_scrim_requests_order_by!]" ], "where": [ - 3288 + 3334 ] } ], "team_scrim_requests_aggregate": [ - 3278, + 3324, { "distinct_on": [ - 3301, + 3347, "[team_scrim_requests_select_column!]" ], "limit": [ @@ -115556,28 +116441,28 @@ export default { 38 ], "order_by": [ - 3299, + 3345, "[team_scrim_requests_order_by!]" ], "where": [ - 3288 + 3334 ] } ], "team_scrim_requests_by_pk": [ - 3277, + 3323, { "id": [ - 3818, + 3864, "uuid!" ] } ], "team_scrim_settings": [ - 3323, + 3369, { "distinct_on": [ - 3338, + 3384, "[team_scrim_settings_select_column!]" ], "limit": [ @@ -115587,19 +116472,19 @@ export default { 38 ], "order_by": [ - 3336, + 3382, "[team_scrim_settings_order_by!]" ], "where": [ - 3327 + 3373 ] } ], "team_scrim_settings_aggregate": [ - 3324, + 3370, { "distinct_on": [ - 3338, + 3384, "[team_scrim_settings_select_column!]" ], "limit": [ @@ -115609,28 +116494,28 @@ export default { 38 ], "order_by": [ - 3336, + 3382, "[team_scrim_settings_order_by!]" ], "where": [ - 3327 + 3373 ] } ], "team_scrim_settings_by_pk": [ - 3323, + 3369, { "id": [ - 3818, + 3864, "uuid!" ] } ], "team_suggestions": [ - 3351, + 3397, { "distinct_on": [ - 3365, + 3411, "[team_suggestions_select_column!]" ], "limit": [ @@ -115640,19 +116525,19 @@ export default { 38 ], "order_by": [ - 3363, + 3409, "[team_suggestions_order_by!]" ], "where": [ - 3355 + 3401 ] } ], "team_suggestions_aggregate": [ - 3352, + 3398, { "distinct_on": [ - 3365, + 3411, "[team_suggestions_select_column!]" ], "limit": [ @@ -115662,28 +116547,28 @@ export default { 38 ], "order_by": [ - 3363, + 3409, "[team_suggestions_order_by!]" ], "where": [ - 3355 + 3401 ] } ], "team_suggestions_by_pk": [ - 3351, + 3397, { "id": [ - 3818, + 3864, "uuid!" ] } ], "teams": [ - 3378, + 3424, { "distinct_on": [ - 3400, + 3446, "[teams_select_column!]" ], "limit": [ @@ -115693,19 +116578,19 @@ export default { 38 ], "order_by": [ - 3398, + 3444, "[teams_order_by!]" ], "where": [ - 3387 + 3433 ] } ], "teams_aggregate": [ - 3379, + 3425, { "distinct_on": [ - 3400, + 3446, "[teams_select_column!]" ], "limit": [ @@ -115715,31 +116600,31 @@ export default { 38 ], "order_by": [ - 3398, + 3444, "[teams_order_by!]" ], "where": [ - 3387 + 3433 ] } ], "teams_by_pk": [ - 3378, + 3424, { "id": [ - 3818, + 3864, "uuid!" ] } ], "telemetryStats": [ - 77 + 82 ], "tournament_brackets": [ - 3423, + 3469, { "distinct_on": [ - 3447, + 3493, "[tournament_brackets_select_column!]" ], "limit": [ @@ -115749,19 +116634,19 @@ export default { 38 ], "order_by": [ - 3445, + 3491, "[tournament_brackets_order_by!]" ], "where": [ - 3434 + 3480 ] } ], "tournament_brackets_aggregate": [ - 3424, + 3470, { "distinct_on": [ - 3447, + 3493, "[tournament_brackets_select_column!]" ], "limit": [ @@ -115771,28 +116656,28 @@ export default { 38 ], "order_by": [ - 3445, + 3491, "[tournament_brackets_order_by!]" ], "where": [ - 3434 + 3480 ] } ], "tournament_brackets_by_pk": [ - 3423, + 3469, { "id": [ - 3818, + 3864, "uuid!" ] } ], "tournament_organizers": [ - 3469, + 3515, { "distinct_on": [ - 3490, + 3536, "[tournament_organizers_select_column!]" ], "limit": [ @@ -115802,19 +116687,19 @@ export default { 38 ], "order_by": [ - 3488, + 3534, "[tournament_organizers_order_by!]" ], "where": [ - 3478 + 3524 ] } ], "tournament_organizers_aggregate": [ - 3470, + 3516, { "distinct_on": [ - 3490, + 3536, "[tournament_organizers_select_column!]" ], "limit": [ @@ -115824,32 +116709,32 @@ export default { 38 ], "order_by": [ - 3488, + 3534, "[tournament_organizers_order_by!]" ], "where": [ - 3478 + 3524 ] } ], "tournament_organizers_by_pk": [ - 3469, + 3515, { "steam_id": [ - 169, + 174, "bigint!" ], "tournament_id": [ - 3818, + 3864, "uuid!" ] } ], "tournament_stages": [ - 3510, + 3556, { "distinct_on": [ - 3539, + 3585, "[tournament_stages_select_column!]" ], "limit": [ @@ -115859,19 +116744,19 @@ export default { 38 ], "order_by": [ - 3536, + 3582, "[tournament_stages_order_by!]" ], "where": [ - 3522 + 3568 ] } ], "tournament_stages_aggregate": [ - 3511, + 3557, { "distinct_on": [ - 3539, + 3585, "[tournament_stages_select_column!]" ], "limit": [ @@ -115881,28 +116766,28 @@ export default { 38 ], "order_by": [ - 3536, + 3582, "[tournament_stages_order_by!]" ], "where": [ - 3522 + 3568 ] } ], "tournament_stages_by_pk": [ - 3510, + 3556, { "id": [ - 3818, + 3864, "uuid!" ] } ], "tournament_team_invites": [ - 3561, + 3607, { "distinct_on": [ - 3582, + 3628, "[tournament_team_invites_select_column!]" ], "limit": [ @@ -115912,19 +116797,19 @@ export default { 38 ], "order_by": [ - 3580, + 3626, "[tournament_team_invites_order_by!]" ], "where": [ - 3570 + 3616 ] } ], "tournament_team_invites_aggregate": [ - 3562, + 3608, { "distinct_on": [ - 3582, + 3628, "[tournament_team_invites_select_column!]" ], "limit": [ @@ -115934,28 +116819,28 @@ export default { 38 ], "order_by": [ - 3580, + 3626, "[tournament_team_invites_order_by!]" ], "where": [ - 3570 + 3616 ] } ], "tournament_team_invites_by_pk": [ - 3561, + 3607, { "id": [ - 3818, + 3864, "uuid!" ] } ], "tournament_team_roster": [ - 3602, + 3648, { "distinct_on": [ - 3623, + 3669, "[tournament_team_roster_select_column!]" ], "limit": [ @@ -115965,19 +116850,19 @@ export default { 38 ], "order_by": [ - 3621, + 3667, "[tournament_team_roster_order_by!]" ], "where": [ - 3611 + 3657 ] } ], "tournament_team_roster_aggregate": [ - 3603, + 3649, { "distinct_on": [ - 3623, + 3669, "[tournament_team_roster_select_column!]" ], "limit": [ @@ -115987,32 +116872,32 @@ export default { 38 ], "order_by": [ - 3621, + 3667, "[tournament_team_roster_order_by!]" ], "where": [ - 3611 + 3657 ] } ], "tournament_team_roster_by_pk": [ - 3602, + 3648, { "player_steam_id": [ - 169, + 174, "bigint!" ], "tournament_id": [ - 3818, + 3864, "uuid!" ] } ], "tournament_teams": [ - 3643, + 3689, { "distinct_on": [ - 3665, + 3711, "[tournament_teams_select_column!]" ], "limit": [ @@ -116022,19 +116907,19 @@ export default { 38 ], "order_by": [ - 3663, + 3709, "[tournament_teams_order_by!]" ], "where": [ - 3652 + 3698 ] } ], "tournament_teams_aggregate": [ - 3644, + 3690, { "distinct_on": [ - 3665, + 3711, "[tournament_teams_select_column!]" ], "limit": [ @@ -116044,28 +116929,28 @@ export default { 38 ], "order_by": [ - 3663, + 3709, "[tournament_teams_order_by!]" ], "where": [ - 3652 + 3698 ] } ], "tournament_teams_by_pk": [ - 3643, + 3689, { "id": [ - 3818, + 3864, "uuid!" ] } ], "tournament_trophies": [ - 3685, + 3731, { "distinct_on": [ - 3708, + 3754, "[tournament_trophies_select_column!]" ], "limit": [ @@ -116075,19 +116960,19 @@ export default { 38 ], "order_by": [ - 3706, + 3752, "[tournament_trophies_order_by!]" ], "where": [ - 3696 + 3742 ] } ], "tournament_trophies_aggregate": [ - 3686, + 3732, { "distinct_on": [ - 3708, + 3754, "[tournament_trophies_select_column!]" ], "limit": [ @@ -116097,28 +116982,28 @@ export default { 38 ], "order_by": [ - 3706, + 3752, "[tournament_trophies_order_by!]" ], "where": [ - 3696 + 3742 ] } ], "tournament_trophies_by_pk": [ - 3685, + 3731, { "id": [ - 3818, + 3864, "uuid!" ] } ], "tournament_trophy_configs": [ - 3730, + 3776, { "distinct_on": [ - 3752, + 3798, "[tournament_trophy_configs_select_column!]" ], "limit": [ @@ -116128,19 +117013,19 @@ export default { 38 ], "order_by": [ - 3750, + 3796, "[tournament_trophy_configs_order_by!]" ], "where": [ - 3739 + 3785 ] } ], "tournament_trophy_configs_aggregate": [ - 3731, + 3777, { "distinct_on": [ - 3752, + 3798, "[tournament_trophy_configs_select_column!]" ], "limit": [ @@ -116150,28 +117035,28 @@ export default { 38 ], "order_by": [ - 3750, + 3796, "[tournament_trophy_configs_order_by!]" ], "where": [ - 3739 + 3785 ] } ], "tournament_trophy_configs_by_pk": [ - 3730, + 3776, { "id": [ - 3818, + 3864, "uuid!" ] } ], "tournaments": [ - 3772, + 3818, { "distinct_on": [ - 3796, + 3842, "[tournaments_select_column!]" ], "limit": [ @@ -116181,19 +117066,19 @@ export default { 38 ], "order_by": [ - 3794, + 3840, "[tournaments_order_by!]" ], "where": [ - 3783 + 3829 ] } ], "tournaments_aggregate": [ - 3773, + 3819, { "distinct_on": [ - 3796, + 3842, "[tournaments_select_column!]" ], "limit": [ @@ -116203,28 +117088,28 @@ export default { 38 ], "order_by": [ - 3794, + 3840, "[tournaments_order_by!]" ], "where": [ - 3783 + 3829 ] } ], "tournaments_by_pk": [ - 3772, + 3818, { "id": [ - 3818, + 3864, "uuid!" ] } ], "v_gpu_pool_status": [ - 3821, + 3867, { "distinct_on": [ - 3829, + 3875, "[v_gpu_pool_status_select_column!]" ], "limit": [ @@ -116234,19 +117119,19 @@ export default { 38 ], "order_by": [ - 3828, + 3874, "[v_gpu_pool_status_order_by!]" ], "where": [ - 3825 + 3871 ] } ], "v_gpu_pool_status_aggregate": [ - 3822, + 3868, { "distinct_on": [ - 3829, + 3875, "[v_gpu_pool_status_select_column!]" ], "limit": [ @@ -116256,19 +117141,19 @@ export default { 38 ], "order_by": [ - 3828, + 3874, "[v_gpu_pool_status_order_by!]" ], "where": [ - 3825 + 3871 ] } ], "v_match_captains": [ - 3839, + 3885, { "distinct_on": [ - 3851, + 3897, "[v_match_captains_select_column!]" ], "limit": [ @@ -116278,19 +117163,19 @@ export default { 38 ], "order_by": [ - 3850, + 3896, "[v_match_captains_order_by!]" ], "where": [ - 3843 + 3889 ] } ], "v_match_captains_aggregate": [ - 3840, + 3886, { "distinct_on": [ - 3851, + 3897, "[v_match_captains_select_column!]" ], "limit": [ @@ -116300,19 +117185,19 @@ export default { 38 ], "order_by": [ - 3850, + 3896, "[v_match_captains_order_by!]" ], "where": [ - 3843 + 3889 ] } ], "v_match_clutches": [ - 3863, + 3909, { "distinct_on": [ - 3879, + 3925, "[v_match_clutches_select_column!]" ], "limit": [ @@ -116322,19 +117207,19 @@ export default { 38 ], "order_by": [ - 3878, + 3924, "[v_match_clutches_order_by!]" ], "where": [ - 3872 + 3918 ] } ], "v_match_clutches_aggregate": [ - 3864, + 3910, { "distinct_on": [ - 3879, + 3925, "[v_match_clutches_select_column!]" ], "limit": [ @@ -116344,19 +117229,19 @@ export default { 38 ], "order_by": [ - 3878, + 3924, "[v_match_clutches_order_by!]" ], "where": [ - 3872 + 3918 ] } ], "v_match_kill_pairs": [ - 3896, + 3942, { "distinct_on": [ - 3904, + 3950, "[v_match_kill_pairs_select_column!]" ], "limit": [ @@ -116366,19 +117251,19 @@ export default { 38 ], "order_by": [ - 3903, + 3949, "[v_match_kill_pairs_order_by!]" ], "where": [ - 3900 + 3946 ] } ], "v_match_kill_pairs_aggregate": [ - 3897, + 3943, { "distinct_on": [ - 3904, + 3950, "[v_match_kill_pairs_select_column!]" ], "limit": [ @@ -116388,19 +117273,19 @@ export default { 38 ], "order_by": [ - 3903, + 3949, "[v_match_kill_pairs_order_by!]" ], "where": [ - 3900 + 3946 ] } ], "v_match_lineup_buy_types": [ - 3914, + 3960, { "distinct_on": [ - 3922, + 3968, "[v_match_lineup_buy_types_select_column!]" ], "limit": [ @@ -116410,19 +117295,19 @@ export default { 38 ], "order_by": [ - 3921, + 3967, "[v_match_lineup_buy_types_order_by!]" ], "where": [ - 3918 + 3964 ] } ], "v_match_lineup_buy_types_aggregate": [ - 3915, + 3961, { "distinct_on": [ - 3922, + 3968, "[v_match_lineup_buy_types_select_column!]" ], "limit": [ @@ -116432,19 +117317,19 @@ export default { 38 ], "order_by": [ - 3921, + 3967, "[v_match_lineup_buy_types_order_by!]" ], "where": [ - 3918 + 3964 ] } ], "v_match_lineup_map_stats": [ - 3932, + 3978, { "distinct_on": [ - 3940, + 3986, "[v_match_lineup_map_stats_select_column!]" ], "limit": [ @@ -116454,19 +117339,19 @@ export default { 38 ], "order_by": [ - 3939, + 3985, "[v_match_lineup_map_stats_order_by!]" ], "where": [ - 3936 + 3982 ] } ], "v_match_lineup_map_stats_aggregate": [ - 3933, + 3979, { "distinct_on": [ - 3940, + 3986, "[v_match_lineup_map_stats_select_column!]" ], "limit": [ @@ -116476,19 +117361,19 @@ export default { 38 ], "order_by": [ - 3939, + 3985, "[v_match_lineup_map_stats_order_by!]" ], "where": [ - 3936 + 3982 ] } ], "v_match_map_backup_rounds": [ - 3950, + 3996, { "distinct_on": [ - 3961, + 4007, "[v_match_map_backup_rounds_select_column!]" ], "limit": [ @@ -116498,19 +117383,19 @@ export default { 38 ], "order_by": [ - 3960, + 4006, "[v_match_map_backup_rounds_order_by!]" ], "where": [ - 3954 + 4000 ] } ], "v_match_map_backup_rounds_aggregate": [ - 3951, + 3997, { "distinct_on": [ - 3961, + 4007, "[v_match_map_backup_rounds_select_column!]" ], "limit": [ @@ -116520,19 +117405,19 @@ export default { 38 ], "order_by": [ - 3960, + 4006, "[v_match_map_backup_rounds_order_by!]" ], "where": [ - 3954 + 4000 ] } ], "v_match_player_buy_types": [ - 3973, + 4019, { "distinct_on": [ - 3981, + 4027, "[v_match_player_buy_types_select_column!]" ], "limit": [ @@ -116542,19 +117427,19 @@ export default { 38 ], "order_by": [ - 3980, + 4026, "[v_match_player_buy_types_order_by!]" ], "where": [ - 3977 + 4023 ] } ], "v_match_player_buy_types_aggregate": [ - 3974, + 4020, { "distinct_on": [ - 3981, + 4027, "[v_match_player_buy_types_select_column!]" ], "limit": [ @@ -116564,19 +117449,19 @@ export default { 38 ], "order_by": [ - 3980, + 4026, "[v_match_player_buy_types_order_by!]" ], "where": [ - 3977 + 4023 ] } ], "v_match_player_opening_duels": [ - 3991, + 4037, { "distinct_on": [ - 4007, + 4053, "[v_match_player_opening_duels_select_column!]" ], "limit": [ @@ -116586,19 +117471,19 @@ export default { 38 ], "order_by": [ - 4006, + 4052, "[v_match_player_opening_duels_order_by!]" ], "where": [ - 4000 + 4046 ] } ], "v_match_player_opening_duels_aggregate": [ - 3992, + 4038, { "distinct_on": [ - 4007, + 4053, "[v_match_player_opening_duels_select_column!]" ], "limit": [ @@ -116608,19 +117493,19 @@ export default { 38 ], "order_by": [ - 4006, + 4052, "[v_match_player_opening_duels_order_by!]" ], "where": [ - 4000 + 4046 ] } ], "v_player_arch_nemesis": [ - 4024, + 4070, { "distinct_on": [ - 4032, + 4078, "[v_player_arch_nemesis_select_column!]" ], "limit": [ @@ -116630,19 +117515,19 @@ export default { 38 ], "order_by": [ - 4031, + 4077, "[v_player_arch_nemesis_order_by!]" ], "where": [ - 4028 + 4074 ] } ], "v_player_arch_nemesis_aggregate": [ - 4025, + 4071, { "distinct_on": [ - 4032, + 4078, "[v_player_arch_nemesis_select_column!]" ], "limit": [ @@ -116652,19 +117537,19 @@ export default { 38 ], "order_by": [ - 4031, + 4077, "[v_player_arch_nemesis_order_by!]" ], "where": [ - 4028 + 4074 ] } ], "v_player_damage": [ - 4042, + 4088, { "distinct_on": [ - 4050, + 4096, "[v_player_damage_select_column!]" ], "limit": [ @@ -116674,19 +117559,19 @@ export default { 38 ], "order_by": [ - 4049, + 4095, "[v_player_damage_order_by!]" ], "where": [ - 4046 + 4092 ] } ], "v_player_damage_aggregate": [ - 4043, + 4089, { "distinct_on": [ - 4050, + 4096, "[v_player_damage_select_column!]" ], "limit": [ @@ -116696,19 +117581,19 @@ export default { 38 ], "order_by": [ - 4049, + 4095, "[v_player_damage_order_by!]" ], "where": [ - 4046 + 4092 ] } ], "v_player_elo": [ - 4060, + 4106, { "distinct_on": [ - 4086, + 4132, "[v_player_elo_select_column!]" ], "limit": [ @@ -116718,19 +117603,19 @@ export default { 38 ], "order_by": [ - 4085, + 4131, "[v_player_elo_order_by!]" ], "where": [ - 4079 + 4125 ] } ], "v_player_elo_aggregate": [ - 4061, + 4107, { "distinct_on": [ - 4086, + 4132, "[v_player_elo_select_column!]" ], "limit": [ @@ -116740,19 +117625,19 @@ export default { 38 ], "order_by": [ - 4085, + 4131, "[v_player_elo_order_by!]" ], "where": [ - 4079 + 4125 ] } ], "v_player_map_losses": [ - 4111, + 4157, { "distinct_on": [ - 4119, + 4165, "[v_player_map_losses_select_column!]" ], "limit": [ @@ -116762,19 +117647,19 @@ export default { 38 ], "order_by": [ - 4118, + 4164, "[v_player_map_losses_order_by!]" ], "where": [ - 4115 + 4161 ] } ], "v_player_map_losses_aggregate": [ - 4112, + 4158, { "distinct_on": [ - 4119, + 4165, "[v_player_map_losses_select_column!]" ], "limit": [ @@ -116784,19 +117669,19 @@ export default { 38 ], "order_by": [ - 4118, + 4164, "[v_player_map_losses_order_by!]" ], "where": [ - 4115 + 4161 ] } ], "v_player_map_wins": [ - 4129, + 4175, { "distinct_on": [ - 4137, + 4183, "[v_player_map_wins_select_column!]" ], "limit": [ @@ -116806,19 +117691,19 @@ export default { 38 ], "order_by": [ - 4136, + 4182, "[v_player_map_wins_order_by!]" ], "where": [ - 4133 + 4179 ] } ], "v_player_map_wins_aggregate": [ - 4130, + 4176, { "distinct_on": [ - 4137, + 4183, "[v_player_map_wins_select_column!]" ], "limit": [ @@ -116828,19 +117713,19 @@ export default { 38 ], "order_by": [ - 4136, + 4182, "[v_player_map_wins_order_by!]" ], "where": [ - 4133 + 4179 ] } ], "v_player_match_head_to_head": [ - 4147, + 4193, { "distinct_on": [ - 4155, + 4201, "[v_player_match_head_to_head_select_column!]" ], "limit": [ @@ -116850,19 +117735,19 @@ export default { 38 ], "order_by": [ - 4154, + 4200, "[v_player_match_head_to_head_order_by!]" ], "where": [ - 4151 + 4197 ] } ], "v_player_match_head_to_head_aggregate": [ - 4148, + 4194, { "distinct_on": [ - 4155, + 4201, "[v_player_match_head_to_head_select_column!]" ], "limit": [ @@ -116872,19 +117757,19 @@ export default { 38 ], "order_by": [ - 4154, + 4200, "[v_player_match_head_to_head_order_by!]" ], "where": [ - 4151 + 4197 ] } ], "v_player_match_map_hltv": [ - 4165, + 4211, { "distinct_on": [ - 4183, + 4229, "[v_player_match_map_hltv_select_column!]" ], "limit": [ @@ -116894,19 +117779,19 @@ export default { 38 ], "order_by": [ - 4182, + 4228, "[v_player_match_map_hltv_order_by!]" ], "where": [ - 4174 + 4220 ] } ], "v_player_match_map_hltv_aggregate": [ - 4166, + 4212, { "distinct_on": [ - 4183, + 4229, "[v_player_match_map_hltv_select_column!]" ], "limit": [ @@ -116916,19 +117801,19 @@ export default { 38 ], "order_by": [ - 4182, + 4228, "[v_player_match_map_hltv_order_by!]" ], "where": [ - 4174 + 4220 ] } ], "v_player_match_map_roles": [ - 4202, + 4248, { "distinct_on": [ - 4210, + 4256, "[v_player_match_map_roles_select_column!]" ], "limit": [ @@ -116938,19 +117823,19 @@ export default { 38 ], "order_by": [ - 4209, + 4255, "[v_player_match_map_roles_order_by!]" ], "where": [ - 4206 + 4252 ] } ], "v_player_match_map_roles_aggregate": [ - 4203, + 4249, { "distinct_on": [ - 4210, + 4256, "[v_player_match_map_roles_select_column!]" ], "limit": [ @@ -116960,19 +117845,19 @@ export default { 38 ], "order_by": [ - 4209, + 4255, "[v_player_match_map_roles_order_by!]" ], "where": [ - 4206 + 4252 ] } ], "v_player_match_performance": [ - 4220, + 4266, { "distinct_on": [ - 4228, + 4274, "[v_player_match_performance_select_column!]" ], "limit": [ @@ -116982,19 +117867,19 @@ export default { 38 ], "order_by": [ - 4227, + 4273, "[v_player_match_performance_order_by!]" ], "where": [ - 4224 + 4270 ] } ], "v_player_match_performance_aggregate": [ - 4221, + 4267, { "distinct_on": [ - 4228, + 4274, "[v_player_match_performance_select_column!]" ], "limit": [ @@ -117004,19 +117889,19 @@ export default { 38 ], "order_by": [ - 4227, + 4273, "[v_player_match_performance_order_by!]" ], "where": [ - 4224 + 4270 ] } ], "v_player_match_rating": [ - 4238, + 4284, { "distinct_on": [ - 4246, + 4292, "[v_player_match_rating_select_column!]" ], "limit": [ @@ -117026,19 +117911,19 @@ export default { 38 ], "order_by": [ - 4245, + 4291, "[v_player_match_rating_order_by!]" ], "where": [ - 4242 + 4288 ] } ], "v_player_match_rating_aggregate": [ - 4239, + 4285, { "distinct_on": [ - 4246, + 4292, "[v_player_match_rating_select_column!]" ], "limit": [ @@ -117048,19 +117933,19 @@ export default { 38 ], "order_by": [ - 4245, + 4291, "[v_player_match_rating_order_by!]" ], "where": [ - 4242 + 4288 ] } ], "v_player_multi_kills": [ - 4256, + 4302, { "distinct_on": [ - 4272, + 4318, "[v_player_multi_kills_select_column!]" ], "limit": [ @@ -117070,19 +117955,19 @@ export default { 38 ], "order_by": [ - 4271, + 4317, "[v_player_multi_kills_order_by!]" ], "where": [ - 4265 + 4311 ] } ], "v_player_multi_kills_aggregate": [ - 4257, + 4303, { "distinct_on": [ - 4272, + 4318, "[v_player_multi_kills_select_column!]" ], "limit": [ @@ -117092,19 +117977,19 @@ export default { 38 ], "order_by": [ - 4271, + 4317, "[v_player_multi_kills_order_by!]" ], "where": [ - 4265 + 4311 ] } ], "v_player_weapon_damage": [ - 4289, + 4335, { "distinct_on": [ - 4297, + 4343, "[v_player_weapon_damage_select_column!]" ], "limit": [ @@ -117114,19 +117999,19 @@ export default { 38 ], "order_by": [ - 4296, + 4342, "[v_player_weapon_damage_order_by!]" ], "where": [ - 4293 + 4339 ] } ], "v_player_weapon_damage_aggregate": [ - 4290, + 4336, { "distinct_on": [ - 4297, + 4343, "[v_player_weapon_damage_select_column!]" ], "limit": [ @@ -117136,19 +118021,19 @@ export default { 38 ], "order_by": [ - 4296, + 4342, "[v_player_weapon_damage_order_by!]" ], "where": [ - 4293 + 4339 ] } ], "v_player_weapon_kills": [ - 4307, + 4353, { "distinct_on": [ - 4315, + 4361, "[v_player_weapon_kills_select_column!]" ], "limit": [ @@ -117158,19 +118043,19 @@ export default { 38 ], "order_by": [ - 4314, + 4360, "[v_player_weapon_kills_order_by!]" ], "where": [ - 4311 + 4357 ] } ], "v_player_weapon_kills_aggregate": [ - 4308, + 4354, { "distinct_on": [ - 4315, + 4361, "[v_player_weapon_kills_select_column!]" ], "limit": [ @@ -117180,19 +118065,19 @@ export default { 38 ], "order_by": [ - 4314, + 4360, "[v_player_weapon_kills_order_by!]" ], "where": [ - 4311 + 4357 ] } ], "v_pool_maps": [ - 4325, + 4371, { "distinct_on": [ - 4342, + 4388, "[v_pool_maps_select_column!]" ], "limit": [ @@ -117202,19 +118087,19 @@ export default { 38 ], "order_by": [ - 4341, + 4387, "[v_pool_maps_order_by!]" ], "where": [ - 4334 + 4380 ] } ], "v_pool_maps_aggregate": [ - 4326, + 4372, { "distinct_on": [ - 4342, + 4388, "[v_pool_maps_select_column!]" ], "limit": [ @@ -117224,19 +118109,19 @@ export default { 38 ], "order_by": [ - 4341, + 4387, "[v_pool_maps_order_by!]" ], "where": [ - 4334 + 4380 ] } ], "v_steam_account_pool_status": [ - 4349, + 4395, { "distinct_on": [ - 4357, + 4403, "[v_steam_account_pool_status_select_column!]" ], "limit": [ @@ -117246,19 +118131,19 @@ export default { 38 ], "order_by": [ - 4356, + 4402, "[v_steam_account_pool_status_order_by!]" ], "where": [ - 4353 + 4399 ] } ], "v_steam_account_pool_status_aggregate": [ - 4350, + 4396, { "distinct_on": [ - 4357, + 4403, "[v_steam_account_pool_status_select_column!]" ], "limit": [ @@ -117268,19 +118153,19 @@ export default { 38 ], "order_by": [ - 4356, + 4402, "[v_steam_account_pool_status_order_by!]" ], "where": [ - 4353 + 4399 ] } ], "v_team_ranks": [ - 4367, + 4413, { "distinct_on": [ - 4377, + 4423, "[v_team_ranks_select_column!]" ], "limit": [ @@ -117290,19 +118175,19 @@ export default { 38 ], "order_by": [ - 4376, + 4422, "[v_team_ranks_order_by!]" ], "where": [ - 4371 + 4417 ] } ], "v_team_ranks_aggregate": [ - 4368, + 4414, { "distinct_on": [ - 4377, + 4423, "[v_team_ranks_select_column!]" ], "limit": [ @@ -117312,19 +118197,19 @@ export default { 38 ], "order_by": [ - 4376, + 4422, "[v_team_ranks_order_by!]" ], "where": [ - 4371 + 4417 ] } ], "v_team_reputation": [ - 4387, + 4433, { "distinct_on": [ - 4397, + 4443, "[v_team_reputation_select_column!]" ], "limit": [ @@ -117334,19 +118219,19 @@ export default { 38 ], "order_by": [ - 4396, + 4442, "[v_team_reputation_order_by!]" ], "where": [ - 4391 + 4437 ] } ], "v_team_reputation_aggregate": [ - 4388, + 4434, { "distinct_on": [ - 4397, + 4443, "[v_team_reputation_select_column!]" ], "limit": [ @@ -117356,19 +118241,19 @@ export default { 38 ], "order_by": [ - 4396, + 4442, "[v_team_reputation_order_by!]" ], "where": [ - 4391 + 4437 ] } ], "v_team_stage_results": [ - 4407, + 4453, { "distinct_on": [ - 4439, + 4485, "[v_team_stage_results_select_column!]" ], "limit": [ @@ -117378,19 +118263,19 @@ export default { 38 ], "order_by": [ - 4437, + 4483, "[v_team_stage_results_order_by!]" ], "where": [ - 4426 + 4472 ] } ], "v_team_stage_results_aggregate": [ - 4408, + 4454, { "distinct_on": [ - 4439, + 4485, "[v_team_stage_results_select_column!]" ], "limit": [ @@ -117400,32 +118285,32 @@ export default { 38 ], "order_by": [ - 4437, + 4483, "[v_team_stage_results_order_by!]" ], "where": [ - 4426 + 4472 ] } ], "v_team_stage_results_by_pk": [ - 4407, + 4453, { "tournament_stage_id": [ - 3818, + 3864, "uuid!" ], "tournament_team_id": [ - 3818, + 3864, "uuid!" ] } ], "v_team_tournament_results": [ - 4467, + 4513, { "distinct_on": [ - 4493, + 4539, "[v_team_tournament_results_select_column!]" ], "limit": [ @@ -117435,19 +118320,19 @@ export default { 38 ], "order_by": [ - 4492, + 4538, "[v_team_tournament_results_order_by!]" ], "where": [ - 4486 + 4532 ] } ], "v_team_tournament_results_aggregate": [ - 4468, + 4514, { "distinct_on": [ - 4493, + 4539, "[v_team_tournament_results_select_column!]" ], "limit": [ @@ -117457,19 +118342,19 @@ export default { 38 ], "order_by": [ - 4492, + 4538, "[v_team_tournament_results_order_by!]" ], "where": [ - 4486 + 4532 ] } ], "v_tournament_player_stats": [ - 4518, + 4564, { "distinct_on": [ - 4544, + 4590, "[v_tournament_player_stats_select_column!]" ], "limit": [ @@ -117479,19 +118364,19 @@ export default { 38 ], "order_by": [ - 4543, + 4589, "[v_tournament_player_stats_order_by!]" ], "where": [ - 4537 + 4583 ] } ], "v_tournament_player_stats_aggregate": [ - 4519, + 4565, { "distinct_on": [ - 4544, + 4590, "[v_tournament_player_stats_select_column!]" ], "limit": [ @@ -117501,16 +118386,16 @@ export default { 38 ], "order_by": [ - 4543, + 4589, "[v_tournament_player_stats_order_by!]" ], "where": [ - 4537 + 4583 ] } ], "__typename": [ - 70 + 75 ] }, "Mutation": { @@ -117518,176 +118403,195 @@ export default { 55, { "match_id": [ - 3818, + 3864, "uuid!" ] } ], "ResetTournamentMatch": [ - 73, + 78, { "match_id": [ - 3818, + 3864, "uuid!" ], "reset_status": [ - 70 + 75 ], "scheduled_at": [ - 3421 + 3467 ], "winning_lineup_id": [ - 3818 + 3864 ] } ], "acceptInvite": [ - 73, + 78, { "invite_id": [ - 3818, + 3864, "uuid!" ], "type": [ - 70, + 75, "String!" ] } ], "addDraftPlayer": [ - 73, + 78, { "draftGameId": [ - 3818, + 3864, "uuid!" ], "steamId": [ - 70, + 75, + "String!" + ] + } + ], + "addSteamPresenceBotAccount": [ + 78, + { + "bot_secret": [ + 75, + "String!" + ], + "friend_capacity": [ + 38 + ], + "username": [ + 75, "String!" ] } ], "approveNameChange": [ - 73, + 78, { "name": [ - 70, + 75, "String!" ], "steam_id": [ - 169, + 174, "bigint!" ] } ], + "assignSteamPresenceBot": [ + 70 + ], "attachDemo": [ - 82 + 87 ], "bakeShaders": [ - 73, + 78, { "game_server_node_id": [ - 3818, + 3864, "uuid!" ] } ], "callForOrganizer": [ - 73, + 78, { "match_id": [ - 70, + 75, "String!" ] } ], "cancelBakeShaders": [ - 73, + 78, { "game_server_node_id": [ - 3818, + 3864, "uuid!" ] } ], "cancelClipRender": [ - 73, + 78, { "job_id": [ - 3818, + 3864, "uuid!" ] } ], "cancelClipRenderBatch": [ - 73, + 78, { "match_map_id": [ - 3818, + 3864, "uuid!" ] } ], "cancelMatch": [ - 73, + 78, { "match_id": [ - 3818, + 3864, "uuid!" ] } ], "cancelReparseAllDemos": [ - 73 + 78 ], "cancelScrimRequest": [ - 73, + 78, { "request_id": [ - 3818, + 3864, "uuid!" ] } ], "checkIntoMatch": [ - 73, + 78, { "match_id": [ - 3818, + 3864, "uuid!" ] } ], "clearClipRenderBatch": [ - 73, + 78, { "match_map_id": [ - 3818, + 3864, "uuid!" ] } ], "clearFinishedClipRenders": [ - 73 + 78 ], "clearPendingMatchImport": [ 53, { "valve_match_id": [ - 70, + 75, "String!" ] } ], "counterScrimRequest": [ - 73, + 78, { "proposed_scheduled_at": [ - 3421, + 3467, "timestamptz!" ], "request_id": [ - 3818, + 3864, "uuid!" ] } @@ -117696,7 +118600,7 @@ export default { 2, { "label": [ - 70, + 75, "String!" ] } @@ -117708,25 +118612,25 @@ export default { 38 ], "match_map_id": [ - 3818, + 3864, "uuid!" ], "preset": [ - 70, + 75, "String!" ], "resolution": [ - 70 + 75 ], "target_name": [ - 70 + 75 ], "target_steam_id": [ - 70, + 75, "String!" ], "title": [ - 70 + 75 ] } ], @@ -117740,10 +118644,10 @@ export default { } ], "createClips": [ - 73, + 78, { "match_id": [ - 3818, + 3864, "uuid!" ] } @@ -117752,7 +118656,7 @@ export default { 14, { "settings": [ - 1235, + 1240, "jsonb!" ] } @@ -117769,54 +118673,54 @@ export default { "ScheduledLineupInput!" ], "options": [ - 1235, + 1240, "jsonb!" ], "scheduled_at": [ - 70, + 75, "String!" ] } ], "createServerDirectory": [ - 73, + 78, { "dir_path": [ - 70, + 75, "String!" ], "node_id": [ - 70, + 75, "String!" ], "server_id": [ - 70 + 75 ] } ], "deleteClip": [ - 73, + 78, { "clip_id": [ - 3818, + 3864, "uuid!" ] } ], "deleteMatch": [ - 73, + 78, { "match_id": [ - 70, + 75, "String!" ] } ], "deleteNewsPost": [ - 73, + 78, { "id": [ - 3818, + 3864, "uuid!" ] } @@ -117825,851 +118729,851 @@ export default { 19, { "keys": [ - 70, + 75, "[String!]" ] } ], "deleteServerItem": [ - 73, + 78, { "node_id": [ - 70, + 75, "String!" ], "path": [ - 70, + 75, "String!" ], "server_id": [ - 70 + 75 ] } ], "deleteTournament": [ - 73, + 78, { "tournament_id": [ - 3818, + 3864, "uuid!" ] } ], "delete__map_pool": [ - 91, + 96, { "where": [ - 86, + 91, "_map_pool_bool_exp!" ] } ], "delete__map_pool_by_pk": [ - 83, + 88, { "map_id": [ - 3818, + 3864, "uuid!" ], "map_pool_id": [ - 3818, + 3864, "uuid!" ] } ], "delete_abandoned_matches": [ - 118, + 123, { "where": [ - 110, + 115, "abandoned_matches_bool_exp!" ] } ], "delete_abandoned_matches_by_pk": [ - 101, + 106, { "id": [ - 3818, + 3864, "uuid!" ] } ], "delete_api_keys": [ - 152, + 157, { "where": [ - 146, + 151, "api_keys_bool_exp!" ] } ], "delete_api_keys_by_pk": [ - 142, + 147, { "id": [ - 3818, + 3864, "uuid!" ] } ], "delete_clip_render_jobs": [ - 197, + 202, { "where": [ - 186, + 191, "clip_render_jobs_bool_exp!" ] } ], "delete_clip_render_jobs_by_pk": [ - 174, + 179, { "id": [ - 3818, + 3864, "uuid!" ] } ], "delete_db_backups": [ - 235, + 240, { "where": [ - 229, + 234, "db_backups_bool_exp!" ] } ], "delete_db_backups_by_pk": [ - 225, + 230, { "id": [ - 3818, + 3864, "uuid!" ] } ], "delete_draft_game_picks": [ - 271, + 276, { "where": [ - 263, + 268, "draft_game_picks_bool_exp!" ] } ], "delete_draft_game_picks_by_pk": [ - 252, + 257, { "id": [ - 3818, + 3864, "uuid!" ] } ], "delete_draft_game_players": [ - 316, + 321, { "where": [ - 308, + 313, "draft_game_players_bool_exp!" ] } ], "delete_draft_game_players_by_pk": [ - 297, + 302, { "draft_game_id": [ - 3818, + 3864, "uuid!" ], "steam_id": [ - 169, + 174, "bigint!" ] } ], "delete_draft_games": [ - 361, + 366, { "where": [ - 353, + 358, "draft_games_bool_exp!" ] } ], "delete_draft_games_by_pk": [ - 342, + 347, { "id": [ - 3818, + 3864, "uuid!" ] } ], "delete_e_check_in_settings": [ - 398, + 403, { "where": [ - 391, + 396, "e_check_in_settings_bool_exp!" ] } ], "delete_e_check_in_settings_by_pk": [ - 388, + 393, { "value": [ - 70, + 75, "String!" ] } ], "delete_e_draft_game_captain_selection": [ - 418, + 423, { "where": [ - 411, + 416, "e_draft_game_captain_selection_bool_exp!" ] } ], "delete_e_draft_game_captain_selection_by_pk": [ - 408, + 413, { "value": [ - 70, + 75, "String!" ] } ], "delete_e_draft_game_draft_order": [ - 439, + 444, { "where": [ - 432, + 437, "e_draft_game_draft_order_bool_exp!" ] } ], "delete_e_draft_game_draft_order_by_pk": [ - 429, + 434, { "value": [ - 70, + 75, "String!" ] } ], "delete_e_draft_game_mode": [ - 460, + 465, { "where": [ - 453, + 458, "e_draft_game_mode_bool_exp!" ] } ], "delete_e_draft_game_mode_by_pk": [ - 450, + 455, { "value": [ - 70, + 75, "String!" ] } ], "delete_e_draft_game_player_status": [ - 481, + 486, { "where": [ - 474, + 479, "e_draft_game_player_status_bool_exp!" ] } ], "delete_e_draft_game_player_status_by_pk": [ - 471, + 476, { "value": [ - 70, + 75, "String!" ] } ], "delete_e_draft_game_status": [ - 502, + 507, { "where": [ - 495, + 500, "e_draft_game_status_bool_exp!" ] } ], "delete_e_draft_game_status_by_pk": [ - 492, + 497, { "value": [ - 70, + 75, "String!" ] } ], "delete_e_friend_status": [ - 523, + 528, { "where": [ - 516, + 521, "e_friend_status_bool_exp!" ] } ], "delete_e_friend_status_by_pk": [ - 513, + 518, { "value": [ - 70, + 75, "String!" ] } ], "delete_e_game_cfg_types": [ - 544, + 549, { "where": [ - 537, + 542, "e_game_cfg_types_bool_exp!" ] } ], "delete_e_game_cfg_types_by_pk": [ - 534, + 539, { "value": [ - 70, + 75, "String!" ] } ], "delete_e_game_server_node_statuses": [ - 564, + 569, { "where": [ - 557, + 562, "e_game_server_node_statuses_bool_exp!" ] } ], "delete_e_game_server_node_statuses_by_pk": [ - 554, + 559, { "value": [ - 70, + 75, "String!" ] } ], "delete_e_lobby_access": [ - 585, + 590, { "where": [ - 578, + 583, "e_lobby_access_bool_exp!" ] } ], "delete_e_lobby_access_by_pk": [ - 575, + 580, { "value": [ - 70, + 75, "String!" ] } ], "delete_e_lobby_player_status": [ - 606, + 611, { "where": [ - 599, + 604, "e_lobby_player_status_bool_exp!" ] } ], "delete_e_lobby_player_status_by_pk": [ - 596, + 601, { "value": [ - 70, + 75, "String!" ] } ], "delete_e_map_pool_types": [ - 626, + 631, { "where": [ - 619, + 624, "e_map_pool_types_bool_exp!" ] } ], "delete_e_map_pool_types_by_pk": [ - 616, + 621, { "value": [ - 70, + 75, "String!" ] } ], "delete_e_match_clip_visibility": [ - 647, + 652, { "where": [ - 640, + 645, "e_match_clip_visibility_bool_exp!" ] } ], "delete_e_match_clip_visibility_by_pk": [ - 637, + 642, { "value": [ - 70, + 75, "String!" ] } ], "delete_e_match_map_status": [ - 667, + 672, { "where": [ - 660, + 665, "e_match_map_status_bool_exp!" ] } ], "delete_e_match_map_status_by_pk": [ - 657, + 662, { "value": [ - 70, + 75, "String!" ] } ], "delete_e_match_mode": [ - 688, + 693, { "where": [ - 681, + 686, "e_match_mode_bool_exp!" ] } ], "delete_e_match_mode_by_pk": [ - 678, + 683, { "value": [ - 70, + 75, "String!" ] } ], "delete_e_match_status": [ - 708, + 713, { "where": [ - 701, + 706, "e_match_status_bool_exp!" ] } ], "delete_e_match_status_by_pk": [ - 698, + 703, { "value": [ - 70, + 75, "String!" ] } ], "delete_e_match_types": [ - 729, + 734, { "where": [ - 722, + 727, "e_match_types_bool_exp!" ] } ], "delete_e_match_types_by_pk": [ - 719, + 724, { "value": [ - 70, + 75, "String!" ] } ], "delete_e_notification_types": [ - 750, + 755, { "where": [ - 743, + 748, "e_notification_types_bool_exp!" ] } ], "delete_e_notification_types_by_pk": [ - 740, + 745, { "value": [ - 70, + 75, "String!" ] } ], "delete_e_objective_types": [ - 770, + 775, { "where": [ - 763, + 768, "e_objective_types_bool_exp!" ] } ], "delete_e_objective_types_by_pk": [ - 760, + 765, { "value": [ - 70, + 75, "String!" ] } ], "delete_e_player_roles": [ - 790, + 795, { "where": [ - 783, + 788, "e_player_roles_bool_exp!" ] } ], "delete_e_player_roles_by_pk": [ - 780, + 785, { "value": [ - 70, + 75, "String!" ] } ], "delete_e_ready_settings": [ - 810, + 815, { "where": [ - 803, + 808, "e_ready_settings_bool_exp!" ] } ], "delete_e_ready_settings_by_pk": [ - 800, + 805, { "value": [ - 70, + 75, "String!" ] } ], "delete_e_sanction_types": [ - 830, + 835, { "where": [ - 823, + 828, "e_sanction_types_bool_exp!" ] } ], "delete_e_sanction_types_by_pk": [ - 820, + 825, { "value": [ - 70, + 75, "String!" ] } ], "delete_e_scrim_request_statuses": [ - 851, + 856, { "where": [ - 844, + 849, "e_scrim_request_statuses_bool_exp!" ] } ], "delete_e_scrim_request_statuses_by_pk": [ - 841, + 846, { "value": [ - 70, + 75, "String!" ] } ], "delete_e_server_types": [ - 871, + 876, { "where": [ - 864, + 869, "e_server_types_bool_exp!" ] } ], "delete_e_server_types_by_pk": [ - 861, + 866, { "value": [ - 70, + 75, "String!" ] } ], "delete_e_sides": [ - 891, + 896, { "where": [ - 884, + 889, "e_sides_bool_exp!" ] } ], "delete_e_sides_by_pk": [ - 881, + 886, { "value": [ - 70, + 75, "String!" ] } ], "delete_e_system_alert_types": [ - 911, + 916, { "where": [ - 904, + 909, "e_system_alert_types_bool_exp!" ] } ], "delete_e_system_alert_types_by_pk": [ - 901, + 906, { "value": [ - 70, + 75, "String!" ] } ], "delete_e_team_roles": [ - 931, + 936, { "where": [ - 924, + 929, "e_team_roles_bool_exp!" ] } ], "delete_e_team_roles_by_pk": [ - 921, + 926, { "value": [ - 70, + 75, "String!" ] } ], "delete_e_team_roster_statuses": [ - 952, + 957, { "where": [ - 945, + 950, "e_team_roster_statuses_bool_exp!" ] } ], "delete_e_team_roster_statuses_by_pk": [ - 942, + 947, { "value": [ - 70, + 75, "String!" ] } ], "delete_e_timeout_settings": [ - 972, + 977, { "where": [ - 965, + 970, "e_timeout_settings_bool_exp!" ] } ], "delete_e_timeout_settings_by_pk": [ - 962, + 967, { "value": [ - 70, + 75, "String!" ] } ], "delete_e_tournament_stage_types": [ - 992, + 997, { "where": [ - 985, + 990, "e_tournament_stage_types_bool_exp!" ] } ], "delete_e_tournament_stage_types_by_pk": [ - 982, + 987, { "value": [ - 70, + 75, "String!" ] } ], "delete_e_tournament_status": [ - 1013, + 1018, { "where": [ - 1006, + 1011, "e_tournament_status_bool_exp!" ] } ], "delete_e_tournament_status_by_pk": [ - 1003, + 1008, { "value": [ - 70, + 75, "String!" ] } ], "delete_e_utility_types": [ - 1034, + 1039, { "where": [ - 1027, + 1032, "e_utility_types_bool_exp!" ] } ], "delete_e_utility_types_by_pk": [ - 1024, + 1029, { "value": [ - 70, + 75, "String!" ] } ], "delete_e_veto_pick_types": [ - 1054, + 1059, { "where": [ - 1047, + 1052, "e_veto_pick_types_bool_exp!" ] } ], "delete_e_veto_pick_types_by_pk": [ - 1044, + 1049, { "value": [ - 70, + 75, "String!" ] } ], "delete_e_winning_reasons": [ - 1074, + 1079, { "where": [ - 1067, + 1072, "e_winning_reasons_bool_exp!" ] } ], "delete_e_winning_reasons_by_pk": [ - 1064, + 1069, { "value": [ - 70, + 75, "String!" ] } ], "delete_friends": [ - 1096, + 1101, { "where": [ - 1090, + 1095, "friends_bool_exp!" ] } ], "delete_friends_by_pk": [ - 1086, + 1091, { "other_player_steam_id": [ - 169, + 174, "bigint!" ], "player_steam_id": [ - 169, + 174, "bigint!" ] } ], "delete_game_server_nodes": [ - 1136, + 1141, { "where": [ - 1125, + 1130, "game_server_nodes_bool_exp!" ] } ], "delete_game_server_nodes_by_pk": [ - 1113, + 1118, { "id": [ - 70, + 75, "String!" ] } ], "delete_game_versions": [ - 1178, + 1183, { "where": [ - 1169, + 1174, "game_versions_bool_exp!" ] } ], "delete_game_versions_by_pk": [ - 1164, + 1169, { "build_id": [ 38, @@ -118678,1416 +119582,1434 @@ export default { } ], "delete_gamedata_signature_validations": [ - 1211, + 1216, { "where": [ - 1202, + 1207, "gamedata_signature_validations_bool_exp!" ] } ], "delete_gamedata_signature_validations_by_pk": [ - 1197, + 1202, { "id": [ - 3818, + 3864, "uuid!" ] } ], "delete_leaderboard_entries": [ - 1247, + 1252, { "where": [ - 1242, + 1247, "leaderboard_entries_bool_exp!" ] } ], "delete_lobbies": [ - 1269, + 1274, { "where": [ - 1264, + 1269, "lobbies_bool_exp!" ] } ], "delete_lobbies_by_pk": [ - 1261, + 1266, { "id": [ - 3818, + 3864, "uuid!" ] } ], "delete_lobby_players": [ - 1299, + 1304, { "where": [ - 1291, + 1296, "lobby_players_bool_exp!" ] } ], "delete_lobby_players_by_pk": [ - 1280, + 1285, { "lobby_id": [ - 3818, + 3864, "uuid!" ], "steam_id": [ - 169, + 174, "bigint!" ] } ], "delete_map_pools": [ - 1333, + 1338, { "where": [ - 1328, + 1333, "map_pools_bool_exp!" ] } ], "delete_map_pools_by_pk": [ - 1325, + 1330, { "id": [ - 3818, + 3864, "uuid!" ] } ], "delete_maps": [ - 1360, + 1365, { "where": [ - 1353, + 1358, "maps_bool_exp!" ] } ], "delete_maps_by_pk": [ - 1344, + 1349, { "id": [ - 3818, + 3864, "uuid!" ] } ], "delete_match_clips": [ - 1390, + 1395, { "where": [ - 1382, + 1387, "match_clips_bool_exp!" ] } ], "delete_match_clips_by_pk": [ - 1373, + 1378, { "id": [ - 3818, + 3864, "uuid!" ] } ], "delete_match_demo_sessions": [ - 1436, + 1441, { "where": [ - 1425, + 1430, "match_demo_sessions_bool_exp!" ] } ], "delete_match_demo_sessions_by_pk": [ - 1415, + 1420, { "id": [ - 3818, + 3864, "uuid!" ] } ], "delete_match_lineup_players": [ - 1480, + 1485, { "where": [ - 1472, + 1477, "match_lineup_players_bool_exp!" ] } ], "delete_match_lineup_players_by_pk": [ - 1461, + 1466, { "id": [ - 3818, + 3864, "uuid!" ] } ], "delete_match_lineups": [ - 1523, + 1528, { "where": [ - 1515, + 1520, "match_lineups_bool_exp!" ] } ], "delete_match_lineups_by_pk": [ - 1506, + 1511, { "id": [ - 3818, + 3864, "uuid!" ] } ], "delete_match_map_demos": [ - 1571, + 1576, { "where": [ - 1560, + 1565, "match_map_demos_bool_exp!" ] } ], "delete_match_map_demos_by_pk": [ - 1548, + 1553, { "id": [ - 3818, + 3864, "uuid!" ] } ], "delete_match_map_rounds": [ - 1616, + 1621, { "where": [ - 1608, + 1613, "match_map_rounds_bool_exp!" ] } ], "delete_match_map_rounds_by_pk": [ - 1599, + 1604, { "id": [ - 3818, + 3864, "uuid!" ] } ], "delete_match_map_veto_picks": [ - 1654, + 1659, { "where": [ - 1647, + 1652, "match_map_veto_picks_bool_exp!" ] } ], "delete_match_map_veto_picks_by_pk": [ - 1640, + 1645, { "id": [ - 3818, + 3864, "uuid!" ] } ], "delete_match_maps": [ - 1681, + 1686, { "where": [ - 1673, + 1678, "match_maps_bool_exp!" ] } ], "delete_match_maps_by_pk": [ - 1664, + 1669, { "id": [ - 3818, + 3864, "uuid!" ] } ], "delete_match_options": [ - 1716, + 1721, { "where": [ - 1710, + 1715, "match_options_bool_exp!" ] } ], "delete_match_options_by_pk": [ - 1706, + 1711, { "id": [ - 3818, + 3864, "uuid!" ] } ], "delete_match_region_veto_picks": [ - 1748, + 1753, { "where": [ - 1741, + 1746, "match_region_veto_picks_bool_exp!" ] } ], "delete_match_region_veto_picks_by_pk": [ - 1734, + 1739, { "id": [ - 3818, + 3864, "uuid!" ] } ], "delete_match_streams": [ - 1781, + 1786, { "where": [ - 1770, + 1775, "match_streams_bool_exp!" ] } ], "delete_match_streams_by_pk": [ - 1758, + 1763, { "id": [ - 3818, + 3864, "uuid!" ] } ], "delete_match_type_cfgs": [ - 1816, + 1821, { "where": [ - 1811, + 1816, "match_type_cfgs_bool_exp!" ] } ], "delete_match_type_cfgs_by_pk": [ - 1808, + 1813, { "type": [ - 539, + 544, "e_game_cfg_types_enum!" ] } ], "delete_matches": [ - 1843, + 1848, { "where": [ - 1835, + 1840, "matches_bool_exp!" ] } ], "delete_matches_by_pk": [ - 1826, + 1831, { "id": [ - 3818, + 3864, "uuid!" ] } ], "delete_migration_hashes_hashes": [ - 1876, + 1881, { "where": [ - 1871, + 1876, "migration_hashes_hashes_bool_exp!" ] } ], "delete_migration_hashes_hashes_by_pk": [ - 1868, + 1873, { "name": [ - 70, + 75, "String!" ] } ], "delete_my_friends": [ - 1908, + 1913, { "where": [ - 1898, + 1903, "my_friends_bool_exp!" ] } ], "delete_news_articles": [ - 1942, + 1947, { "where": [ - 1936, + 1941, "news_articles_bool_exp!" ] } ], "delete_news_articles_by_pk": [ - 1932, + 1937, { "id": [ - 3818, + 3864, "uuid!" ] } ], "delete_notifications": [ - 1982, + 1987, { "where": [ - 1971, + 1976, "notifications_bool_exp!" ] } ], "delete_notifications_by_pk": [ - 1959, + 1964, { "id": [ - 3818, + 3864, "uuid!" ] } ], "delete_pending_match_import_players": [ - 2029, + 2034, { "where": [ - 2021, + 2026, "pending_match_import_players_bool_exp!" ] } ], "delete_pending_match_import_players_by_pk": [ - 2012, + 2017, { "steam_id": [ - 169, + 174, "bigint!" ], "valve_match_id": [ - 2009, + 2014, "numeric!" ] } ], "delete_pending_match_imports": [ - 2063, + 2068, { "where": [ - 2057, + 2062, "pending_match_imports_bool_exp!" ] } ], "delete_pending_match_imports_by_pk": [ - 2053, + 2058, { "valve_match_id": [ - 2009, + 2014, "numeric!" ] } ], "delete_player_aim_stats_demo": [ - 2091, + 2096, { "where": [ - 2085, + 2090, "player_aim_stats_demo_bool_exp!" ] } ], "delete_player_aim_stats_demo_by_pk": [ - 2081, + 2086, { "attacker_steam_id": [ - 169, + 174, "bigint!" ], "match_map_id": [ - 3818, + 3864, "uuid!" ] } ], "delete_player_aim_weapon_stats": [ - 2125, + 2130, { "where": [ - 2117, + 2122, "player_aim_weapon_stats_bool_exp!" ] } ], "delete_player_aim_weapon_stats_by_pk": [ - 2108, + 2113, { "match_map_id": [ - 3818, + 3864, "uuid!" ], "steam_id": [ - 169, + 174, "bigint!" ], "weapon_class": [ - 70, + 75, "String!" ] } ], "delete_player_assists": [ - 2168, + 2173, { "where": [ - 2160, + 2165, "player_assists_bool_exp!" ] } ], "delete_player_assists_by_pk": [ - 2149, + 2154, { "attacked_steam_id": [ - 169, + 174, "bigint!" ], "attacker_steam_id": [ - 169, + 174, "bigint!" ], "match_map_id": [ - 3818, + 3864, "uuid!" ], "time": [ - 3421, + 3467, "timestamptz!" ] } ], "delete_player_damages": [ - 2229, + 2234, { "where": [ - 2221, + 2226, "player_damages_bool_exp!" ] } ], "delete_player_damages_by_pk": [ - 2212, + 2217, { "id": [ - 3818, + 3864, "uuid!" ], "match_map_id": [ - 3818, + 3864, "uuid!" ], "time": [ - 3421, + 3467, "timestamptz!" ] } ], "delete_player_elo": [ - 2263, + 2268, { "where": [ - 2257, + 2262, "player_elo_bool_exp!" ] } ], "delete_player_elo_by_pk": [ - 2253, + 2258, { "match_id": [ - 3818, + 3864, "uuid!" ], "steam_id": [ - 169, + 174, "bigint!" ], "type": [ - 724, + 729, "e_match_types_enum!" ] } ], "delete_player_faceit_rank_history": [ - 2297, + 2302, { "where": [ - 2289, + 2294, "player_faceit_rank_history_bool_exp!" ] } ], "delete_player_faceit_rank_history_by_pk": [ - 2280, + 2285, { "id": [ - 3818, + 3864, "uuid!" ] } ], "delete_player_flashes": [ - 2340, + 2345, { "where": [ - 2332, + 2337, "player_flashes_bool_exp!" ] } ], "delete_player_flashes_by_pk": [ - 2321, + 2326, { "attacked_steam_id": [ - 169, + 174, "bigint!" ], "attacker_steam_id": [ - 169, + 174, "bigint!" ], "match_map_id": [ - 3818, + 3864, "uuid!" ], "time": [ - 3421, + 3467, "timestamptz!" ] } ], "delete_player_kills": [ - 2426, + 2431, { "where": [ - 2377, + 2382, "player_kills_bool_exp!" ] } ], "delete_player_kills_by_pk": [ - 2366, + 2371, { "attacked_steam_id": [ - 169, + 174, "bigint!" ], "attacker_steam_id": [ - 169, + 174, "bigint!" ], "match_map_id": [ - 3818, + 3864, "uuid!" ], "time": [ - 3421, + 3467, "timestamptz!" ] } ], "delete_player_kills_by_weapon": [ - 2395, + 2400, { "where": [ - 2387, + 2392, "player_kills_by_weapon_bool_exp!" ] } ], "delete_player_kills_by_weapon_by_pk": [ - 2378, + 2383, { "player_steam_id": [ - 169, + 174, "bigint!" ], "with": [ - 70, + 75, "String!" ] } ], "delete_player_leaderboard_rank": [ - 2461, + 2466, { "where": [ - 2456, + 2461, "player_leaderboard_rank_bool_exp!" ] } ], "delete_player_match_map_stats": [ - 2492, + 2497, { "where": [ - 2484, + 2489, "player_match_map_stats_bool_exp!" ] } ], "delete_player_match_map_stats_by_pk": [ - 2475, + 2480, { "match_map_id": [ - 3818, + 3864, "uuid!" ], "steam_id": [ - 169, + 174, "bigint!" ] } ], "delete_player_objectives": [ - 2584, + 2589, { "where": [ - 2576, + 2581, "player_objectives_bool_exp!" ] } ], "delete_player_objectives_by_pk": [ - 2567, + 2572, { "match_map_id": [ - 3818, + 3864, "uuid!" ], "player_steam_id": [ - 169, + 174, "bigint!" ], "time": [ - 3421, + 3467, "timestamptz!" ] } ], "delete_player_premier_rank_history": [ - 2643, + 2648, { "where": [ - 2635, + 2640, "player_premier_rank_history_bool_exp!" ] } ], "delete_player_premier_rank_history_by_pk": [ - 2626, + 2631, { "id": [ - 3818, + 3864, "uuid!" ] } ], "delete_player_sanctions": [ - 2684, + 2689, { "where": [ - 2676, + 2681, "player_sanctions_bool_exp!" ] } ], "delete_player_sanctions_by_pk": [ - 2667, + 2672, { "created_at": [ - 3421, + 3467, "timestamptz!" ], "id": [ - 3818, + 3864, "uuid!" ] } ], "delete_player_stats": [ - 2718, + 2723, { "where": [ - 2712, + 2717, "player_stats_bool_exp!" ] } ], "delete_player_stats_by_pk": [ - 2708, + 2713, { "player_steam_id": [ - 169, + 174, + "bigint!" + ] + } + ], + "delete_player_steam_bot_friend": [ + 2755, + { + "where": [ + 2746, + "player_steam_bot_friend_bool_exp!" + ] + } + ], + "delete_player_steam_bot_friend_by_pk": [ + 2741, + { + "steam_id": [ + 174, "bigint!" ] } ], "delete_player_steam_match_auth": [ - 2746, + 2783, { "where": [ - 2740, + 2777, "player_steam_match_auth_bool_exp!" ] } ], "delete_player_steam_match_auth_by_pk": [ - 2736, + 2773, { "steam_id": [ - 169, + 174, "bigint!" ] } ], "delete_player_unused_utility": [ - 2780, + 2817, { "where": [ - 2772, + 2809, "player_unused_utility_bool_exp!" ] } ], "delete_player_unused_utility_by_pk": [ - 2763, + 2800, { "match_map_id": [ - 3818, + 3864, "uuid!" ], "player_steam_id": [ - 169, + 174, "bigint!" ] } ], "delete_player_utility": [ - 2821, + 2858, { "where": [ - 2813, + 2850, "player_utility_bool_exp!" ] } ], "delete_player_utility_by_pk": [ - 2804, + 2841, { "attacker_steam_id": [ - 169, + 174, "bigint!" ], "match_map_id": [ - 3818, + 3864, "uuid!" ], "time": [ - 3421, + 3467, "timestamptz!" ] } ], "delete_players": [ - 2888, + 2925, { "where": [ - 2882, + 2919, "players_bool_exp!" ] } ], "delete_players_by_pk": [ - 2878, + 2915, { "steam_id": [ - 169, + 174, "bigint!" ] } ], "delete_plugin_versions": [ - 2916, + 2953, { "where": [ - 2910, + 2947, "plugin_versions_bool_exp!" ] } ], "delete_plugin_versions_by_pk": [ - 2906, + 2943, { "version": [ - 70, + 75, "String!" ] } ], "delete_server_regions": [ - 2943, + 2980, { "where": [ - 2938, + 2975, "server_regions_bool_exp!" ] } ], "delete_server_regions_by_pk": [ - 2934, + 2971, { "value": [ - 70, + 75, "String!" ] } ], "delete_servers": [ - 2980, + 3017, { "where": [ - 2972, + 3009, "servers_bool_exp!" ] } ], "delete_servers_by_pk": [ - 2961, + 2998, { "id": [ - 3818, + 3864, "uuid!" ] } ], "delete_settings": [ - 3015, + 3052, { "where": [ - 3010, + 3047, "settings_bool_exp!" ] } ], "delete_settings_by_pk": [ - 3007, + 3044, { "name": [ - 70, + 75, "String!" ] } ], "delete_steam_account_claims": [ - 3039, + 3076, { "where": [ - 3032, + 3069, "steam_account_claims_bool_exp!" ] } ], "delete_steam_account_claims_by_pk": [ - 3025, + 3062, { "id": [ - 3818, + 3864, "uuid!" ] } ], "delete_steam_accounts": [ - 3057, + 3096, { "where": [ - 3052, + 3090, "steam_accounts_bool_exp!" ] } ], "delete_steam_accounts_by_pk": [ - 3049, + 3086, { "id": [ - 3818, + 3864, "uuid!" ] } ], "delete_system_alerts": [ - 3078, + 3124, { "where": [ - 3072, + 3118, "system_alerts_bool_exp!" ] } ], "delete_system_alerts_by_pk": [ - 3068, + 3114, { "id": [ - 3818, + 3864, "uuid!" ] } ], "delete_team_invites": [ - 3112, + 3158, { "where": [ - 3104, + 3150, "team_invites_bool_exp!" ] } ], "delete_team_invites_by_pk": [ - 3095, + 3141, { "id": [ - 3818, + 3864, "uuid!" ] } ], "delete_team_roster": [ - 3155, + 3201, { "where": [ - 3147, + 3193, "team_roster_bool_exp!" ] } ], "delete_team_roster_by_pk": [ - 3136, + 3182, { "player_steam_id": [ - 169, + 174, "bigint!" ], "team_id": [ - 3818, + 3864, "uuid!" ] } ], "delete_team_scrim_alerts": [ - 3191, + 3237, { "where": [ - 3185, + 3231, "team_scrim_alerts_bool_exp!" ] } ], "delete_team_scrim_alerts_by_pk": [ - 3181, + 3227, { "id": [ - 3818, + 3864, "uuid!" ] } ], "delete_team_scrim_availability": [ - 3224, + 3270, { "where": [ - 3217, + 3263, "team_scrim_availability_bool_exp!" ] } ], "delete_team_scrim_availability_by_pk": [ - 3208, + 3254, { "id": [ - 3818, + 3864, "uuid!" ] } ], "delete_team_scrim_request_proposals": [ - 3253, + 3299, { "where": [ - 3245, + 3291, "team_scrim_request_proposals_bool_exp!" ] } ], "delete_team_scrim_request_proposals_by_pk": [ - 3236, + 3282, { "id": [ - 3818, + 3864, "uuid!" ] } ], "delete_team_scrim_requests": [ - 3296, + 3342, { "where": [ - 3288, + 3334, "team_scrim_requests_bool_exp!" ] } ], "delete_team_scrim_requests_by_pk": [ - 3277, + 3323, { "id": [ - 3818, + 3864, "uuid!" ] } ], "delete_team_scrim_settings": [ - 3333, + 3379, { "where": [ - 3327, + 3373, "team_scrim_settings_bool_exp!" ] } ], "delete_team_scrim_settings_by_pk": [ - 3323, + 3369, { "id": [ - 3818, + 3864, "uuid!" ] } ], "delete_team_suggestions": [ - 3361, + 3407, { "where": [ - 3355, + 3401, "team_suggestions_bool_exp!" ] } ], "delete_team_suggestions_by_pk": [ - 3351, + 3397, { "id": [ - 3818, + 3864, "uuid!" ] } ], "delete_teams": [ - 3395, + 3441, { "where": [ - 3387, + 3433, "teams_bool_exp!" ] } ], "delete_teams_by_pk": [ - 3378, + 3424, { "id": [ - 3818, + 3864, "uuid!" ] } ], "delete_tournament_brackets": [ - 3442, + 3488, { "where": [ - 3434, + 3480, "tournament_brackets_bool_exp!" ] } ], "delete_tournament_brackets_by_pk": [ - 3423, + 3469, { "id": [ - 3818, + 3864, "uuid!" ] } ], "delete_tournament_organizers": [ - 3486, + 3532, { "where": [ - 3478, + 3524, "tournament_organizers_bool_exp!" ] } ], "delete_tournament_organizers_by_pk": [ - 3469, + 3515, { "steam_id": [ - 169, + 174, "bigint!" ], "tournament_id": [ - 3818, + 3864, "uuid!" ] } ], "delete_tournament_stages": [ - 3533, + 3579, { "where": [ - 3522, + 3568, "tournament_stages_bool_exp!" ] } ], "delete_tournament_stages_by_pk": [ - 3510, + 3556, { "id": [ - 3818, + 3864, "uuid!" ] } ], "delete_tournament_team_invites": [ - 3578, + 3624, { "where": [ - 3570, + 3616, "tournament_team_invites_bool_exp!" ] } ], "delete_tournament_team_invites_by_pk": [ - 3561, + 3607, { "id": [ - 3818, + 3864, "uuid!" ] } ], "delete_tournament_team_roster": [ - 3619, + 3665, { "where": [ - 3611, + 3657, "tournament_team_roster_bool_exp!" ] } ], "delete_tournament_team_roster_by_pk": [ - 3602, + 3648, { "player_steam_id": [ - 169, + 174, "bigint!" ], "tournament_id": [ - 3818, + 3864, "uuid!" ] } ], "delete_tournament_teams": [ - 3660, + 3706, { "where": [ - 3652, + 3698, "tournament_teams_bool_exp!" ] } ], "delete_tournament_teams_by_pk": [ - 3643, + 3689, { "id": [ - 3818, + 3864, "uuid!" ] } ], "delete_tournament_trophies": [ - 3704, + 3750, { "where": [ - 3696, + 3742, "tournament_trophies_bool_exp!" ] } ], "delete_tournament_trophies_by_pk": [ - 3685, + 3731, { "id": [ - 3818, + 3864, "uuid!" ] } ], "delete_tournament_trophy_configs": [ - 3747, + 3793, { "where": [ - 3739, + 3785, "tournament_trophy_configs_bool_exp!" ] } ], "delete_tournament_trophy_configs_by_pk": [ - 3730, + 3776, { "id": [ - 3818, + 3864, "uuid!" ] } ], "delete_tournaments": [ - 3791, + 3837, { "where": [ - 3783, + 3829, "tournaments_bool_exp!" ] } ], "delete_tournaments_by_pk": [ - 3772, + 3818, { "id": [ - 3818, + 3864, "uuid!" ] } ], "delete_v_match_captains": [ - 3848, + 3894, { "where": [ - 3843, + 3889, "v_match_captains_bool_exp!" ] } ], "delete_v_match_map_backup_rounds": [ - 3959, + 4005, { "where": [ - 3954, + 4000, "v_match_map_backup_rounds_bool_exp!" ] } ], "delete_v_player_match_map_hltv": [ - 4181, + 4227, { "where": [ - 4174, + 4220, "v_player_match_map_hltv_bool_exp!" ] } ], "delete_v_pool_maps": [ - 4340, + 4386, { "where": [ - 4334, + 4380, "v_pool_maps_bool_exp!" ] } ], "delete_v_team_stage_results": [ - 4434, + 4480, { "where": [ - 4426, + 4472, "v_team_stage_results_bool_exp!" ] } ], "delete_v_team_stage_results_by_pk": [ - 4407, + 4453, { "tournament_stage_id": [ - 3818, + 3864, "uuid!" ], "tournament_team_id": [ - 3818, + 3864, "uuid!" ] } ], "denyInvite": [ - 73, + 78, { "invite_id": [ - 3818, + 3864, "uuid!" ], "type": [ - 70, + 75, "String!" ] } ], "forfeitMatch": [ - 73, + 78, { "match_id": [ - 3818, + 3864, "uuid!" ], "winning_lineup_id": [ - 3818, + 3864, "uuid!" ] } @@ -120096,7 +121018,7 @@ export default { 43, { "match_id": [ - 3818, + 3864, "uuid!" ] } @@ -120105,2840 +121027,2864 @@ export default { 31 ], "insert__map_pool": [ - 91, + 96, { "objects": [ - 88, + 93, "[_map_pool_insert_input!]!" ], "on_conflict": [ - 92 + 97 ] } ], "insert__map_pool_one": [ - 83, + 88, { "object": [ - 88, + 93, "_map_pool_insert_input!" ], "on_conflict": [ - 92 + 97 ] } ], "insert_abandoned_matches": [ - 118, + 123, { "objects": [ - 113, + 118, "[abandoned_matches_insert_input!]!" ], "on_conflict": [ - 119 + 124 ] } ], "insert_abandoned_matches_one": [ - 101, + 106, { "object": [ - 113, + 118, "abandoned_matches_insert_input!" ], "on_conflict": [ - 119 + 124 ] } ], "insert_api_keys": [ - 152, + 157, { "objects": [ - 149, + 154, "[api_keys_insert_input!]!" ], "on_conflict": [ - 153 + 158 ] } ], "insert_api_keys_one": [ - 142, + 147, { "object": [ - 149, + 154, "api_keys_insert_input!" ], "on_conflict": [ - 153 + 158 ] } ], "insert_clip_render_jobs": [ - 197, + 202, { "objects": [ - 192, + 197, "[clip_render_jobs_insert_input!]!" ], "on_conflict": [ - 198 + 203 ] } ], "insert_clip_render_jobs_one": [ - 174, + 179, { "object": [ - 192, + 197, "clip_render_jobs_insert_input!" ], "on_conflict": [ - 198 + 203 ] } ], "insert_db_backups": [ - 235, + 240, { "objects": [ - 232, + 237, "[db_backups_insert_input!]!" ], "on_conflict": [ - 236 + 241 ] } ], "insert_db_backups_one": [ - 225, + 230, { "object": [ - 232, + 237, "db_backups_insert_input!" ], "on_conflict": [ - 236 + 241 ] } ], "insert_draft_game_picks": [ - 271, + 276, { "objects": [ - 266, + 271, "[draft_game_picks_insert_input!]!" ], "on_conflict": [ - 272 + 277 ] } ], "insert_draft_game_picks_one": [ - 252, + 257, { "object": [ - 266, + 271, "draft_game_picks_insert_input!" ], "on_conflict": [ - 272 + 277 ] } ], "insert_draft_game_players": [ - 316, + 321, { "objects": [ - 311, + 316, "[draft_game_players_insert_input!]!" ], "on_conflict": [ - 317 + 322 ] } ], "insert_draft_game_players_one": [ - 297, + 302, { "object": [ - 311, + 316, "draft_game_players_insert_input!" ], "on_conflict": [ - 317 + 322 ] } ], "insert_draft_games": [ - 361, + 366, { "objects": [ - 356, + 361, "[draft_games_insert_input!]!" ], "on_conflict": [ - 363 + 368 ] } ], "insert_draft_games_one": [ - 342, + 347, { "object": [ - 356, + 361, "draft_games_insert_input!" ], "on_conflict": [ - 363 + 368 ] } ], "insert_e_check_in_settings": [ - 398, + 403, { "objects": [ - 395, + 400, "[e_check_in_settings_insert_input!]!" ], "on_conflict": [ - 399 + 404 ] } ], "insert_e_check_in_settings_one": [ - 388, + 393, { "object": [ - 395, + 400, "e_check_in_settings_insert_input!" ], "on_conflict": [ - 399 + 404 ] } ], "insert_e_draft_game_captain_selection": [ - 418, + 423, { "objects": [ - 415, + 420, "[e_draft_game_captain_selection_insert_input!]!" ], "on_conflict": [ - 420 + 425 ] } ], "insert_e_draft_game_captain_selection_one": [ - 408, + 413, { "object": [ - 415, + 420, "e_draft_game_captain_selection_insert_input!" ], "on_conflict": [ - 420 + 425 ] } ], "insert_e_draft_game_draft_order": [ - 439, + 444, { "objects": [ - 436, + 441, "[e_draft_game_draft_order_insert_input!]!" ], "on_conflict": [ - 441 + 446 ] } ], "insert_e_draft_game_draft_order_one": [ - 429, + 434, { "object": [ - 436, + 441, "e_draft_game_draft_order_insert_input!" ], "on_conflict": [ - 441 + 446 ] } ], "insert_e_draft_game_mode": [ - 460, + 465, { "objects": [ - 457, + 462, "[e_draft_game_mode_insert_input!]!" ], "on_conflict": [ - 462 + 467 ] } ], "insert_e_draft_game_mode_one": [ - 450, + 455, { "object": [ - 457, + 462, "e_draft_game_mode_insert_input!" ], "on_conflict": [ - 462 + 467 ] } ], "insert_e_draft_game_player_status": [ - 481, + 486, { "objects": [ - 478, + 483, "[e_draft_game_player_status_insert_input!]!" ], "on_conflict": [ - 483 + 488 ] } ], "insert_e_draft_game_player_status_one": [ - 471, + 476, { "object": [ - 478, + 483, "e_draft_game_player_status_insert_input!" ], "on_conflict": [ - 483 + 488 ] } ], "insert_e_draft_game_status": [ - 502, + 507, { "objects": [ - 499, + 504, "[e_draft_game_status_insert_input!]!" ], "on_conflict": [ - 504 + 509 ] } ], "insert_e_draft_game_status_one": [ - 492, + 497, { "object": [ - 499, + 504, "e_draft_game_status_insert_input!" ], "on_conflict": [ - 504 + 509 ] } ], "insert_e_friend_status": [ - 523, + 528, { "objects": [ - 520, + 525, "[e_friend_status_insert_input!]!" ], "on_conflict": [ - 525 + 530 ] } ], "insert_e_friend_status_one": [ - 513, + 518, { "object": [ - 520, + 525, "e_friend_status_insert_input!" ], "on_conflict": [ - 525 + 530 ] } ], "insert_e_game_cfg_types": [ - 544, + 549, { "objects": [ - 541, + 546, "[e_game_cfg_types_insert_input!]!" ], "on_conflict": [ - 545 + 550 ] } ], "insert_e_game_cfg_types_one": [ - 534, + 539, { "object": [ - 541, + 546, "e_game_cfg_types_insert_input!" ], "on_conflict": [ - 545 + 550 ] } ], "insert_e_game_server_node_statuses": [ - 564, + 569, { "objects": [ - 561, + 566, "[e_game_server_node_statuses_insert_input!]!" ], "on_conflict": [ - 566 + 571 ] } ], "insert_e_game_server_node_statuses_one": [ - 554, + 559, { "object": [ - 561, + 566, "e_game_server_node_statuses_insert_input!" ], "on_conflict": [ - 566 + 571 ] } ], "insert_e_lobby_access": [ - 585, + 590, { "objects": [ - 582, + 587, "[e_lobby_access_insert_input!]!" ], "on_conflict": [ - 587 + 592 ] } ], "insert_e_lobby_access_one": [ - 575, + 580, { "object": [ - 582, + 587, "e_lobby_access_insert_input!" ], "on_conflict": [ - 587 + 592 ] } ], "insert_e_lobby_player_status": [ - 606, + 611, { "objects": [ - 603, + 608, "[e_lobby_player_status_insert_input!]!" ], "on_conflict": [ - 607 + 612 ] } ], "insert_e_lobby_player_status_one": [ - 596, + 601, { "object": [ - 603, + 608, "e_lobby_player_status_insert_input!" ], "on_conflict": [ - 607 + 612 ] } ], "insert_e_map_pool_types": [ - 626, + 631, { "objects": [ - 623, + 628, "[e_map_pool_types_insert_input!]!" ], "on_conflict": [ - 628 + 633 ] } ], "insert_e_map_pool_types_one": [ - 616, + 621, { "object": [ - 623, + 628, "e_map_pool_types_insert_input!" ], "on_conflict": [ - 628 + 633 ] } ], "insert_e_match_clip_visibility": [ - 647, + 652, { "objects": [ - 644, + 649, "[e_match_clip_visibility_insert_input!]!" ], "on_conflict": [ - 648 + 653 ] } ], "insert_e_match_clip_visibility_one": [ - 637, + 642, { "object": [ - 644, + 649, "e_match_clip_visibility_insert_input!" ], "on_conflict": [ - 648 + 653 ] } ], "insert_e_match_map_status": [ - 667, + 672, { "objects": [ - 664, + 669, "[e_match_map_status_insert_input!]!" ], "on_conflict": [ - 669 + 674 ] } ], "insert_e_match_map_status_one": [ - 657, + 662, { "object": [ - 664, + 669, "e_match_map_status_insert_input!" ], "on_conflict": [ - 669 + 674 ] } ], "insert_e_match_mode": [ - 688, + 693, { "objects": [ - 685, + 690, "[e_match_mode_insert_input!]!" ], "on_conflict": [ - 689 + 694 ] } ], "insert_e_match_mode_one": [ - 678, + 683, { "object": [ - 685, + 690, "e_match_mode_insert_input!" ], "on_conflict": [ - 689 + 694 ] } ], "insert_e_match_status": [ - 708, + 713, { "objects": [ - 705, + 710, "[e_match_status_insert_input!]!" ], "on_conflict": [ - 710 + 715 ] } ], "insert_e_match_status_one": [ - 698, + 703, { "object": [ - 705, + 710, "e_match_status_insert_input!" ], "on_conflict": [ - 710 + 715 ] } ], "insert_e_match_types": [ - 729, + 734, { "objects": [ - 726, + 731, "[e_match_types_insert_input!]!" ], "on_conflict": [ - 731 + 736 ] } ], "insert_e_match_types_one": [ - 719, + 724, { "object": [ - 726, + 731, "e_match_types_insert_input!" ], "on_conflict": [ - 731 + 736 ] } ], "insert_e_notification_types": [ - 750, + 755, { "objects": [ - 747, + 752, "[e_notification_types_insert_input!]!" ], "on_conflict": [ - 751 + 756 ] } ], "insert_e_notification_types_one": [ - 740, + 745, { "object": [ - 747, + 752, "e_notification_types_insert_input!" ], "on_conflict": [ - 751 + 756 ] } ], "insert_e_objective_types": [ - 770, + 775, { "objects": [ - 767, + 772, "[e_objective_types_insert_input!]!" ], "on_conflict": [ - 771 + 776 ] } ], "insert_e_objective_types_one": [ - 760, + 765, { "object": [ - 767, + 772, "e_objective_types_insert_input!" ], "on_conflict": [ - 771 + 776 ] } ], "insert_e_player_roles": [ - 790, + 795, { "objects": [ - 787, + 792, "[e_player_roles_insert_input!]!" ], "on_conflict": [ - 791 + 796 ] } ], "insert_e_player_roles_one": [ - 780, + 785, { "object": [ - 787, + 792, "e_player_roles_insert_input!" ], "on_conflict": [ - 791 + 796 ] } ], "insert_e_ready_settings": [ - 810, + 815, { "objects": [ - 807, + 812, "[e_ready_settings_insert_input!]!" ], "on_conflict": [ - 811 + 816 ] } ], "insert_e_ready_settings_one": [ - 800, + 805, { "object": [ - 807, + 812, "e_ready_settings_insert_input!" ], "on_conflict": [ - 811 + 816 ] } ], "insert_e_sanction_types": [ - 830, + 835, { "objects": [ - 827, + 832, "[e_sanction_types_insert_input!]!" ], "on_conflict": [ - 832 + 837 ] } ], "insert_e_sanction_types_one": [ - 820, + 825, { "object": [ - 827, + 832, "e_sanction_types_insert_input!" ], "on_conflict": [ - 832 + 837 ] } ], "insert_e_scrim_request_statuses": [ - 851, + 856, { "objects": [ - 848, + 853, "[e_scrim_request_statuses_insert_input!]!" ], "on_conflict": [ - 852 + 857 ] } ], "insert_e_scrim_request_statuses_one": [ - 841, + 846, { "object": [ - 848, + 853, "e_scrim_request_statuses_insert_input!" ], "on_conflict": [ - 852 + 857 ] } ], "insert_e_server_types": [ - 871, + 876, { "objects": [ - 868, + 873, "[e_server_types_insert_input!]!" ], "on_conflict": [ - 872 + 877 ] } ], "insert_e_server_types_one": [ - 861, + 866, { "object": [ - 868, + 873, "e_server_types_insert_input!" ], "on_conflict": [ - 872 + 877 ] } ], "insert_e_sides": [ - 891, + 896, { "objects": [ - 888, + 893, "[e_sides_insert_input!]!" ], "on_conflict": [ - 892 + 897 ] } ], "insert_e_sides_one": [ - 881, + 886, { "object": [ - 888, + 893, "e_sides_insert_input!" ], "on_conflict": [ - 892 + 897 ] } ], "insert_e_system_alert_types": [ - 911, + 916, { "objects": [ - 908, + 913, "[e_system_alert_types_insert_input!]!" ], "on_conflict": [ - 912 + 917 ] } ], "insert_e_system_alert_types_one": [ - 901, + 906, { "object": [ - 908, + 913, "e_system_alert_types_insert_input!" ], "on_conflict": [ - 912 + 917 ] } ], "insert_e_team_roles": [ - 931, + 936, { "objects": [ - 928, + 933, "[e_team_roles_insert_input!]!" ], "on_conflict": [ - 933 + 938 ] } ], "insert_e_team_roles_one": [ - 921, + 926, { "object": [ - 928, + 933, "e_team_roles_insert_input!" ], "on_conflict": [ - 933 + 938 ] } ], "insert_e_team_roster_statuses": [ - 952, + 957, { "objects": [ - 949, + 954, "[e_team_roster_statuses_insert_input!]!" ], "on_conflict": [ - 953 + 958 ] } ], "insert_e_team_roster_statuses_one": [ - 942, + 947, { "object": [ - 949, + 954, "e_team_roster_statuses_insert_input!" ], "on_conflict": [ - 953 + 958 ] } ], "insert_e_timeout_settings": [ - 972, + 977, { "objects": [ - 969, + 974, "[e_timeout_settings_insert_input!]!" ], "on_conflict": [ - 973 + 978 ] } ], "insert_e_timeout_settings_one": [ - 962, + 967, { "object": [ - 969, + 974, "e_timeout_settings_insert_input!" ], "on_conflict": [ - 973 + 978 ] } ], "insert_e_tournament_stage_types": [ - 992, + 997, { "objects": [ - 989, + 994, "[e_tournament_stage_types_insert_input!]!" ], "on_conflict": [ - 994 + 999 ] } ], "insert_e_tournament_stage_types_one": [ - 982, + 987, { "object": [ - 989, + 994, "e_tournament_stage_types_insert_input!" ], "on_conflict": [ - 994 + 999 ] } ], "insert_e_tournament_status": [ - 1013, + 1018, { "objects": [ - 1010, + 1015, "[e_tournament_status_insert_input!]!" ], "on_conflict": [ - 1015 + 1020 ] } ], "insert_e_tournament_status_one": [ - 1003, + 1008, { "object": [ - 1010, + 1015, "e_tournament_status_insert_input!" ], "on_conflict": [ - 1015 + 1020 ] } ], "insert_e_utility_types": [ - 1034, + 1039, { "objects": [ - 1031, + 1036, "[e_utility_types_insert_input!]!" ], "on_conflict": [ - 1035 + 1040 ] } ], "insert_e_utility_types_one": [ - 1024, + 1029, { "object": [ - 1031, + 1036, "e_utility_types_insert_input!" ], "on_conflict": [ - 1035 + 1040 ] } ], "insert_e_veto_pick_types": [ - 1054, + 1059, { "objects": [ - 1051, + 1056, "[e_veto_pick_types_insert_input!]!" ], "on_conflict": [ - 1055 + 1060 ] } ], "insert_e_veto_pick_types_one": [ - 1044, + 1049, { "object": [ - 1051, + 1056, "e_veto_pick_types_insert_input!" ], "on_conflict": [ - 1055 + 1060 ] } ], "insert_e_winning_reasons": [ - 1074, + 1079, { "objects": [ - 1071, + 1076, "[e_winning_reasons_insert_input!]!" ], "on_conflict": [ - 1075 + 1080 ] } ], "insert_e_winning_reasons_one": [ - 1064, + 1069, { "object": [ - 1071, + 1076, "e_winning_reasons_insert_input!" ], "on_conflict": [ - 1075 + 1080 ] } ], "insert_friends": [ - 1096, + 1101, { "objects": [ - 1093, + 1098, "[friends_insert_input!]!" ], "on_conflict": [ - 1097 + 1102 ] } ], "insert_friends_one": [ - 1086, + 1091, { "object": [ - 1093, + 1098, "friends_insert_input!" ], "on_conflict": [ - 1097 + 1102 ] } ], "insert_game_server_nodes": [ - 1136, + 1141, { "objects": [ - 1131, + 1136, "[game_server_nodes_insert_input!]!" ], "on_conflict": [ - 1138 + 1143 ] } ], "insert_game_server_nodes_one": [ - 1113, + 1118, { "object": [ - 1131, + 1136, "game_server_nodes_insert_input!" ], "on_conflict": [ - 1138 + 1143 ] } ], "insert_game_versions": [ - 1178, + 1183, { "objects": [ - 1175, + 1180, "[game_versions_insert_input!]!" ], "on_conflict": [ - 1180 + 1185 ] } ], "insert_game_versions_one": [ - 1164, + 1169, { "object": [ - 1175, + 1180, "game_versions_insert_input!" ], "on_conflict": [ - 1180 + 1185 ] } ], "insert_gamedata_signature_validations": [ - 1211, + 1216, { "objects": [ - 1208, + 1213, "[gamedata_signature_validations_insert_input!]!" ], "on_conflict": [ - 1212 + 1217 ] } ], "insert_gamedata_signature_validations_one": [ - 1197, + 1202, { "object": [ - 1208, + 1213, "gamedata_signature_validations_insert_input!" ], "on_conflict": [ - 1212 + 1217 ] } ], "insert_leaderboard_entries": [ - 1247, + 1252, { "objects": [ - 1244, + 1249, "[leaderboard_entries_insert_input!]!" ] } ], "insert_leaderboard_entries_one": [ - 1238, + 1243, { "object": [ - 1244, + 1249, "leaderboard_entries_insert_input!" ] } ], "insert_lobbies": [ - 1269, + 1274, { "objects": [ - 1266, + 1271, "[lobbies_insert_input!]!" ], "on_conflict": [ - 1271 + 1276 ] } ], "insert_lobbies_one": [ - 1261, + 1266, { "object": [ - 1266, + 1271, "lobbies_insert_input!" ], "on_conflict": [ - 1271 + 1276 ] } ], "insert_lobby_players": [ - 1299, + 1304, { "objects": [ - 1294, + 1299, "[lobby_players_insert_input!]!" ], "on_conflict": [ - 1300 + 1305 ] } ], "insert_lobby_players_one": [ - 1280, + 1285, { "object": [ - 1294, + 1299, "lobby_players_insert_input!" ], "on_conflict": [ - 1300 + 1305 ] } ], "insert_map_pools": [ - 1333, + 1338, { "objects": [ - 1330, + 1335, "[map_pools_insert_input!]!" ], "on_conflict": [ - 1335 + 1340 ] } ], "insert_map_pools_one": [ - 1325, + 1330, { "object": [ - 1330, + 1335, "map_pools_insert_input!" ], "on_conflict": [ - 1335 + 1340 ] } ], "insert_maps": [ - 1360, + 1365, { "objects": [ - 1355, + 1360, "[maps_insert_input!]!" ], "on_conflict": [ - 1362 + 1367 ] } ], "insert_maps_one": [ - 1344, + 1349, { "object": [ - 1355, + 1360, "maps_insert_input!" ], "on_conflict": [ - 1362 + 1367 ] } ], "insert_match_clips": [ - 1390, + 1395, { "objects": [ - 1385, + 1390, "[match_clips_insert_input!]!" ], "on_conflict": [ - 1392 + 1397 ] } ], "insert_match_clips_one": [ - 1373, + 1378, { "object": [ - 1385, + 1390, "match_clips_insert_input!" ], "on_conflict": [ - 1392 + 1397 ] } ], "insert_match_demo_sessions": [ - 1436, + 1441, { "objects": [ - 1431, + 1436, "[match_demo_sessions_insert_input!]!" ], "on_conflict": [ - 1437 + 1442 ] } ], "insert_match_demo_sessions_one": [ - 1415, + 1420, { "object": [ - 1431, + 1436, "match_demo_sessions_insert_input!" ], "on_conflict": [ - 1437 + 1442 ] } ], "insert_match_lineup_players": [ - 1480, + 1485, { "objects": [ - 1475, + 1480, "[match_lineup_players_insert_input!]!" ], "on_conflict": [ - 1481 + 1486 ] } ], "insert_match_lineup_players_one": [ - 1461, + 1466, { "object": [ - 1475, + 1480, "match_lineup_players_insert_input!" ], "on_conflict": [ - 1481 + 1486 ] } ], "insert_match_lineups": [ - 1523, + 1528, { "objects": [ - 1518, + 1523, "[match_lineups_insert_input!]!" ], "on_conflict": [ - 1525 + 1530 ] } ], "insert_match_lineups_one": [ - 1506, + 1511, { "object": [ - 1518, + 1523, "match_lineups_insert_input!" ], "on_conflict": [ - 1525 + 1530 ] } ], "insert_match_map_demos": [ - 1571, + 1576, { "objects": [ - 1566, + 1571, "[match_map_demos_insert_input!]!" ], "on_conflict": [ - 1573 + 1578 ] } ], "insert_match_map_demos_one": [ - 1548, + 1553, { "object": [ - 1566, + 1571, "match_map_demos_insert_input!" ], "on_conflict": [ - 1573 + 1578 ] } ], "insert_match_map_rounds": [ - 1616, + 1621, { "objects": [ - 1611, + 1616, "[match_map_rounds_insert_input!]!" ], "on_conflict": [ - 1617 + 1622 ] } ], "insert_match_map_rounds_one": [ - 1599, + 1604, { "object": [ - 1611, + 1616, "match_map_rounds_insert_input!" ], "on_conflict": [ - 1617 + 1622 ] } ], "insert_match_map_veto_picks": [ - 1654, + 1659, { "objects": [ - 1649, + 1654, "[match_map_veto_picks_insert_input!]!" ], "on_conflict": [ - 1655 + 1660 ] } ], "insert_match_map_veto_picks_one": [ - 1640, + 1645, { "object": [ - 1649, + 1654, "match_map_veto_picks_insert_input!" ], "on_conflict": [ - 1655 + 1660 ] } ], "insert_match_maps": [ - 1681, + 1686, { "objects": [ - 1676, + 1681, "[match_maps_insert_input!]!" ], "on_conflict": [ - 1683 + 1688 ] } ], "insert_match_maps_one": [ - 1664, + 1669, { "object": [ - 1676, + 1681, "match_maps_insert_input!" ], "on_conflict": [ - 1683 + 1688 ] } ], "insert_match_options": [ - 1716, + 1721, { "objects": [ - 1713, + 1718, "[match_options_insert_input!]!" ], "on_conflict": [ - 1718 + 1723 ] } ], "insert_match_options_one": [ - 1706, + 1711, { "object": [ - 1713, + 1718, "match_options_insert_input!" ], "on_conflict": [ - 1718 + 1723 ] } ], "insert_match_region_veto_picks": [ - 1748, + 1753, { "objects": [ - 1743, + 1748, "[match_region_veto_picks_insert_input!]!" ], "on_conflict": [ - 1749 + 1754 ] } ], "insert_match_region_veto_picks_one": [ - 1734, + 1739, { "object": [ - 1743, + 1748, "match_region_veto_picks_insert_input!" ], "on_conflict": [ - 1749 + 1754 ] } ], "insert_match_streams": [ - 1781, + 1786, { "objects": [ - 1776, + 1781, "[match_streams_insert_input!]!" ], "on_conflict": [ - 1782 + 1787 ] } ], "insert_match_streams_one": [ - 1758, + 1763, { "object": [ - 1776, + 1781, "match_streams_insert_input!" ], "on_conflict": [ - 1782 + 1787 ] } ], "insert_match_type_cfgs": [ - 1816, + 1821, { "objects": [ - 1813, + 1818, "[match_type_cfgs_insert_input!]!" ], "on_conflict": [ - 1817 + 1822 ] } ], "insert_match_type_cfgs_one": [ - 1808, + 1813, { "object": [ - 1813, + 1818, "match_type_cfgs_insert_input!" ], "on_conflict": [ - 1817 + 1822 ] } ], "insert_matches": [ - 1843, + 1848, { "objects": [ - 1838, + 1843, "[matches_insert_input!]!" ], "on_conflict": [ - 1845 + 1850 ] } ], "insert_matches_one": [ - 1826, + 1831, { "object": [ - 1838, + 1843, "matches_insert_input!" ], "on_conflict": [ - 1845 + 1850 ] } ], "insert_migration_hashes_hashes": [ - 1876, + 1881, { "objects": [ - 1873, + 1878, "[migration_hashes_hashes_insert_input!]!" ], "on_conflict": [ - 1877 + 1882 ] } ], "insert_migration_hashes_hashes_one": [ - 1868, + 1873, { "object": [ - 1873, + 1878, "migration_hashes_hashes_insert_input!" ], "on_conflict": [ - 1877 + 1882 ] } ], "insert_my_friends": [ - 1908, + 1913, { "objects": [ - 1903, + 1908, "[my_friends_insert_input!]!" ] } ], "insert_my_friends_one": [ - 1886, + 1891, { "object": [ - 1903, + 1908, "my_friends_insert_input!" ] } ], "insert_news_articles": [ - 1942, + 1947, { "objects": [ - 1939, + 1944, "[news_articles_insert_input!]!" ], "on_conflict": [ - 1943 + 1948 ] } ], "insert_news_articles_one": [ - 1932, + 1937, { "object": [ - 1939, + 1944, "news_articles_insert_input!" ], "on_conflict": [ - 1943 + 1948 ] } ], "insert_notifications": [ - 1982, + 1987, { "objects": [ - 1977, + 1982, "[notifications_insert_input!]!" ], "on_conflict": [ - 1983 + 1988 ] } ], "insert_notifications_one": [ - 1959, + 1964, { "object": [ - 1977, + 1982, "notifications_insert_input!" ], "on_conflict": [ - 1983 + 1988 ] } ], "insert_pending_match_import_players": [ - 2029, + 2034, { "objects": [ - 2024, + 2029, "[pending_match_import_players_insert_input!]!" ], "on_conflict": [ - 2030 + 2035 ] } ], "insert_pending_match_import_players_one": [ - 2012, + 2017, { "object": [ - 2024, + 2029, "pending_match_import_players_insert_input!" ], "on_conflict": [ - 2030 + 2035 ] } ], "insert_pending_match_imports": [ - 2063, + 2068, { "objects": [ - 2060, + 2065, "[pending_match_imports_insert_input!]!" ], "on_conflict": [ - 2065 + 2070 ] } ], "insert_pending_match_imports_one": [ - 2053, + 2058, { "object": [ - 2060, + 2065, "pending_match_imports_insert_input!" ], "on_conflict": [ - 2065 + 2070 ] } ], "insert_player_aim_stats_demo": [ - 2091, + 2096, { "objects": [ - 2088, + 2093, "[player_aim_stats_demo_insert_input!]!" ], "on_conflict": [ - 2092 + 2097 ] } ], "insert_player_aim_stats_demo_one": [ - 2081, + 2086, { "object": [ - 2088, + 2093, "player_aim_stats_demo_insert_input!" ], "on_conflict": [ - 2092 + 2097 ] } ], "insert_player_aim_weapon_stats": [ - 2125, + 2130, { "objects": [ - 2120, + 2125, "[player_aim_weapon_stats_insert_input!]!" ], "on_conflict": [ - 2126 + 2131 ] } ], "insert_player_aim_weapon_stats_one": [ - 2108, + 2113, { "object": [ - 2120, + 2125, "player_aim_weapon_stats_insert_input!" ], "on_conflict": [ - 2126 + 2131 ] } ], "insert_player_assists": [ - 2168, + 2173, { "objects": [ - 2163, + 2168, "[player_assists_insert_input!]!" ], "on_conflict": [ - 2169 + 2174 ] } ], "insert_player_assists_one": [ - 2149, + 2154, { "object": [ - 2163, + 2168, "player_assists_insert_input!" ], "on_conflict": [ - 2169 + 2174 ] } ], "insert_player_damages": [ - 2229, + 2234, { "objects": [ - 2224, + 2229, "[player_damages_insert_input!]!" ], "on_conflict": [ - 2230 + 2235 ] } ], "insert_player_damages_one": [ - 2212, + 2217, { "object": [ - 2224, + 2229, "player_damages_insert_input!" ], "on_conflict": [ - 2230 + 2235 ] } ], "insert_player_elo": [ - 2263, + 2268, { "objects": [ - 2260, + 2265, "[player_elo_insert_input!]!" ], "on_conflict": [ - 2264 + 2269 ] } ], "insert_player_elo_one": [ - 2253, + 2258, { "object": [ - 2260, + 2265, "player_elo_insert_input!" ], "on_conflict": [ - 2264 + 2269 ] } ], "insert_player_faceit_rank_history": [ - 2297, + 2302, { "objects": [ - 2292, + 2297, "[player_faceit_rank_history_insert_input!]!" ], "on_conflict": [ - 2298 + 2303 ] } ], "insert_player_faceit_rank_history_one": [ - 2280, + 2285, { "object": [ - 2292, + 2297, "player_faceit_rank_history_insert_input!" ], "on_conflict": [ - 2298 + 2303 ] } ], "insert_player_flashes": [ - 2340, + 2345, { "objects": [ - 2335, + 2340, "[player_flashes_insert_input!]!" ], "on_conflict": [ - 2341 + 2346 ] } ], "insert_player_flashes_one": [ - 2321, + 2326, { "object": [ - 2335, + 2340, "player_flashes_insert_input!" ], "on_conflict": [ - 2341 + 2346 ] } ], "insert_player_kills": [ - 2426, + 2431, { "objects": [ - 2421, + 2426, "[player_kills_insert_input!]!" ], "on_conflict": [ - 2427 + 2432 ] } ], "insert_player_kills_by_weapon": [ - 2395, + 2400, { "objects": [ - 2390, + 2395, "[player_kills_by_weapon_insert_input!]!" ], "on_conflict": [ - 2396 + 2401 ] } ], "insert_player_kills_by_weapon_one": [ - 2378, + 2383, { "object": [ - 2390, + 2395, "player_kills_by_weapon_insert_input!" ], "on_conflict": [ - 2396 + 2401 ] } ], "insert_player_kills_one": [ - 2366, + 2371, { "object": [ - 2421, + 2426, "player_kills_insert_input!" ], "on_conflict": [ - 2427 + 2432 ] } ], "insert_player_leaderboard_rank": [ - 2461, + 2466, { "objects": [ - 2458, + 2463, "[player_leaderboard_rank_insert_input!]!" ] } ], "insert_player_leaderboard_rank_one": [ - 2452, + 2457, { "object": [ - 2458, + 2463, "player_leaderboard_rank_insert_input!" ] } ], "insert_player_match_map_stats": [ - 2492, + 2497, { "objects": [ - 2487, + 2492, "[player_match_map_stats_insert_input!]!" ], "on_conflict": [ - 2493 + 2498 ] } ], "insert_player_match_map_stats_one": [ - 2475, + 2480, { "object": [ - 2487, + 2492, "player_match_map_stats_insert_input!" ], "on_conflict": [ - 2493 + 2498 ] } ], "insert_player_objectives": [ - 2584, + 2589, { "objects": [ - 2579, + 2584, "[player_objectives_insert_input!]!" ], "on_conflict": [ - 2585 + 2590 ] } ], "insert_player_objectives_one": [ - 2567, + 2572, { "object": [ - 2579, + 2584, "player_objectives_insert_input!" ], "on_conflict": [ - 2585 + 2590 ] } ], "insert_player_premier_rank_history": [ - 2643, + 2648, { "objects": [ - 2638, + 2643, "[player_premier_rank_history_insert_input!]!" ], "on_conflict": [ - 2644 + 2649 ] } ], "insert_player_premier_rank_history_one": [ - 2626, + 2631, { "object": [ - 2638, + 2643, "player_premier_rank_history_insert_input!" ], "on_conflict": [ - 2644 + 2649 ] } ], "insert_player_sanctions": [ - 2684, + 2689, { "objects": [ - 2679, + 2684, "[player_sanctions_insert_input!]!" ], "on_conflict": [ - 2685 + 2690 ] } ], "insert_player_sanctions_one": [ - 2667, + 2672, { "object": [ - 2679, + 2684, "player_sanctions_insert_input!" ], "on_conflict": [ - 2685 + 2690 ] } ], "insert_player_stats": [ - 2718, + 2723, { "objects": [ - 2715, + 2720, "[player_stats_insert_input!]!" ], "on_conflict": [ - 2720 + 2725 ] } ], "insert_player_stats_one": [ - 2708, + 2713, { "object": [ - 2715, + 2720, "player_stats_insert_input!" ], "on_conflict": [ - 2720 + 2725 + ] + } + ], + "insert_player_steam_bot_friend": [ + 2755, + { + "objects": [ + 2752, + "[player_steam_bot_friend_insert_input!]!" + ], + "on_conflict": [ + 2756 + ] + } + ], + "insert_player_steam_bot_friend_one": [ + 2741, + { + "object": [ + 2752, + "player_steam_bot_friend_insert_input!" + ], + "on_conflict": [ + 2756 ] } ], "insert_player_steam_match_auth": [ - 2746, + 2783, { "objects": [ - 2743, + 2780, "[player_steam_match_auth_insert_input!]!" ], "on_conflict": [ - 2747 + 2784 ] } ], "insert_player_steam_match_auth_one": [ - 2736, + 2773, { "object": [ - 2743, + 2780, "player_steam_match_auth_insert_input!" ], "on_conflict": [ - 2747 + 2784 ] } ], "insert_player_unused_utility": [ - 2780, + 2817, { "objects": [ - 2775, + 2812, "[player_unused_utility_insert_input!]!" ], "on_conflict": [ - 2781 + 2818 ] } ], "insert_player_unused_utility_one": [ - 2763, + 2800, { "object": [ - 2775, + 2812, "player_unused_utility_insert_input!" ], "on_conflict": [ - 2781 + 2818 ] } ], "insert_player_utility": [ - 2821, + 2858, { "objects": [ - 2816, + 2853, "[player_utility_insert_input!]!" ], "on_conflict": [ - 2822 + 2859 ] } ], "insert_player_utility_one": [ - 2804, + 2841, { "object": [ - 2816, + 2853, "player_utility_insert_input!" ], "on_conflict": [ - 2822 + 2859 ] } ], "insert_players": [ - 2888, + 2925, { "objects": [ - 2885, + 2922, "[players_insert_input!]!" ], "on_conflict": [ - 2890 + 2927 ] } ], "insert_players_one": [ - 2878, + 2915, { "object": [ - 2885, + 2922, "players_insert_input!" ], "on_conflict": [ - 2890 + 2927 ] } ], "insert_plugin_versions": [ - 2916, + 2953, { "objects": [ - 2913, + 2950, "[plugin_versions_insert_input!]!" ], "on_conflict": [ - 2917 + 2954 ] } ], "insert_plugin_versions_one": [ - 2906, + 2943, { "object": [ - 2913, + 2950, "plugin_versions_insert_input!" ], "on_conflict": [ - 2917 + 2954 ] } ], "insert_server_regions": [ - 2943, + 2980, { "objects": [ - 2940, + 2977, "[server_regions_insert_input!]!" ], "on_conflict": [ - 2945 + 2982 ] } ], "insert_server_regions_one": [ - 2934, + 2971, { "object": [ - 2940, + 2977, "server_regions_insert_input!" ], "on_conflict": [ - 2945 + 2982 ] } ], "insert_servers": [ - 2980, + 3017, { "objects": [ - 2975, + 3012, "[servers_insert_input!]!" ], "on_conflict": [ - 2982 + 3019 ] } ], "insert_servers_one": [ - 2961, + 2998, { "object": [ - 2975, + 3012, "servers_insert_input!" ], "on_conflict": [ - 2982 + 3019 ] } ], "insert_settings": [ - 3015, + 3052, { "objects": [ - 3012, + 3049, "[settings_insert_input!]!" ], "on_conflict": [ - 3016 + 3053 ] } ], "insert_settings_one": [ - 3007, + 3044, { "object": [ - 3012, + 3049, "settings_insert_input!" ], "on_conflict": [ - 3016 + 3053 ] } ], "insert_steam_account_claims": [ - 3039, + 3076, { "objects": [ - 3034, + 3071, "[steam_account_claims_insert_input!]!" ], "on_conflict": [ - 3040 + 3077 ] } ], "insert_steam_account_claims_one": [ - 3025, + 3062, { "object": [ - 3034, + 3071, "steam_account_claims_insert_input!" ], "on_conflict": [ - 3040 + 3077 ] } ], "insert_steam_accounts": [ - 3057, + 3096, { "objects": [ - 3054, + 3093, "[steam_accounts_insert_input!]!" ], "on_conflict": [ - 3059 + 3098 ] } ], "insert_steam_accounts_one": [ - 3049, + 3086, { "object": [ - 3054, + 3093, "steam_accounts_insert_input!" ], "on_conflict": [ - 3059 + 3098 ] } ], "insert_system_alerts": [ - 3078, + 3124, { "objects": [ - 3075, + 3121, "[system_alerts_insert_input!]!" ], "on_conflict": [ - 3079 + 3125 ] } ], "insert_system_alerts_one": [ - 3068, + 3114, { "object": [ - 3075, + 3121, "system_alerts_insert_input!" ], "on_conflict": [ - 3079 + 3125 ] } ], "insert_team_invites": [ - 3112, + 3158, { "objects": [ - 3107, + 3153, "[team_invites_insert_input!]!" ], "on_conflict": [ - 3113 + 3159 ] } ], "insert_team_invites_one": [ - 3095, + 3141, { "object": [ - 3107, + 3153, "team_invites_insert_input!" ], "on_conflict": [ - 3113 + 3159 ] } ], "insert_team_roster": [ - 3155, + 3201, { "objects": [ - 3150, + 3196, "[team_roster_insert_input!]!" ], "on_conflict": [ - 3156 + 3202 ] } ], "insert_team_roster_one": [ - 3136, + 3182, { "object": [ - 3150, + 3196, "team_roster_insert_input!" ], "on_conflict": [ - 3156 + 3202 ] } ], "insert_team_scrim_alerts": [ - 3191, + 3237, { "objects": [ - 3188, + 3234, "[team_scrim_alerts_insert_input!]!" ], "on_conflict": [ - 3192 + 3238 ] } ], "insert_team_scrim_alerts_one": [ - 3181, + 3227, { "object": [ - 3188, + 3234, "team_scrim_alerts_insert_input!" ], "on_conflict": [ - 3192 + 3238 ] } ], "insert_team_scrim_availability": [ - 3224, + 3270, { "objects": [ - 3219, + 3265, "[team_scrim_availability_insert_input!]!" ], "on_conflict": [ - 3225 + 3271 ] } ], "insert_team_scrim_availability_one": [ - 3208, + 3254, { "object": [ - 3219, + 3265, "team_scrim_availability_insert_input!" ], "on_conflict": [ - 3225 + 3271 ] } ], "insert_team_scrim_request_proposals": [ - 3253, + 3299, { "objects": [ - 3248, + 3294, "[team_scrim_request_proposals_insert_input!]!" ], "on_conflict": [ - 3254 + 3300 ] } ], "insert_team_scrim_request_proposals_one": [ - 3236, + 3282, { "object": [ - 3248, + 3294, "team_scrim_request_proposals_insert_input!" ], "on_conflict": [ - 3254 + 3300 ] } ], "insert_team_scrim_requests": [ - 3296, + 3342, { "objects": [ - 3291, + 3337, "[team_scrim_requests_insert_input!]!" ], "on_conflict": [ - 3298 + 3344 ] } ], "insert_team_scrim_requests_one": [ - 3277, + 3323, { "object": [ - 3291, + 3337, "team_scrim_requests_insert_input!" ], "on_conflict": [ - 3298 + 3344 ] } ], "insert_team_scrim_settings": [ - 3333, + 3379, { "objects": [ - 3330, + 3376, "[team_scrim_settings_insert_input!]!" ], "on_conflict": [ - 3335 + 3381 ] } ], "insert_team_scrim_settings_one": [ - 3323, + 3369, { "object": [ - 3330, + 3376, "team_scrim_settings_insert_input!" ], "on_conflict": [ - 3335 + 3381 ] } ], "insert_team_suggestions": [ - 3361, + 3407, { "objects": [ - 3358, + 3404, "[team_suggestions_insert_input!]!" ], "on_conflict": [ - 3362 + 3408 ] } ], "insert_team_suggestions_one": [ - 3351, + 3397, { "object": [ - 3358, + 3404, "team_suggestions_insert_input!" ], "on_conflict": [ - 3362 + 3408 ] } ], "insert_teams": [ - 3395, + 3441, { "objects": [ - 3390, + 3436, "[teams_insert_input!]!" ], "on_conflict": [ - 3397 + 3443 ] } ], "insert_teams_one": [ - 3378, + 3424, { "object": [ - 3390, + 3436, "teams_insert_input!" ], "on_conflict": [ - 3397 + 3443 ] } ], "insert_tournament_brackets": [ - 3442, + 3488, { "objects": [ - 3437, + 3483, "[tournament_brackets_insert_input!]!" ], "on_conflict": [ - 3444 + 3490 ] } ], "insert_tournament_brackets_one": [ - 3423, + 3469, { "object": [ - 3437, + 3483, "tournament_brackets_insert_input!" ], "on_conflict": [ - 3444 + 3490 ] } ], "insert_tournament_organizers": [ - 3486, + 3532, { "objects": [ - 3481, + 3527, "[tournament_organizers_insert_input!]!" ], "on_conflict": [ - 3487 + 3533 ] } ], "insert_tournament_organizers_one": [ - 3469, + 3515, { "object": [ - 3481, + 3527, "tournament_organizers_insert_input!" ], "on_conflict": [ - 3487 + 3533 ] } ], "insert_tournament_stages": [ - 3533, + 3579, { "objects": [ - 3528, + 3574, "[tournament_stages_insert_input!]!" ], "on_conflict": [ - 3535 + 3581 ] } ], "insert_tournament_stages_one": [ - 3510, + 3556, { "object": [ - 3528, + 3574, "tournament_stages_insert_input!" ], "on_conflict": [ - 3535 + 3581 ] } ], "insert_tournament_team_invites": [ - 3578, + 3624, { "objects": [ - 3573, + 3619, "[tournament_team_invites_insert_input!]!" ], "on_conflict": [ - 3579 + 3625 ] } ], "insert_tournament_team_invites_one": [ - 3561, + 3607, { "object": [ - 3573, + 3619, "tournament_team_invites_insert_input!" ], "on_conflict": [ - 3579 + 3625 ] } ], "insert_tournament_team_roster": [ - 3619, + 3665, { "objects": [ - 3614, + 3660, "[tournament_team_roster_insert_input!]!" ], "on_conflict": [ - 3620 + 3666 ] } ], "insert_tournament_team_roster_one": [ - 3602, + 3648, { "object": [ - 3614, + 3660, "tournament_team_roster_insert_input!" ], "on_conflict": [ - 3620 + 3666 ] } ], "insert_tournament_teams": [ - 3660, + 3706, { "objects": [ - 3655, + 3701, "[tournament_teams_insert_input!]!" ], "on_conflict": [ - 3662 + 3708 ] } ], "insert_tournament_teams_one": [ - 3643, + 3689, { "object": [ - 3655, + 3701, "tournament_teams_insert_input!" ], "on_conflict": [ - 3662 + 3708 ] } ], "insert_tournament_trophies": [ - 3704, + 3750, { "objects": [ - 3699, + 3745, "[tournament_trophies_insert_input!]!" ], "on_conflict": [ - 3705 + 3751 ] } ], "insert_tournament_trophies_one": [ - 3685, + 3731, { "object": [ - 3699, + 3745, "tournament_trophies_insert_input!" ], "on_conflict": [ - 3705 + 3751 ] } ], "insert_tournament_trophy_configs": [ - 3747, + 3793, { "objects": [ - 3742, + 3788, "[tournament_trophy_configs_insert_input!]!" ], "on_conflict": [ - 3749 + 3795 ] } ], "insert_tournament_trophy_configs_one": [ - 3730, + 3776, { "object": [ - 3742, + 3788, "tournament_trophy_configs_insert_input!" ], "on_conflict": [ - 3749 + 3795 ] } ], "insert_tournaments": [ - 3791, + 3837, { "objects": [ - 3786, + 3832, "[tournaments_insert_input!]!" ], "on_conflict": [ - 3793 + 3839 ] } ], "insert_tournaments_one": [ - 3772, + 3818, { "object": [ - 3786, + 3832, "tournaments_insert_input!" ], "on_conflict": [ - 3793 + 3839 ] } ], "insert_v_match_captains": [ - 3848, + 3894, { "objects": [ - 3845, + 3891, "[v_match_captains_insert_input!]!" ] } ], "insert_v_match_captains_one": [ - 3839, + 3885, { "object": [ - 3845, + 3891, "v_match_captains_insert_input!" ] } ], "insert_v_match_map_backup_rounds": [ - 3959, + 4005, { "objects": [ - 3956, + 4002, "[v_match_map_backup_rounds_insert_input!]!" ] } ], "insert_v_match_map_backup_rounds_one": [ - 3950, + 3996, { "object": [ - 3956, + 4002, "v_match_map_backup_rounds_insert_input!" ] } ], "insert_v_player_match_map_hltv": [ - 4181, + 4227, { "objects": [ - 4176, + 4222, "[v_player_match_map_hltv_insert_input!]!" ] } ], "insert_v_player_match_map_hltv_one": [ - 4165, + 4211, { "object": [ - 4176, + 4222, "v_player_match_map_hltv_insert_input!" ] } ], "insert_v_pool_maps": [ - 4340, + 4386, { "objects": [ - 4335, + 4381, "[v_pool_maps_insert_input!]!" ] } ], "insert_v_pool_maps_one": [ - 4325, + 4371, { "object": [ - 4335, + 4381, "v_pool_maps_insert_input!" ] } ], "insert_v_team_stage_results": [ - 4434, + 4480, { "objects": [ - 4429, + 4475, "[v_team_stage_results_insert_input!]!" ], "on_conflict": [ - 4436 + 4482 ] } ], "insert_v_team_stage_results_one": [ - 4407, + 4453, { "object": [ - 4429, + 4475, "v_team_stage_results_insert_input!" ], "on_conflict": [ - 4436 + 4482 ] } ], "joinDraftGame": [ - 73, + 78, { "draftGameId": [ - 3818, + 3864, "uuid!" ], "inviteCode": [ - 70 + 75 ] } ], "joinDraftGameAsParty": [ - 73, + 78, { "draftGameId": [ - 3818, + 3864, "uuid!" ], "inviteCode": [ - 70 + 75 ] } ], @@ -122946,23 +123892,23 @@ export default { 40, { "reason": [ - 70 + 75 ], "serverId": [ - 70, + 75, "String!" ], "steam_id": [ - 70, + 75, "String!" ] } ], "leaveLineup": [ - 73, + 78, { "match_id": [ - 70, + 75, "String!" ] } @@ -122971,37 +123917,37 @@ export default { 66, { "auth_code": [ - 70, + 75, "String!" ], "share_code": [ - 70, + 75, "String!" ] } ], "loadFixtures": [ - 73 + 78 ], "logout": [ - 73 + 78 ], "moveServerItem": [ - 73, + 78, { "dest_path": [ - 70, + 75, "String!" ], "node_id": [ - 70, + 75, "String!" ], "server_id": [ - 70 + 75 ], "source_path": [ - 70, + 75, "String!" ] } @@ -123010,10 +123956,10 @@ export default { 52 ], "pauseClipRenderBatch": [ - 73, + 78, { "match_map_id": [ - 3818, + 3864, "uuid!" ] } @@ -123025,11 +123971,11 @@ export default { 22, { "draftGameId": [ - 3818, + 3864, "uuid!" ], "inviteCode": [ - 70 + 75 ] } ], @@ -123040,55 +123986,55 @@ export default { 38 ], "match_map_id": [ - 3818, + 3864, "uuid!" ], "preset": [ - 70, + 75, "String!" ], "resolution": [ - 70 + 75 ], "target_name": [ - 70 + 75 ], "target_steam_id": [ - 70, + 75, "String!" ], "title": [ - 70 + 75 ] } ], "randomizeTeams": [ - 73, + 78, { "match_id": [ - 3818, + 3864, "uuid!" ] } ], "rebootMatchServer": [ - 73, + 78, { "match_id": [ - 3818, + 3864, "uuid!" ] } ], "recalculate_tournament_trophies": [ - 3685, + 3731, { "args": [ - 2933, + 2970, "recalculate_tournament_trophies_args!" ], "distinct_on": [ - 3708, + 3754, "[tournament_trophies_select_column!]" ], "limit": [ @@ -123098,73 +124044,82 @@ export default { 38 ], "order_by": [ - 3706, + 3752, "[tournament_trophies_order_by!]" ], "where": [ - 3696 + 3742 ] } ], "reconnectLive": [ - 73, + 78, { "match_id": [ - 3818, + 3864, "uuid!" ] } ], "refreshAllPlayers": [ - 73 + 78 ], "refreshFaceitRank": [ - 73, + 78, { "steam_id": [ - 70, + 75, "String!" ] } ], "refreshLiveHud": [ - 73, + 78, { "match_id": [ - 3818, + 3864, "uuid!" ] } ], "registerName": [ - 73, + 78, { "name": [ - 70, + 75, "String!" ] } ], "removeFixtures": [ - 73 + 78 + ], + "removeSteamPresenceBotAccount": [ + 78, + { + "account_id": [ + 75, + "String!" + ] + } ], "renameServerItem": [ - 73, + 78, { "new_path": [ - 70, + 75, "String!" ], "node_id": [ - 70, + 75, "String!" ], "old_path": [ - 70, + 75, "String!" ], "server_id": [ - 70 + 75 ] } ], @@ -123175,94 +124130,94 @@ export default { 59 ], "reparseDemo": [ - 73, + 78, { "match_map_id": [ - 3818, + 3864, "uuid!" ] } ], "reparseMatchDemos": [ - 73, + 78, { "match_id": [ - 3818, + 3864, "uuid!" ] } ], "requestNameChange": [ - 73, + 78, { "name": [ - 70, + 75, "String!" ], "steam_id": [ - 169, + 174, "bigint!" ] } ], "requeueClipRender": [ - 73, + 78, { "job_id": [ - 3818, + 3864, "uuid!" ] } ], "respondDraftInvite": [ - 73, + 78, { "accept": [ 3, "Boolean!" ], "draftGameId": [ - 3818, + 3864, "uuid!" ] } ], "respondToScrimRequest": [ - 73, + 78, { "accept": [ 3, "Boolean!" ], "request_id": [ - 3818, + 3864, "uuid!" ] } ], "restartService": [ - 73, + 78, { "service": [ - 70, + 75, "String!" ] } ], "resumeClipRenderBatch": [ - 73, + 78, { "match_map_id": [ - 3818, + 3864, "uuid!" ] } ], "retryClipRenderBatch": [ - 73, + 78, { "match_map_id": [ - 3818, + 3864, "uuid!" ], "only_failed": [ @@ -123274,7 +124229,7 @@ export default { 53, { "valve_match_id": [ - 70, + 75, "String!" ] } @@ -123286,17 +124241,17 @@ export default { 29 ], "reason": [ - 70 + 75 ], "serverId": [ - 70 + 75 ], "steam_id": [ - 70, + 75, "String!" ], "type": [ - 70, + 75, "String!" ] } @@ -123305,20 +124260,20 @@ export default { 48, { "content_markdown": [ - 70, + 75, "String!" ], "cover_image_url": [ - 70 + 75 ], "id": [ - 3818 + 3864 ], "teaser": [ - 70 + 75 ], "title": [ - 70, + 75, "String!" ] } @@ -123327,95 +124282,95 @@ export default { 61 ], "scanSteamBans": [ - 73 + 78 ], "scheduleMatch": [ - 73, + 78, { "match_id": [ - 3818, + 3864, "uuid!" ], "time": [ - 3421 + 3467 ] } ], "sendScrimRequest": [ - 73, + 78, { "best_of": [ 38 ], "from_team_id": [ - 3818, + 3864, "uuid!" ], "proposed_scheduled_at": [ - 3421, + 3467, "timestamptz!" ], "region": [ - 70 + 75 ], "to_team_id": [ - 3818, + 3864, "uuid!" ] } ], "setGameNodeSchedulingState": [ - 73, + 78, { "enabled": [ 3, "Boolean!" ], "game_server_node_id": [ - 70, + 75, "String!" ] } ], "setHudMode": [ - 73, + 78, { "match_id": [ - 3818, + 3864, "uuid!" ], "mode": [ - 70, + 75, "String!" ] } ], "setMapWinner": [ - 73, + 78, { "match_id": [ - 3818, + 3864, "uuid!" ], "match_map_id": [ - 3818, + 3864, "uuid!" ], "winning_lineup_id": [ - 3818, + 3864, "uuid!" ] } ], "setMatchWinner": [ - 73, + 78, { "match_id": [ - 3818, + 3864, "uuid!" ], "winning_lineup_id": [ - 3818, + 3864, "uuid!" ] } @@ -123424,11 +124379,11 @@ export default { 48, { "id": [ - 3818, + 3864, "uuid!" ], "status": [ - 70, + 75, "String!" ] } @@ -123437,45 +124392,45 @@ export default { 65 ], "skipShaders": [ - 73, + 78, { "match_id": [ - 3818, + 3864, "uuid!" ] } ], "specAutodirector": [ - 73, + 78, { "enabled": [ 3, "Boolean!" ], "match_id": [ - 3818, + 3864, "uuid!" ] } ], "specClick": [ - 73, + 78, { "button": [ - 70, + 75, "String!" ], "match_id": [ - 3818, + 3864, "uuid!" ] } ], "specHud": [ - 73, + 78, { "match_id": [ - 3818, + 3864, "uuid!" ], "visible": [ @@ -123485,41 +124440,41 @@ export default { } ], "specHudSides": [ - 73, + 78, { "match_id": [ - 3818, + 3864, "uuid!" ] } ], "specJump": [ - 73, + 78, { "match_id": [ - 3818, + 3864, "uuid!" ] } ], "specPlayer": [ - 73, + 78, { "accountid": [ 38, "Int!" ], "match_id": [ - 3818, + 3864, "uuid!" ] } ], "specScoreboard": [ - 73, + 78, { "match_id": [ - 3818, + 3864, "uuid!" ], "show": [ @@ -123529,10 +124484,10 @@ export default { } ], "specSlot": [ - 73, + 78, { "match_id": [ - 3818, + 3864, "uuid!" ], "slot": [ @@ -123542,4768 +124497,4856 @@ export default { } ], "specXray": [ - 73, + 78, { "enabled": [ 3, "Boolean!" ], "match_id": [ - 3818, + 3864, "uuid!" ] } ], "startLive": [ - 73, + 78, { "match_id": [ - 3818, + 3864, "uuid!" ], "mode": [ - 70, + 75, "String!" ] } ], "startMatch": [ - 73, + 78, { "match_id": [ - 3818, + 3864, "uuid!" ], "server_id": [ - 3818 + 3864 ] } ], "stopGpuSession": [ - 73, + 78, { "game_server_node_id": [ - 3818, + 3864, "uuid!" ] } ], "stopLive": [ - 73, + 78, { "match_id": [ - 3818, + 3864, "uuid!" ] } ], "stopWatchDemo": [ - 73, + 78, { "match_map_id": [ - 3818, + 3864, "uuid!" ] } ], + "submitSteamPresenceSteamGuard": [ + 78, + { + "account_id": [ + 75, + "String!" + ], + "code": [ + 75, + "String!" + ] + } + ], "swapLineups": [ - 73, + 78, { "match_id": [ - 3818, + 3864, "uuid!" ] } ], "switchLineup": [ - 73, + 78, { "match_id": [ - 70, + 75, "String!" ] } ], "switchLiveMatch": [ - 73, + 78, { "from_match_id": [ - 3818, + 3864, "uuid!" ], "mode": [ - 70, + 75, "String!" ], "to_match_id": [ - 3818, + 3864, "uuid!" ] } ], "syncSteamFriends": [ - 73 + 78 ], "testFaceitIntegration": [ 24 ], "testUpload": [ - 78 + 83 ], "unlinkDiscord": [ - 73 + 78 ], "unlinkSteamMatchHistory": [ - 73 + 78 ], "unsanctionServerPlayer": [ 60, { "serverId": [ - 70 + 75 ], "steam_id": [ - 70, + 75, "String!" ], "type": [ - 70, + 75, "String!" ] } ], "updateClip": [ - 73, + 78, { "clip_id": [ - 3818, + 3864, "uuid!" ], "target_steam_id": [ - 70 + 75 ], "title": [ - 70 + 75 ], "visibility": [ - 70 + 75 ] } ], "updateCs": [ - 73, + 78, { "game": [ - 70 + 75 ], "game_server_node_id": [ - 3818 + 3864 ] } ], "updateDraftGame": [ - 73, + 78, { "draftGameId": [ - 3818, + 3864, "uuid!" ], "settings": [ - 1235, + 1240, "jsonb!" ] } ], "updateServices": [ - 73 + 78 ], "update__map_pool": [ - 91, + 96, { "_set": [ - 96 + 101 ], "where": [ - 86, + 91, "_map_pool_bool_exp!" ] } ], "update__map_pool_by_pk": [ - 83, + 88, { "_set": [ - 96 + 101 ], "pk_columns": [ - 94, + 99, "_map_pool_pk_columns_input!" ] } ], "update__map_pool_many": [ - 91, + 96, { "updates": [ - 100, + 105, "[_map_pool_updates!]!" ] } ], "update_abandoned_matches": [ - 118, + 123, { "_inc": [ - 112 + 117 ], "_set": [ - 123 + 128 ], "where": [ - 110, + 115, "abandoned_matches_bool_exp!" ] } ], "update_abandoned_matches_by_pk": [ - 101, + 106, { "_inc": [ - 112 + 117 ], "_set": [ - 123 + 128 ], "pk_columns": [ - 121, + 126, "abandoned_matches_pk_columns_input!" ] } ], "update_abandoned_matches_many": [ - 118, + 123, { "updates": [ - 135, + 140, "[abandoned_matches_updates!]!" ] } ], "update_api_keys": [ - 152, + 157, { "_inc": [ - 148 + 153 ], "_set": [ - 157 + 162 ], "where": [ - 146, + 151, "api_keys_bool_exp!" ] } ], "update_api_keys_by_pk": [ - 142, + 147, { "_inc": [ - 148 + 153 ], "_set": [ - 157 + 162 ], "pk_columns": [ - 155, + 160, "api_keys_pk_columns_input!" ] } ], "update_api_keys_many": [ - 152, + 157, { "updates": [ - 165, + 170, "[api_keys_updates!]!" ] } ], "update_clip_render_jobs": [ - 197, + 202, { "_append": [ - 182 + 187 ], "_delete_at_path": [ - 188 + 193 ], "_delete_elem": [ - 189 + 194 ], "_delete_key": [ - 190 + 195 ], "_inc": [ - 191 + 196 ], "_prepend": [ - 201 + 206 ], "_set": [ - 205 + 210 ], "where": [ - 186, + 191, "clip_render_jobs_bool_exp!" ] } ], "update_clip_render_jobs_by_pk": [ - 174, + 179, { "_append": [ - 182 + 187 ], "_delete_at_path": [ - 188 + 193 ], "_delete_elem": [ - 189 + 194 ], "_delete_key": [ - 190 + 195 ], "_inc": [ - 191 + 196 ], "_prepend": [ - 201 + 206 ], "_set": [ - 205 + 210 ], "pk_columns": [ - 200, + 205, "clip_render_jobs_pk_columns_input!" ] } ], "update_clip_render_jobs_many": [ - 197, + 202, { "updates": [ - 217, + 222, "[clip_render_jobs_updates!]!" ] } ], "update_db_backups": [ - 235, + 240, { "_inc": [ - 231 + 236 ], "_set": [ - 240 + 245 ], "where": [ - 229, + 234, "db_backups_bool_exp!" ] } ], "update_db_backups_by_pk": [ - 225, + 230, { "_inc": [ - 231 + 236 ], "_set": [ - 240 + 245 ], "pk_columns": [ - 238, + 243, "db_backups_pk_columns_input!" ] } ], "update_db_backups_many": [ - 235, + 240, { "updates": [ - 248, + 253, "[db_backups_updates!]!" ] } ], "update_draft_game_picks": [ - 271, + 276, { "_inc": [ - 265 + 270 ], "_set": [ - 278 + 283 ], "where": [ - 263, + 268, "draft_game_picks_bool_exp!" ] } ], "update_draft_game_picks_by_pk": [ - 252, + 257, { "_inc": [ - 265 + 270 ], "_set": [ - 278 + 283 ], "pk_columns": [ - 274, + 279, "draft_game_picks_pk_columns_input!" ] } ], "update_draft_game_picks_many": [ - 271, + 276, { "updates": [ - 290, + 295, "[draft_game_picks_updates!]!" ] } ], "update_draft_game_players": [ - 316, + 321, { "_inc": [ - 310 + 315 ], "_set": [ - 323 + 328 ], "where": [ - 308, + 313, "draft_game_players_bool_exp!" ] } ], "update_draft_game_players_by_pk": [ - 297, + 302, { "_inc": [ - 310 + 315 ], "_set": [ - 323 + 328 ], "pk_columns": [ - 319, + 324, "draft_game_players_pk_columns_input!" ] } ], "update_draft_game_players_many": [ - 316, + 321, { "updates": [ - 335, + 340, "[draft_game_players_updates!]!" ] } ], "update_draft_games": [ - 361, + 366, { "_inc": [ - 355 + 360 ], "_set": [ - 369 + 374 ], "where": [ - 353, + 358, "draft_games_bool_exp!" ] } ], "update_draft_games_by_pk": [ - 342, + 347, { "_inc": [ - 355 + 360 ], "_set": [ - 369 + 374 ], "pk_columns": [ - 365, + 370, "draft_games_pk_columns_input!" ] } ], "update_draft_games_many": [ - 361, + 366, { "updates": [ - 381, + 386, "[draft_games_updates!]!" ] } ], "update_e_check_in_settings": [ - 398, + 403, { "_set": [ - 403 + 408 ], "where": [ - 391, + 396, "e_check_in_settings_bool_exp!" ] } ], "update_e_check_in_settings_by_pk": [ - 388, + 393, { "_set": [ - 403 + 408 ], "pk_columns": [ - 401, + 406, "e_check_in_settings_pk_columns_input!" ] } ], "update_e_check_in_settings_many": [ - 398, + 403, { "updates": [ - 407, + 412, "[e_check_in_settings_updates!]!" ] } ], "update_e_draft_game_captain_selection": [ - 418, + 423, { "_set": [ - 424 + 429 ], "where": [ - 411, + 416, "e_draft_game_captain_selection_bool_exp!" ] } ], "update_e_draft_game_captain_selection_by_pk": [ - 408, + 413, { "_set": [ - 424 + 429 ], "pk_columns": [ - 422, + 427, "e_draft_game_captain_selection_pk_columns_input!" ] } ], "update_e_draft_game_captain_selection_many": [ - 418, + 423, { "updates": [ - 428, + 433, "[e_draft_game_captain_selection_updates!]!" ] } ], "update_e_draft_game_draft_order": [ - 439, + 444, { "_set": [ - 445 + 450 ], "where": [ - 432, + 437, "e_draft_game_draft_order_bool_exp!" ] } ], "update_e_draft_game_draft_order_by_pk": [ - 429, + 434, { "_set": [ - 445 + 450 ], "pk_columns": [ - 443, + 448, "e_draft_game_draft_order_pk_columns_input!" ] } ], "update_e_draft_game_draft_order_many": [ - 439, + 444, { "updates": [ - 449, + 454, "[e_draft_game_draft_order_updates!]!" ] } ], "update_e_draft_game_mode": [ - 460, + 465, { "_set": [ - 466 + 471 ], "where": [ - 453, + 458, "e_draft_game_mode_bool_exp!" ] } ], "update_e_draft_game_mode_by_pk": [ - 450, + 455, { "_set": [ - 466 + 471 ], "pk_columns": [ - 464, + 469, "e_draft_game_mode_pk_columns_input!" ] } ], "update_e_draft_game_mode_many": [ - 460, + 465, { "updates": [ - 470, + 475, "[e_draft_game_mode_updates!]!" ] } ], "update_e_draft_game_player_status": [ - 481, + 486, { "_set": [ - 487 + 492 ], "where": [ - 474, + 479, "e_draft_game_player_status_bool_exp!" ] } ], "update_e_draft_game_player_status_by_pk": [ - 471, + 476, { "_set": [ - 487 + 492 ], "pk_columns": [ - 485, + 490, "e_draft_game_player_status_pk_columns_input!" ] } ], "update_e_draft_game_player_status_many": [ - 481, + 486, { "updates": [ - 491, + 496, "[e_draft_game_player_status_updates!]!" ] } ], "update_e_draft_game_status": [ - 502, + 507, { "_set": [ - 508 + 513 ], "where": [ - 495, + 500, "e_draft_game_status_bool_exp!" ] } ], "update_e_draft_game_status_by_pk": [ - 492, + 497, { "_set": [ - 508 + 513 ], "pk_columns": [ - 506, + 511, "e_draft_game_status_pk_columns_input!" ] } ], "update_e_draft_game_status_many": [ - 502, + 507, { "updates": [ - 512, + 517, "[e_draft_game_status_updates!]!" ] } ], "update_e_friend_status": [ - 523, + 528, { "_set": [ - 529 + 534 ], "where": [ - 516, + 521, "e_friend_status_bool_exp!" ] } ], "update_e_friend_status_by_pk": [ - 513, + 518, { "_set": [ - 529 + 534 ], "pk_columns": [ - 527, + 532, "e_friend_status_pk_columns_input!" ] } ], "update_e_friend_status_many": [ - 523, + 528, { "updates": [ - 533, + 538, "[e_friend_status_updates!]!" ] } ], "update_e_game_cfg_types": [ - 544, + 549, { "_set": [ - 549 + 554 ], "where": [ - 537, + 542, "e_game_cfg_types_bool_exp!" ] } ], "update_e_game_cfg_types_by_pk": [ - 534, + 539, { "_set": [ - 549 + 554 ], "pk_columns": [ - 547, + 552, "e_game_cfg_types_pk_columns_input!" ] } ], "update_e_game_cfg_types_many": [ - 544, + 549, { "updates": [ - 553, + 558, "[e_game_cfg_types_updates!]!" ] } ], "update_e_game_server_node_statuses": [ - 564, + 569, { "_set": [ - 570 + 575 ], "where": [ - 557, + 562, "e_game_server_node_statuses_bool_exp!" ] } ], "update_e_game_server_node_statuses_by_pk": [ - 554, + 559, { "_set": [ - 570 + 575 ], "pk_columns": [ - 568, + 573, "e_game_server_node_statuses_pk_columns_input!" ] } ], "update_e_game_server_node_statuses_many": [ - 564, + 569, { "updates": [ - 574, + 579, "[e_game_server_node_statuses_updates!]!" ] } ], "update_e_lobby_access": [ - 585, + 590, { "_set": [ - 591 + 596 ], "where": [ - 578, + 583, "e_lobby_access_bool_exp!" ] } ], "update_e_lobby_access_by_pk": [ - 575, + 580, { "_set": [ - 591 + 596 ], "pk_columns": [ - 589, + 594, "e_lobby_access_pk_columns_input!" ] } ], "update_e_lobby_access_many": [ - 585, + 590, { "updates": [ - 595, + 600, "[e_lobby_access_updates!]!" ] } ], "update_e_lobby_player_status": [ - 606, + 611, { "_set": [ - 611 + 616 ], "where": [ - 599, + 604, "e_lobby_player_status_bool_exp!" ] } ], "update_e_lobby_player_status_by_pk": [ - 596, + 601, { "_set": [ - 611 + 616 ], "pk_columns": [ - 609, + 614, "e_lobby_player_status_pk_columns_input!" ] } ], "update_e_lobby_player_status_many": [ - 606, + 611, { "updates": [ - 615, + 620, "[e_lobby_player_status_updates!]!" ] } ], "update_e_map_pool_types": [ - 626, + 631, { "_set": [ - 632 + 637 ], "where": [ - 619, + 624, "e_map_pool_types_bool_exp!" ] } ], "update_e_map_pool_types_by_pk": [ - 616, + 621, { "_set": [ - 632 + 637 ], "pk_columns": [ - 630, + 635, "e_map_pool_types_pk_columns_input!" ] } ], "update_e_map_pool_types_many": [ - 626, + 631, { "updates": [ - 636, + 641, "[e_map_pool_types_updates!]!" ] } ], "update_e_match_clip_visibility": [ - 647, + 652, { "_set": [ - 652 + 657 ], "where": [ - 640, + 645, "e_match_clip_visibility_bool_exp!" ] } ], "update_e_match_clip_visibility_by_pk": [ - 637, + 642, { "_set": [ - 652 + 657 ], "pk_columns": [ - 650, + 655, "e_match_clip_visibility_pk_columns_input!" ] } ], "update_e_match_clip_visibility_many": [ - 647, + 652, { "updates": [ - 656, + 661, "[e_match_clip_visibility_updates!]!" ] } ], "update_e_match_map_status": [ - 667, + 672, { "_set": [ - 673 + 678 ], "where": [ - 660, + 665, "e_match_map_status_bool_exp!" ] } ], "update_e_match_map_status_by_pk": [ - 657, + 662, { "_set": [ - 673 + 678 ], "pk_columns": [ - 671, + 676, "e_match_map_status_pk_columns_input!" ] } ], "update_e_match_map_status_many": [ - 667, + 672, { "updates": [ - 677, + 682, "[e_match_map_status_updates!]!" ] } ], "update_e_match_mode": [ - 688, + 693, { "_set": [ - 693 + 698 ], "where": [ - 681, + 686, "e_match_mode_bool_exp!" ] } ], "update_e_match_mode_by_pk": [ - 678, + 683, { "_set": [ - 693 + 698 ], "pk_columns": [ - 691, + 696, "e_match_mode_pk_columns_input!" ] } ], "update_e_match_mode_many": [ - 688, + 693, { "updates": [ - 697, + 702, "[e_match_mode_updates!]!" ] } ], "update_e_match_status": [ - 708, + 713, { "_set": [ - 714 + 719 ], "where": [ - 701, + 706, "e_match_status_bool_exp!" ] } ], "update_e_match_status_by_pk": [ - 698, + 703, { "_set": [ - 714 + 719 ], "pk_columns": [ - 712, + 717, "e_match_status_pk_columns_input!" ] } ], "update_e_match_status_many": [ - 708, + 713, { "updates": [ - 718, + 723, "[e_match_status_updates!]!" ] } ], "update_e_match_types": [ - 729, + 734, { "_set": [ - 735 + 740 ], "where": [ - 722, + 727, "e_match_types_bool_exp!" ] } ], "update_e_match_types_by_pk": [ - 719, + 724, { "_set": [ - 735 + 740 ], "pk_columns": [ - 733, + 738, "e_match_types_pk_columns_input!" ] } ], "update_e_match_types_many": [ - 729, + 734, { "updates": [ - 739, + 744, "[e_match_types_updates!]!" ] } ], "update_e_notification_types": [ - 750, + 755, { "_set": [ - 755 + 760 ], "where": [ - 743, + 748, "e_notification_types_bool_exp!" ] } ], "update_e_notification_types_by_pk": [ - 740, + 745, { "_set": [ - 755 + 760 ], "pk_columns": [ - 753, + 758, "e_notification_types_pk_columns_input!" ] } ], "update_e_notification_types_many": [ - 750, + 755, { "updates": [ - 759, + 764, "[e_notification_types_updates!]!" ] } ], "update_e_objective_types": [ - 770, + 775, { "_set": [ - 775 + 780 ], "where": [ - 763, + 768, "e_objective_types_bool_exp!" ] } ], "update_e_objective_types_by_pk": [ - 760, + 765, { "_set": [ - 775 + 780 ], "pk_columns": [ - 773, + 778, "e_objective_types_pk_columns_input!" ] } ], "update_e_objective_types_many": [ - 770, + 775, { "updates": [ - 779, + 784, "[e_objective_types_updates!]!" ] } ], "update_e_player_roles": [ - 790, + 795, { "_set": [ - 795 + 800 ], "where": [ - 783, + 788, "e_player_roles_bool_exp!" ] } ], "update_e_player_roles_by_pk": [ - 780, + 785, { "_set": [ - 795 + 800 ], "pk_columns": [ - 793, + 798, "e_player_roles_pk_columns_input!" ] } ], "update_e_player_roles_many": [ - 790, + 795, { "updates": [ - 799, + 804, "[e_player_roles_updates!]!" ] } ], "update_e_ready_settings": [ - 810, + 815, { "_set": [ - 815 + 820 ], "where": [ - 803, + 808, "e_ready_settings_bool_exp!" ] } ], "update_e_ready_settings_by_pk": [ - 800, + 805, { "_set": [ - 815 + 820 ], "pk_columns": [ - 813, + 818, "e_ready_settings_pk_columns_input!" ] } ], "update_e_ready_settings_many": [ - 810, + 815, { "updates": [ - 819, + 824, "[e_ready_settings_updates!]!" ] } ], "update_e_sanction_types": [ - 830, + 835, { "_set": [ - 836 + 841 ], "where": [ - 823, + 828, "e_sanction_types_bool_exp!" ] } ], "update_e_sanction_types_by_pk": [ - 820, + 825, { "_set": [ - 836 + 841 ], "pk_columns": [ - 834, + 839, "e_sanction_types_pk_columns_input!" ] } ], "update_e_sanction_types_many": [ - 830, + 835, { "updates": [ - 840, + 845, "[e_sanction_types_updates!]!" ] } ], "update_e_scrim_request_statuses": [ - 851, + 856, { "_set": [ - 856 + 861 ], "where": [ - 844, + 849, "e_scrim_request_statuses_bool_exp!" ] } ], "update_e_scrim_request_statuses_by_pk": [ - 841, + 846, { "_set": [ - 856 + 861 ], "pk_columns": [ - 854, + 859, "e_scrim_request_statuses_pk_columns_input!" ] } ], "update_e_scrim_request_statuses_many": [ - 851, + 856, { "updates": [ - 860, + 865, "[e_scrim_request_statuses_updates!]!" ] } ], "update_e_server_types": [ - 871, + 876, { "_set": [ - 876 + 881 ], "where": [ - 864, + 869, "e_server_types_bool_exp!" ] } ], "update_e_server_types_by_pk": [ - 861, + 866, { "_set": [ - 876 + 881 ], "pk_columns": [ - 874, + 879, "e_server_types_pk_columns_input!" ] } ], "update_e_server_types_many": [ - 871, + 876, { "updates": [ - 880, + 885, "[e_server_types_updates!]!" ] } ], "update_e_sides": [ - 891, + 896, { "_set": [ - 896 + 901 ], "where": [ - 884, + 889, "e_sides_bool_exp!" ] } ], "update_e_sides_by_pk": [ - 881, + 886, { "_set": [ - 896 + 901 ], "pk_columns": [ - 894, + 899, "e_sides_pk_columns_input!" ] } ], "update_e_sides_many": [ - 891, + 896, { "updates": [ - 900, + 905, "[e_sides_updates!]!" ] } ], "update_e_system_alert_types": [ - 911, + 916, { "_set": [ - 916 + 921 ], "where": [ - 904, + 909, "e_system_alert_types_bool_exp!" ] } ], "update_e_system_alert_types_by_pk": [ - 901, + 906, { "_set": [ - 916 + 921 ], "pk_columns": [ - 914, + 919, "e_system_alert_types_pk_columns_input!" ] } ], "update_e_system_alert_types_many": [ - 911, + 916, { "updates": [ - 920, + 925, "[e_system_alert_types_updates!]!" ] } ], "update_e_team_roles": [ - 931, + 936, { "_set": [ - 937 + 942 ], "where": [ - 924, + 929, "e_team_roles_bool_exp!" ] } ], "update_e_team_roles_by_pk": [ - 921, + 926, { "_set": [ - 937 + 942 ], "pk_columns": [ - 935, + 940, "e_team_roles_pk_columns_input!" ] } ], "update_e_team_roles_many": [ - 931, + 936, { "updates": [ - 941, + 946, "[e_team_roles_updates!]!" ] } ], "update_e_team_roster_statuses": [ - 952, + 957, { "_set": [ - 957 + 962 ], "where": [ - 945, + 950, "e_team_roster_statuses_bool_exp!" ] } ], "update_e_team_roster_statuses_by_pk": [ - 942, + 947, { "_set": [ - 957 + 962 ], "pk_columns": [ - 955, + 960, "e_team_roster_statuses_pk_columns_input!" ] } ], "update_e_team_roster_statuses_many": [ - 952, + 957, { "updates": [ - 961, + 966, "[e_team_roster_statuses_updates!]!" ] } ], "update_e_timeout_settings": [ - 972, + 977, { "_set": [ - 977 + 982 ], "where": [ - 965, + 970, "e_timeout_settings_bool_exp!" ] } ], "update_e_timeout_settings_by_pk": [ - 962, + 967, { "_set": [ - 977 + 982 ], "pk_columns": [ - 975, + 980, "e_timeout_settings_pk_columns_input!" ] } ], "update_e_timeout_settings_many": [ - 972, + 977, { "updates": [ - 981, + 986, "[e_timeout_settings_updates!]!" ] } ], "update_e_tournament_stage_types": [ - 992, + 997, { "_set": [ - 998 + 1003 ], "where": [ - 985, + 990, "e_tournament_stage_types_bool_exp!" ] } ], "update_e_tournament_stage_types_by_pk": [ - 982, + 987, { "_set": [ - 998 + 1003 ], "pk_columns": [ - 996, + 1001, "e_tournament_stage_types_pk_columns_input!" ] } ], "update_e_tournament_stage_types_many": [ - 992, + 997, { "updates": [ - 1002, + 1007, "[e_tournament_stage_types_updates!]!" ] } ], "update_e_tournament_status": [ - 1013, + 1018, { "_set": [ - 1019 + 1024 ], "where": [ - 1006, + 1011, "e_tournament_status_bool_exp!" ] } ], "update_e_tournament_status_by_pk": [ - 1003, + 1008, { "_set": [ - 1019 + 1024 ], "pk_columns": [ - 1017, + 1022, "e_tournament_status_pk_columns_input!" ] } ], "update_e_tournament_status_many": [ - 1013, + 1018, { "updates": [ - 1023, + 1028, "[e_tournament_status_updates!]!" ] } ], "update_e_utility_types": [ - 1034, + 1039, { "_set": [ - 1039 + 1044 ], "where": [ - 1027, + 1032, "e_utility_types_bool_exp!" ] } ], "update_e_utility_types_by_pk": [ - 1024, + 1029, { "_set": [ - 1039 + 1044 ], "pk_columns": [ - 1037, + 1042, "e_utility_types_pk_columns_input!" ] } ], "update_e_utility_types_many": [ - 1034, + 1039, { "updates": [ - 1043, + 1048, "[e_utility_types_updates!]!" ] } ], "update_e_veto_pick_types": [ - 1054, + 1059, { "_set": [ - 1059 + 1064 ], "where": [ - 1047, + 1052, "e_veto_pick_types_bool_exp!" ] } ], "update_e_veto_pick_types_by_pk": [ - 1044, + 1049, { "_set": [ - 1059 + 1064 ], "pk_columns": [ - 1057, + 1062, "e_veto_pick_types_pk_columns_input!" ] } ], "update_e_veto_pick_types_many": [ - 1054, + 1059, { "updates": [ - 1063, + 1068, "[e_veto_pick_types_updates!]!" ] } ], "update_e_winning_reasons": [ - 1074, + 1079, { "_set": [ - 1079 + 1084 ], "where": [ - 1067, + 1072, "e_winning_reasons_bool_exp!" ] } ], "update_e_winning_reasons_by_pk": [ - 1064, + 1069, { "_set": [ - 1079 + 1084 ], "pk_columns": [ - 1077, + 1082, "e_winning_reasons_pk_columns_input!" ] } ], "update_e_winning_reasons_many": [ - 1074, + 1079, { "updates": [ - 1083, + 1088, "[e_winning_reasons_updates!]!" ] } ], "update_friends": [ - 1096, + 1101, { "_inc": [ - 1092 + 1097 ], "_set": [ - 1101 + 1106 ], "where": [ - 1090, + 1095, "friends_bool_exp!" ] } ], "update_friends_by_pk": [ - 1086, + 1091, { "_inc": [ - 1092 + 1097 ], "_set": [ - 1101 + 1106 ], "pk_columns": [ - 1099, + 1104, "friends_pk_columns_input!" ] } ], "update_friends_many": [ - 1096, + 1101, { "updates": [ - 1109, + 1114, "[friends_updates!]!" ] } ], "update_game_server_nodes": [ - 1136, + 1141, { "_append": [ - 1121 + 1126 ], "_delete_at_path": [ - 1127 + 1132 ], "_delete_elem": [ - 1128 + 1133 ], "_delete_key": [ - 1129 + 1134 ], "_inc": [ - 1130 + 1135 ], "_prepend": [ - 1141 + 1146 ], "_set": [ - 1145 + 1150 ], "where": [ - 1125, + 1130, "game_server_nodes_bool_exp!" ] } ], "update_game_server_nodes_by_pk": [ - 1113, + 1118, { "_append": [ - 1121 + 1126 ], "_delete_at_path": [ - 1127 + 1132 ], "_delete_elem": [ - 1128 + 1133 ], "_delete_key": [ - 1129 + 1134 ], "_inc": [ - 1130 + 1135 ], "_prepend": [ - 1141 + 1146 ], "_set": [ - 1145 + 1150 ], "pk_columns": [ - 1140, + 1145, "game_server_nodes_pk_columns_input!" ] } ], "update_game_server_nodes_many": [ - 1136, + 1141, { "updates": [ - 1157, + 1162, "[game_server_nodes_updates!]!" ] } ], "update_game_versions": [ - 1178, + 1183, { "_append": [ - 1167 + 1172 ], "_delete_at_path": [ - 1171 + 1176 ], "_delete_elem": [ - 1172 + 1177 ], "_delete_key": [ - 1173 + 1178 ], "_inc": [ - 1174 + 1179 ], "_prepend": [ - 1183 + 1188 ], "_set": [ - 1185 + 1190 ], "where": [ - 1169, + 1174, "game_versions_bool_exp!" ] } ], "update_game_versions_by_pk": [ - 1164, + 1169, { "_append": [ - 1167 + 1172 ], "_delete_at_path": [ - 1171 + 1176 ], "_delete_elem": [ - 1172 + 1177 ], "_delete_key": [ - 1173 + 1178 ], "_inc": [ - 1174 + 1179 ], "_prepend": [ - 1183 + 1188 ], "_set": [ - 1185 + 1190 ], "pk_columns": [ - 1182, + 1187, "game_versions_pk_columns_input!" ] } ], "update_game_versions_many": [ - 1178, + 1183, { "updates": [ - 1193, + 1198, "[game_versions_updates!]!" ] } ], "update_gamedata_signature_validations": [ - 1211, + 1216, { "_append": [ - 1200 + 1205 ], "_delete_at_path": [ - 1204 + 1209 ], "_delete_elem": [ - 1205 + 1210 ], "_delete_key": [ - 1206 + 1211 ], "_inc": [ - 1207 + 1212 ], "_prepend": [ - 1215 + 1220 ], "_set": [ - 1217 + 1222 ], "where": [ - 1202, + 1207, "gamedata_signature_validations_bool_exp!" ] } ], "update_gamedata_signature_validations_by_pk": [ - 1197, + 1202, { "_append": [ - 1200 + 1205 ], "_delete_at_path": [ - 1204 + 1209 ], "_delete_elem": [ - 1205 + 1210 ], "_delete_key": [ - 1206 + 1211 ], "_inc": [ - 1207 + 1212 ], "_prepend": [ - 1215 + 1220 ], "_set": [ - 1217 + 1222 ], "pk_columns": [ - 1214, + 1219, "gamedata_signature_validations_pk_columns_input!" ] } ], "update_gamedata_signature_validations_many": [ - 1211, + 1216, { "updates": [ - 1225, + 1230, "[gamedata_signature_validations_updates!]!" ] } ], "update_leaderboard_entries": [ - 1247, + 1252, { "_inc": [ - 1243 + 1248 ], "_set": [ - 1250 + 1255 ], "where": [ - 1242, + 1247, "leaderboard_entries_bool_exp!" ] } ], "update_leaderboard_entries_many": [ - 1247, + 1252, { "updates": [ - 1257, + 1262, "[leaderboard_entries_updates!]!" ] } ], "update_lobbies": [ - 1269, + 1274, { "_set": [ - 1275 + 1280 ], "where": [ - 1264, + 1269, "lobbies_bool_exp!" ] } ], "update_lobbies_by_pk": [ - 1261, + 1266, { "_set": [ - 1275 + 1280 ], "pk_columns": [ - 1273, + 1278, "lobbies_pk_columns_input!" ] } ], "update_lobbies_many": [ - 1269, + 1274, { "updates": [ - 1279, + 1284, "[lobbies_updates!]!" ] } ], "update_lobby_players": [ - 1299, + 1304, { "_inc": [ - 1293 + 1298 ], "_set": [ - 1306 + 1311 ], "where": [ - 1291, + 1296, "lobby_players_bool_exp!" ] } ], "update_lobby_players_by_pk": [ - 1280, + 1285, { "_inc": [ - 1293 + 1298 ], "_set": [ - 1306 + 1311 ], "pk_columns": [ - 1302, + 1307, "lobby_players_pk_columns_input!" ] } ], "update_lobby_players_many": [ - 1299, + 1304, { "updates": [ - 1318, + 1323, "[lobby_players_updates!]!" ] } ], "update_map_pools": [ - 1333, + 1338, { "_set": [ - 1339 + 1344 ], "where": [ - 1328, + 1333, "map_pools_bool_exp!" ] } ], "update_map_pools_by_pk": [ - 1325, + 1330, { "_set": [ - 1339 + 1344 ], "pk_columns": [ - 1337, + 1342, "map_pools_pk_columns_input!" ] } ], "update_map_pools_many": [ - 1333, + 1338, { "updates": [ - 1343, + 1348, "[map_pools_updates!]!" ] } ], "update_maps": [ - 1360, + 1365, { "_set": [ - 1368 + 1373 ], "where": [ - 1353, + 1358, "maps_bool_exp!" ] } ], "update_maps_by_pk": [ - 1344, + 1349, { "_set": [ - 1368 + 1373 ], "pk_columns": [ - 1364, + 1369, "maps_pk_columns_input!" ] } ], "update_maps_many": [ - 1360, + 1365, { "updates": [ - 1372, + 1377, "[maps_updates!]!" ] } ], "update_match_clips": [ - 1390, + 1395, { "_inc": [ - 1384 + 1389 ], "_set": [ - 1396 + 1401 ], "where": [ - 1382, + 1387, "match_clips_bool_exp!" ] } ], "update_match_clips_by_pk": [ - 1373, + 1378, { "_inc": [ - 1384 + 1389 ], "_set": [ - 1396 + 1401 ], "pk_columns": [ - 1394, + 1399, "match_clips_pk_columns_input!" ] } ], "update_match_clips_many": [ - 1390, + 1395, { "updates": [ - 1408, + 1413, "[match_clips_updates!]!" ] } ], "update_match_demo_sessions": [ - 1436, + 1441, { "_append": [ - 1421 + 1426 ], "_delete_at_path": [ - 1427 + 1432 ], "_delete_elem": [ - 1428 + 1433 ], "_delete_key": [ - 1429 + 1434 ], "_inc": [ - 1430 + 1435 ], "_prepend": [ - 1440 + 1445 ], "_set": [ - 1442 + 1447 ], "where": [ - 1425, + 1430, "match_demo_sessions_bool_exp!" ] } ], "update_match_demo_sessions_by_pk": [ - 1415, + 1420, { "_append": [ - 1421 + 1426 ], "_delete_at_path": [ - 1427 + 1432 ], "_delete_elem": [ - 1428 + 1433 ], "_delete_key": [ - 1429 + 1434 ], "_inc": [ - 1430 + 1435 ], "_prepend": [ - 1440 + 1445 ], "_set": [ - 1442 + 1447 ], "pk_columns": [ - 1439, + 1444, "match_demo_sessions_pk_columns_input!" ] } ], "update_match_demo_sessions_many": [ - 1436, + 1441, { "updates": [ - 1454, + 1459, "[match_demo_sessions_updates!]!" ] } ], "update_match_lineup_players": [ - 1480, + 1485, { "_inc": [ - 1474 + 1479 ], "_set": [ - 1487 + 1492 ], "where": [ - 1472, + 1477, "match_lineup_players_bool_exp!" ] } ], "update_match_lineup_players_by_pk": [ - 1461, + 1466, { "_inc": [ - 1474 + 1479 ], "_set": [ - 1487 + 1492 ], "pk_columns": [ - 1483, + 1488, "match_lineup_players_pk_columns_input!" ] } ], "update_match_lineup_players_many": [ - 1480, + 1485, { "updates": [ - 1499, + 1504, "[match_lineup_players_updates!]!" ] } ], "update_match_lineups": [ - 1523, + 1528, { "_inc": [ - 1517 + 1522 ], "_set": [ - 1529 + 1534 ], "where": [ - 1515, + 1520, "match_lineups_bool_exp!" ] } ], "update_match_lineups_by_pk": [ - 1506, + 1511, { "_inc": [ - 1517 + 1522 ], "_set": [ - 1529 + 1534 ], "pk_columns": [ - 1527, + 1532, "match_lineups_pk_columns_input!" ] } ], "update_match_lineups_many": [ - 1523, + 1528, { "updates": [ - 1541, + 1546, "[match_lineups_updates!]!" ] } ], "update_match_map_demos": [ - 1571, + 1576, { "_append": [ - 1556 + 1561 ], "_delete_at_path": [ - 1562 + 1567 ], "_delete_elem": [ - 1563 + 1568 ], "_delete_key": [ - 1564 + 1569 ], "_inc": [ - 1565 + 1570 ], "_prepend": [ - 1576 + 1581 ], "_set": [ - 1580 + 1585 ], "where": [ - 1560, + 1565, "match_map_demos_bool_exp!" ] } ], "update_match_map_demos_by_pk": [ - 1548, + 1553, { "_append": [ - 1556 + 1561 ], "_delete_at_path": [ - 1562 + 1567 ], "_delete_elem": [ - 1563 + 1568 ], "_delete_key": [ - 1564 + 1569 ], "_inc": [ - 1565 + 1570 ], "_prepend": [ - 1576 + 1581 ], "_set": [ - 1580 + 1585 ], "pk_columns": [ - 1575, + 1580, "match_map_demos_pk_columns_input!" ] } ], "update_match_map_demos_many": [ - 1571, + 1576, { "updates": [ - 1592, + 1597, "[match_map_demos_updates!]!" ] } ], "update_match_map_rounds": [ - 1616, + 1621, { "_inc": [ - 1610 + 1615 ], "_set": [ - 1621 + 1626 ], "where": [ - 1608, + 1613, "match_map_rounds_bool_exp!" ] } ], "update_match_map_rounds_by_pk": [ - 1599, + 1604, { "_inc": [ - 1610 + 1615 ], "_set": [ - 1621 + 1626 ], "pk_columns": [ - 1619, + 1624, "match_map_rounds_pk_columns_input!" ] } ], "update_match_map_rounds_many": [ - 1616, + 1621, { "updates": [ - 1633, + 1638, "[match_map_rounds_updates!]!" ] } ], "update_match_map_veto_picks": [ - 1654, + 1659, { "_set": [ - 1659 + 1664 ], "where": [ - 1647, + 1652, "match_map_veto_picks_bool_exp!" ] } ], "update_match_map_veto_picks_by_pk": [ - 1640, + 1645, { "_set": [ - 1659 + 1664 ], "pk_columns": [ - 1657, + 1662, "match_map_veto_picks_pk_columns_input!" ] } ], "update_match_map_veto_picks_many": [ - 1654, + 1659, { "updates": [ - 1663, + 1668, "[match_map_veto_picks_updates!]!" ] } ], "update_match_maps": [ - 1681, + 1686, { "_inc": [ - 1675 + 1680 ], "_set": [ - 1687 + 1692 ], "where": [ - 1673, + 1678, "match_maps_bool_exp!" ] } ], "update_match_maps_by_pk": [ - 1664, + 1669, { "_inc": [ - 1675 + 1680 ], "_set": [ - 1687 + 1692 ], "pk_columns": [ - 1685, + 1690, "match_maps_pk_columns_input!" ] } ], "update_match_maps_many": [ - 1681, + 1686, { "updates": [ - 1699, + 1704, "[match_maps_updates!]!" ] } ], "update_match_options": [ - 1716, + 1721, { "_inc": [ - 1712 + 1717 ], "_set": [ - 1722 + 1727 ], "where": [ - 1710, + 1715, "match_options_bool_exp!" ] } ], "update_match_options_by_pk": [ - 1706, + 1711, { "_inc": [ - 1712 + 1717 ], "_set": [ - 1722 + 1727 ], "pk_columns": [ - 1720, + 1725, "match_options_pk_columns_input!" ] } ], "update_match_options_many": [ - 1716, + 1721, { "updates": [ - 1730, + 1735, "[match_options_updates!]!" ] } ], "update_match_region_veto_picks": [ - 1748, + 1753, { "_set": [ - 1753 + 1758 ], "where": [ - 1741, + 1746, "match_region_veto_picks_bool_exp!" ] } ], "update_match_region_veto_picks_by_pk": [ - 1734, + 1739, { "_set": [ - 1753 + 1758 ], "pk_columns": [ - 1751, + 1756, "match_region_veto_picks_pk_columns_input!" ] } ], "update_match_region_veto_picks_many": [ - 1748, + 1753, { "updates": [ - 1757, + 1762, "[match_region_veto_picks_updates!]!" ] } ], "update_match_streams": [ - 1781, + 1786, { "_append": [ - 1766 + 1771 ], "_delete_at_path": [ - 1772 + 1777 ], "_delete_elem": [ - 1773 + 1778 ], "_delete_key": [ - 1774 + 1779 ], "_inc": [ - 1775 + 1780 ], "_prepend": [ - 1785 + 1790 ], "_set": [ - 1789 + 1794 ], "where": [ - 1770, + 1775, "match_streams_bool_exp!" ] } ], "update_match_streams_by_pk": [ - 1758, + 1763, { "_append": [ - 1766 + 1771 ], "_delete_at_path": [ - 1772 + 1777 ], "_delete_elem": [ - 1773 + 1778 ], "_delete_key": [ - 1774 + 1779 ], "_inc": [ - 1775 + 1780 ], "_prepend": [ - 1785 + 1790 ], "_set": [ - 1789 + 1794 ], "pk_columns": [ - 1784, + 1789, "match_streams_pk_columns_input!" ] } ], "update_match_streams_many": [ - 1781, + 1786, { "updates": [ - 1801, + 1806, "[match_streams_updates!]!" ] } ], "update_match_type_cfgs": [ - 1816, + 1821, { "_set": [ - 1821 + 1826 ], "where": [ - 1811, + 1816, "match_type_cfgs_bool_exp!" ] } ], "update_match_type_cfgs_by_pk": [ - 1808, + 1813, { "_set": [ - 1821 + 1826 ], "pk_columns": [ - 1819, + 1824, "match_type_cfgs_pk_columns_input!" ] } ], "update_match_type_cfgs_many": [ - 1816, + 1821, { "updates": [ - 1825, + 1830, "[match_type_cfgs_updates!]!" ] } ], "update_matches": [ - 1843, + 1848, { "_inc": [ - 1837 + 1842 ], "_set": [ - 1849 + 1854 ], "where": [ - 1835, + 1840, "matches_bool_exp!" ] } ], "update_matches_by_pk": [ - 1826, + 1831, { "_inc": [ - 1837 + 1842 ], "_set": [ - 1849 + 1854 ], "pk_columns": [ - 1847, + 1852, "matches_pk_columns_input!" ] } ], "update_matches_many": [ - 1843, + 1848, { "updates": [ - 1861, + 1866, "[matches_updates!]!" ] } ], "update_migration_hashes_hashes": [ - 1876, + 1881, { "_set": [ - 1881 + 1886 ], "where": [ - 1871, + 1876, "migration_hashes_hashes_bool_exp!" ] } ], "update_migration_hashes_hashes_by_pk": [ - 1868, + 1873, { "_set": [ - 1881 + 1886 ], "pk_columns": [ - 1879, + 1884, "migration_hashes_hashes_pk_columns_input!" ] } ], "update_migration_hashes_hashes_many": [ - 1876, + 1881, { "updates": [ - 1885, + 1890, "[migration_hashes_hashes_updates!]!" ] } ], "update_my_friends": [ - 1908, + 1913, { "_append": [ - 1894 + 1899 ], "_delete_at_path": [ - 1899 + 1904 ], "_delete_elem": [ - 1900 + 1905 ], "_delete_key": [ - 1901 + 1906 ], "_inc": [ - 1902 + 1907 ], "_prepend": [ - 1910 + 1915 ], "_set": [ - 1914 + 1919 ], "where": [ - 1898, + 1903, "my_friends_bool_exp!" ] } ], "update_my_friends_many": [ - 1908, + 1913, { "updates": [ - 1925, + 1930, "[my_friends_updates!]!" ] } ], "update_news_articles": [ - 1942, + 1947, { "_inc": [ - 1938 + 1943 ], "_set": [ - 1947 + 1952 ], "where": [ - 1936, + 1941, "news_articles_bool_exp!" ] } ], "update_news_articles_by_pk": [ - 1932, + 1937, { "_inc": [ - 1938 + 1943 ], "_set": [ - 1947 + 1952 ], "pk_columns": [ - 1945, + 1950, "news_articles_pk_columns_input!" ] } ], "update_news_articles_many": [ - 1942, + 1947, { "updates": [ - 1955, + 1960, "[news_articles_updates!]!" ] } ], "update_notifications": [ - 1982, + 1987, { "_append": [ - 1967 + 1972 ], "_delete_at_path": [ - 1973 + 1978 ], "_delete_elem": [ - 1974 + 1979 ], "_delete_key": [ - 1975 + 1980 ], "_inc": [ - 1976 + 1981 ], "_prepend": [ - 1986 + 1991 ], "_set": [ - 1990 + 1995 ], "where": [ - 1971, + 1976, "notifications_bool_exp!" ] } ], "update_notifications_by_pk": [ - 1959, + 1964, { "_append": [ - 1967 + 1972 ], "_delete_at_path": [ - 1973 + 1978 ], "_delete_elem": [ - 1974 + 1979 ], "_delete_key": [ - 1975 + 1980 ], "_inc": [ - 1976 + 1981 ], "_prepend": [ - 1986 + 1991 ], "_set": [ - 1990 + 1995 ], "pk_columns": [ - 1985, + 1990, "notifications_pk_columns_input!" ] } ], "update_notifications_many": [ - 1982, + 1987, { "updates": [ - 2002, + 2007, "[notifications_updates!]!" ] } ], "update_pending_match_import_players": [ - 2029, + 2034, { "_inc": [ - 2023 + 2028 ], "_set": [ - 2034 + 2039 ], "where": [ - 2021, + 2026, "pending_match_import_players_bool_exp!" ] } ], "update_pending_match_import_players_by_pk": [ - 2012, + 2017, { "_inc": [ - 2023 + 2028 ], "_set": [ - 2034 + 2039 ], "pk_columns": [ - 2032, + 2037, "pending_match_import_players_pk_columns_input!" ] } ], "update_pending_match_import_players_many": [ - 2029, + 2034, { "updates": [ - 2046, + 2051, "[pending_match_import_players_updates!]!" ] } ], "update_pending_match_imports": [ - 2063, + 2068, { "_inc": [ - 2059 + 2064 ], "_set": [ - 2069 + 2074 ], "where": [ - 2057, + 2062, "pending_match_imports_bool_exp!" ] } ], "update_pending_match_imports_by_pk": [ - 2053, + 2058, { "_inc": [ - 2059 + 2064 ], "_set": [ - 2069 + 2074 ], "pk_columns": [ - 2067, + 2072, "pending_match_imports_pk_columns_input!" ] } ], "update_pending_match_imports_many": [ - 2063, + 2068, { "updates": [ - 2077, + 2082, "[pending_match_imports_updates!]!" ] } ], "update_player_aim_stats_demo": [ - 2091, + 2096, { "_inc": [ - 2087 + 2092 ], "_set": [ - 2096 + 2101 ], "where": [ - 2085, + 2090, "player_aim_stats_demo_bool_exp!" ] } ], "update_player_aim_stats_demo_by_pk": [ - 2081, + 2086, { "_inc": [ - 2087 + 2092 ], "_set": [ - 2096 + 2101 ], "pk_columns": [ - 2094, + 2099, "player_aim_stats_demo_pk_columns_input!" ] } ], "update_player_aim_stats_demo_many": [ - 2091, + 2096, { "updates": [ - 2104, + 2109, "[player_aim_stats_demo_updates!]!" ] } ], "update_player_aim_weapon_stats": [ - 2125, + 2130, { "_inc": [ - 2119 + 2124 ], "_set": [ - 2130 + 2135 ], "where": [ - 2117, + 2122, "player_aim_weapon_stats_bool_exp!" ] } ], "update_player_aim_weapon_stats_by_pk": [ - 2108, + 2113, { "_inc": [ - 2119 + 2124 ], "_set": [ - 2130 + 2135 ], "pk_columns": [ - 2128, + 2133, "player_aim_weapon_stats_pk_columns_input!" ] } ], "update_player_aim_weapon_stats_many": [ - 2125, + 2130, { "updates": [ - 2142, + 2147, "[player_aim_weapon_stats_updates!]!" ] } ], "update_player_assists": [ - 2168, + 2173, { "_inc": [ - 2162 + 2167 ], "_set": [ - 2175 + 2180 ], "where": [ - 2160, + 2165, "player_assists_bool_exp!" ] } ], "update_player_assists_by_pk": [ - 2149, + 2154, { "_inc": [ - 2162 + 2167 ], "_set": [ - 2175 + 2180 ], "pk_columns": [ - 2171, + 2176, "player_assists_pk_columns_input!" ] } ], "update_player_assists_many": [ - 2168, + 2173, { "updates": [ - 2187, + 2192, "[player_assists_updates!]!" ] } ], "update_player_damages": [ - 2229, + 2234, { "_inc": [ - 2223 + 2228 ], "_set": [ - 2234 + 2239 ], "where": [ - 2221, + 2226, "player_damages_bool_exp!" ] } ], "update_player_damages_by_pk": [ - 2212, + 2217, { "_inc": [ - 2223 + 2228 ], "_set": [ - 2234 + 2239 ], "pk_columns": [ - 2232, + 2237, "player_damages_pk_columns_input!" ] } ], "update_player_damages_many": [ - 2229, + 2234, { "updates": [ - 2246, + 2251, "[player_damages_updates!]!" ] } ], "update_player_elo": [ - 2263, + 2268, { "_inc": [ - 2259 + 2264 ], "_set": [ - 2268 + 2273 ], "where": [ - 2257, + 2262, "player_elo_bool_exp!" ] } ], "update_player_elo_by_pk": [ - 2253, + 2258, { "_inc": [ - 2259 + 2264 ], "_set": [ - 2268 + 2273 ], "pk_columns": [ - 2266, + 2271, "player_elo_pk_columns_input!" ] } ], "update_player_elo_many": [ - 2263, + 2268, { "updates": [ - 2276, + 2281, "[player_elo_updates!]!" ] } ], "update_player_faceit_rank_history": [ - 2297, + 2302, { "_inc": [ - 2291 + 2296 ], "_set": [ - 2302 + 2307 ], "where": [ - 2289, + 2294, "player_faceit_rank_history_bool_exp!" ] } ], "update_player_faceit_rank_history_by_pk": [ - 2280, + 2285, { "_inc": [ - 2291 + 2296 ], "_set": [ - 2302 + 2307 ], "pk_columns": [ - 2300, + 2305, "player_faceit_rank_history_pk_columns_input!" ] } ], "update_player_faceit_rank_history_many": [ - 2297, + 2302, { "updates": [ - 2314, + 2319, "[player_faceit_rank_history_updates!]!" ] } ], "update_player_flashes": [ - 2340, + 2345, { "_inc": [ - 2334 + 2339 ], "_set": [ - 2347 + 2352 ], "where": [ - 2332, + 2337, "player_flashes_bool_exp!" ] } ], "update_player_flashes_by_pk": [ - 2321, + 2326, { "_inc": [ - 2334 + 2339 ], "_set": [ - 2347 + 2352 ], "pk_columns": [ - 2343, + 2348, "player_flashes_pk_columns_input!" ] } ], "update_player_flashes_many": [ - 2340, + 2345, { "updates": [ - 2359, + 2364, "[player_flashes_updates!]!" ] } ], "update_player_kills": [ - 2426, + 2431, { "_inc": [ - 2420 + 2425 ], "_set": [ - 2433 + 2438 ], "where": [ - 2377, + 2382, "player_kills_bool_exp!" ] } ], "update_player_kills_by_pk": [ - 2366, + 2371, { "_inc": [ - 2420 + 2425 ], "_set": [ - 2433 + 2438 ], "pk_columns": [ - 2429, + 2434, "player_kills_pk_columns_input!" ] } ], "update_player_kills_by_weapon": [ - 2395, + 2400, { "_inc": [ - 2389 + 2394 ], "_set": [ - 2400 + 2405 ], "where": [ - 2387, + 2392, "player_kills_by_weapon_bool_exp!" ] } ], "update_player_kills_by_weapon_by_pk": [ - 2378, + 2383, { "_inc": [ - 2389 + 2394 ], "_set": [ - 2400 + 2405 ], "pk_columns": [ - 2398, + 2403, "player_kills_by_weapon_pk_columns_input!" ] } ], "update_player_kills_by_weapon_many": [ - 2395, + 2400, { "updates": [ - 2412, + 2417, "[player_kills_by_weapon_updates!]!" ] } ], "update_player_kills_many": [ - 2426, + 2431, { "updates": [ - 2445, + 2450, "[player_kills_updates!]!" ] } ], "update_player_leaderboard_rank": [ - 2461, + 2466, { "_inc": [ - 2457 + 2462 ], "_set": [ - 2464 + 2469 ], "where": [ - 2456, + 2461, "player_leaderboard_rank_bool_exp!" ] } ], "update_player_leaderboard_rank_many": [ - 2461, + 2466, { "updates": [ - 2471, + 2476, "[player_leaderboard_rank_updates!]!" ] } ], "update_player_match_map_stats": [ - 2492, + 2497, { "_inc": [ - 2486 + 2491 ], "_set": [ - 2497 + 2502 ], "where": [ - 2484, + 2489, "player_match_map_stats_bool_exp!" ] } ], "update_player_match_map_stats_by_pk": [ - 2475, + 2480, { "_inc": [ - 2486 + 2491 ], "_set": [ - 2497 + 2502 ], "pk_columns": [ - 2495, + 2500, "player_match_map_stats_pk_columns_input!" ] } ], "update_player_match_map_stats_many": [ - 2492, + 2497, { "updates": [ - 2509, + 2514, "[player_match_map_stats_updates!]!" ] } ], "update_player_objectives": [ - 2584, + 2589, { "_inc": [ - 2578 + 2583 ], "_set": [ - 2589 + 2594 ], "where": [ - 2576, + 2581, "player_objectives_bool_exp!" ] } ], "update_player_objectives_by_pk": [ - 2567, + 2572, { "_inc": [ - 2578 + 2583 ], "_set": [ - 2589 + 2594 ], "pk_columns": [ - 2587, + 2592, "player_objectives_pk_columns_input!" ] } ], "update_player_objectives_many": [ - 2584, + 2589, { "updates": [ - 2601, + 2606, "[player_objectives_updates!]!" ] } ], "update_player_premier_rank_history": [ - 2643, + 2648, { "_inc": [ - 2637 + 2642 ], "_set": [ - 2648 + 2653 ], "where": [ - 2635, + 2640, "player_premier_rank_history_bool_exp!" ] } ], "update_player_premier_rank_history_by_pk": [ - 2626, + 2631, { "_inc": [ - 2637 + 2642 ], "_set": [ - 2648 + 2653 ], "pk_columns": [ - 2646, + 2651, "player_premier_rank_history_pk_columns_input!" ] } ], "update_player_premier_rank_history_many": [ - 2643, + 2648, { "updates": [ - 2660, + 2665, "[player_premier_rank_history_updates!]!" ] } ], "update_player_sanctions": [ - 2684, + 2689, { "_inc": [ - 2678 + 2683 ], "_set": [ - 2689 + 2694 ], "where": [ - 2676, + 2681, "player_sanctions_bool_exp!" ] } ], "update_player_sanctions_by_pk": [ - 2667, + 2672, { "_inc": [ - 2678 + 2683 ], "_set": [ - 2689 + 2694 ], "pk_columns": [ - 2687, + 2692, "player_sanctions_pk_columns_input!" ] } ], "update_player_sanctions_many": [ - 2684, + 2689, { "updates": [ - 2701, + 2706, "[player_sanctions_updates!]!" ] } ], "update_player_stats": [ - 2718, + 2723, { "_inc": [ - 2714 + 2719 ], "_set": [ - 2724 + 2729 ], "where": [ - 2712, + 2717, "player_stats_bool_exp!" ] } ], "update_player_stats_by_pk": [ - 2708, + 2713, { "_inc": [ - 2714 + 2719 ], "_set": [ - 2724 + 2729 ], "pk_columns": [ - 2722, + 2727, "player_stats_pk_columns_input!" ] } ], "update_player_stats_many": [ - 2718, + 2723, { "updates": [ - 2732, + 2737, "[player_stats_updates!]!" ] } ], - "update_player_steam_match_auth": [ - 2746, + "update_player_steam_bot_friend": [ + 2755, { + "_append": [ + 2744 + ], + "_delete_at_path": [ + 2748 + ], + "_delete_elem": [ + 2749 + ], + "_delete_key": [ + 2750 + ], "_inc": [ - 2742 + 2751 + ], + "_prepend": [ + 2759 ], "_set": [ + 2761 + ], + "where": [ + 2746, + "player_steam_bot_friend_bool_exp!" + ] + } + ], + "update_player_steam_bot_friend_by_pk": [ + 2741, + { + "_append": [ + 2744 + ], + "_delete_at_path": [ + 2748 + ], + "_delete_elem": [ + 2749 + ], + "_delete_key": [ + 2750 + ], + "_inc": [ 2751 ], + "_prepend": [ + 2759 + ], + "_set": [ + 2761 + ], + "pk_columns": [ + 2758, + "player_steam_bot_friend_pk_columns_input!" + ] + } + ], + "update_player_steam_bot_friend_many": [ + 2755, + { + "updates": [ + 2769, + "[player_steam_bot_friend_updates!]!" + ] + } + ], + "update_player_steam_match_auth": [ + 2783, + { + "_inc": [ + 2779 + ], + "_set": [ + 2788 + ], "where": [ - 2740, + 2777, "player_steam_match_auth_bool_exp!" ] } ], "update_player_steam_match_auth_by_pk": [ - 2736, + 2773, { "_inc": [ - 2742 + 2779 ], "_set": [ - 2751 + 2788 ], "pk_columns": [ - 2749, + 2786, "player_steam_match_auth_pk_columns_input!" ] } ], "update_player_steam_match_auth_many": [ - 2746, + 2783, { "updates": [ - 2759, + 2796, "[player_steam_match_auth_updates!]!" ] } ], "update_player_unused_utility": [ - 2780, + 2817, { "_inc": [ - 2774 + 2811 ], "_set": [ - 2785 + 2822 ], "where": [ - 2772, + 2809, "player_unused_utility_bool_exp!" ] } ], "update_player_unused_utility_by_pk": [ - 2763, + 2800, { "_inc": [ - 2774 + 2811 ], "_set": [ - 2785 + 2822 ], "pk_columns": [ - 2783, + 2820, "player_unused_utility_pk_columns_input!" ] } ], "update_player_unused_utility_many": [ - 2780, + 2817, { "updates": [ - 2797, + 2834, "[player_unused_utility_updates!]!" ] } ], "update_player_utility": [ - 2821, + 2858, { "_inc": [ - 2815 + 2852 ], "_set": [ - 2826 + 2863 ], "where": [ - 2813, + 2850, "player_utility_bool_exp!" ] } ], "update_player_utility_by_pk": [ - 2804, + 2841, { "_inc": [ - 2815 + 2852 ], "_set": [ - 2826 + 2863 ], "pk_columns": [ - 2824, + 2861, "player_utility_pk_columns_input!" ] } ], "update_player_utility_many": [ - 2821, + 2858, { "updates": [ - 2838, + 2875, "[player_utility_updates!]!" ] } ], "update_players": [ - 2888, + 2925, { "_inc": [ - 2884 + 2921 ], "_set": [ - 2894 + 2931 ], "where": [ - 2882, + 2919, "players_bool_exp!" ] } ], "update_players_by_pk": [ - 2878, + 2915, { "_inc": [ - 2884 + 2921 ], "_set": [ - 2894 + 2931 ], "pk_columns": [ - 2892, + 2929, "players_pk_columns_input!" ] } ], "update_players_many": [ - 2888, + 2925, { "updates": [ - 2902, + 2939, "[players_updates!]!" ] } ], "update_plugin_versions": [ - 2916, + 2953, { "_inc": [ - 2912 + 2949 ], "_set": [ - 2921 + 2958 ], "where": [ - 2910, + 2947, "plugin_versions_bool_exp!" ] } ], "update_plugin_versions_by_pk": [ - 2906, + 2943, { "_inc": [ - 2912 + 2949 ], "_set": [ - 2921 + 2958 ], "pk_columns": [ - 2919, + 2956, "plugin_versions_pk_columns_input!" ] } ], "update_plugin_versions_many": [ - 2916, + 2953, { "updates": [ - 2929, + 2966, "[plugin_versions_updates!]!" ] } ], "update_server_regions": [ - 2943, + 2980, { "_set": [ - 2949 + 2986 ], "where": [ - 2938, + 2975, "server_regions_bool_exp!" ] } ], "update_server_regions_by_pk": [ - 2934, + 2971, { "_set": [ - 2949 + 2986 ], "pk_columns": [ - 2947, + 2984, "server_regions_pk_columns_input!" ] } ], "update_server_regions_many": [ - 2943, + 2980, { "updates": [ - 2957, + 2994, "[server_regions_updates!]!" ] } ], "update_servers": [ - 2980, + 3017, { "_inc": [ - 2974 + 3011 ], "_set": [ - 2988 + 3025 ], "where": [ - 2972, + 3009, "servers_bool_exp!" ] } ], "update_servers_by_pk": [ - 2961, + 2998, { "_inc": [ - 2974 + 3011 ], "_set": [ - 2988 + 3025 ], "pk_columns": [ - 2984, + 3021, "servers_pk_columns_input!" ] } ], "update_servers_many": [ - 2980, + 3017, { "updates": [ - 3000, + 3037, "[servers_updates!]!" ] } ], "update_settings": [ - 3015, + 3052, { "_set": [ - 3020 + 3057 ], "where": [ - 3010, + 3047, "settings_bool_exp!" ] } ], "update_settings_by_pk": [ - 3007, + 3044, { "_set": [ - 3020 + 3057 ], "pk_columns": [ - 3018, + 3055, "settings_pk_columns_input!" ] } ], "update_settings_many": [ - 3015, + 3052, { "updates": [ - 3024, + 3061, "[settings_updates!]!" ] } ], "update_steam_account_claims": [ - 3039, + 3076, { "_set": [ - 3044 + 3081 ], "where": [ - 3032, + 3069, "steam_account_claims_bool_exp!" ] } ], "update_steam_account_claims_by_pk": [ - 3025, + 3062, { "_set": [ - 3044 + 3081 ], "pk_columns": [ - 3042, + 3079, "steam_account_claims_pk_columns_input!" ] } ], "update_steam_account_claims_many": [ - 3039, + 3076, { "updates": [ - 3048, + 3085, "[steam_account_claims_updates!]!" ] } ], "update_steam_accounts": [ - 3057, + 3096, { + "_inc": [ + 3092 + ], "_set": [ - 3063 + 3102 ], "where": [ - 3052, + 3090, "steam_accounts_bool_exp!" ] } ], "update_steam_accounts_by_pk": [ - 3049, + 3086, { + "_inc": [ + 3092 + ], "_set": [ - 3063 + 3102 ], "pk_columns": [ - 3061, + 3100, "steam_accounts_pk_columns_input!" ] } ], "update_steam_accounts_many": [ - 3057, + 3096, { "updates": [ - 3067, + 3110, "[steam_accounts_updates!]!" ] } ], "update_system_alerts": [ - 3078, + 3124, { "_inc": [ - 3074 + 3120 ], "_set": [ - 3083 + 3129 ], "where": [ - 3072, + 3118, "system_alerts_bool_exp!" ] } ], "update_system_alerts_by_pk": [ - 3068, + 3114, { "_inc": [ - 3074 + 3120 ], "_set": [ - 3083 + 3129 ], "pk_columns": [ - 3081, + 3127, "system_alerts_pk_columns_input!" ] } ], "update_system_alerts_many": [ - 3078, + 3124, { "updates": [ - 3091, + 3137, "[system_alerts_updates!]!" ] } ], "update_team_invites": [ - 3112, + 3158, { "_inc": [ - 3106 + 3152 ], "_set": [ - 3117 + 3163 ], "where": [ - 3104, + 3150, "team_invites_bool_exp!" ] } ], "update_team_invites_by_pk": [ - 3095, + 3141, { "_inc": [ - 3106 + 3152 ], "_set": [ - 3117 + 3163 ], "pk_columns": [ - 3115, + 3161, "team_invites_pk_columns_input!" ] } ], "update_team_invites_many": [ - 3112, + 3158, { "updates": [ - 3129, + 3175, "[team_invites_updates!]!" ] } ], "update_team_roster": [ - 3155, + 3201, { "_inc": [ - 3149 + 3195 ], "_set": [ - 3162 + 3208 ], "where": [ - 3147, + 3193, "team_roster_bool_exp!" ] } ], "update_team_roster_by_pk": [ - 3136, + 3182, { "_inc": [ - 3149 + 3195 ], "_set": [ - 3162 + 3208 ], "pk_columns": [ - 3158, + 3204, "team_roster_pk_columns_input!" ] } ], "update_team_roster_many": [ - 3155, + 3201, { "updates": [ - 3174, + 3220, "[team_roster_updates!]!" ] } ], "update_team_scrim_alerts": [ - 3191, + 3237, { "_inc": [ - 3187 + 3233 ], "_set": [ - 3196 + 3242 ], "where": [ - 3185, + 3231, "team_scrim_alerts_bool_exp!" ] } ], "update_team_scrim_alerts_by_pk": [ - 3181, + 3227, { "_inc": [ - 3187 + 3233 ], "_set": [ - 3196 + 3242 ], "pk_columns": [ - 3194, + 3240, "team_scrim_alerts_pk_columns_input!" ] } ], "update_team_scrim_alerts_many": [ - 3191, + 3237, { "updates": [ - 3204, + 3250, "[team_scrim_alerts_updates!]!" ] } ], "update_team_scrim_availability": [ - 3224, + 3270, { "_set": [ - 3231 + 3277 ], "where": [ - 3217, + 3263, "team_scrim_availability_bool_exp!" ] } ], "update_team_scrim_availability_by_pk": [ - 3208, + 3254, { "_set": [ - 3231 + 3277 ], "pk_columns": [ - 3227, + 3273, "team_scrim_availability_pk_columns_input!" ] } ], "update_team_scrim_availability_many": [ - 3224, + 3270, { "updates": [ - 3235, + 3281, "[team_scrim_availability_updates!]!" ] } ], "update_team_scrim_request_proposals": [ - 3253, + 3299, { "_inc": [ - 3247 + 3293 ], "_set": [ - 3258 + 3304 ], "where": [ - 3245, + 3291, "team_scrim_request_proposals_bool_exp!" ] } ], "update_team_scrim_request_proposals_by_pk": [ - 3236, + 3282, { "_inc": [ - 3247 + 3293 ], "_set": [ - 3258 + 3304 ], "pk_columns": [ - 3256, + 3302, "team_scrim_request_proposals_pk_columns_input!" ] } ], "update_team_scrim_request_proposals_many": [ - 3253, + 3299, { "updates": [ - 3270, + 3316, "[team_scrim_request_proposals_updates!]!" ] } ], "update_team_scrim_requests": [ - 3296, + 3342, { "_inc": [ - 3290 + 3336 ], "_set": [ - 3304 + 3350 ], "where": [ - 3288, + 3334, "team_scrim_requests_bool_exp!" ] } ], "update_team_scrim_requests_by_pk": [ - 3277, + 3323, { "_inc": [ - 3290 + 3336 ], "_set": [ - 3304 + 3350 ], "pk_columns": [ - 3300, + 3346, "team_scrim_requests_pk_columns_input!" ] } ], "update_team_scrim_requests_many": [ - 3296, + 3342, { "updates": [ - 3316, + 3362, "[team_scrim_requests_updates!]!" ] } ], "update_team_scrim_settings": [ - 3333, + 3379, { "_inc": [ - 3329 + 3375 ], "_set": [ - 3339 + 3385 ], "where": [ - 3327, + 3373, "team_scrim_settings_bool_exp!" ] } ], "update_team_scrim_settings_by_pk": [ - 3323, + 3369, { "_inc": [ - 3329 + 3375 ], "_set": [ - 3339 + 3385 ], "pk_columns": [ - 3337, + 3383, "team_scrim_settings_pk_columns_input!" ] } ], "update_team_scrim_settings_many": [ - 3333, + 3379, { "updates": [ - 3347, + 3393, "[team_scrim_settings_updates!]!" ] } ], "update_team_suggestions": [ - 3361, + 3407, { "_inc": [ - 3357 + 3403 ], "_set": [ - 3366 + 3412 ], "where": [ - 3355, + 3401, "team_suggestions_bool_exp!" ] } ], "update_team_suggestions_by_pk": [ - 3351, + 3397, { "_inc": [ - 3357 + 3403 ], "_set": [ - 3366 + 3412 ], "pk_columns": [ - 3364, + 3410, "team_suggestions_pk_columns_input!" ] } ], "update_team_suggestions_many": [ - 3361, + 3407, { "updates": [ - 3374, + 3420, "[team_suggestions_updates!]!" ] } ], "update_teams": [ - 3395, + 3441, { "_inc": [ - 3389 + 3435 ], "_set": [ - 3401 + 3447 ], "where": [ - 3387, + 3433, "teams_bool_exp!" ] } ], "update_teams_by_pk": [ - 3378, + 3424, { "_inc": [ - 3389 + 3435 ], "_set": [ - 3401 + 3447 ], "pk_columns": [ - 3399, + 3445, "teams_pk_columns_input!" ] } ], "update_teams_many": [ - 3395, + 3441, { "updates": [ - 3413, + 3459, "[teams_updates!]!" ] } ], "update_tournament_brackets": [ - 3442, + 3488, { "_inc": [ - 3436 + 3482 ], "_set": [ - 3450 + 3496 ], "where": [ - 3434, + 3480, "tournament_brackets_bool_exp!" ] } ], "update_tournament_brackets_by_pk": [ - 3423, + 3469, { "_inc": [ - 3436 + 3482 ], "_set": [ - 3450 + 3496 ], "pk_columns": [ - 3446, + 3492, "tournament_brackets_pk_columns_input!" ] } ], "update_tournament_brackets_many": [ - 3442, + 3488, { "updates": [ - 3462, + 3508, "[tournament_brackets_updates!]!" ] } ], "update_tournament_organizers": [ - 3486, + 3532, { "_inc": [ - 3480 + 3526 ], "_set": [ - 3491 + 3537 ], "where": [ - 3478, + 3524, "tournament_organizers_bool_exp!" ] } ], "update_tournament_organizers_by_pk": [ - 3469, + 3515, { "_inc": [ - 3480 + 3526 ], "_set": [ - 3491 + 3537 ], "pk_columns": [ - 3489, + 3535, "tournament_organizers_pk_columns_input!" ] } ], "update_tournament_organizers_many": [ - 3486, + 3532, { "updates": [ - 3503, + 3549, "[tournament_organizers_updates!]!" ] } ], "update_tournament_stages": [ - 3533, + 3579, { "_append": [ - 3518 + 3564 ], "_delete_at_path": [ - 3524 + 3570 ], "_delete_elem": [ - 3525 + 3571 ], "_delete_key": [ - 3526 + 3572 ], "_inc": [ - 3527 + 3573 ], "_prepend": [ - 3538 + 3584 ], "_set": [ - 3542 + 3588 ], "where": [ - 3522, + 3568, "tournament_stages_bool_exp!" ] } ], "update_tournament_stages_by_pk": [ - 3510, + 3556, { "_append": [ - 3518 + 3564 ], "_delete_at_path": [ - 3524 + 3570 ], "_delete_elem": [ - 3525 + 3571 ], "_delete_key": [ - 3526 + 3572 ], "_inc": [ - 3527 + 3573 ], "_prepend": [ - 3538 + 3584 ], "_set": [ - 3542 + 3588 ], "pk_columns": [ - 3537, + 3583, "tournament_stages_pk_columns_input!" ] } ], "update_tournament_stages_many": [ - 3533, + 3579, { "updates": [ - 3554, + 3600, "[tournament_stages_updates!]!" ] } ], "update_tournament_team_invites": [ - 3578, + 3624, { "_inc": [ - 3572 + 3618 ], "_set": [ - 3583 + 3629 ], "where": [ - 3570, + 3616, "tournament_team_invites_bool_exp!" ] } ], "update_tournament_team_invites_by_pk": [ - 3561, + 3607, { "_inc": [ - 3572 + 3618 ], "_set": [ - 3583 + 3629 ], "pk_columns": [ - 3581, + 3627, "tournament_team_invites_pk_columns_input!" ] } ], "update_tournament_team_invites_many": [ - 3578, + 3624, { "updates": [ - 3595, + 3641, "[tournament_team_invites_updates!]!" ] } ], "update_tournament_team_roster": [ - 3619, + 3665, { "_inc": [ - 3613 + 3659 ], "_set": [ - 3624 + 3670 ], "where": [ - 3611, + 3657, "tournament_team_roster_bool_exp!" ] } ], "update_tournament_team_roster_by_pk": [ - 3602, + 3648, { "_inc": [ - 3613 + 3659 ], "_set": [ - 3624 + 3670 ], "pk_columns": [ - 3622, + 3668, "tournament_team_roster_pk_columns_input!" ] } ], "update_tournament_team_roster_many": [ - 3619, + 3665, { "updates": [ - 3636, + 3682, "[tournament_team_roster_updates!]!" ] } ], "update_tournament_teams": [ - 3660, + 3706, { "_inc": [ - 3654 + 3700 ], "_set": [ - 3666 + 3712 ], "where": [ - 3652, + 3698, "tournament_teams_bool_exp!" ] } ], "update_tournament_teams_by_pk": [ - 3643, + 3689, { "_inc": [ - 3654 + 3700 ], "_set": [ - 3666 + 3712 ], "pk_columns": [ - 3664, + 3710, "tournament_teams_pk_columns_input!" ] } ], "update_tournament_teams_many": [ - 3660, + 3706, { "updates": [ - 3678, + 3724, "[tournament_teams_updates!]!" ] } ], "update_tournament_trophies": [ - 3704, + 3750, { "_inc": [ - 3698 + 3744 ], "_set": [ - 3711 + 3757 ], "where": [ - 3696, + 3742, "tournament_trophies_bool_exp!" ] } ], "update_tournament_trophies_by_pk": [ - 3685, + 3731, { "_inc": [ - 3698 + 3744 ], "_set": [ - 3711 + 3757 ], "pk_columns": [ - 3707, + 3753, "tournament_trophies_pk_columns_input!" ] } ], "update_tournament_trophies_many": [ - 3704, + 3750, { "updates": [ - 3723, + 3769, "[tournament_trophies_updates!]!" ] } ], "update_tournament_trophy_configs": [ - 3747, + 3793, { "_inc": [ - 3741 + 3787 ], "_set": [ - 3753 + 3799 ], "where": [ - 3739, + 3785, "tournament_trophy_configs_bool_exp!" ] } ], "update_tournament_trophy_configs_by_pk": [ - 3730, + 3776, { "_inc": [ - 3741 + 3787 ], "_set": [ - 3753 + 3799 ], "pk_columns": [ - 3751, + 3797, "tournament_trophy_configs_pk_columns_input!" ] } ], "update_tournament_trophy_configs_many": [ - 3747, + 3793, { "updates": [ - 3765, + 3811, "[tournament_trophy_configs_updates!]!" ] } ], "update_tournaments": [ - 3791, + 3837, { "_inc": [ - 3785 + 3831 ], "_set": [ - 3799 + 3845 ], "where": [ - 3783, + 3829, "tournaments_bool_exp!" ] } ], "update_tournaments_by_pk": [ - 3772, + 3818, { "_inc": [ - 3785 + 3831 ], "_set": [ - 3799 + 3845 ], "pk_columns": [ - 3795, + 3841, "tournaments_pk_columns_input!" ] } ], "update_tournaments_many": [ - 3791, + 3837, { "updates": [ - 3811, + 3857, "[tournaments_updates!]!" ] } ], "update_v_match_captains": [ - 3848, + 3894, { "_inc": [ - 3844 + 3890 ], "_set": [ - 3852 + 3898 ], "where": [ - 3843, + 3889, "v_match_captains_bool_exp!" ] } ], "update_v_match_captains_many": [ - 3848, + 3894, { "updates": [ - 3859, + 3905, "[v_match_captains_updates!]!" ] } ], "update_v_match_map_backup_rounds": [ - 3959, + 4005, { "_inc": [ - 3955 + 4001 ], "_set": [ - 3962 + 4008 ], "where": [ - 3954, + 4000, "v_match_map_backup_rounds_bool_exp!" ] } ], "update_v_match_map_backup_rounds_many": [ - 3959, + 4005, { "updates": [ - 3969, + 4015, "[v_match_map_backup_rounds_updates!]!" ] } ], "update_v_player_match_map_hltv": [ - 4181, + 4227, { "_inc": [ - 4175 + 4221 ], "_set": [ - 4184 + 4230 ], "where": [ - 4174, + 4220, "v_player_match_map_hltv_bool_exp!" ] } ], "update_v_player_match_map_hltv_many": [ - 4181, + 4227, { "updates": [ - 4195, + 4241, "[v_player_match_map_hltv_updates!]!" ] } ], "update_v_pool_maps": [ - 4340, + 4386, { "_set": [ - 4345 + 4391 ], "where": [ - 4334, + 4380, "v_pool_maps_bool_exp!" ] } ], "update_v_pool_maps_many": [ - 4340, + 4386, { "updates": [ - 4348, + 4394, "[v_pool_maps_updates!]!" ] } ], "update_v_team_stage_results": [ - 4434, + 4480, { "_inc": [ - 4428 + 4474 ], "_set": [ - 4448 + 4494 ], "where": [ - 4426, + 4472, "v_team_stage_results_bool_exp!" ] } ], "update_v_team_stage_results_by_pk": [ - 4407, + 4453, { "_inc": [ - 4428 + 4474 ], "_set": [ - 4448 + 4494 ], "pk_columns": [ - 4438, + 4484, "v_team_stage_results_pk_columns_input!" ] } ], "update_v_team_stage_results_many": [ - 4434, + 4480, { "updates": [ - 4460, + 4506, "[v_team_stage_results_updates!]!" ] } ], "validateGamedata": [ - 73, + 78, { "game_server_node_id": [ - 3818, + 3864, "uuid!" ] } ], "watchDemo": [ - 82, + 87, { "match_map_demo_id": [ - 3818 + 3864 ], "match_map_id": [ - 3818, + 3864, "uuid!" ] } ], "writeServerFile": [ - 73, + 78, { "content": [ - 70, + 75, "String!" ], "file_path": [ - 70, + 75, "String!" ], "node_id": [ - 70, + 75, "String!" ], "server_id": [ - 70 + 75 ] } ], "__typename": [ - 70 + 75 ] }, "Subscription": { "_map_pool": [ - 83, + 88, { "distinct_on": [ - 95, + 100, "[_map_pool_select_column!]" ], "limit": [ @@ -128313,19 +129356,19 @@ export default { 38 ], "order_by": [ - 93, + 98, "[_map_pool_order_by!]" ], "where": [ - 86 + 91 ] } ], "_map_pool_aggregate": [ - 84, + 89, { "distinct_on": [ - 95, + 100, "[_map_pool_select_column!]" ], "limit": [ @@ -128335,48 +129378,48 @@ export default { 38 ], "order_by": [ - 93, + 98, "[_map_pool_order_by!]" ], "where": [ - 86 + 91 ] } ], "_map_pool_by_pk": [ - 83, + 88, { "map_id": [ - 3818, + 3864, "uuid!" ], "map_pool_id": [ - 3818, + 3864, "uuid!" ] } ], "_map_pool_stream": [ - 83, + 88, { "batch_size": [ 38, "Int!" ], "cursor": [ - 97, + 102, "[_map_pool_stream_cursor_input]!" ], "where": [ - 86 + 91 ] } ], "abandoned_matches": [ - 101, + 106, { "distinct_on": [ - 122, + 127, "[abandoned_matches_select_column!]" ], "limit": [ @@ -128386,19 +129429,19 @@ export default { 38 ], "order_by": [ - 120, + 125, "[abandoned_matches_order_by!]" ], "where": [ - 110 + 115 ] } ], "abandoned_matches_aggregate": [ - 102, + 107, { "distinct_on": [ - 122, + 127, "[abandoned_matches_select_column!]" ], "limit": [ @@ -128408,44 +129451,44 @@ export default { 38 ], "order_by": [ - 120, + 125, "[abandoned_matches_order_by!]" ], "where": [ - 110 + 115 ] } ], "abandoned_matches_by_pk": [ - 101, + 106, { "id": [ - 3818, + 3864, "uuid!" ] } ], "abandoned_matches_stream": [ - 101, + 106, { "batch_size": [ 38, "Int!" ], "cursor": [ - 130, + 135, "[abandoned_matches_stream_cursor_input]!" ], "where": [ - 110 + 115 ] } ], "api_keys": [ - 142, + 147, { "distinct_on": [ - 156, + 161, "[api_keys_select_column!]" ], "limit": [ @@ -128455,19 +129498,19 @@ export default { 38 ], "order_by": [ - 154, + 159, "[api_keys_order_by!]" ], "where": [ - 146 + 151 ] } ], "api_keys_aggregate": [ - 143, + 148, { "distinct_on": [ - 156, + 161, "[api_keys_select_column!]" ], "limit": [ @@ -128477,44 +129520,44 @@ export default { 38 ], "order_by": [ - 154, + 159, "[api_keys_order_by!]" ], "where": [ - 146 + 151 ] } ], "api_keys_by_pk": [ - 142, + 147, { "id": [ - 3818, + 3864, "uuid!" ] } ], "api_keys_stream": [ - 142, + 147, { "batch_size": [ 38, "Int!" ], "cursor": [ - 161, + 166, "[api_keys_stream_cursor_input]!" ], "where": [ - 146 + 151 ] } ], "clip_render_jobs": [ - 174, + 179, { "distinct_on": [ - 202, + 207, "[clip_render_jobs_select_column!]" ], "limit": [ @@ -128524,19 +129567,19 @@ export default { 38 ], "order_by": [ - 199, + 204, "[clip_render_jobs_order_by!]" ], "where": [ - 186 + 191 ] } ], "clip_render_jobs_aggregate": [ - 175, + 180, { "distinct_on": [ - 202, + 207, "[clip_render_jobs_select_column!]" ], "limit": [ @@ -128546,44 +129589,44 @@ export default { 38 ], "order_by": [ - 199, + 204, "[clip_render_jobs_order_by!]" ], "where": [ - 186 + 191 ] } ], "clip_render_jobs_by_pk": [ - 174, + 179, { "id": [ - 3818, + 3864, "uuid!" ] } ], "clip_render_jobs_stream": [ - 174, + 179, { "batch_size": [ 38, "Int!" ], "cursor": [ - 212, + 217, "[clip_render_jobs_stream_cursor_input]!" ], "where": [ - 186 + 191 ] } ], "db_backups": [ - 225, + 230, { "distinct_on": [ - 239, + 244, "[db_backups_select_column!]" ], "limit": [ @@ -128593,19 +129636,19 @@ export default { 38 ], "order_by": [ - 237, + 242, "[db_backups_order_by!]" ], "where": [ - 229 + 234 ] } ], "db_backups_aggregate": [ - 226, + 231, { "distinct_on": [ - 239, + 244, "[db_backups_select_column!]" ], "limit": [ @@ -128615,44 +129658,44 @@ export default { 38 ], "order_by": [ - 237, + 242, "[db_backups_order_by!]" ], "where": [ - 229 + 234 ] } ], "db_backups_by_pk": [ - 225, + 230, { "id": [ - 3818, + 3864, "uuid!" ] } ], "db_backups_stream": [ - 225, + 230, { "batch_size": [ 38, "Int!" ], "cursor": [ - 244, + 249, "[db_backups_stream_cursor_input]!" ], "where": [ - 229 + 234 ] } ], "draft_game_picks": [ - 252, + 257, { "distinct_on": [ - 275, + 280, "[draft_game_picks_select_column!]" ], "limit": [ @@ -128662,19 +129705,19 @@ export default { 38 ], "order_by": [ - 273, + 278, "[draft_game_picks_order_by!]" ], "where": [ - 263 + 268 ] } ], "draft_game_picks_aggregate": [ - 253, + 258, { "distinct_on": [ - 275, + 280, "[draft_game_picks_select_column!]" ], "limit": [ @@ -128684,44 +129727,44 @@ export default { 38 ], "order_by": [ - 273, + 278, "[draft_game_picks_order_by!]" ], "where": [ - 263 + 268 ] } ], "draft_game_picks_by_pk": [ - 252, + 257, { "id": [ - 3818, + 3864, "uuid!" ] } ], "draft_game_picks_stream": [ - 252, + 257, { "batch_size": [ 38, "Int!" ], "cursor": [ - 285, + 290, "[draft_game_picks_stream_cursor_input]!" ], "where": [ - 263 + 268 ] } ], "draft_game_players": [ - 297, + 302, { "distinct_on": [ - 320, + 325, "[draft_game_players_select_column!]" ], "limit": [ @@ -128731,19 +129774,19 @@ export default { 38 ], "order_by": [ - 318, + 323, "[draft_game_players_order_by!]" ], "where": [ - 308 + 313 ] } ], "draft_game_players_aggregate": [ - 298, + 303, { "distinct_on": [ - 320, + 325, "[draft_game_players_select_column!]" ], "limit": [ @@ -128753,48 +129796,48 @@ export default { 38 ], "order_by": [ - 318, + 323, "[draft_game_players_order_by!]" ], "where": [ - 308 + 313 ] } ], "draft_game_players_by_pk": [ - 297, + 302, { "draft_game_id": [ - 3818, + 3864, "uuid!" ], "steam_id": [ - 169, + 174, "bigint!" ] } ], "draft_game_players_stream": [ - 297, + 302, { "batch_size": [ 38, "Int!" ], "cursor": [ - 330, + 335, "[draft_game_players_stream_cursor_input]!" ], "where": [ - 308 + 313 ] } ], "draft_games": [ - 342, + 347, { "distinct_on": [ - 366, + 371, "[draft_games_select_column!]" ], "limit": [ @@ -128804,19 +129847,19 @@ export default { 38 ], "order_by": [ - 364, + 369, "[draft_games_order_by!]" ], "where": [ - 353 + 358 ] } ], "draft_games_aggregate": [ - 343, + 348, { "distinct_on": [ - 366, + 371, "[draft_games_select_column!]" ], "limit": [ @@ -128826,44 +129869,44 @@ export default { 38 ], "order_by": [ - 364, + 369, "[draft_games_order_by!]" ], "where": [ - 353 + 358 ] } ], "draft_games_by_pk": [ - 342, + 347, { "id": [ - 3818, + 3864, "uuid!" ] } ], "draft_games_stream": [ - 342, + 347, { "batch_size": [ 38, "Int!" ], "cursor": [ - 376, + 381, "[draft_games_stream_cursor_input]!" ], "where": [ - 353 + 358 ] } ], "e_check_in_settings": [ - 388, + 393, { "distinct_on": [ - 402, + 407, "[e_check_in_settings_select_column!]" ], "limit": [ @@ -128873,19 +129916,19 @@ export default { 38 ], "order_by": [ - 400, + 405, "[e_check_in_settings_order_by!]" ], "where": [ - 391 + 396 ] } ], "e_check_in_settings_aggregate": [ - 389, + 394, { "distinct_on": [ - 402, + 407, "[e_check_in_settings_select_column!]" ], "limit": [ @@ -128895,44 +129938,44 @@ export default { 38 ], "order_by": [ - 400, + 405, "[e_check_in_settings_order_by!]" ], "where": [ - 391 + 396 ] } ], "e_check_in_settings_by_pk": [ - 388, + 393, { "value": [ - 70, + 75, "String!" ] } ], "e_check_in_settings_stream": [ - 388, + 393, { "batch_size": [ 38, "Int!" ], "cursor": [ - 404, + 409, "[e_check_in_settings_stream_cursor_input]!" ], "where": [ - 391 + 396 ] } ], "e_draft_game_captain_selection": [ - 408, + 413, { "distinct_on": [ - 423, + 428, "[e_draft_game_captain_selection_select_column!]" ], "limit": [ @@ -128942,19 +129985,19 @@ export default { 38 ], "order_by": [ - 421, + 426, "[e_draft_game_captain_selection_order_by!]" ], "where": [ - 411 + 416 ] } ], "e_draft_game_captain_selection_aggregate": [ - 409, + 414, { "distinct_on": [ - 423, + 428, "[e_draft_game_captain_selection_select_column!]" ], "limit": [ @@ -128964,44 +130007,44 @@ export default { 38 ], "order_by": [ - 421, + 426, "[e_draft_game_captain_selection_order_by!]" ], "where": [ - 411 + 416 ] } ], "e_draft_game_captain_selection_by_pk": [ - 408, + 413, { "value": [ - 70, + 75, "String!" ] } ], "e_draft_game_captain_selection_stream": [ - 408, + 413, { "batch_size": [ 38, "Int!" ], "cursor": [ - 425, + 430, "[e_draft_game_captain_selection_stream_cursor_input]!" ], "where": [ - 411 + 416 ] } ], "e_draft_game_draft_order": [ - 429, + 434, { "distinct_on": [ - 444, + 449, "[e_draft_game_draft_order_select_column!]" ], "limit": [ @@ -129011,19 +130054,19 @@ export default { 38 ], "order_by": [ - 442, + 447, "[e_draft_game_draft_order_order_by!]" ], "where": [ - 432 + 437 ] } ], "e_draft_game_draft_order_aggregate": [ - 430, + 435, { "distinct_on": [ - 444, + 449, "[e_draft_game_draft_order_select_column!]" ], "limit": [ @@ -129033,44 +130076,44 @@ export default { 38 ], "order_by": [ - 442, + 447, "[e_draft_game_draft_order_order_by!]" ], "where": [ - 432 + 437 ] } ], "e_draft_game_draft_order_by_pk": [ - 429, + 434, { "value": [ - 70, + 75, "String!" ] } ], "e_draft_game_draft_order_stream": [ - 429, + 434, { "batch_size": [ 38, "Int!" ], "cursor": [ - 446, + 451, "[e_draft_game_draft_order_stream_cursor_input]!" ], "where": [ - 432 + 437 ] } ], "e_draft_game_mode": [ - 450, + 455, { "distinct_on": [ - 465, + 470, "[e_draft_game_mode_select_column!]" ], "limit": [ @@ -129080,19 +130123,19 @@ export default { 38 ], "order_by": [ - 463, + 468, "[e_draft_game_mode_order_by!]" ], "where": [ - 453 + 458 ] } ], "e_draft_game_mode_aggregate": [ - 451, + 456, { "distinct_on": [ - 465, + 470, "[e_draft_game_mode_select_column!]" ], "limit": [ @@ -129102,44 +130145,44 @@ export default { 38 ], "order_by": [ - 463, + 468, "[e_draft_game_mode_order_by!]" ], "where": [ - 453 + 458 ] } ], "e_draft_game_mode_by_pk": [ - 450, + 455, { "value": [ - 70, + 75, "String!" ] } ], "e_draft_game_mode_stream": [ - 450, + 455, { "batch_size": [ 38, "Int!" ], "cursor": [ - 467, + 472, "[e_draft_game_mode_stream_cursor_input]!" ], "where": [ - 453 + 458 ] } ], "e_draft_game_player_status": [ - 471, + 476, { "distinct_on": [ - 486, + 491, "[e_draft_game_player_status_select_column!]" ], "limit": [ @@ -129149,19 +130192,19 @@ export default { 38 ], "order_by": [ - 484, + 489, "[e_draft_game_player_status_order_by!]" ], "where": [ - 474 + 479 ] } ], "e_draft_game_player_status_aggregate": [ - 472, + 477, { "distinct_on": [ - 486, + 491, "[e_draft_game_player_status_select_column!]" ], "limit": [ @@ -129171,44 +130214,44 @@ export default { 38 ], "order_by": [ - 484, + 489, "[e_draft_game_player_status_order_by!]" ], "where": [ - 474 + 479 ] } ], "e_draft_game_player_status_by_pk": [ - 471, + 476, { "value": [ - 70, + 75, "String!" ] } ], "e_draft_game_player_status_stream": [ - 471, + 476, { "batch_size": [ 38, "Int!" ], "cursor": [ - 488, + 493, "[e_draft_game_player_status_stream_cursor_input]!" ], "where": [ - 474 + 479 ] } ], "e_draft_game_status": [ - 492, + 497, { "distinct_on": [ - 507, + 512, "[e_draft_game_status_select_column!]" ], "limit": [ @@ -129218,19 +130261,19 @@ export default { 38 ], "order_by": [ - 505, + 510, "[e_draft_game_status_order_by!]" ], "where": [ - 495 + 500 ] } ], "e_draft_game_status_aggregate": [ - 493, + 498, { "distinct_on": [ - 507, + 512, "[e_draft_game_status_select_column!]" ], "limit": [ @@ -129240,44 +130283,44 @@ export default { 38 ], "order_by": [ - 505, + 510, "[e_draft_game_status_order_by!]" ], "where": [ - 495 + 500 ] } ], "e_draft_game_status_by_pk": [ - 492, + 497, { "value": [ - 70, + 75, "String!" ] } ], "e_draft_game_status_stream": [ - 492, + 497, { "batch_size": [ 38, "Int!" ], "cursor": [ - 509, + 514, "[e_draft_game_status_stream_cursor_input]!" ], "where": [ - 495 + 500 ] } ], "e_friend_status": [ - 513, + 518, { "distinct_on": [ - 528, + 533, "[e_friend_status_select_column!]" ], "limit": [ @@ -129287,19 +130330,19 @@ export default { 38 ], "order_by": [ - 526, + 531, "[e_friend_status_order_by!]" ], "where": [ - 516 + 521 ] } ], "e_friend_status_aggregate": [ - 514, + 519, { "distinct_on": [ - 528, + 533, "[e_friend_status_select_column!]" ], "limit": [ @@ -129309,44 +130352,44 @@ export default { 38 ], "order_by": [ - 526, + 531, "[e_friend_status_order_by!]" ], "where": [ - 516 + 521 ] } ], "e_friend_status_by_pk": [ - 513, + 518, { "value": [ - 70, + 75, "String!" ] } ], "e_friend_status_stream": [ - 513, + 518, { "batch_size": [ 38, "Int!" ], "cursor": [ - 530, + 535, "[e_friend_status_stream_cursor_input]!" ], "where": [ - 516 + 521 ] } ], "e_game_cfg_types": [ - 534, + 539, { "distinct_on": [ - 548, + 553, "[e_game_cfg_types_select_column!]" ], "limit": [ @@ -129356,19 +130399,19 @@ export default { 38 ], "order_by": [ - 546, + 551, "[e_game_cfg_types_order_by!]" ], "where": [ - 537 + 542 ] } ], "e_game_cfg_types_aggregate": [ - 535, + 540, { "distinct_on": [ - 548, + 553, "[e_game_cfg_types_select_column!]" ], "limit": [ @@ -129378,44 +130421,44 @@ export default { 38 ], "order_by": [ - 546, + 551, "[e_game_cfg_types_order_by!]" ], "where": [ - 537 + 542 ] } ], "e_game_cfg_types_by_pk": [ - 534, + 539, { "value": [ - 70, + 75, "String!" ] } ], "e_game_cfg_types_stream": [ - 534, + 539, { "batch_size": [ 38, "Int!" ], "cursor": [ - 550, + 555, "[e_game_cfg_types_stream_cursor_input]!" ], "where": [ - 537 + 542 ] } ], "e_game_server_node_statuses": [ - 554, + 559, { "distinct_on": [ - 569, + 574, "[e_game_server_node_statuses_select_column!]" ], "limit": [ @@ -129425,19 +130468,19 @@ export default { 38 ], "order_by": [ - 567, + 572, "[e_game_server_node_statuses_order_by!]" ], "where": [ - 557 + 562 ] } ], "e_game_server_node_statuses_aggregate": [ - 555, + 560, { "distinct_on": [ - 569, + 574, "[e_game_server_node_statuses_select_column!]" ], "limit": [ @@ -129447,44 +130490,44 @@ export default { 38 ], "order_by": [ - 567, + 572, "[e_game_server_node_statuses_order_by!]" ], "where": [ - 557 + 562 ] } ], "e_game_server_node_statuses_by_pk": [ - 554, + 559, { "value": [ - 70, + 75, "String!" ] } ], "e_game_server_node_statuses_stream": [ - 554, + 559, { "batch_size": [ 38, "Int!" ], "cursor": [ - 571, + 576, "[e_game_server_node_statuses_stream_cursor_input]!" ], "where": [ - 557 + 562 ] } ], "e_lobby_access": [ - 575, + 580, { "distinct_on": [ - 590, + 595, "[e_lobby_access_select_column!]" ], "limit": [ @@ -129494,19 +130537,19 @@ export default { 38 ], "order_by": [ - 588, + 593, "[e_lobby_access_order_by!]" ], "where": [ - 578 + 583 ] } ], "e_lobby_access_aggregate": [ - 576, + 581, { "distinct_on": [ - 590, + 595, "[e_lobby_access_select_column!]" ], "limit": [ @@ -129516,44 +130559,44 @@ export default { 38 ], "order_by": [ - 588, + 593, "[e_lobby_access_order_by!]" ], "where": [ - 578 + 583 ] } ], "e_lobby_access_by_pk": [ - 575, + 580, { "value": [ - 70, + 75, "String!" ] } ], "e_lobby_access_stream": [ - 575, + 580, { "batch_size": [ 38, "Int!" ], "cursor": [ - 592, + 597, "[e_lobby_access_stream_cursor_input]!" ], "where": [ - 578 + 583 ] } ], "e_lobby_player_status": [ - 596, + 601, { "distinct_on": [ - 610, + 615, "[e_lobby_player_status_select_column!]" ], "limit": [ @@ -129563,19 +130606,19 @@ export default { 38 ], "order_by": [ - 608, + 613, "[e_lobby_player_status_order_by!]" ], "where": [ - 599 + 604 ] } ], "e_lobby_player_status_aggregate": [ - 597, + 602, { "distinct_on": [ - 610, + 615, "[e_lobby_player_status_select_column!]" ], "limit": [ @@ -129585,44 +130628,44 @@ export default { 38 ], "order_by": [ - 608, + 613, "[e_lobby_player_status_order_by!]" ], "where": [ - 599 + 604 ] } ], "e_lobby_player_status_by_pk": [ - 596, + 601, { "value": [ - 70, + 75, "String!" ] } ], "e_lobby_player_status_stream": [ - 596, + 601, { "batch_size": [ 38, "Int!" ], "cursor": [ - 612, + 617, "[e_lobby_player_status_stream_cursor_input]!" ], "where": [ - 599 + 604 ] } ], "e_map_pool_types": [ - 616, + 621, { "distinct_on": [ - 631, + 636, "[e_map_pool_types_select_column!]" ], "limit": [ @@ -129632,19 +130675,19 @@ export default { 38 ], "order_by": [ - 629, + 634, "[e_map_pool_types_order_by!]" ], "where": [ - 619 + 624 ] } ], "e_map_pool_types_aggregate": [ - 617, + 622, { "distinct_on": [ - 631, + 636, "[e_map_pool_types_select_column!]" ], "limit": [ @@ -129654,44 +130697,44 @@ export default { 38 ], "order_by": [ - 629, + 634, "[e_map_pool_types_order_by!]" ], "where": [ - 619 + 624 ] } ], "e_map_pool_types_by_pk": [ - 616, + 621, { "value": [ - 70, + 75, "String!" ] } ], "e_map_pool_types_stream": [ - 616, + 621, { "batch_size": [ 38, "Int!" ], "cursor": [ - 633, + 638, "[e_map_pool_types_stream_cursor_input]!" ], "where": [ - 619 + 624 ] } ], "e_match_clip_visibility": [ - 637, + 642, { "distinct_on": [ - 651, + 656, "[e_match_clip_visibility_select_column!]" ], "limit": [ @@ -129701,19 +130744,19 @@ export default { 38 ], "order_by": [ - 649, + 654, "[e_match_clip_visibility_order_by!]" ], "where": [ - 640 + 645 ] } ], "e_match_clip_visibility_aggregate": [ - 638, + 643, { "distinct_on": [ - 651, + 656, "[e_match_clip_visibility_select_column!]" ], "limit": [ @@ -129723,44 +130766,44 @@ export default { 38 ], "order_by": [ - 649, + 654, "[e_match_clip_visibility_order_by!]" ], "where": [ - 640 + 645 ] } ], "e_match_clip_visibility_by_pk": [ - 637, + 642, { "value": [ - 70, + 75, "String!" ] } ], "e_match_clip_visibility_stream": [ - 637, + 642, { "batch_size": [ 38, "Int!" ], "cursor": [ - 653, + 658, "[e_match_clip_visibility_stream_cursor_input]!" ], "where": [ - 640 + 645 ] } ], "e_match_map_status": [ - 657, + 662, { "distinct_on": [ - 672, + 677, "[e_match_map_status_select_column!]" ], "limit": [ @@ -129770,19 +130813,19 @@ export default { 38 ], "order_by": [ - 670, + 675, "[e_match_map_status_order_by!]" ], "where": [ - 660 + 665 ] } ], "e_match_map_status_aggregate": [ - 658, + 663, { "distinct_on": [ - 672, + 677, "[e_match_map_status_select_column!]" ], "limit": [ @@ -129792,44 +130835,44 @@ export default { 38 ], "order_by": [ - 670, + 675, "[e_match_map_status_order_by!]" ], "where": [ - 660 + 665 ] } ], "e_match_map_status_by_pk": [ - 657, + 662, { "value": [ - 70, + 75, "String!" ] } ], "e_match_map_status_stream": [ - 657, + 662, { "batch_size": [ 38, "Int!" ], "cursor": [ - 674, + 679, "[e_match_map_status_stream_cursor_input]!" ], "where": [ - 660 + 665 ] } ], "e_match_mode": [ - 678, + 683, { "distinct_on": [ - 692, + 697, "[e_match_mode_select_column!]" ], "limit": [ @@ -129839,19 +130882,19 @@ export default { 38 ], "order_by": [ - 690, + 695, "[e_match_mode_order_by!]" ], "where": [ - 681 + 686 ] } ], "e_match_mode_aggregate": [ - 679, + 684, { "distinct_on": [ - 692, + 697, "[e_match_mode_select_column!]" ], "limit": [ @@ -129861,44 +130904,44 @@ export default { 38 ], "order_by": [ - 690, + 695, "[e_match_mode_order_by!]" ], "where": [ - 681 + 686 ] } ], "e_match_mode_by_pk": [ - 678, + 683, { "value": [ - 70, + 75, "String!" ] } ], "e_match_mode_stream": [ - 678, + 683, { "batch_size": [ 38, "Int!" ], "cursor": [ - 694, + 699, "[e_match_mode_stream_cursor_input]!" ], "where": [ - 681 + 686 ] } ], "e_match_status": [ - 698, + 703, { "distinct_on": [ - 713, + 718, "[e_match_status_select_column!]" ], "limit": [ @@ -129908,19 +130951,19 @@ export default { 38 ], "order_by": [ - 711, + 716, "[e_match_status_order_by!]" ], "where": [ - 701 + 706 ] } ], "e_match_status_aggregate": [ - 699, + 704, { "distinct_on": [ - 713, + 718, "[e_match_status_select_column!]" ], "limit": [ @@ -129930,44 +130973,44 @@ export default { 38 ], "order_by": [ - 711, + 716, "[e_match_status_order_by!]" ], "where": [ - 701 + 706 ] } ], "e_match_status_by_pk": [ - 698, + 703, { "value": [ - 70, + 75, "String!" ] } ], "e_match_status_stream": [ - 698, + 703, { "batch_size": [ 38, "Int!" ], "cursor": [ - 715, + 720, "[e_match_status_stream_cursor_input]!" ], "where": [ - 701 + 706 ] } ], "e_match_types": [ - 719, + 724, { "distinct_on": [ - 734, + 739, "[e_match_types_select_column!]" ], "limit": [ @@ -129977,19 +131020,19 @@ export default { 38 ], "order_by": [ - 732, + 737, "[e_match_types_order_by!]" ], "where": [ - 722 + 727 ] } ], "e_match_types_aggregate": [ - 720, + 725, { "distinct_on": [ - 734, + 739, "[e_match_types_select_column!]" ], "limit": [ @@ -129999,44 +131042,44 @@ export default { 38 ], "order_by": [ - 732, + 737, "[e_match_types_order_by!]" ], "where": [ - 722 + 727 ] } ], "e_match_types_by_pk": [ - 719, + 724, { "value": [ - 70, + 75, "String!" ] } ], "e_match_types_stream": [ - 719, + 724, { "batch_size": [ 38, "Int!" ], "cursor": [ - 736, + 741, "[e_match_types_stream_cursor_input]!" ], "where": [ - 722 + 727 ] } ], "e_notification_types": [ - 740, + 745, { "distinct_on": [ - 754, + 759, "[e_notification_types_select_column!]" ], "limit": [ @@ -130046,19 +131089,19 @@ export default { 38 ], "order_by": [ - 752, + 757, "[e_notification_types_order_by!]" ], "where": [ - 743 + 748 ] } ], "e_notification_types_aggregate": [ - 741, + 746, { "distinct_on": [ - 754, + 759, "[e_notification_types_select_column!]" ], "limit": [ @@ -130068,44 +131111,44 @@ export default { 38 ], "order_by": [ - 752, + 757, "[e_notification_types_order_by!]" ], "where": [ - 743 + 748 ] } ], "e_notification_types_by_pk": [ - 740, + 745, { "value": [ - 70, + 75, "String!" ] } ], "e_notification_types_stream": [ - 740, + 745, { "batch_size": [ 38, "Int!" ], "cursor": [ - 756, + 761, "[e_notification_types_stream_cursor_input]!" ], "where": [ - 743 + 748 ] } ], "e_objective_types": [ - 760, + 765, { "distinct_on": [ - 774, + 779, "[e_objective_types_select_column!]" ], "limit": [ @@ -130115,19 +131158,19 @@ export default { 38 ], "order_by": [ - 772, + 777, "[e_objective_types_order_by!]" ], "where": [ - 763 + 768 ] } ], "e_objective_types_aggregate": [ - 761, + 766, { "distinct_on": [ - 774, + 779, "[e_objective_types_select_column!]" ], "limit": [ @@ -130137,44 +131180,44 @@ export default { 38 ], "order_by": [ - 772, + 777, "[e_objective_types_order_by!]" ], "where": [ - 763 + 768 ] } ], "e_objective_types_by_pk": [ - 760, + 765, { "value": [ - 70, + 75, "String!" ] } ], "e_objective_types_stream": [ - 760, + 765, { "batch_size": [ 38, "Int!" ], "cursor": [ - 776, + 781, "[e_objective_types_stream_cursor_input]!" ], "where": [ - 763 + 768 ] } ], "e_player_roles": [ - 780, + 785, { "distinct_on": [ - 794, + 799, "[e_player_roles_select_column!]" ], "limit": [ @@ -130184,19 +131227,19 @@ export default { 38 ], "order_by": [ - 792, + 797, "[e_player_roles_order_by!]" ], "where": [ - 783 + 788 ] } ], "e_player_roles_aggregate": [ - 781, + 786, { "distinct_on": [ - 794, + 799, "[e_player_roles_select_column!]" ], "limit": [ @@ -130206,44 +131249,44 @@ export default { 38 ], "order_by": [ - 792, + 797, "[e_player_roles_order_by!]" ], "where": [ - 783 + 788 ] } ], "e_player_roles_by_pk": [ - 780, + 785, { "value": [ - 70, + 75, "String!" ] } ], "e_player_roles_stream": [ - 780, + 785, { "batch_size": [ 38, "Int!" ], "cursor": [ - 796, + 801, "[e_player_roles_stream_cursor_input]!" ], "where": [ - 783 + 788 ] } ], "e_ready_settings": [ - 800, + 805, { "distinct_on": [ - 814, + 819, "[e_ready_settings_select_column!]" ], "limit": [ @@ -130253,19 +131296,19 @@ export default { 38 ], "order_by": [ - 812, + 817, "[e_ready_settings_order_by!]" ], "where": [ - 803 + 808 ] } ], "e_ready_settings_aggregate": [ - 801, + 806, { "distinct_on": [ - 814, + 819, "[e_ready_settings_select_column!]" ], "limit": [ @@ -130275,44 +131318,44 @@ export default { 38 ], "order_by": [ - 812, + 817, "[e_ready_settings_order_by!]" ], "where": [ - 803 + 808 ] } ], "e_ready_settings_by_pk": [ - 800, + 805, { "value": [ - 70, + 75, "String!" ] } ], "e_ready_settings_stream": [ - 800, + 805, { "batch_size": [ 38, "Int!" ], "cursor": [ - 816, + 821, "[e_ready_settings_stream_cursor_input]!" ], "where": [ - 803 + 808 ] } ], "e_sanction_types": [ - 820, + 825, { "distinct_on": [ - 835, + 840, "[e_sanction_types_select_column!]" ], "limit": [ @@ -130322,19 +131365,19 @@ export default { 38 ], "order_by": [ - 833, + 838, "[e_sanction_types_order_by!]" ], "where": [ - 823 + 828 ] } ], "e_sanction_types_aggregate": [ - 821, + 826, { "distinct_on": [ - 835, + 840, "[e_sanction_types_select_column!]" ], "limit": [ @@ -130344,44 +131387,44 @@ export default { 38 ], "order_by": [ - 833, + 838, "[e_sanction_types_order_by!]" ], "where": [ - 823 + 828 ] } ], "e_sanction_types_by_pk": [ - 820, + 825, { "value": [ - 70, + 75, "String!" ] } ], "e_sanction_types_stream": [ - 820, + 825, { "batch_size": [ 38, "Int!" ], "cursor": [ - 837, + 842, "[e_sanction_types_stream_cursor_input]!" ], "where": [ - 823 + 828 ] } ], "e_scrim_request_statuses": [ - 841, + 846, { "distinct_on": [ - 855, + 860, "[e_scrim_request_statuses_select_column!]" ], "limit": [ @@ -130391,19 +131434,19 @@ export default { 38 ], "order_by": [ - 853, + 858, "[e_scrim_request_statuses_order_by!]" ], "where": [ - 844 + 849 ] } ], "e_scrim_request_statuses_aggregate": [ - 842, + 847, { "distinct_on": [ - 855, + 860, "[e_scrim_request_statuses_select_column!]" ], "limit": [ @@ -130413,44 +131456,44 @@ export default { 38 ], "order_by": [ - 853, + 858, "[e_scrim_request_statuses_order_by!]" ], "where": [ - 844 + 849 ] } ], "e_scrim_request_statuses_by_pk": [ - 841, + 846, { "value": [ - 70, + 75, "String!" ] } ], "e_scrim_request_statuses_stream": [ - 841, + 846, { "batch_size": [ 38, "Int!" ], "cursor": [ - 857, + 862, "[e_scrim_request_statuses_stream_cursor_input]!" ], "where": [ - 844 + 849 ] } ], "e_server_types": [ - 861, + 866, { "distinct_on": [ - 875, + 880, "[e_server_types_select_column!]" ], "limit": [ @@ -130460,19 +131503,19 @@ export default { 38 ], "order_by": [ - 873, + 878, "[e_server_types_order_by!]" ], "where": [ - 864 + 869 ] } ], "e_server_types_aggregate": [ - 862, + 867, { "distinct_on": [ - 875, + 880, "[e_server_types_select_column!]" ], "limit": [ @@ -130482,44 +131525,44 @@ export default { 38 ], "order_by": [ - 873, + 878, "[e_server_types_order_by!]" ], "where": [ - 864 + 869 ] } ], "e_server_types_by_pk": [ - 861, + 866, { "value": [ - 70, + 75, "String!" ] } ], "e_server_types_stream": [ - 861, + 866, { "batch_size": [ 38, "Int!" ], "cursor": [ - 877, + 882, "[e_server_types_stream_cursor_input]!" ], "where": [ - 864 + 869 ] } ], "e_sides": [ - 881, + 886, { "distinct_on": [ - 895, + 900, "[e_sides_select_column!]" ], "limit": [ @@ -130529,19 +131572,19 @@ export default { 38 ], "order_by": [ - 893, + 898, "[e_sides_order_by!]" ], "where": [ - 884 + 889 ] } ], "e_sides_aggregate": [ - 882, + 887, { "distinct_on": [ - 895, + 900, "[e_sides_select_column!]" ], "limit": [ @@ -130551,44 +131594,44 @@ export default { 38 ], "order_by": [ - 893, + 898, "[e_sides_order_by!]" ], "where": [ - 884 + 889 ] } ], "e_sides_by_pk": [ - 881, + 886, { "value": [ - 70, + 75, "String!" ] } ], "e_sides_stream": [ - 881, + 886, { "batch_size": [ 38, "Int!" ], "cursor": [ - 897, + 902, "[e_sides_stream_cursor_input]!" ], "where": [ - 884 + 889 ] } ], "e_system_alert_types": [ - 901, + 906, { "distinct_on": [ - 915, + 920, "[e_system_alert_types_select_column!]" ], "limit": [ @@ -130598,19 +131641,19 @@ export default { 38 ], "order_by": [ - 913, + 918, "[e_system_alert_types_order_by!]" ], "where": [ - 904 + 909 ] } ], "e_system_alert_types_aggregate": [ - 902, + 907, { "distinct_on": [ - 915, + 920, "[e_system_alert_types_select_column!]" ], "limit": [ @@ -130620,44 +131663,44 @@ export default { 38 ], "order_by": [ - 913, + 918, "[e_system_alert_types_order_by!]" ], "where": [ - 904 + 909 ] } ], "e_system_alert_types_by_pk": [ - 901, + 906, { "value": [ - 70, + 75, "String!" ] } ], "e_system_alert_types_stream": [ - 901, + 906, { "batch_size": [ 38, "Int!" ], "cursor": [ - 917, + 922, "[e_system_alert_types_stream_cursor_input]!" ], "where": [ - 904 + 909 ] } ], "e_team_roles": [ - 921, + 926, { "distinct_on": [ - 936, + 941, "[e_team_roles_select_column!]" ], "limit": [ @@ -130667,19 +131710,19 @@ export default { 38 ], "order_by": [ - 934, + 939, "[e_team_roles_order_by!]" ], "where": [ - 924 + 929 ] } ], "e_team_roles_aggregate": [ - 922, + 927, { "distinct_on": [ - 936, + 941, "[e_team_roles_select_column!]" ], "limit": [ @@ -130689,44 +131732,44 @@ export default { 38 ], "order_by": [ - 934, + 939, "[e_team_roles_order_by!]" ], "where": [ - 924 + 929 ] } ], "e_team_roles_by_pk": [ - 921, + 926, { "value": [ - 70, + 75, "String!" ] } ], "e_team_roles_stream": [ - 921, + 926, { "batch_size": [ 38, "Int!" ], "cursor": [ - 938, + 943, "[e_team_roles_stream_cursor_input]!" ], "where": [ - 924 + 929 ] } ], "e_team_roster_statuses": [ - 942, + 947, { "distinct_on": [ - 956, + 961, "[e_team_roster_statuses_select_column!]" ], "limit": [ @@ -130736,19 +131779,19 @@ export default { 38 ], "order_by": [ - 954, + 959, "[e_team_roster_statuses_order_by!]" ], "where": [ - 945 + 950 ] } ], "e_team_roster_statuses_aggregate": [ - 943, + 948, { "distinct_on": [ - 956, + 961, "[e_team_roster_statuses_select_column!]" ], "limit": [ @@ -130758,44 +131801,44 @@ export default { 38 ], "order_by": [ - 954, + 959, "[e_team_roster_statuses_order_by!]" ], "where": [ - 945 + 950 ] } ], "e_team_roster_statuses_by_pk": [ - 942, + 947, { "value": [ - 70, + 75, "String!" ] } ], "e_team_roster_statuses_stream": [ - 942, + 947, { "batch_size": [ 38, "Int!" ], "cursor": [ - 958, + 963, "[e_team_roster_statuses_stream_cursor_input]!" ], "where": [ - 945 + 950 ] } ], "e_timeout_settings": [ - 962, + 967, { "distinct_on": [ - 976, + 981, "[e_timeout_settings_select_column!]" ], "limit": [ @@ -130805,19 +131848,19 @@ export default { 38 ], "order_by": [ - 974, + 979, "[e_timeout_settings_order_by!]" ], "where": [ - 965 + 970 ] } ], "e_timeout_settings_aggregate": [ - 963, + 968, { "distinct_on": [ - 976, + 981, "[e_timeout_settings_select_column!]" ], "limit": [ @@ -130827,44 +131870,44 @@ export default { 38 ], "order_by": [ - 974, + 979, "[e_timeout_settings_order_by!]" ], "where": [ - 965 + 970 ] } ], "e_timeout_settings_by_pk": [ - 962, + 967, { "value": [ - 70, + 75, "String!" ] } ], "e_timeout_settings_stream": [ - 962, + 967, { "batch_size": [ 38, "Int!" ], "cursor": [ - 978, + 983, "[e_timeout_settings_stream_cursor_input]!" ], "where": [ - 965 + 970 ] } ], "e_tournament_stage_types": [ - 982, + 987, { "distinct_on": [ - 997, + 1002, "[e_tournament_stage_types_select_column!]" ], "limit": [ @@ -130874,19 +131917,19 @@ export default { 38 ], "order_by": [ - 995, + 1000, "[e_tournament_stage_types_order_by!]" ], "where": [ - 985 + 990 ] } ], "e_tournament_stage_types_aggregate": [ - 983, + 988, { "distinct_on": [ - 997, + 1002, "[e_tournament_stage_types_select_column!]" ], "limit": [ @@ -130896,44 +131939,44 @@ export default { 38 ], "order_by": [ - 995, + 1000, "[e_tournament_stage_types_order_by!]" ], "where": [ - 985 + 990 ] } ], "e_tournament_stage_types_by_pk": [ - 982, + 987, { "value": [ - 70, + 75, "String!" ] } ], "e_tournament_stage_types_stream": [ - 982, + 987, { "batch_size": [ 38, "Int!" ], "cursor": [ - 999, + 1004, "[e_tournament_stage_types_stream_cursor_input]!" ], "where": [ - 985 + 990 ] } ], "e_tournament_status": [ - 1003, + 1008, { "distinct_on": [ - 1018, + 1023, "[e_tournament_status_select_column!]" ], "limit": [ @@ -130943,19 +131986,19 @@ export default { 38 ], "order_by": [ - 1016, + 1021, "[e_tournament_status_order_by!]" ], "where": [ - 1006 + 1011 ] } ], "e_tournament_status_aggregate": [ - 1004, + 1009, { "distinct_on": [ - 1018, + 1023, "[e_tournament_status_select_column!]" ], "limit": [ @@ -130965,44 +132008,44 @@ export default { 38 ], "order_by": [ - 1016, + 1021, "[e_tournament_status_order_by!]" ], "where": [ - 1006 + 1011 ] } ], "e_tournament_status_by_pk": [ - 1003, + 1008, { "value": [ - 70, + 75, "String!" ] } ], "e_tournament_status_stream": [ - 1003, + 1008, { "batch_size": [ 38, "Int!" ], "cursor": [ - 1020, + 1025, "[e_tournament_status_stream_cursor_input]!" ], "where": [ - 1006 + 1011 ] } ], "e_utility_types": [ - 1024, + 1029, { "distinct_on": [ - 1038, + 1043, "[e_utility_types_select_column!]" ], "limit": [ @@ -131012,19 +132055,19 @@ export default { 38 ], "order_by": [ - 1036, + 1041, "[e_utility_types_order_by!]" ], "where": [ - 1027 + 1032 ] } ], "e_utility_types_aggregate": [ - 1025, + 1030, { "distinct_on": [ - 1038, + 1043, "[e_utility_types_select_column!]" ], "limit": [ @@ -131034,44 +132077,44 @@ export default { 38 ], "order_by": [ - 1036, + 1041, "[e_utility_types_order_by!]" ], "where": [ - 1027 + 1032 ] } ], "e_utility_types_by_pk": [ - 1024, + 1029, { "value": [ - 70, + 75, "String!" ] } ], "e_utility_types_stream": [ - 1024, + 1029, { "batch_size": [ 38, "Int!" ], "cursor": [ - 1040, + 1045, "[e_utility_types_stream_cursor_input]!" ], "where": [ - 1027 + 1032 ] } ], "e_veto_pick_types": [ - 1044, + 1049, { "distinct_on": [ - 1058, + 1063, "[e_veto_pick_types_select_column!]" ], "limit": [ @@ -131081,19 +132124,19 @@ export default { 38 ], "order_by": [ - 1056, + 1061, "[e_veto_pick_types_order_by!]" ], "where": [ - 1047 + 1052 ] } ], "e_veto_pick_types_aggregate": [ - 1045, + 1050, { "distinct_on": [ - 1058, + 1063, "[e_veto_pick_types_select_column!]" ], "limit": [ @@ -131103,44 +132146,44 @@ export default { 38 ], "order_by": [ - 1056, + 1061, "[e_veto_pick_types_order_by!]" ], "where": [ - 1047 + 1052 ] } ], "e_veto_pick_types_by_pk": [ - 1044, + 1049, { "value": [ - 70, + 75, "String!" ] } ], "e_veto_pick_types_stream": [ - 1044, + 1049, { "batch_size": [ 38, "Int!" ], "cursor": [ - 1060, + 1065, "[e_veto_pick_types_stream_cursor_input]!" ], "where": [ - 1047 + 1052 ] } ], "e_winning_reasons": [ - 1064, + 1069, { "distinct_on": [ - 1078, + 1083, "[e_winning_reasons_select_column!]" ], "limit": [ @@ -131150,19 +132193,19 @@ export default { 38 ], "order_by": [ - 1076, + 1081, "[e_winning_reasons_order_by!]" ], "where": [ - 1067 + 1072 ] } ], "e_winning_reasons_aggregate": [ - 1065, + 1070, { "distinct_on": [ - 1078, + 1083, "[e_winning_reasons_select_column!]" ], "limit": [ @@ -131172,44 +132215,44 @@ export default { 38 ], "order_by": [ - 1076, + 1081, "[e_winning_reasons_order_by!]" ], "where": [ - 1067 + 1072 ] } ], "e_winning_reasons_by_pk": [ - 1064, + 1069, { "value": [ - 70, + 75, "String!" ] } ], "e_winning_reasons_stream": [ - 1064, + 1069, { "batch_size": [ 38, "Int!" ], "cursor": [ - 1080, + 1085, "[e_winning_reasons_stream_cursor_input]!" ], "where": [ - 1067 + 1072 ] } ], "friends": [ - 1086, + 1091, { "distinct_on": [ - 1100, + 1105, "[friends_select_column!]" ], "limit": [ @@ -131219,19 +132262,19 @@ export default { 38 ], "order_by": [ - 1098, + 1103, "[friends_order_by!]" ], "where": [ - 1090 + 1095 ] } ], "friends_aggregate": [ - 1087, + 1092, { "distinct_on": [ - 1100, + 1105, "[friends_select_column!]" ], "limit": [ @@ -131241,48 +132284,48 @@ export default { 38 ], "order_by": [ - 1098, + 1103, "[friends_order_by!]" ], "where": [ - 1090 + 1095 ] } ], "friends_by_pk": [ - 1086, + 1091, { "other_player_steam_id": [ - 169, + 174, "bigint!" ], "player_steam_id": [ - 169, + 174, "bigint!" ] } ], "friends_stream": [ - 1086, + 1091, { "batch_size": [ 38, "Int!" ], "cursor": [ - 1105, + 1110, "[friends_stream_cursor_input]!" ], "where": [ - 1090 + 1095 ] } ], "game_server_nodes": [ - 1113, + 1118, { "distinct_on": [ - 1142, + 1147, "[game_server_nodes_select_column!]" ], "limit": [ @@ -131292,19 +132335,19 @@ export default { 38 ], "order_by": [ - 1139, + 1144, "[game_server_nodes_order_by!]" ], "where": [ - 1125 + 1130 ] } ], "game_server_nodes_aggregate": [ - 1114, + 1119, { "distinct_on": [ - 1142, + 1147, "[game_server_nodes_select_column!]" ], "limit": [ @@ -131314,44 +132357,44 @@ export default { 38 ], "order_by": [ - 1139, + 1144, "[game_server_nodes_order_by!]" ], "where": [ - 1125 + 1130 ] } ], "game_server_nodes_by_pk": [ - 1113, + 1118, { "id": [ - 70, + 75, "String!" ] } ], "game_server_nodes_stream": [ - 1113, + 1118, { "batch_size": [ 38, "Int!" ], "cursor": [ - 1152, + 1157, "[game_server_nodes_stream_cursor_input]!" ], "where": [ - 1125 + 1130 ] } ], "game_versions": [ - 1164, + 1169, { "distinct_on": [ - 1184, + 1189, "[game_versions_select_column!]" ], "limit": [ @@ -131361,19 +132404,19 @@ export default { 38 ], "order_by": [ - 1181, + 1186, "[game_versions_order_by!]" ], "where": [ - 1169 + 1174 ] } ], "game_versions_aggregate": [ - 1165, + 1170, { "distinct_on": [ - 1184, + 1189, "[game_versions_select_column!]" ], "limit": [ @@ -131383,16 +132426,16 @@ export default { 38 ], "order_by": [ - 1181, + 1186, "[game_versions_order_by!]" ], "where": [ - 1169 + 1174 ] } ], "game_versions_by_pk": [ - 1164, + 1169, { "build_id": [ 38, @@ -131401,26 +132444,26 @@ export default { } ], "game_versions_stream": [ - 1164, + 1169, { "batch_size": [ 38, "Int!" ], "cursor": [ - 1189, + 1194, "[game_versions_stream_cursor_input]!" ], "where": [ - 1169 + 1174 ] } ], "gamedata_signature_validations": [ - 1197, + 1202, { "distinct_on": [ - 1216, + 1221, "[gamedata_signature_validations_select_column!]" ], "limit": [ @@ -131430,19 +132473,19 @@ export default { 38 ], "order_by": [ - 1213, + 1218, "[gamedata_signature_validations_order_by!]" ], "where": [ - 1202 + 1207 ] } ], "gamedata_signature_validations_aggregate": [ - 1198, + 1203, { "distinct_on": [ - 1216, + 1221, "[gamedata_signature_validations_select_column!]" ], "limit": [ @@ -131452,48 +132495,48 @@ export default { 38 ], "order_by": [ - 1213, + 1218, "[gamedata_signature_validations_order_by!]" ], "where": [ - 1202 + 1207 ] } ], "gamedata_signature_validations_by_pk": [ - 1197, + 1202, { "id": [ - 3818, + 3864, "uuid!" ] } ], "gamedata_signature_validations_stream": [ - 1197, + 1202, { "batch_size": [ 38, "Int!" ], "cursor": [ - 1221, + 1226, "[gamedata_signature_validations_stream_cursor_input]!" ], "where": [ - 1202 + 1207 ] } ], "get_leaderboard": [ - 1238, + 1243, { "args": [ - 1229, + 1234, "get_leaderboard_args!" ], "distinct_on": [ - 1249, + 1254, "[leaderboard_entries_select_column!]" ], "limit": [ @@ -131503,23 +132546,23 @@ export default { 38 ], "order_by": [ - 1248, + 1253, "[leaderboard_entries_order_by!]" ], "where": [ - 1242 + 1247 ] } ], "get_leaderboard_aggregate": [ - 1239, + 1244, { "args": [ - 1229, + 1234, "get_leaderboard_args!" ], "distinct_on": [ - 1249, + 1254, "[leaderboard_entries_select_column!]" ], "limit": [ @@ -131529,23 +132572,23 @@ export default { 38 ], "order_by": [ - 1248, + 1253, "[leaderboard_entries_order_by!]" ], "where": [ - 1242 + 1247 ] } ], "get_player_leaderboard_rank": [ - 2452, + 2457, { "args": [ - 1230, + 1235, "get_player_leaderboard_rank_args!" ], "distinct_on": [ - 2463, + 2468, "[player_leaderboard_rank_select_column!]" ], "limit": [ @@ -131555,23 +132598,23 @@ export default { 38 ], "order_by": [ - 2462, + 2467, "[player_leaderboard_rank_order_by!]" ], "where": [ - 2456 + 2461 ] } ], "get_player_leaderboard_rank_aggregate": [ - 2453, + 2458, { "args": [ - 1230, + 1235, "get_player_leaderboard_rank_args!" ], "distinct_on": [ - 2463, + 2468, "[player_leaderboard_rank_select_column!]" ], "limit": [ @@ -131581,19 +132624,19 @@ export default { 38 ], "order_by": [ - 2462, + 2467, "[player_leaderboard_rank_order_by!]" ], "where": [ - 2456 + 2461 ] } ], "leaderboard_entries": [ - 1238, + 1243, { "distinct_on": [ - 1249, + 1254, "[leaderboard_entries_select_column!]" ], "limit": [ @@ -131603,19 +132646,19 @@ export default { 38 ], "order_by": [ - 1248, + 1253, "[leaderboard_entries_order_by!]" ], "where": [ - 1242 + 1247 ] } ], "leaderboard_entries_aggregate": [ - 1239, + 1244, { "distinct_on": [ - 1249, + 1254, "[leaderboard_entries_select_column!]" ], "limit": [ @@ -131625,35 +132668,35 @@ export default { 38 ], "order_by": [ - 1248, + 1253, "[leaderboard_entries_order_by!]" ], "where": [ - 1242 + 1247 ] } ], "leaderboard_entries_stream": [ - 1238, + 1243, { "batch_size": [ 38, "Int!" ], "cursor": [ - 1254, + 1259, "[leaderboard_entries_stream_cursor_input]!" ], "where": [ - 1242 + 1247 ] } ], "lobbies": [ - 1261, + 1266, { "distinct_on": [ - 1274, + 1279, "[lobbies_select_column!]" ], "limit": [ @@ -131663,19 +132706,19 @@ export default { 38 ], "order_by": [ - 1272, + 1277, "[lobbies_order_by!]" ], "where": [ - 1264 + 1269 ] } ], "lobbies_aggregate": [ - 1262, + 1267, { "distinct_on": [ - 1274, + 1279, "[lobbies_select_column!]" ], "limit": [ @@ -131685,44 +132728,44 @@ export default { 38 ], "order_by": [ - 1272, + 1277, "[lobbies_order_by!]" ], "where": [ - 1264 + 1269 ] } ], "lobbies_by_pk": [ - 1261, + 1266, { "id": [ - 3818, + 3864, "uuid!" ] } ], "lobbies_stream": [ - 1261, + 1266, { "batch_size": [ 38, "Int!" ], "cursor": [ - 1276, + 1281, "[lobbies_stream_cursor_input]!" ], "where": [ - 1264 + 1269 ] } ], "lobby_players": [ - 1280, + 1285, { "distinct_on": [ - 1303, + 1308, "[lobby_players_select_column!]" ], "limit": [ @@ -131732,19 +132775,19 @@ export default { 38 ], "order_by": [ - 1301, + 1306, "[lobby_players_order_by!]" ], "where": [ - 1291 + 1296 ] } ], "lobby_players_aggregate": [ - 1281, + 1286, { "distinct_on": [ - 1303, + 1308, "[lobby_players_select_column!]" ], "limit": [ @@ -131754,48 +132797,48 @@ export default { 38 ], "order_by": [ - 1301, + 1306, "[lobby_players_order_by!]" ], "where": [ - 1291 + 1296 ] } ], "lobby_players_by_pk": [ - 1280, + 1285, { "lobby_id": [ - 3818, + 3864, "uuid!" ], "steam_id": [ - 169, + 174, "bigint!" ] } ], "lobby_players_stream": [ - 1280, + 1285, { "batch_size": [ 38, "Int!" ], "cursor": [ - 1313, + 1318, "[lobby_players_stream_cursor_input]!" ], "where": [ - 1291 + 1296 ] } ], "map_pools": [ - 1325, + 1330, { "distinct_on": [ - 1338, + 1343, "[map_pools_select_column!]" ], "limit": [ @@ -131805,19 +132848,19 @@ export default { 38 ], "order_by": [ - 1336, + 1341, "[map_pools_order_by!]" ], "where": [ - 1328 + 1333 ] } ], "map_pools_aggregate": [ - 1326, + 1331, { "distinct_on": [ - 1338, + 1343, "[map_pools_select_column!]" ], "limit": [ @@ -131827,44 +132870,44 @@ export default { 38 ], "order_by": [ - 1336, + 1341, "[map_pools_order_by!]" ], "where": [ - 1328 + 1333 ] } ], "map_pools_by_pk": [ - 1325, + 1330, { "id": [ - 3818, + 3864, "uuid!" ] } ], "map_pools_stream": [ - 1325, + 1330, { "batch_size": [ 38, "Int!" ], "cursor": [ - 1340, + 1345, "[map_pools_stream_cursor_input]!" ], "where": [ - 1328 + 1333 ] } ], "maps": [ - 1344, + 1349, { "distinct_on": [ - 1365, + 1370, "[maps_select_column!]" ], "limit": [ @@ -131874,19 +132917,19 @@ export default { 38 ], "order_by": [ - 1363, + 1368, "[maps_order_by!]" ], "where": [ - 1353 + 1358 ] } ], "maps_aggregate": [ - 1345, + 1350, { "distinct_on": [ - 1365, + 1370, "[maps_select_column!]" ], "limit": [ @@ -131896,44 +132939,44 @@ export default { 38 ], "order_by": [ - 1363, + 1368, "[maps_order_by!]" ], "where": [ - 1353 + 1358 ] } ], "maps_by_pk": [ - 1344, + 1349, { "id": [ - 3818, + 3864, "uuid!" ] } ], "maps_stream": [ - 1344, + 1349, { "batch_size": [ 38, "Int!" ], "cursor": [ - 1369, + 1374, "[maps_stream_cursor_input]!" ], "where": [ - 1353 + 1358 ] } ], "match_clips": [ - 1373, + 1378, { "distinct_on": [ - 1395, + 1400, "[match_clips_select_column!]" ], "limit": [ @@ -131943,19 +132986,19 @@ export default { 38 ], "order_by": [ - 1393, + 1398, "[match_clips_order_by!]" ], "where": [ - 1382 + 1387 ] } ], "match_clips_aggregate": [ - 1374, + 1379, { "distinct_on": [ - 1395, + 1400, "[match_clips_select_column!]" ], "limit": [ @@ -131965,44 +133008,44 @@ export default { 38 ], "order_by": [ - 1393, + 1398, "[match_clips_order_by!]" ], "where": [ - 1382 + 1387 ] } ], "match_clips_by_pk": [ - 1373, + 1378, { "id": [ - 3818, + 3864, "uuid!" ] } ], "match_clips_stream": [ - 1373, + 1378, { "batch_size": [ 38, "Int!" ], "cursor": [ - 1403, + 1408, "[match_clips_stream_cursor_input]!" ], "where": [ - 1382 + 1387 ] } ], "match_demo_sessions": [ - 1415, + 1420, { "distinct_on": [ - 1441, + 1446, "[match_demo_sessions_select_column!]" ], "limit": [ @@ -132012,19 +133055,19 @@ export default { 38 ], "order_by": [ - 1438, + 1443, "[match_demo_sessions_order_by!]" ], "where": [ - 1425 + 1430 ] } ], "match_demo_sessions_aggregate": [ - 1416, + 1421, { "distinct_on": [ - 1441, + 1446, "[match_demo_sessions_select_column!]" ], "limit": [ @@ -132034,44 +133077,44 @@ export default { 38 ], "order_by": [ - 1438, + 1443, "[match_demo_sessions_order_by!]" ], "where": [ - 1425 + 1430 ] } ], "match_demo_sessions_by_pk": [ - 1415, + 1420, { "id": [ - 3818, + 3864, "uuid!" ] } ], "match_demo_sessions_stream": [ - 1415, + 1420, { "batch_size": [ 38, "Int!" ], "cursor": [ - 1449, + 1454, "[match_demo_sessions_stream_cursor_input]!" ], "where": [ - 1425 + 1430 ] } ], "match_lineup_players": [ - 1461, + 1466, { "distinct_on": [ - 1484, + 1489, "[match_lineup_players_select_column!]" ], "limit": [ @@ -132081,19 +133124,19 @@ export default { 38 ], "order_by": [ - 1482, + 1487, "[match_lineup_players_order_by!]" ], "where": [ - 1472 + 1477 ] } ], "match_lineup_players_aggregate": [ - 1462, + 1467, { "distinct_on": [ - 1484, + 1489, "[match_lineup_players_select_column!]" ], "limit": [ @@ -132103,44 +133146,44 @@ export default { 38 ], "order_by": [ - 1482, + 1487, "[match_lineup_players_order_by!]" ], "where": [ - 1472 + 1477 ] } ], "match_lineup_players_by_pk": [ - 1461, + 1466, { "id": [ - 3818, + 3864, "uuid!" ] } ], "match_lineup_players_stream": [ - 1461, + 1466, { "batch_size": [ 38, "Int!" ], "cursor": [ - 1494, + 1499, "[match_lineup_players_stream_cursor_input]!" ], "where": [ - 1472 + 1477 ] } ], "match_lineups": [ - 1506, + 1511, { "distinct_on": [ - 1528, + 1533, "[match_lineups_select_column!]" ], "limit": [ @@ -132150,19 +133193,19 @@ export default { 38 ], "order_by": [ - 1526, + 1531, "[match_lineups_order_by!]" ], "where": [ - 1515 + 1520 ] } ], "match_lineups_aggregate": [ - 1507, + 1512, { "distinct_on": [ - 1528, + 1533, "[match_lineups_select_column!]" ], "limit": [ @@ -132172,44 +133215,44 @@ export default { 38 ], "order_by": [ - 1526, + 1531, "[match_lineups_order_by!]" ], "where": [ - 1515 + 1520 ] } ], "match_lineups_by_pk": [ - 1506, + 1511, { "id": [ - 3818, + 3864, "uuid!" ] } ], "match_lineups_stream": [ - 1506, + 1511, { "batch_size": [ 38, "Int!" ], "cursor": [ - 1536, + 1541, "[match_lineups_stream_cursor_input]!" ], "where": [ - 1515 + 1520 ] } ], "match_map_demos": [ - 1548, + 1553, { "distinct_on": [ - 1577, + 1582, "[match_map_demos_select_column!]" ], "limit": [ @@ -132219,19 +133262,19 @@ export default { 38 ], "order_by": [ - 1574, + 1579, "[match_map_demos_order_by!]" ], "where": [ - 1560 + 1565 ] } ], "match_map_demos_aggregate": [ - 1549, + 1554, { "distinct_on": [ - 1577, + 1582, "[match_map_demos_select_column!]" ], "limit": [ @@ -132241,44 +133284,44 @@ export default { 38 ], "order_by": [ - 1574, + 1579, "[match_map_demos_order_by!]" ], "where": [ - 1560 + 1565 ] } ], "match_map_demos_by_pk": [ - 1548, + 1553, { "id": [ - 3818, + 3864, "uuid!" ] } ], "match_map_demos_stream": [ - 1548, + 1553, { "batch_size": [ 38, "Int!" ], "cursor": [ - 1587, + 1592, "[match_map_demos_stream_cursor_input]!" ], "where": [ - 1560 + 1565 ] } ], "match_map_rounds": [ - 1599, + 1604, { "distinct_on": [ - 1620, + 1625, "[match_map_rounds_select_column!]" ], "limit": [ @@ -132288,19 +133331,19 @@ export default { 38 ], "order_by": [ - 1618, + 1623, "[match_map_rounds_order_by!]" ], "where": [ - 1608 + 1613 ] } ], "match_map_rounds_aggregate": [ - 1600, + 1605, { "distinct_on": [ - 1620, + 1625, "[match_map_rounds_select_column!]" ], "limit": [ @@ -132310,44 +133353,44 @@ export default { 38 ], "order_by": [ - 1618, + 1623, "[match_map_rounds_order_by!]" ], "where": [ - 1608 + 1613 ] } ], "match_map_rounds_by_pk": [ - 1599, + 1604, { "id": [ - 3818, + 3864, "uuid!" ] } ], "match_map_rounds_stream": [ - 1599, + 1604, { "batch_size": [ 38, "Int!" ], "cursor": [ - 1628, + 1633, "[match_map_rounds_stream_cursor_input]!" ], "where": [ - 1608 + 1613 ] } ], "match_map_veto_picks": [ - 1640, + 1645, { "distinct_on": [ - 1658, + 1663, "[match_map_veto_picks_select_column!]" ], "limit": [ @@ -132357,19 +133400,19 @@ export default { 38 ], "order_by": [ - 1656, + 1661, "[match_map_veto_picks_order_by!]" ], "where": [ - 1647 + 1652 ] } ], "match_map_veto_picks_aggregate": [ - 1641, + 1646, { "distinct_on": [ - 1658, + 1663, "[match_map_veto_picks_select_column!]" ], "limit": [ @@ -132379,44 +133422,44 @@ export default { 38 ], "order_by": [ - 1656, + 1661, "[match_map_veto_picks_order_by!]" ], "where": [ - 1647 + 1652 ] } ], "match_map_veto_picks_by_pk": [ - 1640, + 1645, { "id": [ - 3818, + 3864, "uuid!" ] } ], "match_map_veto_picks_stream": [ - 1640, + 1645, { "batch_size": [ 38, "Int!" ], "cursor": [ - 1660, + 1665, "[match_map_veto_picks_stream_cursor_input]!" ], "where": [ - 1647 + 1652 ] } ], "match_maps": [ - 1664, + 1669, { "distinct_on": [ - 1686, + 1691, "[match_maps_select_column!]" ], "limit": [ @@ -132426,19 +133469,19 @@ export default { 38 ], "order_by": [ - 1684, + 1689, "[match_maps_order_by!]" ], "where": [ - 1673 + 1678 ] } ], "match_maps_aggregate": [ - 1665, + 1670, { "distinct_on": [ - 1686, + 1691, "[match_maps_select_column!]" ], "limit": [ @@ -132448,44 +133491,44 @@ export default { 38 ], "order_by": [ - 1684, + 1689, "[match_maps_order_by!]" ], "where": [ - 1673 + 1678 ] } ], "match_maps_by_pk": [ - 1664, + 1669, { "id": [ - 3818, + 3864, "uuid!" ] } ], "match_maps_stream": [ - 1664, + 1669, { "batch_size": [ 38, "Int!" ], "cursor": [ - 1694, + 1699, "[match_maps_stream_cursor_input]!" ], "where": [ - 1673 + 1678 ] } ], "match_options": [ - 1706, + 1711, { "distinct_on": [ - 1721, + 1726, "[match_options_select_column!]" ], "limit": [ @@ -132495,19 +133538,19 @@ export default { 38 ], "order_by": [ - 1719, + 1724, "[match_options_order_by!]" ], "where": [ - 1710 + 1715 ] } ], "match_options_aggregate": [ - 1707, + 1712, { "distinct_on": [ - 1721, + 1726, "[match_options_select_column!]" ], "limit": [ @@ -132517,44 +133560,44 @@ export default { 38 ], "order_by": [ - 1719, + 1724, "[match_options_order_by!]" ], "where": [ - 1710 + 1715 ] } ], "match_options_by_pk": [ - 1706, + 1711, { "id": [ - 3818, + 3864, "uuid!" ] } ], "match_options_stream": [ - 1706, + 1711, { "batch_size": [ 38, "Int!" ], "cursor": [ - 1726, + 1731, "[match_options_stream_cursor_input]!" ], "where": [ - 1710 + 1715 ] } ], "match_region_veto_picks": [ - 1734, + 1739, { "distinct_on": [ - 1752, + 1757, "[match_region_veto_picks_select_column!]" ], "limit": [ @@ -132564,19 +133607,19 @@ export default { 38 ], "order_by": [ - 1750, + 1755, "[match_region_veto_picks_order_by!]" ], "where": [ - 1741 + 1746 ] } ], "match_region_veto_picks_aggregate": [ - 1735, + 1740, { "distinct_on": [ - 1752, + 1757, "[match_region_veto_picks_select_column!]" ], "limit": [ @@ -132586,44 +133629,44 @@ export default { 38 ], "order_by": [ - 1750, + 1755, "[match_region_veto_picks_order_by!]" ], "where": [ - 1741 + 1746 ] } ], "match_region_veto_picks_by_pk": [ - 1734, + 1739, { "id": [ - 3818, + 3864, "uuid!" ] } ], "match_region_veto_picks_stream": [ - 1734, + 1739, { "batch_size": [ 38, "Int!" ], "cursor": [ - 1754, + 1759, "[match_region_veto_picks_stream_cursor_input]!" ], "where": [ - 1741 + 1746 ] } ], "match_streams": [ - 1758, + 1763, { "distinct_on": [ - 1786, + 1791, "[match_streams_select_column!]" ], "limit": [ @@ -132633,19 +133676,19 @@ export default { 38 ], "order_by": [ - 1783, + 1788, "[match_streams_order_by!]" ], "where": [ - 1770 + 1775 ] } ], "match_streams_aggregate": [ - 1759, + 1764, { "distinct_on": [ - 1786, + 1791, "[match_streams_select_column!]" ], "limit": [ @@ -132655,44 +133698,44 @@ export default { 38 ], "order_by": [ - 1783, + 1788, "[match_streams_order_by!]" ], "where": [ - 1770 + 1775 ] } ], "match_streams_by_pk": [ - 1758, + 1763, { "id": [ - 3818, + 3864, "uuid!" ] } ], "match_streams_stream": [ - 1758, + 1763, { "batch_size": [ 38, "Int!" ], "cursor": [ - 1796, + 1801, "[match_streams_stream_cursor_input]!" ], "where": [ - 1770 + 1775 ] } ], "match_type_cfgs": [ - 1808, + 1813, { "distinct_on": [ - 1820, + 1825, "[match_type_cfgs_select_column!]" ], "limit": [ @@ -132702,19 +133745,19 @@ export default { 38 ], "order_by": [ - 1818, + 1823, "[match_type_cfgs_order_by!]" ], "where": [ - 1811 + 1816 ] } ], "match_type_cfgs_aggregate": [ - 1809, + 1814, { "distinct_on": [ - 1820, + 1825, "[match_type_cfgs_select_column!]" ], "limit": [ @@ -132724,44 +133767,44 @@ export default { 38 ], "order_by": [ - 1818, + 1823, "[match_type_cfgs_order_by!]" ], "where": [ - 1811 + 1816 ] } ], "match_type_cfgs_by_pk": [ - 1808, + 1813, { "type": [ - 539, + 544, "e_game_cfg_types_enum!" ] } ], "match_type_cfgs_stream": [ - 1808, + 1813, { "batch_size": [ 38, "Int!" ], "cursor": [ - 1822, + 1827, "[match_type_cfgs_stream_cursor_input]!" ], "where": [ - 1811 + 1816 ] } ], "matches": [ - 1826, + 1831, { "distinct_on": [ - 1848, + 1853, "[matches_select_column!]" ], "limit": [ @@ -132771,19 +133814,19 @@ export default { 38 ], "order_by": [ - 1846, + 1851, "[matches_order_by!]" ], "where": [ - 1835 + 1840 ] } ], "matches_aggregate": [ - 1827, + 1832, { "distinct_on": [ - 1848, + 1853, "[matches_select_column!]" ], "limit": [ @@ -132793,44 +133836,44 @@ export default { 38 ], "order_by": [ - 1846, + 1851, "[matches_order_by!]" ], "where": [ - 1835 + 1840 ] } ], "matches_by_pk": [ - 1826, + 1831, { "id": [ - 3818, + 3864, "uuid!" ] } ], "matches_stream": [ - 1826, + 1831, { "batch_size": [ 38, "Int!" ], "cursor": [ - 1856, + 1861, "[matches_stream_cursor_input]!" ], "where": [ - 1835 + 1840 ] } ], "migration_hashes_hashes": [ - 1868, + 1873, { "distinct_on": [ - 1880, + 1885, "[migration_hashes_hashes_select_column!]" ], "limit": [ @@ -132840,19 +133883,19 @@ export default { 38 ], "order_by": [ - 1878, + 1883, "[migration_hashes_hashes_order_by!]" ], "where": [ - 1871 + 1876 ] } ], "migration_hashes_hashes_aggregate": [ - 1869, + 1874, { "distinct_on": [ - 1880, + 1885, "[migration_hashes_hashes_select_column!]" ], "limit": [ @@ -132862,44 +133905,44 @@ export default { 38 ], "order_by": [ - 1878, + 1883, "[migration_hashes_hashes_order_by!]" ], "where": [ - 1871 + 1876 ] } ], "migration_hashes_hashes_by_pk": [ - 1868, + 1873, { "name": [ - 70, + 75, "String!" ] } ], "migration_hashes_hashes_stream": [ - 1868, + 1873, { "batch_size": [ 38, "Int!" ], "cursor": [ - 1882, + 1887, "[migration_hashes_hashes_stream_cursor_input]!" ], "where": [ - 1871 + 1876 ] } ], "my_friends": [ - 1886, + 1891, { "distinct_on": [ - 1911, + 1916, "[my_friends_select_column!]" ], "limit": [ @@ -132909,19 +133952,19 @@ export default { 38 ], "order_by": [ - 1909, + 1914, "[my_friends_order_by!]" ], "where": [ - 1898 + 1903 ] } ], "my_friends_aggregate": [ - 1887, + 1892, { "distinct_on": [ - 1911, + 1916, "[my_friends_select_column!]" ], "limit": [ @@ -132931,35 +133974,35 @@ export default { 38 ], "order_by": [ - 1909, + 1914, "[my_friends_order_by!]" ], "where": [ - 1898 + 1903 ] } ], "my_friends_stream": [ - 1886, + 1891, { "batch_size": [ 38, "Int!" ], "cursor": [ - 1921, + 1926, "[my_friends_stream_cursor_input]!" ], "where": [ - 1898 + 1903 ] } ], "news_articles": [ - 1932, + 1937, { "distinct_on": [ - 1946, + 1951, "[news_articles_select_column!]" ], "limit": [ @@ -132969,19 +134012,19 @@ export default { 38 ], "order_by": [ - 1944, + 1949, "[news_articles_order_by!]" ], "where": [ - 1936 + 1941 ] } ], "news_articles_aggregate": [ - 1933, + 1938, { "distinct_on": [ - 1946, + 1951, "[news_articles_select_column!]" ], "limit": [ @@ -132991,44 +134034,44 @@ export default { 38 ], "order_by": [ - 1944, + 1949, "[news_articles_order_by!]" ], "where": [ - 1936 + 1941 ] } ], "news_articles_by_pk": [ - 1932, + 1937, { "id": [ - 3818, + 3864, "uuid!" ] } ], "news_articles_stream": [ - 1932, + 1937, { "batch_size": [ 38, "Int!" ], "cursor": [ - 1951, + 1956, "[news_articles_stream_cursor_input]!" ], "where": [ - 1936 + 1941 ] } ], "notifications": [ - 1959, + 1964, { "distinct_on": [ - 1987, + 1992, "[notifications_select_column!]" ], "limit": [ @@ -133038,19 +134081,19 @@ export default { 38 ], "order_by": [ - 1984, + 1989, "[notifications_order_by!]" ], "where": [ - 1971 + 1976 ] } ], "notifications_aggregate": [ - 1960, + 1965, { "distinct_on": [ - 1987, + 1992, "[notifications_select_column!]" ], "limit": [ @@ -133060,44 +134103,44 @@ export default { 38 ], "order_by": [ - 1984, + 1989, "[notifications_order_by!]" ], "where": [ - 1971 + 1976 ] } ], "notifications_by_pk": [ - 1959, + 1964, { "id": [ - 3818, + 3864, "uuid!" ] } ], "notifications_stream": [ - 1959, + 1964, { "batch_size": [ 38, "Int!" ], "cursor": [ - 1997, + 2002, "[notifications_stream_cursor_input]!" ], "where": [ - 1971 + 1976 ] } ], "pending_match_import_players": [ - 2012, + 2017, { "distinct_on": [ - 2033, + 2038, "[pending_match_import_players_select_column!]" ], "limit": [ @@ -133107,19 +134150,19 @@ export default { 38 ], "order_by": [ - 2031, + 2036, "[pending_match_import_players_order_by!]" ], "where": [ - 2021 + 2026 ] } ], "pending_match_import_players_aggregate": [ - 2013, + 2018, { "distinct_on": [ - 2033, + 2038, "[pending_match_import_players_select_column!]" ], "limit": [ @@ -133129,48 +134172,48 @@ export default { 38 ], "order_by": [ - 2031, + 2036, "[pending_match_import_players_order_by!]" ], "where": [ - 2021 + 2026 ] } ], "pending_match_import_players_by_pk": [ - 2012, + 2017, { "steam_id": [ - 169, + 174, "bigint!" ], "valve_match_id": [ - 2009, + 2014, "numeric!" ] } ], "pending_match_import_players_stream": [ - 2012, + 2017, { "batch_size": [ 38, "Int!" ], "cursor": [ - 2041, + 2046, "[pending_match_import_players_stream_cursor_input]!" ], "where": [ - 2021 + 2026 ] } ], "pending_match_imports": [ - 2053, + 2058, { "distinct_on": [ - 2068, + 2073, "[pending_match_imports_select_column!]" ], "limit": [ @@ -133180,19 +134223,19 @@ export default { 38 ], "order_by": [ - 2066, + 2071, "[pending_match_imports_order_by!]" ], "where": [ - 2057 + 2062 ] } ], "pending_match_imports_aggregate": [ - 2054, + 2059, { "distinct_on": [ - 2068, + 2073, "[pending_match_imports_select_column!]" ], "limit": [ @@ -133202,44 +134245,44 @@ export default { 38 ], "order_by": [ - 2066, + 2071, "[pending_match_imports_order_by!]" ], "where": [ - 2057 + 2062 ] } ], "pending_match_imports_by_pk": [ - 2053, + 2058, { "valve_match_id": [ - 2009, + 2014, "numeric!" ] } ], "pending_match_imports_stream": [ - 2053, + 2058, { "batch_size": [ 38, "Int!" ], "cursor": [ - 2073, + 2078, "[pending_match_imports_stream_cursor_input]!" ], "where": [ - 2057 + 2062 ] } ], "player_aim_stats_demo": [ - 2081, + 2086, { "distinct_on": [ - 2095, + 2100, "[player_aim_stats_demo_select_column!]" ], "limit": [ @@ -133249,19 +134292,19 @@ export default { 38 ], "order_by": [ - 2093, + 2098, "[player_aim_stats_demo_order_by!]" ], "where": [ - 2085 + 2090 ] } ], "player_aim_stats_demo_aggregate": [ - 2082, + 2087, { "distinct_on": [ - 2095, + 2100, "[player_aim_stats_demo_select_column!]" ], "limit": [ @@ -133271,48 +134314,48 @@ export default { 38 ], "order_by": [ - 2093, + 2098, "[player_aim_stats_demo_order_by!]" ], "where": [ - 2085 + 2090 ] } ], "player_aim_stats_demo_by_pk": [ - 2081, + 2086, { "attacker_steam_id": [ - 169, + 174, "bigint!" ], "match_map_id": [ - 3818, + 3864, "uuid!" ] } ], "player_aim_stats_demo_stream": [ - 2081, + 2086, { "batch_size": [ 38, "Int!" ], "cursor": [ - 2100, + 2105, "[player_aim_stats_demo_stream_cursor_input]!" ], "where": [ - 2085 + 2090 ] } ], "player_aim_weapon_stats": [ - 2108, + 2113, { "distinct_on": [ - 2129, + 2134, "[player_aim_weapon_stats_select_column!]" ], "limit": [ @@ -133322,19 +134365,19 @@ export default { 38 ], "order_by": [ - 2127, + 2132, "[player_aim_weapon_stats_order_by!]" ], "where": [ - 2117 + 2122 ] } ], "player_aim_weapon_stats_aggregate": [ - 2109, + 2114, { "distinct_on": [ - 2129, + 2134, "[player_aim_weapon_stats_select_column!]" ], "limit": [ @@ -133344,52 +134387,52 @@ export default { 38 ], "order_by": [ - 2127, + 2132, "[player_aim_weapon_stats_order_by!]" ], "where": [ - 2117 + 2122 ] } ], "player_aim_weapon_stats_by_pk": [ - 2108, + 2113, { "match_map_id": [ - 3818, + 3864, "uuid!" ], "steam_id": [ - 169, + 174, "bigint!" ], "weapon_class": [ - 70, + 75, "String!" ] } ], "player_aim_weapon_stats_stream": [ - 2108, + 2113, { "batch_size": [ 38, "Int!" ], "cursor": [ - 2137, + 2142, "[player_aim_weapon_stats_stream_cursor_input]!" ], "where": [ - 2117 + 2122 ] } ], "player_assists": [ - 2149, + 2154, { "distinct_on": [ - 2172, + 2177, "[player_assists_select_column!]" ], "limit": [ @@ -133399,19 +134442,19 @@ export default { 38 ], "order_by": [ - 2170, + 2175, "[player_assists_order_by!]" ], "where": [ - 2160 + 2165 ] } ], "player_assists_aggregate": [ - 2150, + 2155, { "distinct_on": [ - 2172, + 2177, "[player_assists_select_column!]" ], "limit": [ @@ -133421,56 +134464,56 @@ export default { 38 ], "order_by": [ - 2170, + 2175, "[player_assists_order_by!]" ], "where": [ - 2160 + 2165 ] } ], "player_assists_by_pk": [ - 2149, + 2154, { "attacked_steam_id": [ - 169, + 174, "bigint!" ], "attacker_steam_id": [ - 169, + 174, "bigint!" ], "match_map_id": [ - 3818, + 3864, "uuid!" ], "time": [ - 3421, + 3467, "timestamptz!" ] } ], "player_assists_stream": [ - 2149, + 2154, { "batch_size": [ 38, "Int!" ], "cursor": [ - 2182, + 2187, "[player_assists_stream_cursor_input]!" ], "where": [ - 2160 + 2165 ] } ], "player_career_stats_v": [ - 2194, + 2199, { "distinct_on": [ - 2202, + 2207, "[player_career_stats_v_select_column!]" ], "limit": [ @@ -133480,19 +134523,19 @@ export default { 38 ], "order_by": [ - 2201, + 2206, "[player_career_stats_v_order_by!]" ], "where": [ - 2198 + 2203 ] } ], "player_career_stats_v_aggregate": [ - 2195, + 2200, { "distinct_on": [ - 2202, + 2207, "[player_career_stats_v_select_column!]" ], "limit": [ @@ -133502,35 +134545,35 @@ export default { 38 ], "order_by": [ - 2201, + 2206, "[player_career_stats_v_order_by!]" ], "where": [ - 2198 + 2203 ] } ], "player_career_stats_v_stream": [ - 2194, + 2199, { "batch_size": [ 38, "Int!" ], "cursor": [ - 2206, + 2211, "[player_career_stats_v_stream_cursor_input]!" ], "where": [ - 2198 + 2203 ] } ], "player_damages": [ - 2212, + 2217, { "distinct_on": [ - 2233, + 2238, "[player_damages_select_column!]" ], "limit": [ @@ -133540,19 +134583,19 @@ export default { 38 ], "order_by": [ - 2231, + 2236, "[player_damages_order_by!]" ], "where": [ - 2221 + 2226 ] } ], "player_damages_aggregate": [ - 2213, + 2218, { "distinct_on": [ - 2233, + 2238, "[player_damages_select_column!]" ], "limit": [ @@ -133562,52 +134605,52 @@ export default { 38 ], "order_by": [ - 2231, + 2236, "[player_damages_order_by!]" ], "where": [ - 2221 + 2226 ] } ], "player_damages_by_pk": [ - 2212, + 2217, { "id": [ - 3818, + 3864, "uuid!" ], "match_map_id": [ - 3818, + 3864, "uuid!" ], "time": [ - 3421, + 3467, "timestamptz!" ] } ], "player_damages_stream": [ - 2212, + 2217, { "batch_size": [ 38, "Int!" ], "cursor": [ - 2241, + 2246, "[player_damages_stream_cursor_input]!" ], "where": [ - 2221 + 2226 ] } ], "player_elo": [ - 2253, + 2258, { "distinct_on": [ - 2267, + 2272, "[player_elo_select_column!]" ], "limit": [ @@ -133617,19 +134660,19 @@ export default { 38 ], "order_by": [ - 2265, + 2270, "[player_elo_order_by!]" ], "where": [ - 2257 + 2262 ] } ], "player_elo_aggregate": [ - 2254, + 2259, { "distinct_on": [ - 2267, + 2272, "[player_elo_select_column!]" ], "limit": [ @@ -133639,52 +134682,52 @@ export default { 38 ], "order_by": [ - 2265, + 2270, "[player_elo_order_by!]" ], "where": [ - 2257 + 2262 ] } ], "player_elo_by_pk": [ - 2253, + 2258, { "match_id": [ - 3818, + 3864, "uuid!" ], "steam_id": [ - 169, + 174, "bigint!" ], "type": [ - 724, + 729, "e_match_types_enum!" ] } ], "player_elo_stream": [ - 2253, + 2258, { "batch_size": [ 38, "Int!" ], "cursor": [ - 2272, + 2277, "[player_elo_stream_cursor_input]!" ], "where": [ - 2257 + 2262 ] } ], "player_faceit_rank_history": [ - 2280, + 2285, { "distinct_on": [ - 2301, + 2306, "[player_faceit_rank_history_select_column!]" ], "limit": [ @@ -133694,19 +134737,19 @@ export default { 38 ], "order_by": [ - 2299, + 2304, "[player_faceit_rank_history_order_by!]" ], "where": [ - 2289 + 2294 ] } ], "player_faceit_rank_history_aggregate": [ - 2281, + 2286, { "distinct_on": [ - 2301, + 2306, "[player_faceit_rank_history_select_column!]" ], "limit": [ @@ -133716,44 +134759,44 @@ export default { 38 ], "order_by": [ - 2299, + 2304, "[player_faceit_rank_history_order_by!]" ], "where": [ - 2289 + 2294 ] } ], "player_faceit_rank_history_by_pk": [ - 2280, + 2285, { "id": [ - 3818, + 3864, "uuid!" ] } ], "player_faceit_rank_history_stream": [ - 2280, + 2285, { "batch_size": [ 38, "Int!" ], "cursor": [ - 2309, + 2314, "[player_faceit_rank_history_stream_cursor_input]!" ], "where": [ - 2289 + 2294 ] } ], "player_flashes": [ - 2321, + 2326, { "distinct_on": [ - 2344, + 2349, "[player_flashes_select_column!]" ], "limit": [ @@ -133763,19 +134806,19 @@ export default { 38 ], "order_by": [ - 2342, + 2347, "[player_flashes_order_by!]" ], "where": [ - 2332 + 2337 ] } ], "player_flashes_aggregate": [ - 2322, + 2327, { "distinct_on": [ - 2344, + 2349, "[player_flashes_select_column!]" ], "limit": [ @@ -133785,56 +134828,56 @@ export default { 38 ], "order_by": [ - 2342, + 2347, "[player_flashes_order_by!]" ], "where": [ - 2332 + 2337 ] } ], "player_flashes_by_pk": [ - 2321, + 2326, { "attacked_steam_id": [ - 169, + 174, "bigint!" ], "attacker_steam_id": [ - 169, + 174, "bigint!" ], "match_map_id": [ - 3818, + 3864, "uuid!" ], "time": [ - 3421, + 3467, "timestamptz!" ] } ], "player_flashes_stream": [ - 2321, + 2326, { "batch_size": [ 38, "Int!" ], "cursor": [ - 2354, + 2359, "[player_flashes_stream_cursor_input]!" ], "where": [ - 2332 + 2337 ] } ], "player_kills": [ - 2366, + 2371, { "distinct_on": [ - 2430, + 2435, "[player_kills_select_column!]" ], "limit": [ @@ -133844,19 +134887,19 @@ export default { 38 ], "order_by": [ - 2428, + 2433, "[player_kills_order_by!]" ], "where": [ - 2377 + 2382 ] } ], "player_kills_aggregate": [ - 2367, + 2372, { "distinct_on": [ - 2430, + 2435, "[player_kills_select_column!]" ], "limit": [ @@ -133866,40 +134909,40 @@ export default { 38 ], "order_by": [ - 2428, + 2433, "[player_kills_order_by!]" ], "where": [ - 2377 + 2382 ] } ], "player_kills_by_pk": [ - 2366, + 2371, { "attacked_steam_id": [ - 169, + 174, "bigint!" ], "attacker_steam_id": [ - 169, + 174, "bigint!" ], "match_map_id": [ - 3818, + 3864, "uuid!" ], "time": [ - 3421, + 3467, "timestamptz!" ] } ], "player_kills_by_weapon": [ - 2378, + 2383, { "distinct_on": [ - 2399, + 2404, "[player_kills_by_weapon_select_column!]" ], "limit": [ @@ -133909,19 +134952,19 @@ export default { 38 ], "order_by": [ - 2397, + 2402, "[player_kills_by_weapon_order_by!]" ], "where": [ - 2387 + 2392 ] } ], "player_kills_by_weapon_aggregate": [ - 2379, + 2384, { "distinct_on": [ - 2399, + 2404, "[player_kills_by_weapon_select_column!]" ], "limit": [ @@ -133931,64 +134974,64 @@ export default { 38 ], "order_by": [ - 2397, + 2402, "[player_kills_by_weapon_order_by!]" ], "where": [ - 2387 + 2392 ] } ], "player_kills_by_weapon_by_pk": [ - 2378, + 2383, { "player_steam_id": [ - 169, + 174, "bigint!" ], "with": [ - 70, + 75, "String!" ] } ], "player_kills_by_weapon_stream": [ - 2378, + 2383, { "batch_size": [ 38, "Int!" ], "cursor": [ - 2407, + 2412, "[player_kills_by_weapon_stream_cursor_input]!" ], "where": [ - 2387 + 2392 ] } ], "player_kills_stream": [ - 2366, + 2371, { "batch_size": [ 38, "Int!" ], "cursor": [ - 2440, + 2445, "[player_kills_stream_cursor_input]!" ], "where": [ - 2377 + 2382 ] } ], "player_leaderboard_rank": [ - 2452, + 2457, { "distinct_on": [ - 2463, + 2468, "[player_leaderboard_rank_select_column!]" ], "limit": [ @@ -133998,19 +135041,19 @@ export default { 38 ], "order_by": [ - 2462, + 2467, "[player_leaderboard_rank_order_by!]" ], "where": [ - 2456 + 2461 ] } ], "player_leaderboard_rank_aggregate": [ - 2453, + 2458, { "distinct_on": [ - 2463, + 2468, "[player_leaderboard_rank_select_column!]" ], "limit": [ @@ -134020,35 +135063,35 @@ export default { 38 ], "order_by": [ - 2462, + 2467, "[player_leaderboard_rank_order_by!]" ], "where": [ - 2456 + 2461 ] } ], "player_leaderboard_rank_stream": [ - 2452, + 2457, { "batch_size": [ 38, "Int!" ], "cursor": [ - 2468, + 2473, "[player_leaderboard_rank_stream_cursor_input]!" ], "where": [ - 2456 + 2461 ] } ], "player_match_map_stats": [ - 2475, + 2480, { "distinct_on": [ - 2496, + 2501, "[player_match_map_stats_select_column!]" ], "limit": [ @@ -134058,19 +135101,19 @@ export default { 38 ], "order_by": [ - 2494, + 2499, "[player_match_map_stats_order_by!]" ], "where": [ - 2484 + 2489 ] } ], "player_match_map_stats_aggregate": [ - 2476, + 2481, { "distinct_on": [ - 2496, + 2501, "[player_match_map_stats_select_column!]" ], "limit": [ @@ -134080,48 +135123,48 @@ export default { 38 ], "order_by": [ - 2494, + 2499, "[player_match_map_stats_order_by!]" ], "where": [ - 2484 + 2489 ] } ], "player_match_map_stats_by_pk": [ - 2475, + 2480, { "match_map_id": [ - 3818, + 3864, "uuid!" ], "steam_id": [ - 169, + 174, "bigint!" ] } ], "player_match_map_stats_stream": [ - 2475, + 2480, { "batch_size": [ 38, "Int!" ], "cursor": [ - 2504, + 2509, "[player_match_map_stats_stream_cursor_input]!" ], "where": [ - 2484 + 2489 ] } ], "player_match_performance_v": [ - 2516, + 2521, { "distinct_on": [ - 2524, + 2529, "[player_match_performance_v_select_column!]" ], "limit": [ @@ -134131,19 +135174,19 @@ export default { 38 ], "order_by": [ - 2523, + 2528, "[player_match_performance_v_order_by!]" ], "where": [ - 2520 + 2525 ] } ], "player_match_performance_v_aggregate": [ - 2517, + 2522, { "distinct_on": [ - 2524, + 2529, "[player_match_performance_v_select_column!]" ], "limit": [ @@ -134153,35 +135196,35 @@ export default { 38 ], "order_by": [ - 2523, + 2528, "[player_match_performance_v_order_by!]" ], "where": [ - 2520 + 2525 ] } ], "player_match_performance_v_stream": [ - 2516, + 2521, { "batch_size": [ 38, "Int!" ], "cursor": [ - 2528, + 2533, "[player_match_performance_v_stream_cursor_input]!" ], "where": [ - 2520 + 2525 ] } ], "player_match_stats_v": [ - 2534, + 2539, { "distinct_on": [ - 2550, + 2555, "[player_match_stats_v_select_column!]" ], "limit": [ @@ -134191,19 +135234,19 @@ export default { 38 ], "order_by": [ - 2549, + 2554, "[player_match_stats_v_order_by!]" ], "where": [ - 2543 + 2548 ] } ], "player_match_stats_v_aggregate": [ - 2535, + 2540, { "distinct_on": [ - 2550, + 2555, "[player_match_stats_v_select_column!]" ], "limit": [ @@ -134213,35 +135256,35 @@ export default { 38 ], "order_by": [ - 2549, + 2554, "[player_match_stats_v_order_by!]" ], "where": [ - 2543 + 2548 ] } ], "player_match_stats_v_stream": [ - 2534, + 2539, { "batch_size": [ 38, "Int!" ], "cursor": [ - 2557, + 2562, "[player_match_stats_v_stream_cursor_input]!" ], "where": [ - 2543 + 2548 ] } ], "player_objectives": [ - 2567, + 2572, { "distinct_on": [ - 2588, + 2593, "[player_objectives_select_column!]" ], "limit": [ @@ -134251,19 +135294,19 @@ export default { 38 ], "order_by": [ - 2586, + 2591, "[player_objectives_order_by!]" ], "where": [ - 2576 + 2581 ] } ], "player_objectives_aggregate": [ - 2568, + 2573, { "distinct_on": [ - 2588, + 2593, "[player_objectives_select_column!]" ], "limit": [ @@ -134273,52 +135316,52 @@ export default { 38 ], "order_by": [ - 2586, + 2591, "[player_objectives_order_by!]" ], "where": [ - 2576 + 2581 ] } ], "player_objectives_by_pk": [ - 2567, + 2572, { "match_map_id": [ - 3818, + 3864, "uuid!" ], "player_steam_id": [ - 169, + 174, "bigint!" ], "time": [ - 3421, + 3467, "timestamptz!" ] } ], "player_objectives_stream": [ - 2567, + 2572, { "batch_size": [ 38, "Int!" ], "cursor": [ - 2596, + 2601, "[player_objectives_stream_cursor_input]!" ], "where": [ - 2576 + 2581 ] } ], "player_performance_v": [ - 2608, + 2613, { "distinct_on": [ - 2616, + 2621, "[player_performance_v_select_column!]" ], "limit": [ @@ -134328,19 +135371,19 @@ export default { 38 ], "order_by": [ - 2615, + 2620, "[player_performance_v_order_by!]" ], "where": [ - 2612 + 2617 ] } ], "player_performance_v_aggregate": [ - 2609, + 2614, { "distinct_on": [ - 2616, + 2621, "[player_performance_v_select_column!]" ], "limit": [ @@ -134350,35 +135393,35 @@ export default { 38 ], "order_by": [ - 2615, + 2620, "[player_performance_v_order_by!]" ], "where": [ - 2612 + 2617 ] } ], "player_performance_v_stream": [ - 2608, + 2613, { "batch_size": [ 38, "Int!" ], "cursor": [ - 2620, + 2625, "[player_performance_v_stream_cursor_input]!" ], "where": [ - 2612 + 2617 ] } ], "player_premier_rank_history": [ - 2626, + 2631, { "distinct_on": [ - 2647, + 2652, "[player_premier_rank_history_select_column!]" ], "limit": [ @@ -134388,19 +135431,19 @@ export default { 38 ], "order_by": [ - 2645, + 2650, "[player_premier_rank_history_order_by!]" ], "where": [ - 2635 + 2640 ] } ], "player_premier_rank_history_aggregate": [ - 2627, + 2632, { "distinct_on": [ - 2647, + 2652, "[player_premier_rank_history_select_column!]" ], "limit": [ @@ -134410,44 +135453,44 @@ export default { 38 ], "order_by": [ - 2645, + 2650, "[player_premier_rank_history_order_by!]" ], "where": [ - 2635 + 2640 ] } ], "player_premier_rank_history_by_pk": [ - 2626, + 2631, { "id": [ - 3818, + 3864, "uuid!" ] } ], "player_premier_rank_history_stream": [ - 2626, + 2631, { "batch_size": [ 38, "Int!" ], "cursor": [ - 2655, + 2660, "[player_premier_rank_history_stream_cursor_input]!" ], "where": [ - 2635 + 2640 ] } ], "player_sanctions": [ - 2667, + 2672, { "distinct_on": [ - 2688, + 2693, "[player_sanctions_select_column!]" ], "limit": [ @@ -134457,19 +135500,19 @@ export default { 38 ], "order_by": [ - 2686, + 2691, "[player_sanctions_order_by!]" ], "where": [ - 2676 + 2681 ] } ], "player_sanctions_aggregate": [ - 2668, + 2673, { "distinct_on": [ - 2688, + 2693, "[player_sanctions_select_column!]" ], "limit": [ @@ -134479,48 +135522,48 @@ export default { 38 ], "order_by": [ - 2686, + 2691, "[player_sanctions_order_by!]" ], "where": [ - 2676 + 2681 ] } ], "player_sanctions_by_pk": [ - 2667, + 2672, { "created_at": [ - 3421, + 3467, "timestamptz!" ], "id": [ - 3818, + 3864, "uuid!" ] } ], "player_sanctions_stream": [ - 2667, + 2672, { "batch_size": [ 38, "Int!" ], "cursor": [ - 2696, + 2701, "[player_sanctions_stream_cursor_input]!" ], "where": [ - 2676 + 2681 ] } ], "player_stats": [ - 2708, + 2713, { "distinct_on": [ - 2723, + 2728, "[player_stats_select_column!]" ], "limit": [ @@ -134530,19 +135573,19 @@ export default { 38 ], "order_by": [ - 2721, + 2726, "[player_stats_order_by!]" ], "where": [ - 2712 + 2717 ] } ], "player_stats_aggregate": [ - 2709, + 2714, { "distinct_on": [ - 2723, + 2728, "[player_stats_select_column!]" ], "limit": [ @@ -134552,44 +135595,113 @@ export default { 38 ], "order_by": [ - 2721, + 2726, "[player_stats_order_by!]" ], "where": [ - 2712 + 2717 ] } ], "player_stats_by_pk": [ - 2708, + 2713, { "player_steam_id": [ - 169, + 174, "bigint!" ] } ], "player_stats_stream": [ - 2708, + 2713, { "batch_size": [ 38, "Int!" ], "cursor": [ - 2728, + 2733, "[player_stats_stream_cursor_input]!" ], "where": [ - 2712 + 2717 + ] + } + ], + "player_steam_bot_friend": [ + 2741, + { + "distinct_on": [ + 2760, + "[player_steam_bot_friend_select_column!]" + ], + "limit": [ + 38 + ], + "offset": [ + 38 + ], + "order_by": [ + 2757, + "[player_steam_bot_friend_order_by!]" + ], + "where": [ + 2746 + ] + } + ], + "player_steam_bot_friend_aggregate": [ + 2742, + { + "distinct_on": [ + 2760, + "[player_steam_bot_friend_select_column!]" + ], + "limit": [ + 38 + ], + "offset": [ + 38 + ], + "order_by": [ + 2757, + "[player_steam_bot_friend_order_by!]" + ], + "where": [ + 2746 + ] + } + ], + "player_steam_bot_friend_by_pk": [ + 2741, + { + "steam_id": [ + 174, + "bigint!" + ] + } + ], + "player_steam_bot_friend_stream": [ + 2741, + { + "batch_size": [ + 38, + "Int!" + ], + "cursor": [ + 2765, + "[player_steam_bot_friend_stream_cursor_input]!" + ], + "where": [ + 2746 ] } ], "player_steam_match_auth": [ - 2736, + 2773, { "distinct_on": [ - 2750, + 2787, "[player_steam_match_auth_select_column!]" ], "limit": [ @@ -134599,19 +135711,19 @@ export default { 38 ], "order_by": [ - 2748, + 2785, "[player_steam_match_auth_order_by!]" ], "where": [ - 2740 + 2777 ] } ], "player_steam_match_auth_aggregate": [ - 2737, + 2774, { "distinct_on": [ - 2750, + 2787, "[player_steam_match_auth_select_column!]" ], "limit": [ @@ -134621,44 +135733,44 @@ export default { 38 ], "order_by": [ - 2748, + 2785, "[player_steam_match_auth_order_by!]" ], "where": [ - 2740 + 2777 ] } ], "player_steam_match_auth_by_pk": [ - 2736, + 2773, { "steam_id": [ - 169, + 174, "bigint!" ] } ], "player_steam_match_auth_stream": [ - 2736, + 2773, { "batch_size": [ 38, "Int!" ], "cursor": [ - 2755, + 2792, "[player_steam_match_auth_stream_cursor_input]!" ], "where": [ - 2740 + 2777 ] } ], "player_unused_utility": [ - 2763, + 2800, { "distinct_on": [ - 2784, + 2821, "[player_unused_utility_select_column!]" ], "limit": [ @@ -134668,19 +135780,19 @@ export default { 38 ], "order_by": [ - 2782, + 2819, "[player_unused_utility_order_by!]" ], "where": [ - 2772 + 2809 ] } ], "player_unused_utility_aggregate": [ - 2764, + 2801, { "distinct_on": [ - 2784, + 2821, "[player_unused_utility_select_column!]" ], "limit": [ @@ -134690,48 +135802,48 @@ export default { 38 ], "order_by": [ - 2782, + 2819, "[player_unused_utility_order_by!]" ], "where": [ - 2772 + 2809 ] } ], "player_unused_utility_by_pk": [ - 2763, + 2800, { "match_map_id": [ - 3818, + 3864, "uuid!" ], "player_steam_id": [ - 169, + 174, "bigint!" ] } ], "player_unused_utility_stream": [ - 2763, + 2800, { "batch_size": [ 38, "Int!" ], "cursor": [ - 2792, + 2829, "[player_unused_utility_stream_cursor_input]!" ], "where": [ - 2772 + 2809 ] } ], "player_utility": [ - 2804, + 2841, { "distinct_on": [ - 2825, + 2862, "[player_utility_select_column!]" ], "limit": [ @@ -134741,19 +135853,19 @@ export default { 38 ], "order_by": [ - 2823, + 2860, "[player_utility_order_by!]" ], "where": [ - 2813 + 2850 ] } ], "player_utility_aggregate": [ - 2805, + 2842, { "distinct_on": [ - 2825, + 2862, "[player_utility_select_column!]" ], "limit": [ @@ -134763,52 +135875,52 @@ export default { 38 ], "order_by": [ - 2823, + 2860, "[player_utility_order_by!]" ], "where": [ - 2813 + 2850 ] } ], "player_utility_by_pk": [ - 2804, + 2841, { "attacker_steam_id": [ - 169, + 174, "bigint!" ], "match_map_id": [ - 3818, + 3864, "uuid!" ], "time": [ - 3421, + 3467, "timestamptz!" ] } ], "player_utility_stream": [ - 2804, + 2841, { "batch_size": [ 38, "Int!" ], "cursor": [ - 2833, + 2870, "[player_utility_stream_cursor_input]!" ], "where": [ - 2813 + 2850 ] } ], "player_weapon_stats_v": [ - 2845, + 2882, { "distinct_on": [ - 2861, + 2898, "[player_weapon_stats_v_select_column!]" ], "limit": [ @@ -134818,19 +135930,19 @@ export default { 38 ], "order_by": [ - 2860, + 2897, "[player_weapon_stats_v_order_by!]" ], "where": [ - 2854 + 2891 ] } ], "player_weapon_stats_v_aggregate": [ - 2846, + 2883, { "distinct_on": [ - 2861, + 2898, "[player_weapon_stats_v_select_column!]" ], "limit": [ @@ -134840,35 +135952,35 @@ export default { 38 ], "order_by": [ - 2860, + 2897, "[player_weapon_stats_v_order_by!]" ], "where": [ - 2854 + 2891 ] } ], "player_weapon_stats_v_stream": [ - 2845, + 2882, { "batch_size": [ 38, "Int!" ], "cursor": [ - 2868, + 2905, "[player_weapon_stats_v_stream_cursor_input]!" ], "where": [ - 2854 + 2891 ] } ], "players": [ - 2878, + 2915, { "distinct_on": [ - 2893, + 2930, "[players_select_column!]" ], "limit": [ @@ -134878,19 +135990,19 @@ export default { 38 ], "order_by": [ - 2891, + 2928, "[players_order_by!]" ], "where": [ - 2882 + 2919 ] } ], "players_aggregate": [ - 2879, + 2916, { "distinct_on": [ - 2893, + 2930, "[players_select_column!]" ], "limit": [ @@ -134900,44 +136012,44 @@ export default { 38 ], "order_by": [ - 2891, + 2928, "[players_order_by!]" ], "where": [ - 2882 + 2919 ] } ], "players_by_pk": [ - 2878, + 2915, { "steam_id": [ - 169, + 174, "bigint!" ] } ], "players_stream": [ - 2878, + 2915, { "batch_size": [ 38, "Int!" ], "cursor": [ - 2898, + 2935, "[players_stream_cursor_input]!" ], "where": [ - 2882 + 2919 ] } ], "plugin_versions": [ - 2906, + 2943, { "distinct_on": [ - 2920, + 2957, "[plugin_versions_select_column!]" ], "limit": [ @@ -134947,19 +136059,19 @@ export default { 38 ], "order_by": [ - 2918, + 2955, "[plugin_versions_order_by!]" ], "where": [ - 2910 + 2947 ] } ], "plugin_versions_aggregate": [ - 2907, + 2944, { "distinct_on": [ - 2920, + 2957, "[plugin_versions_select_column!]" ], "limit": [ @@ -134969,44 +136081,44 @@ export default { 38 ], "order_by": [ - 2918, + 2955, "[plugin_versions_order_by!]" ], "where": [ - 2910 + 2947 ] } ], "plugin_versions_by_pk": [ - 2906, + 2943, { "version": [ - 70, + 75, "String!" ] } ], "plugin_versions_stream": [ - 2906, + 2943, { "batch_size": [ 38, "Int!" ], "cursor": [ - 2925, + 2962, "[plugin_versions_stream_cursor_input]!" ], "where": [ - 2910 + 2947 ] } ], "server_regions": [ - 2934, + 2971, { "distinct_on": [ - 2948, + 2985, "[server_regions_select_column!]" ], "limit": [ @@ -135016,19 +136128,19 @@ export default { 38 ], "order_by": [ - 2946, + 2983, "[server_regions_order_by!]" ], "where": [ - 2938 + 2975 ] } ], "server_regions_aggregate": [ - 2935, + 2972, { "distinct_on": [ - 2948, + 2985, "[server_regions_select_column!]" ], "limit": [ @@ -135038,44 +136150,44 @@ export default { 38 ], "order_by": [ - 2946, + 2983, "[server_regions_order_by!]" ], "where": [ - 2938 + 2975 ] } ], "server_regions_by_pk": [ - 2934, + 2971, { "value": [ - 70, + 75, "String!" ] } ], "server_regions_stream": [ - 2934, + 2971, { "batch_size": [ 38, "Int!" ], "cursor": [ - 2953, + 2990, "[server_regions_stream_cursor_input]!" ], "where": [ - 2938 + 2975 ] } ], "servers": [ - 2961, + 2998, { "distinct_on": [ - 2985, + 3022, "[servers_select_column!]" ], "limit": [ @@ -135085,19 +136197,19 @@ export default { 38 ], "order_by": [ - 2983, + 3020, "[servers_order_by!]" ], "where": [ - 2972 + 3009 ] } ], "servers_aggregate": [ - 2962, + 2999, { "distinct_on": [ - 2985, + 3022, "[servers_select_column!]" ], "limit": [ @@ -135107,44 +136219,44 @@ export default { 38 ], "order_by": [ - 2983, + 3020, "[servers_order_by!]" ], "where": [ - 2972 + 3009 ] } ], "servers_by_pk": [ - 2961, + 2998, { "id": [ - 3818, + 3864, "uuid!" ] } ], "servers_stream": [ - 2961, + 2998, { "batch_size": [ 38, "Int!" ], "cursor": [ - 2995, + 3032, "[servers_stream_cursor_input]!" ], "where": [ - 2972 + 3009 ] } ], "settings": [ - 3007, + 3044, { "distinct_on": [ - 3019, + 3056, "[settings_select_column!]" ], "limit": [ @@ -135154,19 +136266,19 @@ export default { 38 ], "order_by": [ - 3017, + 3054, "[settings_order_by!]" ], "where": [ - 3010 + 3047 ] } ], "settings_aggregate": [ - 3008, + 3045, { "distinct_on": [ - 3019, + 3056, "[settings_select_column!]" ], "limit": [ @@ -135176,44 +136288,44 @@ export default { 38 ], "order_by": [ - 3017, + 3054, "[settings_order_by!]" ], "where": [ - 3010 + 3047 ] } ], "settings_by_pk": [ - 3007, + 3044, { "name": [ - 70, + 75, "String!" ] } ], "settings_stream": [ - 3007, + 3044, { "batch_size": [ 38, "Int!" ], "cursor": [ - 3021, + 3058, "[settings_stream_cursor_input]!" ], "where": [ - 3010 + 3047 ] } ], "steam_account_claims": [ - 3025, + 3062, { "distinct_on": [ - 3043, + 3080, "[steam_account_claims_select_column!]" ], "limit": [ @@ -135223,19 +136335,19 @@ export default { 38 ], "order_by": [ - 3041, + 3078, "[steam_account_claims_order_by!]" ], "where": [ - 3032 + 3069 ] } ], "steam_account_claims_aggregate": [ - 3026, + 3063, { "distinct_on": [ - 3043, + 3080, "[steam_account_claims_select_column!]" ], "limit": [ @@ -135245,44 +136357,44 @@ export default { 38 ], "order_by": [ - 3041, + 3078, "[steam_account_claims_order_by!]" ], "where": [ - 3032 + 3069 ] } ], "steam_account_claims_by_pk": [ - 3025, + 3062, { "id": [ - 3818, + 3864, "uuid!" ] } ], "steam_account_claims_stream": [ - 3025, + 3062, { "batch_size": [ 38, "Int!" ], "cursor": [ - 3045, + 3082, "[steam_account_claims_stream_cursor_input]!" ], "where": [ - 3032 + 3069 ] } ], "steam_accounts": [ - 3049, + 3086, { "distinct_on": [ - 3062, + 3101, "[steam_accounts_select_column!]" ], "limit": [ @@ -135292,19 +136404,19 @@ export default { 38 ], "order_by": [ - 3060, + 3099, "[steam_accounts_order_by!]" ], "where": [ - 3052 + 3090 ] } ], "steam_accounts_aggregate": [ - 3050, + 3087, { "distinct_on": [ - 3062, + 3101, "[steam_accounts_select_column!]" ], "limit": [ @@ -135314,44 +136426,44 @@ export default { 38 ], "order_by": [ - 3060, + 3099, "[steam_accounts_order_by!]" ], "where": [ - 3052 + 3090 ] } ], "steam_accounts_by_pk": [ - 3049, + 3086, { "id": [ - 3818, + 3864, "uuid!" ] } ], "steam_accounts_stream": [ - 3049, + 3086, { "batch_size": [ 38, "Int!" ], "cursor": [ - 3064, + 3106, "[steam_accounts_stream_cursor_input]!" ], "where": [ - 3052 + 3090 ] } ], "system_alerts": [ - 3068, + 3114, { "distinct_on": [ - 3082, + 3128, "[system_alerts_select_column!]" ], "limit": [ @@ -135361,19 +136473,19 @@ export default { 38 ], "order_by": [ - 3080, + 3126, "[system_alerts_order_by!]" ], "where": [ - 3072 + 3118 ] } ], "system_alerts_aggregate": [ - 3069, + 3115, { "distinct_on": [ - 3082, + 3128, "[system_alerts_select_column!]" ], "limit": [ @@ -135383,44 +136495,44 @@ export default { 38 ], "order_by": [ - 3080, + 3126, "[system_alerts_order_by!]" ], "where": [ - 3072 + 3118 ] } ], "system_alerts_by_pk": [ - 3068, + 3114, { "id": [ - 3818, + 3864, "uuid!" ] } ], "system_alerts_stream": [ - 3068, + 3114, { "batch_size": [ 38, "Int!" ], "cursor": [ - 3087, + 3133, "[system_alerts_stream_cursor_input]!" ], "where": [ - 3072 + 3118 ] } ], "team_invites": [ - 3095, + 3141, { "distinct_on": [ - 3116, + 3162, "[team_invites_select_column!]" ], "limit": [ @@ -135430,19 +136542,19 @@ export default { 38 ], "order_by": [ - 3114, + 3160, "[team_invites_order_by!]" ], "where": [ - 3104 + 3150 ] } ], "team_invites_aggregate": [ - 3096, + 3142, { "distinct_on": [ - 3116, + 3162, "[team_invites_select_column!]" ], "limit": [ @@ -135452,44 +136564,44 @@ export default { 38 ], "order_by": [ - 3114, + 3160, "[team_invites_order_by!]" ], "where": [ - 3104 + 3150 ] } ], "team_invites_by_pk": [ - 3095, + 3141, { "id": [ - 3818, + 3864, "uuid!" ] } ], "team_invites_stream": [ - 3095, + 3141, { "batch_size": [ 38, "Int!" ], "cursor": [ - 3124, + 3170, "[team_invites_stream_cursor_input]!" ], "where": [ - 3104 + 3150 ] } ], "team_roster": [ - 3136, + 3182, { "distinct_on": [ - 3159, + 3205, "[team_roster_select_column!]" ], "limit": [ @@ -135499,19 +136611,19 @@ export default { 38 ], "order_by": [ - 3157, + 3203, "[team_roster_order_by!]" ], "where": [ - 3147 + 3193 ] } ], "team_roster_aggregate": [ - 3137, + 3183, { "distinct_on": [ - 3159, + 3205, "[team_roster_select_column!]" ], "limit": [ @@ -135521,48 +136633,48 @@ export default { 38 ], "order_by": [ - 3157, + 3203, "[team_roster_order_by!]" ], "where": [ - 3147 + 3193 ] } ], "team_roster_by_pk": [ - 3136, + 3182, { "player_steam_id": [ - 169, + 174, "bigint!" ], "team_id": [ - 3818, + 3864, "uuid!" ] } ], "team_roster_stream": [ - 3136, + 3182, { "batch_size": [ 38, "Int!" ], "cursor": [ - 3169, + 3215, "[team_roster_stream_cursor_input]!" ], "where": [ - 3147 + 3193 ] } ], "team_scrim_alerts": [ - 3181, + 3227, { "distinct_on": [ - 3195, + 3241, "[team_scrim_alerts_select_column!]" ], "limit": [ @@ -135572,19 +136684,19 @@ export default { 38 ], "order_by": [ - 3193, + 3239, "[team_scrim_alerts_order_by!]" ], "where": [ - 3185 + 3231 ] } ], "team_scrim_alerts_aggregate": [ - 3182, + 3228, { "distinct_on": [ - 3195, + 3241, "[team_scrim_alerts_select_column!]" ], "limit": [ @@ -135594,44 +136706,44 @@ export default { 38 ], "order_by": [ - 3193, + 3239, "[team_scrim_alerts_order_by!]" ], "where": [ - 3185 + 3231 ] } ], "team_scrim_alerts_by_pk": [ - 3181, + 3227, { "id": [ - 3818, + 3864, "uuid!" ] } ], "team_scrim_alerts_stream": [ - 3181, + 3227, { "batch_size": [ 38, "Int!" ], "cursor": [ - 3200, + 3246, "[team_scrim_alerts_stream_cursor_input]!" ], "where": [ - 3185 + 3231 ] } ], "team_scrim_availability": [ - 3208, + 3254, { "distinct_on": [ - 3228, + 3274, "[team_scrim_availability_select_column!]" ], "limit": [ @@ -135641,19 +136753,19 @@ export default { 38 ], "order_by": [ - 3226, + 3272, "[team_scrim_availability_order_by!]" ], "where": [ - 3217 + 3263 ] } ], "team_scrim_availability_aggregate": [ - 3209, + 3255, { "distinct_on": [ - 3228, + 3274, "[team_scrim_availability_select_column!]" ], "limit": [ @@ -135663,44 +136775,44 @@ export default { 38 ], "order_by": [ - 3226, + 3272, "[team_scrim_availability_order_by!]" ], "where": [ - 3217 + 3263 ] } ], "team_scrim_availability_by_pk": [ - 3208, + 3254, { "id": [ - 3818, + 3864, "uuid!" ] } ], "team_scrim_availability_stream": [ - 3208, + 3254, { "batch_size": [ 38, "Int!" ], "cursor": [ - 3232, + 3278, "[team_scrim_availability_stream_cursor_input]!" ], "where": [ - 3217 + 3263 ] } ], "team_scrim_request_proposals": [ - 3236, + 3282, { "distinct_on": [ - 3257, + 3303, "[team_scrim_request_proposals_select_column!]" ], "limit": [ @@ -135710,19 +136822,19 @@ export default { 38 ], "order_by": [ - 3255, + 3301, "[team_scrim_request_proposals_order_by!]" ], "where": [ - 3245 + 3291 ] } ], "team_scrim_request_proposals_aggregate": [ - 3237, + 3283, { "distinct_on": [ - 3257, + 3303, "[team_scrim_request_proposals_select_column!]" ], "limit": [ @@ -135732,44 +136844,44 @@ export default { 38 ], "order_by": [ - 3255, + 3301, "[team_scrim_request_proposals_order_by!]" ], "where": [ - 3245 + 3291 ] } ], "team_scrim_request_proposals_by_pk": [ - 3236, + 3282, { "id": [ - 3818, + 3864, "uuid!" ] } ], "team_scrim_request_proposals_stream": [ - 3236, + 3282, { "batch_size": [ 38, "Int!" ], "cursor": [ - 3265, + 3311, "[team_scrim_request_proposals_stream_cursor_input]!" ], "where": [ - 3245 + 3291 ] } ], "team_scrim_requests": [ - 3277, + 3323, { "distinct_on": [ - 3301, + 3347, "[team_scrim_requests_select_column!]" ], "limit": [ @@ -135779,19 +136891,19 @@ export default { 38 ], "order_by": [ - 3299, + 3345, "[team_scrim_requests_order_by!]" ], "where": [ - 3288 + 3334 ] } ], "team_scrim_requests_aggregate": [ - 3278, + 3324, { "distinct_on": [ - 3301, + 3347, "[team_scrim_requests_select_column!]" ], "limit": [ @@ -135801,44 +136913,44 @@ export default { 38 ], "order_by": [ - 3299, + 3345, "[team_scrim_requests_order_by!]" ], "where": [ - 3288 + 3334 ] } ], "team_scrim_requests_by_pk": [ - 3277, + 3323, { "id": [ - 3818, + 3864, "uuid!" ] } ], "team_scrim_requests_stream": [ - 3277, + 3323, { "batch_size": [ 38, "Int!" ], "cursor": [ - 3311, + 3357, "[team_scrim_requests_stream_cursor_input]!" ], "where": [ - 3288 + 3334 ] } ], "team_scrim_settings": [ - 3323, + 3369, { "distinct_on": [ - 3338, + 3384, "[team_scrim_settings_select_column!]" ], "limit": [ @@ -135848,19 +136960,19 @@ export default { 38 ], "order_by": [ - 3336, + 3382, "[team_scrim_settings_order_by!]" ], "where": [ - 3327 + 3373 ] } ], "team_scrim_settings_aggregate": [ - 3324, + 3370, { "distinct_on": [ - 3338, + 3384, "[team_scrim_settings_select_column!]" ], "limit": [ @@ -135870,44 +136982,44 @@ export default { 38 ], "order_by": [ - 3336, + 3382, "[team_scrim_settings_order_by!]" ], "where": [ - 3327 + 3373 ] } ], "team_scrim_settings_by_pk": [ - 3323, + 3369, { "id": [ - 3818, + 3864, "uuid!" ] } ], "team_scrim_settings_stream": [ - 3323, + 3369, { "batch_size": [ 38, "Int!" ], "cursor": [ - 3343, + 3389, "[team_scrim_settings_stream_cursor_input]!" ], "where": [ - 3327 + 3373 ] } ], "team_suggestions": [ - 3351, + 3397, { "distinct_on": [ - 3365, + 3411, "[team_suggestions_select_column!]" ], "limit": [ @@ -135917,19 +137029,19 @@ export default { 38 ], "order_by": [ - 3363, + 3409, "[team_suggestions_order_by!]" ], "where": [ - 3355 + 3401 ] } ], "team_suggestions_aggregate": [ - 3352, + 3398, { "distinct_on": [ - 3365, + 3411, "[team_suggestions_select_column!]" ], "limit": [ @@ -135939,44 +137051,44 @@ export default { 38 ], "order_by": [ - 3363, + 3409, "[team_suggestions_order_by!]" ], "where": [ - 3355 + 3401 ] } ], "team_suggestions_by_pk": [ - 3351, + 3397, { "id": [ - 3818, + 3864, "uuid!" ] } ], "team_suggestions_stream": [ - 3351, + 3397, { "batch_size": [ 38, "Int!" ], "cursor": [ - 3370, + 3416, "[team_suggestions_stream_cursor_input]!" ], "where": [ - 3355 + 3401 ] } ], "teams": [ - 3378, + 3424, { "distinct_on": [ - 3400, + 3446, "[teams_select_column!]" ], "limit": [ @@ -135986,19 +137098,19 @@ export default { 38 ], "order_by": [ - 3398, + 3444, "[teams_order_by!]" ], "where": [ - 3387 + 3433 ] } ], "teams_aggregate": [ - 3379, + 3425, { "distinct_on": [ - 3400, + 3446, "[teams_select_column!]" ], "limit": [ @@ -136008,44 +137120,44 @@ export default { 38 ], "order_by": [ - 3398, + 3444, "[teams_order_by!]" ], "where": [ - 3387 + 3433 ] } ], "teams_by_pk": [ - 3378, + 3424, { "id": [ - 3818, + 3864, "uuid!" ] } ], "teams_stream": [ - 3378, + 3424, { "batch_size": [ 38, "Int!" ], "cursor": [ - 3408, + 3454, "[teams_stream_cursor_input]!" ], "where": [ - 3387 + 3433 ] } ], "tournament_brackets": [ - 3423, + 3469, { "distinct_on": [ - 3447, + 3493, "[tournament_brackets_select_column!]" ], "limit": [ @@ -136055,19 +137167,19 @@ export default { 38 ], "order_by": [ - 3445, + 3491, "[tournament_brackets_order_by!]" ], "where": [ - 3434 + 3480 ] } ], "tournament_brackets_aggregate": [ - 3424, + 3470, { "distinct_on": [ - 3447, + 3493, "[tournament_brackets_select_column!]" ], "limit": [ @@ -136077,44 +137189,44 @@ export default { 38 ], "order_by": [ - 3445, + 3491, "[tournament_brackets_order_by!]" ], "where": [ - 3434 + 3480 ] } ], "tournament_brackets_by_pk": [ - 3423, + 3469, { "id": [ - 3818, + 3864, "uuid!" ] } ], "tournament_brackets_stream": [ - 3423, + 3469, { "batch_size": [ 38, "Int!" ], "cursor": [ - 3457, + 3503, "[tournament_brackets_stream_cursor_input]!" ], "where": [ - 3434 + 3480 ] } ], "tournament_organizers": [ - 3469, + 3515, { "distinct_on": [ - 3490, + 3536, "[tournament_organizers_select_column!]" ], "limit": [ @@ -136124,19 +137236,19 @@ export default { 38 ], "order_by": [ - 3488, + 3534, "[tournament_organizers_order_by!]" ], "where": [ - 3478 + 3524 ] } ], "tournament_organizers_aggregate": [ - 3470, + 3516, { "distinct_on": [ - 3490, + 3536, "[tournament_organizers_select_column!]" ], "limit": [ @@ -136146,48 +137258,48 @@ export default { 38 ], "order_by": [ - 3488, + 3534, "[tournament_organizers_order_by!]" ], "where": [ - 3478 + 3524 ] } ], "tournament_organizers_by_pk": [ - 3469, + 3515, { "steam_id": [ - 169, + 174, "bigint!" ], "tournament_id": [ - 3818, + 3864, "uuid!" ] } ], "tournament_organizers_stream": [ - 3469, + 3515, { "batch_size": [ 38, "Int!" ], "cursor": [ - 3498, + 3544, "[tournament_organizers_stream_cursor_input]!" ], "where": [ - 3478 + 3524 ] } ], "tournament_stages": [ - 3510, + 3556, { "distinct_on": [ - 3539, + 3585, "[tournament_stages_select_column!]" ], "limit": [ @@ -136197,19 +137309,19 @@ export default { 38 ], "order_by": [ - 3536, + 3582, "[tournament_stages_order_by!]" ], "where": [ - 3522 + 3568 ] } ], "tournament_stages_aggregate": [ - 3511, + 3557, { "distinct_on": [ - 3539, + 3585, "[tournament_stages_select_column!]" ], "limit": [ @@ -136219,44 +137331,44 @@ export default { 38 ], "order_by": [ - 3536, + 3582, "[tournament_stages_order_by!]" ], "where": [ - 3522 + 3568 ] } ], "tournament_stages_by_pk": [ - 3510, + 3556, { "id": [ - 3818, + 3864, "uuid!" ] } ], "tournament_stages_stream": [ - 3510, + 3556, { "batch_size": [ 38, "Int!" ], "cursor": [ - 3549, + 3595, "[tournament_stages_stream_cursor_input]!" ], "where": [ - 3522 + 3568 ] } ], "tournament_team_invites": [ - 3561, + 3607, { "distinct_on": [ - 3582, + 3628, "[tournament_team_invites_select_column!]" ], "limit": [ @@ -136266,19 +137378,19 @@ export default { 38 ], "order_by": [ - 3580, + 3626, "[tournament_team_invites_order_by!]" ], "where": [ - 3570 + 3616 ] } ], "tournament_team_invites_aggregate": [ - 3562, + 3608, { "distinct_on": [ - 3582, + 3628, "[tournament_team_invites_select_column!]" ], "limit": [ @@ -136288,44 +137400,44 @@ export default { 38 ], "order_by": [ - 3580, + 3626, "[tournament_team_invites_order_by!]" ], "where": [ - 3570 + 3616 ] } ], "tournament_team_invites_by_pk": [ - 3561, + 3607, { "id": [ - 3818, + 3864, "uuid!" ] } ], "tournament_team_invites_stream": [ - 3561, + 3607, { "batch_size": [ 38, "Int!" ], "cursor": [ - 3590, + 3636, "[tournament_team_invites_stream_cursor_input]!" ], "where": [ - 3570 + 3616 ] } ], "tournament_team_roster": [ - 3602, + 3648, { "distinct_on": [ - 3623, + 3669, "[tournament_team_roster_select_column!]" ], "limit": [ @@ -136335,19 +137447,19 @@ export default { 38 ], "order_by": [ - 3621, + 3667, "[tournament_team_roster_order_by!]" ], "where": [ - 3611 + 3657 ] } ], "tournament_team_roster_aggregate": [ - 3603, + 3649, { "distinct_on": [ - 3623, + 3669, "[tournament_team_roster_select_column!]" ], "limit": [ @@ -136357,48 +137469,48 @@ export default { 38 ], "order_by": [ - 3621, + 3667, "[tournament_team_roster_order_by!]" ], "where": [ - 3611 + 3657 ] } ], "tournament_team_roster_by_pk": [ - 3602, + 3648, { "player_steam_id": [ - 169, + 174, "bigint!" ], "tournament_id": [ - 3818, + 3864, "uuid!" ] } ], "tournament_team_roster_stream": [ - 3602, + 3648, { "batch_size": [ 38, "Int!" ], "cursor": [ - 3631, + 3677, "[tournament_team_roster_stream_cursor_input]!" ], "where": [ - 3611 + 3657 ] } ], "tournament_teams": [ - 3643, + 3689, { "distinct_on": [ - 3665, + 3711, "[tournament_teams_select_column!]" ], "limit": [ @@ -136408,19 +137520,19 @@ export default { 38 ], "order_by": [ - 3663, + 3709, "[tournament_teams_order_by!]" ], "where": [ - 3652 + 3698 ] } ], "tournament_teams_aggregate": [ - 3644, + 3690, { "distinct_on": [ - 3665, + 3711, "[tournament_teams_select_column!]" ], "limit": [ @@ -136430,44 +137542,44 @@ export default { 38 ], "order_by": [ - 3663, + 3709, "[tournament_teams_order_by!]" ], "where": [ - 3652 + 3698 ] } ], "tournament_teams_by_pk": [ - 3643, + 3689, { "id": [ - 3818, + 3864, "uuid!" ] } ], "tournament_teams_stream": [ - 3643, + 3689, { "batch_size": [ 38, "Int!" ], "cursor": [ - 3673, + 3719, "[tournament_teams_stream_cursor_input]!" ], "where": [ - 3652 + 3698 ] } ], "tournament_trophies": [ - 3685, + 3731, { "distinct_on": [ - 3708, + 3754, "[tournament_trophies_select_column!]" ], "limit": [ @@ -136477,19 +137589,19 @@ export default { 38 ], "order_by": [ - 3706, + 3752, "[tournament_trophies_order_by!]" ], "where": [ - 3696 + 3742 ] } ], "tournament_trophies_aggregate": [ - 3686, + 3732, { "distinct_on": [ - 3708, + 3754, "[tournament_trophies_select_column!]" ], "limit": [ @@ -136499,44 +137611,44 @@ export default { 38 ], "order_by": [ - 3706, + 3752, "[tournament_trophies_order_by!]" ], "where": [ - 3696 + 3742 ] } ], "tournament_trophies_by_pk": [ - 3685, + 3731, { "id": [ - 3818, + 3864, "uuid!" ] } ], "tournament_trophies_stream": [ - 3685, + 3731, { "batch_size": [ 38, "Int!" ], "cursor": [ - 3718, + 3764, "[tournament_trophies_stream_cursor_input]!" ], "where": [ - 3696 + 3742 ] } ], "tournament_trophy_configs": [ - 3730, + 3776, { "distinct_on": [ - 3752, + 3798, "[tournament_trophy_configs_select_column!]" ], "limit": [ @@ -136546,19 +137658,19 @@ export default { 38 ], "order_by": [ - 3750, + 3796, "[tournament_trophy_configs_order_by!]" ], "where": [ - 3739 + 3785 ] } ], "tournament_trophy_configs_aggregate": [ - 3731, + 3777, { "distinct_on": [ - 3752, + 3798, "[tournament_trophy_configs_select_column!]" ], "limit": [ @@ -136568,44 +137680,44 @@ export default { 38 ], "order_by": [ - 3750, + 3796, "[tournament_trophy_configs_order_by!]" ], "where": [ - 3739 + 3785 ] } ], "tournament_trophy_configs_by_pk": [ - 3730, + 3776, { "id": [ - 3818, + 3864, "uuid!" ] } ], "tournament_trophy_configs_stream": [ - 3730, + 3776, { "batch_size": [ 38, "Int!" ], "cursor": [ - 3760, + 3806, "[tournament_trophy_configs_stream_cursor_input]!" ], "where": [ - 3739 + 3785 ] } ], "tournaments": [ - 3772, + 3818, { "distinct_on": [ - 3796, + 3842, "[tournaments_select_column!]" ], "limit": [ @@ -136615,19 +137727,19 @@ export default { 38 ], "order_by": [ - 3794, + 3840, "[tournaments_order_by!]" ], "where": [ - 3783 + 3829 ] } ], "tournaments_aggregate": [ - 3773, + 3819, { "distinct_on": [ - 3796, + 3842, "[tournaments_select_column!]" ], "limit": [ @@ -136637,44 +137749,44 @@ export default { 38 ], "order_by": [ - 3794, + 3840, "[tournaments_order_by!]" ], "where": [ - 3783 + 3829 ] } ], "tournaments_by_pk": [ - 3772, + 3818, { "id": [ - 3818, + 3864, "uuid!" ] } ], "tournaments_stream": [ - 3772, + 3818, { "batch_size": [ 38, "Int!" ], "cursor": [ - 3806, + 3852, "[tournaments_stream_cursor_input]!" ], "where": [ - 3783 + 3829 ] } ], "v_gpu_pool_status": [ - 3821, + 3867, { "distinct_on": [ - 3829, + 3875, "[v_gpu_pool_status_select_column!]" ], "limit": [ @@ -136684,19 +137796,19 @@ export default { 38 ], "order_by": [ - 3828, + 3874, "[v_gpu_pool_status_order_by!]" ], "where": [ - 3825 + 3871 ] } ], "v_gpu_pool_status_aggregate": [ - 3822, + 3868, { "distinct_on": [ - 3829, + 3875, "[v_gpu_pool_status_select_column!]" ], "limit": [ @@ -136706,35 +137818,35 @@ export default { 38 ], "order_by": [ - 3828, + 3874, "[v_gpu_pool_status_order_by!]" ], "where": [ - 3825 + 3871 ] } ], "v_gpu_pool_status_stream": [ - 3821, + 3867, { "batch_size": [ 38, "Int!" ], "cursor": [ - 3833, + 3879, "[v_gpu_pool_status_stream_cursor_input]!" ], "where": [ - 3825 + 3871 ] } ], "v_match_captains": [ - 3839, + 3885, { "distinct_on": [ - 3851, + 3897, "[v_match_captains_select_column!]" ], "limit": [ @@ -136744,19 +137856,19 @@ export default { 38 ], "order_by": [ - 3850, + 3896, "[v_match_captains_order_by!]" ], "where": [ - 3843 + 3889 ] } ], "v_match_captains_aggregate": [ - 3840, + 3886, { "distinct_on": [ - 3851, + 3897, "[v_match_captains_select_column!]" ], "limit": [ @@ -136766,35 +137878,35 @@ export default { 38 ], "order_by": [ - 3850, + 3896, "[v_match_captains_order_by!]" ], "where": [ - 3843 + 3889 ] } ], "v_match_captains_stream": [ - 3839, + 3885, { "batch_size": [ 38, "Int!" ], "cursor": [ - 3856, + 3902, "[v_match_captains_stream_cursor_input]!" ], "where": [ - 3843 + 3889 ] } ], "v_match_clutches": [ - 3863, + 3909, { "distinct_on": [ - 3879, + 3925, "[v_match_clutches_select_column!]" ], "limit": [ @@ -136804,19 +137916,19 @@ export default { 38 ], "order_by": [ - 3878, + 3924, "[v_match_clutches_order_by!]" ], "where": [ - 3872 + 3918 ] } ], "v_match_clutches_aggregate": [ - 3864, + 3910, { "distinct_on": [ - 3879, + 3925, "[v_match_clutches_select_column!]" ], "limit": [ @@ -136826,35 +137938,35 @@ export default { 38 ], "order_by": [ - 3878, + 3924, "[v_match_clutches_order_by!]" ], "where": [ - 3872 + 3918 ] } ], "v_match_clutches_stream": [ - 3863, + 3909, { "batch_size": [ 38, "Int!" ], "cursor": [ - 3886, + 3932, "[v_match_clutches_stream_cursor_input]!" ], "where": [ - 3872 + 3918 ] } ], "v_match_kill_pairs": [ - 3896, + 3942, { "distinct_on": [ - 3904, + 3950, "[v_match_kill_pairs_select_column!]" ], "limit": [ @@ -136864,19 +137976,19 @@ export default { 38 ], "order_by": [ - 3903, + 3949, "[v_match_kill_pairs_order_by!]" ], "where": [ - 3900 + 3946 ] } ], "v_match_kill_pairs_aggregate": [ - 3897, + 3943, { "distinct_on": [ - 3904, + 3950, "[v_match_kill_pairs_select_column!]" ], "limit": [ @@ -136886,35 +137998,35 @@ export default { 38 ], "order_by": [ - 3903, + 3949, "[v_match_kill_pairs_order_by!]" ], "where": [ - 3900 + 3946 ] } ], "v_match_kill_pairs_stream": [ - 3896, + 3942, { "batch_size": [ 38, "Int!" ], "cursor": [ - 3908, + 3954, "[v_match_kill_pairs_stream_cursor_input]!" ], "where": [ - 3900 + 3946 ] } ], "v_match_lineup_buy_types": [ - 3914, + 3960, { "distinct_on": [ - 3922, + 3968, "[v_match_lineup_buy_types_select_column!]" ], "limit": [ @@ -136924,19 +138036,19 @@ export default { 38 ], "order_by": [ - 3921, + 3967, "[v_match_lineup_buy_types_order_by!]" ], "where": [ - 3918 + 3964 ] } ], "v_match_lineup_buy_types_aggregate": [ - 3915, + 3961, { "distinct_on": [ - 3922, + 3968, "[v_match_lineup_buy_types_select_column!]" ], "limit": [ @@ -136946,35 +138058,35 @@ export default { 38 ], "order_by": [ - 3921, + 3967, "[v_match_lineup_buy_types_order_by!]" ], "where": [ - 3918 + 3964 ] } ], "v_match_lineup_buy_types_stream": [ - 3914, + 3960, { "batch_size": [ 38, "Int!" ], "cursor": [ - 3926, + 3972, "[v_match_lineup_buy_types_stream_cursor_input]!" ], "where": [ - 3918 + 3964 ] } ], "v_match_lineup_map_stats": [ - 3932, + 3978, { "distinct_on": [ - 3940, + 3986, "[v_match_lineup_map_stats_select_column!]" ], "limit": [ @@ -136984,19 +138096,19 @@ export default { 38 ], "order_by": [ - 3939, + 3985, "[v_match_lineup_map_stats_order_by!]" ], "where": [ - 3936 + 3982 ] } ], "v_match_lineup_map_stats_aggregate": [ - 3933, + 3979, { "distinct_on": [ - 3940, + 3986, "[v_match_lineup_map_stats_select_column!]" ], "limit": [ @@ -137006,35 +138118,35 @@ export default { 38 ], "order_by": [ - 3939, + 3985, "[v_match_lineup_map_stats_order_by!]" ], "where": [ - 3936 + 3982 ] } ], "v_match_lineup_map_stats_stream": [ - 3932, + 3978, { "batch_size": [ 38, "Int!" ], "cursor": [ - 3944, + 3990, "[v_match_lineup_map_stats_stream_cursor_input]!" ], "where": [ - 3936 + 3982 ] } ], "v_match_map_backup_rounds": [ - 3950, + 3996, { "distinct_on": [ - 3961, + 4007, "[v_match_map_backup_rounds_select_column!]" ], "limit": [ @@ -137044,19 +138156,19 @@ export default { 38 ], "order_by": [ - 3960, + 4006, "[v_match_map_backup_rounds_order_by!]" ], "where": [ - 3954 + 4000 ] } ], "v_match_map_backup_rounds_aggregate": [ - 3951, + 3997, { "distinct_on": [ - 3961, + 4007, "[v_match_map_backup_rounds_select_column!]" ], "limit": [ @@ -137066,35 +138178,35 @@ export default { 38 ], "order_by": [ - 3960, + 4006, "[v_match_map_backup_rounds_order_by!]" ], "where": [ - 3954 + 4000 ] } ], "v_match_map_backup_rounds_stream": [ - 3950, + 3996, { "batch_size": [ 38, "Int!" ], "cursor": [ - 3966, + 4012, "[v_match_map_backup_rounds_stream_cursor_input]!" ], "where": [ - 3954 + 4000 ] } ], "v_match_player_buy_types": [ - 3973, + 4019, { "distinct_on": [ - 3981, + 4027, "[v_match_player_buy_types_select_column!]" ], "limit": [ @@ -137104,19 +138216,19 @@ export default { 38 ], "order_by": [ - 3980, + 4026, "[v_match_player_buy_types_order_by!]" ], "where": [ - 3977 + 4023 ] } ], "v_match_player_buy_types_aggregate": [ - 3974, + 4020, { "distinct_on": [ - 3981, + 4027, "[v_match_player_buy_types_select_column!]" ], "limit": [ @@ -137126,35 +138238,35 @@ export default { 38 ], "order_by": [ - 3980, + 4026, "[v_match_player_buy_types_order_by!]" ], "where": [ - 3977 + 4023 ] } ], "v_match_player_buy_types_stream": [ - 3973, + 4019, { "batch_size": [ 38, "Int!" ], "cursor": [ - 3985, + 4031, "[v_match_player_buy_types_stream_cursor_input]!" ], "where": [ - 3977 + 4023 ] } ], "v_match_player_opening_duels": [ - 3991, + 4037, { "distinct_on": [ - 4007, + 4053, "[v_match_player_opening_duels_select_column!]" ], "limit": [ @@ -137164,19 +138276,19 @@ export default { 38 ], "order_by": [ - 4006, + 4052, "[v_match_player_opening_duels_order_by!]" ], "where": [ - 4000 + 4046 ] } ], "v_match_player_opening_duels_aggregate": [ - 3992, + 4038, { "distinct_on": [ - 4007, + 4053, "[v_match_player_opening_duels_select_column!]" ], "limit": [ @@ -137186,35 +138298,35 @@ export default { 38 ], "order_by": [ - 4006, + 4052, "[v_match_player_opening_duels_order_by!]" ], "where": [ - 4000 + 4046 ] } ], "v_match_player_opening_duels_stream": [ - 3991, + 4037, { "batch_size": [ 38, "Int!" ], "cursor": [ - 4014, + 4060, "[v_match_player_opening_duels_stream_cursor_input]!" ], "where": [ - 4000 + 4046 ] } ], "v_player_arch_nemesis": [ - 4024, + 4070, { "distinct_on": [ - 4032, + 4078, "[v_player_arch_nemesis_select_column!]" ], "limit": [ @@ -137224,19 +138336,19 @@ export default { 38 ], "order_by": [ - 4031, + 4077, "[v_player_arch_nemesis_order_by!]" ], "where": [ - 4028 + 4074 ] } ], "v_player_arch_nemesis_aggregate": [ - 4025, + 4071, { "distinct_on": [ - 4032, + 4078, "[v_player_arch_nemesis_select_column!]" ], "limit": [ @@ -137246,35 +138358,35 @@ export default { 38 ], "order_by": [ - 4031, + 4077, "[v_player_arch_nemesis_order_by!]" ], "where": [ - 4028 + 4074 ] } ], "v_player_arch_nemesis_stream": [ - 4024, + 4070, { "batch_size": [ 38, "Int!" ], "cursor": [ - 4036, + 4082, "[v_player_arch_nemesis_stream_cursor_input]!" ], "where": [ - 4028 + 4074 ] } ], "v_player_damage": [ - 4042, + 4088, { "distinct_on": [ - 4050, + 4096, "[v_player_damage_select_column!]" ], "limit": [ @@ -137284,19 +138396,19 @@ export default { 38 ], "order_by": [ - 4049, + 4095, "[v_player_damage_order_by!]" ], "where": [ - 4046 + 4092 ] } ], "v_player_damage_aggregate": [ - 4043, + 4089, { "distinct_on": [ - 4050, + 4096, "[v_player_damage_select_column!]" ], "limit": [ @@ -137306,35 +138418,35 @@ export default { 38 ], "order_by": [ - 4049, + 4095, "[v_player_damage_order_by!]" ], "where": [ - 4046 + 4092 ] } ], "v_player_damage_stream": [ - 4042, + 4088, { "batch_size": [ 38, "Int!" ], "cursor": [ - 4054, + 4100, "[v_player_damage_stream_cursor_input]!" ], "where": [ - 4046 + 4092 ] } ], "v_player_elo": [ - 4060, + 4106, { "distinct_on": [ - 4086, + 4132, "[v_player_elo_select_column!]" ], "limit": [ @@ -137344,19 +138456,19 @@ export default { 38 ], "order_by": [ - 4085, + 4131, "[v_player_elo_order_by!]" ], "where": [ - 4079 + 4125 ] } ], "v_player_elo_aggregate": [ - 4061, + 4107, { "distinct_on": [ - 4086, + 4132, "[v_player_elo_select_column!]" ], "limit": [ @@ -137366,35 +138478,35 @@ export default { 38 ], "order_by": [ - 4085, + 4131, "[v_player_elo_order_by!]" ], "where": [ - 4079 + 4125 ] } ], "v_player_elo_stream": [ - 4060, + 4106, { "batch_size": [ 38, "Int!" ], "cursor": [ - 4101, + 4147, "[v_player_elo_stream_cursor_input]!" ], "where": [ - 4079 + 4125 ] } ], "v_player_map_losses": [ - 4111, + 4157, { "distinct_on": [ - 4119, + 4165, "[v_player_map_losses_select_column!]" ], "limit": [ @@ -137404,19 +138516,19 @@ export default { 38 ], "order_by": [ - 4118, + 4164, "[v_player_map_losses_order_by!]" ], "where": [ - 4115 + 4161 ] } ], "v_player_map_losses_aggregate": [ - 4112, + 4158, { "distinct_on": [ - 4119, + 4165, "[v_player_map_losses_select_column!]" ], "limit": [ @@ -137426,35 +138538,35 @@ export default { 38 ], "order_by": [ - 4118, + 4164, "[v_player_map_losses_order_by!]" ], "where": [ - 4115 + 4161 ] } ], "v_player_map_losses_stream": [ - 4111, + 4157, { "batch_size": [ 38, "Int!" ], "cursor": [ - 4123, + 4169, "[v_player_map_losses_stream_cursor_input]!" ], "where": [ - 4115 + 4161 ] } ], "v_player_map_wins": [ - 4129, + 4175, { "distinct_on": [ - 4137, + 4183, "[v_player_map_wins_select_column!]" ], "limit": [ @@ -137464,19 +138576,19 @@ export default { 38 ], "order_by": [ - 4136, + 4182, "[v_player_map_wins_order_by!]" ], "where": [ - 4133 + 4179 ] } ], "v_player_map_wins_aggregate": [ - 4130, + 4176, { "distinct_on": [ - 4137, + 4183, "[v_player_map_wins_select_column!]" ], "limit": [ @@ -137486,35 +138598,35 @@ export default { 38 ], "order_by": [ - 4136, + 4182, "[v_player_map_wins_order_by!]" ], "where": [ - 4133 + 4179 ] } ], "v_player_map_wins_stream": [ - 4129, + 4175, { "batch_size": [ 38, "Int!" ], "cursor": [ - 4141, + 4187, "[v_player_map_wins_stream_cursor_input]!" ], "where": [ - 4133 + 4179 ] } ], "v_player_match_head_to_head": [ - 4147, + 4193, { "distinct_on": [ - 4155, + 4201, "[v_player_match_head_to_head_select_column!]" ], "limit": [ @@ -137524,19 +138636,19 @@ export default { 38 ], "order_by": [ - 4154, + 4200, "[v_player_match_head_to_head_order_by!]" ], "where": [ - 4151 + 4197 ] } ], "v_player_match_head_to_head_aggregate": [ - 4148, + 4194, { "distinct_on": [ - 4155, + 4201, "[v_player_match_head_to_head_select_column!]" ], "limit": [ @@ -137546,35 +138658,35 @@ export default { 38 ], "order_by": [ - 4154, + 4200, "[v_player_match_head_to_head_order_by!]" ], "where": [ - 4151 + 4197 ] } ], "v_player_match_head_to_head_stream": [ - 4147, + 4193, { "batch_size": [ 38, "Int!" ], "cursor": [ - 4159, + 4205, "[v_player_match_head_to_head_stream_cursor_input]!" ], "where": [ - 4151 + 4197 ] } ], "v_player_match_map_hltv": [ - 4165, + 4211, { "distinct_on": [ - 4183, + 4229, "[v_player_match_map_hltv_select_column!]" ], "limit": [ @@ -137584,19 +138696,19 @@ export default { 38 ], "order_by": [ - 4182, + 4228, "[v_player_match_map_hltv_order_by!]" ], "where": [ - 4174 + 4220 ] } ], "v_player_match_map_hltv_aggregate": [ - 4166, + 4212, { "distinct_on": [ - 4183, + 4229, "[v_player_match_map_hltv_select_column!]" ], "limit": [ @@ -137606,35 +138718,35 @@ export default { 38 ], "order_by": [ - 4182, + 4228, "[v_player_match_map_hltv_order_by!]" ], "where": [ - 4174 + 4220 ] } ], "v_player_match_map_hltv_stream": [ - 4165, + 4211, { "batch_size": [ 38, "Int!" ], "cursor": [ - 4191, + 4237, "[v_player_match_map_hltv_stream_cursor_input]!" ], "where": [ - 4174 + 4220 ] } ], "v_player_match_map_roles": [ - 4202, + 4248, { "distinct_on": [ - 4210, + 4256, "[v_player_match_map_roles_select_column!]" ], "limit": [ @@ -137644,19 +138756,19 @@ export default { 38 ], "order_by": [ - 4209, + 4255, "[v_player_match_map_roles_order_by!]" ], "where": [ - 4206 + 4252 ] } ], "v_player_match_map_roles_aggregate": [ - 4203, + 4249, { "distinct_on": [ - 4210, + 4256, "[v_player_match_map_roles_select_column!]" ], "limit": [ @@ -137666,35 +138778,35 @@ export default { 38 ], "order_by": [ - 4209, + 4255, "[v_player_match_map_roles_order_by!]" ], "where": [ - 4206 + 4252 ] } ], "v_player_match_map_roles_stream": [ - 4202, + 4248, { "batch_size": [ 38, "Int!" ], "cursor": [ - 4214, + 4260, "[v_player_match_map_roles_stream_cursor_input]!" ], "where": [ - 4206 + 4252 ] } ], "v_player_match_performance": [ - 4220, + 4266, { "distinct_on": [ - 4228, + 4274, "[v_player_match_performance_select_column!]" ], "limit": [ @@ -137704,19 +138816,19 @@ export default { 38 ], "order_by": [ - 4227, + 4273, "[v_player_match_performance_order_by!]" ], "where": [ - 4224 + 4270 ] } ], "v_player_match_performance_aggregate": [ - 4221, + 4267, { "distinct_on": [ - 4228, + 4274, "[v_player_match_performance_select_column!]" ], "limit": [ @@ -137726,35 +138838,35 @@ export default { 38 ], "order_by": [ - 4227, + 4273, "[v_player_match_performance_order_by!]" ], "where": [ - 4224 + 4270 ] } ], "v_player_match_performance_stream": [ - 4220, + 4266, { "batch_size": [ 38, "Int!" ], "cursor": [ - 4232, + 4278, "[v_player_match_performance_stream_cursor_input]!" ], "where": [ - 4224 + 4270 ] } ], "v_player_match_rating": [ - 4238, + 4284, { "distinct_on": [ - 4246, + 4292, "[v_player_match_rating_select_column!]" ], "limit": [ @@ -137764,19 +138876,19 @@ export default { 38 ], "order_by": [ - 4245, + 4291, "[v_player_match_rating_order_by!]" ], "where": [ - 4242 + 4288 ] } ], "v_player_match_rating_aggregate": [ - 4239, + 4285, { "distinct_on": [ - 4246, + 4292, "[v_player_match_rating_select_column!]" ], "limit": [ @@ -137786,35 +138898,35 @@ export default { 38 ], "order_by": [ - 4245, + 4291, "[v_player_match_rating_order_by!]" ], "where": [ - 4242 + 4288 ] } ], "v_player_match_rating_stream": [ - 4238, + 4284, { "batch_size": [ 38, "Int!" ], "cursor": [ - 4250, + 4296, "[v_player_match_rating_stream_cursor_input]!" ], "where": [ - 4242 + 4288 ] } ], "v_player_multi_kills": [ - 4256, + 4302, { "distinct_on": [ - 4272, + 4318, "[v_player_multi_kills_select_column!]" ], "limit": [ @@ -137824,19 +138936,19 @@ export default { 38 ], "order_by": [ - 4271, + 4317, "[v_player_multi_kills_order_by!]" ], "where": [ - 4265 + 4311 ] } ], "v_player_multi_kills_aggregate": [ - 4257, + 4303, { "distinct_on": [ - 4272, + 4318, "[v_player_multi_kills_select_column!]" ], "limit": [ @@ -137846,35 +138958,35 @@ export default { 38 ], "order_by": [ - 4271, + 4317, "[v_player_multi_kills_order_by!]" ], "where": [ - 4265 + 4311 ] } ], "v_player_multi_kills_stream": [ - 4256, + 4302, { "batch_size": [ 38, "Int!" ], "cursor": [ - 4279, + 4325, "[v_player_multi_kills_stream_cursor_input]!" ], "where": [ - 4265 + 4311 ] } ], "v_player_weapon_damage": [ - 4289, + 4335, { "distinct_on": [ - 4297, + 4343, "[v_player_weapon_damage_select_column!]" ], "limit": [ @@ -137884,19 +138996,19 @@ export default { 38 ], "order_by": [ - 4296, + 4342, "[v_player_weapon_damage_order_by!]" ], "where": [ - 4293 + 4339 ] } ], "v_player_weapon_damage_aggregate": [ - 4290, + 4336, { "distinct_on": [ - 4297, + 4343, "[v_player_weapon_damage_select_column!]" ], "limit": [ @@ -137906,35 +139018,35 @@ export default { 38 ], "order_by": [ - 4296, + 4342, "[v_player_weapon_damage_order_by!]" ], "where": [ - 4293 + 4339 ] } ], "v_player_weapon_damage_stream": [ - 4289, + 4335, { "batch_size": [ 38, "Int!" ], "cursor": [ - 4301, + 4347, "[v_player_weapon_damage_stream_cursor_input]!" ], "where": [ - 4293 + 4339 ] } ], "v_player_weapon_kills": [ - 4307, + 4353, { "distinct_on": [ - 4315, + 4361, "[v_player_weapon_kills_select_column!]" ], "limit": [ @@ -137944,19 +139056,19 @@ export default { 38 ], "order_by": [ - 4314, + 4360, "[v_player_weapon_kills_order_by!]" ], "where": [ - 4311 + 4357 ] } ], "v_player_weapon_kills_aggregate": [ - 4308, + 4354, { "distinct_on": [ - 4315, + 4361, "[v_player_weapon_kills_select_column!]" ], "limit": [ @@ -137966,35 +139078,35 @@ export default { 38 ], "order_by": [ - 4314, + 4360, "[v_player_weapon_kills_order_by!]" ], "where": [ - 4311 + 4357 ] } ], "v_player_weapon_kills_stream": [ - 4307, + 4353, { "batch_size": [ 38, "Int!" ], "cursor": [ - 4319, + 4365, "[v_player_weapon_kills_stream_cursor_input]!" ], "where": [ - 4311 + 4357 ] } ], "v_pool_maps": [ - 4325, + 4371, { "distinct_on": [ - 4342, + 4388, "[v_pool_maps_select_column!]" ], "limit": [ @@ -138004,19 +139116,19 @@ export default { 38 ], "order_by": [ - 4341, + 4387, "[v_pool_maps_order_by!]" ], "where": [ - 4334 + 4380 ] } ], "v_pool_maps_aggregate": [ - 4326, + 4372, { "distinct_on": [ - 4342, + 4388, "[v_pool_maps_select_column!]" ], "limit": [ @@ -138026,35 +139138,35 @@ export default { 38 ], "order_by": [ - 4341, + 4387, "[v_pool_maps_order_by!]" ], "where": [ - 4334 + 4380 ] } ], "v_pool_maps_stream": [ - 4325, + 4371, { "batch_size": [ 38, "Int!" ], "cursor": [ - 4346, + 4392, "[v_pool_maps_stream_cursor_input]!" ], "where": [ - 4334 + 4380 ] } ], "v_steam_account_pool_status": [ - 4349, + 4395, { "distinct_on": [ - 4357, + 4403, "[v_steam_account_pool_status_select_column!]" ], "limit": [ @@ -138064,19 +139176,19 @@ export default { 38 ], "order_by": [ - 4356, + 4402, "[v_steam_account_pool_status_order_by!]" ], "where": [ - 4353 + 4399 ] } ], "v_steam_account_pool_status_aggregate": [ - 4350, + 4396, { "distinct_on": [ - 4357, + 4403, "[v_steam_account_pool_status_select_column!]" ], "limit": [ @@ -138086,35 +139198,35 @@ export default { 38 ], "order_by": [ - 4356, + 4402, "[v_steam_account_pool_status_order_by!]" ], "where": [ - 4353 + 4399 ] } ], "v_steam_account_pool_status_stream": [ - 4349, + 4395, { "batch_size": [ 38, "Int!" ], "cursor": [ - 4361, + 4407, "[v_steam_account_pool_status_stream_cursor_input]!" ], "where": [ - 4353 + 4399 ] } ], "v_team_ranks": [ - 4367, + 4413, { "distinct_on": [ - 4377, + 4423, "[v_team_ranks_select_column!]" ], "limit": [ @@ -138124,19 +139236,19 @@ export default { 38 ], "order_by": [ - 4376, + 4422, "[v_team_ranks_order_by!]" ], "where": [ - 4371 + 4417 ] } ], "v_team_ranks_aggregate": [ - 4368, + 4414, { "distinct_on": [ - 4377, + 4423, "[v_team_ranks_select_column!]" ], "limit": [ @@ -138146,35 +139258,35 @@ export default { 38 ], "order_by": [ - 4376, + 4422, "[v_team_ranks_order_by!]" ], "where": [ - 4371 + 4417 ] } ], "v_team_ranks_stream": [ - 4367, + 4413, { "batch_size": [ 38, "Int!" ], "cursor": [ - 4381, + 4427, "[v_team_ranks_stream_cursor_input]!" ], "where": [ - 4371 + 4417 ] } ], "v_team_reputation": [ - 4387, + 4433, { "distinct_on": [ - 4397, + 4443, "[v_team_reputation_select_column!]" ], "limit": [ @@ -138184,19 +139296,19 @@ export default { 38 ], "order_by": [ - 4396, + 4442, "[v_team_reputation_order_by!]" ], "where": [ - 4391 + 4437 ] } ], "v_team_reputation_aggregate": [ - 4388, + 4434, { "distinct_on": [ - 4397, + 4443, "[v_team_reputation_select_column!]" ], "limit": [ @@ -138206,35 +139318,35 @@ export default { 38 ], "order_by": [ - 4396, + 4442, "[v_team_reputation_order_by!]" ], "where": [ - 4391 + 4437 ] } ], "v_team_reputation_stream": [ - 4387, + 4433, { "batch_size": [ 38, "Int!" ], "cursor": [ - 4401, + 4447, "[v_team_reputation_stream_cursor_input]!" ], "where": [ - 4391 + 4437 ] } ], "v_team_stage_results": [ - 4407, + 4453, { "distinct_on": [ - 4439, + 4485, "[v_team_stage_results_select_column!]" ], "limit": [ @@ -138244,19 +139356,19 @@ export default { 38 ], "order_by": [ - 4437, + 4483, "[v_team_stage_results_order_by!]" ], "where": [ - 4426 + 4472 ] } ], "v_team_stage_results_aggregate": [ - 4408, + 4454, { "distinct_on": [ - 4439, + 4485, "[v_team_stage_results_select_column!]" ], "limit": [ @@ -138266,48 +139378,48 @@ export default { 38 ], "order_by": [ - 4437, + 4483, "[v_team_stage_results_order_by!]" ], "where": [ - 4426 + 4472 ] } ], "v_team_stage_results_by_pk": [ - 4407, + 4453, { "tournament_stage_id": [ - 3818, + 3864, "uuid!" ], "tournament_team_id": [ - 3818, + 3864, "uuid!" ] } ], "v_team_stage_results_stream": [ - 4407, + 4453, { "batch_size": [ 38, "Int!" ], "cursor": [ - 4455, + 4501, "[v_team_stage_results_stream_cursor_input]!" ], "where": [ - 4426 + 4472 ] } ], "v_team_tournament_results": [ - 4467, + 4513, { "distinct_on": [ - 4493, + 4539, "[v_team_tournament_results_select_column!]" ], "limit": [ @@ -138317,19 +139429,19 @@ export default { 38 ], "order_by": [ - 4492, + 4538, "[v_team_tournament_results_order_by!]" ], "where": [ - 4486 + 4532 ] } ], "v_team_tournament_results_aggregate": [ - 4468, + 4514, { "distinct_on": [ - 4493, + 4539, "[v_team_tournament_results_select_column!]" ], "limit": [ @@ -138339,35 +139451,35 @@ export default { 38 ], "order_by": [ - 4492, + 4538, "[v_team_tournament_results_order_by!]" ], "where": [ - 4486 + 4532 ] } ], "v_team_tournament_results_stream": [ - 4467, + 4513, { "batch_size": [ 38, "Int!" ], "cursor": [ - 4508, + 4554, "[v_team_tournament_results_stream_cursor_input]!" ], "where": [ - 4486 + 4532 ] } ], "v_tournament_player_stats": [ - 4518, + 4564, { "distinct_on": [ - 4544, + 4590, "[v_tournament_player_stats_select_column!]" ], "limit": [ @@ -138377,19 +139489,19 @@ export default { 38 ], "order_by": [ - 4543, + 4589, "[v_tournament_player_stats_order_by!]" ], "where": [ - 4537 + 4583 ] } ], "v_tournament_player_stats_aggregate": [ - 4519, + 4565, { "distinct_on": [ - 4544, + 4590, "[v_tournament_player_stats_select_column!]" ], "limit": [ @@ -138399,32 +139511,32 @@ export default { 38 ], "order_by": [ - 4543, + 4589, "[v_tournament_player_stats_order_by!]" ], "where": [ - 4537 + 4583 ] } ], "v_tournament_player_stats_stream": [ - 4518, + 4564, { "batch_size": [ 38, "Int!" ], "cursor": [ - 4559, + 4605, "[v_tournament_player_stats_stream_cursor_input]!" ], "where": [ - 4537 + 4583 ] } ], "__typename": [ - 70 + 75 ] } } diff --git a/hasura/functions/steam-account/claim_free_steam_account.sql b/hasura/functions/steam-account/claim_free_steam_account.sql index 168c4ef1..752e7e2d 100644 --- a/hasura/functions/steam-account/claim_free_steam_account.sql +++ b/hasura/functions/steam-account/claim_free_steam_account.sql @@ -7,11 +7,14 @@ declare begin -- Prefer the account this node last logged in with so the -- per-account Steam cache stays warm. + -- role = 'gpu' only: 'friends' accounts are reserved for the presence bot and + -- must never be claimed for GPU work (a Steam account can't log in twice). if p_node_id is not null then select id into v_id from steam_accounts where last_node_id = p_node_id + and role = 'gpu' and id not in (select * from busy_steam_account_ids()) order by id for update skip locked @@ -22,7 +25,8 @@ begin select id into v_id from steam_accounts - where id not in (select * from busy_steam_account_ids()) + where role = 'gpu' + and id not in (select * from busy_steam_account_ids()) order by id for update skip locked limit 1; diff --git a/hasura/metadata/actions.graphql b/hasura/metadata/actions.graphql index e65459b9..fffd2047 100644 --- a/hasura/metadata/actions.graphql +++ b/hasura/metadata/actions.graphql @@ -1446,3 +1446,67 @@ type Mutation { ): SuccessOutput } + +type Mutation { + assignSteamPresenceBot: SteamPresenceBotAssignment +} + +type Query { + steamPresenceAdminStatus: SteamPresenceAdminStatusOutput! +} + +type Mutation { + addSteamPresenceBotAccount( + username: String! + bot_secret: String! + friend_capacity: Int + ): SuccessOutput +} + +type Mutation { + submitSteamPresenceSteamGuard( + account_id: String! + code: String! + ): SuccessOutput +} + +type Mutation { + removeSteamPresenceBotAccount( + account_id: String! + ): SuccessOutput +} + +type SteamPresenceBotAssignment { + enabled: Boolean! + steamId: String + addUrl: String + status: String +} + +type SteamPresencePool { + bots: Int! + online: Int! + watching: Int! + pending: Int! + capacity: Int! +} + +type SteamPresenceBot { + id: String! + username: String! + steamId: String + steamLevel: Int + online: Boolean! + needs2fa: Boolean! + guardType: String + guardLastWrong: Boolean! + watching: Int! + assigned: Int! + capacity: Int! +} + +type SteamPresenceAdminStatusOutput { + enabled: Boolean! + pool: SteamPresencePool! + bots: [SteamPresenceBot!]! +} diff --git a/hasura/metadata/actions.yaml b/hasura/metadata/actions.yaml index 1cd60155..71efda37 100644 --- a/hasura/metadata/actions.yaml +++ b/hasura/metadata/actions.yaml @@ -1096,6 +1096,46 @@ actions: permissions: - role: administrator comment: Write content to file on game server + - name: assignSteamPresenceBot + definition: + kind: synchronous + handler: '{{HASURA_GRAPHQL_ACTIONS_HOOK}}' + forward_client_headers: true + permissions: + - role: user + comment: Assign the presence bot a user should add as a friend + - name: steamPresenceAdminStatus + definition: + kind: "" + handler: '{{HASURA_GRAPHQL_ACTIONS_HOOK}}' + forward_client_headers: true + permissions: + - role: administrator + comment: Steam presence bot admin dashboard status + - name: addSteamPresenceBotAccount + definition: + kind: synchronous + handler: '{{HASURA_GRAPHQL_ACTIONS_HOOK}}' + forward_client_headers: true + permissions: + - role: administrator + comment: Add a friends-role presence bot account to the pool + - name: submitSteamPresenceSteamGuard + definition: + kind: synchronous + handler: '{{HASURA_GRAPHQL_ACTIONS_HOOK}}' + forward_client_headers: true + permissions: + - role: administrator + comment: Submit a Steam Guard code for a presence bot account + - name: removeSteamPresenceBotAccount + definition: + kind: synchronous + handler: '{{HASURA_GRAPHQL_ACTIONS_HOOK}}' + forward_client_headers: true + permissions: + - role: administrator + comment: Remove a friends-role presence bot account custom_types: enums: [] input_objects: @@ -1106,6 +1146,10 @@ custom_types: - name: ClipOutputInput - name: ClipSpecInput objects: + - name: SteamPresenceBotAssignment + - name: SteamPresencePool + - name: SteamPresenceBot + - name: SteamPresenceAdminStatusOutput - name: SteamMatchHistoryLinkOutput - name: SteamMatchHistoryPollOutput - name: PendingMatchImportActionOutput diff --git a/hasura/metadata/databases/default/tables/public_player_steam_bot_friend.yaml b/hasura/metadata/databases/default/tables/public_player_steam_bot_friend.yaml new file mode 100644 index 00000000..411ae411 --- /dev/null +++ b/hasura/metadata/databases/default/tables/public_player_steam_bot_friend.yaml @@ -0,0 +1,22 @@ +table: + name: player_steam_bot_friend + schema: public +object_relationships: + - name: player + using: + foreign_key_constraint_on: steam_id +select_permissions: + - role: user + permission: + columns: + - steam_id + - bot_steamid64 + - status + - last_presence_state + - friended_at + - created_at + - updated_at + filter: + steam_id: + _eq: X-Hasura-User-Id + comment: "" diff --git a/hasura/metadata/databases/default/tables/public_steam_presence_events.yaml b/hasura/metadata/databases/default/tables/public_steam_presence_events.yaml new file mode 100644 index 00000000..a408806e --- /dev/null +++ b/hasura/metadata/databases/default/tables/public_steam_presence_events.yaml @@ -0,0 +1,14 @@ +table: + name: steam_presence_events + schema: public +select_permissions: + - role: administrator + permission: + columns: + - id + - type + - message + - created_at + filter: {} + allow_aggregations: true + comment: "" diff --git a/hasura/metadata/databases/default/tables/tables.yaml b/hasura/metadata/databases/default/tables/tables.yaml index c1816bed..30df3eae 100644 --- a/hasura/metadata/databases/default/tables/tables.yaml +++ b/hasura/metadata/databases/default/tables/tables.yaml @@ -87,7 +87,9 @@ - "!include public_player_premier_rank_history.yaml" - "!include public_player_sanctions.yaml" - "!include public_player_stats.yaml" +- "!include public_player_steam_bot_friend.yaml" - "!include public_player_steam_match_auth.yaml" +- "!include public_steam_presence_events.yaml" - "!include public_player_unused_utility.yaml" - "!include public_player_utility.yaml" - "!include public_players.yaml" diff --git a/hasura/migrations/default/1865000000000_steam_presence/down.sql b/hasura/migrations/default/1865000000000_steam_presence/down.sql new file mode 100644 index 00000000..cb55ce0f --- /dev/null +++ b/hasura/migrations/default/1865000000000_steam_presence/down.sql @@ -0,0 +1,10 @@ +DELETE FROM public.e_notification_types WHERE "value" = 'MatchImported'; + +DROP INDEX IF EXISTS public.idx_steam_accounts_role; +ALTER TABLE "public"."steam_accounts" + DROP COLUMN IF EXISTS "friend_capacity", + DROP COLUMN IF EXISTS "steamid64", + DROP COLUMN IF EXISTS "role"; + +DROP INDEX IF EXISTS public.idx_player_steam_bot_friend_account; +DROP TABLE IF EXISTS "public"."player_steam_bot_friend"; diff --git a/hasura/migrations/default/1865000000000_steam_presence/up.sql b/hasura/migrations/default/1865000000000_steam_presence/up.sql new file mode 100644 index 00000000..230dcc2e --- /dev/null +++ b/hasura/migrations/default/1865000000000_steam_presence/up.sql @@ -0,0 +1,39 @@ +-- Tracks which players have added a 5stack presence bot as a Steam friend, so +-- the bot can watch their live match state and trigger near-real-time imports. +CREATE TABLE IF NOT EXISTS "public"."player_steam_bot_friend" ( + "steam_id" bigint NOT NULL, + -- Which pool account they friended (nullable in the single-bot phase). + "bot_steam_account_id" uuid, + "bot_steamid64" bigint, + -- 'pending' (invite shown, not yet accepted) | 'friends' + "status" text NOT NULL DEFAULT 'pending', + "last_presence_state" jsonb, + "friended_at" timestamptz, + "created_at" timestamptz NOT NULL DEFAULT now(), + "updated_at" timestamptz NOT NULL DEFAULT now(), + PRIMARY KEY ("steam_id"), + FOREIGN KEY ("steam_id") REFERENCES "public"."players"("steam_id") ON UPDATE cascade ON DELETE cascade, + FOREIGN KEY ("bot_steam_account_id") REFERENCES "public"."steam_accounts"("id") ON UPDATE cascade ON DELETE set null +); + +-- Find all friends assigned to a given bot account (capacity / sharding). +CREATE INDEX IF NOT EXISTS idx_player_steam_bot_friend_account + ON public.player_steam_bot_friend (bot_steam_account_id); + +-- Partition the shared pool: an account is used EITHER for GPU work (logging in +-- on a game node to watch demos/render) OR as a presence "friends" bot — never +-- both, since a Steam account can only be logged in one place at a time. The +-- GPU claimer (claim_free_steam_account) filters role='gpu', so friends accounts +-- are never handed to a GPU job. +ALTER TABLE "public"."steam_accounts" + ADD COLUMN IF NOT EXISTS "role" text NOT NULL DEFAULT 'gpu', + ADD COLUMN IF NOT EXISTS "steamid64" bigint, + ADD COLUMN IF NOT EXISTS "friend_capacity" integer NOT NULL DEFAULT 250; + +CREATE INDEX IF NOT EXISTS idx_steam_accounts_role + ON public.steam_accounts (role); + +-- Notification fired when a player's Valve match is auto-imported. +INSERT INTO public.e_notification_types ("value", "description") VALUES + ('MatchImported', 'A Valve match you played was imported to 5stack') +ON CONFLICT (value) DO UPDATE SET "description" = EXCLUDED."description"; diff --git a/hasura/migrations/default/1866000000000_steam_presence_events/down.sql b/hasura/migrations/default/1866000000000_steam_presence_events/down.sql new file mode 100644 index 00000000..4bc1a024 --- /dev/null +++ b/hasura/migrations/default/1866000000000_steam_presence_events/down.sql @@ -0,0 +1,3 @@ +ALTER TABLE "public"."steam_accounts" DROP COLUMN IF EXISTS "steam_level"; +DROP INDEX IF EXISTS public.idx_steam_presence_events_created_at; +DROP TABLE IF EXISTS "public"."steam_presence_events"; diff --git a/hasura/migrations/default/1866000000000_steam_presence_events/up.sql b/hasura/migrations/default/1866000000000_steam_presence_events/up.sql new file mode 100644 index 00000000..eeb457d2 --- /dev/null +++ b/hasura/migrations/default/1866000000000_steam_presence_events/up.sql @@ -0,0 +1,17 @@ +-- Real-time activity feed for the presence bot admin dashboard, subscribed to +-- over websockets via Hasura (replaces the Redis ring buffer). +CREATE TABLE IF NOT EXISTS "public"."steam_presence_events" ( + "id" uuid NOT NULL DEFAULT gen_random_uuid(), + "type" text NOT NULL, + "message" text NOT NULL, + "created_at" timestamptz NOT NULL DEFAULT now(), + PRIMARY KEY ("id") +); + +CREATE INDEX IF NOT EXISTS idx_steam_presence_events_created_at + ON public.steam_presence_events (created_at DESC); + +-- Bot's Steam level — friend capacity is derived from it (Steam allows +-- 250 + 5*level friends, capped at 2000). Detected on login. +ALTER TABLE "public"."steam_accounts" + ADD COLUMN IF NOT EXISTS "steam_level" integer; diff --git a/src/app.module.ts b/src/app.module.ts index e648cdef..137950f9 100644 --- a/src/app.module.ts +++ b/src/app.module.ts @@ -51,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 { SteamPresenceModule } from "./steam-presence/steam-presence.module"; import { NewsModule } from "./news/news.module"; import { ScrimsModule } from "./scrims/scrims.module"; @@ -144,6 +145,7 @@ import { ScrimsModule } from "./scrims/scrims.module"; TournamentsModule, FaceitModule, SteamMatchHistoryModule, + SteamPresenceModule, NewsModule, ScrimsModule, ], diff --git a/src/hasura/hasura.service.ts b/src/hasura/hasura.service.ts index b8670f76..f53b810f 100644 --- a/src/hasura/hasura.service.ts +++ b/src/hasura/hasura.service.ts @@ -146,6 +146,12 @@ export class HasuraService { "insert into settings (name, value) values ('relay_domain', $1) on conflict (name) do update set value = $1", [this.appConfig.relayDomain], ); + + // Steam presence bot is on by default; seed the row so the admin toggle + // reflects it. `do nothing` preserves an admin's explicit off. + await this.postgresService.query( + "insert into settings (name, value) values ('public.steam_presence_enabled', 'true') on conflict (name) do nothing", + ); } private async applyMigrations(path: string): Promise { diff --git a/src/steam-match-history/match-import.service.ts b/src/steam-match-history/match-import.service.ts index 7103b8dc..1ff991ae 100644 --- a/src/steam-match-history/match-import.service.ts +++ b/src/steam-match-history/match-import.service.ts @@ -10,6 +10,7 @@ import { DemoMetadataService } from "../demos/demo-metadata.service"; import { ParsedDemo, ParsedPlayer } from "../demos/demo-parser.service"; import { S3Service } from "../s3/s3.service"; import { FaceitService } from "../faceit/faceit.service"; +import { SteamPresenceService } from "../steam-presence/steam-presence.service"; import { e_match_types_enum } from "../../generated"; type MatchType = e_match_types_enum; @@ -36,6 +37,7 @@ export class MatchImportService { private readonly s3: S3Service, @Inject(forwardRef(() => FaceitService)) private readonly faceit: FaceitService, + private readonly steamPresence: SteamPresenceService, @InjectQueue(SteamMatchHistoryQueues.CheckSteamBansForMatch) private readonly steamBansQueue: Queue, ) { @@ -248,9 +250,43 @@ export class MatchImportService { ), ); + void this.steamPresence + .notifyMatchImported({ + matchId, + matchType, + mapName: parsed.map_name ?? null, + players: MatchImportService.computeImportedPlayers(parsed, players), + }) + .catch((error) => + this.logger.warn( + `match-imported notify failed for match ${matchId}: ${(error as Error)?.message ?? String(error)}`, + ), + ); + return { matchId }; } + private static computeImportedPlayers( + parsed: ParsedDemo, + players: ParsedPlayer[], + ): Array<{ steamId: string; kills: number; deaths: number }> { + const kills = new Map(); + const deaths = new Map(); + for (const kill of parsed.kills ?? []) { + if (kill.killer) { + kills.set(kill.killer, (kills.get(kill.killer) ?? 0) + 1); + } + if (kill.victim) { + deaths.set(kill.victim, (deaths.get(kill.victim) ?? 0) + 1); + } + } + return players.map((player) => ({ + steamId: player.steam_id, + kills: kills.get(player.steam_id) ?? 0, + deaths: deaths.get(player.steam_id) ?? 0, + })); + } + // On import AND re-import: (1) refresh every participant's CURRENT faceit elo // onto their players row — exactly what the player page does — then (2) // snapshot this match's elo into the rank history. diff --git a/src/steam-match-history/steam-match-history.module.ts b/src/steam-match-history/steam-match-history.module.ts index b4ff7a47..aa2738e0 100644 --- a/src/steam-match-history/steam-match-history.module.ts +++ b/src/steam-match-history/steam-match-history.module.ts @@ -13,6 +13,7 @@ import { PostgresModule } from "../postgres/postgres.module"; import { loggerFactory } from "../utilities/LoggerFactory"; import { getQueuesProcessors } from "../utilities/QueueProcessors"; import { FaceitModule } from "../faceit/faceit.module"; +import { SteamPresenceModule } from "../steam-presence/steam-presence.module"; import { SteamMatchHistoryController } from "./steam-match-history.controller"; import { SteamMatchHistoryService } from "./steam-match-history.service"; import { SteamBansService } from "./steam-bans.service"; @@ -86,6 +87,7 @@ import { ProcessUploadedDemo } from "./jobs/ProcessUploadedDemo"; ClipsModule, PostgresModule, forwardRef(() => FaceitModule), + SteamPresenceModule, ], providers: [ SteamMatchHistoryService, diff --git a/src/steam-presence/presence.spec.ts b/src/steam-presence/presence.spec.ts new file mode 100644 index 00000000..04d09860 --- /dev/null +++ b/src/steam-presence/presence.spec.ts @@ -0,0 +1,174 @@ +import { + parseCs2Presence, + isMatchEndTransition, + Cs2PresenceState, +} from "./presence"; + +describe("parseCs2Presence", () => { + it("reports not in CS2 when gameid is missing", () => { + expect(parseCs2Presence({})).toEqual({ + inCs2: false, + inGame: false, + inMatch: false, + mode: null, + map: null, + }); + }); + + it("reports not in CS2 for a different game", () => { + const state = parseCs2Presence({ gameid: "570" }); + expect(state.inCs2).toBe(false); + expect(state.inMatch).toBe(false); + }); + + it("in CS2 but at the main menu is not in a match", () => { + const state = parseCs2Presence({ + gameid: "730", + richPresence: { steam_display: "#display_Menu" }, + }); + expect(state.inCs2).toBe(true); + expect(state.inMatch).toBe(false); + }); + + it("detects an active premier match", () => { + const state = parseCs2Presence({ + gameid: 730, + richPresence: { + "game:state": "game", + "game:mode": "premier", + "game:map": "de_mirage", + steam_display: "#display_GameKnownMapScore", + "game:score": "5:3", + }, + }); + expect(state).toEqual({ + inCs2: true, + inGame: true, + inMatch: true, + mode: "premier", + map: "de_mirage", + }); + }); + + it("detects an active competitive match", () => { + const state = parseCs2Presence({ + gameid: "730", + richPresence: { + "game:state": "game", + "game:mode": "competitive", + "game:map": "mg_de_dust2", + }, + }); + expect(state.inMatch).toBe(true); + expect(state.mode).toBe("competitive"); + // mg_ prefix stripped + expect(state.map).toBe("de_dust2"); + }); + + it("treats casual / deathmatch as in-game but not a match we import", () => { + const casual = parseCs2Presence({ + gameid: "730", + richPresence: { + "game:state": "game", + "game:mode": "casual", + "game:map": "de_dust2", + }, + }); + expect(casual.inCs2).toBe(true); + expect(casual.inGame).toBe(true); + expect(casual.inMatch).toBe(false); + expect(casual.mode).toBe("casual"); + + const dm = parseCs2Presence({ + gameid: "730", + richPresence: { + "game:state": "game", + "game:mode": "deathmatch", + "game:map": "de_mirage", + }, + }); + expect(dm.inGame).toBe(true); + expect(dm.inMatch).toBe(false); + expect(dm.mode).toBe("deathmatch"); + }); + + it("treats a custom server match (no game:mode) as in-game", () => { + const state = parseCs2Presence({ + gameid: "730", + richPresence: { + "game:state": "game", + "game:map": "de_nuke", + }, + }); + expect(state.inGame).toBe(true); + expect(state.inMatch).toBe(false); + expect(state.mode).toBeNull(); + expect(state.map).toBe("de_nuke"); + }); + + it("menu is not in-game", () => { + const state = parseCs2Presence({ + gameid: "730", + richPresence: { steam_display: "#display_Menu", "game:mode": "competitive" }, + }); + expect(state.inGame).toBe(false); + expect(state.inMatch).toBe(false); + }); + + it("accepts the array form of rich presence", () => { + const state = parseCs2Presence({ + gameid: "730", + richPresence: [ + { key: "game:state", value: "game" }, + { key: "game:mode", value: "competitive" }, + { key: "game:map", value: "de_inferno" }, + ], + }); + expect(state.inMatch).toBe(true); + expect(state.map).toBe("de_inferno"); + }); +}); + +describe("isMatchEndTransition", () => { + const inMatch: Cs2PresenceState = { + inCs2: true, + inGame: true, + inMatch: true, + mode: "premier", + map: "de_mirage", + }; + const menu: Cs2PresenceState = { + inCs2: true, + inGame: false, + inMatch: false, + mode: null, + map: null, + }; + const offline: Cs2PresenceState = { + inCs2: false, + inGame: false, + inMatch: false, + mode: null, + map: null, + }; + + it("fires when a match ends back to menu", () => { + expect(isMatchEndTransition(inMatch, menu)).toBe(true); + }); + + it("fires when a match ends by quitting the game", () => { + expect(isMatchEndTransition(inMatch, offline)).toBe(true); + }); + + it("does not fire when entering a match", () => { + expect(isMatchEndTransition(menu, inMatch)).toBe(false); + }); + + it("does not fire with no prior state", () => { + expect(isMatchEndTransition(null, menu)).toBe(false); + }); + + it("does not fire while still in the match", () => { + expect(isMatchEndTransition(inMatch, inMatch)).toBe(false); + }); +}); diff --git a/src/steam-presence/presence.ts b/src/steam-presence/presence.ts new file mode 100644 index 00000000..35b5f6a0 --- /dev/null +++ b/src/steam-presence/presence.ts @@ -0,0 +1,102 @@ +export const CS2_APP_ID = 730; + +// CS2 matchmaking modes whose demos we can import via match-sharing codes. +// These are the values CS2 reports in the `game:mode` rich-presence key. +const MATCHMAKING_MODES = new Set([ + "competitive", + "premier", + "scrimcomp2v2", // wingman + "scrimcomp5v5", + "wingman", +]); + +export type Cs2PresenceState = { + // Player is currently running CS2 (gameid === 730). + inCs2: boolean; + // Player is in ANY active game (deathmatch, casual, custom/5stack, MM, …) as + // opposed to the main menu / lobby. Drives the "what the bot sees" display. + inGame: boolean; + // Player is in an active matchmaking match we can import (comp/premier/wingman). + // Narrower than inGame — this is what triggers the history poll. + inMatch: boolean; + // Raw `game:mode` (e.g. competitive, premier, scrimcomp2v2, deathmatch, casual, + // survival, "" for custom servers). null when unknown. + mode: string | null; + map: string | null; +}; + +type RawRichPresence = + | Record + | Array<{ key?: string; value?: string }> + | null + | undefined; + +export type PresenceInput = { + // steam-user reports the app being played as a numeric-ish id (string). + gameid?: string | number | null; + // Rich presence as either the steam-user array form ([{key,value}]) or a map. + richPresence?: RawRichPresence; +}; + +function normalizeRichPresence(rp: RawRichPresence): Record { + if (!rp) { + return {}; + } + if (Array.isArray(rp)) { + const map: Record = {}; + for (const entry of rp) { + if (entry?.key != null && entry.value != null) { + map[entry.key] = entry.value; + } + } + return map; + } + return rp; +} + +// Best-effort: CS2 doesn't expose a single boolean for "in a match", so we infer +// it from the matchmaking mode plus the in-game signals. The exact key values +// must be confirmed against real captured presence (see presence.spec.ts); this +// is intentionally isolated so the heuristic is cheap to adjust. +function looksInGame(state: string | undefined, display: string | undefined): boolean { + if (state && state.toLowerCase() === "game") { + return true; + } + if (!display) { + return false; + } + const d = display.toLowerCase(); + if (d.includes("menu") || d.includes("lobby")) { + return false; + } + // e.g. #display_GameKnownMapScore, #display_GameWithMapScore + return d.includes("game") || d.includes("map") || d.includes("score"); +} + +export function parseCs2Presence(input: PresenceInput): Cs2PresenceState { + const inCs2 = input.gameid != null && String(input.gameid) === String(CS2_APP_ID); + + const rp = normalizeRichPresence(input.richPresence); + const mode = rp["game:mode"]?.toLowerCase() ?? null; + const rawMap = rp["game:map"] ?? null; + const map = rawMap ? rawMap.replace(/^mg_/, "") : null; + + // In a game of any kind — covers deathmatch/casual/custom/5stack too. A + // custom-server match often reports no game:mode but still has a map + game + // state, so we don't require a known mode here. + const inGame = inCs2 && looksInGame(rp["game:state"], rp["steam_display"]); + + // Narrow: only the matchmaking modes whose demos we import via share codes. + const inMatch = inGame && mode != null && MATCHMAKING_MODES.has(mode); + + return { inCs2, inGame, inMatch, mode, map }; +} + +// Whether a state change should trigger an immediate match-history poll for the +// user: they were in a match and now are not (match ended / left the game). +export function isMatchEndTransition( + previous: Cs2PresenceState | null, + current: Cs2PresenceState, +): boolean { + return previous?.inMatch === true && current.inMatch === false; +} diff --git a/src/steam-presence/steam-presence.controller.ts b/src/steam-presence/steam-presence.controller.ts new file mode 100644 index 00000000..364f814d --- /dev/null +++ b/src/steam-presence/steam-presence.controller.ts @@ -0,0 +1,116 @@ +import { + BadRequestException, + Controller, + ForbiddenException, +} from "@nestjs/common"; +import { HasuraAction } from "../hasura/hasura.controller"; +import { User } from "../auth/types/User"; +import { + PresenceAdminStatus, + SteamPresenceService, +} from "./steam-presence.service"; + +@Controller("steam-presence") +export class SteamPresenceController { + constructor(private readonly steamPresence: SteamPresenceService) {} + + // Assigns (or returns the already-assigned) bot a user should add as a friend + // for instant match imports. steamId/addUrl are null when presence is off or + // the pool has no online bot with free capacity. + @HasuraAction() + public async assignSteamPresenceBot(data: { user: User }): Promise<{ + enabled: boolean; + steamId: string | null; + addUrl: string | null; + status: string | null; + }> { + if (!data.user?.steam_id) { + throw new ForbiddenException("authentication required"); + } + if (!(await this.steamPresence.isEnabled())) { + return { enabled: false, steamId: null, addUrl: null, status: null }; + } + const bot = await this.steamPresence.assignBotForUser(data.user.steam_id); + return { + enabled: true, + steamId: bot?.steamId ?? null, + addUrl: bot?.addUrl ?? null, + status: bot?.status ?? null, + }; + } + + // Admin debug dashboard data: pool totals, per-bot live status, recent events. + @HasuraAction() + public async steamPresenceAdminStatus(data: { + user: User; + }): Promise { + this.assertAdmin(data.user); + return this.steamPresence.getAdminStatus(); + } + + // Add a friends-role bot account to the pool (admin). + @HasuraAction() + public async addSteamPresenceBotAccount(data: { + user: User; + username?: string; + bot_secret?: string; + friend_capacity?: number; + }): Promise<{ success: boolean }> { + this.assertAdmin(data.user); + const username = data.username?.trim(); + const password = data.bot_secret; + if (!username || !password) { + throw new BadRequestException("username and bot_secret are required"); + } + const capacity = + Number.isFinite(data.friend_capacity) && Number(data.friend_capacity) > 0 + ? Math.min(Number(data.friend_capacity), 2000) + : undefined; + await this.steamPresence.addFriendsAccount(username, password, capacity); + return { success: true }; + } + + // Submit a Steam Guard (2FA) code for a bot account awaiting login (admin). + @HasuraAction() + public async submitSteamPresenceSteamGuard(data: { + user: User; + account_id?: string; + code?: string; + }): Promise<{ success: boolean }> { + this.assertAdmin(data.user); + if (!data.account_id) { + throw new BadRequestException("account_id is required"); + } + const code = data.code?.trim(); + if (!code) { + throw new BadRequestException("code is required"); + } + const result = await this.steamPresence.submitSteamGuard( + data.account_id, + code, + ); + return { success: result.ok }; + } + + // Remove a friends-role bot account (admin). + @HasuraAction() + public async removeSteamPresenceBotAccount(data: { + user: User; + account_id?: string; + }): Promise<{ success: boolean }> { + this.assertAdmin(data.user); + if (!data.account_id) { + throw new BadRequestException("account_id is required"); + } + const result = await this.steamPresence.removeFriendsAccount( + data.account_id, + ); + return { success: result.ok }; + } + + private assertAdmin(user?: User): void { + if (user?.role !== "administrator") { + throw new ForbiddenException("administrator access required"); + } + } +} diff --git a/src/steam-presence/steam-presence.module.ts b/src/steam-presence/steam-presence.module.ts new file mode 100644 index 00000000..29e9c655 --- /dev/null +++ b/src/steam-presence/steam-presence.module.ts @@ -0,0 +1,24 @@ +import { Module } from "@nestjs/common"; +import { BullModule } from "@nestjs/bullmq"; +import { CacheModule } from "../cache/cache.module"; +import { PostgresModule } from "../postgres/postgres.module"; +import { RedisModule } from "../redis/redis.module"; +import { SteamMatchHistoryQueues } from "../steam-match-history/enums/SteamMatchHistoryQueues"; +import { loggerFactory } from "../utilities/LoggerFactory"; +import { SteamPresenceService } from "./steam-presence.service"; +import { SteamPresenceController } from "./steam-presence.controller"; + +@Module({ + imports: [ + BullModule.registerQueue({ + name: SteamMatchHistoryQueues.PollSteamMatchHistoryForUser, + }), + CacheModule, + PostgresModule, + RedisModule, + ], + providers: [SteamPresenceService, loggerFactory()], + controllers: [SteamPresenceController], + exports: [SteamPresenceService], +}) +export class SteamPresenceModule {} diff --git a/src/steam-presence/steam-presence.service.ts b/src/steam-presence/steam-presence.service.ts new file mode 100644 index 00000000..a8bc1ef4 --- /dev/null +++ b/src/steam-presence/steam-presence.service.ts @@ -0,0 +1,927 @@ +import { randomUUID } from "crypto"; +import { + Injectable, + Logger, + OnApplicationBootstrap, + OnApplicationShutdown, +} from "@nestjs/common"; +import { ConfigService } from "@nestjs/config"; +import { InjectQueue } from "@nestjs/bullmq"; +import { Queue } from "bullmq"; +import { Redis } from "ioredis"; +import SteamUser from "steam-user"; +import { AppConfig } from "src/configs/types/AppConfig"; +import { CacheService } from "../cache/cache.service"; +import { PostgresService } from "../postgres/postgres.service"; +import { NotificationsService } from "../notifications/notifications.service"; +import { RedisManagerService } from "../redis/redis-manager/redis-manager.service"; +import { SteamMatchHistoryQueues } from "../steam-match-history/enums/SteamMatchHistoryQueues"; +import { + Cs2PresenceState, + isMatchEndTransition, + parseCs2Presence, +} from "./presence"; + +// Subset of the persona object delivered by the steam-user `user` event. CS2 +// reports the running app via `gameid` and live match state via `rich_presence`. +type SteamPersona = { + gameid?: string | number | null; + rich_presence?: Array<{ key?: string; value?: string }>; +}; + +type FriendsAccount = { + id: string; + username: string; + password: string; +}; + +type ImportedMatchPlayer = { + steamId: string; + kills: number; + deaths: number; +}; + +export type MatchImportedNotice = { + matchId: string; + matchType: string; + mapName: string | null; + players: ImportedMatchPlayer[]; +}; + +const LOCK_TTL_SECONDS = 30; +const TICK_MS = 10_000; +const PRESENCE_STATE_TTL_SECONDS = 24 * 60 * 60; +const CHAT_CHANNEL = "steam-presence:send-chat"; +const GUARD_CODE_CHANNEL = "steam-presence:guard-code"; +// Per-account "this bot is waiting for a Steam Guard code" marker, surfaced to +// the admin UI. TTL'd because the login attempt itself eventually times out. +const GUARD_PREFIX = "steam-presence:guard:"; +const GUARD_TTL_SECONDS = 300; + +const REFRESH_TOKEN_PREFIX = "steam-presence:refresh-token:"; +const ACCOUNT_LOCK_PREFIX = "steam-presence:account-lock:"; +const STATE_PREFIX = "steam-presence:state:"; +// Per-account "this account is logged in right now" marker (TTL-refreshed by the +// owning pod), so the admin view can show live online status across pods. +const ONLINE_PREFIX = "steam-presence:online:"; +// Cap on rows kept in the steam_presence_events feed table. +const EVENTS_MAX = 500; +// Admin kill-switch. Absent/anything-but-'false' => enabled (always-on default). +// 'public.' prefix matches the settings convention (guest-readable, like +// public.external_matches_enabled). +const SETTING_ENABLED = "public.steam_presence_enabled"; + +export type PresenceAdminStatus = { + enabled: boolean; + pool: { + bots: number; + online: number; + watching: number; + pending: number; + capacity: number; + }; + bots: Array<{ + id: string; + username: string; + steamId: string | null; + steamLevel: number | null; + online: boolean; + needs2fa: boolean; + guardType: "email" | "app" | null; + guardLastWrong: boolean; + watching: number; + assigned: number; + capacity: number; + }>; +}; + +// CAS: only act on a key we still own. +const RENEW_LUA = + "if redis.call('get', KEYS[1]) == ARGV[1] then return redis.call('expire', KEYS[1], ARGV[2]) else return 0 end"; +const RELEASE_LUA = + "if redis.call('get', KEYS[1]) == ARGV[1] then return redis.call('del', KEYS[1]) else return 0 end"; + +@Injectable() +export class SteamPresenceService + implements OnApplicationBootstrap, OnApplicationShutdown +{ + private readonly instanceId = randomUUID(); + private readonly appConfig: AppConfig; + private redis!: Redis; + private subscriber?: Redis; + private tickTimer?: NodeJS.Timeout; + + // accountId -> live steam-user client we own and are running. + private readonly clients = new Map(); + // accountIds for which we currently hold the Redis lock. + private readonly owned = new Set(); + // accountIds whose client has logged on (drives the online heartbeat). + private readonly connected = new Set(); + // Pending Steam Guard callbacks, keyed by accountId. Only the owning pod has + // these (they're in-memory closures from steam-user's `steamGuard` event). + private readonly pendingGuards = new Map void>(); + + constructor( + private readonly logger: Logger, + private readonly config: ConfigService, + private readonly cache: CacheService, + private readonly postgres: PostgresService, + private readonly redisManager: RedisManagerService, + @InjectQueue(SteamMatchHistoryQueues.PollSteamMatchHistoryForUser) + private readonly pollQueue: Queue, + ) { + this.appConfig = this.config.get("app"); + } + + // Always-on by default: the pool is a no-op unless friends-role accounts + // exist, so adding an account is the real "enable". This is just an admin + // kill-switch — only an explicit 'false' disables it. + public async isEnabled(): Promise { + const rows = await this.postgres.query>( + `SELECT value FROM public.settings WHERE name = $1 LIMIT 1`, + [SETTING_ENABLED], + ); + return rows.at(0)?.value !== "false"; + } + + onApplicationBootstrap(): void { + this.redis = this.redisManager.getConnection(); + this.subscriber = this.redis.duplicate(); + void this.subscriber.subscribe(CHAT_CHANNEL, GUARD_CODE_CHANNEL); + this.subscriber.on("message", (channel, message) => { + if (channel === CHAT_CHANNEL) { + void this.handleChatRequest(message); + } else if (channel === GUARD_CODE_CHANNEL) { + void this.handleGuardCode(message); + } + }); + + this.tickTimer = setInterval(() => void this.syncPool(), TICK_MS); + this.tickTimer.unref?.(); + void this.syncPool(); + } + + async onApplicationShutdown(): Promise { + if (this.tickTimer) { + clearInterval(this.tickTimer); + this.tickTimer = undefined; + } + if (this.subscriber) { + await this.subscriber.unsubscribe(CHAT_CHANNEL).catch(() => {}); + this.subscriber.disconnect(); + } + for (const accountId of [...this.owned]) { + await this.teardownAccount(accountId, true); + } + } + + // ---- pool ownership (cross-pod sharding via per-account Redis locks) ------ + + private async syncPool(): Promise { + if (!(await this.isEnabled())) { + // Kill-switch flipped off: drop everything we hold. + if (this.owned.size > 0) { + this.logger.log("steam-presence disabled via settings, disconnecting"); + for (const accountId of [...this.owned]) { + await this.teardownAccount(accountId, true); + } + } + return; + } + + let accounts: FriendsAccount[]; + try { + accounts = await this.postgres.query( + `SELECT id::text, username, password + FROM public.steam_accounts + WHERE role = 'friends'`, + ); + } catch (err) { + this.logger.error( + `steam-presence pool query failed: ${(err as Error).message}`, + ); + return; + } + + const desired = new Set(accounts.map((a) => a.id)); + + // Drop accounts we own that are no longer friends-role. + for (const accountId of [...this.owned]) { + if (!desired.has(accountId)) { + await this.teardownAccount(accountId, true); + } + } + + for (const account of accounts) { + const ownedAlready = this.owned.has(account.id); + const have = ownedAlready + ? await this.renewLock(account.id) + : await this.acquireLock(account.id); + + if (!have) { + if (ownedAlready) { + // Lost the lock (e.g. a stall let another pod grab it). + await this.teardownAccount(account.id, false); + } + continue; + } + + this.owned.add(account.id); + if (!this.clients.has(account.id)) { + this.connectAccount(account); + } + } + + // Refresh the online heartbeat for accounts that are logged on here. + for (const accountId of this.connected) { + await this.redis + .set(ONLINE_PREFIX + accountId, this.instanceId, "EX", LOCK_TTL_SECONDS) + .catch(() => {}); + } + } + + private async acquireLock(accountId: string): Promise { + const ok = await this.redis.set( + ACCOUNT_LOCK_PREFIX + accountId, + this.instanceId, + "EX", + LOCK_TTL_SECONDS, + "NX", + ); + return ok === "OK"; + } + + private async renewLock(accountId: string): Promise { + const renewed = await this.redis.eval( + RENEW_LUA, + 1, + ACCOUNT_LOCK_PREFIX + accountId, + this.instanceId, + String(LOCK_TTL_SECONDS), + ); + return renewed === 1; + } + + // ---- per-account steam client ------------------------------------------ + + private connectAccount(account: FriendsAccount): void { + this.logger.log(`steam-presence connecting bot account ${account.username}`); + const client = new SteamUser({ + enablePicsCache: false, + autoRelogin: true, + }); + this.clients.set(account.id, client); + + client.on("refreshToken", (token: string) => { + void this.cache.put(REFRESH_TOKEN_PREFIX + account.id, token); + }); + + // Steam Guard: pause login and ask an admin for the code via the web UI. + // `domain` is set for email-based guard, null for the mobile authenticator. + client.on( + "steamGuard", + ( + domain: string | null, + callback: (code: string) => void, + lastCodeWrong: boolean, + ) => { + const type = domain ? "email" : "app"; + this.pendingGuards.set(account.id, callback); + void this.redis.set( + GUARD_PREFIX + account.id, + JSON.stringify({ type, lastWrong: !!lastCodeWrong }), + "EX", + GUARD_TTL_SECONDS, + ); + void this.recordEvent( + "bot_steamguard", + `${account.username} needs a Steam Guard ${type} code${lastCodeWrong ? " (previous code was wrong)" : ""}`, + ); + }, + ); + + client.on("loggedOn", () => { + const steamId = client.steamID?.getSteamID64(); + this.logger.log( + `steam-presence ${account.username} logged on as ${steamId}`, + ); + client.setPersona(SteamUser.EPersonaState.Online); + this.connected.add(account.id); + // Login succeeded — clear any pending Steam Guard prompt. + this.pendingGuards.delete(account.id); + void this.redis.del(GUARD_PREFIX + account.id).catch(() => {}); + void this.redis + .set(ONLINE_PREFIX + account.id, this.instanceId, "EX", LOCK_TTL_SECONDS) + .catch(() => {}); + void this.recordEvent("bot_online", `${account.username} online as ${steamId}`); + if (steamId) { + void this.postgres + .query( + `UPDATE public.steam_accounts SET steamid64 = $1::bigint, updated_at = now() WHERE id = $2::uuid`, + [steamId, account.id], + ) + .catch(() => {}); + this.detectCapacity(client, account.id, steamId); + } + this.acceptPendingFriends(client, account.id, steamId); + }); + + client.on("error", (err: Error) => { + this.logger.error( + `steam-presence ${account.username} error: ${err.message}`, + ); + void this.recordEvent("bot_error", `${account.username}: ${err.message}`); + if (err.message.toLowerCase().includes("invalidpassword")) { + void this.cache.put(REFRESH_TOKEN_PREFIX + account.id, ""); + } + // Drop the client but keep the lock; the next tick reconnects. + if (this.clients.get(account.id) === client) { + this.clients.delete(account.id); + this.connected.delete(account.id); + client.removeAllListeners(); + try { + client.logOff(); + } catch { + // already disconnected + } + } + }); + + client.on( + "friendRelationship", + (sid: { getSteamID64(): string }, rel: number) => { + const steamId = sid.getSteamID64(); + const botSteamId = client.steamID?.getSteamID64(); + // The user adds us (inbound) — auto-accept. We never send invites: + // Steam rate-limits outbound invites hard; inbound is unrestricted. + if (rel === SteamUser.EFriendRelationship.RequestRecipient) { + client.addFriend(steamId, (addErr) => { + if (addErr) { + this.logger.warn( + `steam-presence failed to accept friend ${steamId}: ${addErr.message}`, + ); + return; + } + void this.onFriendAdded(account.id, steamId, botSteamId); + }); + } else if (rel === SteamUser.EFriendRelationship.Friend) { + void this.onFriendAdded(account.id, steamId, botSteamId); + } + }, + ); + + client.on("user", (sid: { getSteamID64(): string }, persona: SteamPersona) => { + void this.handlePresence(sid.getSteamID64(), persona); + }); + + void this.logOn(client, account); + } + + private async logOn(client: SteamUser, account: FriendsAccount): Promise { + const refreshToken = await this.cache.get(REFRESH_TOKEN_PREFIX + account.id); + if (this.clients.get(account.id) !== client) { + return; + } + if (refreshToken && typeof refreshToken === "string") { + client.logOn({ refreshToken }); + } else { + client.logOn({ + accountName: account.username, + password: account.password, + }); + } + } + + private async teardownAccount( + accountId: string, + releaseLock: boolean, + ): Promise { + const client = this.clients.get(accountId); + this.clients.delete(accountId); + this.connected.delete(accountId); + this.pendingGuards.delete(accountId); + await this.redis?.del(ONLINE_PREFIX + accountId).catch(() => {}); + await this.redis?.del(GUARD_PREFIX + accountId).catch(() => {}); + if (client) { + client.removeAllListeners(); + try { + client.logOff(); + } catch { + // already disconnected + } + } + if (releaseLock) { + this.owned.delete(accountId); + await this.redis + ?.eval( + RELEASE_LUA, + 1, + ACCOUNT_LOCK_PREFIX + accountId, + this.instanceId, + ) + .catch(() => {}); + } + } + + // Steam's friend cap is 250 + 5*level (hard max 2000). Read the bot's level on + // login and store it as the account's capacity so admins don't guess. + private detectCapacity( + client: SteamUser, + accountId: string, + steamId: string, + ): void { + client.getSteamLevels([steamId], (err, levels) => { + if (err) { + return; + } + const level = levels?.[steamId]; + if (typeof level !== "number") { + return; + } + const capacity = Math.min(2000, 250 + 5 * level); + void this.postgres + .query( + `UPDATE public.steam_accounts + SET steam_level = $1, friend_capacity = $2, updated_at = now() + WHERE id = $3::uuid`, + [level, capacity, accountId], + ) + .catch(() => {}); + }); + } + + private acceptPendingFriends( + client: SteamUser, + accountId: string, + botSteamId?: string, + ): void { + const friends = client.myFriends ?? {}; + for (const [steamId, rel] of Object.entries(friends)) { + if (rel === SteamUser.EFriendRelationship.RequestRecipient) { + client.addFriend(steamId, (addErr) => { + if (!addErr) { + void this.onFriendAdded(accountId, steamId, botSteamId); + } + }); + } + } + } + + private async onFriendAdded( + accountId: string, + steamId: string, + botSteamId?: string, + ): Promise { + this.logger.log(`steam-presence friend established ${steamId}`); + await this.postgres.query( + `INSERT INTO public.player_steam_bot_friend + (steam_id, bot_steam_account_id, bot_steamid64, status, friended_at, updated_at) + VALUES ($1::bigint, $2::uuid, $3::bigint, 'friends', now(), now()) + ON CONFLICT (steam_id) DO UPDATE + SET bot_steam_account_id = EXCLUDED.bot_steam_account_id, + bot_steamid64 = EXCLUDED.bot_steamid64, + status = 'friends', + friended_at = COALESCE(public.player_steam_bot_friend.friended_at, now()), + updated_at = now()`, + [steamId, accountId, botSteamId ?? null], + ); + await this.recordEvent("friend_added", `friend established ${steamId}`); + // Backfill matches played before they added the bot. + await this.enqueuePoll(steamId); + } + + // ---- presence -> poll trigger ------------------------------------------ + + private async handlePresence( + steamId: string, + persona: SteamPersona, + ): Promise { + const current = parseCs2Presence({ + gameid: persona?.gameid, + richPresence: persona?.rich_presence, + }); + + const stateKey = STATE_PREFIX + steamId; + const previous = (await this.cache.get(stateKey)) as Cs2PresenceState | null; + await this.cache.put(stateKey, current, PRESENCE_STATE_TTL_SECONDS); + + // Mirror onto the friend row (if any) so the user can see their own live + // status — "as the bot sees you" — on their settings page. No-op for + // non-friended steamids. RETURNING tells us whether this is a watched user. + const updated = await this.postgres + .query>( + `UPDATE public.player_steam_bot_friend + SET last_presence_state = $1::jsonb, updated_at = now() + WHERE steam_id = $2::bigint + RETURNING steam_id`, + [JSON.stringify(current), steamId], + ) + .catch(() => [] as Array<{ steam_id: string }>); + + // Surface presence changes for watched users in the live activity feed — + // useful for verifying detection across every game state (DM, casual, + // custom/5stack, MM). Only on a real change to avoid heartbeat spam. + if ( + updated.length > 0 && + SteamPresenceService.summarize(previous) !== + SteamPresenceService.summarize(current) + ) { + void this.recordEvent( + "presence", + `${steamId} ${SteamPresenceService.summarize(current)}`, + ); + } + + if (isMatchEndTransition(previous, current)) { + this.logger.log( + `steam-presence match-end for ${steamId} (mode=${previous?.mode}) -> polling`, + ); + await this.recordEvent( + "match_end", + `${steamId} finished a ${previous?.mode ?? "match"} -> poll`, + ); + await this.enqueuePoll(steamId); + } + } + + private async enqueuePoll(steamId: string): Promise { + // Same jobId as the on-login poll so a pending poll isn't duplicated; the + // per-user 10-minute cooldown in pollForUser absorbs extra triggers. + await this.pollQueue + .add( + "PollSteamMatchHistoryForUser", + { steamId }, + { + jobId: `poll-steam-match-history.${steamId}`, + removeOnComplete: true, + removeOnFail: true, + }, + ) + .catch((err) => { + this.logger.error( + `steam-presence poll enqueue failed for ${steamId}: ${(err as Error)?.message ?? err}`, + ); + }); + } + + // Short human description of a presence state for the activity feed. + private static summarize(state: Cs2PresenceState | null): string { + if (!state || !state.inCs2) { + return "offline"; + } + if (state.inGame) { + const where = state.map ? ` on ${state.map}` : ""; + return state.mode + ? `playing ${state.mode}${where}` + : `in a custom match${where}`; + } + return "in menu"; + } + + // ---- onboarding / assignment ------------------------------------------- + + // Assign (or return the already-assigned) friends-role bot for a user, so the + // web UI can prompt "add this bot for instant imports". Returns null when the + // pool is full or no bot is online yet. + public async assignBotForUser(steamId: string): Promise<{ + steamId: string; + addUrl: string; + status: string; + } | null> { + const existing = await this.postgres.query< + Array<{ bot_steamid64: string | null; status: string }> + >( + `SELECT bot_steamid64::text, status + FROM public.player_steam_bot_friend + WHERE steam_id = $1::bigint`, + [steamId], + ); + const existingRow = existing.at(0); + if (existingRow?.bot_steamid64) { + return SteamPresenceService.botResult( + existingRow.bot_steamid64, + existingRow.status, + ); + } + + // Pick the friends-role bot with the most free capacity that is online + // (steamid64 known). Soft capacity: a rare over-assign on a race is fine. + const candidates = await this.postgres.query< + Array<{ id: string; bot_steamid64: string; free: number }> + >( + `SELECT sa.id::text, + sa.steamid64::text AS bot_steamid64, + sa.friend_capacity - COUNT(f.steam_id) AS free + FROM public.steam_accounts sa + LEFT JOIN public.player_steam_bot_friend f + ON f.bot_steam_account_id = sa.id + WHERE sa.role = 'friends' AND sa.steamid64 IS NOT NULL + GROUP BY sa.id + HAVING sa.friend_capacity - COUNT(f.steam_id) > 0 + ORDER BY free DESC + LIMIT 1`, + ); + const chosen = candidates.at(0); + if (!chosen) { + this.logger.warn( + "steam-presence pool has no friends-role bot with free capacity online — add/mark more accounts", + ); + return null; + } + + await this.postgres.query( + `INSERT INTO public.player_steam_bot_friend + (steam_id, bot_steam_account_id, bot_steamid64, status, updated_at) + VALUES ($1::bigint, $2::uuid, $3::bigint, 'pending', now()) + ON CONFLICT (steam_id) DO NOTHING`, + [steamId, chosen.id, chosen.bot_steamid64], + ); + + return SteamPresenceService.botResult(chosen.bot_steamid64, "pending"); + } + + private static botResult( + botSteamId: string, + status: string, + ): { steamId: string; addUrl: string; status: string } { + return { + steamId: botSteamId, + addUrl: `https://steamcommunity.com/profiles/${botSteamId}`, + status, + }; + } + + // ---- Phase 3: match-imported messaging --------------------------------- + + // Called (fire-and-forget) after a Valve match is imported. Sends an in-app + // notification to every registered player in the match, and a Steam chat + // message to those who added a bot — routed via Redis to the pod that owns + // that bot's connection. + public async notifyMatchImported(notice: MatchImportedNotice): Promise { + if (notice.players.length === 0 || !(await this.isEnabled())) { + return; + } + const steamIds = notice.players.map((p) => p.steamId); + const url = `${this.appConfig.webDomain}/matches/${notice.matchId}`; + const mapLabel = notice.mapName ?? "an unknown map"; + // The stored notification message is rendered as HTML; map name and match + // type originate from the parsed demo, so escape them before interpolation. + const safeMap = NotificationsService.escapeHtml(mapLabel); + const safeType = NotificationsService.escapeHtml(notice.matchType); + const safeUrl = NotificationsService.escapeHtml(url); + + // In-app: only for registered 5stack players. + const registered = await this.postgres.query>( + `SELECT steam_id::text FROM public.players WHERE steam_id = ANY($1::bigint[])`, + [steamIds], + ); + const registeredSet = new Set(registered.map((r) => r.steam_id)); + for (const player of notice.players) { + if (!registeredSet.has(player.steamId)) { + continue; + } + const message = + `Your ${safeType} match on ${safeMap} was imported — ` + + `you went ${player.kills}/${player.deaths}. ` + + `View it on 5stack.`; + await this.postgres + .query( + `INSERT INTO public.notifications (title, message, steam_id, role, type, entity_id) + VALUES ('Match Imported', $1, $2::bigint, 'user', 'MatchImported', $3)`, + [message, player.steamId, notice.matchId], + ) + .catch((err) => + this.logger.warn( + `steam-presence in-app notify failed for ${player.steamId}: ${(err as Error).message}`, + ), + ); + } + + // Steam chat: only for players who added a bot. + const friends = await this.postgres.query< + Array<{ steam_id: string; bot_steam_account_id: string }> + >( + `SELECT steam_id::text, bot_steam_account_id::text + FROM public.player_steam_bot_friend + WHERE steam_id = ANY($1::bigint[]) + AND status = 'friends' + AND bot_steam_account_id IS NOT NULL`, + [steamIds], + ); + if (friends.length === 0) { + return; + } + const byPlayer = new Map(notice.players.map((p) => [p.steamId, p])); + for (const friend of friends) { + const stats = byPlayer.get(friend.steam_id); + const text = + `Your ${notice.matchType} match on ${mapLabel} was imported to 5stack` + + (stats ? ` — you went ${stats.kills}/${stats.deaths}.` : ".") + + ` ${url}`; + await this.redis + .publish( + CHAT_CHANNEL, + JSON.stringify({ + accountId: friend.bot_steam_account_id, + steamId: friend.steam_id, + text, + }), + ) + .catch(() => {}); + } + } + + private async handleChatRequest(raw: string): Promise { + let payload: { accountId?: string; steamId?: string; text?: string }; + try { + payload = JSON.parse(raw); + } catch { + return; + } + if (!payload.accountId || !payload.steamId || !payload.text) { + return; + } + // Only the pod that owns this bot's connection can deliver the message. + const client = this.clients.get(payload.accountId); + if (!client) { + return; + } + client.chat.sendFriendMessage(payload.steamId, payload.text, (err) => { + if (err) { + this.logger.warn( + `steam-presence chat send failed to ${payload.steamId}: ${err.message}`, + ); + return; + } + void this.recordEvent("chat_sent", `messaged ${payload.steamId}`); + }); + } + + // Submit a Steam Guard code for a bot that's awaiting one. Routed via Redis to + // the pod holding that login's callback (any pod may receive the HTTP request). + public async submitSteamGuard( + accountId: string, + code: string, + ): Promise<{ ok: boolean }> { + await this.redis.publish( + GUARD_CODE_CHANNEL, + JSON.stringify({ accountId, code }), + ); + return { ok: true }; + } + + private async handleGuardCode(raw: string): Promise { + let payload: { accountId?: string; code?: string }; + try { + payload = JSON.parse(raw); + } catch { + return; + } + if (!payload.accountId || !payload.code) { + return; + } + const callback = this.pendingGuards.get(payload.accountId); + if (!callback) { + return; // not our account (handled by the owning pod) + } + this.pendingGuards.delete(payload.accountId); + callback(payload.code.trim()); + void this.recordEvent("steamguard_submitted", "Steam Guard code submitted"); + } + + // ---- admin / debug ----------------------------------------------------- + + private async recordEvent(type: string, message: string): Promise { + try { + // Inserted into a table so the admin dashboard can subscribe over + // websockets (Hasura subscription) rather than poll. + await this.postgres.query( + `INSERT INTO public.steam_presence_events (type, message) VALUES ($1, $2)`, + [type, message], + ); + // Keep the feed bounded. + await this.postgres.query( + `DELETE FROM public.steam_presence_events + WHERE id IN ( + SELECT id FROM public.steam_presence_events + ORDER BY created_at DESC OFFSET $1 + )`, + [EVENTS_MAX], + ); + } catch { + // best effort — the debug feed is not critical + } + } + + // Snapshot for the admin dashboard: pool totals, per-bot rows (with live + // cross-pod online state from Redis), and the recent-events feed. + public async getAdminStatus(): Promise { + const enabled = await this.isEnabled(); + + const bots = await this.postgres.query< + Array<{ + id: string; + username: string; + steamid64: string | null; + steam_level: number | null; + friend_capacity: number; + assigned: string; + watching: string; + }> + >( + `SELECT sa.id::text, + sa.username, + sa.steamid64::text, + sa.steam_level, + sa.friend_capacity, + COUNT(f.steam_id) AS assigned, + COUNT(f.steam_id) FILTER (WHERE f.status = 'friends') AS watching + FROM public.steam_accounts sa + LEFT JOIN public.player_steam_bot_friend f + ON f.bot_steam_account_id = sa.id + WHERE sa.role = 'friends' + GROUP BY sa.id + ORDER BY sa.username`, + ); + + const onlineFlags = bots.length + ? await this.redis.mget(bots.map((b) => ONLINE_PREFIX + b.id)) + : []; + const guardFlags = bots.length + ? await this.redis.mget(bots.map((b) => GUARD_PREFIX + b.id)) + : []; + + const botRows = bots.map((bot, i) => { + let guard: { type?: "email" | "app"; lastWrong?: boolean } | null = null; + if (guardFlags[i]) { + try { + guard = JSON.parse(guardFlags[i] as string); + } catch { + guard = null; + } + } + return { + id: bot.id, + username: bot.username, + steamId: bot.steamid64, + steamLevel: bot.steam_level ?? null, + online: onlineFlags[i] != null, + needs2fa: guard != null, + guardType: guard?.type ?? null, + guardLastWrong: guard?.lastWrong === true, + watching: Number(bot.watching), + assigned: Number(bot.assigned), + capacity: bot.friend_capacity, + }; + }); + + return { + enabled, + pool: { + bots: botRows.length, + online: botRows.filter((b) => b.online).length, + watching: botRows.reduce((sum, b) => sum + b.watching, 0), + pending: botRows.reduce( + (sum, b) => sum + (b.assigned - b.watching), + 0, + ), + capacity: botRows.reduce((sum, b) => sum + b.capacity, 0), + }, + bots: botRows, + }; + } + + // Add a dedicated friends-role bot account to the pool. The next sync tick + // logs it in (across whichever pod claims it). Returns the new account id. + public async addFriendsAccount( + username: string, + password: string, + friendCapacity = 250, + ): Promise<{ id: string }> { + const rows = await this.postgres.query>( + `INSERT INTO public.steam_accounts (username, password, role, friend_capacity) + VALUES ($1, $2, 'friends', $3) + ON CONFLICT (username) DO NOTHING + RETURNING id::text`, + [username, password, friendCapacity], + ); + const id = rows.at(0)?.id; + if (!id) { + throw new Error("a steam account with that username already exists"); + } + await this.recordEvent("bot_added", `added bot account ${username}`); + return { id }; + } + + // Remove a friends-role bot account. Guarded to friends-role so this can never + // delete a GPU pool account. The sync tick tears down its live connection. + public async removeFriendsAccount(id: string): Promise<{ ok: boolean }> { + const rows = await this.postgres.query>( + `DELETE FROM public.steam_accounts + WHERE id = $1::uuid AND role = 'friends' + RETURNING id::text`, + [id], + ); + return { ok: rows.length > 0 }; + } +} diff --git a/src/types/steam-user.d.ts b/src/types/steam-user.d.ts index d2cedda0..6563d9cb 100644 --- a/src/types/steam-user.d.ts +++ b/src/types/steam-user.d.ts @@ -15,10 +15,27 @@ declare module "steam-user" { class SteamUser extends EventEmitter { constructor(options?: { enablePicsCache?: boolean; autoRelogin?: boolean }); steamID?: SteamID | null; + // Map of friend steamid64 -> EFriendRelationship. + myFriends: Record; logOn(details: LogOnDetails): void; logOff(): void; setPersona(state: number): void; gamesPlayed(apps: number[] | number): void; + addFriend( + steamId: string, + callback?: (err: Error | null, personaName?: string) => void, + ): void; + chat: { + sendFriendMessage( + steamId: string, + message: string, + callback?: (err: Error | null) => void, + ): void; + }; + getSteamLevels( + steamIds: string[], + callback: (err: Error | null, levels: Record) => void, + ): void; sendToGC( appId: number, msgType: number, @@ -38,6 +55,16 @@ declare module "steam-user" { LookingToPlay: 6; Invisible: 7; }; + const EFriendRelationship: { + None: 0; + Blocked: 1; + RequestRecipient: 2; + Friend: 3; + RequestInitiator: 4; + Ignored: 5; + IgnoredFriend: 6; + SuggestedFriend: 7; + }; function generateAuthCode(sharedSecret: string): string; } From 2880683acd7ba4ffb333b874abd0fa2672812f97 Mon Sep 17 00:00:00 2001 From: Luke Policinski Date: Tue, 30 Jun 2026 21:15:04 -0400 Subject: [PATCH 2/5] feature: bot presence --- generated/schema.graphql | 388 +- generated/schema.ts | 344 +- generated/types.ts | 62039 ++++++++-------- .../default/tables/public_v_my_friends.yaml | 2 + .../databases/default/tables/tables.yaml | 1 - hasura/views/v_my_friends.sql | 8 +- src/postgres/jobs/ReindexTables.ts | 6 +- src/steam-presence/presence.spec.ts | 32 + src/steam-presence/presence.ts | 29 +- src/steam-presence/steam-presence.service.ts | 159 +- src/types/steam-user.d.ts | 34 + 11 files changed, 32304 insertions(+), 30738 deletions(-) diff --git a/generated/schema.graphql b/generated/schema.graphql index 7bea4ddd..a8006d6d 100644 --- a/generated/schema.graphql +++ b/generated/schema.graphql @@ -543,7 +543,6 @@ type SteamMatchHistoryPollOutput { type SteamPresenceAdminStatusOutput { bots: [SteamPresenceBot!]! enabled: Boolean! - events: [SteamPresenceEvent!]! pool: SteamPresencePool! } @@ -556,6 +555,7 @@ type SteamPresenceBot { needs2fa: Boolean! online: Boolean! steamId: String + steamLevel: Int username: String! watching: Int! } @@ -567,12 +567,6 @@ type SteamPresenceBotAssignment { steamId: String } -type SteamPresenceEvent { - message: String! - ts: String! - type: String! -} - type SteamPresencePool { bots: Int! capacity: Int! @@ -33133,24 +33127,46 @@ type my_friends { avatar_url: String country: String created_at: timestamptz + custom_avatar_url: String + days_since_last_ban: Int discord_id: String elo( """JSON select path""" path: String ): jsonb + faceit_elo: Int + faceit_nickname: String + faceit_player_id: String + faceit_skill_level: Int + faceit_updated_at: timestamptz + faceit_url: String friend_steam_id: bigint + game_ban_count: Int invited_by_steam_id: bigint language: String + last_presence_state( + """JSON select path""" + path: String + ): jsonb + last_read_news_at: timestamptz last_sign_in_at: timestamptz name: String name_registered: Boolean """An object relationship""" player: players + premier_rank: Int + premier_rank_updated_at: timestamptz + presence_updated_at: timestamptz profile_url: String role: String + roster_image_url: String + show_match_ready_modal: Boolean status: String + steam_bans_checked_at: timestamptz steam_id: bigint + vac_ban_count: Int + vac_banned: Boolean } """ @@ -33225,6 +33241,7 @@ input my_friends_aggregate_order_by { """append existing jsonb value of filtered columns with new jsonb value""" input my_friends_append_input { elo: jsonb + last_presence_state: jsonb } """ @@ -33236,18 +33253,30 @@ input my_friends_arr_rel_insert_input { """aggregate avg on columns""" type my_friends_avg_fields { + days_since_last_ban: Float + faceit_elo: Float + faceit_skill_level: Float friend_steam_id: Float + game_ban_count: Float invited_by_steam_id: Float + premier_rank: Float steam_id: Float + vac_ban_count: Float } """ order by avg() on columns of table "v_my_friends" """ input my_friends_avg_order_by { + days_since_last_ban: order_by + faceit_elo: order_by + faceit_skill_level: order_by friend_steam_id: order_by + game_ban_count: order_by invited_by_steam_id: order_by + premier_rank: order_by steam_id: order_by + vac_ban_count: order_by } """ @@ -33260,19 +33289,38 @@ input my_friends_bool_exp { avatar_url: String_comparison_exp country: String_comparison_exp created_at: timestamptz_comparison_exp + custom_avatar_url: String_comparison_exp + days_since_last_ban: Int_comparison_exp discord_id: String_comparison_exp elo: jsonb_comparison_exp + faceit_elo: Int_comparison_exp + faceit_nickname: String_comparison_exp + faceit_player_id: String_comparison_exp + faceit_skill_level: Int_comparison_exp + faceit_updated_at: timestamptz_comparison_exp + faceit_url: String_comparison_exp friend_steam_id: bigint_comparison_exp + game_ban_count: Int_comparison_exp invited_by_steam_id: bigint_comparison_exp language: String_comparison_exp + last_presence_state: jsonb_comparison_exp + last_read_news_at: timestamptz_comparison_exp last_sign_in_at: timestamptz_comparison_exp name: String_comparison_exp name_registered: Boolean_comparison_exp player: players_bool_exp + premier_rank: Int_comparison_exp + premier_rank_updated_at: timestamptz_comparison_exp + presence_updated_at: timestamptz_comparison_exp profile_url: String_comparison_exp role: String_comparison_exp + roster_image_url: String_comparison_exp + show_match_ready_modal: Boolean_comparison_exp status: String_comparison_exp + steam_bans_checked_at: timestamptz_comparison_exp steam_id: bigint_comparison_exp + vac_ban_count: Int_comparison_exp + vac_banned: Boolean_comparison_exp } """ @@ -33280,6 +33328,7 @@ delete the field or element with specified path (for JSON arrays, negative integ """ input my_friends_delete_at_path_input { elo: [String!] + last_presence_state: [String!] } """ @@ -33287,6 +33336,7 @@ delete the array element with specified index (negative integers count from the """ input my_friends_delete_elem_input { elo: Int + last_presence_state: Int } """ @@ -33294,15 +33344,22 @@ delete key/value pair or string element. key/value pairs are matched based on th """ input my_friends_delete_key_input { elo: String + last_presence_state: String } """ input type for incrementing numeric columns in table "v_my_friends" """ input my_friends_inc_input { + days_since_last_ban: Int + faceit_elo: Int + faceit_skill_level: Int friend_steam_id: bigint + game_ban_count: Int invited_by_steam_id: bigint + premier_rank: Int steam_id: bigint + vac_ban_count: Int } """ @@ -33312,19 +33369,38 @@ input my_friends_insert_input { avatar_url: String country: String created_at: timestamptz + custom_avatar_url: String + days_since_last_ban: Int discord_id: String elo: jsonb + faceit_elo: Int + faceit_nickname: String + faceit_player_id: String + faceit_skill_level: Int + faceit_updated_at: timestamptz + faceit_url: String friend_steam_id: bigint + game_ban_count: Int invited_by_steam_id: bigint language: String + last_presence_state: jsonb + last_read_news_at: timestamptz last_sign_in_at: timestamptz name: String name_registered: Boolean player: players_obj_rel_insert_input + premier_rank: Int + premier_rank_updated_at: timestamptz + presence_updated_at: timestamptz profile_url: String role: String + roster_image_url: String + show_match_ready_modal: Boolean status: String + steam_bans_checked_at: timestamptz steam_id: bigint + vac_ban_count: Int + vac_banned: Boolean } """aggregate max on columns""" @@ -33332,16 +33408,32 @@ type my_friends_max_fields { avatar_url: String country: String created_at: timestamptz + custom_avatar_url: String + days_since_last_ban: Int discord_id: String + faceit_elo: Int + faceit_nickname: String + faceit_player_id: String + faceit_skill_level: Int + faceit_updated_at: timestamptz + faceit_url: String friend_steam_id: bigint + game_ban_count: Int invited_by_steam_id: bigint language: String + last_read_news_at: timestamptz last_sign_in_at: timestamptz name: String + premier_rank: Int + premier_rank_updated_at: timestamptz + presence_updated_at: timestamptz profile_url: String role: String + roster_image_url: String status: String + steam_bans_checked_at: timestamptz steam_id: bigint + vac_ban_count: Int } """ @@ -33351,16 +33443,32 @@ input my_friends_max_order_by { avatar_url: order_by country: order_by created_at: order_by + custom_avatar_url: order_by + days_since_last_ban: order_by discord_id: order_by + faceit_elo: order_by + faceit_nickname: order_by + faceit_player_id: order_by + faceit_skill_level: order_by + faceit_updated_at: order_by + faceit_url: order_by friend_steam_id: order_by + game_ban_count: order_by invited_by_steam_id: order_by language: order_by + last_read_news_at: order_by last_sign_in_at: order_by name: order_by + premier_rank: order_by + premier_rank_updated_at: order_by + presence_updated_at: order_by profile_url: order_by role: order_by + roster_image_url: order_by status: order_by + steam_bans_checked_at: order_by steam_id: order_by + vac_ban_count: order_by } """aggregate min on columns""" @@ -33368,16 +33476,32 @@ type my_friends_min_fields { avatar_url: String country: String created_at: timestamptz + custom_avatar_url: String + days_since_last_ban: Int discord_id: String + faceit_elo: Int + faceit_nickname: String + faceit_player_id: String + faceit_skill_level: Int + faceit_updated_at: timestamptz + faceit_url: String friend_steam_id: bigint + game_ban_count: Int invited_by_steam_id: bigint language: String + last_read_news_at: timestamptz last_sign_in_at: timestamptz name: String + premier_rank: Int + premier_rank_updated_at: timestamptz + presence_updated_at: timestamptz profile_url: String role: String + roster_image_url: String status: String + steam_bans_checked_at: timestamptz steam_id: bigint + vac_ban_count: Int } """ @@ -33387,16 +33511,32 @@ input my_friends_min_order_by { avatar_url: order_by country: order_by created_at: order_by + custom_avatar_url: order_by + days_since_last_ban: order_by discord_id: order_by + faceit_elo: order_by + faceit_nickname: order_by + faceit_player_id: order_by + faceit_skill_level: order_by + faceit_updated_at: order_by + faceit_url: order_by friend_steam_id: order_by + game_ban_count: order_by invited_by_steam_id: order_by language: order_by + last_read_news_at: order_by last_sign_in_at: order_by name: order_by + premier_rank: order_by + premier_rank_updated_at: order_by + presence_updated_at: order_by profile_url: order_by role: order_by + roster_image_url: order_by status: order_by + steam_bans_checked_at: order_by steam_id: order_by + vac_ban_count: order_by } """ @@ -33415,24 +33555,44 @@ input my_friends_order_by { avatar_url: order_by country: order_by created_at: order_by + custom_avatar_url: order_by + days_since_last_ban: order_by discord_id: order_by elo: order_by + faceit_elo: order_by + faceit_nickname: order_by + faceit_player_id: order_by + faceit_skill_level: order_by + faceit_updated_at: order_by + faceit_url: order_by friend_steam_id: order_by + game_ban_count: order_by invited_by_steam_id: order_by language: order_by + last_presence_state: order_by + last_read_news_at: order_by last_sign_in_at: order_by name: order_by name_registered: order_by player: players_order_by + premier_rank: order_by + premier_rank_updated_at: order_by + presence_updated_at: order_by profile_url: order_by role: order_by + roster_image_url: order_by + show_match_ready_modal: order_by status: order_by + steam_bans_checked_at: order_by steam_id: order_by + vac_ban_count: order_by + vac_banned: order_by } """prepend existing jsonb value of filtered columns with new jsonb value""" input my_friends_prepend_input { elo: jsonb + last_presence_state: jsonb } """ @@ -33448,21 +33608,54 @@ enum my_friends_select_column { """column name""" created_at + """column name""" + custom_avatar_url + + """column name""" + days_since_last_ban + """column name""" discord_id """column name""" elo + """column name""" + faceit_elo + + """column name""" + faceit_nickname + + """column name""" + faceit_player_id + + """column name""" + faceit_skill_level + + """column name""" + faceit_updated_at + + """column name""" + faceit_url + """column name""" friend_steam_id + """column name""" + game_ban_count + """column name""" invited_by_steam_id """column name""" language + """column name""" + last_presence_state + + """column name""" + last_read_news_at + """column name""" last_sign_in_at @@ -33472,17 +33665,41 @@ enum my_friends_select_column { """column name""" name_registered + """column name""" + premier_rank + + """column name""" + premier_rank_updated_at + + """column name""" + presence_updated_at + """column name""" profile_url """column name""" role + """column name""" + roster_image_url + + """column name""" + show_match_ready_modal + """column name""" status + """column name""" + steam_bans_checked_at + """column name""" steam_id + + """column name""" + vac_ban_count + + """column name""" + vac_banned } """ @@ -33491,6 +33708,12 @@ select "my_friends_aggregate_bool_exp_bool_and_arguments_columns" columns of tab enum my_friends_select_column_my_friends_aggregate_bool_exp_bool_and_arguments_columns { """column name""" name_registered + + """column name""" + show_match_ready_modal + + """column name""" + vac_banned } """ @@ -33499,6 +33722,12 @@ select "my_friends_aggregate_bool_exp_bool_or_arguments_columns" columns of tabl enum my_friends_select_column_my_friends_aggregate_bool_exp_bool_or_arguments_columns { """column name""" name_registered + + """column name""" + show_match_ready_modal + + """column name""" + vac_banned } """ @@ -33508,66 +33737,121 @@ input my_friends_set_input { avatar_url: String country: String created_at: timestamptz + custom_avatar_url: String + days_since_last_ban: Int discord_id: String elo: jsonb + faceit_elo: Int + faceit_nickname: String + faceit_player_id: String + faceit_skill_level: Int + faceit_updated_at: timestamptz + faceit_url: String friend_steam_id: bigint + game_ban_count: Int invited_by_steam_id: bigint language: String + last_presence_state: jsonb + last_read_news_at: timestamptz last_sign_in_at: timestamptz name: String name_registered: Boolean + premier_rank: Int + premier_rank_updated_at: timestamptz + presence_updated_at: timestamptz profile_url: String role: String + roster_image_url: String + show_match_ready_modal: Boolean status: String + steam_bans_checked_at: timestamptz steam_id: bigint + vac_ban_count: Int + vac_banned: Boolean } """aggregate stddev on columns""" type my_friends_stddev_fields { + days_since_last_ban: Float + faceit_elo: Float + faceit_skill_level: Float friend_steam_id: Float + game_ban_count: Float invited_by_steam_id: Float + premier_rank: Float steam_id: Float + vac_ban_count: Float } """ order by stddev() on columns of table "v_my_friends" """ input my_friends_stddev_order_by { + days_since_last_ban: order_by + faceit_elo: order_by + faceit_skill_level: order_by friend_steam_id: order_by + game_ban_count: order_by invited_by_steam_id: order_by + premier_rank: order_by steam_id: order_by + vac_ban_count: order_by } """aggregate stddev_pop on columns""" type my_friends_stddev_pop_fields { + days_since_last_ban: Float + faceit_elo: Float + faceit_skill_level: Float friend_steam_id: Float + game_ban_count: Float invited_by_steam_id: Float + premier_rank: Float steam_id: Float + vac_ban_count: Float } """ order by stddev_pop() on columns of table "v_my_friends" """ input my_friends_stddev_pop_order_by { + days_since_last_ban: order_by + faceit_elo: order_by + faceit_skill_level: order_by friend_steam_id: order_by + game_ban_count: order_by invited_by_steam_id: order_by + premier_rank: order_by steam_id: order_by + vac_ban_count: order_by } """aggregate stddev_samp on columns""" type my_friends_stddev_samp_fields { + days_since_last_ban: Float + faceit_elo: Float + faceit_skill_level: Float friend_steam_id: Float + game_ban_count: Float invited_by_steam_id: Float + premier_rank: Float steam_id: Float + vac_ban_count: Float } """ order by stddev_samp() on columns of table "v_my_friends" """ input my_friends_stddev_samp_order_by { + days_since_last_ban: order_by + faceit_elo: order_by + faceit_skill_level: order_by friend_steam_id: order_by + game_ban_count: order_by invited_by_steam_id: order_by + premier_rank: order_by steam_id: order_by + vac_ban_count: order_by } """ @@ -33586,34 +33870,65 @@ input my_friends_stream_cursor_value_input { avatar_url: String country: String created_at: timestamptz + custom_avatar_url: String + days_since_last_ban: Int discord_id: String elo: jsonb + faceit_elo: Int + faceit_nickname: String + faceit_player_id: String + faceit_skill_level: Int + faceit_updated_at: timestamptz + faceit_url: String friend_steam_id: bigint + game_ban_count: Int invited_by_steam_id: bigint language: String + last_presence_state: jsonb + last_read_news_at: timestamptz last_sign_in_at: timestamptz name: String name_registered: Boolean + premier_rank: Int + premier_rank_updated_at: timestamptz + presence_updated_at: timestamptz profile_url: String role: String + roster_image_url: String + show_match_ready_modal: Boolean status: String + steam_bans_checked_at: timestamptz steam_id: bigint + vac_ban_count: Int + vac_banned: Boolean } """aggregate sum on columns""" type my_friends_sum_fields { + days_since_last_ban: Int + faceit_elo: Int + faceit_skill_level: Int friend_steam_id: bigint + game_ban_count: Int invited_by_steam_id: bigint + premier_rank: Int steam_id: bigint + vac_ban_count: Int } """ order by sum() on columns of table "v_my_friends" """ input my_friends_sum_order_by { + days_since_last_ban: order_by + faceit_elo: order_by + faceit_skill_level: order_by friend_steam_id: order_by + game_ban_count: order_by invited_by_steam_id: order_by + premier_rank: order_by steam_id: order_by + vac_ban_count: order_by } input my_friends_updates { @@ -33650,50 +33965,86 @@ input my_friends_updates { """aggregate var_pop on columns""" type my_friends_var_pop_fields { + days_since_last_ban: Float + faceit_elo: Float + faceit_skill_level: Float friend_steam_id: Float + game_ban_count: Float invited_by_steam_id: Float + premier_rank: Float steam_id: Float + vac_ban_count: Float } """ order by var_pop() on columns of table "v_my_friends" """ input my_friends_var_pop_order_by { + days_since_last_ban: order_by + faceit_elo: order_by + faceit_skill_level: order_by friend_steam_id: order_by + game_ban_count: order_by invited_by_steam_id: order_by + premier_rank: order_by steam_id: order_by + vac_ban_count: order_by } """aggregate var_samp on columns""" type my_friends_var_samp_fields { + days_since_last_ban: Float + faceit_elo: Float + faceit_skill_level: Float friend_steam_id: Float + game_ban_count: Float invited_by_steam_id: Float + premier_rank: Float steam_id: Float + vac_ban_count: Float } """ order by var_samp() on columns of table "v_my_friends" """ input my_friends_var_samp_order_by { + days_since_last_ban: order_by + faceit_elo: order_by + faceit_skill_level: order_by friend_steam_id: order_by + game_ban_count: order_by invited_by_steam_id: order_by + premier_rank: order_by steam_id: order_by + vac_ban_count: order_by } """aggregate variance on columns""" type my_friends_variance_fields { + days_since_last_ban: Float + faceit_elo: Float + faceit_skill_level: Float friend_steam_id: Float + game_ban_count: Float invited_by_steam_id: Float + premier_rank: Float steam_id: Float + vac_ban_count: Float } """ order by variance() on columns of table "v_my_friends" """ input my_friends_variance_order_by { + days_since_last_ban: order_by + faceit_elo: order_by + faceit_skill_level: order_by friend_steam_id: order_by + game_ban_count: order_by invited_by_steam_id: order_by + premier_rank: order_by steam_id: order_by + vac_ban_count: order_by } """ @@ -61829,6 +62180,7 @@ type steam_accounts { last_node_id: String password: String! role: String! + steam_level: Int steamid64: bigint updated_at: timestamptz! username: String! @@ -61862,6 +62214,7 @@ type steam_accounts_aggregate_fields { """aggregate avg on columns""" type steam_accounts_avg_fields { friend_capacity: Float + steam_level: Float steamid64: Float } @@ -61881,6 +62234,7 @@ input steam_accounts_bool_exp { last_node_id: String_comparison_exp password: String_comparison_exp role: String_comparison_exp + steam_level: Int_comparison_exp steamid64: bigint_comparison_exp updated_at: timestamptz_comparison_exp username: String_comparison_exp @@ -61906,6 +62260,7 @@ input type for incrementing numeric columns in table "steam_accounts" """ input steam_accounts_inc_input { friend_capacity: Int + steam_level: Int steamid64: bigint } @@ -61921,6 +62276,7 @@ input steam_accounts_insert_input { last_node_id: String password: String role: String + steam_level: Int steamid64: bigint updated_at: timestamptz username: String @@ -61934,6 +62290,7 @@ type steam_accounts_max_fields { last_node_id: String password: String role: String + steam_level: Int steamid64: bigint updated_at: timestamptz username: String @@ -61947,6 +62304,7 @@ type steam_accounts_min_fields { last_node_id: String password: String role: String + steam_level: Int steamid64: bigint updated_at: timestamptz username: String @@ -61992,6 +62350,7 @@ input steam_accounts_order_by { last_node_id: order_by password: order_by role: order_by + steam_level: order_by steamid64: order_by updated_at: order_by username: order_by @@ -62024,6 +62383,9 @@ enum steam_accounts_select_column { """column name""" role + """column name""" + steam_level + """column name""" steamid64 @@ -62044,6 +62406,7 @@ input steam_accounts_set_input { last_node_id: String password: String role: String + steam_level: Int steamid64: bigint updated_at: timestamptz username: String @@ -62052,18 +62415,21 @@ input steam_accounts_set_input { """aggregate stddev on columns""" type steam_accounts_stddev_fields { friend_capacity: Float + steam_level: Float steamid64: Float } """aggregate stddev_pop on columns""" type steam_accounts_stddev_pop_fields { friend_capacity: Float + steam_level: Float steamid64: Float } """aggregate stddev_samp on columns""" type steam_accounts_stddev_samp_fields { friend_capacity: Float + steam_level: Float steamid64: Float } @@ -62086,6 +62452,7 @@ input steam_accounts_stream_cursor_value_input { last_node_id: String password: String role: String + steam_level: Int steamid64: bigint updated_at: timestamptz username: String @@ -62094,6 +62461,7 @@ input steam_accounts_stream_cursor_value_input { """aggregate sum on columns""" type steam_accounts_sum_fields { friend_capacity: Int + steam_level: Int steamid64: bigint } @@ -62119,6 +62487,9 @@ enum steam_accounts_update_column { """column name""" role + """column name""" + steam_level + """column name""" steamid64 @@ -62143,18 +62514,21 @@ input steam_accounts_updates { """aggregate var_pop on columns""" type steam_accounts_var_pop_fields { friend_capacity: Float + steam_level: Float steamid64: Float } """aggregate var_samp on columns""" type steam_accounts_var_samp_fields { friend_capacity: Float + steam_level: Float steamid64: Float } """aggregate variance on columns""" type steam_accounts_variance_fields { friend_capacity: Float + steam_level: Float steamid64: Float } diff --git a/generated/schema.ts b/generated/schema.ts index 69c678e8..1ede2158 100644 --- a/generated/schema.ts +++ b/generated/schema.ts @@ -519,7 +519,6 @@ export interface SteamMatchHistoryPollOutput { export interface SteamPresenceAdminStatusOutput { bots: SteamPresenceBot[] enabled: Scalars['Boolean'] - events: SteamPresenceEvent[] pool: SteamPresencePool __typename: 'SteamPresenceAdminStatusOutput' } @@ -533,6 +532,7 @@ export interface SteamPresenceBot { needs2fa: Scalars['Boolean'] online: Scalars['Boolean'] steamId: (Scalars['String'] | null) + steamLevel: (Scalars['Int'] | null) username: Scalars['String'] watching: Scalars['Int'] __typename: 'SteamPresenceBot' @@ -546,13 +546,6 @@ export interface SteamPresenceBotAssignment { __typename: 'SteamPresenceBotAssignment' } -export interface SteamPresenceEvent { - message: Scalars['String'] - ts: Scalars['String'] - type: Scalars['String'] - __typename: 'SteamPresenceEvent' -} - export interface SteamPresencePool { bots: Scalars['Int'] capacity: Scalars['Int'] @@ -9973,20 +9966,39 @@ export interface my_friends { 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) elo: (Scalars['jsonb'] | 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) friend_steam_id: (Scalars['bigint'] | null) + game_ban_count: (Scalars['Int'] | null) invited_by_steam_id: (Scalars['bigint'] | null) language: (Scalars['String'] | null) + last_presence_state: (Scalars['jsonb'] | null) + last_read_news_at: (Scalars['timestamptz'] | null) last_sign_in_at: (Scalars['timestamptz'] | null) name: (Scalars['String'] | null) name_registered: (Scalars['Boolean'] | null) /** An object relationship */ player: (players | null) + premier_rank: (Scalars['Int'] | null) + premier_rank_updated_at: (Scalars['timestamptz'] | null) + presence_updated_at: (Scalars['timestamptz'] | null) profile_url: (Scalars['String'] | null) role: (Scalars['String'] | null) + roster_image_url: (Scalars['String'] | null) + show_match_ready_modal: (Scalars['Boolean'] | null) status: (Scalars['String'] | null) + steam_bans_checked_at: (Scalars['timestamptz'] | null) steam_id: (Scalars['bigint'] | null) + vac_ban_count: (Scalars['Int'] | null) + vac_banned: (Scalars['Boolean'] | null) __typename: 'my_friends' } @@ -10018,9 +10030,15 @@ export interface my_friends_aggregate_fields { /** aggregate avg on columns */ export interface my_friends_avg_fields { + days_since_last_ban: (Scalars['Float'] | null) + faceit_elo: (Scalars['Float'] | null) + faceit_skill_level: (Scalars['Float'] | null) friend_steam_id: (Scalars['Float'] | null) + game_ban_count: (Scalars['Float'] | null) invited_by_steam_id: (Scalars['Float'] | null) + premier_rank: (Scalars['Float'] | null) steam_id: (Scalars['Float'] | null) + vac_ban_count: (Scalars['Float'] | null) __typename: 'my_friends_avg_fields' } @@ -10030,16 +10048,32 @@ export interface my_friends_max_fields { 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) friend_steam_id: (Scalars['bigint'] | null) + game_ban_count: (Scalars['Int'] | null) invited_by_steam_id: (Scalars['bigint'] | null) language: (Scalars['String'] | null) + last_read_news_at: (Scalars['timestamptz'] | null) last_sign_in_at: (Scalars['timestamptz'] | null) name: (Scalars['String'] | null) + premier_rank: (Scalars['Int'] | null) + premier_rank_updated_at: (Scalars['timestamptz'] | null) + presence_updated_at: (Scalars['timestamptz'] | null) profile_url: (Scalars['String'] | null) role: (Scalars['String'] | null) + roster_image_url: (Scalars['String'] | null) status: (Scalars['String'] | null) + steam_bans_checked_at: (Scalars['timestamptz'] | null) steam_id: (Scalars['bigint'] | null) + vac_ban_count: (Scalars['Int'] | null) __typename: 'my_friends_max_fields' } @@ -10049,16 +10083,32 @@ export interface my_friends_min_fields { 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) friend_steam_id: (Scalars['bigint'] | null) + game_ban_count: (Scalars['Int'] | null) invited_by_steam_id: (Scalars['bigint'] | null) language: (Scalars['String'] | null) + last_read_news_at: (Scalars['timestamptz'] | null) last_sign_in_at: (Scalars['timestamptz'] | null) name: (Scalars['String'] | null) + premier_rank: (Scalars['Int'] | null) + premier_rank_updated_at: (Scalars['timestamptz'] | null) + presence_updated_at: (Scalars['timestamptz'] | null) profile_url: (Scalars['String'] | null) role: (Scalars['String'] | null) + roster_image_url: (Scalars['String'] | null) status: (Scalars['String'] | null) + steam_bans_checked_at: (Scalars['timestamptz'] | null) steam_id: (Scalars['bigint'] | null) + vac_ban_count: (Scalars['Int'] | null) __typename: 'my_friends_min_fields' } @@ -10074,76 +10124,118 @@ export interface my_friends_mutation_response { /** select columns of table "v_my_friends" */ -export type my_friends_select_column = 'avatar_url' | 'country' | 'created_at' | 'discord_id' | 'elo' | 'friend_steam_id' | 'invited_by_steam_id' | 'language' | 'last_sign_in_at' | 'name' | 'name_registered' | 'profile_url' | 'role' | 'status' | 'steam_id' +export type my_friends_select_column = 'avatar_url' | 'country' | 'created_at' | 'custom_avatar_url' | 'days_since_last_ban' | 'discord_id' | 'elo' | 'faceit_elo' | 'faceit_nickname' | 'faceit_player_id' | 'faceit_skill_level' | 'faceit_updated_at' | 'faceit_url' | 'friend_steam_id' | 'game_ban_count' | 'invited_by_steam_id' | 'language' | 'last_presence_state' | 'last_read_news_at' | 'last_sign_in_at' | 'name' | 'name_registered' | 'premier_rank' | 'premier_rank_updated_at' | 'presence_updated_at' | 'profile_url' | 'role' | 'roster_image_url' | 'show_match_ready_modal' | 'status' | 'steam_bans_checked_at' | 'steam_id' | 'vac_ban_count' | 'vac_banned' /** select "my_friends_aggregate_bool_exp_bool_and_arguments_columns" columns of table "v_my_friends" */ -export type my_friends_select_column_my_friends_aggregate_bool_exp_bool_and_arguments_columns = 'name_registered' +export type my_friends_select_column_my_friends_aggregate_bool_exp_bool_and_arguments_columns = 'name_registered' | 'show_match_ready_modal' | 'vac_banned' /** select "my_friends_aggregate_bool_exp_bool_or_arguments_columns" columns of table "v_my_friends" */ -export type my_friends_select_column_my_friends_aggregate_bool_exp_bool_or_arguments_columns = 'name_registered' +export type my_friends_select_column_my_friends_aggregate_bool_exp_bool_or_arguments_columns = 'name_registered' | 'show_match_ready_modal' | 'vac_banned' /** aggregate stddev on columns */ export interface my_friends_stddev_fields { + days_since_last_ban: (Scalars['Float'] | null) + faceit_elo: (Scalars['Float'] | null) + faceit_skill_level: (Scalars['Float'] | null) friend_steam_id: (Scalars['Float'] | null) + game_ban_count: (Scalars['Float'] | null) invited_by_steam_id: (Scalars['Float'] | null) + premier_rank: (Scalars['Float'] | null) steam_id: (Scalars['Float'] | null) + vac_ban_count: (Scalars['Float'] | null) __typename: 'my_friends_stddev_fields' } /** aggregate stddev_pop on columns */ export interface my_friends_stddev_pop_fields { + days_since_last_ban: (Scalars['Float'] | null) + faceit_elo: (Scalars['Float'] | null) + faceit_skill_level: (Scalars['Float'] | null) friend_steam_id: (Scalars['Float'] | null) + game_ban_count: (Scalars['Float'] | null) invited_by_steam_id: (Scalars['Float'] | null) + premier_rank: (Scalars['Float'] | null) steam_id: (Scalars['Float'] | null) + vac_ban_count: (Scalars['Float'] | null) __typename: 'my_friends_stddev_pop_fields' } /** aggregate stddev_samp on columns */ export interface my_friends_stddev_samp_fields { + days_since_last_ban: (Scalars['Float'] | null) + faceit_elo: (Scalars['Float'] | null) + faceit_skill_level: (Scalars['Float'] | null) friend_steam_id: (Scalars['Float'] | null) + game_ban_count: (Scalars['Float'] | null) invited_by_steam_id: (Scalars['Float'] | null) + premier_rank: (Scalars['Float'] | null) steam_id: (Scalars['Float'] | null) + vac_ban_count: (Scalars['Float'] | null) __typename: 'my_friends_stddev_samp_fields' } /** aggregate sum on columns */ export interface my_friends_sum_fields { + days_since_last_ban: (Scalars['Int'] | null) + faceit_elo: (Scalars['Int'] | null) + faceit_skill_level: (Scalars['Int'] | null) friend_steam_id: (Scalars['bigint'] | null) + game_ban_count: (Scalars['Int'] | null) invited_by_steam_id: (Scalars['bigint'] | null) + premier_rank: (Scalars['Int'] | null) steam_id: (Scalars['bigint'] | null) + vac_ban_count: (Scalars['Int'] | null) __typename: 'my_friends_sum_fields' } /** aggregate var_pop on columns */ export interface my_friends_var_pop_fields { + days_since_last_ban: (Scalars['Float'] | null) + faceit_elo: (Scalars['Float'] | null) + faceit_skill_level: (Scalars['Float'] | null) friend_steam_id: (Scalars['Float'] | null) + game_ban_count: (Scalars['Float'] | null) invited_by_steam_id: (Scalars['Float'] | null) + premier_rank: (Scalars['Float'] | null) steam_id: (Scalars['Float'] | null) + vac_ban_count: (Scalars['Float'] | null) __typename: 'my_friends_var_pop_fields' } /** aggregate var_samp on columns */ export interface my_friends_var_samp_fields { + days_since_last_ban: (Scalars['Float'] | null) + faceit_elo: (Scalars['Float'] | null) + faceit_skill_level: (Scalars['Float'] | null) friend_steam_id: (Scalars['Float'] | null) + game_ban_count: (Scalars['Float'] | null) invited_by_steam_id: (Scalars['Float'] | null) + premier_rank: (Scalars['Float'] | null) steam_id: (Scalars['Float'] | null) + vac_ban_count: (Scalars['Float'] | null) __typename: 'my_friends_var_samp_fields' } /** aggregate variance on columns */ export interface my_friends_variance_fields { + days_since_last_ban: (Scalars['Float'] | null) + faceit_elo: (Scalars['Float'] | null) + faceit_skill_level: (Scalars['Float'] | null) friend_steam_id: (Scalars['Float'] | null) + game_ban_count: (Scalars['Float'] | null) invited_by_steam_id: (Scalars['Float'] | null) + premier_rank: (Scalars['Float'] | null) steam_id: (Scalars['Float'] | null) + vac_ban_count: (Scalars['Float'] | null) __typename: 'my_friends_variance_fields' } @@ -19203,6 +19295,7 @@ export interface steam_accounts { last_node_id: (Scalars['String'] | null) password: Scalars['String'] role: Scalars['String'] + steam_level: (Scalars['Int'] | null) steamid64: (Scalars['bigint'] | null) updated_at: Scalars['timestamptz'] username: Scalars['String'] @@ -19238,6 +19331,7 @@ export interface steam_accounts_aggregate_fields { /** aggregate avg on columns */ export interface steam_accounts_avg_fields { friend_capacity: (Scalars['Float'] | null) + steam_level: (Scalars['Float'] | null) steamid64: (Scalars['Float'] | null) __typename: 'steam_accounts_avg_fields' } @@ -19255,6 +19349,7 @@ export interface steam_accounts_max_fields { last_node_id: (Scalars['String'] | null) password: (Scalars['String'] | null) role: (Scalars['String'] | null) + steam_level: (Scalars['Int'] | null) steamid64: (Scalars['bigint'] | null) updated_at: (Scalars['timestamptz'] | null) username: (Scalars['String'] | null) @@ -19270,6 +19365,7 @@ export interface steam_accounts_min_fields { last_node_id: (Scalars['String'] | null) password: (Scalars['String'] | null) role: (Scalars['String'] | null) + steam_level: (Scalars['Int'] | null) steamid64: (Scalars['bigint'] | null) updated_at: (Scalars['timestamptz'] | null) username: (Scalars['String'] | null) @@ -19288,12 +19384,13 @@ export interface steam_accounts_mutation_response { /** select columns of table "steam_accounts" */ -export type steam_accounts_select_column = 'created_at' | 'friend_capacity' | 'id' | 'last_node_id' | 'password' | 'role' | 'steamid64' | 'updated_at' | 'username' +export type steam_accounts_select_column = 'created_at' | 'friend_capacity' | 'id' | 'last_node_id' | 'password' | 'role' | 'steam_level' | 'steamid64' | 'updated_at' | 'username' /** aggregate stddev on columns */ export interface steam_accounts_stddev_fields { friend_capacity: (Scalars['Float'] | null) + steam_level: (Scalars['Float'] | null) steamid64: (Scalars['Float'] | null) __typename: 'steam_accounts_stddev_fields' } @@ -19302,6 +19399,7 @@ export interface steam_accounts_stddev_fields { /** aggregate stddev_pop on columns */ export interface steam_accounts_stddev_pop_fields { friend_capacity: (Scalars['Float'] | null) + steam_level: (Scalars['Float'] | null) steamid64: (Scalars['Float'] | null) __typename: 'steam_accounts_stddev_pop_fields' } @@ -19310,6 +19408,7 @@ export interface steam_accounts_stddev_pop_fields { /** aggregate stddev_samp on columns */ export interface steam_accounts_stddev_samp_fields { friend_capacity: (Scalars['Float'] | null) + steam_level: (Scalars['Float'] | null) steamid64: (Scalars['Float'] | null) __typename: 'steam_accounts_stddev_samp_fields' } @@ -19318,18 +19417,20 @@ export interface steam_accounts_stddev_samp_fields { /** aggregate sum on columns */ export interface steam_accounts_sum_fields { friend_capacity: (Scalars['Int'] | null) + steam_level: (Scalars['Int'] | null) steamid64: (Scalars['bigint'] | null) __typename: 'steam_accounts_sum_fields' } /** update columns of table "steam_accounts" */ -export type steam_accounts_update_column = 'created_at' | 'friend_capacity' | 'id' | 'last_node_id' | 'password' | 'role' | 'steamid64' | 'updated_at' | 'username' +export type steam_accounts_update_column = 'created_at' | 'friend_capacity' | 'id' | 'last_node_id' | 'password' | 'role' | 'steam_level' | 'steamid64' | 'updated_at' | 'username' /** aggregate var_pop on columns */ export interface steam_accounts_var_pop_fields { friend_capacity: (Scalars['Float'] | null) + steam_level: (Scalars['Float'] | null) steamid64: (Scalars['Float'] | null) __typename: 'steam_accounts_var_pop_fields' } @@ -19338,6 +19439,7 @@ export interface steam_accounts_var_pop_fields { /** aggregate var_samp on columns */ export interface steam_accounts_var_samp_fields { friend_capacity: (Scalars['Float'] | null) + steam_level: (Scalars['Float'] | null) steamid64: (Scalars['Float'] | null) __typename: 'steam_accounts_var_samp_fields' } @@ -19346,6 +19448,7 @@ export interface steam_accounts_var_samp_fields { /** aggregate variance on columns */ export interface steam_accounts_variance_fields { friend_capacity: (Scalars['Float'] | null) + steam_level: (Scalars['Float'] | null) steamid64: (Scalars['Float'] | null) __typename: 'steam_accounts_variance_fields' } @@ -29479,7 +29582,6 @@ export interface SteamMatchHistoryPollOutputGenqlSelection{ export interface SteamPresenceAdminStatusOutputGenqlSelection{ bots?: SteamPresenceBotGenqlSelection enabled?: boolean | number - events?: SteamPresenceEventGenqlSelection pool?: SteamPresencePoolGenqlSelection __typename?: boolean | number __scalar?: boolean | number @@ -29494,6 +29596,7 @@ export interface SteamPresenceBotGenqlSelection{ needs2fa?: boolean | number online?: boolean | number steamId?: boolean | number + steamLevel?: boolean | number username?: boolean | number watching?: boolean | number __typename?: boolean | number @@ -29509,14 +29612,6 @@ export interface SteamPresenceBotAssignmentGenqlSelection{ __scalar?: boolean | number } -export interface SteamPresenceEventGenqlSelection{ - message?: boolean | number - ts?: boolean | number - type?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - export interface SteamPresencePoolGenqlSelection{ bots?: boolean | number capacity?: boolean | number @@ -46869,22 +46964,43 @@ export interface my_friendsGenqlSelection{ avatar_url?: boolean | number country?: boolean | number created_at?: boolean | number + custom_avatar_url?: boolean | number + days_since_last_ban?: boolean | number discord_id?: boolean | number elo?: { __args: { /** JSON select path */ path?: (Scalars['String'] | null)} } | boolean | number + faceit_elo?: boolean | number + faceit_nickname?: boolean | number + faceit_player_id?: boolean | number + faceit_skill_level?: boolean | number + faceit_updated_at?: boolean | number + faceit_url?: boolean | number friend_steam_id?: boolean | number + game_ban_count?: boolean | number invited_by_steam_id?: boolean | number language?: boolean | number + last_presence_state?: { __args: { + /** JSON select path */ + path?: (Scalars['String'] | null)} } | boolean | number + last_read_news_at?: boolean | number last_sign_in_at?: boolean | number name?: boolean | number name_registered?: boolean | number /** An object relationship */ player?: playersGenqlSelection + premier_rank?: boolean | number + premier_rank_updated_at?: boolean | number + presence_updated_at?: boolean | number profile_url?: boolean | number role?: boolean | number + roster_image_url?: boolean | number + show_match_ready_modal?: boolean | number status?: boolean | number + steam_bans_checked_at?: boolean | number steam_id?: boolean | number + vac_ban_count?: boolean | number + vac_banned?: boolean | number __typename?: boolean | number __scalar?: boolean | number } @@ -46930,7 +47046,7 @@ export interface my_friends_aggregate_order_by {avg?: (my_friends_avg_order_by | /** append existing jsonb value of filtered columns with new jsonb value */ -export interface my_friends_append_input {elo?: (Scalars['jsonb'] | null)} +export interface my_friends_append_input {elo?: (Scalars['jsonb'] | null),last_presence_state?: (Scalars['jsonb'] | null)} /** input type for inserting array relation for remote table "v_my_friends" */ @@ -46939,40 +47055,46 @@ export interface my_friends_arr_rel_insert_input {data: my_friends_insert_input[ /** aggregate avg on columns */ export interface my_friends_avg_fieldsGenqlSelection{ + days_since_last_ban?: boolean | number + faceit_elo?: boolean | number + faceit_skill_level?: boolean | number friend_steam_id?: boolean | number + game_ban_count?: boolean | number invited_by_steam_id?: boolean | number + premier_rank?: boolean | number steam_id?: boolean | number + vac_ban_count?: boolean | number __typename?: boolean | number __scalar?: boolean | number } /** order by avg() on columns of table "v_my_friends" */ -export interface my_friends_avg_order_by {friend_steam_id?: (order_by | null),invited_by_steam_id?: (order_by | null),steam_id?: (order_by | null)} +export interface my_friends_avg_order_by {days_since_last_ban?: (order_by | null),faceit_elo?: (order_by | null),faceit_skill_level?: (order_by | null),friend_steam_id?: (order_by | null),game_ban_count?: (order_by | null),invited_by_steam_id?: (order_by | null),premier_rank?: (order_by | null),steam_id?: (order_by | null),vac_ban_count?: (order_by | null)} /** Boolean expression to filter rows from the table "v_my_friends". All fields are combined with a logical 'AND'. */ -export interface my_friends_bool_exp {_and?: (my_friends_bool_exp[] | null),_not?: (my_friends_bool_exp | null),_or?: (my_friends_bool_exp[] | null),avatar_url?: (String_comparison_exp | null),country?: (String_comparison_exp | null),created_at?: (timestamptz_comparison_exp | null),discord_id?: (String_comparison_exp | null),elo?: (jsonb_comparison_exp | null),friend_steam_id?: (bigint_comparison_exp | null),invited_by_steam_id?: (bigint_comparison_exp | null),language?: (String_comparison_exp | null),last_sign_in_at?: (timestamptz_comparison_exp | null),name?: (String_comparison_exp | null),name_registered?: (Boolean_comparison_exp | null),player?: (players_bool_exp | null),profile_url?: (String_comparison_exp | null),role?: (String_comparison_exp | null),status?: (String_comparison_exp | null),steam_id?: (bigint_comparison_exp | null)} +export interface my_friends_bool_exp {_and?: (my_friends_bool_exp[] | null),_not?: (my_friends_bool_exp | null),_or?: (my_friends_bool_exp[] | null),avatar_url?: (String_comparison_exp | null),country?: (String_comparison_exp | null),created_at?: (timestamptz_comparison_exp | null),custom_avatar_url?: (String_comparison_exp | null),days_since_last_ban?: (Int_comparison_exp | null),discord_id?: (String_comparison_exp | null),elo?: (jsonb_comparison_exp | null),faceit_elo?: (Int_comparison_exp | null),faceit_nickname?: (String_comparison_exp | null),faceit_player_id?: (String_comparison_exp | null),faceit_skill_level?: (Int_comparison_exp | null),faceit_updated_at?: (timestamptz_comparison_exp | null),faceit_url?: (String_comparison_exp | null),friend_steam_id?: (bigint_comparison_exp | null),game_ban_count?: (Int_comparison_exp | null),invited_by_steam_id?: (bigint_comparison_exp | null),language?: (String_comparison_exp | null),last_presence_state?: (jsonb_comparison_exp | null),last_read_news_at?: (timestamptz_comparison_exp | null),last_sign_in_at?: (timestamptz_comparison_exp | null),name?: (String_comparison_exp | null),name_registered?: (Boolean_comparison_exp | null),player?: (players_bool_exp | null),premier_rank?: (Int_comparison_exp | null),premier_rank_updated_at?: (timestamptz_comparison_exp | null),presence_updated_at?: (timestamptz_comparison_exp | null),profile_url?: (String_comparison_exp | null),role?: (String_comparison_exp | null),roster_image_url?: (String_comparison_exp | null),show_match_ready_modal?: (Boolean_comparison_exp | null),status?: (String_comparison_exp | null),steam_bans_checked_at?: (timestamptz_comparison_exp | null),steam_id?: (bigint_comparison_exp | null),vac_ban_count?: (Int_comparison_exp | null),vac_banned?: (Boolean_comparison_exp | null)} /** delete the field or element with specified path (for JSON arrays, negative integers count from the end) */ -export interface my_friends_delete_at_path_input {elo?: (Scalars['String'][] | null)} +export interface my_friends_delete_at_path_input {elo?: (Scalars['String'][] | null),last_presence_state?: (Scalars['String'][] | null)} /** delete the array element with specified index (negative integers count from the end). throws an error if top level container is not an array */ -export interface my_friends_delete_elem_input {elo?: (Scalars['Int'] | null)} +export interface my_friends_delete_elem_input {elo?: (Scalars['Int'] | null),last_presence_state?: (Scalars['Int'] | null)} /** delete key/value pair or string element. key/value pairs are matched based on their key value */ -export interface my_friends_delete_key_input {elo?: (Scalars['String'] | null)} +export interface my_friends_delete_key_input {elo?: (Scalars['String'] | null),last_presence_state?: (Scalars['String'] | null)} /** input type for incrementing numeric columns in table "v_my_friends" */ -export interface my_friends_inc_input {friend_steam_id?: (Scalars['bigint'] | null),invited_by_steam_id?: (Scalars['bigint'] | null),steam_id?: (Scalars['bigint'] | null)} +export interface my_friends_inc_input {days_since_last_ban?: (Scalars['Int'] | null),faceit_elo?: (Scalars['Int'] | null),faceit_skill_level?: (Scalars['Int'] | null),friend_steam_id?: (Scalars['bigint'] | null),game_ban_count?: (Scalars['Int'] | null),invited_by_steam_id?: (Scalars['bigint'] | null),premier_rank?: (Scalars['Int'] | null),steam_id?: (Scalars['bigint'] | null),vac_ban_count?: (Scalars['Int'] | null)} /** input type for inserting data into table "v_my_friends" */ -export interface my_friends_insert_input {avatar_url?: (Scalars['String'] | null),country?: (Scalars['String'] | null),created_at?: (Scalars['timestamptz'] | null),discord_id?: (Scalars['String'] | null),elo?: (Scalars['jsonb'] | null),friend_steam_id?: (Scalars['bigint'] | null),invited_by_steam_id?: (Scalars['bigint'] | null),language?: (Scalars['String'] | null),last_sign_in_at?: (Scalars['timestamptz'] | null),name?: (Scalars['String'] | null),name_registered?: (Scalars['Boolean'] | null),player?: (players_obj_rel_insert_input | null),profile_url?: (Scalars['String'] | null),role?: (Scalars['String'] | null),status?: (Scalars['String'] | null),steam_id?: (Scalars['bigint'] | null)} +export interface my_friends_insert_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),elo?: (Scalars['jsonb'] | 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),friend_steam_id?: (Scalars['bigint'] | null),game_ban_count?: (Scalars['Int'] | null),invited_by_steam_id?: (Scalars['bigint'] | null),language?: (Scalars['String'] | null),last_presence_state?: (Scalars['jsonb'] | null),last_read_news_at?: (Scalars['timestamptz'] | null),last_sign_in_at?: (Scalars['timestamptz'] | null),name?: (Scalars['String'] | null),name_registered?: (Scalars['Boolean'] | null),player?: (players_obj_rel_insert_input | null),premier_rank?: (Scalars['Int'] | null),premier_rank_updated_at?: (Scalars['timestamptz'] | null),presence_updated_at?: (Scalars['timestamptz'] | null),profile_url?: (Scalars['String'] | null),role?: (Scalars['String'] | null),roster_image_url?: (Scalars['String'] | null),show_match_ready_modal?: (Scalars['Boolean'] | null),status?: (Scalars['String'] | 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 max on columns */ @@ -46980,23 +47102,39 @@ export interface my_friends_max_fieldsGenqlSelection{ avatar_url?: boolean | number country?: boolean | number created_at?: boolean | number + custom_avatar_url?: boolean | number + days_since_last_ban?: boolean | number discord_id?: boolean | number + faceit_elo?: boolean | number + faceit_nickname?: boolean | number + faceit_player_id?: boolean | number + faceit_skill_level?: boolean | number + faceit_updated_at?: boolean | number + faceit_url?: boolean | number friend_steam_id?: boolean | number + game_ban_count?: boolean | number invited_by_steam_id?: boolean | number language?: boolean | number + last_read_news_at?: boolean | number last_sign_in_at?: boolean | number name?: boolean | number + premier_rank?: boolean | number + premier_rank_updated_at?: boolean | number + presence_updated_at?: boolean | number profile_url?: boolean | number role?: boolean | number + roster_image_url?: boolean | number status?: boolean | number + steam_bans_checked_at?: boolean | number steam_id?: boolean | number + vac_ban_count?: boolean | number __typename?: boolean | number __scalar?: boolean | number } /** order by max() on columns of table "v_my_friends" */ -export interface my_friends_max_order_by {avatar_url?: (order_by | null),country?: (order_by | null),created_at?: (order_by | null),discord_id?: (order_by | null),friend_steam_id?: (order_by | null),invited_by_steam_id?: (order_by | null),language?: (order_by | null),last_sign_in_at?: (order_by | null),name?: (order_by | null),profile_url?: (order_by | null),role?: (order_by | null),status?: (order_by | null),steam_id?: (order_by | null)} +export interface my_friends_max_order_by {avatar_url?: (order_by | null),country?: (order_by | null),created_at?: (order_by | null),custom_avatar_url?: (order_by | null),days_since_last_ban?: (order_by | null),discord_id?: (order_by | null),faceit_elo?: (order_by | null),faceit_nickname?: (order_by | null),faceit_player_id?: (order_by | null),faceit_skill_level?: (order_by | null),faceit_updated_at?: (order_by | null),faceit_url?: (order_by | null),friend_steam_id?: (order_by | null),game_ban_count?: (order_by | null),invited_by_steam_id?: (order_by | null),language?: (order_by | null),last_read_news_at?: (order_by | null),last_sign_in_at?: (order_by | null),name?: (order_by | null),premier_rank?: (order_by | null),premier_rank_updated_at?: (order_by | null),presence_updated_at?: (order_by | null),profile_url?: (order_by | null),role?: (order_by | null),roster_image_url?: (order_by | null),status?: (order_by | null),steam_bans_checked_at?: (order_by | null),steam_id?: (order_by | null),vac_ban_count?: (order_by | null)} /** aggregate min on columns */ @@ -47004,23 +47142,39 @@ export interface my_friends_min_fieldsGenqlSelection{ avatar_url?: boolean | number country?: boolean | number created_at?: boolean | number + custom_avatar_url?: boolean | number + days_since_last_ban?: boolean | number discord_id?: boolean | number + faceit_elo?: boolean | number + faceit_nickname?: boolean | number + faceit_player_id?: boolean | number + faceit_skill_level?: boolean | number + faceit_updated_at?: boolean | number + faceit_url?: boolean | number friend_steam_id?: boolean | number + game_ban_count?: boolean | number invited_by_steam_id?: boolean | number language?: boolean | number + last_read_news_at?: boolean | number last_sign_in_at?: boolean | number name?: boolean | number + premier_rank?: boolean | number + premier_rank_updated_at?: boolean | number + presence_updated_at?: boolean | number profile_url?: boolean | number role?: boolean | number + roster_image_url?: boolean | number status?: boolean | number + steam_bans_checked_at?: boolean | number steam_id?: boolean | number + vac_ban_count?: boolean | number __typename?: boolean | number __scalar?: boolean | number } /** order by min() on columns of table "v_my_friends" */ -export interface my_friends_min_order_by {avatar_url?: (order_by | null),country?: (order_by | null),created_at?: (order_by | null),discord_id?: (order_by | null),friend_steam_id?: (order_by | null),invited_by_steam_id?: (order_by | null),language?: (order_by | null),last_sign_in_at?: (order_by | null),name?: (order_by | null),profile_url?: (order_by | null),role?: (order_by | null),status?: (order_by | null),steam_id?: (order_by | null)} +export interface my_friends_min_order_by {avatar_url?: (order_by | null),country?: (order_by | null),created_at?: (order_by | null),custom_avatar_url?: (order_by | null),days_since_last_ban?: (order_by | null),discord_id?: (order_by | null),faceit_elo?: (order_by | null),faceit_nickname?: (order_by | null),faceit_player_id?: (order_by | null),faceit_skill_level?: (order_by | null),faceit_updated_at?: (order_by | null),faceit_url?: (order_by | null),friend_steam_id?: (order_by | null),game_ban_count?: (order_by | null),invited_by_steam_id?: (order_by | null),language?: (order_by | null),last_read_news_at?: (order_by | null),last_sign_in_at?: (order_by | null),name?: (order_by | null),premier_rank?: (order_by | null),premier_rank_updated_at?: (order_by | null),presence_updated_at?: (order_by | null),profile_url?: (order_by | null),role?: (order_by | null),roster_image_url?: (order_by | null),status?: (order_by | null),steam_bans_checked_at?: (order_by | null),steam_id?: (order_by | null),vac_ban_count?: (order_by | null)} /** response of any mutation on the table "v_my_friends" */ @@ -47035,57 +47189,75 @@ export interface my_friends_mutation_responseGenqlSelection{ /** Ordering options when selecting data from "v_my_friends". */ -export interface my_friends_order_by {avatar_url?: (order_by | null),country?: (order_by | null),created_at?: (order_by | null),discord_id?: (order_by | null),elo?: (order_by | null),friend_steam_id?: (order_by | null),invited_by_steam_id?: (order_by | null),language?: (order_by | null),last_sign_in_at?: (order_by | null),name?: (order_by | null),name_registered?: (order_by | null),player?: (players_order_by | null),profile_url?: (order_by | null),role?: (order_by | null),status?: (order_by | null),steam_id?: (order_by | null)} +export interface my_friends_order_by {avatar_url?: (order_by | null),country?: (order_by | null),created_at?: (order_by | null),custom_avatar_url?: (order_by | null),days_since_last_ban?: (order_by | null),discord_id?: (order_by | null),elo?: (order_by | null),faceit_elo?: (order_by | null),faceit_nickname?: (order_by | null),faceit_player_id?: (order_by | null),faceit_skill_level?: (order_by | null),faceit_updated_at?: (order_by | null),faceit_url?: (order_by | null),friend_steam_id?: (order_by | null),game_ban_count?: (order_by | null),invited_by_steam_id?: (order_by | null),language?: (order_by | null),last_presence_state?: (order_by | null),last_read_news_at?: (order_by | null),last_sign_in_at?: (order_by | null),name?: (order_by | null),name_registered?: (order_by | null),player?: (players_order_by | null),premier_rank?: (order_by | null),premier_rank_updated_at?: (order_by | null),presence_updated_at?: (order_by | null),profile_url?: (order_by | null),role?: (order_by | null),roster_image_url?: (order_by | null),show_match_ready_modal?: (order_by | null),status?: (order_by | null),steam_bans_checked_at?: (order_by | null),steam_id?: (order_by | null),vac_ban_count?: (order_by | null),vac_banned?: (order_by | null)} /** prepend existing jsonb value of filtered columns with new jsonb value */ -export interface my_friends_prepend_input {elo?: (Scalars['jsonb'] | null)} +export interface my_friends_prepend_input {elo?: (Scalars['jsonb'] | null),last_presence_state?: (Scalars['jsonb'] | null)} /** input type for updating data in table "v_my_friends" */ -export interface my_friends_set_input {avatar_url?: (Scalars['String'] | null),country?: (Scalars['String'] | null),created_at?: (Scalars['timestamptz'] | null),discord_id?: (Scalars['String'] | null),elo?: (Scalars['jsonb'] | null),friend_steam_id?: (Scalars['bigint'] | null),invited_by_steam_id?: (Scalars['bigint'] | null),language?: (Scalars['String'] | null),last_sign_in_at?: (Scalars['timestamptz'] | null),name?: (Scalars['String'] | null),name_registered?: (Scalars['Boolean'] | null),profile_url?: (Scalars['String'] | null),role?: (Scalars['String'] | null),status?: (Scalars['String'] | null),steam_id?: (Scalars['bigint'] | null)} +export interface my_friends_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),elo?: (Scalars['jsonb'] | 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),friend_steam_id?: (Scalars['bigint'] | null),game_ban_count?: (Scalars['Int'] | null),invited_by_steam_id?: (Scalars['bigint'] | null),language?: (Scalars['String'] | null),last_presence_state?: (Scalars['jsonb'] | 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),presence_updated_at?: (Scalars['timestamptz'] | null),profile_url?: (Scalars['String'] | null),role?: (Scalars['String'] | null),roster_image_url?: (Scalars['String'] | null),show_match_ready_modal?: (Scalars['Boolean'] | null),status?: (Scalars['String'] | 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 */ export interface my_friends_stddev_fieldsGenqlSelection{ + days_since_last_ban?: boolean | number + faceit_elo?: boolean | number + faceit_skill_level?: boolean | number friend_steam_id?: boolean | number + game_ban_count?: boolean | number invited_by_steam_id?: boolean | number + premier_rank?: boolean | number steam_id?: boolean | number + vac_ban_count?: boolean | number __typename?: boolean | number __scalar?: boolean | number } /** order by stddev() on columns of table "v_my_friends" */ -export interface my_friends_stddev_order_by {friend_steam_id?: (order_by | null),invited_by_steam_id?: (order_by | null),steam_id?: (order_by | null)} +export interface my_friends_stddev_order_by {days_since_last_ban?: (order_by | null),faceit_elo?: (order_by | null),faceit_skill_level?: (order_by | null),friend_steam_id?: (order_by | null),game_ban_count?: (order_by | null),invited_by_steam_id?: (order_by | null),premier_rank?: (order_by | null),steam_id?: (order_by | null),vac_ban_count?: (order_by | null)} /** aggregate stddev_pop on columns */ export interface my_friends_stddev_pop_fieldsGenqlSelection{ + days_since_last_ban?: boolean | number + faceit_elo?: boolean | number + faceit_skill_level?: boolean | number friend_steam_id?: boolean | number + game_ban_count?: boolean | number invited_by_steam_id?: boolean | number + premier_rank?: boolean | number steam_id?: boolean | number + vac_ban_count?: boolean | number __typename?: boolean | number __scalar?: boolean | number } /** order by stddev_pop() on columns of table "v_my_friends" */ -export interface my_friends_stddev_pop_order_by {friend_steam_id?: (order_by | null),invited_by_steam_id?: (order_by | null),steam_id?: (order_by | null)} +export interface my_friends_stddev_pop_order_by {days_since_last_ban?: (order_by | null),faceit_elo?: (order_by | null),faceit_skill_level?: (order_by | null),friend_steam_id?: (order_by | null),game_ban_count?: (order_by | null),invited_by_steam_id?: (order_by | null),premier_rank?: (order_by | null),steam_id?: (order_by | null),vac_ban_count?: (order_by | null)} /** aggregate stddev_samp on columns */ export interface my_friends_stddev_samp_fieldsGenqlSelection{ + days_since_last_ban?: boolean | number + faceit_elo?: boolean | number + faceit_skill_level?: boolean | number friend_steam_id?: boolean | number + game_ban_count?: boolean | number invited_by_steam_id?: boolean | number + premier_rank?: boolean | number steam_id?: boolean | number + vac_ban_count?: boolean | number __typename?: boolean | number __scalar?: boolean | number } /** order by stddev_samp() on columns of table "v_my_friends" */ -export interface my_friends_stddev_samp_order_by {friend_steam_id?: (order_by | null),invited_by_steam_id?: (order_by | null),steam_id?: (order_by | null)} +export interface my_friends_stddev_samp_order_by {days_since_last_ban?: (order_by | null),faceit_elo?: (order_by | null),faceit_skill_level?: (order_by | null),friend_steam_id?: (order_by | null),game_ban_count?: (order_by | null),invited_by_steam_id?: (order_by | null),premier_rank?: (order_by | null),steam_id?: (order_by | null),vac_ban_count?: (order_by | null)} /** Streaming cursor of the table "my_friends" */ @@ -47097,21 +47269,27 @@ ordering?: (cursor_ordering | null)} /** Initial value of the column from where the streaming should start */ -export interface my_friends_stream_cursor_value_input {avatar_url?: (Scalars['String'] | null),country?: (Scalars['String'] | null),created_at?: (Scalars['timestamptz'] | null),discord_id?: (Scalars['String'] | null),elo?: (Scalars['jsonb'] | null),friend_steam_id?: (Scalars['bigint'] | null),invited_by_steam_id?: (Scalars['bigint'] | null),language?: (Scalars['String'] | null),last_sign_in_at?: (Scalars['timestamptz'] | null),name?: (Scalars['String'] | null),name_registered?: (Scalars['Boolean'] | null),profile_url?: (Scalars['String'] | null),role?: (Scalars['String'] | null),status?: (Scalars['String'] | null),steam_id?: (Scalars['bigint'] | null)} +export interface my_friends_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),elo?: (Scalars['jsonb'] | 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),friend_steam_id?: (Scalars['bigint'] | null),game_ban_count?: (Scalars['Int'] | null),invited_by_steam_id?: (Scalars['bigint'] | null),language?: (Scalars['String'] | null),last_presence_state?: (Scalars['jsonb'] | 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),presence_updated_at?: (Scalars['timestamptz'] | null),profile_url?: (Scalars['String'] | null),role?: (Scalars['String'] | null),roster_image_url?: (Scalars['String'] | null),show_match_ready_modal?: (Scalars['Boolean'] | null),status?: (Scalars['String'] | 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 */ export interface my_friends_sum_fieldsGenqlSelection{ + days_since_last_ban?: boolean | number + faceit_elo?: boolean | number + faceit_skill_level?: boolean | number friend_steam_id?: boolean | number + game_ban_count?: boolean | number invited_by_steam_id?: boolean | number + premier_rank?: boolean | number steam_id?: boolean | number + vac_ban_count?: boolean | number __typename?: boolean | number __scalar?: boolean | number } /** order by sum() on columns of table "v_my_friends" */ -export interface my_friends_sum_order_by {friend_steam_id?: (order_by | null),invited_by_steam_id?: (order_by | null),steam_id?: (order_by | null)} +export interface my_friends_sum_order_by {days_since_last_ban?: (order_by | null),faceit_elo?: (order_by | null),faceit_skill_level?: (order_by | null),friend_steam_id?: (order_by | null),game_ban_count?: (order_by | null),invited_by_steam_id?: (order_by | null),premier_rank?: (order_by | null),steam_id?: (order_by | null),vac_ban_count?: (order_by | null)} export interface my_friends_updates { /** append existing jsonb value of filtered columns with new jsonb value */ @@ -47134,44 +47312,62 @@ where: my_friends_bool_exp} /** aggregate var_pop on columns */ export interface my_friends_var_pop_fieldsGenqlSelection{ + days_since_last_ban?: boolean | number + faceit_elo?: boolean | number + faceit_skill_level?: boolean | number friend_steam_id?: boolean | number + game_ban_count?: boolean | number invited_by_steam_id?: boolean | number + premier_rank?: boolean | number steam_id?: boolean | number + vac_ban_count?: boolean | number __typename?: boolean | number __scalar?: boolean | number } /** order by var_pop() on columns of table "v_my_friends" */ -export interface my_friends_var_pop_order_by {friend_steam_id?: (order_by | null),invited_by_steam_id?: (order_by | null),steam_id?: (order_by | null)} +export interface my_friends_var_pop_order_by {days_since_last_ban?: (order_by | null),faceit_elo?: (order_by | null),faceit_skill_level?: (order_by | null),friend_steam_id?: (order_by | null),game_ban_count?: (order_by | null),invited_by_steam_id?: (order_by | null),premier_rank?: (order_by | null),steam_id?: (order_by | null),vac_ban_count?: (order_by | null)} /** aggregate var_samp on columns */ export interface my_friends_var_samp_fieldsGenqlSelection{ + days_since_last_ban?: boolean | number + faceit_elo?: boolean | number + faceit_skill_level?: boolean | number friend_steam_id?: boolean | number + game_ban_count?: boolean | number invited_by_steam_id?: boolean | number + premier_rank?: boolean | number steam_id?: boolean | number + vac_ban_count?: boolean | number __typename?: boolean | number __scalar?: boolean | number } /** order by var_samp() on columns of table "v_my_friends" */ -export interface my_friends_var_samp_order_by {friend_steam_id?: (order_by | null),invited_by_steam_id?: (order_by | null),steam_id?: (order_by | null)} +export interface my_friends_var_samp_order_by {days_since_last_ban?: (order_by | null),faceit_elo?: (order_by | null),faceit_skill_level?: (order_by | null),friend_steam_id?: (order_by | null),game_ban_count?: (order_by | null),invited_by_steam_id?: (order_by | null),premier_rank?: (order_by | null),steam_id?: (order_by | null),vac_ban_count?: (order_by | null)} /** aggregate variance on columns */ export interface my_friends_variance_fieldsGenqlSelection{ + days_since_last_ban?: boolean | number + faceit_elo?: boolean | number + faceit_skill_level?: boolean | number friend_steam_id?: boolean | number + game_ban_count?: boolean | number invited_by_steam_id?: boolean | number + premier_rank?: boolean | number steam_id?: boolean | number + vac_ban_count?: boolean | number __typename?: boolean | number __scalar?: boolean | number } /** order by variance() on columns of table "v_my_friends" */ -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)} +export interface my_friends_variance_order_by {days_since_last_ban?: (order_by | null),faceit_elo?: (order_by | null),faceit_skill_level?: (order_by | null),friend_steam_id?: (order_by | null),game_ban_count?: (order_by | null),invited_by_steam_id?: (order_by | null),premier_rank?: (order_by | null),steam_id?: (order_by | null),vac_ban_count?: (order_by | null)} /** columns and relationships of "news_articles" */ @@ -62757,6 +62953,7 @@ export interface steam_accountsGenqlSelection{ last_node_id?: boolean | number password?: boolean | number role?: boolean | number + steam_level?: boolean | number steamid64?: boolean | number updated_at?: boolean | number username?: boolean | number @@ -62795,6 +62992,7 @@ export interface steam_accounts_aggregate_fieldsGenqlSelection{ /** aggregate avg on columns */ export interface steam_accounts_avg_fieldsGenqlSelection{ friend_capacity?: boolean | number + steam_level?: boolean | number steamid64?: boolean | number __typename?: boolean | number __scalar?: boolean | number @@ -62802,15 +63000,15 @@ export interface steam_accounts_avg_fieldsGenqlSelection{ /** Boolean expression to filter rows from the table "steam_accounts". All fields are combined with a logical 'AND'. */ -export interface steam_accounts_bool_exp {_and?: (steam_accounts_bool_exp[] | null),_not?: (steam_accounts_bool_exp | null),_or?: (steam_accounts_bool_exp[] | null),claims?: (steam_account_claims_bool_exp | null),claims_aggregate?: (steam_account_claims_aggregate_bool_exp | null),created_at?: (timestamptz_comparison_exp | null),friend_capacity?: (Int_comparison_exp | null),id?: (uuid_comparison_exp | null),last_node?: (game_server_nodes_bool_exp | null),last_node_id?: (String_comparison_exp | null),password?: (String_comparison_exp | null),role?: (String_comparison_exp | null),steamid64?: (bigint_comparison_exp | null),updated_at?: (timestamptz_comparison_exp | null),username?: (String_comparison_exp | null)} +export interface steam_accounts_bool_exp {_and?: (steam_accounts_bool_exp[] | null),_not?: (steam_accounts_bool_exp | null),_or?: (steam_accounts_bool_exp[] | null),claims?: (steam_account_claims_bool_exp | null),claims_aggregate?: (steam_account_claims_aggregate_bool_exp | null),created_at?: (timestamptz_comparison_exp | null),friend_capacity?: (Int_comparison_exp | null),id?: (uuid_comparison_exp | null),last_node?: (game_server_nodes_bool_exp | null),last_node_id?: (String_comparison_exp | null),password?: (String_comparison_exp | null),role?: (String_comparison_exp | null),steam_level?: (Int_comparison_exp | null),steamid64?: (bigint_comparison_exp | null),updated_at?: (timestamptz_comparison_exp | null),username?: (String_comparison_exp | null)} /** input type for incrementing numeric columns in table "steam_accounts" */ -export interface steam_accounts_inc_input {friend_capacity?: (Scalars['Int'] | null),steamid64?: (Scalars['bigint'] | null)} +export interface steam_accounts_inc_input {friend_capacity?: (Scalars['Int'] | null),steam_level?: (Scalars['Int'] | null),steamid64?: (Scalars['bigint'] | null)} /** input type for inserting data into table "steam_accounts" */ -export interface steam_accounts_insert_input {claims?: (steam_account_claims_arr_rel_insert_input | null),created_at?: (Scalars['timestamptz'] | null),friend_capacity?: (Scalars['Int'] | null),id?: (Scalars['uuid'] | null),last_node?: (game_server_nodes_obj_rel_insert_input | null),last_node_id?: (Scalars['String'] | null),password?: (Scalars['String'] | null),role?: (Scalars['String'] | null),steamid64?: (Scalars['bigint'] | null),updated_at?: (Scalars['timestamptz'] | null),username?: (Scalars['String'] | null)} +export interface steam_accounts_insert_input {claims?: (steam_account_claims_arr_rel_insert_input | null),created_at?: (Scalars['timestamptz'] | null),friend_capacity?: (Scalars['Int'] | null),id?: (Scalars['uuid'] | null),last_node?: (game_server_nodes_obj_rel_insert_input | null),last_node_id?: (Scalars['String'] | null),password?: (Scalars['String'] | null),role?: (Scalars['String'] | null),steam_level?: (Scalars['Int'] | null),steamid64?: (Scalars['bigint'] | null),updated_at?: (Scalars['timestamptz'] | null),username?: (Scalars['String'] | null)} /** aggregate max on columns */ @@ -62821,6 +63019,7 @@ export interface steam_accounts_max_fieldsGenqlSelection{ last_node_id?: boolean | number password?: boolean | number role?: boolean | number + steam_level?: boolean | number steamid64?: boolean | number updated_at?: boolean | number username?: boolean | number @@ -62837,6 +63036,7 @@ export interface steam_accounts_min_fieldsGenqlSelection{ last_node_id?: boolean | number password?: boolean | number role?: boolean | number + steam_level?: boolean | number steamid64?: boolean | number updated_at?: boolean | number username?: boolean | number @@ -62867,7 +63067,7 @@ export interface steam_accounts_on_conflict {constraint: steam_accounts_constrai /** Ordering options when selecting data from "steam_accounts". */ -export interface steam_accounts_order_by {claims_aggregate?: (steam_account_claims_aggregate_order_by | null),created_at?: (order_by | null),friend_capacity?: (order_by | null),id?: (order_by | null),last_node?: (game_server_nodes_order_by | null),last_node_id?: (order_by | null),password?: (order_by | null),role?: (order_by | null),steamid64?: (order_by | null),updated_at?: (order_by | null),username?: (order_by | null)} +export interface steam_accounts_order_by {claims_aggregate?: (steam_account_claims_aggregate_order_by | null),created_at?: (order_by | null),friend_capacity?: (order_by | null),id?: (order_by | null),last_node?: (game_server_nodes_order_by | null),last_node_id?: (order_by | null),password?: (order_by | null),role?: (order_by | null),steam_level?: (order_by | null),steamid64?: (order_by | null),updated_at?: (order_by | null),username?: (order_by | null)} /** primary key columns input for table: steam_accounts */ @@ -62875,12 +63075,13 @@ export interface steam_accounts_pk_columns_input {id: Scalars['uuid']} /** input type for updating data in table "steam_accounts" */ -export interface steam_accounts_set_input {created_at?: (Scalars['timestamptz'] | null),friend_capacity?: (Scalars['Int'] | null),id?: (Scalars['uuid'] | null),last_node_id?: (Scalars['String'] | null),password?: (Scalars['String'] | null),role?: (Scalars['String'] | null),steamid64?: (Scalars['bigint'] | null),updated_at?: (Scalars['timestamptz'] | null),username?: (Scalars['String'] | null)} +export interface steam_accounts_set_input {created_at?: (Scalars['timestamptz'] | null),friend_capacity?: (Scalars['Int'] | null),id?: (Scalars['uuid'] | null),last_node_id?: (Scalars['String'] | null),password?: (Scalars['String'] | null),role?: (Scalars['String'] | null),steam_level?: (Scalars['Int'] | null),steamid64?: (Scalars['bigint'] | null),updated_at?: (Scalars['timestamptz'] | null),username?: (Scalars['String'] | null)} /** aggregate stddev on columns */ export interface steam_accounts_stddev_fieldsGenqlSelection{ friend_capacity?: boolean | number + steam_level?: boolean | number steamid64?: boolean | number __typename?: boolean | number __scalar?: boolean | number @@ -62890,6 +63091,7 @@ export interface steam_accounts_stddev_fieldsGenqlSelection{ /** aggregate stddev_pop on columns */ export interface steam_accounts_stddev_pop_fieldsGenqlSelection{ friend_capacity?: boolean | number + steam_level?: boolean | number steamid64?: boolean | number __typename?: boolean | number __scalar?: boolean | number @@ -62899,6 +63101,7 @@ export interface steam_accounts_stddev_pop_fieldsGenqlSelection{ /** aggregate stddev_samp on columns */ export interface steam_accounts_stddev_samp_fieldsGenqlSelection{ friend_capacity?: boolean | number + steam_level?: boolean | number steamid64?: boolean | number __typename?: boolean | number __scalar?: boolean | number @@ -62914,12 +63117,13 @@ ordering?: (cursor_ordering | null)} /** Initial value of the column from where the streaming should start */ -export interface steam_accounts_stream_cursor_value_input {created_at?: (Scalars['timestamptz'] | null),friend_capacity?: (Scalars['Int'] | null),id?: (Scalars['uuid'] | null),last_node_id?: (Scalars['String'] | null),password?: (Scalars['String'] | null),role?: (Scalars['String'] | null),steamid64?: (Scalars['bigint'] | null),updated_at?: (Scalars['timestamptz'] | null),username?: (Scalars['String'] | null)} +export interface steam_accounts_stream_cursor_value_input {created_at?: (Scalars['timestamptz'] | null),friend_capacity?: (Scalars['Int'] | null),id?: (Scalars['uuid'] | null),last_node_id?: (Scalars['String'] | null),password?: (Scalars['String'] | null),role?: (Scalars['String'] | null),steam_level?: (Scalars['Int'] | null),steamid64?: (Scalars['bigint'] | null),updated_at?: (Scalars['timestamptz'] | null),username?: (Scalars['String'] | null)} /** aggregate sum on columns */ export interface steam_accounts_sum_fieldsGenqlSelection{ friend_capacity?: boolean | number + steam_level?: boolean | number steamid64?: boolean | number __typename?: boolean | number __scalar?: boolean | number @@ -62937,6 +63141,7 @@ where: steam_accounts_bool_exp} /** aggregate var_pop on columns */ export interface steam_accounts_var_pop_fieldsGenqlSelection{ friend_capacity?: boolean | number + steam_level?: boolean | number steamid64?: boolean | number __typename?: boolean | number __scalar?: boolean | number @@ -62946,6 +63151,7 @@ export interface steam_accounts_var_pop_fieldsGenqlSelection{ /** aggregate var_samp on columns */ export interface steam_accounts_var_samp_fieldsGenqlSelection{ friend_capacity?: boolean | number + steam_level?: boolean | number steamid64?: boolean | number __typename?: boolean | number __scalar?: boolean | number @@ -62955,6 +63161,7 @@ export interface steam_accounts_var_samp_fieldsGenqlSelection{ /** aggregate variance on columns */ export interface steam_accounts_variance_fieldsGenqlSelection{ friend_capacity?: boolean | number + steam_level?: boolean | number steamid64?: boolean | number __typename?: boolean | number __scalar?: boolean | number @@ -80446,14 +80653,6 @@ export type SubscriptionGenqlSelection = subscription_rootGenqlSelection - const SteamPresenceEvent_possibleTypes: string[] = ['SteamPresenceEvent'] - export const isSteamPresenceEvent = (obj?: { __typename?: any } | null): obj is SteamPresenceEvent => { - if (!obj?.__typename) throw new Error('__typename is missing in "isSteamPresenceEvent"') - return SteamPresenceEvent_possibleTypes.includes(obj.__typename) - } - - - const SteamPresencePool_possibleTypes: string[] = ['SteamPresencePool'] export const isSteamPresencePool = (obj?: { __typename?: any } | null): obj is SteamPresencePool => { if (!obj?.__typename) throw new Error('__typename is missing in "isSteamPresencePool"') @@ -95925,26 +96124,49 @@ export const enumMyFriendsSelectColumn = { avatar_url: 'avatar_url' as const, country: 'country' as const, created_at: 'created_at' as const, + custom_avatar_url: 'custom_avatar_url' as const, + days_since_last_ban: 'days_since_last_ban' as const, discord_id: 'discord_id' as const, elo: 'elo' as const, + faceit_elo: 'faceit_elo' as const, + faceit_nickname: 'faceit_nickname' as const, + faceit_player_id: 'faceit_player_id' as const, + faceit_skill_level: 'faceit_skill_level' as const, + faceit_updated_at: 'faceit_updated_at' as const, + faceit_url: 'faceit_url' as const, friend_steam_id: 'friend_steam_id' as const, + game_ban_count: 'game_ban_count' as const, invited_by_steam_id: 'invited_by_steam_id' as const, language: 'language' as const, + last_presence_state: 'last_presence_state' 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, + premier_rank: 'premier_rank' as const, + premier_rank_updated_at: 'premier_rank_updated_at' as const, + presence_updated_at: 'presence_updated_at' as const, profile_url: 'profile_url' as const, role: 'role' as const, + roster_image_url: 'roster_image_url' as const, + show_match_ready_modal: 'show_match_ready_modal' as const, status: 'status' as const, - steam_id: 'steam_id' as const + steam_bans_checked_at: 'steam_bans_checked_at' as const, + steam_id: 'steam_id' as const, + vac_ban_count: 'vac_ban_count' as const, + vac_banned: 'vac_banned' as const } export const enumMyFriendsSelectColumnMyFriendsAggregateBoolExpBoolAndArgumentsColumns = { - name_registered: 'name_registered' as const + name_registered: 'name_registered' as const, + show_match_ready_modal: 'show_match_ready_modal' as const, + vac_banned: 'vac_banned' as const } export const enumMyFriendsSelectColumnMyFriendsAggregateBoolExpBoolOrArgumentsColumns = { - name_registered: 'name_registered' as const + name_registered: 'name_registered' as const, + show_match_ready_modal: 'show_match_ready_modal' as const, + vac_banned: 'vac_banned' as const } export const enumNewsArticlesConstraint = { @@ -97189,6 +97411,7 @@ export const enumSteamAccountsSelectColumn = { last_node_id: 'last_node_id' as const, password: 'password' as const, role: 'role' as const, + steam_level: 'steam_level' as const, steamid64: 'steamid64' as const, updated_at: 'updated_at' as const, username: 'username' as const @@ -97201,6 +97424,7 @@ export const enumSteamAccountsUpdateColumn = { last_node_id: 'last_node_id' as const, password: 'password' as const, role: 'role' as const, + steam_level: 'steam_level' as const, steamid64: 'steamid64' as const, updated_at: 'updated_at' as const, username: 'username' as const diff --git a/generated/types.ts b/generated/types.ts index a5d4b215..6e55b0b0 100644 --- a/generated/types.ts +++ b/generated/types.ts @@ -3,454 +3,455 @@ export default { 3, 29, 38, - 75, - 92, - 100, - 104, - 116, - 127, - 139, - 152, - 161, - 169, - 174, - 177, - 192, + 74, + 91, + 99, + 103, + 115, + 126, + 138, + 151, + 160, + 168, + 173, + 176, + 191, + 206, 207, 208, - 209, - 221, - 229, - 235, - 244, - 252, - 269, + 220, + 228, + 234, + 243, + 251, + 268, + 279, 280, 281, - 282, - 294, - 314, + 293, + 313, + 324, 325, 326, - 327, - 339, - 359, + 338, + 358, + 370, 371, 372, - 373, - 385, + 384, + 396, 397, - 398, - 407, - 411, + 406, + 410, + 416, 417, - 418, - 428, - 432, + 427, + 431, + 437, 438, - 439, - 449, - 453, + 448, + 452, + 458, 459, - 460, - 470, - 474, + 469, + 473, + 479, 480, - 481, - 491, - 495, + 490, + 494, + 500, 501, - 502, - 512, - 516, + 511, + 515, + 521, 522, - 523, - 533, - 537, + 532, + 536, + 542, 543, - 544, - 553, - 557, + 552, + 556, + 562, 563, - 564, - 574, - 578, + 573, + 577, + 583, 584, - 585, - 595, - 599, + 594, + 598, + 604, 605, - 606, - 615, - 619, + 614, + 618, + 624, 625, - 626, - 636, - 640, + 635, + 639, + 645, 646, - 647, - 656, - 660, + 655, + 659, + 665, 666, - 667, - 677, - 681, + 676, + 680, + 686, 687, - 688, - 697, - 701, + 696, + 700, + 706, 707, - 708, - 718, - 722, + 717, + 721, + 727, 728, - 729, - 739, - 743, + 738, + 742, + 748, 749, - 750, - 759, - 763, + 758, + 762, + 768, 769, - 770, - 779, - 783, + 778, + 782, + 788, 789, - 790, - 799, - 803, + 798, + 802, + 808, 809, - 810, - 819, - 823, + 818, + 822, + 828, 829, - 830, - 840, - 844, + 839, + 843, + 849, 850, - 851, - 860, - 864, + 859, + 863, + 869, 870, - 871, - 880, - 884, + 879, + 883, + 889, 890, - 891, - 900, - 904, + 899, + 903, + 909, 910, - 911, - 920, - 924, + 919, + 923, + 929, 930, - 931, - 941, - 945, + 940, + 944, + 950, 951, - 952, - 961, - 965, + 960, + 964, + 970, 971, - 972, - 981, - 985, + 980, + 984, + 990, 991, - 992, - 1002, - 1006, + 1001, + 1005, + 1011, 1012, - 1013, - 1023, - 1027, + 1022, + 1026, + 1032, 1033, - 1034, - 1043, - 1047, + 1042, + 1046, + 1052, 1053, - 1054, - 1063, - 1067, + 1062, + 1066, + 1072, 1073, - 1074, - 1083, - 1087, - 1089, - 1096, - 1105, - 1113, - 1131, + 1082, + 1086, + 1088, + 1095, + 1104, + 1112, + 1130, + 1146, 1147, 1148, - 1149, - 1161, - 1175, - 1189, - 1197, - 1208, - 1221, - 1229, - 1236, - 1238, - 1240, - 1254, - 1270, - 1279, - 1283, - 1297, + 1160, + 1174, + 1188, + 1196, + 1207, + 1220, + 1228, + 1235, + 1237, + 1239, + 1253, + 1269, + 1278, + 1282, + 1296, + 1307, 1308, 1309, - 1310, - 1322, - 1334, - 1343, - 1347, - 1359, + 1321, + 1333, + 1342, + 1346, + 1358, + 1369, 1370, 1371, - 1372, - 1376, - 1388, - 1400, - 1412, - 1431, - 1446, - 1458, - 1478, + 1375, + 1387, + 1399, + 1411, + 1430, + 1445, + 1457, + 1477, + 1488, 1489, 1490, - 1491, - 1503, - 1521, - 1533, - 1545, - 1566, + 1502, + 1520, + 1532, + 1544, + 1565, + 1581, 1582, 1583, - 1584, - 1596, - 1614, - 1625, - 1637, - 1653, - 1663, - 1667, - 1679, - 1691, - 1703, - 1716, - 1726, - 1734, - 1747, - 1757, - 1761, - 1776, + 1595, + 1613, + 1624, + 1636, + 1652, + 1662, + 1666, + 1678, + 1690, + 1702, + 1715, + 1725, + 1733, + 1746, + 1756, + 1760, + 1775, + 1790, 1791, 1792, - 1793, - 1805, - 1817, - 1825, - 1829, - 1841, - 1853, - 1865, - 1877, - 1885, - 1889, + 1804, + 1816, + 1824, + 1828, + 1840, + 1852, + 1864, + 1876, + 1884, + 1888, + 1915, 1916, 1917, - 1918, - 1942, - 1951, - 1959, - 1977, + 1941, + 1950, + 1958, + 1976, + 1991, 1992, 1993, - 1994, - 2006, - 2014, - 2016, - 2027, - 2038, - 2050, - 2063, - 2073, - 2081, - 2091, - 2100, - 2108, - 2123, - 2134, - 2146, - 2166, + 2005, + 2013, + 2015, + 2026, + 2037, + 2049, + 2062, + 2072, + 2080, + 2090, + 2099, + 2107, + 2122, + 2133, + 2145, + 2165, + 2176, 2177, 2178, - 2179, - 2191, - 2207, - 2227, - 2238, - 2250, - 2263, - 2272, - 2280, - 2295, - 2306, - 2318, - 2338, + 2190, + 2206, + 2226, + 2237, + 2249, + 2262, + 2271, + 2279, + 2294, + 2305, + 2317, + 2337, + 2348, 2349, 2350, - 2351, - 2363, - 2393, - 2404, - 2416, - 2424, + 2362, + 2392, + 2403, + 2415, + 2423, + 2434, 2435, 2436, - 2437, - 2449, - 2468, - 2490, - 2501, - 2513, - 2529, - 2555, - 2582, - 2593, - 2605, - 2621, - 2641, - 2652, - 2664, - 2682, - 2693, - 2705, - 2718, - 2728, - 2736, - 2747, - 2760, - 2768, - 2778, - 2787, - 2795, - 2810, - 2821, - 2833, - 2851, - 2862, - 2874, - 2898, - 2920, - 2930, - 2938, - 2948, - 2957, - 2965, - 2976, - 2985, - 2993, - 3010, + 2448, + 2467, + 2489, + 2500, + 2512, + 2528, + 2554, + 2581, + 2592, + 2604, + 2620, + 2640, + 2651, + 2663, + 2681, + 2692, + 2704, + 2717, + 2727, + 2735, + 2746, + 2759, + 2767, + 2777, + 2786, + 2794, + 2809, + 2820, + 2832, + 2850, + 2861, + 2873, + 2897, + 2919, + 2929, + 2937, + 2947, + 2956, + 2964, + 2975, + 2984, + 2992, + 3009, + 3021, 3022, 3023, - 3024, - 3036, - 3048, - 3056, - 3060, - 3070, - 3080, - 3084, - 3091, - 3101, - 3109, - 3119, - 3128, - 3136, - 3151, - 3162, - 3174, - 3194, + 3035, + 3047, + 3055, + 3059, + 3069, + 3079, + 3083, + 3090, + 3100, + 3108, + 3118, + 3127, + 3135, + 3150, + 3161, + 3173, + 3193, + 3204, 3205, 3206, - 3207, - 3219, - 3232, - 3241, - 3249, - 3264, + 3218, + 3231, + 3240, + 3248, + 3263, + 3273, 3274, 3275, - 3276, - 3280, - 3292, - 3303, - 3315, - 3335, + 3279, + 3291, + 3302, + 3314, + 3334, + 3346, 3347, 3348, - 3349, - 3361, - 3374, - 3384, - 3392, - 3402, - 3411, - 3419, - 3434, - 3446, - 3458, + 3360, + 3373, + 3383, + 3391, + 3401, + 3410, + 3418, + 3433, + 3445, + 3457, + 3465, 3466, - 3467, - 3481, + 3480, + 3492, 3493, 3494, - 3495, - 3507, - 3525, - 3536, - 3548, - 3569, + 3506, + 3524, + 3535, + 3547, + 3568, + 3584, 3585, 3586, - 3587, - 3599, - 3617, - 3628, - 3640, - 3658, - 3669, - 3681, - 3699, - 3711, - 3723, - 3743, + 3598, + 3616, + 3627, + 3639, + 3657, + 3668, + 3680, + 3698, + 3710, + 3722, + 3742, + 3753, 3754, 3755, - 3756, - 3768, - 3786, - 3798, - 3810, - 3830, + 3767, + 3785, + 3797, + 3809, + 3829, + 3841, 3842, 3843, - 3844, - 3856, - 3864, - 3875, - 3897, - 3925, - 3950, - 3968, - 3986, - 4007, - 4027, - 4053, - 4078, - 4096, + 3855, + 3863, + 3874, + 3896, + 3924, + 3949, + 3967, + 3985, + 4006, + 4026, + 4052, + 4077, + 4095, + 4131, 4132, 4133, 4134, @@ -459,24 +460,24 @@ export default { 4137, 4138, 4139, - 4140, - 4165, - 4183, - 4201, - 4229, - 4256, - 4274, - 4292, - 4318, - 4343, - 4361, + 4164, + 4182, + 4200, + 4228, + 4255, + 4273, + 4291, + 4317, + 4342, + 4360, + 4387, 4388, 4389, - 4390, - 4403, - 4423, - 4443, - 4473, + 4402, + 4422, + 4442, + 4472, + 4484, 4485, 4486, 4487, @@ -485,8 +486,8 @@ export default { 4490, 4491, 4492, - 4493, - 4505, + 4504, + 4538, 4539, 4540, 4541, @@ -495,7 +496,7 @@ export default { 4544, 4545, 4546, - 4547, + 4589, 4590, 4591, 4592, @@ -503,42 +504,41 @@ export default { 4594, 4595, 4596, - 4597, - 4598 + 4597 ], "types": { "ActiveConnection": { "application_name": [ - 75 + 74 ], "client_addr": [ - 75 + 74 ], "pid": [ 38 ], "query": [ - 75 + 74 ], "query_start": [ - 3466 + 3465 ], "state": [ - 75 + 74 ], "usename": [ - 75 + 74 ], "__typename": [ - 75 + 74 ] }, "ActiveQuery": { "application_name": [ - 75 + 74 ], "client_addr": [ - 75 + 74 ], "duration_seconds": [ 29 @@ -547,33 +547,33 @@ export default { 38 ], "query": [ - 75 + 74 ], "query_start": [ - 3466 + 3465 ], "state": [ - 75 + 74 ], "usename": [ - 75 + 74 ], "wait_event": [ - 75 + 74 ], "wait_event_type": [ - 75 + 74 ], "__typename": [ - 75 + 74 ] }, "ApiKeyResponse": { "key": [ - 75 + 74 ], "__typename": [ - 75 + 74 ] }, "Boolean": {}, @@ -606,7 +606,7 @@ export default { 3 ], "__typename": [ - 75 + 74 ] }, "ClipAudioInput": { @@ -620,27 +620,27 @@ export default { 38 ], "track_url": [ - 75 + 74 ], "volume": [ 29 ], "__typename": [ - 75 + 74 ] }, "ClipOutputInput": { "format": [ - 75 + 74 ], "fps": [ 38 ], "resolution": [ - 75 + 74 ], "__typename": [ - 75 + 74 ] }, "ClipOverlayInput": { @@ -648,16 +648,16 @@ export default { 38 ], "payload": [ - 1240 + 1239 ], "start_ms": [ 38 ], "type": [ - 75 + 74 ], "__typename": [ - 75 + 74 ] }, "ClipSegmentInput": { @@ -665,13 +665,13 @@ export default { 38 ], "pov_steam_id": [ - 75 + 74 ], "start_tick": [ 38 ], "__typename": [ - 75 + 74 ] }, "ClipSpecInput": { @@ -679,10 +679,10 @@ export default { 5 ], "destination": [ - 75 + 74 ], "match_map_id": [ - 3864 + 3863 ], "output": [ 6 @@ -694,10 +694,10 @@ export default { 8 ], "title": [ - 75 + 74 ], "__typename": [ - 75 + 74 ] }, "ConnectionByState": { @@ -705,16 +705,16 @@ export default { 38 ], "state": [ - 75 + 74 ], "wait_event_type": [ - 75 + 74 ], "waiting_count": [ 38 ], "__typename": [ - 75 + 74 ] }, "ConnectionStats": { @@ -737,51 +737,51 @@ export default { 38 ], "__typename": [ - 75 + 74 ] }, "CpuStat": { "time": [ - 3466 + 3465 ], "total": [ - 174 + 173 ], "used": [ - 174 + 173 ], "window": [ 29 ], "__typename": [ - 75 + 74 ] }, "CreateClipRenderOutput": { "job_id": [ - 3864 + 3863 ], "success": [ 3 ], "__typename": [ - 75 + 74 ] }, "CreateDraftGameOutput": { "draftGameId": [ - 3864 + 3863 ], "__typename": [ - 75 + 74 ] }, "CreateScheduledMatchOutput": { "matchId": [ - 3864 + 3863 ], "__typename": [ - 75 + 74 ] }, "DatabaseStats": { @@ -798,7 +798,7 @@ export default { 38 ], "datname": [ - 75 + 74 ], "deadlocks": [ 38 @@ -828,7 +828,7 @@ export default { 38 ], "__typename": [ - 75 + 74 ] }, "DbStats": { @@ -851,10 +851,10 @@ export default { 29 ], "query": [ - 75 + 74 ], "queryid": [ - 75 + 74 ], "shared_blks_hit": [ 38 @@ -869,24 +869,24 @@ export default { 38 ], "__typename": [ - 75 + 74 ] }, "DedicatedSeverInfo": { "id": [ - 75 + 74 ], "lastPing": [ - 75 + 74 ], "map": [ - 75 + 74 ], "players": [ 38 ], "__typename": [ - 75 + 74 ] }, "DeleteOrphansOutput": { @@ -903,30 +903,30 @@ export default { 3 ], "__typename": [ - 75 + 74 ] }, "DiskStat": { "available": [ - 75 + 74 ], "filesystem": [ - 75 + 74 ], "mountpoint": [ - 75 + 74 ], "size": [ - 75 + 74 ], "used": [ - 75 + 74 ], "usedPercent": [ - 75 + 74 ], "__typename": [ - 75 + 74 ] }, "DiskStats": { @@ -934,10 +934,10 @@ export default { 20 ], "time": [ - 3466 + 3465 ], "__typename": [ - 75 + 74 ] }, "DraftGamePreviewOutput": { @@ -945,25 +945,25 @@ export default { 38 ], "access": [ - 75 + 74 ], "capacity": [ 38 ], "host_avatar_url": [ - 75 + 74 ], "host_name": [ - 75 + 74 ], "host_steam_id": [ - 75 + 74 ], "id": [ - 3864 + 3863 ], "mode": [ - 75 + 74 ], "players": [ 23 @@ -972,30 +972,30 @@ export default { 3 ], "status": [ - 75 + 74 ], "type": [ - 75 + 74 ], "__typename": [ - 75 + 74 ] }, "DraftGamePreviewPlayer": { "avatar_url": [ - 75 + 74 ], "name": [ - 75 + 74 ], "status": [ - 75 + 74 ], "steam_id": [ - 75 + 74 ], "__typename": [ - 75 + 74 ] }, "FaceitTestOutput": { @@ -1006,32 +1006,32 @@ export default { 25 ], "__typename": [ - 75 + 74 ] }, "FaceitTestResult": { "detail": [ - 75 + 74 ], "ok": [ 3 ], "__typename": [ - 75 + 74 ] }, "FileContentResponse": { "content": [ - 75 + 74 ], "path": [ - 75 + 74 ], "size": [ - 174 + 173 ], "__typename": [ - 75 + 74 ] }, "FileItem": { @@ -1039,33 +1039,33 @@ export default { 3 ], "modified": [ - 3466 + 3465 ], "name": [ - 75 + 74 ], "path": [ - 75 + 74 ], "size": [ - 174 + 173 ], "type": [ - 75 + 74 ], "__typename": [ - 75 + 74 ] }, "FileListResponse": { "currentPath": [ - 75 + 74 ], "items": [ 27 ], "__typename": [ - 75 + 74 ] }, "Float": {}, @@ -1098,18 +1098,18 @@ export default { 29 ], "__typename": [ - 75 + 74 ] }, "GetTestUploadResponse": { "error": [ - 75 + 74 ], "link": [ - 75 + 74 ], "__typename": [ - 75 + 74 ] }, "GpuDeviceStat": { @@ -1123,7 +1123,7 @@ export default { 38 ], "name": [ - 75 + 74 ], "power_w": [ 38 @@ -1135,7 +1135,7 @@ export default { 38 ], "__typename": [ - 75 + 74 ] }, "GpuStats": { @@ -1143,10 +1143,10 @@ export default { 32 ], "time": [ - 3466 + 3465 ], "__typename": [ - 75 + 74 ] }, "HighlightPresetAvailability": { @@ -1166,7 +1166,7 @@ export default { 3 ], "__typename": [ - 75 + 74 ] }, "HypertableInfo": { @@ -1174,13 +1174,13 @@ export default { 3 ], "hypertable_name": [ - 75 + 74 ], "num_chunks": [ 38 ], "__typename": [ - 75 + 74 ] }, "IndexIOStat": { @@ -1191,16 +1191,16 @@ export default { 38 ], "indexname": [ - 75 + 74 ], "schemaname": [ - 75 + 74 ], "tablename": [ - 75 + 74 ], "__typename": [ - 75 + 74 ] }, "IndexStat": { @@ -1217,19 +1217,19 @@ export default { 38 ], "indexname": [ - 75 + 74 ], "schemaname": [ - 75 + 74 ], "table_size": [ 38 ], "tablename": [ - 75 + 74 ], "__typename": [ - 75 + 74 ] }, "Int": {}, @@ -1262,7 +1262,7 @@ export default { 38 ], "__typename": [ - 75 + 74 ] }, "KickResult": { @@ -1270,45 +1270,45 @@ export default { 3 ], "message": [ - 75 + 74 ], "__typename": [ - 75 + 74 ] }, "LiveSpecGsi": { "map_name": [ - 75 + 74 ], "map_phase": [ - 75 + 74 ], "round_number": [ 38 ], "round_phase": [ - 75 + 74 ], "spec_slots": [ 42 ], "spectated_steam_id": [ - 75 + 74 ], "team_ct_name": [ - 75 + 74 ], "team_ct_score": [ 38 ], "team_t_name": [ - 75 + 74 ], "team_t_score": [ 38 ], "__typename": [ - 75 + 74 ] }, "LiveSpecSlot": { @@ -1319,19 +1319,19 @@ export default { 38 ], "name": [ - 75 + 74 ], "slot": [ 38 ], "steam_id": [ - 75 + 74 ], "team": [ - 75 + 74 ], "__typename": [ - 75 + 74 ] }, "LiveStreamSpecState": { @@ -1339,7 +1339,7 @@ export default { 41 ], "__typename": [ - 75 + 74 ] }, "LockInfo": { @@ -1347,71 +1347,71 @@ export default { 3 ], "locktype": [ - 75 + 74 ], "mode": [ - 75 + 74 ], "pid": [ 38 ], "query": [ - 75 + 74 ], "relation": [ - 75 + 74 ], "usename": [ - 75 + 74 ], "__typename": [ - 75 + 74 ] }, "MeResponse": { "avatar_url": [ - 75 + 74 ], "country": [ - 75 + 74 ], "discord_id": [ - 75 + 74 ], "language": [ - 75 + 74 ], "name": [ - 75 + 74 ], "player": [ - 2915 + 2914 ], "profile_url": [ - 75 + 74 ], "role": [ - 75 + 74 ], "steam_id": [ - 75 + 74 ], "__typename": [ - 75 + 74 ] }, "MemoryStat": { "time": [ - 3466 + 3465 ], "total": [ - 174 + 173 ], "used": [ - 174 + 173 ], "__typename": [ - 75 + 74 ] }, "NetworkStats": { @@ -1419,65 +1419,65 @@ export default { 49 ], "time": [ - 3466 + 3465 ], "__typename": [ - 75 + 74 ] }, "NewsPost": { "author_steam_id": [ - 75 + 74 ], "content_markdown": [ - 75 + 74 ], "cover_image_url": [ - 75 + 74 ], "created_at": [ - 75 + 74 ], "id": [ - 3864 + 3863 ], "published_at": [ - 75 + 74 ], "slug": [ - 75 + 74 ], "status": [ - 75 + 74 ], "teaser": [ - 75 + 74 ], "title": [ - 75 + 74 ], "updated_at": [ - 75 + 74 ], "view_count": [ - 174 + 173 ], "__typename": [ - 75 + 74 ] }, "NicStat": { "name": [ - 75 + 74 ], "rx": [ - 174 + 173 ], "tx": [ - 174 + 173 ], "__typename": [ - 75 + 74 ] }, "NodeStats": { @@ -1497,26 +1497,26 @@ export default { 47 ], "node": [ - 75 + 74 ], "__typename": [ - 75 + 74 ] }, "OrphanObject": { "key": [ - 75 + 74 ], "size": [ 29 ], "__typename": [ - 75 + 74 ] }, "OrphanScanResultOutput": { "bucket": [ - 75 + 74 ], "clip_bytes": [ 29 @@ -1549,7 +1549,7 @@ export default { 38 ], "scanned_at": [ - 75 + 74 ], "scanning": [ 3 @@ -1567,18 +1567,18 @@ export default { 38 ], "__typename": [ - 75 + 74 ] }, "PendingMatchImportActionOutput": { "error": [ - 75 + 74 ], "success": [ 3 ], "__typename": [ - 75 + 74 ] }, "PodStats": { @@ -1589,38 +1589,38 @@ export default { 46 ], "name": [ - 75 + 74 ], "node": [ - 75 + 74 ], "__typename": [ - 75 + 74 ] }, "PreviewTournamentMatchResetOutput": { "impacts": [ - 86 + 85 ], "__typename": [ - 75 + 74 ] }, "QueryDetail": { "explain_plan": [ - 75 + 74 ], "query": [ - 75 + 74 ], "queryid": [ - 75 + 74 ], "stats": [ 57 ], "__typename": [ - 75 + 74 ] }, "QueryStat": { @@ -1646,10 +1646,10 @@ export default { 29 ], "query": [ - 75 + 74 ], "queryid": [ - 75 + 74 ], "shared_blks_hit": [ 38 @@ -1670,7 +1670,7 @@ export default { 38 ], "__typename": [ - 75 + 74 ] }, "ReparseAllStartedOutput": { @@ -1681,7 +1681,7 @@ export default { 3 ], "__typename": [ - 75 + 74 ] }, "ReparseAllStatusOutput": { @@ -1692,25 +1692,25 @@ export default { 38 ], "current_demo_id": [ - 75 + 74 ], "failed": [ 38 ], "finished_at": [ - 75 + 74 ], "running": [ 3 ], "started_at": [ - 75 + 74 ], "total": [ 38 ], "__typename": [ - 75 + 74 ] }, "SanctionResult": { @@ -1718,13 +1718,13 @@ export default { 3 ], "id": [ - 75 + 74 ], "message": [ - 75 + 74 ], "__typename": [ - 75 + 74 ] }, "ScanStartedOutput": { @@ -1735,59 +1735,59 @@ export default { 3 ], "__typename": [ - 75 + 74 ] }, "ScheduledLineupInput": { "steam_ids": [ - 75 + 74 ], "team_id": [ - 75 + 74 ], "__typename": [ - 75 + 74 ] }, "ScrimCalendarOutput": { "url": [ - 75 + 74 ], "__typename": [ - 75 + 74 ] }, "ServerPlayer": { "name": [ - 75 + 74 ], "steam_id": [ - 75 + 74 ], "__typename": [ - 75 + 74 ] }, "SetupGameServeOutput": { "gameServerId": [ - 75 + 74 ], "link": [ - 75 + 74 ], "__typename": [ - 75 + 74 ] }, "SteamMatchHistoryLinkOutput": { "error": [ - 75 + 74 ], "success": [ 3 ], "__typename": [ - 75 + 74 ] }, "SteamMatchHistoryPollOutput": { @@ -1795,13 +1795,13 @@ export default { 38 ], "error": [ - 75 + 74 ], "success": [ 3 ], "__typename": [ - 75 + 74 ] }, "SteamPresenceAdminStatusOutput": { @@ -1811,14 +1811,11 @@ export default { "enabled": [ 3 ], - "events": [ - 71 - ], "pool": [ - 72 + 71 ], "__typename": [ - 75 + 74 ] }, "SteamPresenceBot": { @@ -1832,10 +1829,10 @@ export default { 3 ], "guardType": [ - 75 + 74 ], "id": [ - 75 + 74 ], "needs2fa": [ 3 @@ -1844,47 +1841,36 @@ export default { 3 ], "steamId": [ - 75 + 74 + ], + "steamLevel": [ + 38 ], "username": [ - 75 + 74 ], "watching": [ 38 ], "__typename": [ - 75 + 74 ] }, "SteamPresenceBotAssignment": { "addUrl": [ - 75 + 74 ], "enabled": [ 3 ], "status": [ - 75 + 74 ], "steamId": [ - 75 - ], - "__typename": [ - 75 - ] - }, - "SteamPresenceEvent": { - "message": [ - 75 - ], - "ts": [ - 75 - ], - "type": [ - 75 + 74 ], "__typename": [ - 75 + 74 ] }, "SteamPresencePool": { @@ -1904,18 +1890,18 @@ export default { 38 ], "__typename": [ - 75 + 74 ] }, "StorageStats": { "summary": [ - 74 + 73 ], "tables": [ - 80 + 79 ], "__typename": [ - 75 + 74 ] }, "StorageSummary": { @@ -1932,108 +1918,108 @@ export default { 29 ], "__typename": [ - 75 + 74 ] }, "String": {}, "String_array_comparison_exp": { "_contained_in": [ - 75 + 74 ], "_contains": [ - 75 + 74 ], "_eq": [ - 75 + 74 ], "_gt": [ - 75 + 74 ], "_gte": [ - 75 + 74 ], "_in": [ - 75 + 74 ], "_is_null": [ 3 ], "_lt": [ - 75 + 74 ], "_lte": [ - 75 + 74 ], "_neq": [ - 75 + 74 ], "_nin": [ - 75 + 74 ], "__typename": [ - 75 + 74 ] }, "String_comparison_exp": { "_eq": [ - 75 + 74 ], "_gt": [ - 75 + 74 ], "_gte": [ - 75 + 74 ], "_ilike": [ - 75 + 74 ], "_in": [ - 75 + 74 ], "_iregex": [ - 75 + 74 ], "_is_null": [ 3 ], "_like": [ - 75 + 74 ], "_lt": [ - 75 + 74 ], "_lte": [ - 75 + 74 ], "_neq": [ - 75 + 74 ], "_nilike": [ - 75 + 74 ], "_nin": [ - 75 + 74 ], "_niregex": [ - 75 + 74 ], "_nlike": [ - 75 + 74 ], "_nregex": [ - 75 + 74 ], "_nsimilar": [ - 75 + 74 ], "_regex": [ - 75 + 74 ], "_similar": [ - 75 + 74 ], "__typename": [ - 75 + 74 ] }, "SuccessOutput": { @@ -2041,7 +2027,7 @@ export default { 3 ], "__typename": [ - 75 + 74 ] }, "TableIOStat": { @@ -2061,13 +2047,13 @@ export default { 38 ], "relname": [ - 75 + 74 ], "schemaname": [ - 75 + 74 ], "__typename": [ - 75 + 74 ] }, "TableSizeInfo": { @@ -2084,19 +2070,19 @@ export default { 38 ], "schemaname": [ - 75 + 74 ], "table_size": [ 29 ], "tablename": [ - 75 + 74 ], "total_size": [ 29 ], "__typename": [ - 75 + 74 ] }, "TableStat": { @@ -2107,16 +2093,16 @@ export default { 38 ], "last_analyze": [ - 3466 + 3465 ], "last_autoanalyze": [ - 3466 + 3465 ], "last_autovacuum": [ - 3466 + 3465 ], "last_vacuum": [ - 3466 + 3465 ], "n_dead_tup": [ 38 @@ -2137,10 +2123,10 @@ export default { 38 ], "relname": [ - 75 + 74 ], "schemaname": [ - 75 + 74 ], "seq_scan": [ 38 @@ -2149,7 +2135,7 @@ export default { 38 ], "__typename": [ - 75 + 74 ] }, "TelemetryStats": { @@ -2157,35 +2143,35 @@ export default { 38 ], "__typename": [ - 75 + 74 ] }, "TestUploadResponse": { "error": [ - 75 + 74 ], "__typename": [ - 75 + 74 ] }, "TimescaleJob": { "hypertable_name": [ - 75 + 74 ], "job_id": [ 38 ], "job_type": [ - 75 + 74 ], "last_run_status": [ - 75 + 74 ], "next_start": [ - 3466 + 3465 ], "__typename": [ - 75 + 74 ] }, "TimescaleStats": { @@ -2196,15 +2182,15 @@ export default { 35 ], "jobs": [ - 84 + 83 ], "__typename": [ - 75 + 74 ] }, "TournamentMatchResetImpact": { "bracket_id": [ - 3864 + 3863 ], "depth": [ 38 @@ -2213,67 +2199,67 @@ export default { 3 ], "match_id": [ - 3864 + 3863 ], "match_number": [ 38 ], "match_status": [ - 75 + 74 ], "path": [ - 75 + 74 ], "round": [ 38 ], "stage_type": [ - 75 + 74 ], "will_delete_match": [ 3 ], "__typename": [ - 75 + 74 ] }, "WatchDemoOutput": { "match_map_id": [ - 75 + 74 ], "session_id": [ - 75 + 74 ], "stream_url": [ - 75 + 74 ], "success": [ 3 ], "__typename": [ - 75 + 74 ] }, "_map_pool": { "map_id": [ - 3864 + 3863 ], "map_pool_id": [ - 3864 + 3863 ], "__typename": [ - 75 + 74 ] }, "_map_pool_aggregate": { "aggregate": [ - 90 + 89 ], "nodes": [ - 88 + 87 ], "__typename": [ - 75 + 74 ] }, "_map_pool_aggregate_fields": { @@ -2281,7 +2267,7 @@ export default { 38, { "columns": [ - 100, + 99, "[_map_pool_select_column!]" ], "distinct": [ @@ -2290,67 +2276,67 @@ export default { } ], "max": [ - 94 + 93 ], "min": [ - 95 + 94 ], "__typename": [ - 75 + 74 ] }, "_map_pool_bool_exp": { "_and": [ - 91 + 90 ], "_not": [ - 91 + 90 ], "_or": [ - 91 + 90 ], "map_id": [ - 3866 + 3865 ], "map_pool_id": [ - 3866 + 3865 ], "__typename": [ - 75 + 74 ] }, "_map_pool_constraint": {}, "_map_pool_insert_input": { "map_id": [ - 3864 + 3863 ], "map_pool_id": [ - 3864 + 3863 ], "__typename": [ - 75 + 74 ] }, "_map_pool_max_fields": { "map_id": [ - 3864 + 3863 ], "map_pool_id": [ - 3864 + 3863 ], "__typename": [ - 75 + 74 ] }, "_map_pool_min_fields": { "map_id": [ - 3864 + 3863 ], "map_pool_id": [ - 3864 + 3863 ], "__typename": [ - 75 + 74 ] }, "_map_pool_mutation_response": { @@ -2358,153 +2344,153 @@ export default { 38 ], "returning": [ - 88 + 87 ], "__typename": [ - 75 + 74 ] }, "_map_pool_on_conflict": { "constraint": [ - 92 + 91 ], "update_columns": [ - 104 + 103 ], "where": [ - 91 + 90 ], "__typename": [ - 75 + 74 ] }, "_map_pool_order_by": { "map_id": [ - 2016 + 2015 ], "map_pool_id": [ - 2016 + 2015 ], "__typename": [ - 75 + 74 ] }, "_map_pool_pk_columns_input": { "map_id": [ - 3864 + 3863 ], "map_pool_id": [ - 3864 + 3863 ], "__typename": [ - 75 + 74 ] }, "_map_pool_select_column": {}, "_map_pool_set_input": { "map_id": [ - 3864 + 3863 ], "map_pool_id": [ - 3864 + 3863 ], "__typename": [ - 75 + 74 ] }, "_map_pool_stream_cursor_input": { "initial_value": [ - 103 + 102 ], "ordering": [ - 229 + 228 ], "__typename": [ - 75 + 74 ] }, "_map_pool_stream_cursor_value_input": { "map_id": [ - 3864 + 3863 ], "map_pool_id": [ - 3864 + 3863 ], "__typename": [ - 75 + 74 ] }, "_map_pool_update_column": {}, "_map_pool_updates": { "_set": [ - 101 + 100 ], "where": [ - 91 + 90 ], "__typename": [ - 75 + 74 ] }, "abandoned_matches": { "abandoned_at": [ - 3467 + 3466 ], "id": [ - 3864 + 3863 ], "steam_id": [ - 174 + 173 ], "__typename": [ - 75 + 74 ] }, "abandoned_matches_aggregate": { "aggregate": [ - 110 + 109 ], "nodes": [ - 106 + 105 ], "__typename": [ - 75 + 74 ] }, "abandoned_matches_aggregate_bool_exp": { "count": [ - 109 + 108 ], "__typename": [ - 75 + 74 ] }, "abandoned_matches_aggregate_bool_exp_count": { "arguments": [ - 127 + 126 ], "distinct": [ 3 ], "filter": [ - 115 + 114 ], "predicate": [ 39 ], "__typename": [ - 75 + 74 ] }, "abandoned_matches_aggregate_fields": { "avg": [ - 113 + 112 ], "count": [ 38, { "columns": [ - 127, + 126, "[abandoned_matches_select_column!]" ], "distinct": [ @@ -2512,6 +2498,44 @@ export default { ] } ], + "max": [ + 118 + ], + "min": [ + 120 + ], + "stddev": [ + 128 + ], + "stddev_pop": [ + 130 + ], + "stddev_samp": [ + 132 + ], + "sum": [ + 136 + ], + "var_pop": [ + 140 + ], + "var_samp": [ + 142 + ], + "variance": [ + 144 + ], + "__typename": [ + 74 + ] + }, + "abandoned_matches_aggregate_order_by": { + "avg": [ + 113 + ], + "count": [ + 2015 + ], "max": [ 119 ], @@ -2540,56 +2564,18 @@ export default { 145 ], "__typename": [ - 75 - ] - }, - "abandoned_matches_aggregate_order_by": { - "avg": [ - 114 - ], - "count": [ - 2016 - ], - "max": [ - 120 - ], - "min": [ - 122 - ], - "stddev": [ - 130 - ], - "stddev_pop": [ - 132 - ], - "stddev_samp": [ - 134 - ], - "sum": [ - 138 - ], - "var_pop": [ - 142 - ], - "var_samp": [ - 144 - ], - "variance": [ - 146 - ], - "__typename": [ - 75 + 74 ] }, "abandoned_matches_arr_rel_insert_input": { "data": [ - 118 + 117 ], "on_conflict": [ - 124 + 123 ], "__typename": [ - 75 + 74 ] }, "abandoned_matches_avg_fields": { @@ -2597,117 +2583,117 @@ export default { 29 ], "__typename": [ - 75 + 74 ] }, "abandoned_matches_avg_order_by": { "steam_id": [ - 2016 + 2015 ], "__typename": [ - 75 + 74 ] }, "abandoned_matches_bool_exp": { "_and": [ - 115 + 114 ], "_not": [ - 115 + 114 ], "_or": [ - 115 + 114 ], "abandoned_at": [ - 3468 + 3467 ], "id": [ - 3866 + 3865 ], "steam_id": [ - 176 + 175 ], "__typename": [ - 75 + 74 ] }, "abandoned_matches_constraint": {}, "abandoned_matches_inc_input": { "steam_id": [ - 174 + 173 ], "__typename": [ - 75 + 74 ] }, "abandoned_matches_insert_input": { "abandoned_at": [ - 3467 + 3466 ], "id": [ - 3864 + 3863 ], "steam_id": [ - 174 + 173 ], "__typename": [ - 75 + 74 ] }, "abandoned_matches_max_fields": { "abandoned_at": [ - 3467 + 3466 ], "id": [ - 3864 + 3863 ], "steam_id": [ - 174 + 173 ], "__typename": [ - 75 + 74 ] }, "abandoned_matches_max_order_by": { "abandoned_at": [ - 2016 + 2015 ], "id": [ - 2016 + 2015 ], "steam_id": [ - 2016 + 2015 ], "__typename": [ - 75 + 74 ] }, "abandoned_matches_min_fields": { "abandoned_at": [ - 3467 + 3466 ], "id": [ - 3864 + 3863 ], "steam_id": [ - 174 + 173 ], "__typename": [ - 75 + 74 ] }, "abandoned_matches_min_order_by": { "abandoned_at": [ - 2016 + 2015 ], "id": [ - 2016 + 2015 ], "steam_id": [ - 2016 + 2015 ], "__typename": [ - 75 + 74 ] }, "abandoned_matches_mutation_response": { @@ -2715,61 +2701,61 @@ export default { 38 ], "returning": [ - 106 + 105 ], "__typename": [ - 75 + 74 ] }, "abandoned_matches_on_conflict": { "constraint": [ - 116 + 115 ], "update_columns": [ - 139 + 138 ], "where": [ - 115 + 114 ], "__typename": [ - 75 + 74 ] }, "abandoned_matches_order_by": { "abandoned_at": [ - 2016 + 2015 ], "id": [ - 2016 + 2015 ], "steam_id": [ - 2016 + 2015 ], "__typename": [ - 75 + 74 ] }, "abandoned_matches_pk_columns_input": { "id": [ - 3864 + 3863 ], "__typename": [ - 75 + 74 ] }, "abandoned_matches_select_column": {}, "abandoned_matches_set_input": { "abandoned_at": [ - 3467 + 3466 ], "id": [ - 3864 + 3863 ], "steam_id": [ - 174 + 173 ], "__typename": [ - 75 + 74 ] }, "abandoned_matches_stddev_fields": { @@ -2777,15 +2763,15 @@ export default { 29 ], "__typename": [ - 75 + 74 ] }, "abandoned_matches_stddev_order_by": { "steam_id": [ - 2016 + 2015 ], "__typename": [ - 75 + 74 ] }, "abandoned_matches_stddev_pop_fields": { @@ -2793,15 +2779,15 @@ export default { 29 ], "__typename": [ - 75 + 74 ] }, "abandoned_matches_stddev_pop_order_by": { "steam_id": [ - 2016 + 2015 ], "__typename": [ - 75 + 74 ] }, "abandoned_matches_stddev_samp_fields": { @@ -2809,71 +2795,71 @@ export default { 29 ], "__typename": [ - 75 + 74 ] }, "abandoned_matches_stddev_samp_order_by": { "steam_id": [ - 2016 + 2015 ], "__typename": [ - 75 + 74 ] }, "abandoned_matches_stream_cursor_input": { "initial_value": [ - 136 + 135 ], "ordering": [ - 229 + 228 ], "__typename": [ - 75 + 74 ] }, "abandoned_matches_stream_cursor_value_input": { "abandoned_at": [ - 3467 + 3466 ], "id": [ - 3864 + 3863 ], "steam_id": [ - 174 + 173 ], "__typename": [ - 75 + 74 ] }, "abandoned_matches_sum_fields": { "steam_id": [ - 174 + 173 ], "__typename": [ - 75 + 74 ] }, "abandoned_matches_sum_order_by": { "steam_id": [ - 2016 + 2015 ], "__typename": [ - 75 + 74 ] }, "abandoned_matches_update_column": {}, "abandoned_matches_updates": { "_inc": [ - 117 + 116 ], "_set": [ - 128 + 127 ], "where": [ - 115 + 114 ], "__typename": [ - 75 + 74 ] }, "abandoned_matches_var_pop_fields": { @@ -2881,15 +2867,15 @@ export default { 29 ], "__typename": [ - 75 + 74 ] }, "abandoned_matches_var_pop_order_by": { "steam_id": [ - 2016 + 2015 ], "__typename": [ - 75 + 74 ] }, "abandoned_matches_var_samp_fields": { @@ -2897,15 +2883,15 @@ export default { 29 ], "__typename": [ - 75 + 74 ] }, "abandoned_matches_var_samp_order_by": { "steam_id": [ - 2016 + 2015 ], "__typename": [ - 75 + 74 ] }, "abandoned_matches_variance_fields": { @@ -2913,57 +2899,57 @@ export default { 29 ], "__typename": [ - 75 + 74 ] }, "abandoned_matches_variance_order_by": { "steam_id": [ - 2016 + 2015 ], "__typename": [ - 75 + 74 ] }, "api_keys": { "created_at": [ - 3467 + 3466 ], "id": [ - 3864 + 3863 ], "label": [ - 75 + 74 ], "last_used_at": [ - 3467 + 3466 ], "steam_id": [ - 174 + 173 ], "__typename": [ - 75 + 74 ] }, "api_keys_aggregate": { "aggregate": [ - 149 + 148 ], "nodes": [ - 147 + 146 ], "__typename": [ - 75 + 74 ] }, "api_keys_aggregate_fields": { "avg": [ - 150 + 149 ], "count": [ 38, { "columns": [ - 161, + 160, "[api_keys_select_column!]" ], "distinct": [ @@ -2972,34 +2958,34 @@ export default { } ], "max": [ - 155 + 154 ], "min": [ - 156 + 155 ], "stddev": [ - 163 + 162 ], "stddev_pop": [ - 164 + 163 ], "stddev_samp": [ - 165 + 164 ], "sum": [ - 168 + 167 ], "var_pop": [ - 171 + 170 ], "var_samp": [ - 172 + 171 ], "variance": [ - 173 + 172 ], "__typename": [ - 75 + 74 ] }, "api_keys_avg_fields": { @@ -3007,105 +2993,105 @@ export default { 29 ], "__typename": [ - 75 + 74 ] }, "api_keys_bool_exp": { "_and": [ - 151 + 150 ], "_not": [ - 151 + 150 ], "_or": [ - 151 + 150 ], "created_at": [ - 3468 + 3467 ], "id": [ - 3866 + 3865 ], "label": [ - 77 + 76 ], "last_used_at": [ - 3468 + 3467 ], "steam_id": [ - 176 + 175 ], "__typename": [ - 75 + 74 ] }, "api_keys_constraint": {}, "api_keys_inc_input": { "steam_id": [ - 174 + 173 ], "__typename": [ - 75 + 74 ] }, "api_keys_insert_input": { "created_at": [ - 3467 + 3466 ], "id": [ - 3864 + 3863 ], "label": [ - 75 + 74 ], "last_used_at": [ - 3467 + 3466 ], "steam_id": [ - 174 + 173 ], "__typename": [ - 75 + 74 ] }, "api_keys_max_fields": { "created_at": [ - 3467 + 3466 ], "id": [ - 3864 + 3863 ], "label": [ - 75 + 74 ], "last_used_at": [ - 3467 + 3466 ], "steam_id": [ - 174 + 173 ], "__typename": [ - 75 + 74 ] }, "api_keys_min_fields": { "created_at": [ - 3467 + 3466 ], "id": [ - 3864 + 3863 ], "label": [ - 75 + 74 ], "last_used_at": [ - 3467 + 3466 ], "steam_id": [ - 174 + 173 ], "__typename": [ - 75 + 74 ] }, "api_keys_mutation_response": { @@ -3113,73 +3099,73 @@ export default { 38 ], "returning": [ - 147 + 146 ], "__typename": [ - 75 + 74 ] }, "api_keys_on_conflict": { "constraint": [ - 152 + 151 ], "update_columns": [ - 169 + 168 ], "where": [ - 151 + 150 ], "__typename": [ - 75 + 74 ] }, "api_keys_order_by": { "created_at": [ - 2016 + 2015 ], "id": [ - 2016 + 2015 ], "label": [ - 2016 + 2015 ], "last_used_at": [ - 2016 + 2015 ], "steam_id": [ - 2016 + 2015 ], "__typename": [ - 75 + 74 ] }, "api_keys_pk_columns_input": { "id": [ - 3864 + 3863 ], "__typename": [ - 75 + 74 ] }, "api_keys_select_column": {}, "api_keys_set_input": { "created_at": [ - 3467 + 3466 ], "id": [ - 3864 + 3863 ], "label": [ - 75 + 74 ], "last_used_at": [ - 3467 + 3466 ], "steam_id": [ - 174 + 173 ], "__typename": [ - 75 + 74 ] }, "api_keys_stddev_fields": { @@ -3187,7 +3173,7 @@ export default { 29 ], "__typename": [ - 75 + 74 ] }, "api_keys_stddev_pop_fields": { @@ -3195,7 +3181,7 @@ export default { 29 ], "__typename": [ - 75 + 74 ] }, "api_keys_stddev_samp_fields": { @@ -3203,61 +3189,61 @@ export default { 29 ], "__typename": [ - 75 + 74 ] }, "api_keys_stream_cursor_input": { "initial_value": [ - 167 + 166 ], "ordering": [ - 229 + 228 ], "__typename": [ - 75 + 74 ] }, "api_keys_stream_cursor_value_input": { "created_at": [ - 3467 + 3466 ], "id": [ - 3864 + 3863 ], "label": [ - 75 + 74 ], "last_used_at": [ - 3467 + 3466 ], "steam_id": [ - 174 + 173 ], "__typename": [ - 75 + 74 ] }, "api_keys_sum_fields": { "steam_id": [ - 174 + 173 ], "__typename": [ - 75 + 74 ] }, "api_keys_update_column": {}, "api_keys_updates": { "_inc": [ - 153 + 152 ], "_set": [ - 162 + 161 ], "where": [ - 151 + 150 ], "__typename": [ - 75 + 74 ] }, "api_keys_var_pop_fields": { @@ -3265,7 +3251,7 @@ export default { 29 ], "__typename": [ - 75 + 74 ] }, "api_keys_var_samp_fields": { @@ -3273,7 +3259,7 @@ export default { 29 ], "__typename": [ - 75 + 74 ] }, "api_keys_variance_fields": { @@ -3281,279 +3267,279 @@ export default { 29 ], "__typename": [ - 75 + 74 ] }, "bigint": {}, "bigint_array_comparison_exp": { "_contained_in": [ - 174 + 173 ], "_contains": [ - 174 + 173 ], "_eq": [ - 174 + 173 ], "_gt": [ - 174 + 173 ], "_gte": [ - 174 + 173 ], "_in": [ - 174 + 173 ], "_is_null": [ 3 ], "_lt": [ - 174 + 173 ], "_lte": [ - 174 + 173 ], "_neq": [ - 174 + 173 ], "_nin": [ - 174 + 173 ], "__typename": [ - 75 + 74 ] }, "bigint_comparison_exp": { "_eq": [ - 174 + 173 ], "_gt": [ - 174 + 173 ], "_gte": [ - 174 + 173 ], "_in": [ - 174 + 173 ], "_is_null": [ 3 ], "_lt": [ - 174 + 173 ], "_lte": [ - 174 + 173 ], "_neq": [ - 174 + 173 ], "_nin": [ - 174 + 173 ], "__typename": [ - 75 + 74 ] }, "bytea": {}, "bytea_comparison_exp": { "_eq": [ - 177 + 176 ], "_gt": [ - 177 + 176 ], "_gte": [ - 177 + 176 ], "_in": [ - 177 + 176 ], "_is_null": [ 3 ], "_lt": [ - 177 + 176 ], "_lte": [ - 177 + 176 ], "_neq": [ - 177 + 176 ], "_nin": [ - 177 + 176 ], "__typename": [ - 75 + 74 ] }, "clip_render_jobs": { "clip": [ - 1378 + 1377 ], "clip_id": [ - 3864 + 3863 ], "created_at": [ - 3467 + 3466 ], "error_message": [ - 75 + 74 ], "game_server_node": [ - 1118 + 1117 ], "game_server_node_id": [ - 75 + 74 ], "id": [ - 3864 + 3863 ], "k8s_job_name": [ - 75 + 74 ], "last_status_at": [ - 3467 + 3466 ], "match_map": [ - 1669 + 1668 ], "match_map_demo": [ - 1553 + 1552 ], "match_map_demo_id": [ - 3864 + 3863 ], "match_map_id": [ - 3864 + 3863 ], "paused": [ 3 ], "progress": [ - 2014 + 2013 ], "session_token": [ - 75 + 74 ], "sort_index": [ 38 ], "spec": [ - 1240, + 1239, { "path": [ - 75 + 74 ] } ], "status": [ - 75 + 74 ], "status_history": [ - 1240, + 1239, { "path": [ - 75 + 74 ] } ], "user": [ - 2915 + 2914 ], "user_steam_id": [ - 174 + 173 ], "__typename": [ - 75 + 74 ] }, "clip_render_jobs_aggregate": { "aggregate": [ - 185 + 184 ], "nodes": [ - 179 + 178 ], "__typename": [ - 75 + 74 ] }, "clip_render_jobs_aggregate_bool_exp": { "bool_and": [ - 182 + 181 ], "bool_or": [ - 183 + 182 ], "count": [ - 184 + 183 ], "__typename": [ - 75 + 74 ] }, "clip_render_jobs_aggregate_bool_exp_bool_and": { "arguments": [ - 208 + 207 ], "distinct": [ 3 ], "filter": [ - 191 + 190 ], "predicate": [ 4 ], "__typename": [ - 75 + 74 ] }, "clip_render_jobs_aggregate_bool_exp_bool_or": { "arguments": [ - 209 + 208 ], "distinct": [ 3 ], "filter": [ - 191 + 190 ], "predicate": [ 4 ], "__typename": [ - 75 + 74 ] }, "clip_render_jobs_aggregate_bool_exp_count": { "arguments": [ - 207 + 206 ], "distinct": [ 3 ], "filter": [ - 191 + 190 ], "predicate": [ 39 ], "__typename": [ - 75 + 74 ] }, "clip_render_jobs_aggregate_fields": { "avg": [ - 189 + 188 ], "count": [ 38, { "columns": [ - 207, + 206, "[clip_render_jobs_select_column!]" ], "distinct": [ @@ -3562,94 +3548,94 @@ export default { } ], "max": [ - 198 + 197 ], "min": [ - 200 + 199 ], "stddev": [ - 211 + 210 ], "stddev_pop": [ - 213 + 212 ], "stddev_samp": [ - 215 + 214 ], "sum": [ - 219 + 218 ], "var_pop": [ - 223 + 222 ], "var_samp": [ - 225 + 224 ], "variance": [ - 227 + 226 ], "__typename": [ - 75 + 74 ] }, "clip_render_jobs_aggregate_order_by": { "avg": [ - 190 + 189 ], "count": [ - 2016 + 2015 ], "max": [ - 199 + 198 ], "min": [ - 201 + 200 ], "stddev": [ - 212 + 211 ], "stddev_pop": [ - 214 + 213 ], "stddev_samp": [ - 216 + 215 ], "sum": [ - 220 + 219 ], "var_pop": [ - 224 + 223 ], "var_samp": [ - 226 + 225 ], "variance": [ - 228 + 227 ], "__typename": [ - 75 + 74 ] }, "clip_render_jobs_append_input": { "spec": [ - 1240 + 1239 ], "status_history": [ - 1240 + 1239 ], "__typename": [ - 75 + 74 ] }, "clip_render_jobs_arr_rel_insert_input": { "data": [ - 197 + 196 ], "on_conflict": [ - 203 + 202 ], "__typename": [ - 75 + 74 ] }, "clip_render_jobs_avg_fields": { @@ -3663,113 +3649,113 @@ export default { 29 ], "__typename": [ - 75 + 74 ] }, "clip_render_jobs_avg_order_by": { "progress": [ - 2016 + 2015 ], "sort_index": [ - 2016 + 2015 ], "user_steam_id": [ - 2016 + 2015 ], "__typename": [ - 75 + 74 ] }, "clip_render_jobs_bool_exp": { "_and": [ - 191 + 190 ], "_not": [ - 191 + 190 ], "_or": [ - 191 + 190 ], "clip": [ - 1387 + 1386 ], "clip_id": [ - 3866 + 3865 ], "created_at": [ - 3468 + 3467 ], "error_message": [ - 77 + 76 ], "game_server_node": [ - 1130 + 1129 ], "game_server_node_id": [ - 77 + 76 ], "id": [ - 3866 + 3865 ], "k8s_job_name": [ - 77 + 76 ], "last_status_at": [ - 3468 + 3467 ], "match_map": [ - 1678 + 1677 ], "match_map_demo": [ - 1565 + 1564 ], "match_map_demo_id": [ - 3866 + 3865 ], "match_map_id": [ - 3866 + 3865 ], "paused": [ 4 ], "progress": [ - 2015 + 2014 ], "session_token": [ - 77 + 76 ], "sort_index": [ 39 ], "spec": [ - 1242 + 1241 ], "status": [ - 77 + 76 ], "status_history": [ - 1242 + 1241 ], "user": [ - 2919 + 2918 ], "user_steam_id": [ - 176 + 175 ], "__typename": [ - 75 + 74 ] }, "clip_render_jobs_constraint": {}, "clip_render_jobs_delete_at_path_input": { "spec": [ - 75 + 74 ], "status_history": [ - 75 + 74 ], "__typename": [ - 75 + 74 ] }, "clip_render_jobs_delete_elem_input": { @@ -3780,291 +3766,291 @@ export default { 38 ], "__typename": [ - 75 + 74 ] }, "clip_render_jobs_delete_key_input": { "spec": [ - 75 + 74 ], "status_history": [ - 75 + 74 ], "__typename": [ - 75 + 74 ] }, "clip_render_jobs_inc_input": { "progress": [ - 2014 + 2013 ], "sort_index": [ 38 ], "user_steam_id": [ - 174 + 173 ], "__typename": [ - 75 + 74 ] }, "clip_render_jobs_insert_input": { "clip": [ - 1396 + 1395 ], "clip_id": [ - 3864 + 3863 ], "created_at": [ - 3467 + 3466 ], "error_message": [ - 75 + 74 ], "game_server_node": [ - 1142 + 1141 ], "game_server_node_id": [ - 75 + 74 ], "id": [ - 3864 + 3863 ], "k8s_job_name": [ - 75 + 74 ], "last_status_at": [ - 3467 + 3466 ], "match_map": [ - 1687 + 1686 ], "match_map_demo": [ - 1577 + 1576 ], "match_map_demo_id": [ - 3864 + 3863 ], "match_map_id": [ - 3864 + 3863 ], "paused": [ 3 ], "progress": [ - 2014 + 2013 ], "session_token": [ - 75 + 74 ], "sort_index": [ 38 ], "spec": [ - 1240 + 1239 ], "status": [ - 75 + 74 ], "status_history": [ - 1240 + 1239 ], "user": [ - 2926 + 2925 ], "user_steam_id": [ - 174 + 173 ], "__typename": [ - 75 + 74 ] }, "clip_render_jobs_max_fields": { "clip_id": [ - 3864 + 3863 ], "created_at": [ - 3467 + 3466 ], "error_message": [ - 75 + 74 ], "game_server_node_id": [ - 75 + 74 ], "id": [ - 3864 + 3863 ], "k8s_job_name": [ - 75 + 74 ], "last_status_at": [ - 3467 + 3466 ], "match_map_demo_id": [ - 3864 + 3863 ], "match_map_id": [ - 3864 + 3863 ], "progress": [ - 2014 + 2013 ], "session_token": [ - 75 + 74 ], "sort_index": [ 38 ], "status": [ - 75 + 74 ], "user_steam_id": [ - 174 + 173 ], "__typename": [ - 75 + 74 ] }, "clip_render_jobs_max_order_by": { "clip_id": [ - 2016 + 2015 ], "created_at": [ - 2016 + 2015 ], "error_message": [ - 2016 + 2015 ], "game_server_node_id": [ - 2016 + 2015 ], "id": [ - 2016 + 2015 ], "k8s_job_name": [ - 2016 + 2015 ], "last_status_at": [ - 2016 + 2015 ], "match_map_demo_id": [ - 2016 + 2015 ], "match_map_id": [ - 2016 + 2015 ], "progress": [ - 2016 + 2015 ], "session_token": [ - 2016 + 2015 ], "sort_index": [ - 2016 + 2015 ], "status": [ - 2016 + 2015 ], "user_steam_id": [ - 2016 + 2015 ], "__typename": [ - 75 + 74 ] }, "clip_render_jobs_min_fields": { "clip_id": [ - 3864 + 3863 ], "created_at": [ - 3467 + 3466 ], "error_message": [ - 75 + 74 ], "game_server_node_id": [ - 75 + 74 ], "id": [ - 3864 + 3863 ], "k8s_job_name": [ - 75 + 74 ], "last_status_at": [ - 3467 + 3466 ], "match_map_demo_id": [ - 3864 + 3863 ], "match_map_id": [ - 3864 + 3863 ], "progress": [ - 2014 + 2013 ], "session_token": [ - 75 + 74 ], "sort_index": [ 38 ], "status": [ - 75 + 74 ], "user_steam_id": [ - 174 + 173 ], "__typename": [ - 75 + 74 ] }, "clip_render_jobs_min_order_by": { "clip_id": [ - 2016 + 2015 ], "created_at": [ - 2016 + 2015 ], "error_message": [ - 2016 + 2015 ], "game_server_node_id": [ - 2016 + 2015 ], "id": [ - 2016 + 2015 ], "k8s_job_name": [ - 2016 + 2015 ], "last_status_at": [ - 2016 + 2015 ], "match_map_demo_id": [ - 2016 + 2015 ], "match_map_id": [ - 2016 + 2015 ], "progress": [ - 2016 + 2015 ], "session_token": [ - 2016 + 2015 ], "sort_index": [ - 2016 + 2015 ], "status": [ - 2016 + 2015 ], "user_steam_id": [ - 2016 + 2015 ], "__typename": [ - 75 + 74 ] }, "clip_render_jobs_mutation_response": { @@ -4072,114 +4058,114 @@ export default { 38 ], "returning": [ - 179 + 178 ], "__typename": [ - 75 + 74 ] }, "clip_render_jobs_on_conflict": { "constraint": [ - 192 + 191 ], "update_columns": [ - 221 + 220 ], "where": [ - 191 + 190 ], "__typename": [ - 75 + 74 ] }, "clip_render_jobs_order_by": { "clip": [ - 1398 + 1397 ], "clip_id": [ - 2016 + 2015 ], "created_at": [ - 2016 + 2015 ], "error_message": [ - 2016 + 2015 ], "game_server_node": [ - 1144 + 1143 ], "game_server_node_id": [ - 2016 + 2015 ], "id": [ - 2016 + 2015 ], "k8s_job_name": [ - 2016 + 2015 ], "last_status_at": [ - 2016 + 2015 ], "match_map": [ - 1689 + 1688 ], "match_map_demo": [ - 1579 + 1578 ], "match_map_demo_id": [ - 2016 + 2015 ], "match_map_id": [ - 2016 + 2015 ], "paused": [ - 2016 + 2015 ], "progress": [ - 2016 + 2015 ], "session_token": [ - 2016 + 2015 ], "sort_index": [ - 2016 + 2015 ], "spec": [ - 2016 + 2015 ], "status": [ - 2016 + 2015 ], "status_history": [ - 2016 + 2015 ], "user": [ - 2928 + 2927 ], "user_steam_id": [ - 2016 + 2015 ], "__typename": [ - 75 + 74 ] }, "clip_render_jobs_pk_columns_input": { "id": [ - 3864 + 3863 ], "__typename": [ - 75 + 74 ] }, "clip_render_jobs_prepend_input": { "spec": [ - 1240 + 1239 ], "status_history": [ - 1240 + 1239 ], "__typename": [ - 75 + 74 ] }, "clip_render_jobs_select_column": {}, @@ -4187,58 +4173,58 @@ export default { "clip_render_jobs_select_column_clip_render_jobs_aggregate_bool_exp_bool_or_arguments_columns": {}, "clip_render_jobs_set_input": { "clip_id": [ - 3864 + 3863 ], "created_at": [ - 3467 + 3466 ], "error_message": [ - 75 + 74 ], "game_server_node_id": [ - 75 + 74 ], "id": [ - 3864 + 3863 ], "k8s_job_name": [ - 75 + 74 ], "last_status_at": [ - 3467 + 3466 ], "match_map_demo_id": [ - 3864 + 3863 ], "match_map_id": [ - 3864 + 3863 ], "paused": [ 3 ], "progress": [ - 2014 + 2013 ], "session_token": [ - 75 + 74 ], "sort_index": [ 38 ], "spec": [ - 1240 + 1239 ], "status": [ - 75 + 74 ], "status_history": [ - 1240 + 1239 ], "user_steam_id": [ - 174 + 173 ], "__typename": [ - 75 + 74 ] }, "clip_render_jobs_stddev_fields": { @@ -4252,21 +4238,21 @@ export default { 29 ], "__typename": [ - 75 + 74 ] }, "clip_render_jobs_stddev_order_by": { "progress": [ - 2016 + 2015 ], "sort_index": [ - 2016 + 2015 ], "user_steam_id": [ - 2016 + 2015 ], "__typename": [ - 75 + 74 ] }, "clip_render_jobs_stddev_pop_fields": { @@ -4280,21 +4266,21 @@ export default { 29 ], "__typename": [ - 75 + 74 ] }, "clip_render_jobs_stddev_pop_order_by": { "progress": [ - 2016 + 2015 ], "sort_index": [ - 2016 + 2015 ], "user_steam_id": [ - 2016 + 2015 ], "__typename": [ - 75 + 74 ] }, "clip_render_jobs_stddev_samp_fields": { @@ -4308,146 +4294,146 @@ export default { 29 ], "__typename": [ - 75 + 74 ] }, "clip_render_jobs_stddev_samp_order_by": { "progress": [ - 2016 + 2015 ], "sort_index": [ - 2016 + 2015 ], "user_steam_id": [ - 2016 + 2015 ], "__typename": [ - 75 + 74 ] }, "clip_render_jobs_stream_cursor_input": { "initial_value": [ - 218 + 217 ], "ordering": [ - 229 + 228 ], "__typename": [ - 75 + 74 ] }, "clip_render_jobs_stream_cursor_value_input": { "clip_id": [ - 3864 + 3863 ], "created_at": [ - 3467 + 3466 ], "error_message": [ - 75 + 74 ], "game_server_node_id": [ - 75 + 74 ], "id": [ - 3864 + 3863 ], "k8s_job_name": [ - 75 + 74 ], "last_status_at": [ - 3467 + 3466 ], "match_map_demo_id": [ - 3864 + 3863 ], "match_map_id": [ - 3864 + 3863 ], "paused": [ 3 ], "progress": [ - 2014 + 2013 ], "session_token": [ - 75 + 74 ], "sort_index": [ 38 ], "spec": [ - 1240 + 1239 ], "status": [ - 75 + 74 ], "status_history": [ - 1240 + 1239 ], "user_steam_id": [ - 174 + 173 ], "__typename": [ - 75 + 74 ] }, "clip_render_jobs_sum_fields": { "progress": [ - 2014 + 2013 ], "sort_index": [ 38 ], "user_steam_id": [ - 174 + 173 ], "__typename": [ - 75 + 74 ] }, "clip_render_jobs_sum_order_by": { "progress": [ - 2016 + 2015 ], "sort_index": [ - 2016 + 2015 ], "user_steam_id": [ - 2016 + 2015 ], "__typename": [ - 75 + 74 ] }, "clip_render_jobs_update_column": {}, "clip_render_jobs_updates": { "_append": [ - 187 + 186 ], "_delete_at_path": [ - 193 + 192 ], "_delete_elem": [ - 194 + 193 ], "_delete_key": [ - 195 + 194 ], "_inc": [ - 196 + 195 ], "_prepend": [ - 206 + 205 ], "_set": [ - 210 + 209 ], "where": [ - 191 + 190 ], "__typename": [ - 75 + 74 ] }, "clip_render_jobs_var_pop_fields": { @@ -4461,21 +4447,21 @@ export default { 29 ], "__typename": [ - 75 + 74 ] }, "clip_render_jobs_var_pop_order_by": { "progress": [ - 2016 + 2015 ], "sort_index": [ - 2016 + 2015 ], "user_steam_id": [ - 2016 + 2015 ], "__typename": [ - 75 + 74 ] }, "clip_render_jobs_var_samp_fields": { @@ -4489,21 +4475,21 @@ export default { 29 ], "__typename": [ - 75 + 74 ] }, "clip_render_jobs_var_samp_order_by": { "progress": [ - 2016 + 2015 ], "sort_index": [ - 2016 + 2015 ], "user_steam_id": [ - 2016 + 2015 ], "__typename": [ - 75 + 74 ] }, "clip_render_jobs_variance_fields": { @@ -4517,61 +4503,61 @@ export default { 29 ], "__typename": [ - 75 + 74 ] }, "clip_render_jobs_variance_order_by": { "progress": [ - 2016 + 2015 ], "sort_index": [ - 2016 + 2015 ], "user_steam_id": [ - 2016 + 2015 ], "__typename": [ - 75 + 74 ] }, "cursor_ordering": {}, "db_backups": { "created_at": [ - 3467 + 3466 ], "id": [ - 3864 + 3863 ], "name": [ - 75 + 74 ], "size": [ 38 ], "__typename": [ - 75 + 74 ] }, "db_backups_aggregate": { "aggregate": [ - 232 + 231 ], "nodes": [ - 230 + 229 ], "__typename": [ - 75 + 74 ] }, "db_backups_aggregate_fields": { "avg": [ - 233 + 232 ], "count": [ 38, { "columns": [ - 244, + 243, "[db_backups_select_column!]" ], "distinct": [ @@ -4580,34 +4566,34 @@ export default { } ], "max": [ - 238 + 237 ], "min": [ - 239 + 238 ], "stddev": [ - 246 + 245 ], "stddev_pop": [ - 247 + 246 ], "stddev_samp": [ - 248 + 247 ], "sum": [ - 251 + 250 ], "var_pop": [ - 254 + 253 ], "var_samp": [ - 255 + 254 ], "variance": [ - 256 + 255 ], "__typename": [ - 75 + 74 ] }, "db_backups_avg_fields": { @@ -4615,33 +4601,33 @@ export default { 29 ], "__typename": [ - 75 + 74 ] }, "db_backups_bool_exp": { "_and": [ - 234 + 233 ], "_not": [ - 234 + 233 ], "_or": [ - 234 + 233 ], "created_at": [ - 3468 + 3467 ], "id": [ - 3866 + 3865 ], "name": [ - 77 + 76 ], "size": [ 39 ], "__typename": [ - 75 + 74 ] }, "db_backups_constraint": {}, @@ -4650,58 +4636,58 @@ export default { 38 ], "__typename": [ - 75 + 74 ] }, "db_backups_insert_input": { "created_at": [ - 3467 + 3466 ], "id": [ - 3864 + 3863 ], "name": [ - 75 + 74 ], "size": [ 38 ], "__typename": [ - 75 + 74 ] }, "db_backups_max_fields": { "created_at": [ - 3467 + 3466 ], "id": [ - 3864 + 3863 ], "name": [ - 75 + 74 ], "size": [ 38 ], "__typename": [ - 75 + 74 ] }, "db_backups_min_fields": { "created_at": [ - 3467 + 3466 ], "id": [ - 3864 + 3863 ], "name": [ - 75 + 74 ], "size": [ 38 ], "__typename": [ - 75 + 74 ] }, "db_backups_mutation_response": { @@ -4709,67 +4695,67 @@ export default { 38 ], "returning": [ - 230 + 229 ], "__typename": [ - 75 + 74 ] }, "db_backups_on_conflict": { "constraint": [ - 235 + 234 ], "update_columns": [ - 252 + 251 ], "where": [ - 234 + 233 ], "__typename": [ - 75 + 74 ] }, "db_backups_order_by": { "created_at": [ - 2016 + 2015 ], "id": [ - 2016 + 2015 ], "name": [ - 2016 + 2015 ], "size": [ - 2016 + 2015 ], "__typename": [ - 75 + 74 ] }, "db_backups_pk_columns_input": { "id": [ - 3864 + 3863 ], "__typename": [ - 75 + 74 ] }, "db_backups_select_column": {}, "db_backups_set_input": { "created_at": [ - 3467 + 3466 ], "id": [ - 3864 + 3863 ], "name": [ - 75 + 74 ], "size": [ 38 ], "__typename": [ - 75 + 74 ] }, "db_backups_stddev_fields": { @@ -4777,7 +4763,7 @@ export default { 29 ], "__typename": [ - 75 + 74 ] }, "db_backups_stddev_pop_fields": { @@ -4785,7 +4771,7 @@ export default { 29 ], "__typename": [ - 75 + 74 ] }, "db_backups_stddev_samp_fields": { @@ -4793,35 +4779,35 @@ export default { 29 ], "__typename": [ - 75 + 74 ] }, "db_backups_stream_cursor_input": { "initial_value": [ - 250 + 249 ], "ordering": [ - 229 + 228 ], "__typename": [ - 75 + 74 ] }, "db_backups_stream_cursor_value_input": { "created_at": [ - 3467 + 3466 ], "id": [ - 3864 + 3863 ], "name": [ - 75 + 74 ], "size": [ 38 ], "__typename": [ - 75 + 74 ] }, "db_backups_sum_fields": { @@ -4829,22 +4815,22 @@ export default { 38 ], "__typename": [ - 75 + 74 ] }, "db_backups_update_column": {}, "db_backups_updates": { "_inc": [ - 236 + 235 ], "_set": [ - 245 + 244 ], "where": [ - 234 + 233 ], "__typename": [ - 75 + 74 ] }, "db_backups_var_pop_fields": { @@ -4852,7 +4838,7 @@ export default { 29 ], "__typename": [ - 75 + 74 ] }, "db_backups_var_samp_fields": { @@ -4860,7 +4846,7 @@ export default { 29 ], "__typename": [ - 75 + 74 ] }, "db_backups_variance_fields": { @@ -4868,7 +4854,7 @@ export default { 29 ], "__typename": [ - 75 + 74 ] }, "draft_game_picks": { @@ -4876,22 +4862,22 @@ export default { 3 ], "captain": [ - 2915 + 2914 ], "captain_steam_id": [ - 174 + 173 ], "created_at": [ - 3467 + 3466 ], "draft_game": [ - 347 + 346 ], "draft_game_id": [ - 3864 + 3863 ], "id": [ - 3864 + 3863 ], "is_organizer": [ 3 @@ -4900,100 +4886,100 @@ export default { 38 ], "picked": [ - 2915 + 2914 ], "picked_steam_id": [ - 174 + 173 ], "__typename": [ - 75 + 74 ] }, "draft_game_picks_aggregate": { "aggregate": [ - 263 + 262 ], "nodes": [ - 257 + 256 ], "__typename": [ - 75 + 74 ] }, "draft_game_picks_aggregate_bool_exp": { "bool_and": [ - 260 + 259 ], "bool_or": [ - 261 + 260 ], "count": [ - 262 + 261 ], "__typename": [ - 75 + 74 ] }, "draft_game_picks_aggregate_bool_exp_bool_and": { "arguments": [ - 281 + 280 ], "distinct": [ 3 ], "filter": [ - 268 + 267 ], "predicate": [ 4 ], "__typename": [ - 75 + 74 ] }, "draft_game_picks_aggregate_bool_exp_bool_or": { "arguments": [ - 282 + 281 ], "distinct": [ 3 ], "filter": [ - 268 + 267 ], "predicate": [ 4 ], "__typename": [ - 75 + 74 ] }, "draft_game_picks_aggregate_bool_exp_count": { "arguments": [ - 280 + 279 ], "distinct": [ 3 ], "filter": [ - 268 + 267 ], "predicate": [ 39 ], "__typename": [ - 75 + 74 ] }, "draft_game_picks_aggregate_fields": { "avg": [ - 266 + 265 ], "count": [ 38, { "columns": [ - 280, + 279, "[draft_game_picks_select_column!]" ], "distinct": [ @@ -5002,83 +4988,83 @@ export default { } ], "max": [ - 272 + 271 ], "min": [ - 274 + 273 ], "stddev": [ - 284 + 283 ], "stddev_pop": [ - 286 + 285 ], "stddev_samp": [ - 288 + 287 ], "sum": [ - 292 + 291 ], "var_pop": [ - 296 + 295 ], "var_samp": [ - 298 + 297 ], "variance": [ - 300 + 299 ], "__typename": [ - 75 + 74 ] }, "draft_game_picks_aggregate_order_by": { "avg": [ - 267 + 266 ], "count": [ - 2016 + 2015 ], "max": [ - 273 + 272 ], "min": [ - 275 + 274 ], "stddev": [ - 285 + 284 ], "stddev_pop": [ - 287 + 286 ], "stddev_samp": [ - 289 + 288 ], "sum": [ - 293 + 292 ], "var_pop": [ - 297 + 296 ], "var_samp": [ - 299 + 298 ], "variance": [ - 301 + 300 ], "__typename": [ - 75 + 74 ] }, "draft_game_picks_arr_rel_insert_input": { "data": [ - 271 + 270 ], "on_conflict": [ - 277 + 276 ], "__typename": [ - 75 + 74 ] }, "draft_game_picks_avg_fields": { @@ -5092,53 +5078,53 @@ export default { 29 ], "__typename": [ - 75 + 74 ] }, "draft_game_picks_avg_order_by": { "captain_steam_id": [ - 2016 + 2015 ], "lineup": [ - 2016 + 2015 ], "picked_steam_id": [ - 2016 + 2015 ], "__typename": [ - 75 + 74 ] }, "draft_game_picks_bool_exp": { "_and": [ - 268 + 267 ], "_not": [ - 268 + 267 ], "_or": [ - 268 + 267 ], "auto_picked": [ 4 ], "captain": [ - 2919 + 2918 ], "captain_steam_id": [ - 176 + 175 ], "created_at": [ - 3468 + 3467 ], "draft_game": [ - 358 + 357 ], "draft_game_id": [ - 3866 + 3865 ], "id": [ - 3866 + 3865 ], "is_organizer": [ 4 @@ -5147,28 +5133,28 @@ export default { 39 ], "picked": [ - 2919 + 2918 ], "picked_steam_id": [ - 176 + 175 ], "__typename": [ - 75 + 74 ] }, "draft_game_picks_constraint": {}, "draft_game_picks_inc_input": { "captain_steam_id": [ - 174 + 173 ], "lineup": [ 38 ], "picked_steam_id": [ - 174 + 173 ], "__typename": [ - 75 + 74 ] }, "draft_game_picks_insert_input": { @@ -5176,126 +5162,126 @@ export default { 3 ], "captain": [ - 2926 + 2925 ], "captain_steam_id": [ - 174 + 173 ], "created_at": [ - 3467 + 3466 ], "draft_game": [ - 367 + 366 ], "draft_game_id": [ - 3864 + 3863 ], "id": [ - 3864 + 3863 ], "lineup": [ 38 ], "picked": [ - 2926 + 2925 ], "picked_steam_id": [ - 174 + 173 ], "__typename": [ - 75 + 74 ] }, "draft_game_picks_max_fields": { "captain_steam_id": [ - 174 + 173 ], "created_at": [ - 3467 + 3466 ], "draft_game_id": [ - 3864 + 3863 ], "id": [ - 3864 + 3863 ], "lineup": [ 38 ], "picked_steam_id": [ - 174 + 173 ], "__typename": [ - 75 + 74 ] }, "draft_game_picks_max_order_by": { "captain_steam_id": [ - 2016 + 2015 ], "created_at": [ - 2016 + 2015 ], "draft_game_id": [ - 2016 + 2015 ], "id": [ - 2016 + 2015 ], "lineup": [ - 2016 + 2015 ], "picked_steam_id": [ - 2016 + 2015 ], "__typename": [ - 75 + 74 ] }, "draft_game_picks_min_fields": { "captain_steam_id": [ - 174 + 173 ], "created_at": [ - 3467 + 3466 ], "draft_game_id": [ - 3864 + 3863 ], "id": [ - 3864 + 3863 ], "lineup": [ 38 ], "picked_steam_id": [ - 174 + 173 ], "__typename": [ - 75 + 74 ] }, "draft_game_picks_min_order_by": { "captain_steam_id": [ - 2016 + 2015 ], "created_at": [ - 2016 + 2015 ], "draft_game_id": [ - 2016 + 2015 ], "id": [ - 2016 + 2015 ], "lineup": [ - 2016 + 2015 ], "picked_steam_id": [ - 2016 + 2015 ], "__typename": [ - 75 + 74 ] }, "draft_game_picks_mutation_response": { @@ -5303,70 +5289,70 @@ export default { 38 ], "returning": [ - 257 + 256 ], "__typename": [ - 75 + 74 ] }, "draft_game_picks_on_conflict": { "constraint": [ - 269 + 268 ], "update_columns": [ - 294 + 293 ], "where": [ - 268 + 267 ], "__typename": [ - 75 + 74 ] }, "draft_game_picks_order_by": { "auto_picked": [ - 2016 + 2015 ], "captain": [ - 2928 + 2927 ], "captain_steam_id": [ - 2016 + 2015 ], "created_at": [ - 2016 + 2015 ], "draft_game": [ - 369 + 368 ], "draft_game_id": [ - 2016 + 2015 ], "id": [ - 2016 + 2015 ], "is_organizer": [ - 2016 + 2015 ], "lineup": [ - 2016 + 2015 ], "picked": [ - 2928 + 2927 ], "picked_steam_id": [ - 2016 + 2015 ], "__typename": [ - 75 + 74 ] }, "draft_game_picks_pk_columns_input": { "id": [ - 3864 + 3863 ], "__typename": [ - 75 + 74 ] }, "draft_game_picks_select_column": {}, @@ -5377,25 +5363,25 @@ export default { 3 ], "captain_steam_id": [ - 174 + 173 ], "created_at": [ - 3467 + 3466 ], "draft_game_id": [ - 3864 + 3863 ], "id": [ - 3864 + 3863 ], "lineup": [ 38 ], "picked_steam_id": [ - 174 + 173 ], "__typename": [ - 75 + 74 ] }, "draft_game_picks_stddev_fields": { @@ -5409,21 +5395,21 @@ export default { 29 ], "__typename": [ - 75 + 74 ] }, "draft_game_picks_stddev_order_by": { "captain_steam_id": [ - 2016 + 2015 ], "lineup": [ - 2016 + 2015 ], "picked_steam_id": [ - 2016 + 2015 ], "__typename": [ - 75 + 74 ] }, "draft_game_picks_stddev_pop_fields": { @@ -5437,21 +5423,21 @@ export default { 29 ], "__typename": [ - 75 + 74 ] }, "draft_game_picks_stddev_pop_order_by": { "captain_steam_id": [ - 2016 + 2015 ], "lineup": [ - 2016 + 2015 ], "picked_steam_id": [ - 2016 + 2015 ], "__typename": [ - 75 + 74 ] }, "draft_game_picks_stddev_samp_fields": { @@ -5465,32 +5451,32 @@ export default { 29 ], "__typename": [ - 75 + 74 ] }, "draft_game_picks_stddev_samp_order_by": { "captain_steam_id": [ - 2016 + 2015 ], "lineup": [ - 2016 + 2015 ], "picked_steam_id": [ - 2016 + 2015 ], "__typename": [ - 75 + 74 ] }, "draft_game_picks_stream_cursor_input": { "initial_value": [ - 291 + 290 ], "ordering": [ - 229 + 228 ], "__typename": [ - 75 + 74 ] }, "draft_game_picks_stream_cursor_value_input": { @@ -5498,68 +5484,68 @@ export default { 3 ], "captain_steam_id": [ - 174 + 173 ], "created_at": [ - 3467 + 3466 ], "draft_game_id": [ - 3864 + 3863 ], "id": [ - 3864 + 3863 ], "lineup": [ 38 ], "picked_steam_id": [ - 174 + 173 ], "__typename": [ - 75 + 74 ] }, "draft_game_picks_sum_fields": { "captain_steam_id": [ - 174 + 173 ], "lineup": [ 38 ], "picked_steam_id": [ - 174 + 173 ], "__typename": [ - 75 + 74 ] }, "draft_game_picks_sum_order_by": { "captain_steam_id": [ - 2016 + 2015 ], "lineup": [ - 2016 + 2015 ], "picked_steam_id": [ - 2016 + 2015 ], "__typename": [ - 75 + 74 ] }, "draft_game_picks_update_column": {}, "draft_game_picks_updates": { "_inc": [ - 270 + 269 ], "_set": [ - 283 + 282 ], "where": [ - 268 + 267 ], "__typename": [ - 75 + 74 ] }, "draft_game_picks_var_pop_fields": { @@ -5573,21 +5559,21 @@ export default { 29 ], "__typename": [ - 75 + 74 ] }, "draft_game_picks_var_pop_order_by": { "captain_steam_id": [ - 2016 + 2015 ], "lineup": [ - 2016 + 2015 ], "picked_steam_id": [ - 2016 + 2015 ], "__typename": [ - 75 + 74 ] }, "draft_game_picks_var_samp_fields": { @@ -5601,21 +5587,21 @@ export default { 29 ], "__typename": [ - 75 + 74 ] }, "draft_game_picks_var_samp_order_by": { "captain_steam_id": [ - 2016 + 2015 ], "lineup": [ - 2016 + 2015 ], "picked_steam_id": [ - 2016 + 2015 ], "__typename": [ - 75 + 74 ] }, "draft_game_picks_variance_fields": { @@ -5629,32 +5615,32 @@ export default { 29 ], "__typename": [ - 75 + 74 ] }, "draft_game_picks_variance_order_by": { "captain_steam_id": [ - 2016 + 2015 ], "lineup": [ - 2016 + 2015 ], "picked_steam_id": [ - 2016 + 2015 ], "__typename": [ - 75 + 74 ] }, "draft_game_players": { "draft_game": [ - 347 + 346 ], "draft_game_id": [ - 3864 + 3863 ], "e_draft_game_player_status": [ - 476 + 475 ], "elo_snapshot": [ 38 @@ -5666,7 +5652,7 @@ export default { 3 ], "joined_at": [ - 3467 + 3466 ], "lineup": [ 38 @@ -5675,103 +5661,103 @@ export default { 38 ], "player": [ - 2915 + 2914 ], "status": [ - 481 + 480 ], "steam_id": [ - 174 + 173 ], "__typename": [ - 75 + 74 ] }, "draft_game_players_aggregate": { "aggregate": [ - 308 + 307 ], "nodes": [ - 302 + 301 ], "__typename": [ - 75 + 74 ] }, "draft_game_players_aggregate_bool_exp": { "bool_and": [ - 305 + 304 ], "bool_or": [ - 306 + 305 ], "count": [ - 307 + 306 ], "__typename": [ - 75 + 74 ] }, "draft_game_players_aggregate_bool_exp_bool_and": { "arguments": [ - 326 + 325 ], "distinct": [ 3 ], "filter": [ - 313 + 312 ], "predicate": [ 4 ], "__typename": [ - 75 + 74 ] }, "draft_game_players_aggregate_bool_exp_bool_or": { "arguments": [ - 327 + 326 ], "distinct": [ 3 ], "filter": [ - 313 + 312 ], "predicate": [ 4 ], "__typename": [ - 75 + 74 ] }, "draft_game_players_aggregate_bool_exp_count": { "arguments": [ - 325 + 324 ], "distinct": [ 3 ], "filter": [ - 313 + 312 ], "predicate": [ 39 ], "__typename": [ - 75 + 74 ] }, "draft_game_players_aggregate_fields": { "avg": [ - 311 + 310 ], "count": [ 38, { "columns": [ - 325, + 324, "[draft_game_players_select_column!]" ], "distinct": [ @@ -5779,6 +5765,44 @@ export default { ] } ], + "max": [ + 316 + ], + "min": [ + 318 + ], + "stddev": [ + 328 + ], + "stddev_pop": [ + 330 + ], + "stddev_samp": [ + 332 + ], + "sum": [ + 336 + ], + "var_pop": [ + 340 + ], + "var_samp": [ + 342 + ], + "variance": [ + 344 + ], + "__typename": [ + 74 + ] + }, + "draft_game_players_aggregate_order_by": { + "avg": [ + 311 + ], + "count": [ + 2015 + ], "max": [ 317 ], @@ -5807,56 +5831,18 @@ export default { 345 ], "__typename": [ - 75 - ] - }, - "draft_game_players_aggregate_order_by": { - "avg": [ - 312 - ], - "count": [ - 2016 - ], - "max": [ - 318 - ], - "min": [ - 320 - ], - "stddev": [ - 330 - ], - "stddev_pop": [ - 332 - ], - "stddev_samp": [ - 334 - ], - "sum": [ - 338 - ], - "var_pop": [ - 342 - ], - "var_samp": [ - 344 - ], - "variance": [ - 346 - ], - "__typename": [ - 75 + 74 ] }, "draft_game_players_arr_rel_insert_input": { "data": [ - 316 + 315 ], "on_conflict": [ - 322 + 321 ], "__typename": [ - 75 + 74 ] }, "draft_game_players_avg_fields": { @@ -5873,44 +5859,44 @@ export default { 29 ], "__typename": [ - 75 + 74 ] }, "draft_game_players_avg_order_by": { "elo_snapshot": [ - 2016 + 2015 ], "lineup": [ - 2016 + 2015 ], "pick_order": [ - 2016 + 2015 ], "steam_id": [ - 2016 + 2015 ], "__typename": [ - 75 + 74 ] }, "draft_game_players_bool_exp": { "_and": [ - 313 + 312 ], "_not": [ - 313 + 312 ], "_or": [ - 313 + 312 ], "draft_game": [ - 358 + 357 ], "draft_game_id": [ - 3866 + 3865 ], "e_draft_game_player_status": [ - 479 + 478 ], "elo_snapshot": [ 39 @@ -5922,7 +5908,7 @@ export default { 4 ], "joined_at": [ - 3468 + 3467 ], "lineup": [ 39 @@ -5931,16 +5917,16 @@ export default { 39 ], "player": [ - 2919 + 2918 ], "status": [ - 482 + 481 ], "steam_id": [ - 176 + 175 ], "__typename": [ - 75 + 74 ] }, "draft_game_players_constraint": {}, @@ -5955,21 +5941,21 @@ export default { 38 ], "steam_id": [ - 174 + 173 ], "__typename": [ - 75 + 74 ] }, "draft_game_players_insert_input": { "draft_game": [ - 367 + 366 ], "draft_game_id": [ - 3864 + 3863 ], "e_draft_game_player_status": [ - 487 + 486 ], "elo_snapshot": [ 38 @@ -5978,7 +5964,7 @@ export default { 3 ], "joined_at": [ - 3467 + 3466 ], "lineup": [ 38 @@ -5987,27 +5973,27 @@ export default { 38 ], "player": [ - 2926 + 2925 ], "status": [ - 481 + 480 ], "steam_id": [ - 174 + 173 ], "__typename": [ - 75 + 74 ] }, "draft_game_players_max_fields": { "draft_game_id": [ - 3864 + 3863 ], "elo_snapshot": [ 38 ], "joined_at": [ - 3467 + 3466 ], "lineup": [ 38 @@ -6016,44 +6002,44 @@ export default { 38 ], "steam_id": [ - 174 + 173 ], "__typename": [ - 75 + 74 ] }, "draft_game_players_max_order_by": { "draft_game_id": [ - 2016 + 2015 ], "elo_snapshot": [ - 2016 + 2015 ], "joined_at": [ - 2016 + 2015 ], "lineup": [ - 2016 + 2015 ], "pick_order": [ - 2016 + 2015 ], "steam_id": [ - 2016 + 2015 ], "__typename": [ - 75 + 74 ] }, "draft_game_players_min_fields": { "draft_game_id": [ - 3864 + 3863 ], "elo_snapshot": [ 38 ], "joined_at": [ - 3467 + 3466 ], "lineup": [ 38 @@ -6062,33 +6048,33 @@ export default { 38 ], "steam_id": [ - 174 + 173 ], "__typename": [ - 75 + 74 ] }, "draft_game_players_min_order_by": { "draft_game_id": [ - 2016 + 2015 ], "elo_snapshot": [ - 2016 + 2015 ], "joined_at": [ - 2016 + 2015 ], "lineup": [ - 2016 + 2015 ], "pick_order": [ - 2016 + 2015 ], "steam_id": [ - 2016 + 2015 ], "__typename": [ - 75 + 74 ] }, "draft_game_players_mutation_response": { @@ -6096,76 +6082,76 @@ export default { 38 ], "returning": [ - 302 + 301 ], "__typename": [ - 75 + 74 ] }, "draft_game_players_on_conflict": { "constraint": [ - 314 + 313 ], "update_columns": [ - 339 + 338 ], "where": [ - 313 + 312 ], "__typename": [ - 75 + 74 ] }, "draft_game_players_order_by": { "draft_game": [ - 369 + 368 ], "draft_game_id": [ - 2016 + 2015 ], "e_draft_game_player_status": [ - 489 + 488 ], "elo_snapshot": [ - 2016 + 2015 ], "is_captain": [ - 2016 + 2015 ], "is_organizer": [ - 2016 + 2015 ], "joined_at": [ - 2016 + 2015 ], "lineup": [ - 2016 + 2015 ], "pick_order": [ - 2016 + 2015 ], "player": [ - 2928 + 2927 ], "status": [ - 2016 + 2015 ], "steam_id": [ - 2016 + 2015 ], "__typename": [ - 75 + 74 ] }, "draft_game_players_pk_columns_input": { "draft_game_id": [ - 3864 + 3863 ], "steam_id": [ - 174 + 173 ], "__typename": [ - 75 + 74 ] }, "draft_game_players_select_column": {}, @@ -6173,7 +6159,7 @@ export default { "draft_game_players_select_column_draft_game_players_aggregate_bool_exp_bool_or_arguments_columns": {}, "draft_game_players_set_input": { "draft_game_id": [ - 3864 + 3863 ], "elo_snapshot": [ 38 @@ -6182,7 +6168,7 @@ export default { 3 ], "joined_at": [ - 3467 + 3466 ], "lineup": [ 38 @@ -6191,13 +6177,13 @@ export default { 38 ], "status": [ - 481 + 480 ], "steam_id": [ - 174 + 173 ], "__typename": [ - 75 + 74 ] }, "draft_game_players_stddev_fields": { @@ -6214,24 +6200,24 @@ export default { 29 ], "__typename": [ - 75 + 74 ] }, "draft_game_players_stddev_order_by": { "elo_snapshot": [ - 2016 + 2015 ], "lineup": [ - 2016 + 2015 ], "pick_order": [ - 2016 + 2015 ], "steam_id": [ - 2016 + 2015 ], "__typename": [ - 75 + 74 ] }, "draft_game_players_stddev_pop_fields": { @@ -6248,24 +6234,24 @@ export default { 29 ], "__typename": [ - 75 + 74 ] }, "draft_game_players_stddev_pop_order_by": { "elo_snapshot": [ - 2016 + 2015 ], "lineup": [ - 2016 + 2015 ], "pick_order": [ - 2016 + 2015 ], "steam_id": [ - 2016 + 2015 ], "__typename": [ - 75 + 74 ] }, "draft_game_players_stddev_samp_fields": { @@ -6282,40 +6268,40 @@ export default { 29 ], "__typename": [ - 75 + 74 ] }, "draft_game_players_stddev_samp_order_by": { "elo_snapshot": [ - 2016 + 2015 ], "lineup": [ - 2016 + 2015 ], "pick_order": [ - 2016 + 2015 ], "steam_id": [ - 2016 + 2015 ], "__typename": [ - 75 + 74 ] }, "draft_game_players_stream_cursor_input": { "initial_value": [ - 336 + 335 ], "ordering": [ - 229 + 228 ], "__typename": [ - 75 + 74 ] }, "draft_game_players_stream_cursor_value_input": { "draft_game_id": [ - 3864 + 3863 ], "elo_snapshot": [ 38 @@ -6324,7 +6310,7 @@ export default { 3 ], "joined_at": [ - 3467 + 3466 ], "lineup": [ 38 @@ -6333,13 +6319,13 @@ export default { 38 ], "status": [ - 481 + 480 ], "steam_id": [ - 174 + 173 ], "__typename": [ - 75 + 74 ] }, "draft_game_players_sum_fields": { @@ -6353,42 +6339,42 @@ export default { 38 ], "steam_id": [ - 174 + 173 ], "__typename": [ - 75 + 74 ] }, "draft_game_players_sum_order_by": { "elo_snapshot": [ - 2016 + 2015 ], "lineup": [ - 2016 + 2015 ], "pick_order": [ - 2016 + 2015 ], "steam_id": [ - 2016 + 2015 ], "__typename": [ - 75 + 74 ] }, "draft_game_players_update_column": {}, "draft_game_players_updates": { "_inc": [ - 315 + 314 ], "_set": [ - 328 + 327 ], "where": [ - 313 + 312 ], "__typename": [ - 75 + 74 ] }, "draft_game_players_var_pop_fields": { @@ -6405,24 +6391,24 @@ export default { 29 ], "__typename": [ - 75 + 74 ] }, "draft_game_players_var_pop_order_by": { "elo_snapshot": [ - 2016 + 2015 ], "lineup": [ - 2016 + 2015 ], "pick_order": [ - 2016 + 2015 ], "steam_id": [ - 2016 + 2015 ], "__typename": [ - 75 + 74 ] }, "draft_game_players_var_samp_fields": { @@ -6439,24 +6425,24 @@ export default { 29 ], "__typename": [ - 75 + 74 ] }, "draft_game_players_var_samp_order_by": { "elo_snapshot": [ - 2016 + 2015 ], "lineup": [ - 2016 + 2015 ], "pick_order": [ - 2016 + 2015 ], "steam_id": [ - 2016 + 2015 ], "__typename": [ - 75 + 74 ] }, "draft_game_players_variance_fields": { @@ -6473,95 +6459,95 @@ export default { 29 ], "__typename": [ - 75 + 74 ] }, "draft_game_players_variance_order_by": { "elo_snapshot": [ - 2016 + 2015 ], "lineup": [ - 2016 + 2015 ], "pick_order": [ - 2016 + 2015 ], "steam_id": [ - 2016 + 2015 ], "__typename": [ - 75 + 74 ] }, "draft_games": { "access": [ - 585 + 584 ], "capacity": [ 38 ], "captain_selection": [ - 418 + 417 ], "created_at": [ - 3467 + 3466 ], "current_pick_lineup": [ 38 ], "draft_order": [ - 439 + 438 ], "e_draft_game_captain_selection": [ - 413 + 412 ], "e_draft_game_draft_order": [ - 434 + 433 ], "e_draft_game_mode": [ - 455 + 454 ], "e_draft_game_status": [ - 497 + 496 ], "e_lobby_access": [ - 580 + 579 ], "expires_at": [ - 3467 + 3466 ], "host": [ - 2915 + 2914 ], "host_steam_id": [ - 174 + 173 ], "id": [ - 3864 + 3863 ], "inner_squad": [ 3 ], "invite_code": [ - 3864 + 3863 ], "is_organizer": [ 3 ], "map_pool": [ - 1330 + 1329 ], "map_pool_id": [ - 3864 + 3863 ], "match": [ - 1831 + 1830 ], "match_id": [ - 3864 + 3863 ], "match_options_id": [ - 3864 + 3863 ], "max_elo": [ 38 @@ -6570,19 +6556,19 @@ export default { 38 ], "mode": [ - 460 + 459 ], "options": [ - 1711 + 1710 ], "pick_deadline": [ - 3467 + 3466 ], "picks": [ - 257, + 256, { "distinct_on": [ - 280, + 279, "[draft_game_picks_select_column!]" ], "limit": [ @@ -6592,19 +6578,19 @@ export default { 38 ], "order_by": [ - 278, + 277, "[draft_game_picks_order_by!]" ], "where": [ - 268 + 267 ] } ], "picks_aggregate": [ - 258, + 257, { "distinct_on": [ - 280, + 279, "[draft_game_picks_select_column!]" ], "limit": [ @@ -6614,19 +6600,19 @@ export default { 38 ], "order_by": [ - 278, + 277, "[draft_game_picks_order_by!]" ], "where": [ - 268 + 267 ] } ], "players": [ - 302, + 301, { "distinct_on": [ - 325, + 324, "[draft_game_players_select_column!]" ], "limit": [ @@ -6636,19 +6622,19 @@ export default { 38 ], "order_by": [ - 323, + 322, "[draft_game_players_order_by!]" ], "where": [ - 313 + 312 ] } ], "players_aggregate": [ - 303, + 302, { "distinct_on": [ - 325, + 324, "[draft_game_players_select_column!]" ], "limit": [ @@ -6658,133 +6644,133 @@ export default { 38 ], "order_by": [ - 323, + 322, "[draft_game_players_order_by!]" ], "where": [ - 313 + 312 ] } ], "regions": [ - 75 + 74 ], "require_approval": [ 3 ], "scheduled_at": [ - 3467 + 3466 ], "status": [ - 502 + 501 ], "team_1": [ - 3424 + 3423 ], "team_1_id": [ - 3864 + 3863 ], "team_2": [ - 3424 + 3423 ], "team_2_id": [ - 3864 + 3863 ], "type": [ - 729 + 728 ], "updated_at": [ - 3467 + 3466 ], "__typename": [ - 75 + 74 ] }, "draft_games_aggregate": { "aggregate": [ - 353 + 352 ], "nodes": [ - 347 + 346 ], "__typename": [ - 75 + 74 ] }, "draft_games_aggregate_bool_exp": { "bool_and": [ - 350 + 349 ], "bool_or": [ - 351 + 350 ], "count": [ - 352 + 351 ], "__typename": [ - 75 + 74 ] }, "draft_games_aggregate_bool_exp_bool_and": { "arguments": [ - 372 + 371 ], "distinct": [ 3 ], "filter": [ - 358 + 357 ], "predicate": [ 4 ], "__typename": [ - 75 + 74 ] }, "draft_games_aggregate_bool_exp_bool_or": { "arguments": [ - 373 + 372 ], "distinct": [ 3 ], "filter": [ - 358 + 357 ], "predicate": [ 4 ], "__typename": [ - 75 + 74 ] }, "draft_games_aggregate_bool_exp_count": { "arguments": [ - 371 + 370 ], "distinct": [ 3 ], "filter": [ - 358 + 357 ], "predicate": [ 39 ], "__typename": [ - 75 + 74 ] }, "draft_games_aggregate_fields": { "avg": [ - 356 + 355 ], "count": [ 38, { "columns": [ - 371, + 370, "[draft_games_select_column!]" ], "distinct": [ @@ -6792,6 +6778,44 @@ export default { ] } ], + "max": [ + 361 + ], + "min": [ + 363 + ], + "stddev": [ + 374 + ], + "stddev_pop": [ + 376 + ], + "stddev_samp": [ + 378 + ], + "sum": [ + 382 + ], + "var_pop": [ + 386 + ], + "var_samp": [ + 388 + ], + "variance": [ + 390 + ], + "__typename": [ + 74 + ] + }, + "draft_games_aggregate_order_by": { + "avg": [ + 356 + ], + "count": [ + 2015 + ], "max": [ 362 ], @@ -6820,56 +6844,18 @@ export default { 391 ], "__typename": [ - 75 - ] - }, - "draft_games_aggregate_order_by": { - "avg": [ - 357 - ], - "count": [ - 2016 - ], - "max": [ - 363 - ], - "min": [ - 365 - ], - "stddev": [ - 376 - ], - "stddev_pop": [ - 378 - ], - "stddev_samp": [ - 380 - ], - "sum": [ - 384 - ], - "var_pop": [ - 388 - ], - "var_samp": [ - 390 - ], - "variance": [ - 392 - ], - "__typename": [ - 75 + 74 ] }, "draft_games_arr_rel_insert_input": { "data": [ - 361 + 360 ], "on_conflict": [ - 368 + 367 ], "__typename": [ - 75 + 74 ] }, "draft_games_avg_fields": { @@ -6889,107 +6875,107 @@ export default { 29 ], "__typename": [ - 75 + 74 ] }, "draft_games_avg_order_by": { "capacity": [ - 2016 + 2015 ], "current_pick_lineup": [ - 2016 + 2015 ], "host_steam_id": [ - 2016 + 2015 ], "max_elo": [ - 2016 + 2015 ], "min_elo": [ - 2016 + 2015 ], "__typename": [ - 75 + 74 ] }, "draft_games_bool_exp": { "_and": [ - 358 + 357 ], "_not": [ - 358 + 357 ], "_or": [ - 358 + 357 ], "access": [ - 586 + 585 ], "capacity": [ 39 ], "captain_selection": [ - 419 + 418 ], "created_at": [ - 3468 + 3467 ], "current_pick_lineup": [ 39 ], "draft_order": [ - 440 + 439 ], "e_draft_game_captain_selection": [ - 416 + 415 ], "e_draft_game_draft_order": [ - 437 + 436 ], "e_draft_game_mode": [ - 458 + 457 ], "e_draft_game_status": [ - 500 + 499 ], "e_lobby_access": [ - 583 + 582 ], "expires_at": [ - 3468 + 3467 ], "host": [ - 2919 + 2918 ], "host_steam_id": [ - 176 + 175 ], "id": [ - 3866 + 3865 ], "inner_squad": [ 4 ], "invite_code": [ - 3866 + 3865 ], "is_organizer": [ 4 ], "map_pool": [ - 1333 + 1332 ], "map_pool_id": [ - 3866 + 3865 ], "match": [ - 1840 + 1839 ], "match_id": [ - 3866 + 3865 ], "match_options_id": [ - 3866 + 3865 ], "max_elo": [ 39 @@ -6998,58 +6984,58 @@ export default { 39 ], "mode": [ - 461 + 460 ], "options": [ - 1715 + 1714 ], "pick_deadline": [ - 3468 + 3467 ], "picks": [ - 268 + 267 ], "picks_aggregate": [ - 259 + 258 ], "players": [ - 313 + 312 ], "players_aggregate": [ - 304 + 303 ], "regions": [ - 76 + 75 ], "require_approval": [ 4 ], "scheduled_at": [ - 3468 + 3467 ], "status": [ - 503 + 502 ], "team_1": [ - 3433 + 3432 ], "team_1_id": [ - 3866 + 3865 ], "team_2": [ - 3433 + 3432 ], "team_2_id": [ - 3866 + 3865 ], "type": [ - 730 + 729 ], "updated_at": [ - 3468 + 3467 ], "__typename": [ - 75 + 74 ] }, "draft_games_constraint": {}, @@ -7061,7 +7047,7 @@ export default { 38 ], "host_steam_id": [ - 174 + 173 ], "max_elo": [ 38 @@ -7070,75 +7056,75 @@ export default { 38 ], "__typename": [ - 75 + 74 ] }, "draft_games_insert_input": { "access": [ - 585 + 584 ], "capacity": [ 38 ], "captain_selection": [ - 418 + 417 ], "created_at": [ - 3467 + 3466 ], "current_pick_lineup": [ 38 ], "draft_order": [ - 439 + 438 ], "e_draft_game_captain_selection": [ - 424 + 423 ], "e_draft_game_draft_order": [ - 445 + 444 ], "e_draft_game_mode": [ - 466 + 465 ], "e_draft_game_status": [ - 508 + 507 ], "e_lobby_access": [ - 591 + 590 ], "expires_at": [ - 3467 + 3466 ], "host": [ - 2926 + 2925 ], "host_steam_id": [ - 174 + 173 ], "id": [ - 3864 + 3863 ], "inner_squad": [ 3 ], "invite_code": [ - 3864 + 3863 ], "map_pool": [ - 1339 + 1338 ], "map_pool_id": [ - 3864 + 3863 ], "match": [ - 1849 + 1848 ], "match_id": [ - 3864 + 3863 ], "match_options_id": [ - 3864 + 3863 ], "max_elo": [ 38 @@ -7147,52 +7133,52 @@ export default { 38 ], "mode": [ - 460 + 459 ], "options": [ - 1722 + 1721 ], "pick_deadline": [ - 3467 + 3466 ], "picks": [ - 265 + 264 ], "players": [ - 310 + 309 ], "regions": [ - 75 + 74 ], "require_approval": [ 3 ], "scheduled_at": [ - 3467 + 3466 ], "status": [ - 502 + 501 ], "team_1": [ - 3442 + 3441 ], "team_1_id": [ - 3864 + 3863 ], "team_2": [ - 3442 + 3441 ], "team_2_id": [ - 3864 + 3863 ], "type": [ - 729 + 728 ], "updated_at": [ - 3467 + 3466 ], "__typename": [ - 75 + 74 ] }, "draft_games_max_fields": { @@ -7200,31 +7186,31 @@ export default { 38 ], "created_at": [ - 3467 + 3466 ], "current_pick_lineup": [ 38 ], "expires_at": [ - 3467 + 3466 ], "host_steam_id": [ - 174 + 173 ], "id": [ - 3864 + 3863 ], "invite_code": [ - 3864 + 3863 ], "map_pool_id": [ - 3864 + 3863 ], "match_id": [ - 3864 + 3863 ], "match_options_id": [ - 3864 + 3863 ], "max_elo": [ 38 @@ -7233,84 +7219,84 @@ export default { 38 ], "pick_deadline": [ - 3467 + 3466 ], "regions": [ - 75 + 74 ], "scheduled_at": [ - 3467 + 3466 ], "team_1_id": [ - 3864 + 3863 ], "team_2_id": [ - 3864 + 3863 ], "updated_at": [ - 3467 + 3466 ], "__typename": [ - 75 + 74 ] }, "draft_games_max_order_by": { "capacity": [ - 2016 + 2015 ], "created_at": [ - 2016 + 2015 ], "current_pick_lineup": [ - 2016 + 2015 ], "expires_at": [ - 2016 + 2015 ], "host_steam_id": [ - 2016 + 2015 ], "id": [ - 2016 + 2015 ], "invite_code": [ - 2016 + 2015 ], "map_pool_id": [ - 2016 + 2015 ], "match_id": [ - 2016 + 2015 ], "match_options_id": [ - 2016 + 2015 ], "max_elo": [ - 2016 + 2015 ], "min_elo": [ - 2016 + 2015 ], "pick_deadline": [ - 2016 + 2015 ], "regions": [ - 2016 + 2015 ], "scheduled_at": [ - 2016 + 2015 ], "team_1_id": [ - 2016 + 2015 ], "team_2_id": [ - 2016 + 2015 ], "updated_at": [ - 2016 + 2015 ], "__typename": [ - 75 + 74 ] }, "draft_games_min_fields": { @@ -7318,31 +7304,31 @@ export default { 38 ], "created_at": [ - 3467 + 3466 ], "current_pick_lineup": [ 38 ], "expires_at": [ - 3467 + 3466 ], "host_steam_id": [ - 174 + 173 ], "id": [ - 3864 + 3863 ], "invite_code": [ - 3864 + 3863 ], "map_pool_id": [ - 3864 + 3863 ], "match_id": [ - 3864 + 3863 ], "match_options_id": [ - 3864 + 3863 ], "max_elo": [ 38 @@ -7351,84 +7337,84 @@ export default { 38 ], "pick_deadline": [ - 3467 + 3466 ], "regions": [ - 75 + 74 ], "scheduled_at": [ - 3467 + 3466 ], "team_1_id": [ - 3864 + 3863 ], "team_2_id": [ - 3864 + 3863 ], "updated_at": [ - 3467 + 3466 ], "__typename": [ - 75 + 74 ] }, "draft_games_min_order_by": { "capacity": [ - 2016 + 2015 ], "created_at": [ - 2016 + 2015 ], "current_pick_lineup": [ - 2016 + 2015 ], "expires_at": [ - 2016 + 2015 ], "host_steam_id": [ - 2016 + 2015 ], "id": [ - 2016 + 2015 ], "invite_code": [ - 2016 + 2015 ], "map_pool_id": [ - 2016 + 2015 ], "match_id": [ - 2016 + 2015 ], "match_options_id": [ - 2016 + 2015 ], "max_elo": [ - 2016 + 2015 ], "min_elo": [ - 2016 + 2015 ], "pick_deadline": [ - 2016 + 2015 ], "regions": [ - 2016 + 2015 ], "scheduled_at": [ - 2016 + 2015 ], "team_1_id": [ - 2016 + 2015 ], "team_2_id": [ - 2016 + 2015 ], "updated_at": [ - 2016 + 2015 ], "__typename": [ - 75 + 74 ] }, "draft_games_mutation_response": { @@ -7436,168 +7422,168 @@ export default { 38 ], "returning": [ - 347 + 346 ], "__typename": [ - 75 + 74 ] }, "draft_games_obj_rel_insert_input": { "data": [ - 361 + 360 ], "on_conflict": [ - 368 + 367 ], "__typename": [ - 75 + 74 ] }, "draft_games_on_conflict": { "constraint": [ - 359 + 358 ], "update_columns": [ - 385 + 384 ], "where": [ - 358 + 357 ], "__typename": [ - 75 + 74 ] }, "draft_games_order_by": { "access": [ - 2016 + 2015 ], "capacity": [ - 2016 + 2015 ], "captain_selection": [ - 2016 + 2015 ], "created_at": [ - 2016 + 2015 ], "current_pick_lineup": [ - 2016 + 2015 ], "draft_order": [ - 2016 + 2015 ], "e_draft_game_captain_selection": [ - 426 + 425 ], "e_draft_game_draft_order": [ - 447 + 446 ], "e_draft_game_mode": [ - 468 + 467 ], "e_draft_game_status": [ - 510 + 509 ], "e_lobby_access": [ - 593 + 592 ], "expires_at": [ - 2016 + 2015 ], "host": [ - 2928 + 2927 ], "host_steam_id": [ - 2016 + 2015 ], "id": [ - 2016 + 2015 ], "inner_squad": [ - 2016 + 2015 ], "invite_code": [ - 2016 + 2015 ], "is_organizer": [ - 2016 + 2015 ], "map_pool": [ - 1341 + 1340 ], "map_pool_id": [ - 2016 + 2015 ], "match": [ - 1851 + 1850 ], "match_id": [ - 2016 + 2015 ], "match_options_id": [ - 2016 + 2015 ], "max_elo": [ - 2016 + 2015 ], "min_elo": [ - 2016 + 2015 ], "mode": [ - 2016 + 2015 ], "options": [ - 1724 + 1723 ], "pick_deadline": [ - 2016 + 2015 ], "picks_aggregate": [ - 264 + 263 ], "players_aggregate": [ - 309 + 308 ], "regions": [ - 2016 + 2015 ], "require_approval": [ - 2016 + 2015 ], "scheduled_at": [ - 2016 + 2015 ], "status": [ - 2016 + 2015 ], "team_1": [ - 3444 + 3443 ], "team_1_id": [ - 2016 + 2015 ], "team_2": [ - 3444 + 3443 ], "team_2_id": [ - 2016 + 2015 ], "type": [ - 2016 + 2015 ], "updated_at": [ - 2016 + 2015 ], "__typename": [ - 75 + 74 ] }, "draft_games_pk_columns_input": { "id": [ - 3864 + 3863 ], "__typename": [ - 75 + 74 ] }, "draft_games_select_column": {}, @@ -7605,46 +7591,46 @@ export default { "draft_games_select_column_draft_games_aggregate_bool_exp_bool_or_arguments_columns": {}, "draft_games_set_input": { "access": [ - 585 + 584 ], "capacity": [ 38 ], "captain_selection": [ - 418 + 417 ], "created_at": [ - 3467 + 3466 ], "current_pick_lineup": [ 38 ], "draft_order": [ - 439 + 438 ], "expires_at": [ - 3467 + 3466 ], "host_steam_id": [ - 174 + 173 ], "id": [ - 3864 + 3863 ], "inner_squad": [ 3 ], "invite_code": [ - 3864 + 3863 ], "map_pool_id": [ - 3864 + 3863 ], "match_id": [ - 3864 + 3863 ], "match_options_id": [ - 3864 + 3863 ], "max_elo": [ 38 @@ -7653,37 +7639,37 @@ export default { 38 ], "mode": [ - 460 + 459 ], "pick_deadline": [ - 3467 + 3466 ], "regions": [ - 75 + 74 ], "require_approval": [ 3 ], "scheduled_at": [ - 3467 + 3466 ], "status": [ - 502 + 501 ], "team_1_id": [ - 3864 + 3863 ], "team_2_id": [ - 3864 + 3863 ], "type": [ - 729 + 728 ], "updated_at": [ - 3467 + 3466 ], "__typename": [ - 75 + 74 ] }, "draft_games_stddev_fields": { @@ -7703,27 +7689,27 @@ export default { 29 ], "__typename": [ - 75 + 74 ] }, "draft_games_stddev_order_by": { "capacity": [ - 2016 + 2015 ], "current_pick_lineup": [ - 2016 + 2015 ], "host_steam_id": [ - 2016 + 2015 ], "max_elo": [ - 2016 + 2015 ], "min_elo": [ - 2016 + 2015 ], "__typename": [ - 75 + 74 ] }, "draft_games_stddev_pop_fields": { @@ -7743,27 +7729,27 @@ export default { 29 ], "__typename": [ - 75 + 74 ] }, "draft_games_stddev_pop_order_by": { "capacity": [ - 2016 + 2015 ], "current_pick_lineup": [ - 2016 + 2015 ], "host_steam_id": [ - 2016 + 2015 ], "max_elo": [ - 2016 + 2015 ], "min_elo": [ - 2016 + 2015 ], "__typename": [ - 75 + 74 ] }, "draft_games_stddev_samp_fields": { @@ -7783,82 +7769,82 @@ export default { 29 ], "__typename": [ - 75 + 74 ] }, "draft_games_stddev_samp_order_by": { "capacity": [ - 2016 + 2015 ], "current_pick_lineup": [ - 2016 + 2015 ], "host_steam_id": [ - 2016 + 2015 ], "max_elo": [ - 2016 + 2015 ], "min_elo": [ - 2016 + 2015 ], "__typename": [ - 75 + 74 ] }, "draft_games_stream_cursor_input": { "initial_value": [ - 382 + 381 ], "ordering": [ - 229 + 228 ], "__typename": [ - 75 + 74 ] }, "draft_games_stream_cursor_value_input": { "access": [ - 585 + 584 ], "capacity": [ 38 ], "captain_selection": [ - 418 + 417 ], "created_at": [ - 3467 + 3466 ], "current_pick_lineup": [ 38 ], "draft_order": [ - 439 + 438 ], "expires_at": [ - 3467 + 3466 ], "host_steam_id": [ - 174 + 173 ], "id": [ - 3864 + 3863 ], "inner_squad": [ 3 ], "invite_code": [ - 3864 + 3863 ], "map_pool_id": [ - 3864 + 3863 ], "match_id": [ - 3864 + 3863 ], "match_options_id": [ - 3864 + 3863 ], "max_elo": [ 38 @@ -7867,37 +7853,37 @@ export default { 38 ], "mode": [ - 460 + 459 ], "pick_deadline": [ - 3467 + 3466 ], "regions": [ - 75 + 74 ], "require_approval": [ 3 ], "scheduled_at": [ - 3467 + 3466 ], "status": [ - 502 + 501 ], "team_1_id": [ - 3864 + 3863 ], "team_2_id": [ - 3864 + 3863 ], "type": [ - 729 + 728 ], "updated_at": [ - 3467 + 3466 ], "__typename": [ - 75 + 74 ] }, "draft_games_sum_fields": { @@ -7908,7 +7894,7 @@ export default { 38 ], "host_steam_id": [ - 174 + 173 ], "max_elo": [ 38 @@ -7917,42 +7903,42 @@ export default { 38 ], "__typename": [ - 75 + 74 ] }, "draft_games_sum_order_by": { "capacity": [ - 2016 + 2015 ], "current_pick_lineup": [ - 2016 + 2015 ], "host_steam_id": [ - 2016 + 2015 ], "max_elo": [ - 2016 + 2015 ], "min_elo": [ - 2016 + 2015 ], "__typename": [ - 75 + 74 ] }, "draft_games_update_column": {}, "draft_games_updates": { "_inc": [ - 360 + 359 ], "_set": [ - 374 + 373 ], "where": [ - 358 + 357 ], "__typename": [ - 75 + 74 ] }, "draft_games_var_pop_fields": { @@ -7972,27 +7958,27 @@ export default { 29 ], "__typename": [ - 75 + 74 ] }, "draft_games_var_pop_order_by": { "capacity": [ - 2016 + 2015 ], "current_pick_lineup": [ - 2016 + 2015 ], "host_steam_id": [ - 2016 + 2015 ], "max_elo": [ - 2016 + 2015 ], "min_elo": [ - 2016 + 2015 ], "__typename": [ - 75 + 74 ] }, "draft_games_var_samp_fields": { @@ -8012,27 +7998,27 @@ export default { 29 ], "__typename": [ - 75 + 74 ] }, "draft_games_var_samp_order_by": { "capacity": [ - 2016 + 2015 ], "current_pick_lineup": [ - 2016 + 2015 ], "host_steam_id": [ - 2016 + 2015 ], "max_elo": [ - 2016 + 2015 ], "min_elo": [ - 2016 + 2015 ], "__typename": [ - 75 + 74 ] }, "draft_games_variance_fields": { @@ -8052,49 +8038,49 @@ export default { 29 ], "__typename": [ - 75 + 74 ] }, "draft_games_variance_order_by": { "capacity": [ - 2016 + 2015 ], "current_pick_lineup": [ - 2016 + 2015 ], "host_steam_id": [ - 2016 + 2015 ], "max_elo": [ - 2016 + 2015 ], "min_elo": [ - 2016 + 2015 ], "__typename": [ - 75 + 74 ] }, "e_check_in_settings": { "description": [ - 75 + 74 ], "value": [ - 75 + 74 ], "__typename": [ - 75 + 74 ] }, "e_check_in_settings_aggregate": { "aggregate": [ - 395 + 394 ], "nodes": [ - 393 + 392 ], "__typename": [ - 75 + 74 ] }, "e_check_in_settings_aggregate_fields": { @@ -8102,7 +8088,7 @@ export default { 38, { "columns": [ - 407, + 406, "[e_check_in_settings_select_column!]" ], "distinct": [ @@ -8111,88 +8097,88 @@ export default { } ], "max": [ - 401 + 400 ], "min": [ - 402 + 401 ], "__typename": [ - 75 + 74 ] }, "e_check_in_settings_bool_exp": { "_and": [ - 396 + 395 ], "_not": [ - 396 + 395 ], "_or": [ - 396 + 395 ], "description": [ - 77 + 76 ], "value": [ - 77 + 76 ], "__typename": [ - 75 + 74 ] }, "e_check_in_settings_constraint": {}, "e_check_in_settings_enum": {}, "e_check_in_settings_enum_comparison_exp": { "_eq": [ - 398 + 397 ], "_in": [ - 398 + 397 ], "_is_null": [ 3 ], "_neq": [ - 398 + 397 ], "_nin": [ - 398 + 397 ], "__typename": [ - 75 + 74 ] }, "e_check_in_settings_insert_input": { "description": [ - 75 + 74 ], "value": [ - 75 + 74 ], "__typename": [ - 75 + 74 ] }, "e_check_in_settings_max_fields": { "description": [ - 75 + 74 ], "value": [ - 75 + 74 ], "__typename": [ - 75 + 74 ] }, "e_check_in_settings_min_fields": { "description": [ - 75 + 74 ], "value": [ - 75 + 74 ], "__typename": [ - 75 + 74 ] }, "e_check_in_settings_mutation_response": { @@ -8200,111 +8186,111 @@ export default { 38 ], "returning": [ - 393 + 392 ], "__typename": [ - 75 + 74 ] }, "e_check_in_settings_on_conflict": { "constraint": [ - 397 + 396 ], "update_columns": [ - 411 + 410 ], "where": [ - 396 + 395 ], "__typename": [ - 75 + 74 ] }, "e_check_in_settings_order_by": { "description": [ - 2016 + 2015 ], "value": [ - 2016 + 2015 ], "__typename": [ - 75 + 74 ] }, "e_check_in_settings_pk_columns_input": { "value": [ - 75 + 74 ], "__typename": [ - 75 + 74 ] }, "e_check_in_settings_select_column": {}, "e_check_in_settings_set_input": { "description": [ - 75 + 74 ], "value": [ - 75 + 74 ], "__typename": [ - 75 + 74 ] }, "e_check_in_settings_stream_cursor_input": { "initial_value": [ - 410 + 409 ], "ordering": [ - 229 + 228 ], "__typename": [ - 75 + 74 ] }, "e_check_in_settings_stream_cursor_value_input": { "description": [ - 75 + 74 ], "value": [ - 75 + 74 ], "__typename": [ - 75 + 74 ] }, "e_check_in_settings_update_column": {}, "e_check_in_settings_updates": { "_set": [ - 408 + 407 ], "where": [ - 396 + 395 ], "__typename": [ - 75 + 74 ] }, "e_draft_game_captain_selection": { "description": [ - 75 + 74 ], "value": [ - 75 + 74 ], "__typename": [ - 75 + 74 ] }, "e_draft_game_captain_selection_aggregate": { "aggregate": [ - 415 + 414 ], "nodes": [ - 413 + 412 ], "__typename": [ - 75 + 74 ] }, "e_draft_game_captain_selection_aggregate_fields": { @@ -8312,7 +8298,7 @@ export default { 38, { "columns": [ - 428, + 427, "[e_draft_game_captain_selection_select_column!]" ], "distinct": [ @@ -8321,88 +8307,88 @@ export default { } ], "max": [ - 421 + 420 ], "min": [ - 422 + 421 ], "__typename": [ - 75 + 74 ] }, "e_draft_game_captain_selection_bool_exp": { "_and": [ - 416 + 415 ], "_not": [ - 416 + 415 ], "_or": [ - 416 + 415 ], "description": [ - 77 + 76 ], "value": [ - 77 + 76 ], "__typename": [ - 75 + 74 ] }, "e_draft_game_captain_selection_constraint": {}, "e_draft_game_captain_selection_enum": {}, "e_draft_game_captain_selection_enum_comparison_exp": { "_eq": [ - 418 + 417 ], "_in": [ - 418 + 417 ], "_is_null": [ 3 ], "_neq": [ - 418 + 417 ], "_nin": [ - 418 + 417 ], "__typename": [ - 75 + 74 ] }, "e_draft_game_captain_selection_insert_input": { "description": [ - 75 + 74 ], "value": [ - 75 + 74 ], "__typename": [ - 75 + 74 ] }, "e_draft_game_captain_selection_max_fields": { "description": [ - 75 + 74 ], "value": [ - 75 + 74 ], "__typename": [ - 75 + 74 ] }, "e_draft_game_captain_selection_min_fields": { "description": [ - 75 + 74 ], "value": [ - 75 + 74 ], "__typename": [ - 75 + 74 ] }, "e_draft_game_captain_selection_mutation_response": { @@ -8410,122 +8396,122 @@ export default { 38 ], "returning": [ - 413 + 412 ], "__typename": [ - 75 + 74 ] }, "e_draft_game_captain_selection_obj_rel_insert_input": { "data": [ - 420 + 419 ], "on_conflict": [ - 425 + 424 ], "__typename": [ - 75 + 74 ] }, "e_draft_game_captain_selection_on_conflict": { "constraint": [ - 417 + 416 ], "update_columns": [ - 432 + 431 ], "where": [ - 416 + 415 ], "__typename": [ - 75 + 74 ] }, "e_draft_game_captain_selection_order_by": { "description": [ - 2016 + 2015 ], "value": [ - 2016 + 2015 ], "__typename": [ - 75 + 74 ] }, "e_draft_game_captain_selection_pk_columns_input": { "value": [ - 75 + 74 ], "__typename": [ - 75 + 74 ] }, "e_draft_game_captain_selection_select_column": {}, "e_draft_game_captain_selection_set_input": { "description": [ - 75 + 74 ], "value": [ - 75 + 74 ], "__typename": [ - 75 + 74 ] }, "e_draft_game_captain_selection_stream_cursor_input": { "initial_value": [ - 431 + 430 ], "ordering": [ - 229 + 228 ], "__typename": [ - 75 + 74 ] }, "e_draft_game_captain_selection_stream_cursor_value_input": { "description": [ - 75 + 74 ], "value": [ - 75 + 74 ], "__typename": [ - 75 + 74 ] }, "e_draft_game_captain_selection_update_column": {}, "e_draft_game_captain_selection_updates": { "_set": [ - 429 + 428 ], "where": [ - 416 + 415 ], "__typename": [ - 75 + 74 ] }, "e_draft_game_draft_order": { "description": [ - 75 + 74 ], "value": [ - 75 + 74 ], "__typename": [ - 75 + 74 ] }, "e_draft_game_draft_order_aggregate": { "aggregate": [ - 436 + 435 ], "nodes": [ - 434 + 433 ], "__typename": [ - 75 + 74 ] }, "e_draft_game_draft_order_aggregate_fields": { @@ -8533,7 +8519,7 @@ export default { 38, { "columns": [ - 449, + 448, "[e_draft_game_draft_order_select_column!]" ], "distinct": [ @@ -8542,88 +8528,88 @@ export default { } ], "max": [ - 442 + 441 ], "min": [ - 443 + 442 ], "__typename": [ - 75 + 74 ] }, "e_draft_game_draft_order_bool_exp": { "_and": [ - 437 + 436 ], "_not": [ - 437 + 436 ], "_or": [ - 437 + 436 ], "description": [ - 77 + 76 ], "value": [ - 77 + 76 ], "__typename": [ - 75 + 74 ] }, "e_draft_game_draft_order_constraint": {}, "e_draft_game_draft_order_enum": {}, "e_draft_game_draft_order_enum_comparison_exp": { "_eq": [ - 439 + 438 ], "_in": [ - 439 + 438 ], "_is_null": [ 3 ], "_neq": [ - 439 + 438 ], "_nin": [ - 439 + 438 ], "__typename": [ - 75 + 74 ] }, "e_draft_game_draft_order_insert_input": { "description": [ - 75 + 74 ], "value": [ - 75 + 74 ], "__typename": [ - 75 + 74 ] }, "e_draft_game_draft_order_max_fields": { "description": [ - 75 + 74 ], "value": [ - 75 + 74 ], "__typename": [ - 75 + 74 ] }, "e_draft_game_draft_order_min_fields": { "description": [ - 75 + 74 ], "value": [ - 75 + 74 ], "__typename": [ - 75 + 74 ] }, "e_draft_game_draft_order_mutation_response": { @@ -8631,122 +8617,122 @@ export default { 38 ], "returning": [ - 434 + 433 ], "__typename": [ - 75 + 74 ] }, "e_draft_game_draft_order_obj_rel_insert_input": { "data": [ - 441 + 440 ], "on_conflict": [ - 446 + 445 ], "__typename": [ - 75 + 74 ] }, "e_draft_game_draft_order_on_conflict": { "constraint": [ - 438 + 437 ], "update_columns": [ - 453 + 452 ], "where": [ - 437 + 436 ], "__typename": [ - 75 + 74 ] }, "e_draft_game_draft_order_order_by": { "description": [ - 2016 + 2015 ], "value": [ - 2016 + 2015 ], "__typename": [ - 75 + 74 ] }, "e_draft_game_draft_order_pk_columns_input": { "value": [ - 75 + 74 ], "__typename": [ - 75 + 74 ] }, "e_draft_game_draft_order_select_column": {}, "e_draft_game_draft_order_set_input": { "description": [ - 75 + 74 ], "value": [ - 75 + 74 ], "__typename": [ - 75 + 74 ] }, "e_draft_game_draft_order_stream_cursor_input": { "initial_value": [ - 452 + 451 ], "ordering": [ - 229 + 228 ], "__typename": [ - 75 + 74 ] }, "e_draft_game_draft_order_stream_cursor_value_input": { "description": [ - 75 + 74 ], "value": [ - 75 + 74 ], "__typename": [ - 75 + 74 ] }, "e_draft_game_draft_order_update_column": {}, "e_draft_game_draft_order_updates": { "_set": [ - 450 + 449 ], "where": [ - 437 + 436 ], "__typename": [ - 75 + 74 ] }, "e_draft_game_mode": { "description": [ - 75 + 74 ], "value": [ - 75 + 74 ], "__typename": [ - 75 + 74 ] }, "e_draft_game_mode_aggregate": { "aggregate": [ - 457 + 456 ], "nodes": [ - 455 + 454 ], "__typename": [ - 75 + 74 ] }, "e_draft_game_mode_aggregate_fields": { @@ -8754,7 +8740,7 @@ export default { 38, { "columns": [ - 470, + 469, "[e_draft_game_mode_select_column!]" ], "distinct": [ @@ -8763,88 +8749,88 @@ export default { } ], "max": [ - 463 + 462 ], "min": [ - 464 + 463 ], "__typename": [ - 75 + 74 ] }, "e_draft_game_mode_bool_exp": { "_and": [ - 458 + 457 ], "_not": [ - 458 + 457 ], "_or": [ - 458 + 457 ], "description": [ - 77 + 76 ], "value": [ - 77 + 76 ], "__typename": [ - 75 + 74 ] }, "e_draft_game_mode_constraint": {}, "e_draft_game_mode_enum": {}, "e_draft_game_mode_enum_comparison_exp": { "_eq": [ - 460 + 459 ], "_in": [ - 460 + 459 ], "_is_null": [ 3 ], "_neq": [ - 460 + 459 ], "_nin": [ - 460 + 459 ], "__typename": [ - 75 + 74 ] }, "e_draft_game_mode_insert_input": { "description": [ - 75 + 74 ], "value": [ - 75 + 74 ], "__typename": [ - 75 + 74 ] }, "e_draft_game_mode_max_fields": { "description": [ - 75 + 74 ], "value": [ - 75 + 74 ], "__typename": [ - 75 + 74 ] }, "e_draft_game_mode_min_fields": { "description": [ - 75 + 74 ], "value": [ - 75 + 74 ], "__typename": [ - 75 + 74 ] }, "e_draft_game_mode_mutation_response": { @@ -8852,122 +8838,122 @@ export default { 38 ], "returning": [ - 455 + 454 ], "__typename": [ - 75 + 74 ] }, "e_draft_game_mode_obj_rel_insert_input": { "data": [ - 462 + 461 ], "on_conflict": [ - 467 + 466 ], "__typename": [ - 75 + 74 ] }, "e_draft_game_mode_on_conflict": { "constraint": [ - 459 + 458 ], "update_columns": [ - 474 + 473 ], "where": [ - 458 + 457 ], "__typename": [ - 75 + 74 ] }, "e_draft_game_mode_order_by": { "description": [ - 2016 + 2015 ], "value": [ - 2016 + 2015 ], "__typename": [ - 75 + 74 ] }, "e_draft_game_mode_pk_columns_input": { "value": [ - 75 + 74 ], "__typename": [ - 75 + 74 ] }, "e_draft_game_mode_select_column": {}, "e_draft_game_mode_set_input": { "description": [ - 75 + 74 ], "value": [ - 75 + 74 ], "__typename": [ - 75 + 74 ] }, "e_draft_game_mode_stream_cursor_input": { "initial_value": [ - 473 + 472 ], "ordering": [ - 229 + 228 ], "__typename": [ - 75 + 74 ] }, "e_draft_game_mode_stream_cursor_value_input": { "description": [ - 75 + 74 ], "value": [ - 75 + 74 ], "__typename": [ - 75 + 74 ] }, "e_draft_game_mode_update_column": {}, "e_draft_game_mode_updates": { "_set": [ - 471 + 470 ], "where": [ - 458 + 457 ], "__typename": [ - 75 + 74 ] }, "e_draft_game_player_status": { "description": [ - 75 + 74 ], "value": [ - 75 + 74 ], "__typename": [ - 75 + 74 ] }, "e_draft_game_player_status_aggregate": { "aggregate": [ - 478 + 477 ], "nodes": [ - 476 + 475 ], "__typename": [ - 75 + 74 ] }, "e_draft_game_player_status_aggregate_fields": { @@ -8975,7 +8961,7 @@ export default { 38, { "columns": [ - 491, + 490, "[e_draft_game_player_status_select_column!]" ], "distinct": [ @@ -8984,88 +8970,88 @@ export default { } ], "max": [ - 484 + 483 ], "min": [ - 485 + 484 ], "__typename": [ - 75 + 74 ] }, "e_draft_game_player_status_bool_exp": { "_and": [ - 479 + 478 ], "_not": [ - 479 + 478 ], "_or": [ - 479 + 478 ], "description": [ - 77 + 76 ], "value": [ - 77 + 76 ], "__typename": [ - 75 + 74 ] }, "e_draft_game_player_status_constraint": {}, "e_draft_game_player_status_enum": {}, "e_draft_game_player_status_enum_comparison_exp": { "_eq": [ - 481 + 480 ], "_in": [ - 481 + 480 ], "_is_null": [ 3 ], "_neq": [ - 481 + 480 ], "_nin": [ - 481 + 480 ], "__typename": [ - 75 + 74 ] }, "e_draft_game_player_status_insert_input": { "description": [ - 75 + 74 ], "value": [ - 75 + 74 ], "__typename": [ - 75 + 74 ] }, "e_draft_game_player_status_max_fields": { "description": [ - 75 + 74 ], "value": [ - 75 + 74 ], "__typename": [ - 75 + 74 ] }, "e_draft_game_player_status_min_fields": { "description": [ - 75 + 74 ], "value": [ - 75 + 74 ], "__typename": [ - 75 + 74 ] }, "e_draft_game_player_status_mutation_response": { @@ -9073,122 +9059,122 @@ export default { 38 ], "returning": [ - 476 + 475 ], "__typename": [ - 75 + 74 ] }, "e_draft_game_player_status_obj_rel_insert_input": { "data": [ - 483 + 482 ], "on_conflict": [ - 488 + 487 ], "__typename": [ - 75 + 74 ] }, "e_draft_game_player_status_on_conflict": { "constraint": [ - 480 + 479 ], "update_columns": [ - 495 + 494 ], "where": [ - 479 + 478 ], "__typename": [ - 75 + 74 ] }, "e_draft_game_player_status_order_by": { "description": [ - 2016 + 2015 ], "value": [ - 2016 + 2015 ], "__typename": [ - 75 + 74 ] }, "e_draft_game_player_status_pk_columns_input": { "value": [ - 75 + 74 ], "__typename": [ - 75 + 74 ] }, "e_draft_game_player_status_select_column": {}, "e_draft_game_player_status_set_input": { "description": [ - 75 + 74 ], "value": [ - 75 + 74 ], "__typename": [ - 75 + 74 ] }, "e_draft_game_player_status_stream_cursor_input": { "initial_value": [ - 494 + 493 ], "ordering": [ - 229 + 228 ], "__typename": [ - 75 + 74 ] }, "e_draft_game_player_status_stream_cursor_value_input": { "description": [ - 75 + 74 ], "value": [ - 75 + 74 ], "__typename": [ - 75 + 74 ] }, "e_draft_game_player_status_update_column": {}, "e_draft_game_player_status_updates": { "_set": [ - 492 + 491 ], "where": [ - 479 + 478 ], "__typename": [ - 75 + 74 ] }, "e_draft_game_status": { "description": [ - 75 + 74 ], "value": [ - 75 + 74 ], "__typename": [ - 75 + 74 ] }, "e_draft_game_status_aggregate": { "aggregate": [ - 499 + 498 ], "nodes": [ - 497 + 496 ], "__typename": [ - 75 + 74 ] }, "e_draft_game_status_aggregate_fields": { @@ -9196,7 +9182,7 @@ export default { 38, { "columns": [ - 512, + 511, "[e_draft_game_status_select_column!]" ], "distinct": [ @@ -9205,88 +9191,88 @@ export default { } ], "max": [ - 505 + 504 ], "min": [ - 506 + 505 ], "__typename": [ - 75 + 74 ] }, "e_draft_game_status_bool_exp": { "_and": [ - 500 + 499 ], "_not": [ - 500 + 499 ], "_or": [ - 500 + 499 ], "description": [ - 77 + 76 ], "value": [ - 77 + 76 ], "__typename": [ - 75 + 74 ] }, "e_draft_game_status_constraint": {}, "e_draft_game_status_enum": {}, "e_draft_game_status_enum_comparison_exp": { "_eq": [ - 502 + 501 ], "_in": [ - 502 + 501 ], "_is_null": [ 3 ], "_neq": [ - 502 + 501 ], "_nin": [ - 502 + 501 ], "__typename": [ - 75 + 74 ] }, "e_draft_game_status_insert_input": { "description": [ - 75 + 74 ], "value": [ - 75 + 74 ], "__typename": [ - 75 + 74 ] }, "e_draft_game_status_max_fields": { "description": [ - 75 + 74 ], "value": [ - 75 + 74 ], "__typename": [ - 75 + 74 ] }, "e_draft_game_status_min_fields": { "description": [ - 75 + 74 ], "value": [ - 75 + 74 ], "__typename": [ - 75 + 74 ] }, "e_draft_game_status_mutation_response": { @@ -9294,122 +9280,122 @@ export default { 38 ], "returning": [ - 497 + 496 ], "__typename": [ - 75 + 74 ] }, "e_draft_game_status_obj_rel_insert_input": { "data": [ - 504 + 503 ], "on_conflict": [ - 509 + 508 ], "__typename": [ - 75 + 74 ] }, "e_draft_game_status_on_conflict": { "constraint": [ - 501 + 500 ], "update_columns": [ - 516 + 515 ], "where": [ - 500 + 499 ], "__typename": [ - 75 + 74 ] }, "e_draft_game_status_order_by": { "description": [ - 2016 + 2015 ], "value": [ - 2016 + 2015 ], "__typename": [ - 75 + 74 ] }, "e_draft_game_status_pk_columns_input": { "value": [ - 75 + 74 ], "__typename": [ - 75 + 74 ] }, "e_draft_game_status_select_column": {}, "e_draft_game_status_set_input": { "description": [ - 75 + 74 ], "value": [ - 75 + 74 ], "__typename": [ - 75 + 74 ] }, "e_draft_game_status_stream_cursor_input": { "initial_value": [ - 515 + 514 ], "ordering": [ - 229 + 228 ], "__typename": [ - 75 + 74 ] }, "e_draft_game_status_stream_cursor_value_input": { "description": [ - 75 + 74 ], "value": [ - 75 + 74 ], "__typename": [ - 75 + 74 ] }, "e_draft_game_status_update_column": {}, "e_draft_game_status_updates": { "_set": [ - 513 + 512 ], "where": [ - 500 + 499 ], "__typename": [ - 75 + 74 ] }, "e_friend_status": { "description": [ - 75 + 74 ], "value": [ - 75 + 74 ], "__typename": [ - 75 + 74 ] }, "e_friend_status_aggregate": { "aggregate": [ - 520 + 519 ], "nodes": [ - 518 + 517 ], "__typename": [ - 75 + 74 ] }, "e_friend_status_aggregate_fields": { @@ -9417,7 +9403,7 @@ export default { 38, { "columns": [ - 533, + 532, "[e_friend_status_select_column!]" ], "distinct": [ @@ -9426,88 +9412,88 @@ export default { } ], "max": [ - 526 + 525 ], "min": [ - 527 + 526 ], "__typename": [ - 75 + 74 ] }, "e_friend_status_bool_exp": { "_and": [ - 521 + 520 ], "_not": [ - 521 + 520 ], "_or": [ - 521 + 520 ], "description": [ - 77 + 76 ], "value": [ - 77 + 76 ], "__typename": [ - 75 + 74 ] }, "e_friend_status_constraint": {}, "e_friend_status_enum": {}, "e_friend_status_enum_comparison_exp": { "_eq": [ - 523 + 522 ], "_in": [ - 523 + 522 ], "_is_null": [ 3 ], "_neq": [ - 523 + 522 ], "_nin": [ - 523 + 522 ], "__typename": [ - 75 + 74 ] }, "e_friend_status_insert_input": { "description": [ - 75 + 74 ], "value": [ - 75 + 74 ], "__typename": [ - 75 + 74 ] }, "e_friend_status_max_fields": { "description": [ - 75 + 74 ], "value": [ - 75 + 74 ], "__typename": [ - 75 + 74 ] }, "e_friend_status_min_fields": { "description": [ - 75 + 74 ], "value": [ - 75 + 74 ], "__typename": [ - 75 + 74 ] }, "e_friend_status_mutation_response": { @@ -9515,122 +9501,122 @@ export default { 38 ], "returning": [ - 518 + 517 ], "__typename": [ - 75 + 74 ] }, "e_friend_status_obj_rel_insert_input": { "data": [ - 525 + 524 ], "on_conflict": [ - 530 + 529 ], "__typename": [ - 75 + 74 ] }, "e_friend_status_on_conflict": { "constraint": [ - 522 + 521 ], "update_columns": [ - 537 + 536 ], "where": [ - 521 + 520 ], "__typename": [ - 75 + 74 ] }, "e_friend_status_order_by": { "description": [ - 2016 + 2015 ], "value": [ - 2016 + 2015 ], "__typename": [ - 75 + 74 ] }, "e_friend_status_pk_columns_input": { "value": [ - 75 + 74 ], "__typename": [ - 75 + 74 ] }, "e_friend_status_select_column": {}, "e_friend_status_set_input": { "description": [ - 75 + 74 ], "value": [ - 75 + 74 ], "__typename": [ - 75 + 74 ] }, "e_friend_status_stream_cursor_input": { "initial_value": [ - 536 + 535 ], "ordering": [ - 229 + 228 ], "__typename": [ - 75 + 74 ] }, "e_friend_status_stream_cursor_value_input": { "description": [ - 75 + 74 ], "value": [ - 75 + 74 ], "__typename": [ - 75 + 74 ] }, "e_friend_status_update_column": {}, "e_friend_status_updates": { "_set": [ - 534 + 533 ], "where": [ - 521 + 520 ], "__typename": [ - 75 + 74 ] }, "e_game_cfg_types": { "description": [ - 75 + 74 ], "value": [ - 75 + 74 ], "__typename": [ - 75 + 74 ] }, "e_game_cfg_types_aggregate": { "aggregate": [ - 541 + 540 ], "nodes": [ - 539 + 538 ], "__typename": [ - 75 + 74 ] }, "e_game_cfg_types_aggregate_fields": { @@ -9638,7 +9624,7 @@ export default { 38, { "columns": [ - 553, + 552, "[e_game_cfg_types_select_column!]" ], "distinct": [ @@ -9647,88 +9633,88 @@ export default { } ], "max": [ - 547 + 546 ], "min": [ - 548 + 547 ], "__typename": [ - 75 + 74 ] }, "e_game_cfg_types_bool_exp": { "_and": [ - 542 + 541 ], "_not": [ - 542 + 541 ], "_or": [ - 542 + 541 ], "description": [ - 77 + 76 ], "value": [ - 77 + 76 ], "__typename": [ - 75 + 74 ] }, "e_game_cfg_types_constraint": {}, "e_game_cfg_types_enum": {}, "e_game_cfg_types_enum_comparison_exp": { "_eq": [ - 544 + 543 ], "_in": [ - 544 + 543 ], "_is_null": [ 3 ], "_neq": [ - 544 + 543 ], "_nin": [ - 544 + 543 ], "__typename": [ - 75 + 74 ] }, "e_game_cfg_types_insert_input": { "description": [ - 75 + 74 ], "value": [ - 75 + 74 ], "__typename": [ - 75 + 74 ] }, "e_game_cfg_types_max_fields": { "description": [ - 75 + 74 ], "value": [ - 75 + 74 ], "__typename": [ - 75 + 74 ] }, "e_game_cfg_types_min_fields": { "description": [ - 75 + 74 ], "value": [ - 75 + 74 ], "__typename": [ - 75 + 74 ] }, "e_game_cfg_types_mutation_response": { @@ -9736,111 +9722,111 @@ export default { 38 ], "returning": [ - 539 + 538 ], "__typename": [ - 75 + 74 ] }, "e_game_cfg_types_on_conflict": { "constraint": [ - 543 + 542 ], "update_columns": [ - 557 + 556 ], "where": [ - 542 + 541 ], "__typename": [ - 75 + 74 ] }, "e_game_cfg_types_order_by": { "description": [ - 2016 + 2015 ], "value": [ - 2016 + 2015 ], "__typename": [ - 75 + 74 ] }, "e_game_cfg_types_pk_columns_input": { "value": [ - 75 + 74 ], "__typename": [ - 75 + 74 ] }, "e_game_cfg_types_select_column": {}, "e_game_cfg_types_set_input": { "description": [ - 75 + 74 ], "value": [ - 75 + 74 ], "__typename": [ - 75 + 74 ] }, "e_game_cfg_types_stream_cursor_input": { "initial_value": [ - 556 + 555 ], "ordering": [ - 229 + 228 ], "__typename": [ - 75 + 74 ] }, "e_game_cfg_types_stream_cursor_value_input": { "description": [ - 75 + 74 ], "value": [ - 75 + 74 ], "__typename": [ - 75 + 74 ] }, "e_game_cfg_types_update_column": {}, "e_game_cfg_types_updates": { "_set": [ - 554 + 553 ], "where": [ - 542 + 541 ], "__typename": [ - 75 + 74 ] }, "e_game_server_node_statuses": { "description": [ - 75 + 74 ], "value": [ - 75 + 74 ], "__typename": [ - 75 + 74 ] }, "e_game_server_node_statuses_aggregate": { "aggregate": [ - 561 + 560 ], "nodes": [ - 559 + 558 ], "__typename": [ - 75 + 74 ] }, "e_game_server_node_statuses_aggregate_fields": { @@ -9848,7 +9834,7 @@ export default { 38, { "columns": [ - 574, + 573, "[e_game_server_node_statuses_select_column!]" ], "distinct": [ @@ -9857,88 +9843,88 @@ export default { } ], "max": [ - 567 + 566 ], "min": [ - 568 + 567 ], "__typename": [ - 75 + 74 ] }, "e_game_server_node_statuses_bool_exp": { "_and": [ - 562 + 561 ], "_not": [ - 562 + 561 ], "_or": [ - 562 + 561 ], "description": [ - 77 + 76 ], "value": [ - 77 + 76 ], "__typename": [ - 75 + 74 ] }, "e_game_server_node_statuses_constraint": {}, "e_game_server_node_statuses_enum": {}, "e_game_server_node_statuses_enum_comparison_exp": { "_eq": [ - 564 + 563 ], "_in": [ - 564 + 563 ], "_is_null": [ 3 ], "_neq": [ - 564 + 563 ], "_nin": [ - 564 + 563 ], "__typename": [ - 75 + 74 ] }, "e_game_server_node_statuses_insert_input": { "description": [ - 75 + 74 ], "value": [ - 75 + 74 ], "__typename": [ - 75 + 74 ] }, "e_game_server_node_statuses_max_fields": { "description": [ - 75 + 74 ], "value": [ - 75 + 74 ], "__typename": [ - 75 + 74 ] }, "e_game_server_node_statuses_min_fields": { "description": [ - 75 + 74 ], "value": [ - 75 + 74 ], "__typename": [ - 75 + 74 ] }, "e_game_server_node_statuses_mutation_response": { @@ -9946,122 +9932,122 @@ export default { 38 ], "returning": [ - 559 + 558 ], "__typename": [ - 75 + 74 ] }, "e_game_server_node_statuses_obj_rel_insert_input": { "data": [ - 566 + 565 ], "on_conflict": [ - 571 + 570 ], "__typename": [ - 75 + 74 ] }, "e_game_server_node_statuses_on_conflict": { "constraint": [ - 563 + 562 ], "update_columns": [ - 578 + 577 ], "where": [ - 562 + 561 ], "__typename": [ - 75 + 74 ] }, "e_game_server_node_statuses_order_by": { "description": [ - 2016 + 2015 ], "value": [ - 2016 + 2015 ], "__typename": [ - 75 + 74 ] }, "e_game_server_node_statuses_pk_columns_input": { "value": [ - 75 + 74 ], "__typename": [ - 75 + 74 ] }, "e_game_server_node_statuses_select_column": {}, "e_game_server_node_statuses_set_input": { "description": [ - 75 + 74 ], "value": [ - 75 + 74 ], "__typename": [ - 75 + 74 ] }, "e_game_server_node_statuses_stream_cursor_input": { "initial_value": [ - 577 + 576 ], "ordering": [ - 229 + 228 ], "__typename": [ - 75 + 74 ] }, "e_game_server_node_statuses_stream_cursor_value_input": { "description": [ - 75 + 74 ], "value": [ - 75 + 74 ], "__typename": [ - 75 + 74 ] }, "e_game_server_node_statuses_update_column": {}, "e_game_server_node_statuses_updates": { "_set": [ - 575 + 574 ], "where": [ - 562 + 561 ], "__typename": [ - 75 + 74 ] }, "e_lobby_access": { "description": [ - 75 + 74 ], "value": [ - 75 + 74 ], "__typename": [ - 75 + 74 ] }, "e_lobby_access_aggregate": { "aggregate": [ - 582 + 581 ], "nodes": [ - 580 + 579 ], "__typename": [ - 75 + 74 ] }, "e_lobby_access_aggregate_fields": { @@ -10069,7 +10055,7 @@ export default { 38, { "columns": [ - 595, + 594, "[e_lobby_access_select_column!]" ], "distinct": [ @@ -10078,88 +10064,88 @@ export default { } ], "max": [ - 588 + 587 ], "min": [ - 589 + 588 ], "__typename": [ - 75 + 74 ] }, "e_lobby_access_bool_exp": { "_and": [ - 583 + 582 ], "_not": [ - 583 + 582 ], "_or": [ - 583 + 582 ], "description": [ - 77 + 76 ], "value": [ - 77 + 76 ], "__typename": [ - 75 + 74 ] }, "e_lobby_access_constraint": {}, "e_lobby_access_enum": {}, "e_lobby_access_enum_comparison_exp": { "_eq": [ - 585 + 584 ], "_in": [ - 585 + 584 ], "_is_null": [ 3 ], "_neq": [ - 585 + 584 ], "_nin": [ - 585 + 584 ], "__typename": [ - 75 + 74 ] }, "e_lobby_access_insert_input": { "description": [ - 75 + 74 ], "value": [ - 75 + 74 ], "__typename": [ - 75 + 74 ] }, "e_lobby_access_max_fields": { "description": [ - 75 + 74 ], "value": [ - 75 + 74 ], "__typename": [ - 75 + 74 ] }, "e_lobby_access_min_fields": { "description": [ - 75 + 74 ], "value": [ - 75 + 74 ], "__typename": [ - 75 + 74 ] }, "e_lobby_access_mutation_response": { @@ -10167,122 +10153,122 @@ export default { 38 ], "returning": [ - 580 + 579 ], "__typename": [ - 75 + 74 ] }, "e_lobby_access_obj_rel_insert_input": { "data": [ - 587 + 586 ], "on_conflict": [ - 592 + 591 ], "__typename": [ - 75 + 74 ] }, "e_lobby_access_on_conflict": { "constraint": [ - 584 + 583 ], "update_columns": [ - 599 + 598 ], "where": [ - 583 + 582 ], "__typename": [ - 75 + 74 ] }, "e_lobby_access_order_by": { "description": [ - 2016 + 2015 ], "value": [ - 2016 + 2015 ], "__typename": [ - 75 + 74 ] }, "e_lobby_access_pk_columns_input": { "value": [ - 75 + 74 ], "__typename": [ - 75 + 74 ] }, "e_lobby_access_select_column": {}, "e_lobby_access_set_input": { "description": [ - 75 + 74 ], "value": [ - 75 + 74 ], "__typename": [ - 75 + 74 ] }, "e_lobby_access_stream_cursor_input": { "initial_value": [ - 598 + 597 ], "ordering": [ - 229 + 228 ], "__typename": [ - 75 + 74 ] }, "e_lobby_access_stream_cursor_value_input": { "description": [ - 75 + 74 ], "value": [ - 75 + 74 ], "__typename": [ - 75 + 74 ] }, "e_lobby_access_update_column": {}, "e_lobby_access_updates": { "_set": [ - 596 + 595 ], "where": [ - 583 + 582 ], "__typename": [ - 75 + 74 ] }, "e_lobby_player_status": { "description": [ - 75 + 74 ], "value": [ - 75 + 74 ], "__typename": [ - 75 + 74 ] }, "e_lobby_player_status_aggregate": { "aggregate": [ - 603 + 602 ], "nodes": [ - 601 + 600 ], "__typename": [ - 75 + 74 ] }, "e_lobby_player_status_aggregate_fields": { @@ -10290,7 +10276,7 @@ export default { 38, { "columns": [ - 615, + 614, "[e_lobby_player_status_select_column!]" ], "distinct": [ @@ -10299,88 +10285,88 @@ export default { } ], "max": [ - 609 + 608 ], "min": [ - 610 + 609 ], "__typename": [ - 75 + 74 ] }, "e_lobby_player_status_bool_exp": { "_and": [ - 604 + 603 ], "_not": [ - 604 + 603 ], "_or": [ - 604 + 603 ], "description": [ - 77 + 76 ], "value": [ - 77 + 76 ], "__typename": [ - 75 + 74 ] }, "e_lobby_player_status_constraint": {}, "e_lobby_player_status_enum": {}, "e_lobby_player_status_enum_comparison_exp": { "_eq": [ - 606 + 605 ], "_in": [ - 606 + 605 ], "_is_null": [ 3 ], "_neq": [ - 606 + 605 ], "_nin": [ - 606 + 605 ], "__typename": [ - 75 + 74 ] }, "e_lobby_player_status_insert_input": { "description": [ - 75 + 74 ], "value": [ - 75 + 74 ], "__typename": [ - 75 + 74 ] }, "e_lobby_player_status_max_fields": { "description": [ - 75 + 74 ], "value": [ - 75 + 74 ], "__typename": [ - 75 + 74 ] }, "e_lobby_player_status_min_fields": { "description": [ - 75 + 74 ], "value": [ - 75 + 74 ], "__typename": [ - 75 + 74 ] }, "e_lobby_player_status_mutation_response": { @@ -10388,111 +10374,111 @@ export default { 38 ], "returning": [ - 601 + 600 ], "__typename": [ - 75 + 74 ] }, "e_lobby_player_status_on_conflict": { "constraint": [ - 605 + 604 ], "update_columns": [ - 619 + 618 ], "where": [ - 604 + 603 ], "__typename": [ - 75 + 74 ] }, "e_lobby_player_status_order_by": { "description": [ - 2016 + 2015 ], "value": [ - 2016 + 2015 ], "__typename": [ - 75 + 74 ] }, "e_lobby_player_status_pk_columns_input": { "value": [ - 75 + 74 ], "__typename": [ - 75 + 74 ] }, "e_lobby_player_status_select_column": {}, "e_lobby_player_status_set_input": { "description": [ - 75 + 74 ], "value": [ - 75 + 74 ], "__typename": [ - 75 + 74 ] }, "e_lobby_player_status_stream_cursor_input": { "initial_value": [ - 618 + 617 ], "ordering": [ - 229 + 228 ], "__typename": [ - 75 + 74 ] }, "e_lobby_player_status_stream_cursor_value_input": { "description": [ - 75 + 74 ], "value": [ - 75 + 74 ], "__typename": [ - 75 + 74 ] }, "e_lobby_player_status_update_column": {}, "e_lobby_player_status_updates": { "_set": [ - 616 + 615 ], "where": [ - 604 + 603 ], "__typename": [ - 75 + 74 ] }, "e_map_pool_types": { "description": [ - 75 + 74 ], "value": [ - 75 + 74 ], "__typename": [ - 75 + 74 ] }, "e_map_pool_types_aggregate": { "aggregate": [ - 623 + 622 ], "nodes": [ - 621 + 620 ], "__typename": [ - 75 + 74 ] }, "e_map_pool_types_aggregate_fields": { @@ -10500,7 +10486,7 @@ export default { 38, { "columns": [ - 636, + 635, "[e_map_pool_types_select_column!]" ], "distinct": [ @@ -10509,88 +10495,88 @@ export default { } ], "max": [ - 629 + 628 ], "min": [ - 630 + 629 ], "__typename": [ - 75 + 74 ] }, "e_map_pool_types_bool_exp": { "_and": [ - 624 + 623 ], "_not": [ - 624 + 623 ], "_or": [ - 624 + 623 ], "description": [ - 77 + 76 ], "value": [ - 77 + 76 ], "__typename": [ - 75 + 74 ] }, "e_map_pool_types_constraint": {}, "e_map_pool_types_enum": {}, "e_map_pool_types_enum_comparison_exp": { "_eq": [ - 626 + 625 ], "_in": [ - 626 + 625 ], "_is_null": [ 3 ], "_neq": [ - 626 + 625 ], "_nin": [ - 626 + 625 ], "__typename": [ - 75 + 74 ] }, "e_map_pool_types_insert_input": { "description": [ - 75 + 74 ], "value": [ - 75 + 74 ], "__typename": [ - 75 + 74 ] }, "e_map_pool_types_max_fields": { "description": [ - 75 + 74 ], "value": [ - 75 + 74 ], "__typename": [ - 75 + 74 ] }, "e_map_pool_types_min_fields": { "description": [ - 75 + 74 ], "value": [ - 75 + 74 ], "__typename": [ - 75 + 74 ] }, "e_map_pool_types_mutation_response": { @@ -10598,111 +10584,111 @@ export default { 38 ], "returning": [ - 621 + 620 ], "__typename": [ - 75 + 74 ] }, "e_map_pool_types_obj_rel_insert_input": { "data": [ - 628 + 627 ], "on_conflict": [ - 633 + 632 ], "__typename": [ - 75 + 74 ] }, "e_map_pool_types_on_conflict": { "constraint": [ - 625 + 624 ], "update_columns": [ - 640 + 639 ], "where": [ - 624 + 623 ], "__typename": [ - 75 + 74 ] }, "e_map_pool_types_order_by": { "description": [ - 2016 + 2015 ], "value": [ - 2016 + 2015 ], "__typename": [ - 75 + 74 ] }, "e_map_pool_types_pk_columns_input": { "value": [ - 75 + 74 ], "__typename": [ - 75 + 74 ] }, "e_map_pool_types_select_column": {}, "e_map_pool_types_set_input": { "description": [ - 75 + 74 ], "value": [ - 75 + 74 ], "__typename": [ - 75 + 74 ] }, "e_map_pool_types_stream_cursor_input": { "initial_value": [ - 639 + 638 ], "ordering": [ - 229 + 228 ], "__typename": [ - 75 + 74 ] }, "e_map_pool_types_stream_cursor_value_input": { "description": [ - 75 + 74 ], "value": [ - 75 + 74 ], "__typename": [ - 75 + 74 ] }, "e_map_pool_types_update_column": {}, "e_map_pool_types_updates": { "_set": [ - 637 + 636 ], "where": [ - 624 + 623 ], "__typename": [ - 75 + 74 ] }, "e_match_clip_visibility": { "description": [ - 75 + 74 ], "match_clips": [ - 1378, + 1377, { "distinct_on": [ - 1400, + 1399, "[match_clips_select_column!]" ], "limit": [ @@ -10712,19 +10698,19 @@ export default { 38 ], "order_by": [ - 1398, + 1397, "[match_clips_order_by!]" ], "where": [ - 1387 + 1386 ] } ], "match_clips_aggregate": [ - 1379, + 1378, { "distinct_on": [ - 1400, + 1399, "[match_clips_select_column!]" ], "limit": [ @@ -10734,30 +10720,30 @@ export default { 38 ], "order_by": [ - 1398, + 1397, "[match_clips_order_by!]" ], "where": [ - 1387 + 1386 ] } ], "value": [ - 75 + 74 ], "__typename": [ - 75 + 74 ] }, "e_match_clip_visibility_aggregate": { "aggregate": [ - 644 + 643 ], "nodes": [ - 642 + 641 ], "__typename": [ - 75 + 74 ] }, "e_match_clip_visibility_aggregate_fields": { @@ -10765,7 +10751,7 @@ export default { 38, { "columns": [ - 656, + 655, "[e_match_clip_visibility_select_column!]" ], "distinct": [ @@ -10774,97 +10760,97 @@ export default { } ], "max": [ - 650 + 649 ], "min": [ - 651 + 650 ], "__typename": [ - 75 + 74 ] }, "e_match_clip_visibility_bool_exp": { "_and": [ - 645 + 644 ], "_not": [ - 645 + 644 ], "_or": [ - 645 + 644 ], "description": [ - 77 + 76 ], "match_clips": [ - 1387 + 1386 ], "match_clips_aggregate": [ - 1380 + 1379 ], "value": [ - 77 + 76 ], "__typename": [ - 75 + 74 ] }, "e_match_clip_visibility_constraint": {}, "e_match_clip_visibility_enum": {}, "e_match_clip_visibility_enum_comparison_exp": { "_eq": [ - 647 + 646 ], "_in": [ - 647 + 646 ], "_is_null": [ 3 ], "_neq": [ - 647 + 646 ], "_nin": [ - 647 + 646 ], "__typename": [ - 75 + 74 ] }, "e_match_clip_visibility_insert_input": { "description": [ - 75 + 74 ], "match_clips": [ - 1384 + 1383 ], "value": [ - 75 + 74 ], "__typename": [ - 75 + 74 ] }, "e_match_clip_visibility_max_fields": { "description": [ - 75 + 74 ], "value": [ - 75 + 74 ], "__typename": [ - 75 + 74 ] }, "e_match_clip_visibility_min_fields": { "description": [ - 75 + 74 ], "value": [ - 75 + 74 ], "__typename": [ - 75 + 74 ] }, "e_match_clip_visibility_mutation_response": { @@ -10872,103 +10858,103 @@ export default { 38 ], "returning": [ - 642 + 641 ], "__typename": [ - 75 + 74 ] }, "e_match_clip_visibility_on_conflict": { "constraint": [ - 646 + 645 ], "update_columns": [ - 660 + 659 ], "where": [ - 645 + 644 ], "__typename": [ - 75 + 74 ] }, "e_match_clip_visibility_order_by": { "description": [ - 2016 + 2015 ], "match_clips_aggregate": [ - 1383 + 1382 ], "value": [ - 2016 + 2015 ], "__typename": [ - 75 + 74 ] }, "e_match_clip_visibility_pk_columns_input": { "value": [ - 75 + 74 ], "__typename": [ - 75 + 74 ] }, "e_match_clip_visibility_select_column": {}, "e_match_clip_visibility_set_input": { "description": [ - 75 + 74 ], "value": [ - 75 + 74 ], "__typename": [ - 75 + 74 ] }, "e_match_clip_visibility_stream_cursor_input": { "initial_value": [ - 659 + 658 ], "ordering": [ - 229 + 228 ], "__typename": [ - 75 + 74 ] }, "e_match_clip_visibility_stream_cursor_value_input": { "description": [ - 75 + 74 ], "value": [ - 75 + 74 ], "__typename": [ - 75 + 74 ] }, "e_match_clip_visibility_update_column": {}, "e_match_clip_visibility_updates": { "_set": [ - 657 + 656 ], "where": [ - 645 + 644 ], "__typename": [ - 75 + 74 ] }, "e_match_map_status": { "description": [ - 75 + 74 ], "match_maps": [ - 1669, + 1668, { "distinct_on": [ - 1691, + 1690, "[match_maps_select_column!]" ], "limit": [ @@ -10978,19 +10964,19 @@ export default { 38 ], "order_by": [ - 1689, + 1688, "[match_maps_order_by!]" ], "where": [ - 1678 + 1677 ] } ], "match_maps_aggregate": [ - 1670, + 1669, { "distinct_on": [ - 1691, + 1690, "[match_maps_select_column!]" ], "limit": [ @@ -11000,30 +10986,30 @@ export default { 38 ], "order_by": [ - 1689, + 1688, "[match_maps_order_by!]" ], "where": [ - 1678 + 1677 ] } ], "value": [ - 75 + 74 ], "__typename": [ - 75 + 74 ] }, "e_match_map_status_aggregate": { "aggregate": [ - 664 + 663 ], "nodes": [ - 662 + 661 ], "__typename": [ - 75 + 74 ] }, "e_match_map_status_aggregate_fields": { @@ -11031,7 +11017,7 @@ export default { 38, { "columns": [ - 677, + 676, "[e_match_map_status_select_column!]" ], "distinct": [ @@ -11040,97 +11026,97 @@ export default { } ], "max": [ - 670 + 669 ], "min": [ - 671 + 670 ], "__typename": [ - 75 + 74 ] }, "e_match_map_status_bool_exp": { "_and": [ - 665 + 664 ], "_not": [ - 665 + 664 ], "_or": [ - 665 + 664 ], "description": [ - 77 + 76 ], "match_maps": [ - 1678 + 1677 ], "match_maps_aggregate": [ - 1671 + 1670 ], "value": [ - 77 + 76 ], "__typename": [ - 75 + 74 ] }, "e_match_map_status_constraint": {}, "e_match_map_status_enum": {}, "e_match_map_status_enum_comparison_exp": { "_eq": [ - 667 + 666 ], "_in": [ - 667 + 666 ], "_is_null": [ 3 ], "_neq": [ - 667 + 666 ], "_nin": [ - 667 + 666 ], "__typename": [ - 75 + 74 ] }, "e_match_map_status_insert_input": { "description": [ - 75 + 74 ], "match_maps": [ - 1675 + 1674 ], "value": [ - 75 + 74 ], "__typename": [ - 75 + 74 ] }, "e_match_map_status_max_fields": { "description": [ - 75 + 74 ], "value": [ - 75 + 74 ], "__typename": [ - 75 + 74 ] }, "e_match_map_status_min_fields": { "description": [ - 75 + 74 ], "value": [ - 75 + 74 ], "__typename": [ - 75 + 74 ] }, "e_match_map_status_mutation_response": { @@ -11138,125 +11124,125 @@ export default { 38 ], "returning": [ - 662 + 661 ], "__typename": [ - 75 + 74 ] }, "e_match_map_status_obj_rel_insert_input": { "data": [ - 669 + 668 ], "on_conflict": [ - 674 + 673 ], "__typename": [ - 75 + 74 ] }, "e_match_map_status_on_conflict": { "constraint": [ - 666 + 665 ], "update_columns": [ - 681 + 680 ], "where": [ - 665 + 664 ], "__typename": [ - 75 + 74 ] }, "e_match_map_status_order_by": { "description": [ - 2016 + 2015 ], "match_maps_aggregate": [ - 1674 + 1673 ], "value": [ - 2016 + 2015 ], "__typename": [ - 75 + 74 ] }, "e_match_map_status_pk_columns_input": { "value": [ - 75 + 74 ], "__typename": [ - 75 + 74 ] }, "e_match_map_status_select_column": {}, "e_match_map_status_set_input": { "description": [ - 75 + 74 ], "value": [ - 75 + 74 ], "__typename": [ - 75 + 74 ] }, "e_match_map_status_stream_cursor_input": { "initial_value": [ - 680 + 679 ], "ordering": [ - 229 + 228 ], "__typename": [ - 75 + 74 ] }, "e_match_map_status_stream_cursor_value_input": { "description": [ - 75 + 74 ], "value": [ - 75 + 74 ], "__typename": [ - 75 + 74 ] }, "e_match_map_status_update_column": {}, "e_match_map_status_updates": { "_set": [ - 678 + 677 ], "where": [ - 665 + 664 ], "__typename": [ - 75 + 74 ] }, "e_match_mode": { "description": [ - 75 + 74 ], "value": [ - 75 + 74 ], "__typename": [ - 75 + 74 ] }, "e_match_mode_aggregate": { "aggregate": [ - 685 + 684 ], "nodes": [ - 683 + 682 ], "__typename": [ - 75 + 74 ] }, "e_match_mode_aggregate_fields": { @@ -11264,7 +11250,7 @@ export default { 38, { "columns": [ - 697, + 696, "[e_match_mode_select_column!]" ], "distinct": [ @@ -11273,88 +11259,88 @@ export default { } ], "max": [ - 691 + 690 ], "min": [ - 692 + 691 ], "__typename": [ - 75 + 74 ] }, "e_match_mode_bool_exp": { "_and": [ - 686 + 685 ], "_not": [ - 686 + 685 ], "_or": [ - 686 + 685 ], "description": [ - 77 + 76 ], "value": [ - 77 + 76 ], "__typename": [ - 75 + 74 ] }, "e_match_mode_constraint": {}, "e_match_mode_enum": {}, "e_match_mode_enum_comparison_exp": { "_eq": [ - 688 + 687 ], "_in": [ - 688 + 687 ], "_is_null": [ 3 ], "_neq": [ - 688 + 687 ], "_nin": [ - 688 + 687 ], "__typename": [ - 75 + 74 ] }, "e_match_mode_insert_input": { "description": [ - 75 + 74 ], "value": [ - 75 + 74 ], "__typename": [ - 75 + 74 ] }, "e_match_mode_max_fields": { "description": [ - 75 + 74 ], "value": [ - 75 + 74 ], "__typename": [ - 75 + 74 ] }, "e_match_mode_min_fields": { "description": [ - 75 + 74 ], "value": [ - 75 + 74 ], "__typename": [ - 75 + 74 ] }, "e_match_mode_mutation_response": { @@ -11362,100 +11348,100 @@ export default { 38 ], "returning": [ - 683 + 682 ], "__typename": [ - 75 + 74 ] }, "e_match_mode_on_conflict": { "constraint": [ - 687 + 686 ], "update_columns": [ - 701 + 700 ], "where": [ - 686 + 685 ], "__typename": [ - 75 + 74 ] }, "e_match_mode_order_by": { "description": [ - 2016 + 2015 ], "value": [ - 2016 + 2015 ], "__typename": [ - 75 + 74 ] }, "e_match_mode_pk_columns_input": { "value": [ - 75 + 74 ], "__typename": [ - 75 + 74 ] }, "e_match_mode_select_column": {}, "e_match_mode_set_input": { "description": [ - 75 + 74 ], "value": [ - 75 + 74 ], "__typename": [ - 75 + 74 ] }, "e_match_mode_stream_cursor_input": { "initial_value": [ - 700 + 699 ], "ordering": [ - 229 + 228 ], "__typename": [ - 75 + 74 ] }, "e_match_mode_stream_cursor_value_input": { "description": [ - 75 + 74 ], "value": [ - 75 + 74 ], "__typename": [ - 75 + 74 ] }, "e_match_mode_update_column": {}, "e_match_mode_updates": { "_set": [ - 698 + 697 ], "where": [ - 686 + 685 ], "__typename": [ - 75 + 74 ] }, "e_match_status": { "description": [ - 75 + 74 ], "matches": [ - 1831, + 1830, { "distinct_on": [ - 1853, + 1852, "[matches_select_column!]" ], "limit": [ @@ -11465,19 +11451,19 @@ export default { 38 ], "order_by": [ - 1851, + 1850, "[matches_order_by!]" ], "where": [ - 1840 + 1839 ] } ], "matches_aggregate": [ - 1832, + 1831, { "distinct_on": [ - 1853, + 1852, "[matches_select_column!]" ], "limit": [ @@ -11487,30 +11473,30 @@ export default { 38 ], "order_by": [ - 1851, + 1850, "[matches_order_by!]" ], "where": [ - 1840 + 1839 ] } ], "value": [ - 75 + 74 ], "__typename": [ - 75 + 74 ] }, "e_match_status_aggregate": { "aggregate": [ - 705 + 704 ], "nodes": [ - 703 + 702 ], "__typename": [ - 75 + 74 ] }, "e_match_status_aggregate_fields": { @@ -11518,7 +11504,7 @@ export default { 38, { "columns": [ - 718, + 717, "[e_match_status_select_column!]" ], "distinct": [ @@ -11527,97 +11513,97 @@ export default { } ], "max": [ - 711 + 710 ], "min": [ - 712 + 711 ], "__typename": [ - 75 + 74 ] }, "e_match_status_bool_exp": { "_and": [ - 706 + 705 ], "_not": [ - 706 + 705 ], "_or": [ - 706 + 705 ], "description": [ - 77 + 76 ], "matches": [ - 1840 + 1839 ], "matches_aggregate": [ - 1833 + 1832 ], "value": [ - 77 + 76 ], "__typename": [ - 75 + 74 ] }, "e_match_status_constraint": {}, "e_match_status_enum": {}, "e_match_status_enum_comparison_exp": { "_eq": [ - 708 + 707 ], "_in": [ - 708 + 707 ], "_is_null": [ 3 ], "_neq": [ - 708 + 707 ], "_nin": [ - 708 + 707 ], "__typename": [ - 75 + 74 ] }, "e_match_status_insert_input": { "description": [ - 75 + 74 ], "matches": [ - 1837 + 1836 ], "value": [ - 75 + 74 ], "__typename": [ - 75 + 74 ] }, "e_match_status_max_fields": { "description": [ - 75 + 74 ], "value": [ - 75 + 74 ], "__typename": [ - 75 + 74 ] }, "e_match_status_min_fields": { "description": [ - 75 + 74 ], "value": [ - 75 + 74 ], "__typename": [ - 75 + 74 ] }, "e_match_status_mutation_response": { @@ -11625,114 +11611,114 @@ export default { 38 ], "returning": [ - 703 + 702 ], "__typename": [ - 75 + 74 ] }, "e_match_status_obj_rel_insert_input": { "data": [ - 710 + 709 ], "on_conflict": [ - 715 + 714 ], "__typename": [ - 75 + 74 ] }, "e_match_status_on_conflict": { "constraint": [ - 707 + 706 ], "update_columns": [ - 722 + 721 ], "where": [ - 706 + 705 ], "__typename": [ - 75 + 74 ] }, "e_match_status_order_by": { "description": [ - 2016 + 2015 ], "matches_aggregate": [ - 1836 + 1835 ], "value": [ - 2016 + 2015 ], "__typename": [ - 75 + 74 ] }, "e_match_status_pk_columns_input": { "value": [ - 75 + 74 ], "__typename": [ - 75 + 74 ] }, "e_match_status_select_column": {}, "e_match_status_set_input": { "description": [ - 75 + 74 ], "value": [ - 75 + 74 ], "__typename": [ - 75 + 74 ] }, "e_match_status_stream_cursor_input": { "initial_value": [ - 721 + 720 ], "ordering": [ - 229 + 228 ], "__typename": [ - 75 + 74 ] }, "e_match_status_stream_cursor_value_input": { "description": [ - 75 + 74 ], "value": [ - 75 + 74 ], "__typename": [ - 75 + 74 ] }, "e_match_status_update_column": {}, "e_match_status_updates": { "_set": [ - 719 + 718 ], "where": [ - 706 + 705 ], "__typename": [ - 75 + 74 ] }, "e_match_types": { "description": [ - 75 + 74 ], "maps": [ - 1349, + 1348, { "distinct_on": [ - 1370, + 1369, "[maps_select_column!]" ], "limit": [ @@ -11742,19 +11728,19 @@ export default { 38 ], "order_by": [ - 1368, + 1367, "[maps_order_by!]" ], "where": [ - 1358 + 1357 ] } ], "maps_aggregate": [ - 1350, + 1349, { "distinct_on": [ - 1370, + 1369, "[maps_select_column!]" ], "limit": [ @@ -11764,30 +11750,30 @@ export default { 38 ], "order_by": [ - 1368, + 1367, "[maps_order_by!]" ], "where": [ - 1358 + 1357 ] } ], "value": [ - 75 + 74 ], "__typename": [ - 75 + 74 ] }, "e_match_types_aggregate": { "aggregate": [ - 726 + 725 ], "nodes": [ - 724 + 723 ], "__typename": [ - 75 + 74 ] }, "e_match_types_aggregate_fields": { @@ -11795,7 +11781,7 @@ export default { 38, { "columns": [ - 739, + 738, "[e_match_types_select_column!]" ], "distinct": [ @@ -11804,97 +11790,97 @@ export default { } ], "max": [ - 732 + 731 ], "min": [ - 733 + 732 ], "__typename": [ - 75 + 74 ] }, "e_match_types_bool_exp": { "_and": [ - 727 + 726 ], "_not": [ - 727 + 726 ], "_or": [ - 727 + 726 ], "description": [ - 77 + 76 ], "maps": [ - 1358 + 1357 ], "maps_aggregate": [ - 1351 + 1350 ], "value": [ - 77 + 76 ], "__typename": [ - 75 + 74 ] }, "e_match_types_constraint": {}, "e_match_types_enum": {}, "e_match_types_enum_comparison_exp": { "_eq": [ - 729 + 728 ], "_in": [ - 729 + 728 ], "_is_null": [ 3 ], "_neq": [ - 729 + 728 ], "_nin": [ - 729 + 728 ], "__typename": [ - 75 + 74 ] }, "e_match_types_insert_input": { "description": [ - 75 + 74 ], "maps": [ - 1357 + 1356 ], "value": [ - 75 + 74 ], "__typename": [ - 75 + 74 ] }, "e_match_types_max_fields": { "description": [ - 75 + 74 ], "value": [ - 75 + 74 ], "__typename": [ - 75 + 74 ] }, "e_match_types_min_fields": { "description": [ - 75 + 74 ], "value": [ - 75 + 74 ], "__typename": [ - 75 + 74 ] }, "e_match_types_mutation_response": { @@ -11902,125 +11888,125 @@ export default { 38 ], "returning": [ - 724 + 723 ], "__typename": [ - 75 + 74 ] }, "e_match_types_obj_rel_insert_input": { "data": [ - 731 + 730 ], "on_conflict": [ - 736 + 735 ], "__typename": [ - 75 + 74 ] }, "e_match_types_on_conflict": { "constraint": [ - 728 + 727 ], "update_columns": [ - 743 + 742 ], "where": [ - 727 + 726 ], "__typename": [ - 75 + 74 ] }, "e_match_types_order_by": { "description": [ - 2016 + 2015 ], "maps_aggregate": [ - 1356 + 1355 ], "value": [ - 2016 + 2015 ], "__typename": [ - 75 + 74 ] }, "e_match_types_pk_columns_input": { "value": [ - 75 + 74 ], "__typename": [ - 75 + 74 ] }, "e_match_types_select_column": {}, "e_match_types_set_input": { "description": [ - 75 + 74 ], "value": [ - 75 + 74 ], "__typename": [ - 75 + 74 ] }, "e_match_types_stream_cursor_input": { "initial_value": [ - 742 + 741 ], "ordering": [ - 229 + 228 ], "__typename": [ - 75 + 74 ] }, "e_match_types_stream_cursor_value_input": { "description": [ - 75 + 74 ], "value": [ - 75 + 74 ], "__typename": [ - 75 + 74 ] }, "e_match_types_update_column": {}, "e_match_types_updates": { "_set": [ - 740 + 739 ], "where": [ - 727 + 726 ], "__typename": [ - 75 + 74 ] }, "e_notification_types": { "description": [ - 75 + 74 ], "value": [ - 75 + 74 ], "__typename": [ - 75 + 74 ] }, "e_notification_types_aggregate": { "aggregate": [ - 747 + 746 ], "nodes": [ - 745 + 744 ], "__typename": [ - 75 + 74 ] }, "e_notification_types_aggregate_fields": { @@ -12028,7 +12014,7 @@ export default { 38, { "columns": [ - 759, + 758, "[e_notification_types_select_column!]" ], "distinct": [ @@ -12037,88 +12023,88 @@ export default { } ], "max": [ - 753 + 752 ], "min": [ - 754 + 753 ], "__typename": [ - 75 + 74 ] }, "e_notification_types_bool_exp": { "_and": [ - 748 + 747 ], "_not": [ - 748 + 747 ], "_or": [ - 748 + 747 ], "description": [ - 77 + 76 ], "value": [ - 77 + 76 ], "__typename": [ - 75 + 74 ] }, "e_notification_types_constraint": {}, "e_notification_types_enum": {}, "e_notification_types_enum_comparison_exp": { "_eq": [ - 750 + 749 ], "_in": [ - 750 + 749 ], "_is_null": [ 3 ], "_neq": [ - 750 + 749 ], "_nin": [ - 750 + 749 ], "__typename": [ - 75 + 74 ] }, "e_notification_types_insert_input": { "description": [ - 75 + 74 ], "value": [ - 75 + 74 ], "__typename": [ - 75 + 74 ] }, "e_notification_types_max_fields": { "description": [ - 75 + 74 ], "value": [ - 75 + 74 ], "__typename": [ - 75 + 74 ] }, "e_notification_types_min_fields": { "description": [ - 75 + 74 ], "value": [ - 75 + 74 ], "__typename": [ - 75 + 74 ] }, "e_notification_types_mutation_response": { @@ -12126,100 +12112,100 @@ export default { 38 ], "returning": [ - 745 + 744 ], "__typename": [ - 75 + 74 ] }, "e_notification_types_on_conflict": { "constraint": [ - 749 + 748 ], "update_columns": [ - 763 + 762 ], "where": [ - 748 + 747 ], "__typename": [ - 75 + 74 ] }, "e_notification_types_order_by": { "description": [ - 2016 + 2015 ], "value": [ - 2016 + 2015 ], "__typename": [ - 75 + 74 ] }, "e_notification_types_pk_columns_input": { "value": [ - 75 + 74 ], "__typename": [ - 75 + 74 ] }, "e_notification_types_select_column": {}, "e_notification_types_set_input": { "description": [ - 75 + 74 ], "value": [ - 75 + 74 ], "__typename": [ - 75 + 74 ] }, "e_notification_types_stream_cursor_input": { "initial_value": [ - 762 + 761 ], "ordering": [ - 229 + 228 ], "__typename": [ - 75 + 74 ] }, "e_notification_types_stream_cursor_value_input": { "description": [ - 75 + 74 ], "value": [ - 75 + 74 ], "__typename": [ - 75 + 74 ] }, "e_notification_types_update_column": {}, "e_notification_types_updates": { "_set": [ - 760 + 759 ], "where": [ - 748 + 747 ], "__typename": [ - 75 + 74 ] }, "e_objective_types": { "description": [ - 75 + 74 ], "player_objectives": [ - 2572, + 2571, { "distinct_on": [ - 2593, + 2592, "[player_objectives_select_column!]" ], "limit": [ @@ -12229,19 +12215,19 @@ export default { 38 ], "order_by": [ - 2591, + 2590, "[player_objectives_order_by!]" ], "where": [ - 2581 + 2580 ] } ], "player_objectives_aggregate": [ - 2573, + 2572, { "distinct_on": [ - 2593, + 2592, "[player_objectives_select_column!]" ], "limit": [ @@ -12251,30 +12237,30 @@ export default { 38 ], "order_by": [ - 2591, + 2590, "[player_objectives_order_by!]" ], "where": [ - 2581 + 2580 ] } ], "value": [ - 75 + 74 ], "__typename": [ - 75 + 74 ] }, "e_objective_types_aggregate": { "aggregate": [ - 767 + 766 ], "nodes": [ - 765 + 764 ], "__typename": [ - 75 + 74 ] }, "e_objective_types_aggregate_fields": { @@ -12282,7 +12268,7 @@ export default { 38, { "columns": [ - 779, + 778, "[e_objective_types_select_column!]" ], "distinct": [ @@ -12291,97 +12277,97 @@ export default { } ], "max": [ - 773 + 772 ], "min": [ - 774 + 773 ], "__typename": [ - 75 + 74 ] }, "e_objective_types_bool_exp": { "_and": [ - 768 + 767 ], "_not": [ - 768 + 767 ], "_or": [ - 768 + 767 ], "description": [ - 77 + 76 ], "player_objectives": [ - 2581 + 2580 ], "player_objectives_aggregate": [ - 2574 + 2573 ], "value": [ - 77 + 76 ], "__typename": [ - 75 + 74 ] }, "e_objective_types_constraint": {}, "e_objective_types_enum": {}, "e_objective_types_enum_comparison_exp": { "_eq": [ - 770 + 769 ], "_in": [ - 770 + 769 ], "_is_null": [ 3 ], "_neq": [ - 770 + 769 ], "_nin": [ - 770 + 769 ], "__typename": [ - 75 + 74 ] }, "e_objective_types_insert_input": { "description": [ - 75 + 74 ], "player_objectives": [ - 2578 + 2577 ], "value": [ - 75 + 74 ], "__typename": [ - 75 + 74 ] }, "e_objective_types_max_fields": { "description": [ - 75 + 74 ], "value": [ - 75 + 74 ], "__typename": [ - 75 + 74 ] }, "e_objective_types_min_fields": { "description": [ - 75 + 74 ], "value": [ - 75 + 74 ], "__typename": [ - 75 + 74 ] }, "e_objective_types_mutation_response": { @@ -12389,114 +12375,114 @@ export default { 38 ], "returning": [ - 765 + 764 ], "__typename": [ - 75 + 74 ] }, "e_objective_types_on_conflict": { "constraint": [ - 769 + 768 ], "update_columns": [ - 783 + 782 ], "where": [ - 768 + 767 ], "__typename": [ - 75 + 74 ] }, "e_objective_types_order_by": { "description": [ - 2016 + 2015 ], "player_objectives_aggregate": [ - 2577 + 2576 ], "value": [ - 2016 + 2015 ], "__typename": [ - 75 + 74 ] }, "e_objective_types_pk_columns_input": { "value": [ - 75 + 74 ], "__typename": [ - 75 + 74 ] }, "e_objective_types_select_column": {}, "e_objective_types_set_input": { "description": [ - 75 + 74 ], "value": [ - 75 + 74 ], "__typename": [ - 75 + 74 ] }, "e_objective_types_stream_cursor_input": { "initial_value": [ - 782 + 781 ], "ordering": [ - 229 + 228 ], "__typename": [ - 75 + 74 ] }, "e_objective_types_stream_cursor_value_input": { "description": [ - 75 + 74 ], "value": [ - 75 + 74 ], "__typename": [ - 75 + 74 ] }, "e_objective_types_update_column": {}, "e_objective_types_updates": { "_set": [ - 780 + 779 ], "where": [ - 768 + 767 ], "__typename": [ - 75 + 74 ] }, "e_player_roles": { "description": [ - 75 + 74 ], "value": [ - 75 + 74 ], "__typename": [ - 75 + 74 ] }, "e_player_roles_aggregate": { "aggregate": [ - 787 + 786 ], "nodes": [ - 785 + 784 ], "__typename": [ - 75 + 74 ] }, "e_player_roles_aggregate_fields": { @@ -12504,7 +12490,7 @@ export default { 38, { "columns": [ - 799, + 798, "[e_player_roles_select_column!]" ], "distinct": [ @@ -12513,88 +12499,88 @@ export default { } ], "max": [ - 793 + 792 ], "min": [ - 794 + 793 ], "__typename": [ - 75 + 74 ] }, "e_player_roles_bool_exp": { "_and": [ - 788 + 787 ], "_not": [ - 788 + 787 ], "_or": [ - 788 + 787 ], "description": [ - 77 + 76 ], "value": [ - 77 + 76 ], "__typename": [ - 75 + 74 ] }, "e_player_roles_constraint": {}, "e_player_roles_enum": {}, "e_player_roles_enum_comparison_exp": { "_eq": [ - 790 + 789 ], "_in": [ - 790 + 789 ], "_is_null": [ 3 ], "_neq": [ - 790 + 789 ], "_nin": [ - 790 + 789 ], "__typename": [ - 75 + 74 ] }, "e_player_roles_insert_input": { "description": [ - 75 + 74 ], "value": [ - 75 + 74 ], "__typename": [ - 75 + 74 ] }, "e_player_roles_max_fields": { "description": [ - 75 + 74 ], "value": [ - 75 + 74 ], "__typename": [ - 75 + 74 ] }, "e_player_roles_min_fields": { "description": [ - 75 + 74 ], "value": [ - 75 + 74 ], "__typename": [ - 75 + 74 ] }, "e_player_roles_mutation_response": { @@ -12602,111 +12588,111 @@ export default { 38 ], "returning": [ - 785 + 784 ], "__typename": [ - 75 + 74 ] }, "e_player_roles_on_conflict": { "constraint": [ - 789 + 788 ], "update_columns": [ - 803 + 802 ], "where": [ - 788 + 787 ], "__typename": [ - 75 + 74 ] }, "e_player_roles_order_by": { "description": [ - 2016 + 2015 ], "value": [ - 2016 + 2015 ], "__typename": [ - 75 + 74 ] }, "e_player_roles_pk_columns_input": { "value": [ - 75 + 74 ], "__typename": [ - 75 + 74 ] }, "e_player_roles_select_column": {}, "e_player_roles_set_input": { "description": [ - 75 + 74 ], "value": [ - 75 + 74 ], "__typename": [ - 75 + 74 ] }, "e_player_roles_stream_cursor_input": { "initial_value": [ - 802 + 801 ], "ordering": [ - 229 + 228 ], "__typename": [ - 75 + 74 ] }, "e_player_roles_stream_cursor_value_input": { "description": [ - 75 + 74 ], "value": [ - 75 + 74 ], "__typename": [ - 75 + 74 ] }, "e_player_roles_update_column": {}, "e_player_roles_updates": { "_set": [ - 800 + 799 ], "where": [ - 788 + 787 ], "__typename": [ - 75 + 74 ] }, "e_ready_settings": { "description": [ - 75 + 74 ], "value": [ - 75 + 74 ], "__typename": [ - 75 + 74 ] }, "e_ready_settings_aggregate": { "aggregate": [ - 807 + 806 ], "nodes": [ - 805 + 804 ], "__typename": [ - 75 + 74 ] }, "e_ready_settings_aggregate_fields": { @@ -12714,7 +12700,7 @@ export default { 38, { "columns": [ - 819, + 818, "[e_ready_settings_select_column!]" ], "distinct": [ @@ -12723,88 +12709,88 @@ export default { } ], "max": [ - 813 + 812 ], "min": [ - 814 + 813 ], "__typename": [ - 75 + 74 ] }, "e_ready_settings_bool_exp": { "_and": [ - 808 + 807 ], "_not": [ - 808 + 807 ], "_or": [ - 808 + 807 ], "description": [ - 77 + 76 ], "value": [ - 77 + 76 ], "__typename": [ - 75 + 74 ] }, "e_ready_settings_constraint": {}, "e_ready_settings_enum": {}, "e_ready_settings_enum_comparison_exp": { "_eq": [ - 810 + 809 ], "_in": [ - 810 + 809 ], "_is_null": [ 3 ], "_neq": [ - 810 + 809 ], "_nin": [ - 810 + 809 ], "__typename": [ - 75 + 74 ] }, "e_ready_settings_insert_input": { "description": [ - 75 + 74 ], "value": [ - 75 + 74 ], "__typename": [ - 75 + 74 ] }, "e_ready_settings_max_fields": { "description": [ - 75 + 74 ], "value": [ - 75 + 74 ], "__typename": [ - 75 + 74 ] }, "e_ready_settings_min_fields": { "description": [ - 75 + 74 ], "value": [ - 75 + 74 ], "__typename": [ - 75 + 74 ] }, "e_ready_settings_mutation_response": { @@ -12812,111 +12798,111 @@ export default { 38 ], "returning": [ - 805 + 804 ], "__typename": [ - 75 + 74 ] }, "e_ready_settings_on_conflict": { "constraint": [ - 809 + 808 ], "update_columns": [ - 823 + 822 ], "where": [ - 808 + 807 ], "__typename": [ - 75 + 74 ] }, "e_ready_settings_order_by": { "description": [ - 2016 + 2015 ], "value": [ - 2016 + 2015 ], "__typename": [ - 75 + 74 ] }, "e_ready_settings_pk_columns_input": { "value": [ - 75 + 74 ], "__typename": [ - 75 + 74 ] }, "e_ready_settings_select_column": {}, "e_ready_settings_set_input": { "description": [ - 75 + 74 ], "value": [ - 75 + 74 ], "__typename": [ - 75 + 74 ] }, "e_ready_settings_stream_cursor_input": { "initial_value": [ - 822 + 821 ], "ordering": [ - 229 + 228 ], "__typename": [ - 75 + 74 ] }, "e_ready_settings_stream_cursor_value_input": { "description": [ - 75 + 74 ], "value": [ - 75 + 74 ], "__typename": [ - 75 + 74 ] }, "e_ready_settings_update_column": {}, "e_ready_settings_updates": { "_set": [ - 820 + 819 ], "where": [ - 808 + 807 ], "__typename": [ - 75 + 74 ] }, "e_sanction_types": { "description": [ - 75 + 74 ], "value": [ - 75 + 74 ], "__typename": [ - 75 + 74 ] }, "e_sanction_types_aggregate": { "aggregate": [ - 827 + 826 ], "nodes": [ - 825 + 824 ], "__typename": [ - 75 + 74 ] }, "e_sanction_types_aggregate_fields": { @@ -12924,7 +12910,7 @@ export default { 38, { "columns": [ - 840, + 839, "[e_sanction_types_select_column!]" ], "distinct": [ @@ -12933,88 +12919,88 @@ export default { } ], "max": [ - 833 + 832 ], "min": [ - 834 + 833 ], "__typename": [ - 75 + 74 ] }, "e_sanction_types_bool_exp": { "_and": [ - 828 + 827 ], "_not": [ - 828 + 827 ], "_or": [ - 828 + 827 ], "description": [ - 77 + 76 ], "value": [ - 77 + 76 ], "__typename": [ - 75 + 74 ] }, "e_sanction_types_constraint": {}, "e_sanction_types_enum": {}, "e_sanction_types_enum_comparison_exp": { "_eq": [ - 830 + 829 ], "_in": [ - 830 + 829 ], "_is_null": [ 3 ], "_neq": [ - 830 + 829 ], "_nin": [ - 830 + 829 ], "__typename": [ - 75 + 74 ] }, "e_sanction_types_insert_input": { "description": [ - 75 + 74 ], "value": [ - 75 + 74 ], "__typename": [ - 75 + 74 ] }, "e_sanction_types_max_fields": { "description": [ - 75 + 74 ], "value": [ - 75 + 74 ], "__typename": [ - 75 + 74 ] }, "e_sanction_types_min_fields": { "description": [ - 75 + 74 ], "value": [ - 75 + 74 ], "__typename": [ - 75 + 74 ] }, "e_sanction_types_mutation_response": { @@ -13022,111 +13008,111 @@ export default { 38 ], "returning": [ - 825 + 824 ], "__typename": [ - 75 + 74 ] }, "e_sanction_types_obj_rel_insert_input": { "data": [ - 832 + 831 ], "on_conflict": [ - 837 + 836 ], "__typename": [ - 75 + 74 ] }, "e_sanction_types_on_conflict": { "constraint": [ - 829 + 828 ], "update_columns": [ - 844 + 843 ], "where": [ - 828 + 827 ], "__typename": [ - 75 + 74 ] }, "e_sanction_types_order_by": { "description": [ - 2016 + 2015 ], "value": [ - 2016 + 2015 ], "__typename": [ - 75 + 74 ] }, "e_sanction_types_pk_columns_input": { "value": [ - 75 + 74 ], "__typename": [ - 75 + 74 ] }, "e_sanction_types_select_column": {}, "e_sanction_types_set_input": { "description": [ - 75 + 74 ], "value": [ - 75 + 74 ], "__typename": [ - 75 + 74 ] }, "e_sanction_types_stream_cursor_input": { "initial_value": [ - 843 + 842 ], "ordering": [ - 229 + 228 ], "__typename": [ - 75 + 74 ] }, "e_sanction_types_stream_cursor_value_input": { "description": [ - 75 + 74 ], "value": [ - 75 + 74 ], "__typename": [ - 75 + 74 ] }, "e_sanction_types_update_column": {}, "e_sanction_types_updates": { "_set": [ - 841 + 840 ], "where": [ - 828 + 827 ], "__typename": [ - 75 + 74 ] }, "e_scrim_request_statuses": { "description": [ - 75 + 74 ], "scrim_requests": [ - 3323, + 3322, { "distinct_on": [ - 3347, + 3346, "[team_scrim_requests_select_column!]" ], "limit": [ @@ -13136,19 +13122,19 @@ export default { 38 ], "order_by": [ - 3345, + 3344, "[team_scrim_requests_order_by!]" ], "where": [ - 3334 + 3333 ] } ], "scrim_requests_aggregate": [ - 3324, + 3323, { "distinct_on": [ - 3347, + 3346, "[team_scrim_requests_select_column!]" ], "limit": [ @@ -13158,30 +13144,30 @@ export default { 38 ], "order_by": [ - 3345, + 3344, "[team_scrim_requests_order_by!]" ], "where": [ - 3334 + 3333 ] } ], "value": [ - 75 + 74 ], "__typename": [ - 75 + 74 ] }, "e_scrim_request_statuses_aggregate": { "aggregate": [ - 848 + 847 ], "nodes": [ - 846 + 845 ], "__typename": [ - 75 + 74 ] }, "e_scrim_request_statuses_aggregate_fields": { @@ -13189,7 +13175,7 @@ export default { 38, { "columns": [ - 860, + 859, "[e_scrim_request_statuses_select_column!]" ], "distinct": [ @@ -13198,97 +13184,97 @@ export default { } ], "max": [ - 854 + 853 ], "min": [ - 855 + 854 ], "__typename": [ - 75 + 74 ] }, "e_scrim_request_statuses_bool_exp": { "_and": [ - 849 + 848 ], "_not": [ - 849 + 848 ], "_or": [ - 849 + 848 ], "description": [ - 77 + 76 ], "scrim_requests": [ - 3334 + 3333 ], "scrim_requests_aggregate": [ - 3325 + 3324 ], "value": [ - 77 + 76 ], "__typename": [ - 75 + 74 ] }, "e_scrim_request_statuses_constraint": {}, "e_scrim_request_statuses_enum": {}, "e_scrim_request_statuses_enum_comparison_exp": { "_eq": [ - 851 + 850 ], "_in": [ - 851 + 850 ], "_is_null": [ 3 ], "_neq": [ - 851 + 850 ], "_nin": [ - 851 + 850 ], "__typename": [ - 75 + 74 ] }, "e_scrim_request_statuses_insert_input": { "description": [ - 75 + 74 ], "scrim_requests": [ - 3331 + 3330 ], "value": [ - 75 + 74 ], "__typename": [ - 75 + 74 ] }, "e_scrim_request_statuses_max_fields": { "description": [ - 75 + 74 ], "value": [ - 75 + 74 ], "__typename": [ - 75 + 74 ] }, "e_scrim_request_statuses_min_fields": { "description": [ - 75 + 74 ], "value": [ - 75 + 74 ], "__typename": [ - 75 + 74 ] }, "e_scrim_request_statuses_mutation_response": { @@ -13296,103 +13282,103 @@ export default { 38 ], "returning": [ - 846 + 845 ], "__typename": [ - 75 + 74 ] }, "e_scrim_request_statuses_on_conflict": { "constraint": [ - 850 + 849 ], "update_columns": [ - 864 + 863 ], "where": [ - 849 + 848 ], "__typename": [ - 75 + 74 ] }, "e_scrim_request_statuses_order_by": { "description": [ - 2016 + 2015 ], "scrim_requests_aggregate": [ - 3330 + 3329 ], "value": [ - 2016 + 2015 ], "__typename": [ - 75 + 74 ] }, "e_scrim_request_statuses_pk_columns_input": { "value": [ - 75 + 74 ], "__typename": [ - 75 + 74 ] }, "e_scrim_request_statuses_select_column": {}, "e_scrim_request_statuses_set_input": { "description": [ - 75 + 74 ], "value": [ - 75 + 74 ], "__typename": [ - 75 + 74 ] }, "e_scrim_request_statuses_stream_cursor_input": { "initial_value": [ - 863 + 862 ], "ordering": [ - 229 + 228 ], "__typename": [ - 75 + 74 ] }, "e_scrim_request_statuses_stream_cursor_value_input": { "description": [ - 75 + 74 ], "value": [ - 75 + 74 ], "__typename": [ - 75 + 74 ] }, "e_scrim_request_statuses_update_column": {}, "e_scrim_request_statuses_updates": { "_set": [ - 861 + 860 ], "where": [ - 849 + 848 ], "__typename": [ - 75 + 74 ] }, "e_server_types": { "description": [ - 75 + 74 ], "servers": [ - 2998, + 2997, { "distinct_on": [ - 3022, + 3021, "[servers_select_column!]" ], "limit": [ @@ -13402,19 +13388,19 @@ export default { 38 ], "order_by": [ - 3020, + 3019, "[servers_order_by!]" ], "where": [ - 3009 + 3008 ] } ], "servers_aggregate": [ - 2999, + 2998, { "distinct_on": [ - 3022, + 3021, "[servers_select_column!]" ], "limit": [ @@ -13424,30 +13410,30 @@ export default { 38 ], "order_by": [ - 3020, + 3019, "[servers_order_by!]" ], "where": [ - 3009 + 3008 ] } ], "value": [ - 75 + 74 ], "__typename": [ - 75 + 74 ] }, "e_server_types_aggregate": { "aggregate": [ - 868 + 867 ], "nodes": [ - 866 + 865 ], "__typename": [ - 75 + 74 ] }, "e_server_types_aggregate_fields": { @@ -13455,7 +13441,7 @@ export default { 38, { "columns": [ - 880, + 879, "[e_server_types_select_column!]" ], "distinct": [ @@ -13464,97 +13450,97 @@ export default { } ], "max": [ - 874 + 873 ], "min": [ - 875 + 874 ], "__typename": [ - 75 + 74 ] }, "e_server_types_bool_exp": { "_and": [ - 869 + 868 ], "_not": [ - 869 + 868 ], "_or": [ - 869 + 868 ], "description": [ - 77 + 76 ], "servers": [ - 3009 + 3008 ], "servers_aggregate": [ - 3000 + 2999 ], "value": [ - 77 + 76 ], "__typename": [ - 75 + 74 ] }, "e_server_types_constraint": {}, "e_server_types_enum": {}, "e_server_types_enum_comparison_exp": { "_eq": [ - 871 + 870 ], "_in": [ - 871 + 870 ], "_is_null": [ 3 ], "_neq": [ - 871 + 870 ], "_nin": [ - 871 + 870 ], "__typename": [ - 75 + 74 ] }, "e_server_types_insert_input": { "description": [ - 75 + 74 ], "servers": [ - 3006 + 3005 ], "value": [ - 75 + 74 ], "__typename": [ - 75 + 74 ] }, "e_server_types_max_fields": { "description": [ - 75 + 74 ], "value": [ - 75 + 74 ], "__typename": [ - 75 + 74 ] }, "e_server_types_min_fields": { "description": [ - 75 + 74 ], "value": [ - 75 + 74 ], "__typename": [ - 75 + 74 ] }, "e_server_types_mutation_response": { @@ -13562,103 +13548,103 @@ export default { 38 ], "returning": [ - 866 + 865 ], "__typename": [ - 75 + 74 ] }, "e_server_types_on_conflict": { "constraint": [ - 870 + 869 ], "update_columns": [ - 884 + 883 ], "where": [ - 869 + 868 ], "__typename": [ - 75 + 74 ] }, "e_server_types_order_by": { "description": [ - 2016 + 2015 ], "servers_aggregate": [ - 3005 + 3004 ], "value": [ - 2016 + 2015 ], "__typename": [ - 75 + 74 ] }, "e_server_types_pk_columns_input": { "value": [ - 75 + 74 ], "__typename": [ - 75 + 74 ] }, "e_server_types_select_column": {}, "e_server_types_set_input": { "description": [ - 75 + 74 ], "value": [ - 75 + 74 ], "__typename": [ - 75 + 74 ] }, "e_server_types_stream_cursor_input": { "initial_value": [ - 883 + 882 ], "ordering": [ - 229 + 228 ], "__typename": [ - 75 + 74 ] }, "e_server_types_stream_cursor_value_input": { "description": [ - 75 + 74 ], "value": [ - 75 + 74 ], "__typename": [ - 75 + 74 ] }, "e_server_types_update_column": {}, "e_server_types_updates": { "_set": [ - 881 + 880 ], "where": [ - 869 + 868 ], "__typename": [ - 75 + 74 ] }, "e_sides": { "description": [ - 75 + 74 ], "match_map_lineup_1": [ - 1669, + 1668, { "distinct_on": [ - 1691, + 1690, "[match_maps_select_column!]" ], "limit": [ @@ -13668,19 +13654,19 @@ export default { 38 ], "order_by": [ - 1689, + 1688, "[match_maps_order_by!]" ], "where": [ - 1678 + 1677 ] } ], "match_map_lineup_1_aggregate": [ - 1670, + 1669, { "distinct_on": [ - 1691, + 1690, "[match_maps_select_column!]" ], "limit": [ @@ -13690,19 +13676,19 @@ export default { 38 ], "order_by": [ - 1689, + 1688, "[match_maps_order_by!]" ], "where": [ - 1678 + 1677 ] } ], "match_map_lineup_2": [ - 1669, + 1668, { "distinct_on": [ - 1691, + 1690, "[match_maps_select_column!]" ], "limit": [ @@ -13712,19 +13698,19 @@ export default { 38 ], "order_by": [ - 1689, + 1688, "[match_maps_order_by!]" ], "where": [ - 1678 + 1677 ] } ], "match_map_lineup_2_aggregate": [ - 1670, + 1669, { "distinct_on": [ - 1691, + 1690, "[match_maps_select_column!]" ], "limit": [ @@ -13734,30 +13720,30 @@ export default { 38 ], "order_by": [ - 1689, + 1688, "[match_maps_order_by!]" ], "where": [ - 1678 + 1677 ] } ], "value": [ - 75 + 74 ], "__typename": [ - 75 + 74 ] }, "e_sides_aggregate": { "aggregate": [ - 888 + 887 ], "nodes": [ - 886 + 885 ], "__typename": [ - 75 + 74 ] }, "e_sides_aggregate_fields": { @@ -13765,7 +13751,7 @@ export default { 38, { "columns": [ - 900, + 899, "[e_sides_select_column!]" ], "distinct": [ @@ -13774,106 +13760,106 @@ export default { } ], "max": [ - 894 + 893 ], "min": [ - 895 + 894 ], "__typename": [ - 75 + 74 ] }, "e_sides_bool_exp": { "_and": [ - 889 + 888 ], "_not": [ - 889 + 888 ], "_or": [ - 889 + 888 ], "description": [ - 77 + 76 ], "match_map_lineup_1": [ - 1678 + 1677 ], "match_map_lineup_1_aggregate": [ - 1671 + 1670 ], "match_map_lineup_2": [ - 1678 + 1677 ], "match_map_lineup_2_aggregate": [ - 1671 + 1670 ], "value": [ - 77 + 76 ], "__typename": [ - 75 + 74 ] }, "e_sides_constraint": {}, "e_sides_enum": {}, "e_sides_enum_comparison_exp": { "_eq": [ - 891 + 890 ], "_in": [ - 891 + 890 ], "_is_null": [ 3 ], "_neq": [ - 891 + 890 ], "_nin": [ - 891 + 890 ], "__typename": [ - 75 + 74 ] }, "e_sides_insert_input": { "description": [ - 75 + 74 ], "match_map_lineup_1": [ - 1675 + 1674 ], "match_map_lineup_2": [ - 1675 + 1674 ], "value": [ - 75 + 74 ], "__typename": [ - 75 + 74 ] }, "e_sides_max_fields": { "description": [ - 75 + 74 ], "value": [ - 75 + 74 ], "__typename": [ - 75 + 74 ] }, "e_sides_min_fields": { "description": [ - 75 + 74 ], "value": [ - 75 + 74 ], "__typename": [ - 75 + 74 ] }, "e_sides_mutation_response": { @@ -13881,117 +13867,117 @@ export default { 38 ], "returning": [ - 886 + 885 ], "__typename": [ - 75 + 74 ] }, "e_sides_on_conflict": { "constraint": [ - 890 + 889 ], "update_columns": [ - 904 + 903 ], "where": [ - 889 + 888 ], "__typename": [ - 75 + 74 ] }, "e_sides_order_by": { "description": [ - 2016 + 2015 ], "match_map_lineup_1_aggregate": [ - 1674 + 1673 ], "match_map_lineup_2_aggregate": [ - 1674 + 1673 ], "value": [ - 2016 + 2015 ], "__typename": [ - 75 + 74 ] }, "e_sides_pk_columns_input": { "value": [ - 75 + 74 ], "__typename": [ - 75 + 74 ] }, "e_sides_select_column": {}, "e_sides_set_input": { "description": [ - 75 + 74 ], "value": [ - 75 + 74 ], "__typename": [ - 75 + 74 ] }, "e_sides_stream_cursor_input": { "initial_value": [ - 903 + 902 ], "ordering": [ - 229 + 228 ], "__typename": [ - 75 + 74 ] }, "e_sides_stream_cursor_value_input": { "description": [ - 75 + 74 ], "value": [ - 75 + 74 ], "__typename": [ - 75 + 74 ] }, "e_sides_update_column": {}, "e_sides_updates": { "_set": [ - 901 + 900 ], "where": [ - 889 + 888 ], "__typename": [ - 75 + 74 ] }, "e_system_alert_types": { "description": [ - 75 + 74 ], "value": [ - 75 + 74 ], "__typename": [ - 75 + 74 ] }, "e_system_alert_types_aggregate": { "aggregate": [ - 908 + 907 ], "nodes": [ - 906 + 905 ], "__typename": [ - 75 + 74 ] }, "e_system_alert_types_aggregate_fields": { @@ -13999,7 +13985,7 @@ export default { 38, { "columns": [ - 920, + 919, "[e_system_alert_types_select_column!]" ], "distinct": [ @@ -14008,88 +13994,88 @@ export default { } ], "max": [ - 914 + 913 ], "min": [ - 915 + 914 ], "__typename": [ - 75 + 74 ] }, "e_system_alert_types_bool_exp": { "_and": [ - 909 + 908 ], "_not": [ - 909 + 908 ], "_or": [ - 909 + 908 ], "description": [ - 77 + 76 ], "value": [ - 77 + 76 ], "__typename": [ - 75 + 74 ] }, "e_system_alert_types_constraint": {}, "e_system_alert_types_enum": {}, "e_system_alert_types_enum_comparison_exp": { "_eq": [ - 911 + 910 ], "_in": [ - 911 + 910 ], "_is_null": [ 3 ], "_neq": [ - 911 + 910 ], "_nin": [ - 911 + 910 ], "__typename": [ - 75 + 74 ] }, "e_system_alert_types_insert_input": { "description": [ - 75 + 74 ], "value": [ - 75 + 74 ], "__typename": [ - 75 + 74 ] }, "e_system_alert_types_max_fields": { "description": [ - 75 + 74 ], "value": [ - 75 + 74 ], "__typename": [ - 75 + 74 ] }, "e_system_alert_types_min_fields": { "description": [ - 75 + 74 ], "value": [ - 75 + 74 ], "__typename": [ - 75 + 74 ] }, "e_system_alert_types_mutation_response": { @@ -14097,100 +14083,100 @@ export default { 38 ], "returning": [ - 906 + 905 ], "__typename": [ - 75 + 74 ] }, "e_system_alert_types_on_conflict": { "constraint": [ - 910 + 909 ], "update_columns": [ - 924 + 923 ], "where": [ - 909 + 908 ], "__typename": [ - 75 + 74 ] }, "e_system_alert_types_order_by": { "description": [ - 2016 + 2015 ], "value": [ - 2016 + 2015 ], "__typename": [ - 75 + 74 ] }, "e_system_alert_types_pk_columns_input": { "value": [ - 75 + 74 ], "__typename": [ - 75 + 74 ] }, "e_system_alert_types_select_column": {}, "e_system_alert_types_set_input": { "description": [ - 75 + 74 ], "value": [ - 75 + 74 ], "__typename": [ - 75 + 74 ] }, "e_system_alert_types_stream_cursor_input": { "initial_value": [ - 923 + 922 ], "ordering": [ - 229 + 228 ], "__typename": [ - 75 + 74 ] }, "e_system_alert_types_stream_cursor_value_input": { "description": [ - 75 + 74 ], "value": [ - 75 + 74 ], "__typename": [ - 75 + 74 ] }, "e_system_alert_types_update_column": {}, "e_system_alert_types_updates": { "_set": [ - 921 + 920 ], "where": [ - 909 + 908 ], "__typename": [ - 75 + 74 ] }, "e_team_roles": { "description": [ - 75 + 74 ], "team_rosters": [ - 3182, + 3181, { "distinct_on": [ - 3205, + 3204, "[team_roster_select_column!]" ], "limit": [ @@ -14200,19 +14186,19 @@ export default { 38 ], "order_by": [ - 3203, + 3202, "[team_roster_order_by!]" ], "where": [ - 3193 + 3192 ] } ], "team_rosters_aggregate": [ - 3183, + 3182, { "distinct_on": [ - 3205, + 3204, "[team_roster_select_column!]" ], "limit": [ @@ -14222,19 +14208,19 @@ export default { 38 ], "order_by": [ - 3203, + 3202, "[team_roster_order_by!]" ], "where": [ - 3193 + 3192 ] } ], "tournament_team_rosters": [ - 3648, + 3647, { "distinct_on": [ - 3669, + 3668, "[tournament_team_roster_select_column!]" ], "limit": [ @@ -14244,19 +14230,19 @@ export default { 38 ], "order_by": [ - 3667, + 3666, "[tournament_team_roster_order_by!]" ], "where": [ - 3657 + 3656 ] } ], "tournament_team_rosters_aggregate": [ - 3649, + 3648, { "distinct_on": [ - 3669, + 3668, "[tournament_team_roster_select_column!]" ], "limit": [ @@ -14266,30 +14252,30 @@ export default { 38 ], "order_by": [ - 3667, + 3666, "[tournament_team_roster_order_by!]" ], "where": [ - 3657 + 3656 ] } ], "value": [ - 75 + 74 ], "__typename": [ - 75 + 74 ] }, "e_team_roles_aggregate": { "aggregate": [ - 928 + 927 ], "nodes": [ - 926 + 925 ], "__typename": [ - 75 + 74 ] }, "e_team_roles_aggregate_fields": { @@ -14297,7 +14283,7 @@ export default { 38, { "columns": [ - 941, + 940, "[e_team_roles_select_column!]" ], "distinct": [ @@ -14306,106 +14292,106 @@ export default { } ], "max": [ - 934 + 933 ], "min": [ - 935 + 934 ], "__typename": [ - 75 + 74 ] }, "e_team_roles_bool_exp": { "_and": [ - 929 + 928 ], "_not": [ - 929 + 928 ], "_or": [ - 929 + 928 ], "description": [ - 77 + 76 ], "team_rosters": [ - 3193 + 3192 ], "team_rosters_aggregate": [ - 3184 + 3183 ], "tournament_team_rosters": [ - 3657 + 3656 ], "tournament_team_rosters_aggregate": [ - 3650 + 3649 ], "value": [ - 77 + 76 ], "__typename": [ - 75 + 74 ] }, "e_team_roles_constraint": {}, "e_team_roles_enum": {}, "e_team_roles_enum_comparison_exp": { "_eq": [ - 931 + 930 ], "_in": [ - 931 + 930 ], "_is_null": [ 3 ], "_neq": [ - 931 + 930 ], "_nin": [ - 931 + 930 ], "__typename": [ - 75 + 74 ] }, "e_team_roles_insert_input": { "description": [ - 75 + 74 ], "team_rosters": [ - 3190 + 3189 ], "tournament_team_rosters": [ - 3654 + 3653 ], "value": [ - 75 + 74 ], "__typename": [ - 75 + 74 ] }, "e_team_roles_max_fields": { "description": [ - 75 + 74 ], "value": [ - 75 + 74 ], "__typename": [ - 75 + 74 ] }, "e_team_roles_min_fields": { "description": [ - 75 + 74 ], "value": [ - 75 + 74 ], "__typename": [ - 75 + 74 ] }, "e_team_roles_mutation_response": { @@ -14413,128 +14399,128 @@ export default { 38 ], "returning": [ - 926 + 925 ], "__typename": [ - 75 + 74 ] }, "e_team_roles_obj_rel_insert_input": { "data": [ - 933 + 932 ], "on_conflict": [ - 938 + 937 ], "__typename": [ - 75 + 74 ] }, "e_team_roles_on_conflict": { "constraint": [ - 930 + 929 ], "update_columns": [ - 945 + 944 ], "where": [ - 929 + 928 ], "__typename": [ - 75 + 74 ] }, "e_team_roles_order_by": { "description": [ - 2016 + 2015 ], "team_rosters_aggregate": [ - 3189 + 3188 ], "tournament_team_rosters_aggregate": [ - 3653 + 3652 ], "value": [ - 2016 + 2015 ], "__typename": [ - 75 + 74 ] }, "e_team_roles_pk_columns_input": { "value": [ - 75 + 74 ], "__typename": [ - 75 + 74 ] }, "e_team_roles_select_column": {}, "e_team_roles_set_input": { "description": [ - 75 + 74 ], "value": [ - 75 + 74 ], "__typename": [ - 75 + 74 ] }, "e_team_roles_stream_cursor_input": { "initial_value": [ - 944 + 943 ], "ordering": [ - 229 + 228 ], "__typename": [ - 75 + 74 ] }, "e_team_roles_stream_cursor_value_input": { "description": [ - 75 + 74 ], "value": [ - 75 + 74 ], "__typename": [ - 75 + 74 ] }, "e_team_roles_update_column": {}, "e_team_roles_updates": { "_set": [ - 942 + 941 ], "where": [ - 929 + 928 ], "__typename": [ - 75 + 74 ] }, "e_team_roster_statuses": { "description": [ - 75 + 74 ], "value": [ - 75 + 74 ], "__typename": [ - 75 + 74 ] }, "e_team_roster_statuses_aggregate": { "aggregate": [ - 949 + 948 ], "nodes": [ - 947 + 946 ], "__typename": [ - 75 + 74 ] }, "e_team_roster_statuses_aggregate_fields": { @@ -14542,7 +14528,7 @@ export default { 38, { "columns": [ - 961, + 960, "[e_team_roster_statuses_select_column!]" ], "distinct": [ @@ -14551,88 +14537,88 @@ export default { } ], "max": [ - 955 + 954 ], "min": [ - 956 + 955 ], "__typename": [ - 75 + 74 ] }, "e_team_roster_statuses_bool_exp": { "_and": [ - 950 + 949 ], "_not": [ - 950 + 949 ], "_or": [ - 950 + 949 ], "description": [ - 77 + 76 ], "value": [ - 77 + 76 ], "__typename": [ - 75 + 74 ] }, "e_team_roster_statuses_constraint": {}, "e_team_roster_statuses_enum": {}, "e_team_roster_statuses_enum_comparison_exp": { "_eq": [ - 952 + 951 ], "_in": [ - 952 + 951 ], "_is_null": [ 3 ], "_neq": [ - 952 + 951 ], "_nin": [ - 952 + 951 ], "__typename": [ - 75 + 74 ] }, "e_team_roster_statuses_insert_input": { "description": [ - 75 + 74 ], "value": [ - 75 + 74 ], "__typename": [ - 75 + 74 ] }, "e_team_roster_statuses_max_fields": { "description": [ - 75 + 74 ], "value": [ - 75 + 74 ], "__typename": [ - 75 + 74 ] }, "e_team_roster_statuses_min_fields": { "description": [ - 75 + 74 ], "value": [ - 75 + 74 ], "__typename": [ - 75 + 74 ] }, "e_team_roster_statuses_mutation_response": { @@ -14640,111 +14626,111 @@ export default { 38 ], "returning": [ - 947 + 946 ], "__typename": [ - 75 + 74 ] }, "e_team_roster_statuses_on_conflict": { "constraint": [ - 951 + 950 ], "update_columns": [ - 965 + 964 ], "where": [ - 950 + 949 ], "__typename": [ - 75 + 74 ] }, "e_team_roster_statuses_order_by": { "description": [ - 2016 + 2015 ], "value": [ - 2016 + 2015 ], "__typename": [ - 75 + 74 ] }, "e_team_roster_statuses_pk_columns_input": { "value": [ - 75 + 74 ], "__typename": [ - 75 + 74 ] }, "e_team_roster_statuses_select_column": {}, "e_team_roster_statuses_set_input": { "description": [ - 75 + 74 ], "value": [ - 75 + 74 ], "__typename": [ - 75 + 74 ] }, "e_team_roster_statuses_stream_cursor_input": { "initial_value": [ - 964 + 963 ], "ordering": [ - 229 + 228 ], "__typename": [ - 75 + 74 ] }, "e_team_roster_statuses_stream_cursor_value_input": { "description": [ - 75 + 74 ], "value": [ - 75 + 74 ], "__typename": [ - 75 + 74 ] }, "e_team_roster_statuses_update_column": {}, "e_team_roster_statuses_updates": { "_set": [ - 962 + 961 ], "where": [ - 950 + 949 ], "__typename": [ - 75 + 74 ] }, "e_timeout_settings": { "description": [ - 75 + 74 ], "value": [ - 75 + 74 ], "__typename": [ - 75 + 74 ] }, "e_timeout_settings_aggregate": { "aggregate": [ - 969 + 968 ], "nodes": [ - 967 + 966 ], "__typename": [ - 75 + 74 ] }, "e_timeout_settings_aggregate_fields": { @@ -14752,7 +14738,7 @@ export default { 38, { "columns": [ - 981, + 980, "[e_timeout_settings_select_column!]" ], "distinct": [ @@ -14761,88 +14747,88 @@ export default { } ], "max": [ - 975 + 974 ], "min": [ - 976 + 975 ], "__typename": [ - 75 + 74 ] }, "e_timeout_settings_bool_exp": { "_and": [ - 970 + 969 ], "_not": [ - 970 + 969 ], "_or": [ - 970 + 969 ], "description": [ - 77 + 76 ], "value": [ - 77 + 76 ], "__typename": [ - 75 + 74 ] }, "e_timeout_settings_constraint": {}, "e_timeout_settings_enum": {}, "e_timeout_settings_enum_comparison_exp": { "_eq": [ - 972 + 971 ], "_in": [ - 972 + 971 ], "_is_null": [ 3 ], "_neq": [ - 972 + 971 ], "_nin": [ - 972 + 971 ], "__typename": [ - 75 + 74 ] }, "e_timeout_settings_insert_input": { "description": [ - 75 + 74 ], "value": [ - 75 + 74 ], "__typename": [ - 75 + 74 ] }, "e_timeout_settings_max_fields": { "description": [ - 75 + 74 ], "value": [ - 75 + 74 ], "__typename": [ - 75 + 74 ] }, "e_timeout_settings_min_fields": { "description": [ - 75 + 74 ], "value": [ - 75 + 74 ], "__typename": [ - 75 + 74 ] }, "e_timeout_settings_mutation_response": { @@ -14850,100 +14836,100 @@ export default { 38 ], "returning": [ - 967 + 966 ], "__typename": [ - 75 + 74 ] }, "e_timeout_settings_on_conflict": { "constraint": [ - 971 + 970 ], "update_columns": [ - 985 + 984 ], "where": [ - 970 + 969 ], "__typename": [ - 75 + 74 ] }, "e_timeout_settings_order_by": { "description": [ - 2016 + 2015 ], "value": [ - 2016 + 2015 ], "__typename": [ - 75 + 74 ] }, "e_timeout_settings_pk_columns_input": { "value": [ - 75 + 74 ], "__typename": [ - 75 + 74 ] }, "e_timeout_settings_select_column": {}, "e_timeout_settings_set_input": { "description": [ - 75 + 74 ], "value": [ - 75 + 74 ], "__typename": [ - 75 + 74 ] }, "e_timeout_settings_stream_cursor_input": { "initial_value": [ - 984 + 983 ], "ordering": [ - 229 + 228 ], "__typename": [ - 75 + 74 ] }, "e_timeout_settings_stream_cursor_value_input": { "description": [ - 75 + 74 ], "value": [ - 75 + 74 ], "__typename": [ - 75 + 74 ] }, "e_timeout_settings_update_column": {}, "e_timeout_settings_updates": { "_set": [ - 982 + 981 ], "where": [ - 970 + 969 ], "__typename": [ - 75 + 74 ] }, "e_tournament_stage_types": { "description": [ - 75 + 74 ], "tournament_stages": [ - 3556, + 3555, { "distinct_on": [ - 3585, + 3584, "[tournament_stages_select_column!]" ], "limit": [ @@ -14953,19 +14939,19 @@ export default { 38 ], "order_by": [ - 3582, + 3581, "[tournament_stages_order_by!]" ], "where": [ - 3568 + 3567 ] } ], "tournament_stages_aggregate": [ - 3557, + 3556, { "distinct_on": [ - 3585, + 3584, "[tournament_stages_select_column!]" ], "limit": [ @@ -14975,30 +14961,30 @@ export default { 38 ], "order_by": [ - 3582, + 3581, "[tournament_stages_order_by!]" ], "where": [ - 3568 + 3567 ] } ], "value": [ - 75 + 74 ], "__typename": [ - 75 + 74 ] }, "e_tournament_stage_types_aggregate": { "aggregate": [ - 989 + 988 ], "nodes": [ - 987 + 986 ], "__typename": [ - 75 + 74 ] }, "e_tournament_stage_types_aggregate_fields": { @@ -15006,7 +14992,7 @@ export default { 38, { "columns": [ - 1002, + 1001, "[e_tournament_stage_types_select_column!]" ], "distinct": [ @@ -15015,97 +15001,97 @@ export default { } ], "max": [ - 995 + 994 ], "min": [ - 996 + 995 ], "__typename": [ - 75 + 74 ] }, "e_tournament_stage_types_bool_exp": { "_and": [ - 990 + 989 ], "_not": [ - 990 + 989 ], "_or": [ - 990 + 989 ], "description": [ - 77 + 76 ], "tournament_stages": [ - 3568 + 3567 ], "tournament_stages_aggregate": [ - 3558 + 3557 ], "value": [ - 77 + 76 ], "__typename": [ - 75 + 74 ] }, "e_tournament_stage_types_constraint": {}, "e_tournament_stage_types_enum": {}, "e_tournament_stage_types_enum_comparison_exp": { "_eq": [ - 992 + 991 ], "_in": [ - 992 + 991 ], "_is_null": [ 3 ], "_neq": [ - 992 + 991 ], "_nin": [ - 992 + 991 ], "__typename": [ - 75 + 74 ] }, "e_tournament_stage_types_insert_input": { "description": [ - 75 + 74 ], "tournament_stages": [ - 3565 + 3564 ], "value": [ - 75 + 74 ], "__typename": [ - 75 + 74 ] }, "e_tournament_stage_types_max_fields": { "description": [ - 75 + 74 ], "value": [ - 75 + 74 ], "__typename": [ - 75 + 74 ] }, "e_tournament_stage_types_min_fields": { "description": [ - 75 + 74 ], "value": [ - 75 + 74 ], "__typename": [ - 75 + 74 ] }, "e_tournament_stage_types_mutation_response": { @@ -15113,114 +15099,114 @@ export default { 38 ], "returning": [ - 987 + 986 ], "__typename": [ - 75 + 74 ] }, "e_tournament_stage_types_obj_rel_insert_input": { "data": [ - 994 + 993 ], "on_conflict": [ - 999 + 998 ], "__typename": [ - 75 + 74 ] }, "e_tournament_stage_types_on_conflict": { "constraint": [ - 991 + 990 ], "update_columns": [ - 1006 + 1005 ], "where": [ - 990 + 989 ], "__typename": [ - 75 + 74 ] }, "e_tournament_stage_types_order_by": { "description": [ - 2016 + 2015 ], "tournament_stages_aggregate": [ - 3563 + 3562 ], "value": [ - 2016 + 2015 ], "__typename": [ - 75 + 74 ] }, "e_tournament_stage_types_pk_columns_input": { "value": [ - 75 + 74 ], "__typename": [ - 75 + 74 ] }, "e_tournament_stage_types_select_column": {}, "e_tournament_stage_types_set_input": { "description": [ - 75 + 74 ], "value": [ - 75 + 74 ], "__typename": [ - 75 + 74 ] }, "e_tournament_stage_types_stream_cursor_input": { "initial_value": [ - 1005 + 1004 ], "ordering": [ - 229 + 228 ], "__typename": [ - 75 + 74 ] }, "e_tournament_stage_types_stream_cursor_value_input": { "description": [ - 75 + 74 ], "value": [ - 75 + 74 ], "__typename": [ - 75 + 74 ] }, "e_tournament_stage_types_update_column": {}, "e_tournament_stage_types_updates": { "_set": [ - 1003 + 1002 ], "where": [ - 990 + 989 ], "__typename": [ - 75 + 74 ] }, "e_tournament_status": { "description": [ - 75 + 74 ], "tournaments": [ - 3818, + 3817, { "distinct_on": [ - 3842, + 3841, "[tournaments_select_column!]" ], "limit": [ @@ -15230,19 +15216,19 @@ export default { 38 ], "order_by": [ - 3840, + 3839, "[tournaments_order_by!]" ], "where": [ - 3829 + 3828 ] } ], "tournaments_aggregate": [ - 3819, + 3818, { "distinct_on": [ - 3842, + 3841, "[tournaments_select_column!]" ], "limit": [ @@ -15252,30 +15238,30 @@ export default { 38 ], "order_by": [ - 3840, + 3839, "[tournaments_order_by!]" ], "where": [ - 3829 + 3828 ] } ], "value": [ - 75 + 74 ], "__typename": [ - 75 + 74 ] }, "e_tournament_status_aggregate": { "aggregate": [ - 1010 + 1009 ], "nodes": [ - 1008 + 1007 ], "__typename": [ - 75 + 74 ] }, "e_tournament_status_aggregate_fields": { @@ -15283,7 +15269,7 @@ export default { 38, { "columns": [ - 1023, + 1022, "[e_tournament_status_select_column!]" ], "distinct": [ @@ -15292,97 +15278,97 @@ export default { } ], "max": [ - 1016 + 1015 ], "min": [ - 1017 + 1016 ], "__typename": [ - 75 + 74 ] }, "e_tournament_status_bool_exp": { "_and": [ - 1011 + 1010 ], "_not": [ - 1011 + 1010 ], "_or": [ - 1011 + 1010 ], "description": [ - 77 + 76 ], "tournaments": [ - 3829 + 3828 ], "tournaments_aggregate": [ - 3820 + 3819 ], "value": [ - 77 + 76 ], "__typename": [ - 75 + 74 ] }, "e_tournament_status_constraint": {}, "e_tournament_status_enum": {}, "e_tournament_status_enum_comparison_exp": { "_eq": [ - 1013 + 1012 ], "_in": [ - 1013 + 1012 ], "_is_null": [ 3 ], "_neq": [ - 1013 + 1012 ], "_nin": [ - 1013 + 1012 ], "__typename": [ - 75 + 74 ] }, "e_tournament_status_insert_input": { "description": [ - 75 + 74 ], "tournaments": [ - 3826 + 3825 ], "value": [ - 75 + 74 ], "__typename": [ - 75 + 74 ] }, "e_tournament_status_max_fields": { "description": [ - 75 + 74 ], "value": [ - 75 + 74 ], "__typename": [ - 75 + 74 ] }, "e_tournament_status_min_fields": { "description": [ - 75 + 74 ], "value": [ - 75 + 74 ], "__typename": [ - 75 + 74 ] }, "e_tournament_status_mutation_response": { @@ -15390,114 +15376,114 @@ export default { 38 ], "returning": [ - 1008 + 1007 ], "__typename": [ - 75 + 74 ] }, "e_tournament_status_obj_rel_insert_input": { "data": [ - 1015 + 1014 ], "on_conflict": [ - 1020 + 1019 ], "__typename": [ - 75 + 74 ] }, "e_tournament_status_on_conflict": { "constraint": [ - 1012 + 1011 ], "update_columns": [ - 1027 + 1026 ], "where": [ - 1011 + 1010 ], "__typename": [ - 75 + 74 ] }, "e_tournament_status_order_by": { "description": [ - 2016 + 2015 ], "tournaments_aggregate": [ - 3825 + 3824 ], "value": [ - 2016 + 2015 ], "__typename": [ - 75 + 74 ] }, "e_tournament_status_pk_columns_input": { "value": [ - 75 + 74 ], "__typename": [ - 75 + 74 ] }, "e_tournament_status_select_column": {}, "e_tournament_status_set_input": { "description": [ - 75 + 74 ], "value": [ - 75 + 74 ], "__typename": [ - 75 + 74 ] }, "e_tournament_status_stream_cursor_input": { "initial_value": [ - 1026 + 1025 ], "ordering": [ - 229 + 228 ], "__typename": [ - 75 + 74 ] }, "e_tournament_status_stream_cursor_value_input": { "description": [ - 75 + 74 ], "value": [ - 75 + 74 ], "__typename": [ - 75 + 74 ] }, "e_tournament_status_update_column": {}, "e_tournament_status_updates": { "_set": [ - 1024 + 1023 ], "where": [ - 1011 + 1010 ], "__typename": [ - 75 + 74 ] }, "e_utility_types": { "description": [ - 75 + 74 ], "player_utilities": [ - 2841, + 2840, { "distinct_on": [ - 2862, + 2861, "[player_utility_select_column!]" ], "limit": [ @@ -15507,19 +15493,19 @@ export default { 38 ], "order_by": [ - 2860, + 2859, "[player_utility_order_by!]" ], "where": [ - 2850 + 2849 ] } ], "player_utilities_aggregate": [ - 2842, + 2841, { "distinct_on": [ - 2862, + 2861, "[player_utility_select_column!]" ], "limit": [ @@ -15529,30 +15515,30 @@ export default { 38 ], "order_by": [ - 2860, + 2859, "[player_utility_order_by!]" ], "where": [ - 2850 + 2849 ] } ], "value": [ - 75 + 74 ], "__typename": [ - 75 + 74 ] }, "e_utility_types_aggregate": { "aggregate": [ - 1031 + 1030 ], "nodes": [ - 1029 + 1028 ], "__typename": [ - 75 + 74 ] }, "e_utility_types_aggregate_fields": { @@ -15560,7 +15546,7 @@ export default { 38, { "columns": [ - 1043, + 1042, "[e_utility_types_select_column!]" ], "distinct": [ @@ -15569,97 +15555,97 @@ export default { } ], "max": [ - 1037 + 1036 ], "min": [ - 1038 + 1037 ], "__typename": [ - 75 + 74 ] }, "e_utility_types_bool_exp": { "_and": [ - 1032 + 1031 ], "_not": [ - 1032 + 1031 ], "_or": [ - 1032 + 1031 ], "description": [ - 77 + 76 ], "player_utilities": [ - 2850 + 2849 ], "player_utilities_aggregate": [ - 2843 + 2842 ], "value": [ - 77 + 76 ], "__typename": [ - 75 + 74 ] }, "e_utility_types_constraint": {}, "e_utility_types_enum": {}, "e_utility_types_enum_comparison_exp": { "_eq": [ - 1034 + 1033 ], "_in": [ - 1034 + 1033 ], "_is_null": [ 3 ], "_neq": [ - 1034 + 1033 ], "_nin": [ - 1034 + 1033 ], "__typename": [ - 75 + 74 ] }, "e_utility_types_insert_input": { "description": [ - 75 + 74 ], "player_utilities": [ - 2847 + 2846 ], "value": [ - 75 + 74 ], "__typename": [ - 75 + 74 ] }, "e_utility_types_max_fields": { "description": [ - 75 + 74 ], "value": [ - 75 + 74 ], "__typename": [ - 75 + 74 ] }, "e_utility_types_min_fields": { "description": [ - 75 + 74 ], "value": [ - 75 + 74 ], "__typename": [ - 75 + 74 ] }, "e_utility_types_mutation_response": { @@ -15667,103 +15653,103 @@ export default { 38 ], "returning": [ - 1029 + 1028 ], "__typename": [ - 75 + 74 ] }, "e_utility_types_on_conflict": { "constraint": [ - 1033 + 1032 ], "update_columns": [ - 1047 + 1046 ], "where": [ - 1032 + 1031 ], "__typename": [ - 75 + 74 ] }, "e_utility_types_order_by": { "description": [ - 2016 + 2015 ], "player_utilities_aggregate": [ - 2846 + 2845 ], "value": [ - 2016 + 2015 ], "__typename": [ - 75 + 74 ] }, "e_utility_types_pk_columns_input": { "value": [ - 75 + 74 ], "__typename": [ - 75 + 74 ] }, "e_utility_types_select_column": {}, "e_utility_types_set_input": { "description": [ - 75 + 74 ], "value": [ - 75 + 74 ], "__typename": [ - 75 + 74 ] }, "e_utility_types_stream_cursor_input": { "initial_value": [ - 1046 + 1045 ], "ordering": [ - 229 + 228 ], "__typename": [ - 75 + 74 ] }, "e_utility_types_stream_cursor_value_input": { "description": [ - 75 + 74 ], "value": [ - 75 + 74 ], "__typename": [ - 75 + 74 ] }, "e_utility_types_update_column": {}, "e_utility_types_updates": { "_set": [ - 1044 + 1043 ], "where": [ - 1032 + 1031 ], "__typename": [ - 75 + 74 ] }, "e_veto_pick_types": { "description": [ - 75 + 74 ], "match_veto_picks": [ - 1645, + 1644, { "distinct_on": [ - 1663, + 1662, "[match_map_veto_picks_select_column!]" ], "limit": [ @@ -15773,19 +15759,19 @@ export default { 38 ], "order_by": [ - 1661, + 1660, "[match_map_veto_picks_order_by!]" ], "where": [ - 1652 + 1651 ] } ], "match_veto_picks_aggregate": [ - 1646, + 1645, { "distinct_on": [ - 1663, + 1662, "[match_map_veto_picks_select_column!]" ], "limit": [ @@ -15795,30 +15781,30 @@ export default { 38 ], "order_by": [ - 1661, + 1660, "[match_map_veto_picks_order_by!]" ], "where": [ - 1652 + 1651 ] } ], "value": [ - 75 + 74 ], "__typename": [ - 75 + 74 ] }, "e_veto_pick_types_aggregate": { "aggregate": [ - 1051 + 1050 ], "nodes": [ - 1049 + 1048 ], "__typename": [ - 75 + 74 ] }, "e_veto_pick_types_aggregate_fields": { @@ -15826,7 +15812,7 @@ export default { 38, { "columns": [ - 1063, + 1062, "[e_veto_pick_types_select_column!]" ], "distinct": [ @@ -15835,97 +15821,97 @@ export default { } ], "max": [ - 1057 + 1056 ], "min": [ - 1058 + 1057 ], "__typename": [ - 75 + 74 ] }, "e_veto_pick_types_bool_exp": { "_and": [ - 1052 + 1051 ], "_not": [ - 1052 + 1051 ], "_or": [ - 1052 + 1051 ], "description": [ - 77 + 76 ], "match_veto_picks": [ - 1652 + 1651 ], "match_veto_picks_aggregate": [ - 1647 + 1646 ], "value": [ - 77 + 76 ], "__typename": [ - 75 + 74 ] }, "e_veto_pick_types_constraint": {}, "e_veto_pick_types_enum": {}, "e_veto_pick_types_enum_comparison_exp": { "_eq": [ - 1054 + 1053 ], "_in": [ - 1054 + 1053 ], "_is_null": [ 3 ], "_neq": [ - 1054 + 1053 ], "_nin": [ - 1054 + 1053 ], "__typename": [ - 75 + 74 ] }, "e_veto_pick_types_insert_input": { "description": [ - 75 + 74 ], "match_veto_picks": [ - 1651 + 1650 ], "value": [ - 75 + 74 ], "__typename": [ - 75 + 74 ] }, "e_veto_pick_types_max_fields": { "description": [ - 75 + 74 ], "value": [ - 75 + 74 ], "__typename": [ - 75 + 74 ] }, "e_veto_pick_types_min_fields": { "description": [ - 75 + 74 ], "value": [ - 75 + 74 ], "__typename": [ - 75 + 74 ] }, "e_veto_pick_types_mutation_response": { @@ -15933,114 +15919,114 @@ export default { 38 ], "returning": [ - 1049 + 1048 ], "__typename": [ - 75 + 74 ] }, "e_veto_pick_types_on_conflict": { "constraint": [ - 1053 + 1052 ], "update_columns": [ - 1067 + 1066 ], "where": [ - 1052 + 1051 ], "__typename": [ - 75 + 74 ] }, "e_veto_pick_types_order_by": { "description": [ - 2016 + 2015 ], "match_veto_picks_aggregate": [ - 1650 + 1649 ], "value": [ - 2016 + 2015 ], "__typename": [ - 75 + 74 ] }, "e_veto_pick_types_pk_columns_input": { "value": [ - 75 + 74 ], "__typename": [ - 75 + 74 ] }, "e_veto_pick_types_select_column": {}, "e_veto_pick_types_set_input": { "description": [ - 75 + 74 ], "value": [ - 75 + 74 ], "__typename": [ - 75 + 74 ] }, "e_veto_pick_types_stream_cursor_input": { "initial_value": [ - 1066 + 1065 ], "ordering": [ - 229 + 228 ], "__typename": [ - 75 + 74 ] }, "e_veto_pick_types_stream_cursor_value_input": { "description": [ - 75 + 74 ], "value": [ - 75 + 74 ], "__typename": [ - 75 + 74 ] }, "e_veto_pick_types_update_column": {}, "e_veto_pick_types_updates": { "_set": [ - 1064 + 1063 ], "where": [ - 1052 + 1051 ], "__typename": [ - 75 + 74 ] }, "e_winning_reasons": { "description": [ - 75 + 74 ], "value": [ - 75 + 74 ], "__typename": [ - 75 + 74 ] }, "e_winning_reasons_aggregate": { "aggregate": [ - 1071 + 1070 ], "nodes": [ - 1069 + 1068 ], "__typename": [ - 75 + 74 ] }, "e_winning_reasons_aggregate_fields": { @@ -16048,7 +16034,7 @@ export default { 38, { "columns": [ - 1083, + 1082, "[e_winning_reasons_select_column!]" ], "distinct": [ @@ -16057,88 +16043,88 @@ export default { } ], "max": [ - 1077 + 1076 ], "min": [ - 1078 + 1077 ], "__typename": [ - 75 + 74 ] }, "e_winning_reasons_bool_exp": { "_and": [ - 1072 + 1071 ], "_not": [ - 1072 + 1071 ], "_or": [ - 1072 + 1071 ], "description": [ - 77 + 76 ], "value": [ - 77 + 76 ], "__typename": [ - 75 + 74 ] }, "e_winning_reasons_constraint": {}, "e_winning_reasons_enum": {}, "e_winning_reasons_enum_comparison_exp": { "_eq": [ - 1074 + 1073 ], "_in": [ - 1074 + 1073 ], "_is_null": [ 3 ], "_neq": [ - 1074 + 1073 ], "_nin": [ - 1074 + 1073 ], "__typename": [ - 75 + 74 ] }, "e_winning_reasons_insert_input": { "description": [ - 75 + 74 ], "value": [ - 75 + 74 ], "__typename": [ - 75 + 74 ] }, "e_winning_reasons_max_fields": { "description": [ - 75 + 74 ], "value": [ - 75 + 74 ], "__typename": [ - 75 + 74 ] }, "e_winning_reasons_min_fields": { "description": [ - 75 + 74 ], "value": [ - 75 + 74 ], "__typename": [ - 75 + 74 ] }, "e_winning_reasons_mutation_response": { @@ -16146,161 +16132,161 @@ export default { 38 ], "returning": [ - 1069 + 1068 ], "__typename": [ - 75 + 74 ] }, "e_winning_reasons_on_conflict": { "constraint": [ - 1073 + 1072 ], "update_columns": [ - 1087 + 1086 ], "where": [ - 1072 + 1071 ], "__typename": [ - 75 + 74 ] }, "e_winning_reasons_order_by": { "description": [ - 2016 + 2015 ], "value": [ - 2016 + 2015 ], "__typename": [ - 75 + 74 ] }, "e_winning_reasons_pk_columns_input": { "value": [ - 75 + 74 ], "__typename": [ - 75 + 74 ] }, "e_winning_reasons_select_column": {}, "e_winning_reasons_set_input": { "description": [ - 75 + 74 ], "value": [ - 75 + 74 ], "__typename": [ - 75 + 74 ] }, "e_winning_reasons_stream_cursor_input": { "initial_value": [ - 1086 + 1085 ], "ordering": [ - 229 + 228 ], "__typename": [ - 75 + 74 ] }, "e_winning_reasons_stream_cursor_value_input": { "description": [ - 75 + 74 ], "value": [ - 75 + 74 ], "__typename": [ - 75 + 74 ] }, "e_winning_reasons_update_column": {}, "e_winning_reasons_updates": { "_set": [ - 1084 + 1083 ], "where": [ - 1072 + 1071 ], "__typename": [ - 75 + 74 ] }, "float8": {}, "float8_comparison_exp": { "_eq": [ - 1089 + 1088 ], "_gt": [ - 1089 + 1088 ], "_gte": [ - 1089 + 1088 ], "_in": [ - 1089 + 1088 ], "_is_null": [ 3 ], "_lt": [ - 1089 + 1088 ], "_lte": [ - 1089 + 1088 ], "_neq": [ - 1089 + 1088 ], "_nin": [ - 1089 + 1088 ], "__typename": [ - 75 + 74 ] }, "friends": { "e_status": [ - 518 + 517 ], "other_player_steam_id": [ - 174 + 173 ], "player_steam_id": [ - 174 + 173 ], "status": [ - 523 + 522 ], "__typename": [ - 75 + 74 ] }, "friends_aggregate": { "aggregate": [ - 1093 + 1092 ], "nodes": [ - 1091 + 1090 ], "__typename": [ - 75 + 74 ] }, "friends_aggregate_fields": { "avg": [ - 1094 + 1093 ], "count": [ 38, { "columns": [ - 1105, + 1104, "[friends_select_column!]" ], "distinct": [ @@ -16309,34 +16295,34 @@ export default { } ], "max": [ - 1099 + 1098 ], "min": [ - 1100 + 1099 ], "stddev": [ - 1107 + 1106 ], "stddev_pop": [ - 1108 + 1107 ], "stddev_samp": [ - 1109 + 1108 ], "sum": [ - 1112 + 1111 ], "var_pop": [ - 1115 + 1114 ], "var_samp": [ - 1116 + 1115 ], "variance": [ - 1117 + 1116 ], "__typename": [ - 75 + 74 ] }, "friends_avg_fields": { @@ -16347,84 +16333,84 @@ export default { 29 ], "__typename": [ - 75 + 74 ] }, "friends_bool_exp": { "_and": [ - 1095 + 1094 ], "_not": [ - 1095 + 1094 ], "_or": [ - 1095 + 1094 ], "e_status": [ - 521 + 520 ], "other_player_steam_id": [ - 176 + 175 ], "player_steam_id": [ - 176 + 175 ], "status": [ - 524 + 523 ], "__typename": [ - 75 + 74 ] }, "friends_constraint": {}, "friends_inc_input": { "other_player_steam_id": [ - 174 + 173 ], "player_steam_id": [ - 174 + 173 ], "__typename": [ - 75 + 74 ] }, "friends_insert_input": { "e_status": [ - 529 + 528 ], "other_player_steam_id": [ - 174 + 173 ], "player_steam_id": [ - 174 + 173 ], "status": [ - 523 + 522 ], "__typename": [ - 75 + 74 ] }, "friends_max_fields": { "other_player_steam_id": [ - 174 + 173 ], "player_steam_id": [ - 174 + 173 ], "__typename": [ - 75 + 74 ] }, "friends_min_fields": { "other_player_steam_id": [ - 174 + 173 ], "player_steam_id": [ - 174 + 173 ], "__typename": [ - 75 + 74 ] }, "friends_mutation_response": { @@ -16432,67 +16418,67 @@ export default { 38 ], "returning": [ - 1091 + 1090 ], "__typename": [ - 75 + 74 ] }, "friends_on_conflict": { "constraint": [ - 1096 + 1095 ], "update_columns": [ - 1113 + 1112 ], "where": [ - 1095 + 1094 ], "__typename": [ - 75 + 74 ] }, "friends_order_by": { "e_status": [ - 531 + 530 ], "other_player_steam_id": [ - 2016 + 2015 ], "player_steam_id": [ - 2016 + 2015 ], "status": [ - 2016 + 2015 ], "__typename": [ - 75 + 74 ] }, "friends_pk_columns_input": { "other_player_steam_id": [ - 174 + 173 ], "player_steam_id": [ - 174 + 173 ], "__typename": [ - 75 + 74 ] }, "friends_select_column": {}, "friends_set_input": { "other_player_steam_id": [ - 174 + 173 ], "player_steam_id": [ - 174 + 173 ], "status": [ - 523 + 522 ], "__typename": [ - 75 + 74 ] }, "friends_stddev_fields": { @@ -16503,7 +16489,7 @@ export default { 29 ], "__typename": [ - 75 + 74 ] }, "friends_stddev_pop_fields": { @@ -16514,7 +16500,7 @@ export default { 29 ], "__typename": [ - 75 + 74 ] }, "friends_stddev_samp_fields": { @@ -16525,58 +16511,58 @@ export default { 29 ], "__typename": [ - 75 + 74 ] }, "friends_stream_cursor_input": { "initial_value": [ - 1111 + 1110 ], "ordering": [ - 229 + 228 ], "__typename": [ - 75 + 74 ] }, "friends_stream_cursor_value_input": { "other_player_steam_id": [ - 174 + 173 ], "player_steam_id": [ - 174 + 173 ], "status": [ - 523 + 522 ], "__typename": [ - 75 + 74 ] }, "friends_sum_fields": { "other_player_steam_id": [ - 174 + 173 ], "player_steam_id": [ - 174 + 173 ], "__typename": [ - 75 + 74 ] }, "friends_update_column": {}, "friends_updates": { "_inc": [ - 1097 + 1096 ], "_set": [ - 1106 + 1105 ], "where": [ - 1095 + 1094 ], "__typename": [ - 75 + 74 ] }, "friends_var_pop_fields": { @@ -16587,7 +16573,7 @@ export default { 29 ], "__typename": [ - 75 + 74 ] }, "friends_var_samp_fields": { @@ -16598,7 +16584,7 @@ export default { 29 ], "__typename": [ - 75 + 74 ] }, "friends_variance_fields": { @@ -16609,7 +16595,7 @@ export default { 29 ], "__typename": [ - 75 + 74 ] }, "game_server_nodes": { @@ -16623,18 +16609,18 @@ export default { 38 ], "cpu_frequency_info": [ - 1240, + 1239, { "path": [ - 75 + 74 ] } ], "cpu_governor_info": [ - 1240, + 1239, { "path": [ - 75 + 74 ] } ], @@ -16645,18 +16631,18 @@ export default { 38 ], "cs2_launch_options": [ - 1240, + 1239, { "path": [ - 75 + 74 ] } ], "cs2_video_settings": [ - 1240, + 1239, { "path": [ - 75 + 74 ] } ], @@ -16673,10 +16659,10 @@ export default { 38 ], "e_region": [ - 2971 + 2970 ], "e_status": [ - 559 + 558 ], "enabled": [ 3 @@ -16694,10 +16680,10 @@ export default { 3 ], "gpu_info": [ - 1240, + 1239, { "path": [ - 75 + 74 ] } ], @@ -16708,43 +16694,43 @@ export default { 3 ], "id": [ - 75 + 74 ], "label": [ - 75 + 74 ], "lan_ip": [ - 1236 + 1235 ], "node_ip": [ - 1236 + 1235 ], "offline_at": [ - 3467 + 3466 ], "pin_build_id": [ 38 ], "pin_plugin_version": [ - 75 + 74 ], "pinned_version": [ - 1169 + 1168 ], "plugin_supported": [ 3 ], "public_ip": [ - 1236 + 1235 ], "region": [ - 75 + 74 ], "servers": [ - 2998, + 2997, { "distinct_on": [ - 3022, + 3021, "[servers_select_column!]" ], "limit": [ @@ -16754,19 +16740,19 @@ export default { 38 ], "order_by": [ - 3020, + 3019, "[servers_order_by!]" ], "where": [ - 3009 + 3008 ] } ], "servers_aggregate": [ - 2999, + 2998, { "distinct_on": [ - 3022, + 3021, "[servers_select_column!]" ], "limit": [ @@ -16776,28 +16762,28 @@ export default { 38 ], "order_by": [ - 3020, + 3019, "[servers_order_by!]" ], "where": [ - 3009 + 3008 ] } ], "shader_bake_progress": [ - 2014 + 2013 ], "shader_bake_progress_stage": [ - 75 + 74 ], "shader_bake_status": [ - 75 + 74 ], "shader_bake_status_history": [ - 1240, + 1239, { "path": [ - 75 + 74 ] } ], @@ -16805,7 +16791,7 @@ export default { 38 ], "status": [ - 564 + 563 ], "supports_cpu_pinning": [ 3 @@ -16814,106 +16800,106 @@ export default { 3 ], "token": [ - 75 + 74 ], "total_server_count": [ 38 ], "update_status": [ - 75 + 74 ], "version": [ - 1169 + 1168 ], "__typename": [ - 75 + 74 ] }, "game_server_nodes_aggregate": { "aggregate": [ - 1124 + 1123 ], "nodes": [ - 1118 + 1117 ], "__typename": [ - 75 + 74 ] }, "game_server_nodes_aggregate_bool_exp": { "bool_and": [ - 1121 + 1120 ], "bool_or": [ - 1122 + 1121 ], "count": [ - 1123 + 1122 ], "__typename": [ - 75 + 74 ] }, "game_server_nodes_aggregate_bool_exp_bool_and": { "arguments": [ - 1148 + 1147 ], "distinct": [ 3 ], "filter": [ - 1130 + 1129 ], "predicate": [ 4 ], "__typename": [ - 75 + 74 ] }, "game_server_nodes_aggregate_bool_exp_bool_or": { "arguments": [ - 1149 + 1148 ], "distinct": [ 3 ], "filter": [ - 1130 + 1129 ], "predicate": [ 4 ], "__typename": [ - 75 + 74 ] }, "game_server_nodes_aggregate_bool_exp_count": { "arguments": [ - 1147 + 1146 ], "distinct": [ 3 ], "filter": [ - 1130 + 1129 ], "predicate": [ 39 ], "__typename": [ - 75 + 74 ] }, "game_server_nodes_aggregate_fields": { "avg": [ - 1128 + 1127 ], "count": [ 38, { "columns": [ - 1147, + 1146, "[game_server_nodes_select_column!]" ], "distinct": [ @@ -16921,6 +16907,44 @@ export default { ] } ], + "max": [ + 1136 + ], + "min": [ + 1138 + ], + "stddev": [ + 1150 + ], + "stddev_pop": [ + 1152 + ], + "stddev_samp": [ + 1154 + ], + "sum": [ + 1158 + ], + "var_pop": [ + 1162 + ], + "var_samp": [ + 1164 + ], + "variance": [ + 1166 + ], + "__typename": [ + 74 + ] + }, + "game_server_nodes_aggregate_order_by": { + "avg": [ + 1128 + ], + "count": [ + 2015 + ], "max": [ 1137 ], @@ -16949,79 +16973,41 @@ export default { 1167 ], "__typename": [ - 75 - ] - }, - "game_server_nodes_aggregate_order_by": { - "avg": [ - 1129 - ], - "count": [ - 2016 - ], - "max": [ - 1138 - ], - "min": [ - 1140 - ], - "stddev": [ - 1152 - ], - "stddev_pop": [ - 1154 - ], - "stddev_samp": [ - 1156 - ], - "sum": [ - 1160 - ], - "var_pop": [ - 1164 - ], - "var_samp": [ - 1166 - ], - "variance": [ - 1168 - ], - "__typename": [ - 75 + 74 ] }, "game_server_nodes_append_input": { "cpu_frequency_info": [ - 1240 + 1239 ], "cpu_governor_info": [ - 1240 + 1239 ], "cs2_launch_options": [ - 1240 + 1239 ], "cs2_video_settings": [ - 1240 + 1239 ], "gpu_info": [ - 1240 + 1239 ], "shader_bake_status_history": [ - 1240 + 1239 ], "__typename": [ - 75 + 74 ] }, "game_server_nodes_arr_rel_insert_input": { "data": [ - 1136 + 1135 ], "on_conflict": [ - 1143 + 1142 ], "__typename": [ - 75 + 74 ] }, "game_server_nodes_avg_fields": { @@ -17068,59 +17054,59 @@ export default { 38 ], "__typename": [ - 75 + 74 ] }, "game_server_nodes_avg_order_by": { "build_id": [ - 2016 + 2015 ], "cpu_cores_per_socket": [ - 2016 + 2015 ], "cpu_sockets": [ - 2016 + 2015 ], "cpu_threads_per_core": [ - 2016 + 2015 ], "csgo_build_id": [ - 2016 + 2015 ], "demo_network_limiter": [ - 2016 + 2015 ], "disk_available_gb": [ - 2016 + 2015 ], "disk_used_percent": [ - 2016 + 2015 ], "end_port_range": [ - 2016 + 2015 ], "pin_build_id": [ - 2016 + 2015 ], "shader_bake_progress": [ - 2016 + 2015 ], "start_port_range": [ - 2016 + 2015 ], "__typename": [ - 75 + 74 ] }, "game_server_nodes_bool_exp": { "_and": [ - 1130 + 1129 ], "_not": [ - 1130 + 1129 ], "_or": [ - 1130 + 1129 ], "available_server_count": [ 39 @@ -17132,10 +17118,10 @@ export default { 39 ], "cpu_frequency_info": [ - 1242 + 1241 ], "cpu_governor_info": [ - 1242 + 1241 ], "cpu_sockets": [ 39 @@ -17144,10 +17130,10 @@ export default { 39 ], "cs2_launch_options": [ - 1242 + 1241 ], "cs2_video_settings": [ - 1242 + 1241 ], "csgo_build_id": [ 39 @@ -17162,10 +17148,10 @@ export default { 39 ], "e_region": [ - 2975 + 2974 ], "e_status": [ - 562 + 561 ], "enabled": [ 4 @@ -17183,7 +17169,7 @@ export default { 4 ], "gpu_info": [ - 1242 + 1241 ], "gpu_rendering_enabled": [ 4 @@ -17192,61 +17178,61 @@ export default { 4 ], "id": [ - 77 + 76 ], "label": [ - 77 + 76 ], "lan_ip": [ - 1237 + 1236 ], "node_ip": [ - 1237 + 1236 ], "offline_at": [ - 3468 + 3467 ], "pin_build_id": [ 39 ], "pin_plugin_version": [ - 77 + 76 ], "pinned_version": [ - 1174 + 1173 ], "plugin_supported": [ 4 ], "public_ip": [ - 1237 + 1236 ], "region": [ - 77 + 76 ], "servers": [ - 3009 + 3008 ], "servers_aggregate": [ - 3000 + 2999 ], "shader_bake_progress": [ - 2015 + 2014 ], "shader_bake_progress_stage": [ - 77 + 76 ], "shader_bake_status": [ - 77 + 76 ], "shader_bake_status_history": [ - 1242 + 1241 ], "start_port_range": [ 39 ], "status": [ - 565 + 564 ], "supports_cpu_pinning": [ 4 @@ -17255,43 +17241,43 @@ export default { 4 ], "token": [ - 77 + 76 ], "total_server_count": [ 39 ], "update_status": [ - 77 + 76 ], "version": [ - 1174 + 1173 ], "__typename": [ - 75 + 74 ] }, "game_server_nodes_constraint": {}, "game_server_nodes_delete_at_path_input": { "cpu_frequency_info": [ - 75 + 74 ], "cpu_governor_info": [ - 75 + 74 ], "cs2_launch_options": [ - 75 + 74 ], "cs2_video_settings": [ - 75 + 74 ], "gpu_info": [ - 75 + 74 ], "shader_bake_status_history": [ - 75 + 74 ], "__typename": [ - 75 + 74 ] }, "game_server_nodes_delete_elem_input": { @@ -17314,30 +17300,30 @@ export default { 38 ], "__typename": [ - 75 + 74 ] }, "game_server_nodes_delete_key_input": { "cpu_frequency_info": [ - 75 + 74 ], "cpu_governor_info": [ - 75 + 74 ], "cs2_launch_options": [ - 75 + 74 ], "cs2_video_settings": [ - 75 + 74 ], "gpu_info": [ - 75 + 74 ], "shader_bake_status_history": [ - 75 + 74 ], "__typename": [ - 75 + 74 ] }, "game_server_nodes_inc_input": { @@ -17372,13 +17358,13 @@ export default { 38 ], "shader_bake_progress": [ - 2014 + 2013 ], "start_port_range": [ 38 ], "__typename": [ - 75 + 74 ] }, "game_server_nodes_insert_input": { @@ -17389,10 +17375,10 @@ export default { 38 ], "cpu_frequency_info": [ - 1240 + 1239 ], "cpu_governor_info": [ - 1240 + 1239 ], "cpu_sockets": [ 38 @@ -17401,10 +17387,10 @@ export default { 38 ], "cs2_launch_options": [ - 1240 + 1239 ], "cs2_video_settings": [ - 1240 + 1239 ], "csgo_build_id": [ 38 @@ -17419,10 +17405,10 @@ export default { 38 ], "e_region": [ - 2981 + 2980 ], "e_status": [ - 570 + 569 ], "enabled": [ 3 @@ -17440,7 +17426,7 @@ export default { 3 ], "gpu_info": [ - 1240 + 1239 ], "gpu_rendering_enabled": [ 3 @@ -17449,55 +17435,55 @@ export default { 3 ], "id": [ - 75 + 74 ], "label": [ - 75 + 74 ], "lan_ip": [ - 1236 + 1235 ], "node_ip": [ - 1236 + 1235 ], "offline_at": [ - 3467 + 3466 ], "pin_build_id": [ 38 ], "pin_plugin_version": [ - 75 + 74 ], "pinned_version": [ - 1184 + 1183 ], "public_ip": [ - 1236 + 1235 ], "region": [ - 75 + 74 ], "servers": [ - 3006 + 3005 ], "shader_bake_progress": [ - 2014 + 2013 ], "shader_bake_progress_stage": [ - 75 + 74 ], "shader_bake_status": [ - 75 + 74 ], "shader_bake_status_history": [ - 1240 + 1239 ], "start_port_range": [ 38 ], "status": [ - 564 + 563 ], "supports_cpu_pinning": [ 3 @@ -17506,16 +17492,16 @@ export default { 3 ], "token": [ - 75 + 74 ], "update_status": [ - 75 + 74 ], "version": [ - 1184 + 1183 ], "__typename": [ - 75 + 74 ] }, "game_server_nodes_max_fields": { @@ -17550,114 +17536,114 @@ export default { 38 ], "id": [ - 75 + 74 ], "label": [ - 75 + 74 ], "offline_at": [ - 3467 + 3466 ], "pin_build_id": [ 38 ], "pin_plugin_version": [ - 75 + 74 ], "region": [ - 75 + 74 ], "shader_bake_progress": [ - 2014 + 2013 ], "shader_bake_progress_stage": [ - 75 + 74 ], "shader_bake_status": [ - 75 + 74 ], "start_port_range": [ 38 ], "token": [ - 75 + 74 ], "total_server_count": [ 38 ], "update_status": [ - 75 + 74 ], "__typename": [ - 75 + 74 ] }, "game_server_nodes_max_order_by": { "build_id": [ - 2016 + 2015 ], "cpu_cores_per_socket": [ - 2016 + 2015 ], "cpu_sockets": [ - 2016 + 2015 ], "cpu_threads_per_core": [ - 2016 + 2015 ], "csgo_build_id": [ - 2016 + 2015 ], "demo_network_limiter": [ - 2016 + 2015 ], "disk_available_gb": [ - 2016 + 2015 ], "disk_used_percent": [ - 2016 + 2015 ], "end_port_range": [ - 2016 + 2015 ], "id": [ - 2016 + 2015 ], "label": [ - 2016 + 2015 ], "offline_at": [ - 2016 + 2015 ], "pin_build_id": [ - 2016 + 2015 ], "pin_plugin_version": [ - 2016 + 2015 ], "region": [ - 2016 + 2015 ], "shader_bake_progress": [ - 2016 + 2015 ], "shader_bake_progress_stage": [ - 2016 + 2015 ], "shader_bake_status": [ - 2016 + 2015 ], "start_port_range": [ - 2016 + 2015 ], "token": [ - 2016 + 2015 ], "update_status": [ - 2016 + 2015 ], "__typename": [ - 75 + 74 ] }, "game_server_nodes_min_fields": { @@ -17692,114 +17678,114 @@ export default { 38 ], "id": [ - 75 + 74 ], "label": [ - 75 + 74 ], "offline_at": [ - 3467 + 3466 ], "pin_build_id": [ 38 ], "pin_plugin_version": [ - 75 + 74 ], "region": [ - 75 + 74 ], "shader_bake_progress": [ - 2014 + 2013 ], "shader_bake_progress_stage": [ - 75 + 74 ], "shader_bake_status": [ - 75 + 74 ], "start_port_range": [ 38 ], "token": [ - 75 + 74 ], "total_server_count": [ 38 ], "update_status": [ - 75 + 74 ], "__typename": [ - 75 + 74 ] }, "game_server_nodes_min_order_by": { "build_id": [ - 2016 + 2015 ], "cpu_cores_per_socket": [ - 2016 + 2015 ], "cpu_sockets": [ - 2016 + 2015 ], "cpu_threads_per_core": [ - 2016 + 2015 ], "csgo_build_id": [ - 2016 + 2015 ], "demo_network_limiter": [ - 2016 + 2015 ], "disk_available_gb": [ - 2016 + 2015 ], "disk_used_percent": [ - 2016 + 2015 ], "end_port_range": [ - 2016 + 2015 ], "id": [ - 2016 + 2015 ], "label": [ - 2016 + 2015 ], "offline_at": [ - 2016 + 2015 ], "pin_build_id": [ - 2016 + 2015 ], "pin_plugin_version": [ - 2016 + 2015 ], "region": [ - 2016 + 2015 ], "shader_bake_progress": [ - 2016 + 2015 ], "shader_bake_progress_stage": [ - 2016 + 2015 ], "shader_bake_status": [ - 2016 + 2015 ], "start_port_range": [ - 2016 + 2015 ], "token": [ - 2016 + 2015 ], "update_status": [ - 2016 + 2015 ], "__typename": [ - 75 + 74 ] }, "game_server_nodes_mutation_response": { @@ -17807,212 +17793,212 @@ export default { 38 ], "returning": [ - 1118 + 1117 ], "__typename": [ - 75 + 74 ] }, "game_server_nodes_obj_rel_insert_input": { "data": [ - 1136 + 1135 ], "on_conflict": [ - 1143 + 1142 ], "__typename": [ - 75 + 74 ] }, "game_server_nodes_on_conflict": { "constraint": [ - 1131 + 1130 ], "update_columns": [ - 1161 + 1160 ], "where": [ - 1130 + 1129 ], "__typename": [ - 75 + 74 ] }, "game_server_nodes_order_by": { "available_server_count": [ - 2016 + 2015 ], "build_id": [ - 2016 + 2015 ], "cpu_cores_per_socket": [ - 2016 + 2015 ], "cpu_frequency_info": [ - 2016 + 2015 ], "cpu_governor_info": [ - 2016 + 2015 ], "cpu_sockets": [ - 2016 + 2015 ], "cpu_threads_per_core": [ - 2016 + 2015 ], "cs2_launch_options": [ - 2016 + 2015 ], "cs2_video_settings": [ - 2016 + 2015 ], "csgo_build_id": [ - 2016 + 2015 ], "demo_network_limiter": [ - 2016 + 2015 ], "disk_available_gb": [ - 2016 + 2015 ], "disk_used_percent": [ - 2016 + 2015 ], "e_region": [ - 2983 + 2982 ], "e_status": [ - 572 + 571 ], "enabled": [ - 2016 + 2015 ], "enabled_for_match_making": [ - 2016 + 2015 ], "end_port_range": [ - 2016 + 2015 ], "gpu": [ - 2016 + 2015 ], "gpu_demos_enabled": [ - 2016 + 2015 ], "gpu_info": [ - 2016 + 2015 ], "gpu_rendering_enabled": [ - 2016 + 2015 ], "gpu_streaming_enabled": [ - 2016 + 2015 ], "id": [ - 2016 + 2015 ], "label": [ - 2016 + 2015 ], "lan_ip": [ - 2016 + 2015 ], "node_ip": [ - 2016 + 2015 ], "offline_at": [ - 2016 + 2015 ], "pin_build_id": [ - 2016 + 2015 ], "pin_plugin_version": [ - 2016 + 2015 ], "pinned_version": [ - 1186 + 1185 ], "plugin_supported": [ - 2016 + 2015 ], "public_ip": [ - 2016 + 2015 ], "region": [ - 2016 + 2015 ], "servers_aggregate": [ - 3005 + 3004 ], "shader_bake_progress": [ - 2016 + 2015 ], "shader_bake_progress_stage": [ - 2016 + 2015 ], "shader_bake_status": [ - 2016 + 2015 ], "shader_bake_status_history": [ - 2016 + 2015 ], "start_port_range": [ - 2016 + 2015 ], "status": [ - 2016 + 2015 ], "supports_cpu_pinning": [ - 2016 + 2015 ], "supports_low_latency": [ - 2016 + 2015 ], "token": [ - 2016 + 2015 ], "total_server_count": [ - 2016 + 2015 ], "update_status": [ - 2016 + 2015 ], "version": [ - 1186 + 1185 ], "__typename": [ - 75 + 74 ] }, "game_server_nodes_pk_columns_input": { "id": [ - 75 + 74 ], "__typename": [ - 75 + 74 ] }, "game_server_nodes_prepend_input": { "cpu_frequency_info": [ - 1240 + 1239 ], "cpu_governor_info": [ - 1240 + 1239 ], "cs2_launch_options": [ - 1240 + 1239 ], "cs2_video_settings": [ - 1240 + 1239 ], "gpu_info": [ - 1240 + 1239 ], "shader_bake_status_history": [ - 1240 + 1239 ], "__typename": [ - 75 + 74 ] }, "game_server_nodes_select_column": {}, @@ -18026,10 +18012,10 @@ export default { 38 ], "cpu_frequency_info": [ - 1240 + 1239 ], "cpu_governor_info": [ - 1240 + 1239 ], "cpu_sockets": [ 38 @@ -18038,10 +18024,10 @@ export default { 38 ], "cs2_launch_options": [ - 1240 + 1239 ], "cs2_video_settings": [ - 1240 + 1239 ], "csgo_build_id": [ 38 @@ -18071,7 +18057,7 @@ export default { 3 ], "gpu_info": [ - 1240 + 1239 ], "gpu_rendering_enabled": [ 3 @@ -18080,49 +18066,49 @@ export default { 3 ], "id": [ - 75 + 74 ], "label": [ - 75 + 74 ], "lan_ip": [ - 1236 + 1235 ], "node_ip": [ - 1236 + 1235 ], "offline_at": [ - 3467 + 3466 ], "pin_build_id": [ 38 ], "pin_plugin_version": [ - 75 + 74 ], "public_ip": [ - 1236 + 1235 ], "region": [ - 75 + 74 ], "shader_bake_progress": [ - 2014 + 2013 ], "shader_bake_progress_stage": [ - 75 + 74 ], "shader_bake_status": [ - 75 + 74 ], "shader_bake_status_history": [ - 1240 + 1239 ], "start_port_range": [ 38 ], "status": [ - 564 + 563 ], "supports_cpu_pinning": [ 3 @@ -18131,13 +18117,13 @@ export default { 3 ], "token": [ - 75 + 74 ], "update_status": [ - 75 + 74 ], "__typename": [ - 75 + 74 ] }, "game_server_nodes_stddev_fields": { @@ -18184,48 +18170,48 @@ export default { 38 ], "__typename": [ - 75 + 74 ] }, "game_server_nodes_stddev_order_by": { "build_id": [ - 2016 + 2015 ], "cpu_cores_per_socket": [ - 2016 + 2015 ], "cpu_sockets": [ - 2016 + 2015 ], "cpu_threads_per_core": [ - 2016 + 2015 ], "csgo_build_id": [ - 2016 + 2015 ], "demo_network_limiter": [ - 2016 + 2015 ], "disk_available_gb": [ - 2016 + 2015 ], "disk_used_percent": [ - 2016 + 2015 ], "end_port_range": [ - 2016 + 2015 ], "pin_build_id": [ - 2016 + 2015 ], "shader_bake_progress": [ - 2016 + 2015 ], "start_port_range": [ - 2016 + 2015 ], "__typename": [ - 75 + 74 ] }, "game_server_nodes_stddev_pop_fields": { @@ -18272,48 +18258,48 @@ export default { 38 ], "__typename": [ - 75 + 74 ] }, "game_server_nodes_stddev_pop_order_by": { "build_id": [ - 2016 + 2015 ], "cpu_cores_per_socket": [ - 2016 + 2015 ], "cpu_sockets": [ - 2016 + 2015 ], "cpu_threads_per_core": [ - 2016 + 2015 ], "csgo_build_id": [ - 2016 + 2015 ], "demo_network_limiter": [ - 2016 + 2015 ], "disk_available_gb": [ - 2016 + 2015 ], "disk_used_percent": [ - 2016 + 2015 ], "end_port_range": [ - 2016 + 2015 ], "pin_build_id": [ - 2016 + 2015 ], "shader_bake_progress": [ - 2016 + 2015 ], "start_port_range": [ - 2016 + 2015 ], "__typename": [ - 75 + 74 ] }, "game_server_nodes_stddev_samp_fields": { @@ -18360,59 +18346,59 @@ export default { 38 ], "__typename": [ - 75 + 74 ] }, "game_server_nodes_stddev_samp_order_by": { "build_id": [ - 2016 + 2015 ], "cpu_cores_per_socket": [ - 2016 + 2015 ], "cpu_sockets": [ - 2016 + 2015 ], "cpu_threads_per_core": [ - 2016 + 2015 ], "csgo_build_id": [ - 2016 + 2015 ], "demo_network_limiter": [ - 2016 + 2015 ], "disk_available_gb": [ - 2016 + 2015 ], "disk_used_percent": [ - 2016 + 2015 ], "end_port_range": [ - 2016 + 2015 ], "pin_build_id": [ - 2016 + 2015 ], "shader_bake_progress": [ - 2016 + 2015 ], "start_port_range": [ - 2016 + 2015 ], "__typename": [ - 75 + 74 ] }, "game_server_nodes_stream_cursor_input": { "initial_value": [ - 1158 + 1157 ], "ordering": [ - 229 + 228 ], "__typename": [ - 75 + 74 ] }, "game_server_nodes_stream_cursor_value_input": { @@ -18423,10 +18409,10 @@ export default { 38 ], "cpu_frequency_info": [ - 1240 + 1239 ], "cpu_governor_info": [ - 1240 + 1239 ], "cpu_sockets": [ 38 @@ -18435,10 +18421,10 @@ export default { 38 ], "cs2_launch_options": [ - 1240 + 1239 ], "cs2_video_settings": [ - 1240 + 1239 ], "csgo_build_id": [ 38 @@ -18468,7 +18454,7 @@ export default { 3 ], "gpu_info": [ - 1240 + 1239 ], "gpu_rendering_enabled": [ 3 @@ -18477,49 +18463,49 @@ export default { 3 ], "id": [ - 75 + 74 ], "label": [ - 75 + 74 ], "lan_ip": [ - 1236 + 1235 ], "node_ip": [ - 1236 + 1235 ], "offline_at": [ - 3467 + 3466 ], "pin_build_id": [ 38 ], "pin_plugin_version": [ - 75 + 74 ], "public_ip": [ - 1236 + 1235 ], "region": [ - 75 + 74 ], "shader_bake_progress": [ - 2014 + 2013 ], "shader_bake_progress_stage": [ - 75 + 74 ], "shader_bake_status": [ - 75 + 74 ], "shader_bake_status_history": [ - 1240 + 1239 ], "start_port_range": [ 38 ], "status": [ - 564 + 563 ], "supports_cpu_pinning": [ 3 @@ -18528,13 +18514,13 @@ export default { 3 ], "token": [ - 75 + 74 ], "update_status": [ - 75 + 74 ], "__typename": [ - 75 + 74 ] }, "game_server_nodes_sum_fields": { @@ -18572,7 +18558,7 @@ export default { 38 ], "shader_bake_progress": [ - 2014 + 2013 ], "start_port_range": [ 38 @@ -18581,78 +18567,78 @@ export default { 38 ], "__typename": [ - 75 + 74 ] }, "game_server_nodes_sum_order_by": { "build_id": [ - 2016 + 2015 ], "cpu_cores_per_socket": [ - 2016 + 2015 ], "cpu_sockets": [ - 2016 + 2015 ], "cpu_threads_per_core": [ - 2016 + 2015 ], "csgo_build_id": [ - 2016 + 2015 ], "demo_network_limiter": [ - 2016 + 2015 ], "disk_available_gb": [ - 2016 + 2015 ], "disk_used_percent": [ - 2016 + 2015 ], "end_port_range": [ - 2016 + 2015 ], "pin_build_id": [ - 2016 + 2015 ], "shader_bake_progress": [ - 2016 + 2015 ], "start_port_range": [ - 2016 + 2015 ], "__typename": [ - 75 + 74 ] }, "game_server_nodes_update_column": {}, "game_server_nodes_updates": { "_append": [ - 1126 + 1125 ], "_delete_at_path": [ - 1132 + 1131 ], "_delete_elem": [ - 1133 + 1132 ], "_delete_key": [ - 1134 + 1133 ], "_inc": [ - 1135 + 1134 ], "_prepend": [ - 1146 + 1145 ], "_set": [ - 1150 + 1149 ], "where": [ - 1130 + 1129 ], "__typename": [ - 75 + 74 ] }, "game_server_nodes_var_pop_fields": { @@ -18699,48 +18685,48 @@ export default { 38 ], "__typename": [ - 75 + 74 ] }, "game_server_nodes_var_pop_order_by": { "build_id": [ - 2016 + 2015 ], "cpu_cores_per_socket": [ - 2016 + 2015 ], "cpu_sockets": [ - 2016 + 2015 ], "cpu_threads_per_core": [ - 2016 + 2015 ], "csgo_build_id": [ - 2016 + 2015 ], "demo_network_limiter": [ - 2016 + 2015 ], "disk_available_gb": [ - 2016 + 2015 ], "disk_used_percent": [ - 2016 + 2015 ], "end_port_range": [ - 2016 + 2015 ], "pin_build_id": [ - 2016 + 2015 ], "shader_bake_progress": [ - 2016 + 2015 ], "start_port_range": [ - 2016 + 2015 ], "__typename": [ - 75 + 74 ] }, "game_server_nodes_var_samp_fields": { @@ -18787,48 +18773,48 @@ export default { 38 ], "__typename": [ - 75 + 74 ] }, "game_server_nodes_var_samp_order_by": { "build_id": [ - 2016 + 2015 ], "cpu_cores_per_socket": [ - 2016 + 2015 ], "cpu_sockets": [ - 2016 + 2015 ], "cpu_threads_per_core": [ - 2016 + 2015 ], "csgo_build_id": [ - 2016 + 2015 ], "demo_network_limiter": [ - 2016 + 2015 ], "disk_available_gb": [ - 2016 + 2015 ], "disk_used_percent": [ - 2016 + 2015 ], "end_port_range": [ - 2016 + 2015 ], "pin_build_id": [ - 2016 + 2015 ], "shader_bake_progress": [ - 2016 + 2015 ], "start_port_range": [ - 2016 + 2015 ], "__typename": [ - 75 + 74 ] }, "game_server_nodes_variance_fields": { @@ -18875,48 +18861,48 @@ export default { 38 ], "__typename": [ - 75 + 74 ] }, "game_server_nodes_variance_order_by": { "build_id": [ - 2016 + 2015 ], "cpu_cores_per_socket": [ - 2016 + 2015 ], "cpu_sockets": [ - 2016 + 2015 ], "cpu_threads_per_core": [ - 2016 + 2015 ], "csgo_build_id": [ - 2016 + 2015 ], "demo_network_limiter": [ - 2016 + 2015 ], "disk_available_gb": [ - 2016 + 2015 ], "disk_used_percent": [ - 2016 + 2015 ], "end_port_range": [ - 2016 + 2015 ], "pin_build_id": [ - 2016 + 2015 ], "shader_bake_progress": [ - 2016 + 2015 ], "start_port_range": [ - 2016 + 2015 ], "__typename": [ - 75 + 74 ] }, "game_versions": { @@ -18930,46 +18916,46 @@ export default { 3 ], "description": [ - 75 + 74 ], "downloads": [ - 1240, + 1239, { "path": [ - 75 + 74 ] } ], "updated_at": [ - 3467 + 3466 ], "version": [ - 75 + 74 ], "__typename": [ - 75 + 74 ] }, "game_versions_aggregate": { "aggregate": [ - 1171 + 1170 ], "nodes": [ - 1169 + 1168 ], "__typename": [ - 75 + 74 ] }, "game_versions_aggregate_fields": { "avg": [ - 1173 + 1172 ], "count": [ 38, { "columns": [ - 1189, + 1188, "[game_versions_select_column!]" ], "distinct": [ @@ -18978,42 +18964,42 @@ export default { } ], "max": [ - 1181 + 1180 ], "min": [ - 1182 + 1181 ], "stddev": [ - 1191 + 1190 ], "stddev_pop": [ - 1192 + 1191 ], "stddev_samp": [ - 1193 + 1192 ], "sum": [ - 1196 + 1195 ], "var_pop": [ - 1199 + 1198 ], "var_samp": [ - 1200 + 1199 ], "variance": [ - 1201 + 1200 ], "__typename": [ - 75 + 74 ] }, "game_versions_append_input": { "downloads": [ - 1240 + 1239 ], "__typename": [ - 75 + 74 ] }, "game_versions_avg_fields": { @@ -19021,18 +19007,18 @@ export default { 29 ], "__typename": [ - 75 + 74 ] }, "game_versions_bool_exp": { "_and": [ - 1174 + 1173 ], "_not": [ - 1174 + 1173 ], "_or": [ - 1174 + 1173 ], "build_id": [ 39 @@ -19044,28 +19030,28 @@ export default { 4 ], "description": [ - 77 + 76 ], "downloads": [ - 1242 + 1241 ], "updated_at": [ - 3468 + 3467 ], "version": [ - 77 + 76 ], "__typename": [ - 75 + 74 ] }, "game_versions_constraint": {}, "game_versions_delete_at_path_input": { "downloads": [ - 75 + 74 ], "__typename": [ - 75 + 74 ] }, "game_versions_delete_elem_input": { @@ -19073,15 +19059,15 @@ export default { 38 ], "__typename": [ - 75 + 74 ] }, "game_versions_delete_key_input": { "downloads": [ - 75 + 74 ], "__typename": [ - 75 + 74 ] }, "game_versions_inc_input": { @@ -19089,7 +19075,7 @@ export default { 38 ], "__typename": [ - 75 + 74 ] }, "game_versions_insert_input": { @@ -19103,19 +19089,19 @@ export default { 3 ], "description": [ - 75 + 74 ], "downloads": [ - 1240 + 1239 ], "updated_at": [ - 3467 + 3466 ], "version": [ - 75 + 74 ], "__typename": [ - 75 + 74 ] }, "game_versions_max_fields": { @@ -19123,16 +19109,16 @@ export default { 38 ], "description": [ - 75 + 74 ], "updated_at": [ - 3467 + 3466 ], "version": [ - 75 + 74 ], "__typename": [ - 75 + 74 ] }, "game_versions_min_fields": { @@ -19140,16 +19126,16 @@ export default { 38 ], "description": [ - 75 + 74 ], "updated_at": [ - 3467 + 3466 ], "version": [ - 75 + 74 ], "__typename": [ - 75 + 74 ] }, "game_versions_mutation_response": { @@ -19157,61 +19143,61 @@ export default { 38 ], "returning": [ - 1169 + 1168 ], "__typename": [ - 75 + 74 ] }, "game_versions_obj_rel_insert_input": { "data": [ - 1180 + 1179 ], "on_conflict": [ - 1185 + 1184 ], "__typename": [ - 75 + 74 ] }, "game_versions_on_conflict": { "constraint": [ - 1175 + 1174 ], "update_columns": [ - 1197 + 1196 ], "where": [ - 1174 + 1173 ], "__typename": [ - 75 + 74 ] }, "game_versions_order_by": { "build_id": [ - 2016 + 2015 ], "current": [ - 2016 + 2015 ], "cvars": [ - 2016 + 2015 ], "description": [ - 2016 + 2015 ], "downloads": [ - 2016 + 2015 ], "updated_at": [ - 2016 + 2015 ], "version": [ - 2016 + 2015 ], "__typename": [ - 75 + 74 ] }, "game_versions_pk_columns_input": { @@ -19219,15 +19205,15 @@ export default { 38 ], "__typename": [ - 75 + 74 ] }, "game_versions_prepend_input": { "downloads": [ - 1240 + 1239 ], "__typename": [ - 75 + 74 ] }, "game_versions_select_column": {}, @@ -19242,19 +19228,19 @@ export default { 3 ], "description": [ - 75 + 74 ], "downloads": [ - 1240 + 1239 ], "updated_at": [ - 3467 + 3466 ], "version": [ - 75 + 74 ], "__typename": [ - 75 + 74 ] }, "game_versions_stddev_fields": { @@ -19262,7 +19248,7 @@ export default { 29 ], "__typename": [ - 75 + 74 ] }, "game_versions_stddev_pop_fields": { @@ -19270,7 +19256,7 @@ export default { 29 ], "__typename": [ - 75 + 74 ] }, "game_versions_stddev_samp_fields": { @@ -19278,18 +19264,18 @@ export default { 29 ], "__typename": [ - 75 + 74 ] }, "game_versions_stream_cursor_input": { "initial_value": [ - 1195 + 1194 ], "ordering": [ - 229 + 228 ], "__typename": [ - 75 + 74 ] }, "game_versions_stream_cursor_value_input": { @@ -19303,19 +19289,19 @@ export default { 3 ], "description": [ - 75 + 74 ], "downloads": [ - 1240 + 1239 ], "updated_at": [ - 3467 + 3466 ], "version": [ - 75 + 74 ], "__typename": [ - 75 + 74 ] }, "game_versions_sum_fields": { @@ -19323,37 +19309,37 @@ export default { 38 ], "__typename": [ - 75 + 74 ] }, "game_versions_update_column": {}, "game_versions_updates": { "_append": [ - 1172 + 1171 ], "_delete_at_path": [ - 1176 + 1175 ], "_delete_elem": [ - 1177 + 1176 ], "_delete_key": [ - 1178 + 1177 ], "_inc": [ - 1179 + 1178 ], "_prepend": [ - 1188 + 1187 ], "_set": [ - 1190 + 1189 ], "where": [ - 1174 + 1173 ], "__typename": [ - 75 + 74 ] }, "game_versions_var_pop_fields": { @@ -19361,7 +19347,7 @@ export default { 29 ], "__typename": [ - 75 + 74 ] }, "game_versions_var_samp_fields": { @@ -19369,7 +19355,7 @@ export default { 29 ], "__typename": [ - 75 + 74 ] }, "game_versions_variance_fields": { @@ -19377,60 +19363,60 @@ export default { 29 ], "__typename": [ - 75 + 74 ] }, "gamedata_signature_validations": { "branch": [ - 75 + 74 ], "build_id": [ 38 ], "game_version": [ - 1169 + 1168 ], "id": [ - 3864 + 3863 ], "results": [ - 1240, + 1239, { "path": [ - 75 + 74 ] } ], "status": [ - 75 + 74 ], "validated_at": [ - 3467 + 3466 ], "__typename": [ - 75 + 74 ] }, "gamedata_signature_validations_aggregate": { "aggregate": [ - 1204 + 1203 ], "nodes": [ - 1202 + 1201 ], "__typename": [ - 75 + 74 ] }, "gamedata_signature_validations_aggregate_fields": { "avg": [ - 1206 + 1205 ], "count": [ 38, { "columns": [ - 1221, + 1220, "[gamedata_signature_validations_select_column!]" ], "distinct": [ @@ -19439,42 +19425,42 @@ export default { } ], "max": [ - 1214 + 1213 ], "min": [ - 1215 + 1214 ], "stddev": [ - 1223 + 1222 ], "stddev_pop": [ - 1224 + 1223 ], "stddev_samp": [ - 1225 + 1224 ], "sum": [ - 1228 + 1227 ], "var_pop": [ - 1231 + 1230 ], "var_samp": [ - 1232 + 1231 ], "variance": [ - 1233 + 1232 ], "__typename": [ - 75 + 74 ] }, "gamedata_signature_validations_append_input": { "results": [ - 1240 + 1239 ], "__typename": [ - 75 + 74 ] }, "gamedata_signature_validations_avg_fields": { @@ -19482,51 +19468,51 @@ export default { 29 ], "__typename": [ - 75 + 74 ] }, "gamedata_signature_validations_bool_exp": { "_and": [ - 1207 + 1206 ], "_not": [ - 1207 + 1206 ], "_or": [ - 1207 + 1206 ], "branch": [ - 77 + 76 ], "build_id": [ 39 ], "game_version": [ - 1174 + 1173 ], "id": [ - 3866 + 3865 ], "results": [ - 1242 + 1241 ], "status": [ - 77 + 76 ], "validated_at": [ - 3468 + 3467 ], "__typename": [ - 75 + 74 ] }, "gamedata_signature_validations_constraint": {}, "gamedata_signature_validations_delete_at_path_input": { "results": [ - 75 + 74 ], "__typename": [ - 75 + 74 ] }, "gamedata_signature_validations_delete_elem_input": { @@ -19534,15 +19520,15 @@ export default { 38 ], "__typename": [ - 75 + 74 ] }, "gamedata_signature_validations_delete_key_input": { "results": [ - 75 + 74 ], "__typename": [ - 75 + 74 ] }, "gamedata_signature_validations_inc_input": { @@ -19550,73 +19536,73 @@ export default { 38 ], "__typename": [ - 75 + 74 ] }, "gamedata_signature_validations_insert_input": { "branch": [ - 75 + 74 ], "build_id": [ 38 ], "game_version": [ - 1184 + 1183 ], "id": [ - 3864 + 3863 ], "results": [ - 1240 + 1239 ], "status": [ - 75 + 74 ], "validated_at": [ - 3467 + 3466 ], "__typename": [ - 75 + 74 ] }, "gamedata_signature_validations_max_fields": { "branch": [ - 75 + 74 ], "build_id": [ 38 ], "id": [ - 3864 + 3863 ], "status": [ - 75 + 74 ], "validated_at": [ - 3467 + 3466 ], "__typename": [ - 75 + 74 ] }, "gamedata_signature_validations_min_fields": { "branch": [ - 75 + 74 ], "build_id": [ 38 ], "id": [ - 3864 + 3863 ], "status": [ - 75 + 74 ], "validated_at": [ - 3467 + 3466 ], "__typename": [ - 75 + 74 ] }, "gamedata_signature_validations_mutation_response": { @@ -19624,90 +19610,90 @@ export default { 38 ], "returning": [ - 1202 + 1201 ], "__typename": [ - 75 + 74 ] }, "gamedata_signature_validations_on_conflict": { "constraint": [ - 1208 + 1207 ], "update_columns": [ - 1229 + 1228 ], "where": [ - 1207 + 1206 ], "__typename": [ - 75 + 74 ] }, "gamedata_signature_validations_order_by": { "branch": [ - 2016 + 2015 ], "build_id": [ - 2016 + 2015 ], "game_version": [ - 1186 + 1185 ], "id": [ - 2016 + 2015 ], "results": [ - 2016 + 2015 ], "status": [ - 2016 + 2015 ], "validated_at": [ - 2016 + 2015 ], "__typename": [ - 75 + 74 ] }, "gamedata_signature_validations_pk_columns_input": { "id": [ - 3864 + 3863 ], "__typename": [ - 75 + 74 ] }, "gamedata_signature_validations_prepend_input": { "results": [ - 1240 + 1239 ], "__typename": [ - 75 + 74 ] }, "gamedata_signature_validations_select_column": {}, "gamedata_signature_validations_set_input": { "branch": [ - 75 + 74 ], "build_id": [ 38 ], "id": [ - 3864 + 3863 ], "results": [ - 1240 + 1239 ], "status": [ - 75 + 74 ], "validated_at": [ - 3467 + 3466 ], "__typename": [ - 75 + 74 ] }, "gamedata_signature_validations_stddev_fields": { @@ -19715,7 +19701,7 @@ export default { 29 ], "__typename": [ - 75 + 74 ] }, "gamedata_signature_validations_stddev_pop_fields": { @@ -19723,7 +19709,7 @@ export default { 29 ], "__typename": [ - 75 + 74 ] }, "gamedata_signature_validations_stddev_samp_fields": { @@ -19731,41 +19717,41 @@ export default { 29 ], "__typename": [ - 75 + 74 ] }, "gamedata_signature_validations_stream_cursor_input": { "initial_value": [ - 1227 + 1226 ], "ordering": [ - 229 + 228 ], "__typename": [ - 75 + 74 ] }, "gamedata_signature_validations_stream_cursor_value_input": { "branch": [ - 75 + 74 ], "build_id": [ 38 ], "id": [ - 3864 + 3863 ], "results": [ - 1240 + 1239 ], "status": [ - 75 + 74 ], "validated_at": [ - 3467 + 3466 ], "__typename": [ - 75 + 74 ] }, "gamedata_signature_validations_sum_fields": { @@ -19773,37 +19759,37 @@ export default { 38 ], "__typename": [ - 75 + 74 ] }, "gamedata_signature_validations_update_column": {}, "gamedata_signature_validations_updates": { "_append": [ - 1205 + 1204 ], "_delete_at_path": [ - 1209 + 1208 ], "_delete_elem": [ - 1210 + 1209 ], "_delete_key": [ - 1211 + 1210 ], "_inc": [ - 1212 + 1211 ], "_prepend": [ - 1220 + 1219 ], "_set": [ - 1222 + 1221 ], "where": [ - 1207 + 1206 ], "__typename": [ - 75 + 74 ] }, "gamedata_signature_validations_var_pop_fields": { @@ -19811,7 +19797,7 @@ export default { 29 ], "__typename": [ - 75 + 74 ] }, "gamedata_signature_validations_var_samp_fields": { @@ -19819,7 +19805,7 @@ export default { 29 ], "__typename": [ - 75 + 74 ] }, "gamedata_signature_validations_variance_fields": { @@ -19827,172 +19813,172 @@ export default { 29 ], "__typename": [ - 75 + 74 ] }, "get_leaderboard_args": { "_category": [ - 75 + 74 ], "_exclude_tournaments": [ 3 ], "_match_type": [ - 75 + 74 ], "_role": [ - 75 + 74 ], "_window_days": [ 38 ], "__typename": [ - 75 + 74 ] }, "get_player_leaderboard_rank_args": { "_category": [ - 75 + 74 ], "_exclude_tournaments": [ 3 ], "_match_type": [ - 75 + 74 ], "_player_steam_id": [ - 75 + 74 ], "_window_days": [ 38 ], "__typename": [ - 75 + 74 ] }, "inet": {}, "inet_comparison_exp": { "_eq": [ - 1236 + 1235 ], "_gt": [ - 1236 + 1235 ], "_gte": [ - 1236 + 1235 ], "_in": [ - 1236 + 1235 ], "_is_null": [ 3 ], "_lt": [ - 1236 + 1235 ], "_lte": [ - 1236 + 1235 ], "_neq": [ - 1236 + 1235 ], "_nin": [ - 1236 + 1235 ], "__typename": [ - 75 + 74 ] }, "json": {}, "json_comparison_exp": { "_eq": [ - 1238 + 1237 ], "_gt": [ - 1238 + 1237 ], "_gte": [ - 1238 + 1237 ], "_in": [ - 1238 + 1237 ], "_is_null": [ 3 ], "_lt": [ - 1238 + 1237 ], "_lte": [ - 1238 + 1237 ], "_neq": [ - 1238 + 1237 ], "_nin": [ - 1238 + 1237 ], "__typename": [ - 75 + 74 ] }, "jsonb": {}, "jsonb_cast_exp": { "String": [ - 77 + 76 ], "__typename": [ - 75 + 74 ] }, "jsonb_comparison_exp": { "_cast": [ - 1241 + 1240 ], "_contained_in": [ - 1240 + 1239 ], "_contains": [ - 1240 + 1239 ], "_eq": [ - 1240 + 1239 ], "_gt": [ - 1240 + 1239 ], "_gte": [ - 1240 + 1239 ], "_has_key": [ - 75 + 74 ], "_has_keys_all": [ - 75 + 74 ], "_has_keys_any": [ - 75 + 74 ], "_in": [ - 1240 + 1239 ], "_is_null": [ 3 ], "_lt": [ - 1240 + 1239 ], "_lte": [ - 1240 + 1239 ], "_neq": [ - 1240 + 1239 ], "_nin": [ - 1240 + 1239 ], "__typename": [ - 75 + 74 ] }, "leaderboard_entries": { @@ -20000,50 +19986,50 @@ export default { 38 ], "player_avatar_url": [ - 75 + 74 ], "player_country": [ - 75 + 74 ], "player_name": [ - 75 + 74 ], "player_steam_id": [ - 75 + 74 ], "secondary_value": [ - 1089 + 1088 ], "tertiary_value": [ - 1089 + 1088 ], "value": [ - 1089 + 1088 ], "__typename": [ - 75 + 74 ] }, "leaderboard_entries_aggregate": { "aggregate": [ - 1245 + 1244 ], "nodes": [ - 1243 + 1242 ], "__typename": [ - 75 + 74 ] }, "leaderboard_entries_aggregate_fields": { "avg": [ - 1246 + 1245 ], "count": [ 38, { "columns": [ - 1254, + 1253, "[leaderboard_entries_select_column!]" ], "distinct": [ @@ -20052,34 +20038,34 @@ export default { } ], "max": [ - 1250 + 1249 ], "min": [ - 1251 + 1250 ], "stddev": [ - 1256 + 1255 ], "stddev_pop": [ - 1257 + 1256 ], "stddev_samp": [ - 1258 + 1257 ], "sum": [ - 1261 + 1260 ], "var_pop": [ - 1263 + 1262 ], "var_samp": [ - 1264 + 1263 ], "variance": [ - 1265 + 1264 ], "__typename": [ - 75 + 74 ] }, "leaderboard_entries_avg_fields": { @@ -20096,45 +20082,45 @@ export default { 29 ], "__typename": [ - 75 + 74 ] }, "leaderboard_entries_bool_exp": { "_and": [ - 1247 + 1246 ], "_not": [ - 1247 + 1246 ], "_or": [ - 1247 + 1246 ], "matches_played": [ 39 ], "player_avatar_url": [ - 77 + 76 ], "player_country": [ - 77 + 76 ], "player_name": [ - 77 + 76 ], "player_steam_id": [ - 77 + 76 ], "secondary_value": [ - 1090 + 1089 ], "tertiary_value": [ - 1090 + 1089 ], "value": [ - 1090 + 1089 ], "__typename": [ - 75 + 74 ] }, "leaderboard_entries_inc_input": { @@ -20142,16 +20128,16 @@ export default { 38 ], "secondary_value": [ - 1089 + 1088 ], "tertiary_value": [ - 1089 + 1088 ], "value": [ - 1089 + 1088 ], "__typename": [ - 75 + 74 ] }, "leaderboard_entries_insert_input": { @@ -20159,28 +20145,28 @@ export default { 38 ], "player_avatar_url": [ - 75 + 74 ], "player_country": [ - 75 + 74 ], "player_name": [ - 75 + 74 ], "player_steam_id": [ - 75 + 74 ], "secondary_value": [ - 1089 + 1088 ], "tertiary_value": [ - 1089 + 1088 ], "value": [ - 1089 + 1088 ], "__typename": [ - 75 + 74 ] }, "leaderboard_entries_max_fields": { @@ -20188,28 +20174,28 @@ export default { 38 ], "player_avatar_url": [ - 75 + 74 ], "player_country": [ - 75 + 74 ], "player_name": [ - 75 + 74 ], "player_steam_id": [ - 75 + 74 ], "secondary_value": [ - 1089 + 1088 ], "tertiary_value": [ - 1089 + 1088 ], "value": [ - 1089 + 1088 ], "__typename": [ - 75 + 74 ] }, "leaderboard_entries_min_fields": { @@ -20217,28 +20203,28 @@ export default { 38 ], "player_avatar_url": [ - 75 + 74 ], "player_country": [ - 75 + 74 ], "player_name": [ - 75 + 74 ], "player_steam_id": [ - 75 + 74 ], "secondary_value": [ - 1089 + 1088 ], "tertiary_value": [ - 1089 + 1088 ], "value": [ - 1089 + 1088 ], "__typename": [ - 75 + 74 ] }, "leaderboard_entries_mutation_response": { @@ -20246,39 +20232,39 @@ export default { 38 ], "returning": [ - 1243 + 1242 ], "__typename": [ - 75 + 74 ] }, "leaderboard_entries_order_by": { "matches_played": [ - 2016 + 2015 ], "player_avatar_url": [ - 2016 + 2015 ], "player_country": [ - 2016 + 2015 ], "player_name": [ - 2016 + 2015 ], "player_steam_id": [ - 2016 + 2015 ], "secondary_value": [ - 2016 + 2015 ], "tertiary_value": [ - 2016 + 2015 ], "value": [ - 2016 + 2015 ], "__typename": [ - 75 + 74 ] }, "leaderboard_entries_select_column": {}, @@ -20287,28 +20273,28 @@ export default { 38 ], "player_avatar_url": [ - 75 + 74 ], "player_country": [ - 75 + 74 ], "player_name": [ - 75 + 74 ], "player_steam_id": [ - 75 + 74 ], "secondary_value": [ - 1089 + 1088 ], "tertiary_value": [ - 1089 + 1088 ], "value": [ - 1089 + 1088 ], "__typename": [ - 75 + 74 ] }, "leaderboard_entries_stddev_fields": { @@ -20325,7 +20311,7 @@ export default { 29 ], "__typename": [ - 75 + 74 ] }, "leaderboard_entries_stddev_pop_fields": { @@ -20342,7 +20328,7 @@ export default { 29 ], "__typename": [ - 75 + 74 ] }, "leaderboard_entries_stddev_samp_fields": { @@ -20359,18 +20345,18 @@ export default { 29 ], "__typename": [ - 75 + 74 ] }, "leaderboard_entries_stream_cursor_input": { "initial_value": [ - 1260 + 1259 ], "ordering": [ - 229 + 228 ], "__typename": [ - 75 + 74 ] }, "leaderboard_entries_stream_cursor_value_input": { @@ -20378,28 +20364,28 @@ export default { 38 ], "player_avatar_url": [ - 75 + 74 ], "player_country": [ - 75 + 74 ], "player_name": [ - 75 + 74 ], "player_steam_id": [ - 75 + 74 ], "secondary_value": [ - 1089 + 1088 ], "tertiary_value": [ - 1089 + 1088 ], "value": [ - 1089 + 1088 ], "__typename": [ - 75 + 74 ] }, "leaderboard_entries_sum_fields": { @@ -20407,30 +20393,30 @@ export default { 38 ], "secondary_value": [ - 1089 + 1088 ], "tertiary_value": [ - 1089 + 1088 ], "value": [ - 1089 + 1088 ], "__typename": [ - 75 + 74 ] }, "leaderboard_entries_updates": { "_inc": [ - 1248 + 1247 ], "_set": [ - 1255 + 1254 ], "where": [ - 1247 + 1246 ], "__typename": [ - 75 + 74 ] }, "leaderboard_entries_var_pop_fields": { @@ -20447,7 +20433,7 @@ export default { 29 ], "__typename": [ - 75 + 74 ] }, "leaderboard_entries_var_samp_fields": { @@ -20464,7 +20450,7 @@ export default { 29 ], "__typename": [ - 75 + 74 ] }, "leaderboard_entries_variance_fields": { @@ -20481,27 +20467,27 @@ export default { 29 ], "__typename": [ - 75 + 74 ] }, "lobbies": { "access": [ - 585 + 584 ], "created_at": [ - 3467 + 3466 ], "e_lobby_access": [ - 580 + 579 ], "id": [ - 3864 + 3863 ], "players": [ - 1285, + 1284, { "distinct_on": [ - 1308, + 1307, "[lobby_players_select_column!]" ], "limit": [ @@ -20511,19 +20497,19 @@ export default { 38 ], "order_by": [ - 1306, + 1305, "[lobby_players_order_by!]" ], "where": [ - 1296 + 1295 ] } ], "players_aggregate": [ - 1286, + 1285, { "distinct_on": [ - 1308, + 1307, "[lobby_players_select_column!]" ], "limit": [ @@ -20533,27 +20519,27 @@ export default { 38 ], "order_by": [ - 1306, + 1305, "[lobby_players_order_by!]" ], "where": [ - 1296 + 1295 ] } ], "__typename": [ - 75 + 74 ] }, "lobbies_aggregate": { "aggregate": [ - 1268 + 1267 ], "nodes": [ - 1266 + 1265 ], "__typename": [ - 75 + 74 ] }, "lobbies_aggregate_fields": { @@ -20561,7 +20547,7 @@ export default { 38, { "columns": [ - 1279, + 1278, "[lobbies_select_column!]" ], "distinct": [ @@ -20570,88 +20556,88 @@ export default { } ], "max": [ - 1272 + 1271 ], "min": [ - 1273 + 1272 ], "__typename": [ - 75 + 74 ] }, "lobbies_bool_exp": { "_and": [ - 1269 + 1268 ], "_not": [ - 1269 + 1268 ], "_or": [ - 1269 + 1268 ], "access": [ - 586 + 585 ], "created_at": [ - 3468 + 3467 ], "e_lobby_access": [ - 583 + 582 ], "id": [ - 3866 + 3865 ], "players": [ - 1296 + 1295 ], "players_aggregate": [ - 1287 + 1286 ], "__typename": [ - 75 + 74 ] }, "lobbies_constraint": {}, "lobbies_insert_input": { "access": [ - 585 + 584 ], "created_at": [ - 3467 + 3466 ], "e_lobby_access": [ - 591 + 590 ], "id": [ - 3864 + 3863 ], "players": [ - 1293 + 1292 ], "__typename": [ - 75 + 74 ] }, "lobbies_max_fields": { "created_at": [ - 3467 + 3466 ], "id": [ - 3864 + 3863 ], "__typename": [ - 75 + 74 ] }, "lobbies_min_fields": { "created_at": [ - 3467 + 3466 ], "id": [ - 3864 + 3863 ], "__typename": [ - 75 + 74 ] }, "lobbies_mutation_response": { @@ -20659,115 +20645,115 @@ export default { 38 ], "returning": [ - 1266 + 1265 ], "__typename": [ - 75 + 74 ] }, "lobbies_obj_rel_insert_input": { "data": [ - 1271 + 1270 ], "on_conflict": [ - 1276 + 1275 ], "__typename": [ - 75 + 74 ] }, "lobbies_on_conflict": { "constraint": [ - 1270 + 1269 ], "update_columns": [ - 1283 + 1282 ], "where": [ - 1269 + 1268 ], "__typename": [ - 75 + 74 ] }, "lobbies_order_by": { "access": [ - 2016 + 2015 ], "created_at": [ - 2016 + 2015 ], "e_lobby_access": [ - 593 + 592 ], "id": [ - 2016 + 2015 ], "players_aggregate": [ - 1292 + 1291 ], "__typename": [ - 75 + 74 ] }, "lobbies_pk_columns_input": { "id": [ - 3864 + 3863 ], "__typename": [ - 75 + 74 ] }, "lobbies_select_column": {}, "lobbies_set_input": { "access": [ - 585 + 584 ], "created_at": [ - 3467 + 3466 ], "id": [ - 3864 + 3863 ], "__typename": [ - 75 + 74 ] }, "lobbies_stream_cursor_input": { "initial_value": [ - 1282 + 1281 ], "ordering": [ - 229 + 228 ], "__typename": [ - 75 + 74 ] }, "lobbies_stream_cursor_value_input": { "access": [ - 585 + 584 ], "created_at": [ - 3467 + 3466 ], "id": [ - 3864 + 3863 ], "__typename": [ - 75 + 74 ] }, "lobbies_update_column": {}, "lobbies_updates": { "_set": [ - 1280 + 1279 ], "where": [ - 1269 + 1268 ], "__typename": [ - 75 + 74 ] }, "lobby_players": { @@ -20775,112 +20761,112 @@ export default { 3 ], "invited_by_steam_id": [ - 174 + 173 ], "lobby": [ - 1266 + 1265 ], "lobby_id": [ - 3864 + 3863 ], "player": [ - 2915 + 2914 ], "status": [ - 606 + 605 ], "steam_id": [ - 174 + 173 ], "__typename": [ - 75 + 74 ] }, "lobby_players_aggregate": { "aggregate": [ - 1291 + 1290 ], "nodes": [ - 1285 + 1284 ], "__typename": [ - 75 + 74 ] }, "lobby_players_aggregate_bool_exp": { "bool_and": [ - 1288 + 1287 ], "bool_or": [ - 1289 + 1288 ], "count": [ - 1290 + 1289 ], "__typename": [ - 75 + 74 ] }, "lobby_players_aggregate_bool_exp_bool_and": { "arguments": [ - 1309 + 1308 ], "distinct": [ 3 ], "filter": [ - 1296 + 1295 ], "predicate": [ 4 ], "__typename": [ - 75 + 74 ] }, "lobby_players_aggregate_bool_exp_bool_or": { "arguments": [ - 1310 + 1309 ], "distinct": [ 3 ], "filter": [ - 1296 + 1295 ], "predicate": [ 4 ], "__typename": [ - 75 + 74 ] }, "lobby_players_aggregate_bool_exp_count": { "arguments": [ - 1308 + 1307 ], "distinct": [ 3 ], "filter": [ - 1296 + 1295 ], "predicate": [ 39 ], "__typename": [ - 75 + 74 ] }, "lobby_players_aggregate_fields": { "avg": [ - 1294 + 1293 ], "count": [ 38, { "columns": [ - 1308, + 1307, "[lobby_players_select_column!]" ], "distinct": [ @@ -20889,83 +20875,83 @@ export default { } ], "max": [ - 1300 + 1299 ], "min": [ - 1302 + 1301 ], "stddev": [ - 1312 + 1311 ], "stddev_pop": [ - 1314 + 1313 ], "stddev_samp": [ - 1316 + 1315 ], "sum": [ - 1320 + 1319 ], "var_pop": [ - 1324 + 1323 ], "var_samp": [ - 1326 + 1325 ], "variance": [ - 1328 + 1327 ], "__typename": [ - 75 + 74 ] }, "lobby_players_aggregate_order_by": { "avg": [ - 1295 + 1294 ], "count": [ - 2016 + 2015 ], "max": [ - 1301 + 1300 ], "min": [ - 1303 + 1302 ], "stddev": [ - 1313 + 1312 ], "stddev_pop": [ - 1315 + 1314 ], "stddev_samp": [ - 1317 + 1316 ], "sum": [ - 1321 + 1320 ], "var_pop": [ - 1325 + 1324 ], "var_samp": [ - 1327 + 1326 ], "variance": [ - 1329 + 1328 ], "__typename": [ - 75 + 74 ] }, "lobby_players_arr_rel_insert_input": { "data": [ - 1299 + 1298 ], "on_conflict": [ - 1305 + 1304 ], "__typename": [ - 75 + 74 ] }, "lobby_players_avg_fields": { @@ -20976,65 +20962,65 @@ export default { 29 ], "__typename": [ - 75 + 74 ] }, "lobby_players_avg_order_by": { "invited_by_steam_id": [ - 2016 + 2015 ], "steam_id": [ - 2016 + 2015 ], "__typename": [ - 75 + 74 ] }, "lobby_players_bool_exp": { "_and": [ - 1296 + 1295 ], "_not": [ - 1296 + 1295 ], "_or": [ - 1296 + 1295 ], "captain": [ 4 ], "invited_by_steam_id": [ - 176 + 175 ], "lobby": [ - 1269 + 1268 ], "lobby_id": [ - 3866 + 3865 ], "player": [ - 2919 + 2918 ], "status": [ - 607 + 606 ], "steam_id": [ - 176 + 175 ], "__typename": [ - 75 + 74 ] }, "lobby_players_constraint": {}, "lobby_players_inc_input": { "invited_by_steam_id": [ - 174 + 173 ], "steam_id": [ - 174 + 173 ], "__typename": [ - 75 + 74 ] }, "lobby_players_insert_input": { @@ -21042,81 +21028,81 @@ export default { 3 ], "invited_by_steam_id": [ - 174 + 173 ], "lobby": [ - 1275 + 1274 ], "lobby_id": [ - 3864 + 3863 ], "player": [ - 2926 + 2925 ], "status": [ - 606 + 605 ], "steam_id": [ - 174 + 173 ], "__typename": [ - 75 + 74 ] }, "lobby_players_max_fields": { "invited_by_steam_id": [ - 174 + 173 ], "lobby_id": [ - 3864 + 3863 ], "steam_id": [ - 174 + 173 ], "__typename": [ - 75 + 74 ] }, "lobby_players_max_order_by": { "invited_by_steam_id": [ - 2016 + 2015 ], "lobby_id": [ - 2016 + 2015 ], "steam_id": [ - 2016 + 2015 ], "__typename": [ - 75 + 74 ] }, "lobby_players_min_fields": { "invited_by_steam_id": [ - 174 + 173 ], "lobby_id": [ - 3864 + 3863 ], "steam_id": [ - 174 + 173 ], "__typename": [ - 75 + 74 ] }, "lobby_players_min_order_by": { "invited_by_steam_id": [ - 2016 + 2015 ], "lobby_id": [ - 2016 + 2015 ], "steam_id": [ - 2016 + 2015 ], "__typename": [ - 75 + 74 ] }, "lobby_players_mutation_response": { @@ -21124,61 +21110,61 @@ export default { 38 ], "returning": [ - 1285 + 1284 ], "__typename": [ - 75 + 74 ] }, "lobby_players_on_conflict": { "constraint": [ - 1297 + 1296 ], "update_columns": [ - 1322 + 1321 ], "where": [ - 1296 + 1295 ], "__typename": [ - 75 + 74 ] }, "lobby_players_order_by": { "captain": [ - 2016 + 2015 ], "invited_by_steam_id": [ - 2016 + 2015 ], "lobby": [ - 1277 + 1276 ], "lobby_id": [ - 2016 + 2015 ], "player": [ - 2928 + 2927 ], "status": [ - 2016 + 2015 ], "steam_id": [ - 2016 + 2015 ], "__typename": [ - 75 + 74 ] }, "lobby_players_pk_columns_input": { "lobby_id": [ - 3864 + 3863 ], "steam_id": [ - 174 + 173 ], "__typename": [ - 75 + 74 ] }, "lobby_players_select_column": {}, @@ -21189,19 +21175,19 @@ export default { 3 ], "invited_by_steam_id": [ - 174 + 173 ], "lobby_id": [ - 3864 + 3863 ], "status": [ - 606 + 605 ], "steam_id": [ - 174 + 173 ], "__typename": [ - 75 + 74 ] }, "lobby_players_stddev_fields": { @@ -21212,18 +21198,18 @@ export default { 29 ], "__typename": [ - 75 + 74 ] }, "lobby_players_stddev_order_by": { "invited_by_steam_id": [ - 2016 + 2015 ], "steam_id": [ - 2016 + 2015 ], "__typename": [ - 75 + 74 ] }, "lobby_players_stddev_pop_fields": { @@ -21234,18 +21220,18 @@ export default { 29 ], "__typename": [ - 75 + 74 ] }, "lobby_players_stddev_pop_order_by": { "invited_by_steam_id": [ - 2016 + 2015 ], "steam_id": [ - 2016 + 2015 ], "__typename": [ - 75 + 74 ] }, "lobby_players_stddev_samp_fields": { @@ -21256,29 +21242,29 @@ export default { 29 ], "__typename": [ - 75 + 74 ] }, "lobby_players_stddev_samp_order_by": { "invited_by_steam_id": [ - 2016 + 2015 ], "steam_id": [ - 2016 + 2015 ], "__typename": [ - 75 + 74 ] }, "lobby_players_stream_cursor_input": { "initial_value": [ - 1319 + 1318 ], "ordering": [ - 229 + 228 ], "__typename": [ - 75 + 74 ] }, "lobby_players_stream_cursor_value_input": { @@ -21286,56 +21272,56 @@ export default { 3 ], "invited_by_steam_id": [ - 174 + 173 ], "lobby_id": [ - 3864 + 3863 ], "status": [ - 606 + 605 ], "steam_id": [ - 174 + 173 ], "__typename": [ - 75 + 74 ] }, "lobby_players_sum_fields": { "invited_by_steam_id": [ - 174 + 173 ], "steam_id": [ - 174 + 173 ], "__typename": [ - 75 + 74 ] }, "lobby_players_sum_order_by": { "invited_by_steam_id": [ - 2016 + 2015 ], "steam_id": [ - 2016 + 2015 ], "__typename": [ - 75 + 74 ] }, "lobby_players_update_column": {}, "lobby_players_updates": { "_inc": [ - 1298 + 1297 ], "_set": [ - 1311 + 1310 ], "where": [ - 1296 + 1295 ], "__typename": [ - 75 + 74 ] }, "lobby_players_var_pop_fields": { @@ -21346,18 +21332,18 @@ export default { 29 ], "__typename": [ - 75 + 74 ] }, "lobby_players_var_pop_order_by": { "invited_by_steam_id": [ - 2016 + 2015 ], "steam_id": [ - 2016 + 2015 ], "__typename": [ - 75 + 74 ] }, "lobby_players_var_samp_fields": { @@ -21368,18 +21354,18 @@ export default { 29 ], "__typename": [ - 75 + 74 ] }, "lobby_players_var_samp_order_by": { "invited_by_steam_id": [ - 2016 + 2015 ], "steam_id": [ - 2016 + 2015 ], "__typename": [ - 75 + 74 ] }, "lobby_players_variance_fields": { @@ -21390,35 +21376,35 @@ export default { 29 ], "__typename": [ - 75 + 74 ] }, "lobby_players_variance_order_by": { "invited_by_steam_id": [ - 2016 + 2015 ], "steam_id": [ - 2016 + 2015 ], "__typename": [ - 75 + 74 ] }, "map_pools": { "e_type": [ - 621 + 620 ], "enabled": [ 3 ], "id": [ - 3864 + 3863 ], "maps": [ - 4371, + 4370, { "distinct_on": [ - 4388, + 4387, "[v_pool_maps_select_column!]" ], "limit": [ @@ -21428,19 +21414,19 @@ export default { 38 ], "order_by": [ - 4387, + 4386, "[v_pool_maps_order_by!]" ], "where": [ - 4380 + 4379 ] } ], "maps_aggregate": [ - 4372, + 4371, { "distinct_on": [ - 4388, + 4387, "[v_pool_maps_select_column!]" ], "limit": [ @@ -21450,11 +21436,11 @@ export default { 38 ], "order_by": [ - 4387, + 4386, "[v_pool_maps_order_by!]" ], "where": [ - 4380 + 4379 ] } ], @@ -21462,21 +21448,21 @@ export default { 3 ], "type": [ - 626 + 625 ], "__typename": [ - 75 + 74 ] }, "map_pools_aggregate": { "aggregate": [ - 1332 + 1331 ], "nodes": [ - 1330 + 1329 ], "__typename": [ - 75 + 74 ] }, "map_pools_aggregate_fields": { @@ -21484,7 +21470,7 @@ export default { 38, { "columns": [ - 1343, + 1342, "[map_pools_select_column!]" ], "distinct": [ @@ -21493,88 +21479,88 @@ export default { } ], "max": [ - 1336 + 1335 ], "min": [ - 1337 + 1336 ], "__typename": [ - 75 + 74 ] }, "map_pools_bool_exp": { "_and": [ - 1333 + 1332 ], "_not": [ - 1333 + 1332 ], "_or": [ - 1333 + 1332 ], "e_type": [ - 624 + 623 ], "enabled": [ 4 ], "id": [ - 3866 + 3865 ], "maps": [ - 4380 + 4379 ], "maps_aggregate": [ - 4373 + 4372 ], "seed": [ 4 ], "type": [ - 627 + 626 ], "__typename": [ - 75 + 74 ] }, "map_pools_constraint": {}, "map_pools_insert_input": { "e_type": [ - 632 + 631 ], "enabled": [ 3 ], "id": [ - 3864 + 3863 ], "maps": [ - 4379 + 4378 ], "seed": [ 3 ], "type": [ - 626 + 625 ], "__typename": [ - 75 + 74 ] }, "map_pools_max_fields": { "id": [ - 3864 + 3863 ], "__typename": [ - 75 + 74 ] }, "map_pools_min_fields": { "id": [ - 3864 + 3863 ], "__typename": [ - 75 + 74 ] }, "map_pools_mutation_response": { @@ -21582,66 +21568,66 @@ export default { 38 ], "returning": [ - 1330 + 1329 ], "__typename": [ - 75 + 74 ] }, "map_pools_obj_rel_insert_input": { "data": [ - 1335 + 1334 ], "on_conflict": [ - 1340 + 1339 ], "__typename": [ - 75 + 74 ] }, "map_pools_on_conflict": { "constraint": [ - 1334 + 1333 ], "update_columns": [ - 1347 + 1346 ], "where": [ - 1333 + 1332 ], "__typename": [ - 75 + 74 ] }, "map_pools_order_by": { "e_type": [ - 634 + 633 ], "enabled": [ - 2016 + 2015 ], "id": [ - 2016 + 2015 ], "maps_aggregate": [ - 4378 + 4377 ], "seed": [ - 2016 + 2015 ], "type": [ - 2016 + 2015 ], "__typename": [ - 75 + 74 ] }, "map_pools_pk_columns_input": { "id": [ - 3864 + 3863 ], "__typename": [ - 75 + 74 ] }, "map_pools_select_column": {}, @@ -21650,27 +21636,27 @@ export default { 3 ], "id": [ - 3864 + 3863 ], "seed": [ 3 ], "type": [ - 626 + 625 ], "__typename": [ - 75 + 74 ] }, "map_pools_stream_cursor_input": { "initial_value": [ - 1346 + 1345 ], "ordering": [ - 229 + 228 ], "__typename": [ - 75 + 74 ] }, "map_pools_stream_cursor_value_input": { @@ -21678,28 +21664,28 @@ export default { 3 ], "id": [ - 3864 + 3863 ], "seed": [ 3 ], "type": [ - 626 + 625 ], "__typename": [ - 75 + 74 ] }, "map_pools_update_column": {}, "map_pools_updates": { "_set": [ - 1344 + 1343 ], "where": [ - 1333 + 1332 ], "__typename": [ - 75 + 74 ] }, "maps": { @@ -21707,22 +21693,22 @@ export default { 3 ], "e_match_type": [ - 724 + 723 ], "enabled": [ 3 ], "id": [ - 3864 + 3863 ], "label": [ - 75 + 74 ], "match_maps": [ - 1669, + 1668, { "distinct_on": [ - 1691, + 1690, "[match_maps_select_column!]" ], "limit": [ @@ -21732,19 +21718,19 @@ export default { 38 ], "order_by": [ - 1689, + 1688, "[match_maps_order_by!]" ], "where": [ - 1678 + 1677 ] } ], "match_maps_aggregate": [ - 1670, + 1669, { "distinct_on": [ - 1691, + 1690, "[match_maps_select_column!]" ], "limit": [ @@ -21754,19 +21740,19 @@ export default { 38 ], "order_by": [ - 1689, + 1688, "[match_maps_order_by!]" ], "where": [ - 1678 + 1677 ] } ], "match_veto_picks": [ - 1645, + 1644, { "distinct_on": [ - 1663, + 1662, "[match_map_veto_picks_select_column!]" ], "limit": [ @@ -21776,19 +21762,19 @@ export default { 38 ], "order_by": [ - 1661, + 1660, "[match_map_veto_picks_order_by!]" ], "where": [ - 1652 + 1651 ] } ], "match_veto_picks_aggregate": [ - 1646, + 1645, { "distinct_on": [ - 1663, + 1662, "[match_map_veto_picks_select_column!]" ], "limit": [ @@ -21798,107 +21784,107 @@ export default { 38 ], "order_by": [ - 1661, + 1660, "[match_map_veto_picks_order_by!]" ], "where": [ - 1652 + 1651 ] } ], "name": [ - 75 + 74 ], "patch": [ - 75 + 74 ], "poster": [ - 75 + 74 ], "type": [ - 729 + 728 ], "workshop_map_id": [ - 75 + 74 ], "__typename": [ - 75 + 74 ] }, "maps_aggregate": { "aggregate": [ - 1355 + 1354 ], "nodes": [ - 1349 + 1348 ], "__typename": [ - 75 + 74 ] }, "maps_aggregate_bool_exp": { "bool_and": [ - 1352 + 1351 ], "bool_or": [ - 1353 + 1352 ], "count": [ - 1354 + 1353 ], "__typename": [ - 75 + 74 ] }, "maps_aggregate_bool_exp_bool_and": { "arguments": [ - 1371 + 1370 ], "distinct": [ 3 ], "filter": [ - 1358 + 1357 ], "predicate": [ 4 ], "__typename": [ - 75 + 74 ] }, "maps_aggregate_bool_exp_bool_or": { "arguments": [ - 1372 + 1371 ], "distinct": [ 3 ], "filter": [ - 1358 + 1357 ], "predicate": [ 4 ], "__typename": [ - 75 + 74 ] }, "maps_aggregate_bool_exp_count": { "arguments": [ - 1370 + 1369 ], "distinct": [ 3 ], "filter": [ - 1358 + 1357 ], "predicate": [ 39 ], "__typename": [ - 75 + 74 ] }, "maps_aggregate_fields": { @@ -21906,7 +21892,7 @@ export default { 38, { "columns": [ - 1370, + 1369, "[maps_select_column!]" ], "distinct": [ @@ -21915,94 +21901,94 @@ export default { } ], "max": [ - 1361 + 1360 ], "min": [ - 1363 + 1362 ], "__typename": [ - 75 + 74 ] }, "maps_aggregate_order_by": { "count": [ - 2016 + 2015 ], "max": [ - 1362 + 1361 ], "min": [ - 1364 + 1363 ], "__typename": [ - 75 + 74 ] }, "maps_arr_rel_insert_input": { "data": [ - 1360 + 1359 ], "on_conflict": [ - 1367 + 1366 ], "__typename": [ - 75 + 74 ] }, "maps_bool_exp": { "_and": [ - 1358 + 1357 ], "_not": [ - 1358 + 1357 ], "_or": [ - 1358 + 1357 ], "active_pool": [ 4 ], "e_match_type": [ - 727 + 726 ], "enabled": [ 4 ], "id": [ - 3866 + 3865 ], "label": [ - 77 + 76 ], "match_maps": [ - 1678 + 1677 ], "match_maps_aggregate": [ - 1671 + 1670 ], "match_veto_picks": [ - 1652 + 1651 ], "match_veto_picks_aggregate": [ - 1647 + 1646 ], "name": [ - 77 + 76 ], "patch": [ - 77 + 76 ], "poster": [ - 77 + 76 ], "type": [ - 730 + 729 ], "workshop_map_id": [ - 77 + 76 ], "__typename": [ - 75 + 74 ] }, "maps_constraint": {}, @@ -22011,132 +21997,132 @@ export default { 3 ], "e_match_type": [ - 735 + 734 ], "enabled": [ 3 ], "id": [ - 3864 + 3863 ], "label": [ - 75 + 74 ], "match_maps": [ - 1675 + 1674 ], "match_veto_picks": [ - 1651 + 1650 ], "name": [ - 75 + 74 ], "patch": [ - 75 + 74 ], "poster": [ - 75 + 74 ], "type": [ - 729 + 728 ], "workshop_map_id": [ - 75 + 74 ], "__typename": [ - 75 + 74 ] }, "maps_max_fields": { "id": [ - 3864 + 3863 ], "label": [ - 75 + 74 ], "name": [ - 75 + 74 ], "patch": [ - 75 + 74 ], "poster": [ - 75 + 74 ], "workshop_map_id": [ - 75 + 74 ], "__typename": [ - 75 + 74 ] }, "maps_max_order_by": { "id": [ - 2016 + 2015 ], "label": [ - 2016 + 2015 ], "name": [ - 2016 + 2015 ], "patch": [ - 2016 + 2015 ], "poster": [ - 2016 + 2015 ], "workshop_map_id": [ - 2016 + 2015 ], "__typename": [ - 75 + 74 ] }, "maps_min_fields": { "id": [ - 3864 + 3863 ], "label": [ - 75 + 74 ], "name": [ - 75 + 74 ], "patch": [ - 75 + 74 ], "poster": [ - 75 + 74 ], "workshop_map_id": [ - 75 + 74 ], "__typename": [ - 75 + 74 ] }, "maps_min_order_by": { "id": [ - 2016 + 2015 ], "label": [ - 2016 + 2015 ], "name": [ - 2016 + 2015 ], "patch": [ - 2016 + 2015 ], "poster": [ - 2016 + 2015 ], "workshop_map_id": [ - 2016 + 2015 ], "__typename": [ - 75 + 74 ] }, "maps_mutation_response": { @@ -22144,84 +22130,84 @@ export default { 38 ], "returning": [ - 1349 + 1348 ], "__typename": [ - 75 + 74 ] }, "maps_obj_rel_insert_input": { "data": [ - 1360 + 1359 ], "on_conflict": [ - 1367 + 1366 ], "__typename": [ - 75 + 74 ] }, "maps_on_conflict": { "constraint": [ - 1359 + 1358 ], "update_columns": [ - 1376 + 1375 ], "where": [ - 1358 + 1357 ], "__typename": [ - 75 + 74 ] }, "maps_order_by": { "active_pool": [ - 2016 + 2015 ], "e_match_type": [ - 737 + 736 ], "enabled": [ - 2016 + 2015 ], "id": [ - 2016 + 2015 ], "label": [ - 2016 + 2015 ], "match_maps_aggregate": [ - 1674 + 1673 ], "match_veto_picks_aggregate": [ - 1650 + 1649 ], "name": [ - 2016 + 2015 ], "patch": [ - 2016 + 2015 ], "poster": [ - 2016 + 2015 ], "type": [ - 2016 + 2015 ], "workshop_map_id": [ - 2016 + 2015 ], "__typename": [ - 75 + 74 ] }, "maps_pk_columns_input": { "id": [ - 3864 + 3863 ], "__typename": [ - 75 + 74 ] }, "maps_select_column": {}, @@ -22235,39 +22221,39 @@ export default { 3 ], "id": [ - 3864 + 3863 ], "label": [ - 75 + 74 ], "name": [ - 75 + 74 ], "patch": [ - 75 + 74 ], "poster": [ - 75 + 74 ], "type": [ - 729 + 728 ], "workshop_map_id": [ - 75 + 74 ], "__typename": [ - 75 + 74 ] }, "maps_stream_cursor_input": { "initial_value": [ - 1375 + 1374 ], "ordering": [ - 229 + 228 ], "__typename": [ - 75 + 74 ] }, "maps_stream_cursor_value_input": { @@ -22278,78 +22264,78 @@ export default { 3 ], "id": [ - 3864 + 3863 ], "label": [ - 75 + 74 ], "name": [ - 75 + 74 ], "patch": [ - 75 + 74 ], "poster": [ - 75 + 74 ], "type": [ - 729 + 728 ], "workshop_map_id": [ - 75 + 74 ], "__typename": [ - 75 + 74 ] }, "maps_update_column": {}, "maps_updates": { "_set": [ - 1373 + 1372 ], "where": [ - 1358 + 1357 ], "__typename": [ - 75 + 74 ] }, "match_clips": { "created_at": [ - 3467 + 3466 ], "download_url": [ - 75 + 74 ], "duration_ms": [ 38 ], "file": [ - 75 + 74 ], "id": [ - 3864 + 3863 ], "kills_count": [ 38 ], "match_map": [ - 1669 + 1668 ], "match_map_demo": [ - 1553 + 1552 ], "match_map_demo_id": [ - 3864 + 3863 ], "match_map_id": [ - 3864 + 3863 ], "render_jobs": [ - 179, + 178, { "distinct_on": [ - 207, + 206, "[clip_render_jobs_select_column!]" ], "limit": [ @@ -22359,19 +22345,19 @@ export default { 38 ], "order_by": [ - 204, + 203, "[clip_render_jobs_order_by!]" ], "where": [ - 191 + 190 ] } ], "render_jobs_aggregate": [ - 180, + 179, { "distinct_on": [ - 207, + 206, "[clip_render_jobs_select_column!]" ], "limit": [ @@ -22381,11 +22367,11 @@ export default { 38 ], "order_by": [ - 204, + 203, "[clip_render_jobs_order_by!]" ], "where": [ - 191 + 190 ] } ], @@ -22393,84 +22379,84 @@ export default { 38 ], "size": [ - 174 + 173 ], "target": [ - 2915 + 2914 ], "target_steam_id": [ - 174 + 173 ], "thumbnail_download_url": [ - 75 + 74 ], "thumbnail_url": [ - 75 + 74 ], "title": [ - 75 + 74 ], "user": [ - 2915 + 2914 ], "user_steam_id": [ - 174 + 173 ], "views_count": [ 38 ], "visibility": [ - 647 + 646 ], "__typename": [ - 75 + 74 ] }, "match_clips_aggregate": { "aggregate": [ - 1382 + 1381 ], "nodes": [ - 1378 + 1377 ], "__typename": [ - 75 + 74 ] }, "match_clips_aggregate_bool_exp": { "count": [ - 1381 + 1380 ], "__typename": [ - 75 + 74 ] }, "match_clips_aggregate_bool_exp_count": { "arguments": [ - 1400 + 1399 ], "distinct": [ 3 ], "filter": [ - 1387 + 1386 ], "predicate": [ 39 ], "__typename": [ - 75 + 74 ] }, "match_clips_aggregate_fields": { "avg": [ - 1385 + 1384 ], "count": [ 38, { "columns": [ - 1400, + 1399, "[match_clips_select_column!]" ], "distinct": [ @@ -22478,6 +22464,44 @@ export default { ] } ], + "max": [ + 1390 + ], + "min": [ + 1392 + ], + "stddev": [ + 1401 + ], + "stddev_pop": [ + 1403 + ], + "stddev_samp": [ + 1405 + ], + "sum": [ + 1409 + ], + "var_pop": [ + 1413 + ], + "var_samp": [ + 1415 + ], + "variance": [ + 1417 + ], + "__typename": [ + 74 + ] + }, + "match_clips_aggregate_order_by": { + "avg": [ + 1385 + ], + "count": [ + 2015 + ], "max": [ 1391 ], @@ -22506,56 +22530,18 @@ export default { 1418 ], "__typename": [ - 75 - ] - }, - "match_clips_aggregate_order_by": { - "avg": [ - 1386 - ], - "count": [ - 2016 - ], - "max": [ - 1392 - ], - "min": [ - 1394 - ], - "stddev": [ - 1403 - ], - "stddev_pop": [ - 1405 - ], - "stddev_samp": [ - 1407 - ], - "sum": [ - 1411 - ], - "var_pop": [ - 1415 - ], - "var_samp": [ - 1417 - ], - "variance": [ - 1419 - ], - "__typename": [ - 75 + 74 ] }, "match_clips_arr_rel_insert_input": { "data": [ - 1390 + 1389 ], "on_conflict": [ - 1397 + 1396 ], "__typename": [ - 75 + 74 ] }, "match_clips_avg_fields": { @@ -22581,116 +22567,116 @@ export default { 29 ], "__typename": [ - 75 + 74 ] }, "match_clips_avg_order_by": { "duration_ms": [ - 2016 + 2015 ], "kills_count": [ - 2016 + 2015 ], "round": [ - 2016 + 2015 ], "size": [ - 2016 + 2015 ], "target_steam_id": [ - 2016 + 2015 ], "user_steam_id": [ - 2016 + 2015 ], "views_count": [ - 2016 + 2015 ], "__typename": [ - 75 + 74 ] }, "match_clips_bool_exp": { "_and": [ - 1387 + 1386 ], "_not": [ - 1387 + 1386 ], "_or": [ - 1387 + 1386 ], "created_at": [ - 3468 + 3467 ], "download_url": [ - 77 + 76 ], "duration_ms": [ 39 ], "file": [ - 77 + 76 ], "id": [ - 3866 + 3865 ], "kills_count": [ 39 ], "match_map": [ - 1678 + 1677 ], "match_map_demo": [ - 1565 + 1564 ], "match_map_demo_id": [ - 3866 + 3865 ], "match_map_id": [ - 3866 + 3865 ], "render_jobs": [ - 191 + 190 ], "render_jobs_aggregate": [ - 181 + 180 ], "round": [ 39 ], "size": [ - 176 + 175 ], "target": [ - 2919 + 2918 ], "target_steam_id": [ - 176 + 175 ], "thumbnail_download_url": [ - 77 + 76 ], "thumbnail_url": [ - 77 + 76 ], "title": [ - 77 + 76 ], "user": [ - 2919 + 2918 ], "user_steam_id": [ - 176 + 175 ], "views_count": [ 39 ], "visibility": [ - 648 + 647 ], "__typename": [ - 75 + 74 ] }, "match_clips_constraint": {}, @@ -22705,284 +22691,284 @@ export default { 38 ], "size": [ - 174 + 173 ], "target_steam_id": [ - 174 + 173 ], "user_steam_id": [ - 174 + 173 ], "views_count": [ 38 ], "__typename": [ - 75 + 74 ] }, "match_clips_insert_input": { "created_at": [ - 3467 + 3466 ], "duration_ms": [ 38 ], "file": [ - 75 + 74 ], "id": [ - 3864 + 3863 ], "kills_count": [ 38 ], "match_map": [ - 1687 + 1686 ], "match_map_demo": [ - 1577 + 1576 ], "match_map_demo_id": [ - 3864 + 3863 ], "match_map_id": [ - 3864 + 3863 ], "render_jobs": [ - 188 + 187 ], "round": [ 38 ], "size": [ - 174 + 173 ], "target": [ - 2926 + 2925 ], "target_steam_id": [ - 174 + 173 ], "thumbnail_url": [ - 75 + 74 ], "title": [ - 75 + 74 ], "user": [ - 2926 + 2925 ], "user_steam_id": [ - 174 + 173 ], "views_count": [ 38 ], "visibility": [ - 647 + 646 ], "__typename": [ - 75 + 74 ] }, "match_clips_max_fields": { "created_at": [ - 3467 + 3466 ], "download_url": [ - 75 + 74 ], "duration_ms": [ 38 ], "file": [ - 75 + 74 ], "id": [ - 3864 + 3863 ], "kills_count": [ 38 ], "match_map_demo_id": [ - 3864 + 3863 ], "match_map_id": [ - 3864 + 3863 ], "round": [ 38 ], "size": [ - 174 + 173 ], "target_steam_id": [ - 174 + 173 ], "thumbnail_download_url": [ - 75 + 74 ], "thumbnail_url": [ - 75 + 74 ], "title": [ - 75 + 74 ], "user_steam_id": [ - 174 + 173 ], "views_count": [ 38 ], "__typename": [ - 75 + 74 ] }, "match_clips_max_order_by": { "created_at": [ - 2016 + 2015 ], "duration_ms": [ - 2016 + 2015 ], "file": [ - 2016 + 2015 ], "id": [ - 2016 + 2015 ], "kills_count": [ - 2016 + 2015 ], "match_map_demo_id": [ - 2016 + 2015 ], "match_map_id": [ - 2016 + 2015 ], "round": [ - 2016 + 2015 ], "size": [ - 2016 + 2015 ], "target_steam_id": [ - 2016 + 2015 ], "thumbnail_url": [ - 2016 + 2015 ], "title": [ - 2016 + 2015 ], "user_steam_id": [ - 2016 + 2015 ], "views_count": [ - 2016 + 2015 ], "__typename": [ - 75 + 74 ] }, "match_clips_min_fields": { "created_at": [ - 3467 + 3466 ], "download_url": [ - 75 + 74 ], "duration_ms": [ 38 ], "file": [ - 75 + 74 ], "id": [ - 3864 + 3863 ], "kills_count": [ 38 ], "match_map_demo_id": [ - 3864 + 3863 ], "match_map_id": [ - 3864 + 3863 ], "round": [ 38 ], "size": [ - 174 + 173 ], "target_steam_id": [ - 174 + 173 ], "thumbnail_download_url": [ - 75 + 74 ], "thumbnail_url": [ - 75 + 74 ], "title": [ - 75 + 74 ], "user_steam_id": [ - 174 + 173 ], "views_count": [ 38 ], "__typename": [ - 75 + 74 ] }, "match_clips_min_order_by": { "created_at": [ - 2016 + 2015 ], "duration_ms": [ - 2016 + 2015 ], "file": [ - 2016 + 2015 ], "id": [ - 2016 + 2015 ], "kills_count": [ - 2016 + 2015 ], "match_map_demo_id": [ - 2016 + 2015 ], "match_map_id": [ - 2016 + 2015 ], "round": [ - 2016 + 2015 ], "size": [ - 2016 + 2015 ], "target_steam_id": [ - 2016 + 2015 ], "thumbnail_url": [ - 2016 + 2015 ], "title": [ - 2016 + 2015 ], "user_steam_id": [ - 2016 + 2015 ], "views_count": [ - 2016 + 2015 ], "__typename": [ - 75 + 74 ] }, "match_clips_mutation_response": { @@ -22990,165 +22976,165 @@ export default { 38 ], "returning": [ - 1378 + 1377 ], "__typename": [ - 75 + 74 ] }, "match_clips_obj_rel_insert_input": { "data": [ - 1390 + 1389 ], "on_conflict": [ - 1397 + 1396 ], "__typename": [ - 75 + 74 ] }, "match_clips_on_conflict": { "constraint": [ - 1388 + 1387 ], "update_columns": [ - 1412 + 1411 ], "where": [ - 1387 + 1386 ], "__typename": [ - 75 + 74 ] }, "match_clips_order_by": { "created_at": [ - 2016 + 2015 ], "download_url": [ - 2016 + 2015 ], "duration_ms": [ - 2016 + 2015 ], "file": [ - 2016 + 2015 ], "id": [ - 2016 + 2015 ], "kills_count": [ - 2016 + 2015 ], "match_map": [ - 1689 + 1688 ], "match_map_demo": [ - 1579 + 1578 ], "match_map_demo_id": [ - 2016 + 2015 ], "match_map_id": [ - 2016 + 2015 ], "render_jobs_aggregate": [ - 186 + 185 ], "round": [ - 2016 + 2015 ], "size": [ - 2016 + 2015 ], "target": [ - 2928 + 2927 ], "target_steam_id": [ - 2016 + 2015 ], "thumbnail_download_url": [ - 2016 + 2015 ], "thumbnail_url": [ - 2016 + 2015 ], "title": [ - 2016 + 2015 ], "user": [ - 2928 + 2927 ], "user_steam_id": [ - 2016 + 2015 ], "views_count": [ - 2016 + 2015 ], "visibility": [ - 2016 + 2015 ], "__typename": [ - 75 + 74 ] }, "match_clips_pk_columns_input": { "id": [ - 3864 + 3863 ], "__typename": [ - 75 + 74 ] }, "match_clips_select_column": {}, "match_clips_set_input": { "created_at": [ - 3467 + 3466 ], "duration_ms": [ 38 ], "file": [ - 75 + 74 ], "id": [ - 3864 + 3863 ], "kills_count": [ 38 ], "match_map_demo_id": [ - 3864 + 3863 ], "match_map_id": [ - 3864 + 3863 ], "round": [ 38 ], "size": [ - 174 + 173 ], "target_steam_id": [ - 174 + 173 ], "thumbnail_url": [ - 75 + 74 ], "title": [ - 75 + 74 ], "user_steam_id": [ - 174 + 173 ], "views_count": [ 38 ], "visibility": [ - 647 + 646 ], "__typename": [ - 75 + 74 ] }, "match_clips_stddev_fields": { @@ -23174,33 +23160,33 @@ export default { 29 ], "__typename": [ - 75 + 74 ] }, "match_clips_stddev_order_by": { "duration_ms": [ - 2016 + 2015 ], "kills_count": [ - 2016 + 2015 ], "round": [ - 2016 + 2015 ], "size": [ - 2016 + 2015 ], "target_steam_id": [ - 2016 + 2015 ], "user_steam_id": [ - 2016 + 2015 ], "views_count": [ - 2016 + 2015 ], "__typename": [ - 75 + 74 ] }, "match_clips_stddev_pop_fields": { @@ -23226,33 +23212,33 @@ export default { 29 ], "__typename": [ - 75 + 74 ] }, "match_clips_stddev_pop_order_by": { "duration_ms": [ - 2016 + 2015 ], "kills_count": [ - 2016 + 2015 ], "round": [ - 2016 + 2015 ], "size": [ - 2016 + 2015 ], "target_steam_id": [ - 2016 + 2015 ], "user_steam_id": [ - 2016 + 2015 ], "views_count": [ - 2016 + 2015 ], "__typename": [ - 75 + 74 ] }, "match_clips_stddev_samp_fields": { @@ -23278,94 +23264,94 @@ export default { 29 ], "__typename": [ - 75 + 74 ] }, "match_clips_stddev_samp_order_by": { "duration_ms": [ - 2016 + 2015 ], "kills_count": [ - 2016 + 2015 ], "round": [ - 2016 + 2015 ], "size": [ - 2016 + 2015 ], "target_steam_id": [ - 2016 + 2015 ], "user_steam_id": [ - 2016 + 2015 ], "views_count": [ - 2016 + 2015 ], "__typename": [ - 75 + 74 ] }, "match_clips_stream_cursor_input": { "initial_value": [ - 1409 + 1408 ], "ordering": [ - 229 + 228 ], "__typename": [ - 75 + 74 ] }, "match_clips_stream_cursor_value_input": { "created_at": [ - 3467 + 3466 ], "duration_ms": [ 38 ], "file": [ - 75 + 74 ], "id": [ - 3864 + 3863 ], "kills_count": [ 38 ], "match_map_demo_id": [ - 3864 + 3863 ], "match_map_id": [ - 3864 + 3863 ], "round": [ 38 ], "size": [ - 174 + 173 ], "target_steam_id": [ - 174 + 173 ], "thumbnail_url": [ - 75 + 74 ], "title": [ - 75 + 74 ], "user_steam_id": [ - 174 + 173 ], "views_count": [ 38 ], "visibility": [ - 647 + 646 ], "__typename": [ - 75 + 74 ] }, "match_clips_sum_fields": { @@ -23379,60 +23365,60 @@ export default { 38 ], "size": [ - 174 + 173 ], "target_steam_id": [ - 174 + 173 ], "user_steam_id": [ - 174 + 173 ], "views_count": [ 38 ], "__typename": [ - 75 + 74 ] }, "match_clips_sum_order_by": { "duration_ms": [ - 2016 + 2015 ], "kills_count": [ - 2016 + 2015 ], "round": [ - 2016 + 2015 ], "size": [ - 2016 + 2015 ], "target_steam_id": [ - 2016 + 2015 ], "user_steam_id": [ - 2016 + 2015 ], "views_count": [ - 2016 + 2015 ], "__typename": [ - 75 + 74 ] }, "match_clips_update_column": {}, "match_clips_updates": { "_inc": [ - 1389 + 1388 ], "_set": [ - 1401 + 1400 ], "where": [ - 1387 + 1386 ], "__typename": [ - 75 + 74 ] }, "match_clips_var_pop_fields": { @@ -23458,33 +23444,33 @@ export default { 29 ], "__typename": [ - 75 + 74 ] }, "match_clips_var_pop_order_by": { "duration_ms": [ - 2016 + 2015 ], "kills_count": [ - 2016 + 2015 ], "round": [ - 2016 + 2015 ], "size": [ - 2016 + 2015 ], "target_steam_id": [ - 2016 + 2015 ], "user_steam_id": [ - 2016 + 2015 ], "views_count": [ - 2016 + 2015 ], "__typename": [ - 75 + 74 ] }, "match_clips_var_samp_fields": { @@ -23510,33 +23496,33 @@ export default { 29 ], "__typename": [ - 75 + 74 ] }, "match_clips_var_samp_order_by": { "duration_ms": [ - 2016 + 2015 ], "kills_count": [ - 2016 + 2015 ], "round": [ - 2016 + 2015 ], "size": [ - 2016 + 2015 ], "target_steam_id": [ - 2016 + 2015 ], "user_steam_id": [ - 2016 + 2015 ], "views_count": [ - 2016 + 2015 ], "__typename": [ - 75 + 74 ] }, "match_clips_variance_fields": { @@ -23562,147 +23548,147 @@ export default { 29 ], "__typename": [ - 75 + 74 ] }, "match_clips_variance_order_by": { "duration_ms": [ - 2016 + 2015 ], "kills_count": [ - 2016 + 2015 ], "round": [ - 2016 + 2015 ], "size": [ - 2016 + 2015 ], "target_steam_id": [ - 2016 + 2015 ], "user_steam_id": [ - 2016 + 2015 ], "views_count": [ - 2016 + 2015 ], "__typename": [ - 75 + 74 ] }, "match_demo_sessions": { "created_at": [ - 3467 + 3466 ], "error_message": [ - 75 + 74 ], "game_server_node": [ - 1118 + 1117 ], "game_server_node_id": [ - 75 + 74 ], "id": [ - 3864 + 3863 ], "k8s_job_name": [ - 75 + 74 ], "last_activity_at": [ - 3467 + 3466 ], "last_status_at": [ - 3467 + 3466 ], "match": [ - 1831 + 1830 ], "match_id": [ - 3864 + 3863 ], "match_map": [ - 1669 + 1668 ], "match_map_demo": [ - 1553 + 1552 ], "match_map_demo_id": [ - 3864 + 3863 ], "match_map_id": [ - 3864 + 3863 ], "status": [ - 75 + 74 ], "status_history": [ - 1240, + 1239, { "path": [ - 75 + 74 ] } ], "stream_url": [ - 75 + 74 ], "watcher": [ - 2915 + 2914 ], "watcher_steam_id": [ - 174 + 173 ], "__typename": [ - 75 + 74 ] }, "match_demo_sessions_aggregate": { "aggregate": [ - 1424 + 1423 ], "nodes": [ - 1420 + 1419 ], "__typename": [ - 75 + 74 ] }, "match_demo_sessions_aggregate_bool_exp": { "count": [ - 1423 + 1422 ], "__typename": [ - 75 + 74 ] }, "match_demo_sessions_aggregate_bool_exp_count": { "arguments": [ - 1446 + 1445 ], "distinct": [ 3 ], "filter": [ - 1430 + 1429 ], "predicate": [ 39 ], "__typename": [ - 75 + 74 ] }, "match_demo_sessions_aggregate_fields": { "avg": [ - 1428 + 1427 ], "count": [ 38, { "columns": [ - 1446, + 1445, "[match_demo_sessions_select_column!]" ], "distinct": [ @@ -23711,91 +23697,91 @@ export default { } ], "max": [ - 1437 + 1436 ], "min": [ - 1439 + 1438 ], "stddev": [ - 1448 + 1447 ], "stddev_pop": [ - 1450 + 1449 ], "stddev_samp": [ - 1452 + 1451 ], "sum": [ - 1456 + 1455 ], "var_pop": [ - 1460 + 1459 ], "var_samp": [ - 1462 + 1461 ], "variance": [ - 1464 + 1463 ], "__typename": [ - 75 + 74 ] }, "match_demo_sessions_aggregate_order_by": { "avg": [ - 1429 + 1428 ], "count": [ - 2016 + 2015 ], "max": [ - 1438 + 1437 ], "min": [ - 1440 + 1439 ], "stddev": [ - 1449 + 1448 ], "stddev_pop": [ - 1451 + 1450 ], "stddev_samp": [ - 1453 + 1452 ], "sum": [ - 1457 + 1456 ], "var_pop": [ - 1461 + 1460 ], "var_samp": [ - 1463 + 1462 ], "variance": [ - 1465 + 1464 ], "__typename": [ - 75 + 74 ] }, "match_demo_sessions_append_input": { "status_history": [ - 1240 + 1239 ], "__typename": [ - 75 + 74 ] }, "match_demo_sessions_arr_rel_insert_input": { "data": [ - 1436 + 1435 ], "on_conflict": [ - 1442 + 1441 ], "__typename": [ - 75 + 74 ] }, "match_demo_sessions_avg_fields": { @@ -23803,95 +23789,95 @@ export default { 29 ], "__typename": [ - 75 + 74 ] }, "match_demo_sessions_avg_order_by": { "watcher_steam_id": [ - 2016 + 2015 ], "__typename": [ - 75 + 74 ] }, "match_demo_sessions_bool_exp": { "_and": [ - 1430 + 1429 ], "_not": [ - 1430 + 1429 ], "_or": [ - 1430 + 1429 ], "created_at": [ - 3468 + 3467 ], "error_message": [ - 77 + 76 ], "game_server_node": [ - 1130 + 1129 ], "game_server_node_id": [ - 77 + 76 ], "id": [ - 3866 + 3865 ], "k8s_job_name": [ - 77 + 76 ], "last_activity_at": [ - 3468 + 3467 ], "last_status_at": [ - 3468 + 3467 ], "match": [ - 1840 + 1839 ], "match_id": [ - 3866 + 3865 ], "match_map": [ - 1678 + 1677 ], "match_map_demo": [ - 1565 + 1564 ], "match_map_demo_id": [ - 3866 + 3865 ], "match_map_id": [ - 3866 + 3865 ], "status": [ - 77 + 76 ], "status_history": [ - 1242 + 1241 ], "stream_url": [ - 77 + 76 ], "watcher": [ - 2919 + 2918 ], "watcher_steam_id": [ - 176 + 175 ], "__typename": [ - 75 + 74 ] }, "match_demo_sessions_constraint": {}, "match_demo_sessions_delete_at_path_input": { "status_history": [ - 75 + 74 ], "__typename": [ - 75 + 74 ] }, "match_demo_sessions_delete_elem_input": { @@ -23899,261 +23885,261 @@ export default { 38 ], "__typename": [ - 75 + 74 ] }, "match_demo_sessions_delete_key_input": { "status_history": [ - 75 + 74 ], "__typename": [ - 75 + 74 ] }, "match_demo_sessions_inc_input": { "watcher_steam_id": [ - 174 + 173 ], "__typename": [ - 75 + 74 ] }, "match_demo_sessions_insert_input": { "created_at": [ - 3467 + 3466 ], "error_message": [ - 75 + 74 ], "game_server_node": [ - 1142 + 1141 ], "game_server_node_id": [ - 75 + 74 ], "id": [ - 3864 + 3863 ], "k8s_job_name": [ - 75 + 74 ], "last_activity_at": [ - 3467 + 3466 ], "last_status_at": [ - 3467 + 3466 ], "match": [ - 1849 + 1848 ], "match_id": [ - 3864 + 3863 ], "match_map": [ - 1687 + 1686 ], "match_map_demo": [ - 1577 + 1576 ], "match_map_demo_id": [ - 3864 + 3863 ], "match_map_id": [ - 3864 + 3863 ], "status": [ - 75 + 74 ], "status_history": [ - 1240 + 1239 ], "stream_url": [ - 75 + 74 ], "watcher": [ - 2926 + 2925 ], "watcher_steam_id": [ - 174 + 173 ], "__typename": [ - 75 + 74 ] }, "match_demo_sessions_max_fields": { "created_at": [ - 3467 + 3466 ], "error_message": [ - 75 + 74 ], "game_server_node_id": [ - 75 + 74 ], "id": [ - 3864 + 3863 ], "k8s_job_name": [ - 75 + 74 ], "last_activity_at": [ - 3467 + 3466 ], "last_status_at": [ - 3467 + 3466 ], "match_id": [ - 3864 + 3863 ], "match_map_demo_id": [ - 3864 + 3863 ], "match_map_id": [ - 3864 + 3863 ], "status": [ - 75 + 74 ], "stream_url": [ - 75 + 74 ], "watcher_steam_id": [ - 174 + 173 ], "__typename": [ - 75 + 74 ] }, "match_demo_sessions_max_order_by": { "created_at": [ - 2016 + 2015 ], "error_message": [ - 2016 + 2015 ], "game_server_node_id": [ - 2016 + 2015 ], "id": [ - 2016 + 2015 ], "k8s_job_name": [ - 2016 + 2015 ], "last_activity_at": [ - 2016 + 2015 ], "last_status_at": [ - 2016 + 2015 ], "match_id": [ - 2016 + 2015 ], "match_map_demo_id": [ - 2016 + 2015 ], "match_map_id": [ - 2016 + 2015 ], "status": [ - 2016 + 2015 ], "stream_url": [ - 2016 + 2015 ], "watcher_steam_id": [ - 2016 + 2015 ], "__typename": [ - 75 + 74 ] }, "match_demo_sessions_min_fields": { "created_at": [ - 3467 + 3466 ], "error_message": [ - 75 + 74 ], "game_server_node_id": [ - 75 + 74 ], "id": [ - 3864 + 3863 ], "k8s_job_name": [ - 75 + 74 ], "last_activity_at": [ - 3467 + 3466 ], "last_status_at": [ - 3467 + 3466 ], "match_id": [ - 3864 + 3863 ], "match_map_demo_id": [ - 3864 + 3863 ], "match_map_id": [ - 3864 + 3863 ], "status": [ - 75 + 74 ], "stream_url": [ - 75 + 74 ], "watcher_steam_id": [ - 174 + 173 ], "__typename": [ - 75 + 74 ] }, "match_demo_sessions_min_order_by": { "created_at": [ - 2016 + 2015 ], "error_message": [ - 2016 + 2015 ], "game_server_node_id": [ - 2016 + 2015 ], "id": [ - 2016 + 2015 ], "k8s_job_name": [ - 2016 + 2015 ], "last_activity_at": [ - 2016 + 2015 ], "last_status_at": [ - 2016 + 2015 ], "match_id": [ - 2016 + 2015 ], "match_map_demo_id": [ - 2016 + 2015 ], "match_map_id": [ - 2016 + 2015 ], "status": [ - 2016 + 2015 ], "stream_url": [ - 2016 + 2015 ], "watcher_steam_id": [ - 2016 + 2015 ], "__typename": [ - 75 + 74 ] }, "match_demo_sessions_mutation_response": { @@ -24161,150 +24147,150 @@ export default { 38 ], "returning": [ - 1420 + 1419 ], "__typename": [ - 75 + 74 ] }, "match_demo_sessions_on_conflict": { "constraint": [ - 1431 + 1430 ], "update_columns": [ - 1458 + 1457 ], "where": [ - 1430 + 1429 ], "__typename": [ - 75 + 74 ] }, "match_demo_sessions_order_by": { "created_at": [ - 2016 + 2015 ], "error_message": [ - 2016 + 2015 ], "game_server_node": [ - 1144 + 1143 ], "game_server_node_id": [ - 2016 + 2015 ], "id": [ - 2016 + 2015 ], "k8s_job_name": [ - 2016 + 2015 ], "last_activity_at": [ - 2016 + 2015 ], "last_status_at": [ - 2016 + 2015 ], "match": [ - 1851 + 1850 ], "match_id": [ - 2016 + 2015 ], "match_map": [ - 1689 + 1688 ], "match_map_demo": [ - 1579 + 1578 ], "match_map_demo_id": [ - 2016 + 2015 ], "match_map_id": [ - 2016 + 2015 ], "status": [ - 2016 + 2015 ], "status_history": [ - 2016 + 2015 ], "stream_url": [ - 2016 + 2015 ], "watcher": [ - 2928 + 2927 ], "watcher_steam_id": [ - 2016 + 2015 ], "__typename": [ - 75 + 74 ] }, "match_demo_sessions_pk_columns_input": { "id": [ - 3864 + 3863 ], "__typename": [ - 75 + 74 ] }, "match_demo_sessions_prepend_input": { "status_history": [ - 1240 + 1239 ], "__typename": [ - 75 + 74 ] }, "match_demo_sessions_select_column": {}, "match_demo_sessions_set_input": { "created_at": [ - 3467 + 3466 ], "error_message": [ - 75 + 74 ], "game_server_node_id": [ - 75 + 74 ], "id": [ - 3864 + 3863 ], "k8s_job_name": [ - 75 + 74 ], "last_activity_at": [ - 3467 + 3466 ], "last_status_at": [ - 3467 + 3466 ], "match_id": [ - 3864 + 3863 ], "match_map_demo_id": [ - 3864 + 3863 ], "match_map_id": [ - 3864 + 3863 ], "status": [ - 75 + 74 ], "status_history": [ - 1240 + 1239 ], "stream_url": [ - 75 + 74 ], "watcher_steam_id": [ - 174 + 173 ], "__typename": [ - 75 + 74 ] }, "match_demo_sessions_stddev_fields": { @@ -24312,15 +24298,15 @@ export default { 29 ], "__typename": [ - 75 + 74 ] }, "match_demo_sessions_stddev_order_by": { "watcher_steam_id": [ - 2016 + 2015 ], "__typename": [ - 75 + 74 ] }, "match_demo_sessions_stddev_pop_fields": { @@ -24328,15 +24314,15 @@ export default { 29 ], "__typename": [ - 75 + 74 ] }, "match_demo_sessions_stddev_pop_order_by": { "watcher_steam_id": [ - 2016 + 2015 ], "__typename": [ - 75 + 74 ] }, "match_demo_sessions_stddev_samp_fields": { @@ -24344,119 +24330,119 @@ export default { 29 ], "__typename": [ - 75 + 74 ] }, "match_demo_sessions_stddev_samp_order_by": { "watcher_steam_id": [ - 2016 + 2015 ], "__typename": [ - 75 + 74 ] }, "match_demo_sessions_stream_cursor_input": { "initial_value": [ - 1455 + 1454 ], "ordering": [ - 229 + 228 ], "__typename": [ - 75 + 74 ] }, "match_demo_sessions_stream_cursor_value_input": { "created_at": [ - 3467 + 3466 ], "error_message": [ - 75 + 74 ], "game_server_node_id": [ - 75 + 74 ], "id": [ - 3864 + 3863 ], "k8s_job_name": [ - 75 + 74 ], "last_activity_at": [ - 3467 + 3466 ], "last_status_at": [ - 3467 + 3466 ], "match_id": [ - 3864 + 3863 ], "match_map_demo_id": [ - 3864 + 3863 ], "match_map_id": [ - 3864 + 3863 ], "status": [ - 75 + 74 ], "status_history": [ - 1240 + 1239 ], "stream_url": [ - 75 + 74 ], "watcher_steam_id": [ - 174 + 173 ], "__typename": [ - 75 + 74 ] }, "match_demo_sessions_sum_fields": { "watcher_steam_id": [ - 174 + 173 ], "__typename": [ - 75 + 74 ] }, "match_demo_sessions_sum_order_by": { "watcher_steam_id": [ - 2016 + 2015 ], "__typename": [ - 75 + 74 ] }, "match_demo_sessions_update_column": {}, "match_demo_sessions_updates": { "_append": [ - 1426 + 1425 ], "_delete_at_path": [ - 1432 + 1431 ], "_delete_elem": [ - 1433 + 1432 ], "_delete_key": [ - 1434 + 1433 ], "_inc": [ - 1435 + 1434 ], "_prepend": [ - 1445 + 1444 ], "_set": [ - 1447 + 1446 ], "where": [ - 1430 + 1429 ], "__typename": [ - 75 + 74 ] }, "match_demo_sessions_var_pop_fields": { @@ -24464,15 +24450,15 @@ export default { 29 ], "__typename": [ - 75 + 74 ] }, "match_demo_sessions_var_pop_order_by": { "watcher_steam_id": [ - 2016 + 2015 ], "__typename": [ - 75 + 74 ] }, "match_demo_sessions_var_samp_fields": { @@ -24480,15 +24466,15 @@ export default { 29 ], "__typename": [ - 75 + 74 ] }, "match_demo_sessions_var_samp_order_by": { "watcher_steam_id": [ - 2016 + 2015 ], "__typename": [ - 75 + 74 ] }, "match_demo_sessions_variance_fields": { @@ -24496,15 +24482,15 @@ export default { 29 ], "__typename": [ - 75 + 74 ] }, "match_demo_sessions_variance_order_by": { "watcher_steam_id": [ - 2016 + 2015 ], "__typename": [ - 75 + 74 ] }, "match_lineup_players": { @@ -24515,115 +24501,115 @@ export default { 3 ], "discord_id": [ - 75 + 74 ], "id": [ - 3864 + 3863 ], "lineup": [ - 1511 + 1510 ], "match_lineup_id": [ - 3864 + 3863 ], "placeholder_name": [ - 75 + 74 ], "player": [ - 2915 + 2914 ], "steam_id": [ - 174 + 173 ], "__typename": [ - 75 + 74 ] }, "match_lineup_players_aggregate": { "aggregate": [ - 1472 + 1471 ], "nodes": [ - 1466 + 1465 ], "__typename": [ - 75 + 74 ] }, "match_lineup_players_aggregate_bool_exp": { "bool_and": [ - 1469 + 1468 ], "bool_or": [ - 1470 + 1469 ], "count": [ - 1471 + 1470 ], "__typename": [ - 75 + 74 ] }, "match_lineup_players_aggregate_bool_exp_bool_and": { "arguments": [ - 1490 + 1489 ], "distinct": [ 3 ], "filter": [ - 1477 + 1476 ], "predicate": [ 4 ], "__typename": [ - 75 + 74 ] }, "match_lineup_players_aggregate_bool_exp_bool_or": { "arguments": [ - 1491 + 1490 ], "distinct": [ 3 ], "filter": [ - 1477 + 1476 ], "predicate": [ 4 ], "__typename": [ - 75 + 74 ] }, "match_lineup_players_aggregate_bool_exp_count": { "arguments": [ - 1489 + 1488 ], "distinct": [ 3 ], "filter": [ - 1477 + 1476 ], "predicate": [ 39 ], "__typename": [ - 75 + 74 ] }, "match_lineup_players_aggregate_fields": { "avg": [ - 1475 + 1474 ], "count": [ 38, { "columns": [ - 1489, + 1488, "[match_lineup_players_select_column!]" ], "distinct": [ @@ -24632,83 +24618,83 @@ export default { } ], "max": [ - 1481 + 1480 ], "min": [ - 1483 + 1482 ], "stddev": [ - 1493 + 1492 ], "stddev_pop": [ - 1495 + 1494 ], "stddev_samp": [ - 1497 + 1496 ], "sum": [ - 1501 + 1500 ], "var_pop": [ - 1505 + 1504 ], "var_samp": [ - 1507 + 1506 ], "variance": [ - 1509 + 1508 ], "__typename": [ - 75 + 74 ] }, "match_lineup_players_aggregate_order_by": { "avg": [ - 1476 + 1475 ], "count": [ - 2016 + 2015 ], "max": [ - 1482 + 1481 ], "min": [ - 1484 + 1483 ], "stddev": [ - 1494 + 1493 ], "stddev_pop": [ - 1496 + 1495 ], "stddev_samp": [ - 1498 + 1497 ], "sum": [ - 1502 + 1501 ], "var_pop": [ - 1506 + 1505 ], "var_samp": [ - 1508 + 1507 ], "variance": [ - 1510 + 1509 ], "__typename": [ - 75 + 74 ] }, "match_lineup_players_arr_rel_insert_input": { "data": [ - 1480 + 1479 ], "on_conflict": [ - 1486 + 1485 ], "__typename": [ - 75 + 74 ] }, "match_lineup_players_avg_fields": { @@ -24716,26 +24702,26 @@ export default { 29 ], "__typename": [ - 75 + 74 ] }, "match_lineup_players_avg_order_by": { "steam_id": [ - 2016 + 2015 ], "__typename": [ - 75 + 74 ] }, "match_lineup_players_bool_exp": { "_and": [ - 1477 + 1476 ], "_not": [ - 1477 + 1476 ], "_or": [ - 1477 + 1476 ], "captain": [ 4 @@ -24744,37 +24730,37 @@ export default { 4 ], "discord_id": [ - 77 + 76 ], "id": [ - 3866 + 3865 ], "lineup": [ - 1520 + 1519 ], "match_lineup_id": [ - 3866 + 3865 ], "placeholder_name": [ - 77 + 76 ], "player": [ - 2919 + 2918 ], "steam_id": [ - 176 + 175 ], "__typename": [ - 75 + 74 ] }, "match_lineup_players_constraint": {}, "match_lineup_players_inc_input": { "steam_id": [ - 174 + 173 ], "__typename": [ - 75 + 74 ] }, "match_lineup_players_insert_input": { @@ -24785,108 +24771,108 @@ export default { 3 ], "discord_id": [ - 75 + 74 ], "id": [ - 3864 + 3863 ], "lineup": [ - 1529 + 1528 ], "match_lineup_id": [ - 3864 + 3863 ], "placeholder_name": [ - 75 + 74 ], "player": [ - 2926 + 2925 ], "steam_id": [ - 174 + 173 ], "__typename": [ - 75 + 74 ] }, "match_lineup_players_max_fields": { "discord_id": [ - 75 + 74 ], "id": [ - 3864 + 3863 ], "match_lineup_id": [ - 3864 + 3863 ], "placeholder_name": [ - 75 + 74 ], "steam_id": [ - 174 + 173 ], "__typename": [ - 75 + 74 ] }, "match_lineup_players_max_order_by": { "discord_id": [ - 2016 + 2015 ], "id": [ - 2016 + 2015 ], "match_lineup_id": [ - 2016 + 2015 ], "placeholder_name": [ - 2016 + 2015 ], "steam_id": [ - 2016 + 2015 ], "__typename": [ - 75 + 74 ] }, "match_lineup_players_min_fields": { "discord_id": [ - 75 + 74 ], "id": [ - 3864 + 3863 ], "match_lineup_id": [ - 3864 + 3863 ], "placeholder_name": [ - 75 + 74 ], "steam_id": [ - 174 + 173 ], "__typename": [ - 75 + 74 ] }, "match_lineup_players_min_order_by": { "discord_id": [ - 2016 + 2015 ], "id": [ - 2016 + 2015 ], "match_lineup_id": [ - 2016 + 2015 ], "placeholder_name": [ - 2016 + 2015 ], "steam_id": [ - 2016 + 2015 ], "__typename": [ - 75 + 74 ] }, "match_lineup_players_mutation_response": { @@ -24894,64 +24880,64 @@ export default { 38 ], "returning": [ - 1466 + 1465 ], "__typename": [ - 75 + 74 ] }, "match_lineup_players_on_conflict": { "constraint": [ - 1478 + 1477 ], "update_columns": [ - 1503 + 1502 ], "where": [ - 1477 + 1476 ], "__typename": [ - 75 + 74 ] }, "match_lineup_players_order_by": { "captain": [ - 2016 + 2015 ], "checked_in": [ - 2016 + 2015 ], "discord_id": [ - 2016 + 2015 ], "id": [ - 2016 + 2015 ], "lineup": [ - 1531 + 1530 ], "match_lineup_id": [ - 2016 + 2015 ], "placeholder_name": [ - 2016 + 2015 ], "player": [ - 2928 + 2927 ], "steam_id": [ - 2016 + 2015 ], "__typename": [ - 75 + 74 ] }, "match_lineup_players_pk_columns_input": { "id": [ - 3864 + 3863 ], "__typename": [ - 75 + 74 ] }, "match_lineup_players_select_column": {}, @@ -24965,22 +24951,22 @@ export default { 3 ], "discord_id": [ - 75 + 74 ], "id": [ - 3864 + 3863 ], "match_lineup_id": [ - 3864 + 3863 ], "placeholder_name": [ - 75 + 74 ], "steam_id": [ - 174 + 173 ], "__typename": [ - 75 + 74 ] }, "match_lineup_players_stddev_fields": { @@ -24988,15 +24974,15 @@ export default { 29 ], "__typename": [ - 75 + 74 ] }, "match_lineup_players_stddev_order_by": { "steam_id": [ - 2016 + 2015 ], "__typename": [ - 75 + 74 ] }, "match_lineup_players_stddev_pop_fields": { @@ -25004,15 +24990,15 @@ export default { 29 ], "__typename": [ - 75 + 74 ] }, "match_lineup_players_stddev_pop_order_by": { "steam_id": [ - 2016 + 2015 ], "__typename": [ - 75 + 74 ] }, "match_lineup_players_stddev_samp_fields": { @@ -25020,26 +25006,26 @@ export default { 29 ], "__typename": [ - 75 + 74 ] }, "match_lineup_players_stddev_samp_order_by": { "steam_id": [ - 2016 + 2015 ], "__typename": [ - 75 + 74 ] }, "match_lineup_players_stream_cursor_input": { "initial_value": [ - 1500 + 1499 ], "ordering": [ - 229 + 228 ], "__typename": [ - 75 + 74 ] }, "match_lineup_players_stream_cursor_value_input": { @@ -25050,53 +25036,53 @@ export default { 3 ], "discord_id": [ - 75 + 74 ], "id": [ - 3864 + 3863 ], "match_lineup_id": [ - 3864 + 3863 ], "placeholder_name": [ - 75 + 74 ], "steam_id": [ - 174 + 173 ], "__typename": [ - 75 + 74 ] }, "match_lineup_players_sum_fields": { "steam_id": [ - 174 + 173 ], "__typename": [ - 75 + 74 ] }, "match_lineup_players_sum_order_by": { "steam_id": [ - 2016 + 2015 ], "__typename": [ - 75 + 74 ] }, "match_lineup_players_update_column": {}, "match_lineup_players_updates": { "_inc": [ - 1479 + 1478 ], "_set": [ - 1492 + 1491 ], "where": [ - 1477 + 1476 ], "__typename": [ - 75 + 74 ] }, "match_lineup_players_var_pop_fields": { @@ -25104,15 +25090,15 @@ export default { 29 ], "__typename": [ - 75 + 74 ] }, "match_lineup_players_var_pop_order_by": { "steam_id": [ - 2016 + 2015 ], "__typename": [ - 75 + 74 ] }, "match_lineup_players_var_samp_fields": { @@ -25120,15 +25106,15 @@ export default { 29 ], "__typename": [ - 75 + 74 ] }, "match_lineup_players_var_samp_order_by": { "steam_id": [ - 2016 + 2015 ], "__typename": [ - 75 + 74 ] }, "match_lineup_players_variance_fields": { @@ -25136,15 +25122,15 @@ export default { 29 ], "__typename": [ - 75 + 74 ] }, "match_lineup_players_variance_order_by": { "steam_id": [ - 2016 + 2015 ], "__typename": [ - 75 + 74 ] }, "match_lineups": { @@ -25158,16 +25144,16 @@ export default { 3 ], "captain": [ - 3885 + 3884 ], "coach": [ - 2915 + 2914 ], "coach_steam_id": [ - 174 + 173 ], "id": [ - 3864 + 3863 ], "is_on_lineup": [ 3 @@ -25182,10 +25168,10 @@ export default { 3 ], "lineup_players": [ - 1466, + 1465, { "distinct_on": [ - 1489, + 1488, "[match_lineup_players_select_column!]" ], "limit": [ @@ -25195,19 +25181,19 @@ export default { 38 ], "order_by": [ - 1487, + 1486, "[match_lineup_players_order_by!]" ], "where": [ - 1477 + 1476 ] } ], "lineup_players_aggregate": [ - 1467, + 1466, { "distinct_on": [ - 1489, + 1488, "[match_lineup_players_select_column!]" ], "limit": [ @@ -25217,25 +25203,25 @@ export default { 38 ], "order_by": [ - 1487, + 1486, "[match_lineup_players_order_by!]" ], "where": [ - 1477 + 1476 ] } ], "match": [ - 1831 + 1830 ], "match_id": [ - 3864 + 3863 ], "match_veto_picks": [ - 1645, + 1644, { "distinct_on": [ - 1663, + 1662, "[match_map_veto_picks_select_column!]" ], "limit": [ @@ -25245,19 +25231,19 @@ export default { 38 ], "order_by": [ - 1661, + 1660, "[match_map_veto_picks_order_by!]" ], "where": [ - 1652 + 1651 ] } ], "match_veto_picks_aggregate": [ - 1646, + 1645, { "distinct_on": [ - 1663, + 1662, "[match_map_veto_picks_select_column!]" ], "limit": [ @@ -25267,75 +25253,75 @@ export default { 38 ], "order_by": [ - 1661, + 1660, "[match_map_veto_picks_order_by!]" ], "where": [ - 1652 + 1651 ] } ], "name": [ - 75 + 74 ], "team": [ - 3424 + 3423 ], "team_id": [ - 3864 + 3863 ], "team_name": [ - 75 + 74 ], "__typename": [ - 75 + 74 ] }, "match_lineups_aggregate": { "aggregate": [ - 1515 + 1514 ], "nodes": [ - 1511 + 1510 ], "__typename": [ - 75 + 74 ] }, "match_lineups_aggregate_bool_exp": { "count": [ - 1514 + 1513 ], "__typename": [ - 75 + 74 ] }, "match_lineups_aggregate_bool_exp_count": { "arguments": [ - 1533 + 1532 ], "distinct": [ 3 ], "filter": [ - 1520 + 1519 ], "predicate": [ 39 ], "__typename": [ - 75 + 74 ] }, "match_lineups_aggregate_fields": { "avg": [ - 1518 + 1517 ], "count": [ 38, { "columns": [ - 1533, + 1532, "[match_lineups_select_column!]" ], "distinct": [ @@ -25343,6 +25329,44 @@ export default { ] } ], + "max": [ + 1523 + ], + "min": [ + 1525 + ], + "stddev": [ + 1534 + ], + "stddev_pop": [ + 1536 + ], + "stddev_samp": [ + 1538 + ], + "sum": [ + 1542 + ], + "var_pop": [ + 1546 + ], + "var_samp": [ + 1548 + ], + "variance": [ + 1550 + ], + "__typename": [ + 74 + ] + }, + "match_lineups_aggregate_order_by": { + "avg": [ + 1518 + ], + "count": [ + 2015 + ], "max": [ 1524 ], @@ -25371,56 +25395,18 @@ export default { 1551 ], "__typename": [ - 75 - ] - }, - "match_lineups_aggregate_order_by": { - "avg": [ - 1519 - ], - "count": [ - 2016 - ], - "max": [ - 1525 - ], - "min": [ - 1527 - ], - "stddev": [ - 1536 - ], - "stddev_pop": [ - 1538 - ], - "stddev_samp": [ - 1540 - ], - "sum": [ - 1544 - ], - "var_pop": [ - 1548 - ], - "var_samp": [ - 1550 - ], - "variance": [ - 1552 - ], - "__typename": [ - 75 + 74 ] }, "match_lineups_arr_rel_insert_input": { "data": [ - 1523 + 1522 ], "on_conflict": [ - 1530 + 1529 ], "__typename": [ - 75 + 74 ] }, "match_lineups_avg_fields": { @@ -25428,26 +25414,26 @@ export default { 29 ], "__typename": [ - 75 + 74 ] }, "match_lineups_avg_order_by": { "coach_steam_id": [ - 2016 + 2015 ], "__typename": [ - 75 + 74 ] }, "match_lineups_bool_exp": { "_and": [ - 1520 + 1519 ], "_not": [ - 1520 + 1519 ], "_or": [ - 1520 + 1519 ], "can_pick_map_veto": [ 4 @@ -25459,16 +25445,16 @@ export default { 4 ], "captain": [ - 3889 + 3888 ], "coach": [ - 2919 + 2918 ], "coach_steam_id": [ - 176 + 175 ], "id": [ - 3866 + 3865 ], "is_on_lineup": [ 4 @@ -25483,170 +25469,170 @@ export default { 4 ], "lineup_players": [ - 1477 + 1476 ], "lineup_players_aggregate": [ - 1468 + 1467 ], "match": [ - 1840 + 1839 ], "match_id": [ - 3866 + 3865 ], "match_veto_picks": [ - 1652 + 1651 ], "match_veto_picks_aggregate": [ - 1647 + 1646 ], "name": [ - 77 + 76 ], "team": [ - 3433 + 3432 ], "team_id": [ - 3866 + 3865 ], "team_name": [ - 77 + 76 ], "__typename": [ - 75 + 74 ] }, "match_lineups_constraint": {}, "match_lineups_inc_input": { "coach_steam_id": [ - 174 + 173 ], "__typename": [ - 75 + 74 ] }, "match_lineups_insert_input": { "captain": [ - 3895 + 3894 ], "coach": [ - 2926 + 2925 ], "coach_steam_id": [ - 174 + 173 ], "id": [ - 3864 + 3863 ], "lineup_players": [ - 1474 + 1473 ], "match": [ - 1849 + 1848 ], "match_id": [ - 3864 + 3863 ], "match_veto_picks": [ - 1651 + 1650 ], "team": [ - 3442 + 3441 ], "team_id": [ - 3864 + 3863 ], "team_name": [ - 75 + 74 ], "__typename": [ - 75 + 74 ] }, "match_lineups_max_fields": { "coach_steam_id": [ - 174 + 173 ], "id": [ - 3864 + 3863 ], "match_id": [ - 3864 + 3863 ], "name": [ - 75 + 74 ], "team_id": [ - 3864 + 3863 ], "team_name": [ - 75 + 74 ], "__typename": [ - 75 + 74 ] }, "match_lineups_max_order_by": { "coach_steam_id": [ - 2016 + 2015 ], "id": [ - 2016 + 2015 ], "match_id": [ - 2016 + 2015 ], "team_id": [ - 2016 + 2015 ], "team_name": [ - 2016 + 2015 ], "__typename": [ - 75 + 74 ] }, "match_lineups_min_fields": { "coach_steam_id": [ - 174 + 173 ], "id": [ - 3864 + 3863 ], "match_id": [ - 3864 + 3863 ], "name": [ - 75 + 74 ], "team_id": [ - 3864 + 3863 ], "team_name": [ - 75 + 74 ], "__typename": [ - 75 + 74 ] }, "match_lineups_min_order_by": { "coach_steam_id": [ - 2016 + 2015 ], "id": [ - 2016 + 2015 ], "match_id": [ - 2016 + 2015 ], "team_id": [ - 2016 + 2015 ], "team_name": [ - 2016 + 2015 ], "__typename": [ - 75 + 74 ] }, "match_lineups_mutation_response": { @@ -25654,126 +25640,126 @@ export default { 38 ], "returning": [ - 1511 + 1510 ], "__typename": [ - 75 + 74 ] }, "match_lineups_obj_rel_insert_input": { "data": [ - 1523 + 1522 ], "on_conflict": [ - 1530 + 1529 ], "__typename": [ - 75 + 74 ] }, "match_lineups_on_conflict": { "constraint": [ - 1521 + 1520 ], "update_columns": [ - 1545 + 1544 ], "where": [ - 1520 + 1519 ], "__typename": [ - 75 + 74 ] }, "match_lineups_order_by": { "can_pick_map_veto": [ - 2016 + 2015 ], "can_pick_region_veto": [ - 2016 + 2015 ], "can_update_lineup": [ - 2016 + 2015 ], "captain": [ - 3896 + 3895 ], "coach": [ - 2928 + 2927 ], "coach_steam_id": [ - 2016 + 2015 ], "id": [ - 2016 + 2015 ], "is_on_lineup": [ - 2016 + 2015 ], "is_picking_map_veto": [ - 2016 + 2015 ], "is_picking_region_veto": [ - 2016 + 2015 ], "is_ready": [ - 2016 + 2015 ], "lineup_players_aggregate": [ - 1473 + 1472 ], "match": [ - 1851 + 1850 ], "match_id": [ - 2016 + 2015 ], "match_veto_picks_aggregate": [ - 1650 + 1649 ], "name": [ - 2016 + 2015 ], "team": [ - 3444 + 3443 ], "team_id": [ - 2016 + 2015 ], "team_name": [ - 2016 + 2015 ], "__typename": [ - 75 + 74 ] }, "match_lineups_pk_columns_input": { "id": [ - 3864 + 3863 ], "__typename": [ - 75 + 74 ] }, "match_lineups_select_column": {}, "match_lineups_set_input": { "coach_steam_id": [ - 174 + 173 ], "id": [ - 3864 + 3863 ], "match_id": [ - 3864 + 3863 ], "team_id": [ - 3864 + 3863 ], "team_name": [ - 75 + 74 ], "__typename": [ - 75 + 74 ] }, "match_lineups_stddev_fields": { @@ -25781,15 +25767,15 @@ export default { 29 ], "__typename": [ - 75 + 74 ] }, "match_lineups_stddev_order_by": { "coach_steam_id": [ - 2016 + 2015 ], "__typename": [ - 75 + 74 ] }, "match_lineups_stddev_pop_fields": { @@ -25797,15 +25783,15 @@ export default { 29 ], "__typename": [ - 75 + 74 ] }, "match_lineups_stddev_pop_order_by": { "coach_steam_id": [ - 2016 + 2015 ], "__typename": [ - 75 + 74 ] }, "match_lineups_stddev_samp_fields": { @@ -25813,77 +25799,77 @@ export default { 29 ], "__typename": [ - 75 + 74 ] }, "match_lineups_stddev_samp_order_by": { "coach_steam_id": [ - 2016 + 2015 ], "__typename": [ - 75 + 74 ] }, "match_lineups_stream_cursor_input": { "initial_value": [ - 1542 + 1541 ], "ordering": [ - 229 + 228 ], "__typename": [ - 75 + 74 ] }, "match_lineups_stream_cursor_value_input": { "coach_steam_id": [ - 174 + 173 ], "id": [ - 3864 + 3863 ], "match_id": [ - 3864 + 3863 ], "team_id": [ - 3864 + 3863 ], "team_name": [ - 75 + 74 ], "__typename": [ - 75 + 74 ] }, "match_lineups_sum_fields": { "coach_steam_id": [ - 174 + 173 ], "__typename": [ - 75 + 74 ] }, "match_lineups_sum_order_by": { "coach_steam_id": [ - 2016 + 2015 ], "__typename": [ - 75 + 74 ] }, "match_lineups_update_column": {}, "match_lineups_updates": { "_inc": [ - 1522 + 1521 ], "_set": [ - 1534 + 1533 ], "where": [ - 1520 + 1519 ], "__typename": [ - 75 + 74 ] }, "match_lineups_var_pop_fields": { @@ -25891,15 +25877,15 @@ export default { 29 ], "__typename": [ - 75 + 74 ] }, "match_lineups_var_pop_order_by": { "coach_steam_id": [ - 2016 + 2015 ], "__typename": [ - 75 + 74 ] }, "match_lineups_var_samp_fields": { @@ -25907,15 +25893,15 @@ export default { 29 ], "__typename": [ - 75 + 74 ] }, "match_lineups_var_samp_order_by": { "coach_steam_id": [ - 2016 + 2015 ], "__typename": [ - 75 + 74 ] }, "match_lineups_variance_fields": { @@ -25923,31 +25909,31 @@ export default { 29 ], "__typename": [ - 75 + 74 ] }, "match_lineups_variance_order_by": { "coach_steam_id": [ - 2016 + 2015 ], "__typename": [ - 75 + 74 ] }, "match_map_demos": { "bombs": [ - 1240, + 1239, { "path": [ - 75 + 74 ] } ], "clip_render_jobs": [ - 179, + 178, { "distinct_on": [ - 207, + 206, "[clip_render_jobs_select_column!]" ], "limit": [ @@ -25957,19 +25943,19 @@ export default { 38 ], "order_by": [ - 204, + 203, "[clip_render_jobs_order_by!]" ], "where": [ - 191 + 190 ] } ], "clip_render_jobs_aggregate": [ - 180, + 179, { "distinct_on": [ - 207, + 206, "[clip_render_jobs_select_column!]" ], "limit": [ @@ -25979,25 +25965,25 @@ export default { 38 ], "order_by": [ - 204, + 203, "[clip_render_jobs_order_by!]" ], "where": [ - 191 + 190 ] } ], "created_at": [ - 3467 + 3466 ], "cs2_build": [ - 75 + 74 ], "demo_sessions": [ - 1420, + 1419, { "distinct_on": [ - 1446, + 1445, "[match_demo_sessions_select_column!]" ], "limit": [ @@ -26007,19 +25993,19 @@ export default { 38 ], "order_by": [ - 1443, + 1442, "[match_demo_sessions_order_by!]" ], "where": [ - 1430 + 1429 ] } ], "demo_sessions_aggregate": [ - 1421, + 1420, { "distinct_on": [ - 1446, + 1445, "[match_demo_sessions_select_column!]" ], "limit": [ @@ -26029,48 +26015,48 @@ export default { 38 ], "order_by": [ - 1443, + 1442, "[match_demo_sessions_order_by!]" ], "where": [ - 1430 + 1429 ] } ], "download_url": [ - 75 + 74 ], "duration_seconds": [ 29 ], "file": [ - 75 + 74 ], "geometry_validated": [ 3 ], "id": [ - 3864 + 3863 ], "kills": [ - 1240, + 1239, { "path": [ - 75 + 74 ] } ], "map_name": [ - 75 + 74 ], "match": [ - 1831 + 1830 ], "match_clips": [ - 1378, + 1377, { "distinct_on": [ - 1400, + 1399, "[match_clips_select_column!]" ], "limit": [ @@ -26080,19 +26066,19 @@ export default { 38 ], "order_by": [ - 1398, + 1397, "[match_clips_order_by!]" ], "where": [ - 1387 + 1386 ] } ], "match_clips_aggregate": [ - 1379, + 1378, { "distinct_on": [ - 1400, + 1399, "[match_clips_select_column!]" ], "limit": [ @@ -26102,48 +26088,48 @@ export default { 38 ], "order_by": [ - 1398, + 1397, "[match_clips_order_by!]" ], "where": [ - 1387 + 1386 ] } ], "match_id": [ - 3864 + 3863 ], "match_map": [ - 1669 + 1668 ], "match_map_id": [ - 3864 + 3863 ], "metadata_parsed_at": [ - 3467 + 3466 ], "playback_file": [ - 75 + 74 ], "playback_size": [ 38 ], "playback_url": [ - 75 + 74 ], "players": [ - 1240, + 1239, { "path": [ - 75 + 74 ] } ], "round_ticks": [ - 1240, + 1239, { "path": [ - 75 + 74 ] } ], @@ -26157,97 +26143,97 @@ export default { 38 ], "workshop_id": [ - 75 + 74 ], "__typename": [ - 75 + 74 ] }, "match_map_demos_aggregate": { "aggregate": [ - 1559 + 1558 ], "nodes": [ - 1553 + 1552 ], "__typename": [ - 75 + 74 ] }, "match_map_demos_aggregate_bool_exp": { "bool_and": [ - 1556 + 1555 ], "bool_or": [ - 1557 + 1556 ], "count": [ - 1558 + 1557 ], "__typename": [ - 75 + 74 ] }, "match_map_demos_aggregate_bool_exp_bool_and": { "arguments": [ - 1583 + 1582 ], "distinct": [ 3 ], "filter": [ - 1565 + 1564 ], "predicate": [ 4 ], "__typename": [ - 75 + 74 ] }, "match_map_demos_aggregate_bool_exp_bool_or": { "arguments": [ - 1584 + 1583 ], "distinct": [ 3 ], "filter": [ - 1565 + 1564 ], "predicate": [ 4 ], "__typename": [ - 75 + 74 ] }, "match_map_demos_aggregate_bool_exp_count": { "arguments": [ - 1582 + 1581 ], "distinct": [ 3 ], "filter": [ - 1565 + 1564 ], "predicate": [ 39 ], "__typename": [ - 75 + 74 ] }, "match_map_demos_aggregate_fields": { "avg": [ - 1563 + 1562 ], "count": [ 38, { "columns": [ - 1582, + 1581, "[match_map_demos_select_column!]" ], "distinct": [ @@ -26256,100 +26242,100 @@ export default { } ], "max": [ - 1572 + 1571 ], "min": [ - 1574 + 1573 ], "stddev": [ - 1586 + 1585 ], "stddev_pop": [ - 1588 + 1587 ], "stddev_samp": [ - 1590 + 1589 ], "sum": [ - 1594 + 1593 ], "var_pop": [ - 1598 + 1597 ], "var_samp": [ - 1600 + 1599 ], "variance": [ - 1602 + 1601 ], "__typename": [ - 75 + 74 ] }, "match_map_demos_aggregate_order_by": { "avg": [ - 1564 + 1563 ], "count": [ - 2016 + 2015 ], "max": [ - 1573 + 1572 ], "min": [ - 1575 + 1574 ], "stddev": [ - 1587 + 1586 ], "stddev_pop": [ - 1589 + 1588 ], "stddev_samp": [ - 1591 + 1590 ], "sum": [ - 1595 + 1594 ], "var_pop": [ - 1599 + 1598 ], "var_samp": [ - 1601 + 1600 ], "variance": [ - 1603 + 1602 ], "__typename": [ - 75 + 74 ] }, "match_map_demos_append_input": { "bombs": [ - 1240 + 1239 ], "kills": [ - 1240 + 1239 ], "players": [ - 1240 + 1239 ], "round_ticks": [ - 1240 + 1239 ], "__typename": [ - 75 + 74 ] }, "match_map_demos_arr_rel_insert_input": { "data": [ - 1571 + 1570 ], "on_conflict": [ - 1578 + 1577 ], "__typename": [ - 75 + 74 ] }, "match_map_demos_avg_fields": { @@ -26369,116 +26355,116 @@ export default { 29 ], "__typename": [ - 75 + 74 ] }, "match_map_demos_avg_order_by": { "duration_seconds": [ - 2016 + 2015 ], "playback_size": [ - 2016 + 2015 ], "size": [ - 2016 + 2015 ], "tick_rate": [ - 2016 + 2015 ], "total_ticks": [ - 2016 + 2015 ], "__typename": [ - 75 + 74 ] }, "match_map_demos_bool_exp": { "_and": [ - 1565 + 1564 ], "_not": [ - 1565 + 1564 ], "_or": [ - 1565 + 1564 ], "bombs": [ - 1242 + 1241 ], "clip_render_jobs": [ - 191 + 190 ], "clip_render_jobs_aggregate": [ - 181 + 180 ], "created_at": [ - 3468 + 3467 ], "cs2_build": [ - 77 + 76 ], "demo_sessions": [ - 1430 + 1429 ], "demo_sessions_aggregate": [ - 1422 + 1421 ], "download_url": [ - 77 + 76 ], "duration_seconds": [ 30 ], "file": [ - 77 + 76 ], "geometry_validated": [ 4 ], "id": [ - 3866 + 3865 ], "kills": [ - 1242 + 1241 ], "map_name": [ - 77 + 76 ], "match": [ - 1840 + 1839 ], "match_clips": [ - 1387 + 1386 ], "match_clips_aggregate": [ - 1380 + 1379 ], "match_id": [ - 3866 + 3865 ], "match_map": [ - 1678 + 1677 ], "match_map_id": [ - 3866 + 3865 ], "metadata_parsed_at": [ - 3468 + 3467 ], "playback_file": [ - 77 + 76 ], "playback_size": [ 39 ], "playback_url": [ - 77 + 76 ], "players": [ - 1242 + 1241 ], "round_ticks": [ - 1242 + 1241 ], "size": [ 39 @@ -26490,28 +26476,28 @@ export default { 39 ], "workshop_id": [ - 77 + 76 ], "__typename": [ - 75 + 74 ] }, "match_map_demos_constraint": {}, "match_map_demos_delete_at_path_input": { "bombs": [ - 75 + 74 ], "kills": [ - 75 + 74 ], "players": [ - 75 + 74 ], "round_ticks": [ - 75 + 74 ], "__typename": [ - 75 + 74 ] }, "match_map_demos_delete_elem_input": { @@ -26528,24 +26514,24 @@ export default { 38 ], "__typename": [ - 75 + 74 ] }, "match_map_demos_delete_key_input": { "bombs": [ - 75 + 74 ], "kills": [ - 75 + 74 ], "players": [ - 75 + 74 ], "round_ticks": [ - 75 + 74 ], "__typename": [ - 75 + 74 ] }, "match_map_demos_inc_input": { @@ -26562,69 +26548,69 @@ export default { 38 ], "__typename": [ - 75 + 74 ] }, "match_map_demos_insert_input": { "bombs": [ - 1240 + 1239 ], "clip_render_jobs": [ - 188 + 187 ], "created_at": [ - 3467 + 3466 ], "cs2_build": [ - 75 + 74 ], "demo_sessions": [ - 1427 + 1426 ], "file": [ - 75 + 74 ], "geometry_validated": [ 3 ], "id": [ - 3864 + 3863 ], "kills": [ - 1240 + 1239 ], "map_name": [ - 75 + 74 ], "match": [ - 1849 + 1848 ], "match_clips": [ - 1384 + 1383 ], "match_id": [ - 3864 + 3863 ], "match_map": [ - 1687 + 1686 ], "match_map_id": [ - 3864 + 3863 ], "metadata_parsed_at": [ - 3467 + 3466 ], "playback_file": [ - 75 + 74 ], "playback_size": [ 38 ], "players": [ - 1240 + 1239 ], "round_ticks": [ - 1240 + 1239 ], "size": [ 38 @@ -26636,51 +26622,51 @@ export default { 38 ], "workshop_id": [ - 75 + 74 ], "__typename": [ - 75 + 74 ] }, "match_map_demos_max_fields": { "created_at": [ - 3467 + 3466 ], "cs2_build": [ - 75 + 74 ], "download_url": [ - 75 + 74 ], "duration_seconds": [ 29 ], "file": [ - 75 + 74 ], "id": [ - 3864 + 3863 ], "map_name": [ - 75 + 74 ], "match_id": [ - 3864 + 3863 ], "match_map_id": [ - 3864 + 3863 ], "metadata_parsed_at": [ - 3467 + 3466 ], "playback_file": [ - 75 + 74 ], "playback_size": [ 38 ], "playback_url": [ - 75 + 74 ], "size": [ 38 @@ -26692,101 +26678,101 @@ export default { 38 ], "workshop_id": [ - 75 + 74 ], "__typename": [ - 75 + 74 ] }, "match_map_demos_max_order_by": { "created_at": [ - 2016 + 2015 ], "cs2_build": [ - 2016 + 2015 ], "duration_seconds": [ - 2016 + 2015 ], "file": [ - 2016 + 2015 ], "id": [ - 2016 + 2015 ], "map_name": [ - 2016 + 2015 ], "match_id": [ - 2016 + 2015 ], "match_map_id": [ - 2016 + 2015 ], "metadata_parsed_at": [ - 2016 + 2015 ], "playback_file": [ - 2016 + 2015 ], "playback_size": [ - 2016 + 2015 ], "size": [ - 2016 + 2015 ], "tick_rate": [ - 2016 + 2015 ], "total_ticks": [ - 2016 + 2015 ], "workshop_id": [ - 2016 + 2015 ], "__typename": [ - 75 + 74 ] }, "match_map_demos_min_fields": { "created_at": [ - 3467 + 3466 ], "cs2_build": [ - 75 + 74 ], "download_url": [ - 75 + 74 ], "duration_seconds": [ 29 ], "file": [ - 75 + 74 ], "id": [ - 3864 + 3863 ], "map_name": [ - 75 + 74 ], "match_id": [ - 3864 + 3863 ], "match_map_id": [ - 3864 + 3863 ], "metadata_parsed_at": [ - 3467 + 3466 ], "playback_file": [ - 75 + 74 ], "playback_size": [ 38 ], "playback_url": [ - 75 + 74 ], "size": [ 38 @@ -26798,60 +26784,60 @@ export default { 38 ], "workshop_id": [ - 75 + 74 ], "__typename": [ - 75 + 74 ] }, "match_map_demos_min_order_by": { "created_at": [ - 2016 + 2015 ], "cs2_build": [ - 2016 + 2015 ], "duration_seconds": [ - 2016 + 2015 ], "file": [ - 2016 + 2015 ], "id": [ - 2016 + 2015 ], "map_name": [ - 2016 + 2015 ], "match_id": [ - 2016 + 2015 ], "match_map_id": [ - 2016 + 2015 ], "metadata_parsed_at": [ - 2016 + 2015 ], "playback_file": [ - 2016 + 2015 ], "playback_size": [ - 2016 + 2015 ], "size": [ - 2016 + 2015 ], "tick_rate": [ - 2016 + 2015 ], "total_ticks": [ - 2016 + 2015 ], "workshop_id": [ - 2016 + 2015 ], "__typename": [ - 75 + 74 ] }, "match_map_demos_mutation_response": { @@ -26859,146 +26845,146 @@ export default { 38 ], "returning": [ - 1553 + 1552 ], "__typename": [ - 75 + 74 ] }, "match_map_demos_obj_rel_insert_input": { "data": [ - 1571 + 1570 ], "on_conflict": [ - 1578 + 1577 ], "__typename": [ - 75 + 74 ] }, "match_map_demos_on_conflict": { "constraint": [ - 1566 + 1565 ], "update_columns": [ - 1596 + 1595 ], "where": [ - 1565 + 1564 ], "__typename": [ - 75 + 74 ] }, "match_map_demos_order_by": { "bombs": [ - 2016 + 2015 ], "clip_render_jobs_aggregate": [ - 186 + 185 ], "created_at": [ - 2016 + 2015 ], "cs2_build": [ - 2016 + 2015 ], "demo_sessions_aggregate": [ - 1425 + 1424 ], "download_url": [ - 2016 + 2015 ], "duration_seconds": [ - 2016 + 2015 ], "file": [ - 2016 + 2015 ], "geometry_validated": [ - 2016 + 2015 ], "id": [ - 2016 + 2015 ], "kills": [ - 2016 + 2015 ], "map_name": [ - 2016 + 2015 ], "match": [ - 1851 + 1850 ], "match_clips_aggregate": [ - 1383 + 1382 ], "match_id": [ - 2016 + 2015 ], "match_map": [ - 1689 + 1688 ], "match_map_id": [ - 2016 + 2015 ], "metadata_parsed_at": [ - 2016 + 2015 ], "playback_file": [ - 2016 + 2015 ], "playback_size": [ - 2016 + 2015 ], "playback_url": [ - 2016 + 2015 ], "players": [ - 2016 + 2015 ], "round_ticks": [ - 2016 + 2015 ], "size": [ - 2016 + 2015 ], "tick_rate": [ - 2016 + 2015 ], "total_ticks": [ - 2016 + 2015 ], "workshop_id": [ - 2016 + 2015 ], "__typename": [ - 75 + 74 ] }, "match_map_demos_pk_columns_input": { "id": [ - 3864 + 3863 ], "__typename": [ - 75 + 74 ] }, "match_map_demos_prepend_input": { "bombs": [ - 1240 + 1239 ], "kills": [ - 1240 + 1239 ], "players": [ - 1240 + 1239 ], "round_ticks": [ - 1240 + 1239 ], "__typename": [ - 75 + 74 ] }, "match_map_demos_select_column": {}, @@ -27006,49 +26992,49 @@ export default { "match_map_demos_select_column_match_map_demos_aggregate_bool_exp_bool_or_arguments_columns": {}, "match_map_demos_set_input": { "bombs": [ - 1240 + 1239 ], "created_at": [ - 3467 + 3466 ], "cs2_build": [ - 75 + 74 ], "file": [ - 75 + 74 ], "geometry_validated": [ 3 ], "id": [ - 3864 + 3863 ], "kills": [ - 1240 + 1239 ], "map_name": [ - 75 + 74 ], "match_id": [ - 3864 + 3863 ], "match_map_id": [ - 3864 + 3863 ], "metadata_parsed_at": [ - 3467 + 3466 ], "playback_file": [ - 75 + 74 ], "playback_size": [ 38 ], "players": [ - 1240 + 1239 ], "round_ticks": [ - 1240 + 1239 ], "size": [ 38 @@ -27060,10 +27046,10 @@ export default { 38 ], "workshop_id": [ - 75 + 74 ], "__typename": [ - 75 + 74 ] }, "match_map_demos_stddev_fields": { @@ -27083,27 +27069,27 @@ export default { 29 ], "__typename": [ - 75 + 74 ] }, "match_map_demos_stddev_order_by": { "duration_seconds": [ - 2016 + 2015 ], "playback_size": [ - 2016 + 2015 ], "size": [ - 2016 + 2015 ], "tick_rate": [ - 2016 + 2015 ], "total_ticks": [ - 2016 + 2015 ], "__typename": [ - 75 + 74 ] }, "match_map_demos_stddev_pop_fields": { @@ -27123,27 +27109,27 @@ export default { 29 ], "__typename": [ - 75 + 74 ] }, "match_map_demos_stddev_pop_order_by": { "duration_seconds": [ - 2016 + 2015 ], "playback_size": [ - 2016 + 2015 ], "size": [ - 2016 + 2015 ], "tick_rate": [ - 2016 + 2015 ], "total_ticks": [ - 2016 + 2015 ], "__typename": [ - 75 + 74 ] }, "match_map_demos_stddev_samp_fields": { @@ -27163,88 +27149,88 @@ export default { 29 ], "__typename": [ - 75 + 74 ] }, "match_map_demos_stddev_samp_order_by": { "duration_seconds": [ - 2016 + 2015 ], "playback_size": [ - 2016 + 2015 ], "size": [ - 2016 + 2015 ], "tick_rate": [ - 2016 + 2015 ], "total_ticks": [ - 2016 + 2015 ], "__typename": [ - 75 + 74 ] }, "match_map_demos_stream_cursor_input": { "initial_value": [ - 1593 + 1592 ], "ordering": [ - 229 + 228 ], "__typename": [ - 75 + 74 ] }, "match_map_demos_stream_cursor_value_input": { "bombs": [ - 1240 + 1239 ], "created_at": [ - 3467 + 3466 ], "cs2_build": [ - 75 + 74 ], "duration_seconds": [ 29 ], "file": [ - 75 + 74 ], "geometry_validated": [ 3 ], "id": [ - 3864 + 3863 ], "kills": [ - 1240 + 1239 ], "map_name": [ - 75 + 74 ], "match_id": [ - 3864 + 3863 ], "match_map_id": [ - 3864 + 3863 ], "metadata_parsed_at": [ - 3467 + 3466 ], "playback_file": [ - 75 + 74 ], "playback_size": [ 38 ], "players": [ - 1240 + 1239 ], "round_ticks": [ - 1240 + 1239 ], "size": [ 38 @@ -27256,10 +27242,10 @@ export default { 38 ], "workshop_id": [ - 75 + 74 ], "__typename": [ - 75 + 74 ] }, "match_map_demos_sum_fields": { @@ -27279,57 +27265,57 @@ export default { 38 ], "__typename": [ - 75 + 74 ] }, "match_map_demos_sum_order_by": { "duration_seconds": [ - 2016 + 2015 ], "playback_size": [ - 2016 + 2015 ], "size": [ - 2016 + 2015 ], "tick_rate": [ - 2016 + 2015 ], "total_ticks": [ - 2016 + 2015 ], "__typename": [ - 75 + 74 ] }, "match_map_demos_update_column": {}, "match_map_demos_updates": { "_append": [ - 1561 + 1560 ], "_delete_at_path": [ - 1567 + 1566 ], "_delete_elem": [ - 1568 + 1567 ], "_delete_key": [ - 1569 + 1568 ], "_inc": [ - 1570 + 1569 ], "_prepend": [ - 1581 + 1580 ], "_set": [ - 1585 + 1584 ], "where": [ - 1565 + 1564 ], "__typename": [ - 75 + 74 ] }, "match_map_demos_var_pop_fields": { @@ -27349,27 +27335,27 @@ export default { 29 ], "__typename": [ - 75 + 74 ] }, "match_map_demos_var_pop_order_by": { "duration_seconds": [ - 2016 + 2015 ], "playback_size": [ - 2016 + 2015 ], "size": [ - 2016 + 2015 ], "tick_rate": [ - 2016 + 2015 ], "total_ticks": [ - 2016 + 2015 ], "__typename": [ - 75 + 74 ] }, "match_map_demos_var_samp_fields": { @@ -27389,27 +27375,27 @@ export default { 29 ], "__typename": [ - 75 + 74 ] }, "match_map_demos_var_samp_order_by": { "duration_seconds": [ - 2016 + 2015 ], "playback_size": [ - 2016 + 2015 ], "size": [ - 2016 + 2015 ], "tick_rate": [ - 2016 + 2015 ], "total_ticks": [ - 2016 + 2015 ], "__typename": [ - 75 + 74 ] }, "match_map_demos_variance_fields": { @@ -27429,35 +27415,35 @@ export default { 29 ], "__typename": [ - 75 + 74 ] }, "match_map_demos_variance_order_by": { "duration_seconds": [ - 2016 + 2015 ], "playback_size": [ - 2016 + 2015 ], "size": [ - 2016 + 2015 ], "tick_rate": [ - 2016 + 2015 ], "total_ticks": [ - 2016 + 2015 ], "__typename": [ - 75 + 74 ] }, "match_map_rounds": { "assists": [ - 2154, + 2153, { "distinct_on": [ - 2177, + 2176, "[player_assists_select_column!]" ], "limit": [ @@ -27467,19 +27453,19 @@ export default { 38 ], "order_by": [ - 2175, + 2174, "[player_assists_order_by!]" ], "where": [ - 2165 + 2164 ] } ], "assists_aggregate": [ - 2155, + 2154, { "distinct_on": [ - 2177, + 2176, "[player_assists_select_column!]" ], "limit": [ @@ -27489,34 +27475,34 @@ export default { 38 ], "order_by": [ - 2175, + 2174, "[player_assists_order_by!]" ], "where": [ - 2165 + 2164 ] } ], "backup_file": [ - 75 + 74 ], "created_at": [ - 3467 + 3466 ], "deleted_at": [ - 3467 + 3466 ], "has_backup_file": [ 3 ], "id": [ - 3864 + 3863 ], "kills": [ - 2371, + 2370, { "distinct_on": [ - 2435, + 2434, "[player_kills_select_column!]" ], "limit": [ @@ -27526,19 +27512,19 @@ export default { 38 ], "order_by": [ - 2433, + 2432, "[player_kills_order_by!]" ], "where": [ - 2382 + 2381 ] } ], "kills_aggregate": [ - 2372, + 2371, { "distinct_on": [ - 2435, + 2434, "[player_kills_select_column!]" ], "limit": [ @@ -27548,11 +27534,11 @@ export default { 38 ], "order_by": [ - 2433, + 2432, "[player_kills_order_by!]" ], "where": [ - 2382 + 2381 ] } ], @@ -27563,7 +27549,7 @@ export default { 38 ], "lineup_1_side": [ - 891 + 890 ], "lineup_1_timeouts_available": [ 38 @@ -27575,78 +27561,78 @@ export default { 38 ], "lineup_2_side": [ - 891 + 890 ], "lineup_2_timeouts_available": [ 38 ], "match_map": [ - 1669 + 1668 ], "match_map_id": [ - 3864 + 3863 ], "round": [ 38 ], "time": [ - 3467 + 3466 ], "winning_reason": [ - 1074 + 1073 ], "winning_side": [ - 75 + 74 ], "__typename": [ - 75 + 74 ] }, "match_map_rounds_aggregate": { "aggregate": [ - 1608 + 1607 ], "nodes": [ - 1604 + 1603 ], "__typename": [ - 75 + 74 ] }, "match_map_rounds_aggregate_bool_exp": { "count": [ - 1607 + 1606 ], "__typename": [ - 75 + 74 ] }, "match_map_rounds_aggregate_bool_exp_count": { "arguments": [ - 1625 + 1624 ], "distinct": [ 3 ], "filter": [ - 1613 + 1612 ], "predicate": [ 39 ], "__typename": [ - 75 + 74 ] }, "match_map_rounds_aggregate_fields": { "avg": [ - 1611 + 1610 ], "count": [ 38, { "columns": [ - 1625, + 1624, "[match_map_rounds_select_column!]" ], "distinct": [ @@ -27654,6 +27640,44 @@ export default { ] } ], + "max": [ + 1616 + ], + "min": [ + 1618 + ], + "stddev": [ + 1626 + ], + "stddev_pop": [ + 1628 + ], + "stddev_samp": [ + 1630 + ], + "sum": [ + 1634 + ], + "var_pop": [ + 1638 + ], + "var_samp": [ + 1640 + ], + "variance": [ + 1642 + ], + "__typename": [ + 74 + ] + }, + "match_map_rounds_aggregate_order_by": { + "avg": [ + 1611 + ], + "count": [ + 2015 + ], "max": [ 1617 ], @@ -27682,56 +27706,18 @@ export default { 1643 ], "__typename": [ - 75 - ] - }, - "match_map_rounds_aggregate_order_by": { - "avg": [ - 1612 - ], - "count": [ - 2016 - ], - "max": [ - 1618 - ], - "min": [ - 1620 - ], - "stddev": [ - 1628 - ], - "stddev_pop": [ - 1630 - ], - "stddev_samp": [ - 1632 - ], - "sum": [ - 1636 - ], - "var_pop": [ - 1640 - ], - "var_samp": [ - 1642 - ], - "variance": [ - 1644 - ], - "__typename": [ - 75 + 74 ] }, "match_map_rounds_arr_rel_insert_input": { "data": [ - 1616 + 1615 ], "on_conflict": [ - 1622 + 1621 ], "__typename": [ - 75 + 74 ] }, "match_map_rounds_avg_fields": { @@ -27757,71 +27743,71 @@ export default { 29 ], "__typename": [ - 75 + 74 ] }, "match_map_rounds_avg_order_by": { "lineup_1_money": [ - 2016 + 2015 ], "lineup_1_score": [ - 2016 + 2015 ], "lineup_1_timeouts_available": [ - 2016 + 2015 ], "lineup_2_money": [ - 2016 + 2015 ], "lineup_2_score": [ - 2016 + 2015 ], "lineup_2_timeouts_available": [ - 2016 + 2015 ], "round": [ - 2016 + 2015 ], "__typename": [ - 75 + 74 ] }, "match_map_rounds_bool_exp": { "_and": [ - 1613 + 1612 ], "_not": [ - 1613 + 1612 ], "_or": [ - 1613 + 1612 ], "assists": [ - 2165 + 2164 ], "assists_aggregate": [ - 2156 + 2155 ], "backup_file": [ - 77 + 76 ], "created_at": [ - 3468 + 3467 ], "deleted_at": [ - 3468 + 3467 ], "has_backup_file": [ 4 ], "id": [ - 3866 + 3865 ], "kills": [ - 2382 + 2381 ], "kills_aggregate": [ - 2373 + 2372 ], "lineup_1_money": [ 39 @@ -27830,7 +27816,7 @@ export default { 39 ], "lineup_1_side": [ - 892 + 891 ], "lineup_1_timeouts_available": [ 39 @@ -27842,31 +27828,31 @@ export default { 39 ], "lineup_2_side": [ - 892 + 891 ], "lineup_2_timeouts_available": [ 39 ], "match_map": [ - 1678 + 1677 ], "match_map_id": [ - 3866 + 3865 ], "round": [ 39 ], "time": [ - 3468 + 3467 ], "winning_reason": [ - 1075 + 1074 ], "winning_side": [ - 77 + 76 ], "__typename": [ - 75 + 74 ] }, "match_map_rounds_constraint": {}, @@ -27893,27 +27879,27 @@ export default { 38 ], "__typename": [ - 75 + 74 ] }, "match_map_rounds_insert_input": { "assists": [ - 2162 + 2161 ], "backup_file": [ - 75 + 74 ], "created_at": [ - 3467 + 3466 ], "deleted_at": [ - 3467 + 3466 ], "id": [ - 3864 + 3863 ], "kills": [ - 2379 + 2378 ], "lineup_1_money": [ 38 @@ -27922,7 +27908,7 @@ export default { 38 ], "lineup_1_side": [ - 891 + 890 ], "lineup_1_timeouts_available": [ 38 @@ -27934,45 +27920,45 @@ export default { 38 ], "lineup_2_side": [ - 891 + 890 ], "lineup_2_timeouts_available": [ 38 ], "match_map": [ - 1687 + 1686 ], "match_map_id": [ - 3864 + 3863 ], "round": [ 38 ], "time": [ - 3467 + 3466 ], "winning_reason": [ - 1074 + 1073 ], "winning_side": [ - 75 + 74 ], "__typename": [ - 75 + 74 ] }, "match_map_rounds_max_fields": { "backup_file": [ - 75 + 74 ], "created_at": [ - 3467 + 3466 ], "deleted_at": [ - 3467 + 3466 ], "id": [ - 3864 + 3863 ], "lineup_1_money": [ 38 @@ -27993,80 +27979,80 @@ export default { 38 ], "match_map_id": [ - 3864 + 3863 ], "round": [ 38 ], "time": [ - 3467 + 3466 ], "winning_side": [ - 75 + 74 ], "__typename": [ - 75 + 74 ] }, "match_map_rounds_max_order_by": { "backup_file": [ - 2016 + 2015 ], "created_at": [ - 2016 + 2015 ], "deleted_at": [ - 2016 + 2015 ], "id": [ - 2016 + 2015 ], "lineup_1_money": [ - 2016 + 2015 ], "lineup_1_score": [ - 2016 + 2015 ], "lineup_1_timeouts_available": [ - 2016 + 2015 ], "lineup_2_money": [ - 2016 + 2015 ], "lineup_2_score": [ - 2016 + 2015 ], "lineup_2_timeouts_available": [ - 2016 + 2015 ], "match_map_id": [ - 2016 + 2015 ], "round": [ - 2016 + 2015 ], "time": [ - 2016 + 2015 ], "winning_side": [ - 2016 + 2015 ], "__typename": [ - 75 + 74 ] }, "match_map_rounds_min_fields": { "backup_file": [ - 75 + 74 ], "created_at": [ - 3467 + 3466 ], "deleted_at": [ - 3467 + 3466 ], "id": [ - 3864 + 3863 ], "lineup_1_money": [ 38 @@ -28087,66 +28073,66 @@ export default { 38 ], "match_map_id": [ - 3864 + 3863 ], "round": [ 38 ], "time": [ - 3467 + 3466 ], "winning_side": [ - 75 + 74 ], "__typename": [ - 75 + 74 ] }, "match_map_rounds_min_order_by": { "backup_file": [ - 2016 + 2015 ], "created_at": [ - 2016 + 2015 ], "deleted_at": [ - 2016 + 2015 ], "id": [ - 2016 + 2015 ], "lineup_1_money": [ - 2016 + 2015 ], "lineup_1_score": [ - 2016 + 2015 ], "lineup_1_timeouts_available": [ - 2016 + 2015 ], "lineup_2_money": [ - 2016 + 2015 ], "lineup_2_score": [ - 2016 + 2015 ], "lineup_2_timeouts_available": [ - 2016 + 2015 ], "match_map_id": [ - 2016 + 2015 ], "round": [ - 2016 + 2015 ], "time": [ - 2016 + 2015 ], "winning_side": [ - 2016 + 2015 ], "__typename": [ - 75 + 74 ] }, "match_map_rounds_mutation_response": { @@ -28154,115 +28140,115 @@ export default { 38 ], "returning": [ - 1604 + 1603 ], "__typename": [ - 75 + 74 ] }, "match_map_rounds_on_conflict": { "constraint": [ - 1614 + 1613 ], "update_columns": [ - 1637 + 1636 ], "where": [ - 1613 + 1612 ], "__typename": [ - 75 + 74 ] }, "match_map_rounds_order_by": { "assists_aggregate": [ - 2161 + 2160 ], "backup_file": [ - 2016 + 2015 ], "created_at": [ - 2016 + 2015 ], "deleted_at": [ - 2016 + 2015 ], "has_backup_file": [ - 2016 + 2015 ], "id": [ - 2016 + 2015 ], "kills_aggregate": [ - 2378 + 2377 ], "lineup_1_money": [ - 2016 + 2015 ], "lineup_1_score": [ - 2016 + 2015 ], "lineup_1_side": [ - 2016 + 2015 ], "lineup_1_timeouts_available": [ - 2016 + 2015 ], "lineup_2_money": [ - 2016 + 2015 ], "lineup_2_score": [ - 2016 + 2015 ], "lineup_2_side": [ - 2016 + 2015 ], "lineup_2_timeouts_available": [ - 2016 + 2015 ], "match_map": [ - 1689 + 1688 ], "match_map_id": [ - 2016 + 2015 ], "round": [ - 2016 + 2015 ], "time": [ - 2016 + 2015 ], "winning_reason": [ - 2016 + 2015 ], "winning_side": [ - 2016 + 2015 ], "__typename": [ - 75 + 74 ] }, "match_map_rounds_pk_columns_input": { "id": [ - 3864 + 3863 ], "__typename": [ - 75 + 74 ] }, "match_map_rounds_select_column": {}, "match_map_rounds_set_input": { "backup_file": [ - 75 + 74 ], "created_at": [ - 3467 + 3466 ], "deleted_at": [ - 3467 + 3466 ], "id": [ - 3864 + 3863 ], "lineup_1_money": [ 38 @@ -28271,7 +28257,7 @@ export default { 38 ], "lineup_1_side": [ - 891 + 890 ], "lineup_1_timeouts_available": [ 38 @@ -28283,28 +28269,28 @@ export default { 38 ], "lineup_2_side": [ - 891 + 890 ], "lineup_2_timeouts_available": [ 38 ], "match_map_id": [ - 3864 + 3863 ], "round": [ 38 ], "time": [ - 3467 + 3466 ], "winning_reason": [ - 1074 + 1073 ], "winning_side": [ - 75 + 74 ], "__typename": [ - 75 + 74 ] }, "match_map_rounds_stddev_fields": { @@ -28330,33 +28316,33 @@ export default { 29 ], "__typename": [ - 75 + 74 ] }, "match_map_rounds_stddev_order_by": { "lineup_1_money": [ - 2016 + 2015 ], "lineup_1_score": [ - 2016 + 2015 ], "lineup_1_timeouts_available": [ - 2016 + 2015 ], "lineup_2_money": [ - 2016 + 2015 ], "lineup_2_score": [ - 2016 + 2015 ], "lineup_2_timeouts_available": [ - 2016 + 2015 ], "round": [ - 2016 + 2015 ], "__typename": [ - 75 + 74 ] }, "match_map_rounds_stddev_pop_fields": { @@ -28382,33 +28368,33 @@ export default { 29 ], "__typename": [ - 75 + 74 ] }, "match_map_rounds_stddev_pop_order_by": { "lineup_1_money": [ - 2016 + 2015 ], "lineup_1_score": [ - 2016 + 2015 ], "lineup_1_timeouts_available": [ - 2016 + 2015 ], "lineup_2_money": [ - 2016 + 2015 ], "lineup_2_score": [ - 2016 + 2015 ], "lineup_2_timeouts_available": [ - 2016 + 2015 ], "round": [ - 2016 + 2015 ], "__typename": [ - 75 + 74 ] }, "match_map_rounds_stddev_samp_fields": { @@ -28434,58 +28420,58 @@ export default { 29 ], "__typename": [ - 75 + 74 ] }, "match_map_rounds_stddev_samp_order_by": { "lineup_1_money": [ - 2016 + 2015 ], "lineup_1_score": [ - 2016 + 2015 ], "lineup_1_timeouts_available": [ - 2016 + 2015 ], "lineup_2_money": [ - 2016 + 2015 ], "lineup_2_score": [ - 2016 + 2015 ], "lineup_2_timeouts_available": [ - 2016 + 2015 ], "round": [ - 2016 + 2015 ], "__typename": [ - 75 + 74 ] }, "match_map_rounds_stream_cursor_input": { "initial_value": [ - 1634 + 1633 ], "ordering": [ - 229 + 228 ], "__typename": [ - 75 + 74 ] }, "match_map_rounds_stream_cursor_value_input": { "backup_file": [ - 75 + 74 ], "created_at": [ - 3467 + 3466 ], "deleted_at": [ - 3467 + 3466 ], "id": [ - 3864 + 3863 ], "lineup_1_money": [ 38 @@ -28494,7 +28480,7 @@ export default { 38 ], "lineup_1_side": [ - 891 + 890 ], "lineup_1_timeouts_available": [ 38 @@ -28506,28 +28492,28 @@ export default { 38 ], "lineup_2_side": [ - 891 + 890 ], "lineup_2_timeouts_available": [ 38 ], "match_map_id": [ - 3864 + 3863 ], "round": [ 38 ], "time": [ - 3467 + 3466 ], "winning_reason": [ - 1074 + 1073 ], "winning_side": [ - 75 + 74 ], "__typename": [ - 75 + 74 ] }, "match_map_rounds_sum_fields": { @@ -28553,48 +28539,48 @@ export default { 38 ], "__typename": [ - 75 + 74 ] }, "match_map_rounds_sum_order_by": { "lineup_1_money": [ - 2016 + 2015 ], "lineup_1_score": [ - 2016 + 2015 ], "lineup_1_timeouts_available": [ - 2016 + 2015 ], "lineup_2_money": [ - 2016 + 2015 ], "lineup_2_score": [ - 2016 + 2015 ], "lineup_2_timeouts_available": [ - 2016 + 2015 ], "round": [ - 2016 + 2015 ], "__typename": [ - 75 + 74 ] }, "match_map_rounds_update_column": {}, "match_map_rounds_updates": { "_inc": [ - 1615 + 1614 ], "_set": [ - 1626 + 1625 ], "where": [ - 1613 + 1612 ], "__typename": [ - 75 + 74 ] }, "match_map_rounds_var_pop_fields": { @@ -28620,33 +28606,33 @@ export default { 29 ], "__typename": [ - 75 + 74 ] }, "match_map_rounds_var_pop_order_by": { "lineup_1_money": [ - 2016 + 2015 ], "lineup_1_score": [ - 2016 + 2015 ], "lineup_1_timeouts_available": [ - 2016 + 2015 ], "lineup_2_money": [ - 2016 + 2015 ], "lineup_2_score": [ - 2016 + 2015 ], "lineup_2_timeouts_available": [ - 2016 + 2015 ], "round": [ - 2016 + 2015 ], "__typename": [ - 75 + 74 ] }, "match_map_rounds_var_samp_fields": { @@ -28672,33 +28658,33 @@ export default { 29 ], "__typename": [ - 75 + 74 ] }, "match_map_rounds_var_samp_order_by": { "lineup_1_money": [ - 2016 + 2015 ], "lineup_1_score": [ - 2016 + 2015 ], "lineup_1_timeouts_available": [ - 2016 + 2015 ], "lineup_2_money": [ - 2016 + 2015 ], "lineup_2_score": [ - 2016 + 2015 ], "lineup_2_timeouts_available": [ - 2016 + 2015 ], "round": [ - 2016 + 2015 ], "__typename": [ - 75 + 74 ] }, "match_map_rounds_variance_fields": { @@ -28724,104 +28710,104 @@ export default { 29 ], "__typename": [ - 75 + 74 ] }, "match_map_rounds_variance_order_by": { "lineup_1_money": [ - 2016 + 2015 ], "lineup_1_score": [ - 2016 + 2015 ], "lineup_1_timeouts_available": [ - 2016 + 2015 ], "lineup_2_money": [ - 2016 + 2015 ], "lineup_2_score": [ - 2016 + 2015 ], "lineup_2_timeouts_available": [ - 2016 + 2015 ], "round": [ - 2016 + 2015 ], "__typename": [ - 75 + 74 ] }, "match_map_veto_picks": { "created_at": [ - 3467 + 3466 ], "id": [ - 3864 + 3863 ], "map": [ - 1349 + 1348 ], "map_id": [ - 3864 + 3863 ], "match": [ - 1831 + 1830 ], "match_id": [ - 3864 + 3863 ], "match_lineup": [ - 1511 + 1510 ], "match_lineup_id": [ - 3864 + 3863 ], "side": [ - 75 + 74 ], "type": [ - 1054 + 1053 ], "__typename": [ - 75 + 74 ] }, "match_map_veto_picks_aggregate": { "aggregate": [ - 1649 + 1648 ], "nodes": [ - 1645 + 1644 ], "__typename": [ - 75 + 74 ] }, "match_map_veto_picks_aggregate_bool_exp": { "count": [ - 1648 + 1647 ], "__typename": [ - 75 + 74 ] }, "match_map_veto_picks_aggregate_bool_exp_count": { "arguments": [ - 1663 + 1662 ], "distinct": [ 3 ], "filter": [ - 1652 + 1651 ], "predicate": [ 39 ], "__typename": [ - 75 + 74 ] }, "match_map_veto_picks_aggregate_fields": { @@ -28829,7 +28815,7 @@ export default { 38, { "columns": [ - 1663, + 1662, "[match_map_veto_picks_select_column!]" ], "distinct": [ @@ -28838,210 +28824,210 @@ export default { } ], "max": [ - 1655 + 1654 ], "min": [ - 1657 + 1656 ], "__typename": [ - 75 + 74 ] }, "match_map_veto_picks_aggregate_order_by": { "count": [ - 2016 + 2015 ], "max": [ - 1656 + 1655 ], "min": [ - 1658 + 1657 ], "__typename": [ - 75 + 74 ] }, "match_map_veto_picks_arr_rel_insert_input": { "data": [ - 1654 + 1653 ], "on_conflict": [ - 1660 + 1659 ], "__typename": [ - 75 + 74 ] }, "match_map_veto_picks_bool_exp": { "_and": [ - 1652 + 1651 ], "_not": [ - 1652 + 1651 ], "_or": [ - 1652 + 1651 ], "created_at": [ - 3468 + 3467 ], "id": [ - 3866 + 3865 ], "map": [ - 1358 + 1357 ], "map_id": [ - 3866 + 3865 ], "match": [ - 1840 + 1839 ], "match_id": [ - 3866 + 3865 ], "match_lineup": [ - 1520 + 1519 ], "match_lineup_id": [ - 3866 + 3865 ], "side": [ - 77 + 76 ], "type": [ - 1055 + 1054 ], "__typename": [ - 75 + 74 ] }, "match_map_veto_picks_constraint": {}, "match_map_veto_picks_insert_input": { "created_at": [ - 3467 + 3466 ], "id": [ - 3864 + 3863 ], "map": [ - 1366 + 1365 ], "map_id": [ - 3864 + 3863 ], "match": [ - 1849 + 1848 ], "match_id": [ - 3864 + 3863 ], "match_lineup": [ - 1529 + 1528 ], "match_lineup_id": [ - 3864 + 3863 ], "side": [ - 75 + 74 ], "type": [ - 1054 + 1053 ], "__typename": [ - 75 + 74 ] }, "match_map_veto_picks_max_fields": { "created_at": [ - 3467 + 3466 ], "id": [ - 3864 + 3863 ], "map_id": [ - 3864 + 3863 ], "match_id": [ - 3864 + 3863 ], "match_lineup_id": [ - 3864 + 3863 ], "side": [ - 75 + 74 ], "__typename": [ - 75 + 74 ] }, "match_map_veto_picks_max_order_by": { "created_at": [ - 2016 + 2015 ], "id": [ - 2016 + 2015 ], "map_id": [ - 2016 + 2015 ], "match_id": [ - 2016 + 2015 ], "match_lineup_id": [ - 2016 + 2015 ], "side": [ - 2016 + 2015 ], "__typename": [ - 75 + 74 ] }, "match_map_veto_picks_min_fields": { "created_at": [ - 3467 + 3466 ], "id": [ - 3864 + 3863 ], "map_id": [ - 3864 + 3863 ], "match_id": [ - 3864 + 3863 ], "match_lineup_id": [ - 3864 + 3863 ], "side": [ - 75 + 74 ], "__typename": [ - 75 + 74 ] }, "match_map_veto_picks_min_order_by": { "created_at": [ - 2016 + 2015 ], "id": [ - 2016 + 2015 ], "map_id": [ - 2016 + 2015 ], "match_id": [ - 2016 + 2015 ], "match_lineup_id": [ - 2016 + 2015 ], "side": [ - 2016 + 2015 ], "__typename": [ - 75 + 74 ] }, "match_map_veto_picks_mutation_response": { @@ -29049,143 +29035,143 @@ export default { 38 ], "returning": [ - 1645 + 1644 ], "__typename": [ - 75 + 74 ] }, "match_map_veto_picks_on_conflict": { "constraint": [ - 1653 + 1652 ], "update_columns": [ - 1667 + 1666 ], "where": [ - 1652 + 1651 ], "__typename": [ - 75 + 74 ] }, "match_map_veto_picks_order_by": { "created_at": [ - 2016 + 2015 ], "id": [ - 2016 + 2015 ], "map": [ - 1368 + 1367 ], "map_id": [ - 2016 + 2015 ], "match": [ - 1851 + 1850 ], "match_id": [ - 2016 + 2015 ], "match_lineup": [ - 1531 + 1530 ], "match_lineup_id": [ - 2016 + 2015 ], "side": [ - 2016 + 2015 ], "type": [ - 2016 + 2015 ], "__typename": [ - 75 + 74 ] }, "match_map_veto_picks_pk_columns_input": { "id": [ - 3864 + 3863 ], "__typename": [ - 75 + 74 ] }, "match_map_veto_picks_select_column": {}, "match_map_veto_picks_set_input": { "created_at": [ - 3467 + 3466 ], "id": [ - 3864 + 3863 ], "map_id": [ - 3864 + 3863 ], "match_id": [ - 3864 + 3863 ], "match_lineup_id": [ - 3864 + 3863 ], "side": [ - 75 + 74 ], "type": [ - 1054 + 1053 ], "__typename": [ - 75 + 74 ] }, "match_map_veto_picks_stream_cursor_input": { "initial_value": [ - 1666 + 1665 ], "ordering": [ - 229 + 228 ], "__typename": [ - 75 + 74 ] }, "match_map_veto_picks_stream_cursor_value_input": { "created_at": [ - 3467 + 3466 ], "id": [ - 3864 + 3863 ], "map_id": [ - 3864 + 3863 ], "match_id": [ - 3864 + 3863 ], "match_lineup_id": [ - 3864 + 3863 ], "side": [ - 75 + 74 ], "type": [ - 1054 + 1053 ], "__typename": [ - 75 + 74 ] }, "match_map_veto_picks_update_column": {}, "match_map_veto_picks_updates": { "_set": [ - 1664 + 1663 ], "where": [ - 1652 + 1651 ], "__typename": [ - 75 + 74 ] }, "match_maps": { @@ -29193,13 +29179,13 @@ export default { 38 ], "created_at": [ - 3467 + 3466 ], "demos": [ - 1553, + 1552, { "distinct_on": [ - 1582, + 1581, "[match_map_demos_select_column!]" ], "limit": [ @@ -29209,19 +29195,19 @@ export default { 38 ], "order_by": [ - 1579, + 1578, "[match_map_demos_order_by!]" ], "where": [ - 1565 + 1564 ] } ], "demos_aggregate": [ - 1554, + 1553, { "distinct_on": [ - 1582, + 1581, "[match_map_demos_select_column!]" ], "limit": [ @@ -29231,31 +29217,31 @@ export default { 38 ], "order_by": [ - 1579, + 1578, "[match_map_demos_order_by!]" ], "where": [ - 1565 + 1564 ] } ], "demos_download_url": [ - 75 + 74 ], "demos_total_size": [ 38 ], "e_match_map_status": [ - 662 + 661 ], "ended_at": [ - 3467 + 3466 ], "flashes": [ - 2326, + 2325, { "distinct_on": [ - 2349, + 2348, "[player_flashes_select_column!]" ], "limit": [ @@ -29265,19 +29251,19 @@ export default { 38 ], "order_by": [ - 2347, + 2346, "[player_flashes_order_by!]" ], "where": [ - 2337 + 2336 ] } ], "flashes_aggregate": [ - 2327, + 2326, { "distinct_on": [ - 2349, + 2348, "[player_flashes_select_column!]" ], "limit": [ @@ -29287,28 +29273,28 @@ export default { 38 ], "order_by": [ - 2347, + 2346, "[player_flashes_order_by!]" ], "where": [ - 2337 + 2336 ] } ], "id": [ - 3864 + 3863 ], "is_current_map": [ 3 ], "latest_clip_at": [ - 3467 + 3466 ], "lineup_1_score": [ 38 ], "lineup_1_side": [ - 891 + 890 ], "lineup_1_timeouts_available": [ 38 @@ -29317,25 +29303,25 @@ export default { 38 ], "lineup_2_side": [ - 891 + 890 ], "lineup_2_timeouts_available": [ 38 ], "map": [ - 1349 + 1348 ], "map_id": [ - 3864 + 3863 ], "match": [ - 1831 + 1830 ], "match_clips": [ - 1378, + 1377, { "distinct_on": [ - 1400, + 1399, "[match_clips_select_column!]" ], "limit": [ @@ -29345,19 +29331,19 @@ export default { 38 ], "order_by": [ - 1398, + 1397, "[match_clips_order_by!]" ], "where": [ - 1387 + 1386 ] } ], "match_clips_aggregate": [ - 1379, + 1378, { "distinct_on": [ - 1400, + 1399, "[match_clips_select_column!]" ], "limit": [ @@ -29367,22 +29353,22 @@ export default { 38 ], "order_by": [ - 1398, + 1397, "[match_clips_order_by!]" ], "where": [ - 1387 + 1386 ] } ], "match_id": [ - 3864 + 3863 ], "objectives": [ - 2572, + 2571, { "distinct_on": [ - 2593, + 2592, "[player_objectives_select_column!]" ], "limit": [ @@ -29392,19 +29378,19 @@ export default { 38 ], "order_by": [ - 2591, + 2590, "[player_objectives_order_by!]" ], "where": [ - 2581 + 2580 ] } ], "objectives_aggregate": [ - 2573, + 2572, { "distinct_on": [ - 2593, + 2592, "[player_objectives_select_column!]" ], "limit": [ @@ -29414,11 +29400,11 @@ export default { 38 ], "order_by": [ - 2591, + 2590, "[player_objectives_order_by!]" ], "where": [ - 2581 + 2580 ] } ], @@ -29426,10 +29412,10 @@ export default { 38 ], "player_assists": [ - 2154, + 2153, { "distinct_on": [ - 2177, + 2176, "[player_assists_select_column!]" ], "limit": [ @@ -29439,19 +29425,19 @@ export default { 38 ], "order_by": [ - 2175, + 2174, "[player_assists_order_by!]" ], "where": [ - 2165 + 2164 ] } ], "player_assists_aggregate": [ - 2155, + 2154, { "distinct_on": [ - 2177, + 2176, "[player_assists_select_column!]" ], "limit": [ @@ -29461,19 +29447,19 @@ export default { 38 ], "order_by": [ - 2175, + 2174, "[player_assists_order_by!]" ], "where": [ - 2165 + 2164 ] } ], "player_damages": [ - 2217, + 2216, { "distinct_on": [ - 2238, + 2237, "[player_damages_select_column!]" ], "limit": [ @@ -29483,19 +29469,19 @@ export default { 38 ], "order_by": [ - 2236, + 2235, "[player_damages_order_by!]" ], "where": [ - 2226 + 2225 ] } ], "player_damages_aggregate": [ - 2218, + 2217, { "distinct_on": [ - 2238, + 2237, "[player_damages_select_column!]" ], "limit": [ @@ -29505,19 +29491,19 @@ export default { 38 ], "order_by": [ - 2236, + 2235, "[player_damages_order_by!]" ], "where": [ - 2226 + 2225 ] } ], "player_kills": [ - 2371, + 2370, { "distinct_on": [ - 2435, + 2434, "[player_kills_select_column!]" ], "limit": [ @@ -29527,19 +29513,19 @@ export default { 38 ], "order_by": [ - 2433, + 2432, "[player_kills_order_by!]" ], "where": [ - 2382 + 2381 ] } ], "player_kills_aggregate": [ - 2372, + 2371, { "distinct_on": [ - 2435, + 2434, "[player_kills_select_column!]" ], "limit": [ @@ -29549,19 +29535,19 @@ export default { 38 ], "order_by": [ - 2433, + 2432, "[player_kills_order_by!]" ], "where": [ - 2382 + 2381 ] } ], "player_unused_utilities": [ - 2800, + 2799, { "distinct_on": [ - 2821, + 2820, "[player_unused_utility_select_column!]" ], "limit": [ @@ -29571,19 +29557,19 @@ export default { 38 ], "order_by": [ - 2819, + 2818, "[player_unused_utility_order_by!]" ], "where": [ - 2809 + 2808 ] } ], "player_unused_utilities_aggregate": [ - 2801, + 2800, { "distinct_on": [ - 2821, + 2820, "[player_unused_utility_select_column!]" ], "limit": [ @@ -29593,11 +29579,11 @@ export default { 38 ], "order_by": [ - 2819, + 2818, "[player_unused_utility_order_by!]" ], "where": [ - 2809 + 2808 ] } ], @@ -29605,13 +29591,13 @@ export default { 38 ], "public_latest_clip_at": [ - 3467 + 3466 ], "rounds": [ - 1604, + 1603, { "distinct_on": [ - 1625, + 1624, "[match_map_rounds_select_column!]" ], "limit": [ @@ -29621,19 +29607,19 @@ export default { 38 ], "order_by": [ - 1623, + 1622, "[match_map_rounds_order_by!]" ], "where": [ - 1613 + 1612 ] } ], "rounds_aggregate": [ - 1605, + 1604, { "distinct_on": [ - 1625, + 1624, "[match_map_rounds_select_column!]" ], "limit": [ @@ -29643,25 +29629,25 @@ export default { 38 ], "order_by": [ - 1623, + 1622, "[match_map_rounds_order_by!]" ], "where": [ - 1613 + 1612 ] } ], "started_at": [ - 3467 + 3466 ], "status": [ - 667 + 666 ], "utility": [ - 2841, + 2840, { "distinct_on": [ - 2862, + 2861, "[player_utility_select_column!]" ], "limit": [ @@ -29671,19 +29657,19 @@ export default { 38 ], "order_by": [ - 2860, + 2859, "[player_utility_order_by!]" ], "where": [ - 2850 + 2849 ] } ], "utility_aggregate": [ - 2842, + 2841, { "distinct_on": [ - 2862, + 2861, "[player_utility_select_column!]" ], "limit": [ @@ -29693,19 +29679,19 @@ export default { 38 ], "order_by": [ - 2860, + 2859, "[player_utility_order_by!]" ], "where": [ - 2850 + 2849 ] } ], "vetos": [ - 1645, + 1644, { "distinct_on": [ - 1663, + 1662, "[match_map_veto_picks_select_column!]" ], "limit": [ @@ -29715,19 +29701,19 @@ export default { 38 ], "order_by": [ - 1661, + 1660, "[match_map_veto_picks_order_by!]" ], "where": [ - 1652 + 1651 ] } ], "vetos_aggregate": [ - 1646, + 1645, { "distinct_on": [ - 1663, + 1662, "[match_map_veto_picks_select_column!]" ], "limit": [ @@ -29737,66 +29723,66 @@ export default { 38 ], "order_by": [ - 1661, + 1660, "[match_map_veto_picks_order_by!]" ], "where": [ - 1652 + 1651 ] } ], "winning_lineup_id": [ - 3864 + 3863 ], "__typename": [ - 75 + 74 ] }, "match_maps_aggregate": { "aggregate": [ - 1673 + 1672 ], "nodes": [ - 1669 + 1668 ], "__typename": [ - 75 + 74 ] }, "match_maps_aggregate_bool_exp": { "count": [ - 1672 + 1671 ], "__typename": [ - 75 + 74 ] }, "match_maps_aggregate_bool_exp_count": { "arguments": [ - 1691 + 1690 ], "distinct": [ 3 ], "filter": [ - 1678 + 1677 ], "predicate": [ 39 ], "__typename": [ - 75 + 74 ] }, "match_maps_aggregate_fields": { "avg": [ - 1676 + 1675 ], "count": [ 38, { "columns": [ - 1691, + 1690, "[match_maps_select_column!]" ], "distinct": [ @@ -29804,6 +29790,44 @@ export default { ] } ], + "max": [ + 1681 + ], + "min": [ + 1683 + ], + "stddev": [ + 1692 + ], + "stddev_pop": [ + 1694 + ], + "stddev_samp": [ + 1696 + ], + "sum": [ + 1700 + ], + "var_pop": [ + 1704 + ], + "var_samp": [ + 1706 + ], + "variance": [ + 1708 + ], + "__typename": [ + 74 + ] + }, + "match_maps_aggregate_order_by": { + "avg": [ + 1676 + ], + "count": [ + 2015 + ], "max": [ 1682 ], @@ -29832,56 +29856,18 @@ export default { 1709 ], "__typename": [ - 75 - ] - }, - "match_maps_aggregate_order_by": { - "avg": [ - 1677 - ], - "count": [ - 2016 - ], - "max": [ - 1683 - ], - "min": [ - 1685 - ], - "stddev": [ - 1694 - ], - "stddev_pop": [ - 1696 - ], - "stddev_samp": [ - 1698 - ], - "sum": [ - 1702 - ], - "var_pop": [ - 1706 - ], - "var_samp": [ - 1708 - ], - "variance": [ - 1710 - ], - "__typename": [ - 75 + 74 ] }, "match_maps_arr_rel_insert_input": { "data": [ - 1681 + 1680 ], "on_conflict": [ - 1688 + 1687 ], "__typename": [ - 75 + 74 ] }, "match_maps_avg_fields": { @@ -29910,83 +29896,83 @@ export default { 29 ], "__typename": [ - 75 + 74 ] }, "match_maps_avg_order_by": { "clips_count": [ - 2016 + 2015 ], "lineup_1_timeouts_available": [ - 2016 + 2015 ], "lineup_2_timeouts_available": [ - 2016 + 2015 ], "order": [ - 2016 + 2015 ], "public_clips_count": [ - 2016 + 2015 ], "__typename": [ - 75 + 74 ] }, "match_maps_bool_exp": { "_and": [ - 1678 + 1677 ], "_not": [ - 1678 + 1677 ], "_or": [ - 1678 + 1677 ], "clips_count": [ 39 ], "created_at": [ - 3468 + 3467 ], "demos": [ - 1565 + 1564 ], "demos_aggregate": [ - 1555 + 1554 ], "demos_download_url": [ - 77 + 76 ], "demos_total_size": [ 39 ], "e_match_map_status": [ - 665 + 664 ], "ended_at": [ - 3468 + 3467 ], "flashes": [ - 2337 + 2336 ], "flashes_aggregate": [ - 2328 + 2327 ], "id": [ - 3866 + 3865 ], "is_current_map": [ 4 ], "latest_clip_at": [ - 3468 + 3467 ], "lineup_1_score": [ 39 ], "lineup_1_side": [ - 892 + 891 ], "lineup_1_timeouts_available": [ 39 @@ -29995,97 +29981,97 @@ export default { 39 ], "lineup_2_side": [ - 892 + 891 ], "lineup_2_timeouts_available": [ 39 ], "map": [ - 1358 + 1357 ], "map_id": [ - 3866 + 3865 ], "match": [ - 1840 + 1839 ], "match_clips": [ - 1387 + 1386 ], "match_clips_aggregate": [ - 1380 + 1379 ], "match_id": [ - 3866 + 3865 ], "objectives": [ - 2581 + 2580 ], "objectives_aggregate": [ - 2574 + 2573 ], "order": [ 39 ], "player_assists": [ - 2165 + 2164 ], "player_assists_aggregate": [ - 2156 + 2155 ], "player_damages": [ - 2226 + 2225 ], "player_damages_aggregate": [ - 2219 + 2218 ], "player_kills": [ - 2382 + 2381 ], "player_kills_aggregate": [ - 2373 + 2372 ], "player_unused_utilities": [ - 2809 + 2808 ], "player_unused_utilities_aggregate": [ - 2802 + 2801 ], "public_clips_count": [ 39 ], "public_latest_clip_at": [ - 3468 + 3467 ], "rounds": [ - 1613 + 1612 ], "rounds_aggregate": [ - 1606 + 1605 ], "started_at": [ - 3468 + 3467 ], "status": [ - 668 + 667 ], "utility": [ - 2850 + 2849 ], "utility_aggregate": [ - 2843 + 2842 ], "vetos": [ - 1652 + 1651 ], "vetos_aggregate": [ - 1647 + 1646 ], "winning_lineup_id": [ - 3866 + 3865 ], "__typename": [ - 75 + 74 ] }, "match_maps_constraint": {}, @@ -30106,7 +30092,7 @@ export default { 38 ], "__typename": [ - 75 + 74 ] }, "match_maps_insert_input": { @@ -30114,97 +30100,97 @@ export default { 38 ], "created_at": [ - 3467 + 3466 ], "demos": [ - 1562 + 1561 ], "e_match_map_status": [ - 673 + 672 ], "ended_at": [ - 3467 + 3466 ], "flashes": [ - 2334 + 2333 ], "id": [ - 3864 + 3863 ], "latest_clip_at": [ - 3467 + 3466 ], "lineup_1_side": [ - 891 + 890 ], "lineup_1_timeouts_available": [ 38 ], "lineup_2_side": [ - 891 + 890 ], "lineup_2_timeouts_available": [ 38 ], "map": [ - 1366 + 1365 ], "map_id": [ - 3864 + 3863 ], "match": [ - 1849 + 1848 ], "match_clips": [ - 1384 + 1383 ], "match_id": [ - 3864 + 3863 ], "objectives": [ - 2578 + 2577 ], "order": [ 38 ], "player_assists": [ - 2162 + 2161 ], "player_damages": [ - 2223 + 2222 ], "player_kills": [ - 2379 + 2378 ], "player_unused_utilities": [ - 2806 + 2805 ], "public_clips_count": [ 38 ], "public_latest_clip_at": [ - 3467 + 3466 ], "rounds": [ - 1610 + 1609 ], "started_at": [ - 3467 + 3466 ], "status": [ - 667 + 666 ], "utility": [ - 2847 + 2846 ], "vetos": [ - 1651 + 1650 ], "winning_lineup_id": [ - 3864 + 3863 ], "__typename": [ - 75 + 74 ] }, "match_maps_max_fields": { @@ -30212,22 +30198,22 @@ export default { 38 ], "created_at": [ - 3467 + 3466 ], "demos_download_url": [ - 75 + 74 ], "demos_total_size": [ 38 ], "ended_at": [ - 3467 + 3466 ], "id": [ - 3864 + 3863 ], "latest_clip_at": [ - 3467 + 3466 ], "lineup_1_score": [ 38 @@ -30242,10 +30228,10 @@ export default { 38 ], "map_id": [ - 3864 + 3863 ], "match_id": [ - 3864 + 3863 ], "order": [ 38 @@ -30254,63 +30240,63 @@ export default { 38 ], "public_latest_clip_at": [ - 3467 + 3466 ], "started_at": [ - 3467 + 3466 ], "winning_lineup_id": [ - 3864 + 3863 ], "__typename": [ - 75 + 74 ] }, "match_maps_max_order_by": { "clips_count": [ - 2016 + 2015 ], "created_at": [ - 2016 + 2015 ], "ended_at": [ - 2016 + 2015 ], "id": [ - 2016 + 2015 ], "latest_clip_at": [ - 2016 + 2015 ], "lineup_1_timeouts_available": [ - 2016 + 2015 ], "lineup_2_timeouts_available": [ - 2016 + 2015 ], "map_id": [ - 2016 + 2015 ], "match_id": [ - 2016 + 2015 ], "order": [ - 2016 + 2015 ], "public_clips_count": [ - 2016 + 2015 ], "public_latest_clip_at": [ - 2016 + 2015 ], "started_at": [ - 2016 + 2015 ], "winning_lineup_id": [ - 2016 + 2015 ], "__typename": [ - 75 + 74 ] }, "match_maps_min_fields": { @@ -30318,22 +30304,22 @@ export default { 38 ], "created_at": [ - 3467 + 3466 ], "demos_download_url": [ - 75 + 74 ], "demos_total_size": [ 38 ], "ended_at": [ - 3467 + 3466 ], "id": [ - 3864 + 3863 ], "latest_clip_at": [ - 3467 + 3466 ], "lineup_1_score": [ 38 @@ -30348,10 +30334,10 @@ export default { 38 ], "map_id": [ - 3864 + 3863 ], "match_id": [ - 3864 + 3863 ], "order": [ 38 @@ -30360,63 +30346,63 @@ export default { 38 ], "public_latest_clip_at": [ - 3467 + 3466 ], "started_at": [ - 3467 + 3466 ], "winning_lineup_id": [ - 3864 + 3863 ], "__typename": [ - 75 + 74 ] }, "match_maps_min_order_by": { "clips_count": [ - 2016 + 2015 ], "created_at": [ - 2016 + 2015 ], "ended_at": [ - 2016 + 2015 ], "id": [ - 2016 + 2015 ], "latest_clip_at": [ - 2016 + 2015 ], "lineup_1_timeouts_available": [ - 2016 + 2015 ], "lineup_2_timeouts_available": [ - 2016 + 2015 ], "map_id": [ - 2016 + 2015 ], "match_id": [ - 2016 + 2015 ], "order": [ - 2016 + 2015 ], "public_clips_count": [ - 2016 + 2015 ], "public_latest_clip_at": [ - 2016 + 2015 ], "started_at": [ - 2016 + 2015 ], "winning_lineup_id": [ - 2016 + 2015 ], "__typename": [ - 75 + 74 ] }, "match_maps_mutation_response": { @@ -30424,156 +30410,156 @@ export default { 38 ], "returning": [ - 1669 + 1668 ], "__typename": [ - 75 + 74 ] }, "match_maps_obj_rel_insert_input": { "data": [ - 1681 + 1680 ], "on_conflict": [ - 1688 + 1687 ], "__typename": [ - 75 + 74 ] }, "match_maps_on_conflict": { "constraint": [ - 1679 + 1678 ], "update_columns": [ - 1703 + 1702 ], "where": [ - 1678 + 1677 ], "__typename": [ - 75 + 74 ] }, "match_maps_order_by": { "clips_count": [ - 2016 + 2015 ], "created_at": [ - 2016 + 2015 ], "demos_aggregate": [ - 1560 + 1559 ], "demos_download_url": [ - 2016 + 2015 ], "demos_total_size": [ - 2016 + 2015 ], "e_match_map_status": [ - 675 + 674 ], "ended_at": [ - 2016 + 2015 ], "flashes_aggregate": [ - 2333 + 2332 ], "id": [ - 2016 + 2015 ], "is_current_map": [ - 2016 + 2015 ], "latest_clip_at": [ - 2016 + 2015 ], "lineup_1_score": [ - 2016 + 2015 ], "lineup_1_side": [ - 2016 + 2015 ], "lineup_1_timeouts_available": [ - 2016 + 2015 ], "lineup_2_score": [ - 2016 + 2015 ], "lineup_2_side": [ - 2016 + 2015 ], "lineup_2_timeouts_available": [ - 2016 + 2015 ], "map": [ - 1368 + 1367 ], "map_id": [ - 2016 + 2015 ], "match": [ - 1851 + 1850 ], "match_clips_aggregate": [ - 1383 + 1382 ], "match_id": [ - 2016 + 2015 ], "objectives_aggregate": [ - 2577 + 2576 ], "order": [ - 2016 + 2015 ], "player_assists_aggregate": [ - 2161 + 2160 ], "player_damages_aggregate": [ - 2222 + 2221 ], "player_kills_aggregate": [ - 2378 + 2377 ], "player_unused_utilities_aggregate": [ - 2805 + 2804 ], "public_clips_count": [ - 2016 + 2015 ], "public_latest_clip_at": [ - 2016 + 2015 ], "rounds_aggregate": [ - 1609 + 1608 ], "started_at": [ - 2016 + 2015 ], "status": [ - 2016 + 2015 ], "utility_aggregate": [ - 2846 + 2845 ], "vetos_aggregate": [ - 1650 + 1649 ], "winning_lineup_id": [ - 2016 + 2015 ], "__typename": [ - 75 + 74 ] }, "match_maps_pk_columns_input": { "id": [ - 3864 + 3863 ], "__typename": [ - 75 + 74 ] }, "match_maps_select_column": {}, @@ -30582,34 +30568,34 @@ export default { 38 ], "created_at": [ - 3467 + 3466 ], "ended_at": [ - 3467 + 3466 ], "id": [ - 3864 + 3863 ], "latest_clip_at": [ - 3467 + 3466 ], "lineup_1_side": [ - 891 + 890 ], "lineup_1_timeouts_available": [ 38 ], "lineup_2_side": [ - 891 + 890 ], "lineup_2_timeouts_available": [ 38 ], "map_id": [ - 3864 + 3863 ], "match_id": [ - 3864 + 3863 ], "order": [ 38 @@ -30618,19 +30604,19 @@ export default { 38 ], "public_latest_clip_at": [ - 3467 + 3466 ], "started_at": [ - 3467 + 3466 ], "status": [ - 667 + 666 ], "winning_lineup_id": [ - 3864 + 3863 ], "__typename": [ - 75 + 74 ] }, "match_maps_stddev_fields": { @@ -30659,27 +30645,27 @@ export default { 29 ], "__typename": [ - 75 + 74 ] }, "match_maps_stddev_order_by": { "clips_count": [ - 2016 + 2015 ], "lineup_1_timeouts_available": [ - 2016 + 2015 ], "lineup_2_timeouts_available": [ - 2016 + 2015 ], "order": [ - 2016 + 2015 ], "public_clips_count": [ - 2016 + 2015 ], "__typename": [ - 75 + 74 ] }, "match_maps_stddev_pop_fields": { @@ -30708,27 +30694,27 @@ export default { 29 ], "__typename": [ - 75 + 74 ] }, "match_maps_stddev_pop_order_by": { "clips_count": [ - 2016 + 2015 ], "lineup_1_timeouts_available": [ - 2016 + 2015 ], "lineup_2_timeouts_available": [ - 2016 + 2015 ], "order": [ - 2016 + 2015 ], "public_clips_count": [ - 2016 + 2015 ], "__typename": [ - 75 + 74 ] }, "match_maps_stddev_samp_fields": { @@ -30757,38 +30743,38 @@ export default { 29 ], "__typename": [ - 75 + 74 ] }, "match_maps_stddev_samp_order_by": { "clips_count": [ - 2016 + 2015 ], "lineup_1_timeouts_available": [ - 2016 + 2015 ], "lineup_2_timeouts_available": [ - 2016 + 2015 ], "order": [ - 2016 + 2015 ], "public_clips_count": [ - 2016 + 2015 ], "__typename": [ - 75 + 74 ] }, "match_maps_stream_cursor_input": { "initial_value": [ - 1700 + 1699 ], "ordering": [ - 229 + 228 ], "__typename": [ - 75 + 74 ] }, "match_maps_stream_cursor_value_input": { @@ -30796,34 +30782,34 @@ export default { 38 ], "created_at": [ - 3467 + 3466 ], "ended_at": [ - 3467 + 3466 ], "id": [ - 3864 + 3863 ], "latest_clip_at": [ - 3467 + 3466 ], "lineup_1_side": [ - 891 + 890 ], "lineup_1_timeouts_available": [ 38 ], "lineup_2_side": [ - 891 + 890 ], "lineup_2_timeouts_available": [ 38 ], "map_id": [ - 3864 + 3863 ], "match_id": [ - 3864 + 3863 ], "order": [ 38 @@ -30832,19 +30818,19 @@ export default { 38 ], "public_latest_clip_at": [ - 3467 + 3466 ], "started_at": [ - 3467 + 3466 ], "status": [ - 667 + 666 ], "winning_lineup_id": [ - 3864 + 3863 ], "__typename": [ - 75 + 74 ] }, "match_maps_sum_fields": { @@ -30873,42 +30859,42 @@ export default { 38 ], "__typename": [ - 75 + 74 ] }, "match_maps_sum_order_by": { "clips_count": [ - 2016 + 2015 ], "lineup_1_timeouts_available": [ - 2016 + 2015 ], "lineup_2_timeouts_available": [ - 2016 + 2015 ], "order": [ - 2016 + 2015 ], "public_clips_count": [ - 2016 + 2015 ], "__typename": [ - 75 + 74 ] }, "match_maps_update_column": {}, "match_maps_updates": { "_inc": [ - 1680 + 1679 ], "_set": [ - 1692 + 1691 ], "where": [ - 1678 + 1677 ], "__typename": [ - 75 + 74 ] }, "match_maps_var_pop_fields": { @@ -30937,27 +30923,27 @@ export default { 29 ], "__typename": [ - 75 + 74 ] }, "match_maps_var_pop_order_by": { "clips_count": [ - 2016 + 2015 ], "lineup_1_timeouts_available": [ - 2016 + 2015 ], "lineup_2_timeouts_available": [ - 2016 + 2015 ], "order": [ - 2016 + 2015 ], "public_clips_count": [ - 2016 + 2015 ], "__typename": [ - 75 + 74 ] }, "match_maps_var_samp_fields": { @@ -30986,27 +30972,27 @@ export default { 29 ], "__typename": [ - 75 + 74 ] }, "match_maps_var_samp_order_by": { "clips_count": [ - 2016 + 2015 ], "lineup_1_timeouts_available": [ - 2016 + 2015 ], "lineup_2_timeouts_available": [ - 2016 + 2015 ], "order": [ - 2016 + 2015 ], "public_clips_count": [ - 2016 + 2015 ], "__typename": [ - 75 + 74 ] }, "match_maps_variance_fields": { @@ -31035,27 +31021,27 @@ export default { 29 ], "__typename": [ - 75 + 74 ] }, "match_maps_variance_order_by": { "clips_count": [ - 2016 + 2015 ], "lineup_1_timeouts_available": [ - 2016 + 2015 ], "lineup_2_timeouts_available": [ - 2016 + 2015 ], "order": [ - 2016 + 2015 ], "public_clips_count": [ - 2016 + 2015 ], "__typename": [ - 75 + 74 ] }, "match_options": { @@ -31069,7 +31055,7 @@ export default { 38 ], "check_in_setting": [ - 398 + 397 ], "coaches": [ 3 @@ -31081,10 +31067,10 @@ export default { 3 ], "id": [ - 3864 + 3863 ], "invite_code": [ - 75 + 74 ], "knife_round": [ 3 @@ -31093,22 +31079,22 @@ export default { 38 ], "map_pool": [ - 1330 + 1329 ], "map_pool_id": [ - 3864 + 3863 ], "map_veto": [ 3 ], "match_mode": [ - 688 + 687 ], "matches": [ - 1831, + 1830, { "distinct_on": [ - 1853, + 1852, "[matches_select_column!]" ], "limit": [ @@ -31118,19 +31104,19 @@ export default { 38 ], "order_by": [ - 1851, + 1850, "[matches_order_by!]" ], "where": [ - 1840 + 1839 ] } ], "matches_aggregate": [ - 1832, + 1831, { "distinct_on": [ - 1853, + 1852, "[matches_select_column!]" ], "limit": [ @@ -31140,11 +31126,11 @@ export default { 38 ], "order_by": [ - 1851, + 1850, "[matches_order_by!]" ], "where": [ - 1840 + 1839 ] } ], @@ -31161,59 +31147,59 @@ export default { 3 ], "ready_setting": [ - 810 + 809 ], "region_veto": [ 3 ], "regions": [ - 75 + 74 ], "tech_timeout_setting": [ - 972 + 971 ], "timeout_setting": [ - 972 + 971 ], "tournament": [ - 3818 + 3817 ], "tournament_bracket": [ - 3469 + 3468 ], "tournament_stage": [ - 3556 + 3555 ], "tv_delay": [ 38 ], "type": [ - 729 + 728 ], "__typename": [ - 75 + 74 ] }, "match_options_aggregate": { "aggregate": [ - 1713 + 1712 ], "nodes": [ - 1711 + 1710 ], "__typename": [ - 75 + 74 ] }, "match_options_aggregate_fields": { "avg": [ - 1714 + 1713 ], "count": [ 38, { "columns": [ - 1726, + 1725, "[match_options_select_column!]" ], "distinct": [ @@ -31222,34 +31208,34 @@ export default { } ], "max": [ - 1719 + 1718 ], "min": [ - 1720 + 1719 ], "stddev": [ - 1728 + 1727 ], "stddev_pop": [ - 1729 + 1728 ], "stddev_samp": [ - 1730 + 1729 ], "sum": [ - 1733 + 1732 ], "var_pop": [ - 1736 + 1735 ], "var_samp": [ - 1737 + 1736 ], "variance": [ - 1738 + 1737 ], "__typename": [ - 75 + 74 ] }, "match_options_avg_fields": { @@ -31272,18 +31258,18 @@ export default { 29 ], "__typename": [ - 75 + 74 ] }, "match_options_bool_exp": { "_and": [ - 1715 + 1714 ], "_not": [ - 1715 + 1714 ], "_or": [ - 1715 + 1714 ], "auto_cancel_duration": [ 39 @@ -31295,7 +31281,7 @@ export default { 39 ], "check_in_setting": [ - 399 + 398 ], "coaches": [ 4 @@ -31307,10 +31293,10 @@ export default { 4 ], "id": [ - 3866 + 3865 ], "invite_code": [ - 77 + 76 ], "knife_round": [ 4 @@ -31319,22 +31305,22 @@ export default { 39 ], "map_pool": [ - 1333 + 1332 ], "map_pool_id": [ - 3866 + 3865 ], "map_veto": [ 4 ], "match_mode": [ - 689 + 688 ], "matches": [ - 1840 + 1839 ], "matches_aggregate": [ - 1833 + 1832 ], "mr": [ 39 @@ -31349,37 +31335,37 @@ export default { 4 ], "ready_setting": [ - 811 + 810 ], "region_veto": [ 4 ], "regions": [ - 76 + 75 ], "tech_timeout_setting": [ - 973 + 972 ], "timeout_setting": [ - 973 + 972 ], "tournament": [ - 3829 + 3828 ], "tournament_bracket": [ - 3480 + 3479 ], "tournament_stage": [ - 3568 + 3567 ], "tv_delay": [ 39 ], "type": [ - 730 + 729 ], "__typename": [ - 75 + 74 ] }, "match_options_constraint": {}, @@ -31403,7 +31389,7 @@ export default { 38 ], "__typename": [ - 75 + 74 ] }, "match_options_insert_input": { @@ -31417,7 +31403,7 @@ export default { 38 ], "check_in_setting": [ - 398 + 397 ], "coaches": [ 3 @@ -31426,10 +31412,10 @@ export default { 3 ], "id": [ - 3864 + 3863 ], "invite_code": [ - 75 + 74 ], "knife_round": [ 3 @@ -31438,19 +31424,19 @@ export default { 38 ], "map_pool": [ - 1339 + 1338 ], "map_pool_id": [ - 3864 + 3863 ], "map_veto": [ 3 ], "match_mode": [ - 688 + 687 ], "matches": [ - 1837 + 1836 ], "mr": [ 38 @@ -31465,37 +31451,37 @@ export default { 3 ], "ready_setting": [ - 810 + 809 ], "region_veto": [ 3 ], "regions": [ - 75 + 74 ], "tech_timeout_setting": [ - 972 + 971 ], "timeout_setting": [ - 972 + 971 ], "tournament": [ - 3838 + 3837 ], "tournament_bracket": [ - 3489 + 3488 ], "tournament_stage": [ - 3580 + 3579 ], "tv_delay": [ 38 ], "type": [ - 729 + 728 ], "__typename": [ - 75 + 74 ] }, "match_options_max_fields": { @@ -31506,16 +31492,16 @@ export default { 38 ], "id": [ - 3864 + 3863 ], "invite_code": [ - 75 + 74 ], "live_match_timeout": [ 38 ], "map_pool_id": [ - 3864 + 3863 ], "mr": [ 38 @@ -31524,13 +31510,13 @@ export default { 38 ], "regions": [ - 75 + 74 ], "tv_delay": [ 38 ], "__typename": [ - 75 + 74 ] }, "match_options_min_fields": { @@ -31541,16 +31527,16 @@ export default { 38 ], "id": [ - 3864 + 3863 ], "invite_code": [ - 75 + 74 ], "live_match_timeout": [ 38 ], "map_pool_id": [ - 3864 + 3863 ], "mr": [ 38 @@ -31559,13 +31545,13 @@ export default { 38 ], "regions": [ - 75 + 74 ], "tv_delay": [ 38 ], "__typename": [ - 75 + 74 ] }, "match_options_mutation_response": { @@ -31573,138 +31559,138 @@ export default { 38 ], "returning": [ - 1711 + 1710 ], "__typename": [ - 75 + 74 ] }, "match_options_obj_rel_insert_input": { "data": [ - 1718 + 1717 ], "on_conflict": [ - 1723 + 1722 ], "__typename": [ - 75 + 74 ] }, "match_options_on_conflict": { "constraint": [ - 1716 + 1715 ], "update_columns": [ - 1734 + 1733 ], "where": [ - 1715 + 1714 ], "__typename": [ - 75 + 74 ] }, "match_options_order_by": { "auto_cancel_duration": [ - 2016 + 2015 ], "auto_cancellation": [ - 2016 + 2015 ], "best_of": [ - 2016 + 2015 ], "check_in_setting": [ - 2016 + 2015 ], "coaches": [ - 2016 + 2015 ], "default_models": [ - 2016 + 2015 ], "has_active_matches": [ - 2016 + 2015 ], "id": [ - 2016 + 2015 ], "invite_code": [ - 2016 + 2015 ], "knife_round": [ - 2016 + 2015 ], "live_match_timeout": [ - 2016 + 2015 ], "map_pool": [ - 1341 + 1340 ], "map_pool_id": [ - 2016 + 2015 ], "map_veto": [ - 2016 + 2015 ], "match_mode": [ - 2016 + 2015 ], "matches_aggregate": [ - 1836 + 1835 ], "mr": [ - 2016 + 2015 ], "number_of_substitutes": [ - 2016 + 2015 ], "overtime": [ - 2016 + 2015 ], "prefer_dedicated_server": [ - 2016 + 2015 ], "ready_setting": [ - 2016 + 2015 ], "region_veto": [ - 2016 + 2015 ], "regions": [ - 2016 + 2015 ], "tech_timeout_setting": [ - 2016 + 2015 ], "timeout_setting": [ - 2016 + 2015 ], "tournament": [ - 3840 + 3839 ], "tournament_bracket": [ - 3491 + 3490 ], "tournament_stage": [ - 3582 + 3581 ], "tv_delay": [ - 2016 + 2015 ], "type": [ - 2016 + 2015 ], "__typename": [ - 75 + 74 ] }, "match_options_pk_columns_input": { "id": [ - 3864 + 3863 ], "__typename": [ - 75 + 74 ] }, "match_options_select_column": {}, @@ -31719,7 +31705,7 @@ export default { 38 ], "check_in_setting": [ - 398 + 397 ], "coaches": [ 3 @@ -31728,10 +31714,10 @@ export default { 3 ], "id": [ - 3864 + 3863 ], "invite_code": [ - 75 + 74 ], "knife_round": [ 3 @@ -31740,13 +31726,13 @@ export default { 38 ], "map_pool_id": [ - 3864 + 3863 ], "map_veto": [ 3 ], "match_mode": [ - 688 + 687 ], "mr": [ 38 @@ -31761,28 +31747,28 @@ export default { 3 ], "ready_setting": [ - 810 + 809 ], "region_veto": [ 3 ], "regions": [ - 75 + 74 ], "tech_timeout_setting": [ - 972 + 971 ], "timeout_setting": [ - 972 + 971 ], "tv_delay": [ 38 ], "type": [ - 729 + 728 ], "__typename": [ - 75 + 74 ] }, "match_options_stddev_fields": { @@ -31805,7 +31791,7 @@ export default { 29 ], "__typename": [ - 75 + 74 ] }, "match_options_stddev_pop_fields": { @@ -31828,7 +31814,7 @@ export default { 29 ], "__typename": [ - 75 + 74 ] }, "match_options_stddev_samp_fields": { @@ -31851,18 +31837,18 @@ export default { 29 ], "__typename": [ - 75 + 74 ] }, "match_options_stream_cursor_input": { "initial_value": [ - 1732 + 1731 ], "ordering": [ - 229 + 228 ], "__typename": [ - 75 + 74 ] }, "match_options_stream_cursor_value_input": { @@ -31876,7 +31862,7 @@ export default { 38 ], "check_in_setting": [ - 398 + 397 ], "coaches": [ 3 @@ -31885,10 +31871,10 @@ export default { 3 ], "id": [ - 3864 + 3863 ], "invite_code": [ - 75 + 74 ], "knife_round": [ 3 @@ -31897,13 +31883,13 @@ export default { 38 ], "map_pool_id": [ - 3864 + 3863 ], "map_veto": [ 3 ], "match_mode": [ - 688 + 687 ], "mr": [ 38 @@ -31918,28 +31904,28 @@ export default { 3 ], "ready_setting": [ - 810 + 809 ], "region_veto": [ 3 ], "regions": [ - 75 + 74 ], "tech_timeout_setting": [ - 972 + 971 ], "timeout_setting": [ - 972 + 971 ], "tv_delay": [ 38 ], "type": [ - 729 + 728 ], "__typename": [ - 75 + 74 ] }, "match_options_sum_fields": { @@ -31962,22 +31948,22 @@ export default { 38 ], "__typename": [ - 75 + 74 ] }, "match_options_update_column": {}, "match_options_updates": { "_inc": [ - 1717 + 1716 ], "_set": [ - 1727 + 1726 ], "where": [ - 1715 + 1714 ], "__typename": [ - 75 + 74 ] }, "match_options_var_pop_fields": { @@ -32000,7 +31986,7 @@ export default { 29 ], "__typename": [ - 75 + 74 ] }, "match_options_var_samp_fields": { @@ -32023,7 +32009,7 @@ export default { 29 ], "__typename": [ - 75 + 74 ] }, "match_options_variance_fields": { @@ -32046,72 +32032,72 @@ export default { 29 ], "__typename": [ - 75 + 74 ] }, "match_region_veto_picks": { "created_at": [ - 3467 + 3466 ], "id": [ - 3864 + 3863 ], "match": [ - 1831 + 1830 ], "match_id": [ - 3864 + 3863 ], "match_lineup": [ - 1511 + 1510 ], "match_lineup_id": [ - 3864 + 3863 ], "region": [ - 75 + 74 ], "type": [ - 1054 + 1053 ], "__typename": [ - 75 + 74 ] }, "match_region_veto_picks_aggregate": { "aggregate": [ - 1743 + 1742 ], "nodes": [ - 1739 + 1738 ], "__typename": [ - 75 + 74 ] }, "match_region_veto_picks_aggregate_bool_exp": { "count": [ - 1742 + 1741 ], "__typename": [ - 75 + 74 ] }, "match_region_veto_picks_aggregate_bool_exp_count": { "arguments": [ - 1757 + 1756 ], "distinct": [ 3 ], "filter": [ - 1746 + 1745 ], "predicate": [ 39 ], "__typename": [ - 75 + 74 ] }, "match_region_veto_picks_aggregate_fields": { @@ -32119,7 +32105,7 @@ export default { 38, { "columns": [ - 1757, + 1756, "[match_region_veto_picks_select_column!]" ], "distinct": [ @@ -32128,186 +32114,186 @@ export default { } ], "max": [ - 1749 + 1748 ], "min": [ - 1751 + 1750 ], "__typename": [ - 75 + 74 ] }, "match_region_veto_picks_aggregate_order_by": { "count": [ - 2016 + 2015 ], "max": [ - 1750 + 1749 ], "min": [ - 1752 + 1751 ], "__typename": [ - 75 + 74 ] }, "match_region_veto_picks_arr_rel_insert_input": { "data": [ - 1748 + 1747 ], "on_conflict": [ - 1754 + 1753 ], "__typename": [ - 75 + 74 ] }, "match_region_veto_picks_bool_exp": { "_and": [ - 1746 + 1745 ], "_not": [ - 1746 + 1745 ], "_or": [ - 1746 + 1745 ], "created_at": [ - 3468 + 3467 ], "id": [ - 3866 + 3865 ], "match": [ - 1840 + 1839 ], "match_id": [ - 3866 + 3865 ], "match_lineup": [ - 1520 + 1519 ], "match_lineup_id": [ - 3866 + 3865 ], "region": [ - 77 + 76 ], "type": [ - 1055 + 1054 ], "__typename": [ - 75 + 74 ] }, "match_region_veto_picks_constraint": {}, "match_region_veto_picks_insert_input": { "created_at": [ - 3467 + 3466 ], "id": [ - 3864 + 3863 ], "match": [ - 1849 + 1848 ], "match_id": [ - 3864 + 3863 ], "match_lineup": [ - 1529 + 1528 ], "match_lineup_id": [ - 3864 + 3863 ], "region": [ - 75 + 74 ], "type": [ - 1054 + 1053 ], "__typename": [ - 75 + 74 ] }, "match_region_veto_picks_max_fields": { "created_at": [ - 3467 + 3466 ], "id": [ - 3864 + 3863 ], "match_id": [ - 3864 + 3863 ], "match_lineup_id": [ - 3864 + 3863 ], "region": [ - 75 + 74 ], "__typename": [ - 75 + 74 ] }, "match_region_veto_picks_max_order_by": { "created_at": [ - 2016 + 2015 ], "id": [ - 2016 + 2015 ], "match_id": [ - 2016 + 2015 ], "match_lineup_id": [ - 2016 + 2015 ], "region": [ - 2016 + 2015 ], "__typename": [ - 75 + 74 ] }, "match_region_veto_picks_min_fields": { "created_at": [ - 3467 + 3466 ], "id": [ - 3864 + 3863 ], "match_id": [ - 3864 + 3863 ], "match_lineup_id": [ - 3864 + 3863 ], "region": [ - 75 + 74 ], "__typename": [ - 75 + 74 ] }, "match_region_veto_picks_min_order_by": { "created_at": [ - 2016 + 2015 ], "id": [ - 2016 + 2015 ], "match_id": [ - 2016 + 2015 ], "match_lineup_id": [ - 2016 + 2015 ], "region": [ - 2016 + 2015 ], "__typename": [ - 75 + 74 ] }, "match_region_veto_picks_mutation_response": { @@ -32315,131 +32301,131 @@ export default { 38 ], "returning": [ - 1739 + 1738 ], "__typename": [ - 75 + 74 ] }, "match_region_veto_picks_on_conflict": { "constraint": [ - 1747 + 1746 ], "update_columns": [ - 1761 + 1760 ], "where": [ - 1746 + 1745 ], "__typename": [ - 75 + 74 ] }, "match_region_veto_picks_order_by": { "created_at": [ - 2016 + 2015 ], "id": [ - 2016 + 2015 ], "match": [ - 1851 + 1850 ], "match_id": [ - 2016 + 2015 ], "match_lineup": [ - 1531 + 1530 ], "match_lineup_id": [ - 2016 + 2015 ], "region": [ - 2016 + 2015 ], "type": [ - 2016 + 2015 ], "__typename": [ - 75 + 74 ] }, "match_region_veto_picks_pk_columns_input": { "id": [ - 3864 + 3863 ], "__typename": [ - 75 + 74 ] }, "match_region_veto_picks_select_column": {}, "match_region_veto_picks_set_input": { "created_at": [ - 3467 + 3466 ], "id": [ - 3864 + 3863 ], "match_id": [ - 3864 + 3863 ], "match_lineup_id": [ - 3864 + 3863 ], "region": [ - 75 + 74 ], "type": [ - 1054 + 1053 ], "__typename": [ - 75 + 74 ] }, "match_region_veto_picks_stream_cursor_input": { "initial_value": [ - 1760 + 1759 ], "ordering": [ - 229 + 228 ], "__typename": [ - 75 + 74 ] }, "match_region_veto_picks_stream_cursor_value_input": { "created_at": [ - 3467 + 3466 ], "id": [ - 3864 + 3863 ], "match_id": [ - 3864 + 3863 ], "match_lineup_id": [ - 3864 + 3863 ], "region": [ - 75 + 74 ], "type": [ - 1054 + 1053 ], "__typename": [ - 75 + 74 ] }, "match_region_veto_picks_update_column": {}, "match_region_veto_picks_updates": { "_set": [ - 1758 + 1757 ], "where": [ - 1746 + 1745 ], "__typename": [ - 75 + 74 ] }, "match_streams": { @@ -32447,16 +32433,16 @@ export default { 3 ], "error_message": [ - 75 + 74 ], "game_server_node": [ - 1118 + 1117 ], "game_server_node_id": [ - 75 + 74 ], "id": [ - 3864 + 3863 ], "is_game_streamer": [ 3 @@ -32465,132 +32451,132 @@ export default { 3 ], "k8s_service_name": [ - 75 + 74 ], "last_status_at": [ - 3467 + 3466 ], "link": [ - 75 + 74 ], "match": [ - 1831 + 1830 ], "match_id": [ - 3864 + 3863 ], "mode": [ - 75 + 74 ], "priority": [ 38 ], "status": [ - 75 + 74 ], "status_history": [ - 1240, + 1239, { "path": [ - 75 + 74 ] } ], "stream_url": [ - 75 + 74 ], "title": [ - 75 + 74 ], "__typename": [ - 75 + 74 ] }, "match_streams_aggregate": { "aggregate": [ - 1769 + 1768 ], "nodes": [ - 1763 + 1762 ], "__typename": [ - 75 + 74 ] }, "match_streams_aggregate_bool_exp": { "bool_and": [ - 1766 + 1765 ], "bool_or": [ - 1767 + 1766 ], "count": [ - 1768 + 1767 ], "__typename": [ - 75 + 74 ] }, "match_streams_aggregate_bool_exp_bool_and": { "arguments": [ - 1792 + 1791 ], "distinct": [ 3 ], "filter": [ - 1775 + 1774 ], "predicate": [ 4 ], "__typename": [ - 75 + 74 ] }, "match_streams_aggregate_bool_exp_bool_or": { "arguments": [ - 1793 + 1792 ], "distinct": [ 3 ], "filter": [ - 1775 + 1774 ], "predicate": [ 4 ], "__typename": [ - 75 + 74 ] }, "match_streams_aggregate_bool_exp_count": { "arguments": [ - 1791 + 1790 ], "distinct": [ 3 ], "filter": [ - 1775 + 1774 ], "predicate": [ 39 ], "__typename": [ - 75 + 74 ] }, "match_streams_aggregate_fields": { "avg": [ - 1773 + 1772 ], "count": [ 38, { "columns": [ - 1791, + 1790, "[match_streams_select_column!]" ], "distinct": [ @@ -32598,6 +32584,44 @@ export default { ] } ], + "max": [ + 1781 + ], + "min": [ + 1783 + ], + "stddev": [ + 1794 + ], + "stddev_pop": [ + 1796 + ], + "stddev_samp": [ + 1798 + ], + "sum": [ + 1802 + ], + "var_pop": [ + 1806 + ], + "var_samp": [ + 1808 + ], + "variance": [ + 1810 + ], + "__typename": [ + 74 + ] + }, + "match_streams_aggregate_order_by": { + "avg": [ + 1773 + ], + "count": [ + 2015 + ], "max": [ 1782 ], @@ -32626,64 +32650,26 @@ export default { 1811 ], "__typename": [ - 75 - ] - }, - "match_streams_aggregate_order_by": { - "avg": [ - 1774 - ], - "count": [ - 2016 - ], - "max": [ - 1783 - ], - "min": [ - 1785 - ], - "stddev": [ - 1796 - ], - "stddev_pop": [ - 1798 - ], - "stddev_samp": [ - 1800 - ], - "sum": [ - 1804 - ], - "var_pop": [ - 1808 - ], - "var_samp": [ - 1810 - ], - "variance": [ - 1812 - ], - "__typename": [ - 75 + 74 ] }, "match_streams_append_input": { "status_history": [ - 1240 + 1239 ], "__typename": [ - 75 + 74 ] }, "match_streams_arr_rel_insert_input": { "data": [ - 1781 + 1780 ], "on_conflict": [ - 1787 + 1786 ], "__typename": [ - 75 + 74 ] }, "match_streams_avg_fields": { @@ -32691,41 +32677,41 @@ export default { 29 ], "__typename": [ - 75 + 74 ] }, "match_streams_avg_order_by": { "priority": [ - 2016 + 2015 ], "__typename": [ - 75 + 74 ] }, "match_streams_bool_exp": { "_and": [ - 1775 + 1774 ], "_not": [ - 1775 + 1774 ], "_or": [ - 1775 + 1774 ], "autodirector": [ 4 ], "error_message": [ - 77 + 76 ], "game_server_node": [ - 1130 + 1129 ], "game_server_node_id": [ - 77 + 76 ], "id": [ - 3866 + 3865 ], "is_game_streamer": [ 4 @@ -32734,49 +32720,49 @@ export default { 4 ], "k8s_service_name": [ - 77 + 76 ], "last_status_at": [ - 3468 + 3467 ], "link": [ - 77 + 76 ], "match": [ - 1840 + 1839 ], "match_id": [ - 3866 + 3865 ], "mode": [ - 77 + 76 ], "priority": [ 39 ], "status": [ - 77 + 76 ], "status_history": [ - 1242 + 1241 ], "stream_url": [ - 77 + 76 ], "title": [ - 77 + 76 ], "__typename": [ - 75 + 74 ] }, "match_streams_constraint": {}, "match_streams_delete_at_path_input": { "status_history": [ - 75 + 74 ], "__typename": [ - 75 + 74 ] }, "match_streams_delete_elem_input": { @@ -32784,15 +32770,15 @@ export default { 38 ], "__typename": [ - 75 + 74 ] }, "match_streams_delete_key_input": { "status_history": [ - 75 + 74 ], "__typename": [ - 75 + 74 ] }, "match_streams_inc_input": { @@ -32800,7 +32786,7 @@ export default { 38 ], "__typename": [ - 75 + 74 ] }, "match_streams_insert_input": { @@ -32808,16 +32794,16 @@ export default { 3 ], "error_message": [ - 75 + 74 ], "game_server_node": [ - 1142 + 1141 ], "game_server_node_id": [ - 75 + 74 ], "id": [ - 3864 + 3863 ], "is_game_streamer": [ 3 @@ -32826,204 +32812,204 @@ export default { 3 ], "k8s_service_name": [ - 75 + 74 ], "last_status_at": [ - 3467 + 3466 ], "link": [ - 75 + 74 ], "match": [ - 1849 + 1848 ], "match_id": [ - 3864 + 3863 ], "mode": [ - 75 + 74 ], "priority": [ 38 ], "status": [ - 75 + 74 ], "status_history": [ - 1240 + 1239 ], "stream_url": [ - 75 + 74 ], "title": [ - 75 + 74 ], "__typename": [ - 75 + 74 ] }, "match_streams_max_fields": { "error_message": [ - 75 + 74 ], "game_server_node_id": [ - 75 + 74 ], "id": [ - 3864 + 3863 ], "k8s_service_name": [ - 75 + 74 ], "last_status_at": [ - 3467 + 3466 ], "link": [ - 75 + 74 ], "match_id": [ - 3864 + 3863 ], "mode": [ - 75 + 74 ], "priority": [ 38 ], "status": [ - 75 + 74 ], "stream_url": [ - 75 + 74 ], "title": [ - 75 + 74 ], "__typename": [ - 75 + 74 ] }, "match_streams_max_order_by": { "error_message": [ - 2016 + 2015 ], "game_server_node_id": [ - 2016 + 2015 ], "id": [ - 2016 + 2015 ], "k8s_service_name": [ - 2016 + 2015 ], "last_status_at": [ - 2016 + 2015 ], "link": [ - 2016 + 2015 ], "match_id": [ - 2016 + 2015 ], "mode": [ - 2016 + 2015 ], "priority": [ - 2016 + 2015 ], "status": [ - 2016 + 2015 ], "stream_url": [ - 2016 + 2015 ], "title": [ - 2016 + 2015 ], "__typename": [ - 75 + 74 ] }, "match_streams_min_fields": { "error_message": [ - 75 + 74 ], "game_server_node_id": [ - 75 + 74 ], "id": [ - 3864 + 3863 ], "k8s_service_name": [ - 75 + 74 ], "last_status_at": [ - 3467 + 3466 ], "link": [ - 75 + 74 ], "match_id": [ - 3864 + 3863 ], "mode": [ - 75 + 74 ], "priority": [ 38 ], "status": [ - 75 + 74 ], "stream_url": [ - 75 + 74 ], "title": [ - 75 + 74 ], "__typename": [ - 75 + 74 ] }, "match_streams_min_order_by": { "error_message": [ - 2016 + 2015 ], "game_server_node_id": [ - 2016 + 2015 ], "id": [ - 2016 + 2015 ], "k8s_service_name": [ - 2016 + 2015 ], "last_status_at": [ - 2016 + 2015 ], "link": [ - 2016 + 2015 ], "match_id": [ - 2016 + 2015 ], "mode": [ - 2016 + 2015 ], "priority": [ - 2016 + 2015 ], "status": [ - 2016 + 2015 ], "stream_url": [ - 2016 + 2015 ], "title": [ - 2016 + 2015 ], "__typename": [ - 75 + 74 ] }, "match_streams_mutation_response": { @@ -33031,99 +33017,99 @@ export default { 38 ], "returning": [ - 1763 + 1762 ], "__typename": [ - 75 + 74 ] }, "match_streams_on_conflict": { "constraint": [ - 1776 + 1775 ], "update_columns": [ - 1805 + 1804 ], "where": [ - 1775 + 1774 ], "__typename": [ - 75 + 74 ] }, "match_streams_order_by": { "autodirector": [ - 2016 + 2015 ], "error_message": [ - 2016 + 2015 ], "game_server_node": [ - 1144 + 1143 ], "game_server_node_id": [ - 2016 + 2015 ], "id": [ - 2016 + 2015 ], "is_game_streamer": [ - 2016 + 2015 ], "is_live": [ - 2016 + 2015 ], "k8s_service_name": [ - 2016 + 2015 ], "last_status_at": [ - 2016 + 2015 ], "link": [ - 2016 + 2015 ], "match": [ - 1851 + 1850 ], "match_id": [ - 2016 + 2015 ], "mode": [ - 2016 + 2015 ], "priority": [ - 2016 + 2015 ], "status": [ - 2016 + 2015 ], "status_history": [ - 2016 + 2015 ], "stream_url": [ - 2016 + 2015 ], "title": [ - 2016 + 2015 ], "__typename": [ - 75 + 74 ] }, "match_streams_pk_columns_input": { "id": [ - 3864 + 3863 ], "__typename": [ - 75 + 74 ] }, "match_streams_prepend_input": { "status_history": [ - 1240 + 1239 ], "__typename": [ - 75 + 74 ] }, "match_streams_select_column": {}, @@ -33134,13 +33120,13 @@ export default { 3 ], "error_message": [ - 75 + 74 ], "game_server_node_id": [ - 75 + 74 ], "id": [ - 3864 + 3863 ], "is_game_streamer": [ 3 @@ -33149,37 +33135,37 @@ export default { 3 ], "k8s_service_name": [ - 75 + 74 ], "last_status_at": [ - 3467 + 3466 ], "link": [ - 75 + 74 ], "match_id": [ - 3864 + 3863 ], "mode": [ - 75 + 74 ], "priority": [ 38 ], "status": [ - 75 + 74 ], "status_history": [ - 1240 + 1239 ], "stream_url": [ - 75 + 74 ], "title": [ - 75 + 74 ], "__typename": [ - 75 + 74 ] }, "match_streams_stddev_fields": { @@ -33187,15 +33173,15 @@ export default { 29 ], "__typename": [ - 75 + 74 ] }, "match_streams_stddev_order_by": { "priority": [ - 2016 + 2015 ], "__typename": [ - 75 + 74 ] }, "match_streams_stddev_pop_fields": { @@ -33203,15 +33189,15 @@ export default { 29 ], "__typename": [ - 75 + 74 ] }, "match_streams_stddev_pop_order_by": { "priority": [ - 2016 + 2015 ], "__typename": [ - 75 + 74 ] }, "match_streams_stddev_samp_fields": { @@ -33219,26 +33205,26 @@ export default { 29 ], "__typename": [ - 75 + 74 ] }, "match_streams_stddev_samp_order_by": { "priority": [ - 2016 + 2015 ], "__typename": [ - 75 + 74 ] }, "match_streams_stream_cursor_input": { "initial_value": [ - 1802 + 1801 ], "ordering": [ - 229 + 228 ], "__typename": [ - 75 + 74 ] }, "match_streams_stream_cursor_value_input": { @@ -33246,13 +33232,13 @@ export default { 3 ], "error_message": [ - 75 + 74 ], "game_server_node_id": [ - 75 + 74 ], "id": [ - 3864 + 3863 ], "is_game_streamer": [ 3 @@ -33261,37 +33247,37 @@ export default { 3 ], "k8s_service_name": [ - 75 + 74 ], "last_status_at": [ - 3467 + 3466 ], "link": [ - 75 + 74 ], "match_id": [ - 3864 + 3863 ], "mode": [ - 75 + 74 ], "priority": [ 38 ], "status": [ - 75 + 74 ], "status_history": [ - 1240 + 1239 ], "stream_url": [ - 75 + 74 ], "title": [ - 75 + 74 ], "__typename": [ - 75 + 74 ] }, "match_streams_sum_fields": { @@ -33299,45 +33285,45 @@ export default { 38 ], "__typename": [ - 75 + 74 ] }, "match_streams_sum_order_by": { "priority": [ - 2016 + 2015 ], "__typename": [ - 75 + 74 ] }, "match_streams_update_column": {}, "match_streams_updates": { "_append": [ - 1771 + 1770 ], "_delete_at_path": [ - 1777 + 1776 ], "_delete_elem": [ - 1778 + 1777 ], "_delete_key": [ - 1779 + 1778 ], "_inc": [ - 1780 + 1779 ], "_prepend": [ - 1790 + 1789 ], "_set": [ - 1794 + 1793 ], "where": [ - 1775 + 1774 ], "__typename": [ - 75 + 74 ] }, "match_streams_var_pop_fields": { @@ -33345,15 +33331,15 @@ export default { 29 ], "__typename": [ - 75 + 74 ] }, "match_streams_var_pop_order_by": { "priority": [ - 2016 + 2015 ], "__typename": [ - 75 + 74 ] }, "match_streams_var_samp_fields": { @@ -33361,15 +33347,15 @@ export default { 29 ], "__typename": [ - 75 + 74 ] }, "match_streams_var_samp_order_by": { "priority": [ - 2016 + 2015 ], "__typename": [ - 75 + 74 ] }, "match_streams_variance_fields": { @@ -33377,37 +33363,37 @@ export default { 29 ], "__typename": [ - 75 + 74 ] }, "match_streams_variance_order_by": { "priority": [ - 2016 + 2015 ], "__typename": [ - 75 + 74 ] }, "match_type_cfgs": { "cfg": [ - 75 + 74 ], "type": [ - 544 + 543 ], "__typename": [ - 75 + 74 ] }, "match_type_cfgs_aggregate": { "aggregate": [ - 1815 + 1814 ], "nodes": [ - 1813 + 1812 ], "__typename": [ - 75 + 74 ] }, "match_type_cfgs_aggregate_fields": { @@ -33415,7 +33401,7 @@ export default { 38, { "columns": [ - 1825, + 1824, "[match_type_cfgs_select_column!]" ], "distinct": [ @@ -33424,61 +33410,61 @@ export default { } ], "max": [ - 1819 + 1818 ], "min": [ - 1820 + 1819 ], "__typename": [ - 75 + 74 ] }, "match_type_cfgs_bool_exp": { "_and": [ - 1816 + 1815 ], "_not": [ - 1816 + 1815 ], "_or": [ - 1816 + 1815 ], "cfg": [ - 77 + 76 ], "type": [ - 545 + 544 ], "__typename": [ - 75 + 74 ] }, "match_type_cfgs_constraint": {}, "match_type_cfgs_insert_input": { "cfg": [ - 75 + 74 ], "type": [ - 544 + 543 ], "__typename": [ - 75 + 74 ] }, "match_type_cfgs_max_fields": { "cfg": [ - 75 + 74 ], "__typename": [ - 75 + 74 ] }, "match_type_cfgs_min_fields": { "cfg": [ - 75 + 74 ], "__typename": [ - 75 + 74 ] }, "match_type_cfgs_mutation_response": { @@ -33486,89 +33472,89 @@ export default { 38 ], "returning": [ - 1813 + 1812 ], "__typename": [ - 75 + 74 ] }, "match_type_cfgs_on_conflict": { "constraint": [ - 1817 + 1816 ], "update_columns": [ - 1829 + 1828 ], "where": [ - 1816 + 1815 ], "__typename": [ - 75 + 74 ] }, "match_type_cfgs_order_by": { "cfg": [ - 2016 + 2015 ], "type": [ - 2016 + 2015 ], "__typename": [ - 75 + 74 ] }, "match_type_cfgs_pk_columns_input": { "type": [ - 544 + 543 ], "__typename": [ - 75 + 74 ] }, "match_type_cfgs_select_column": {}, "match_type_cfgs_set_input": { "cfg": [ - 75 + 74 ], "type": [ - 544 + 543 ], "__typename": [ - 75 + 74 ] }, "match_type_cfgs_stream_cursor_input": { "initial_value": [ - 1828 + 1827 ], "ordering": [ - 229 + 228 ], "__typename": [ - 75 + 74 ] }, "match_type_cfgs_stream_cursor_value_input": { "cfg": [ - 75 + 74 ], "type": [ - 544 + 543 ], "__typename": [ - 75 + 74 ] }, "match_type_cfgs_update_column": {}, "match_type_cfgs_updates": { "_set": [ - 1826 + 1825 ], "where": [ - 1816 + 1815 ], "__typename": [ - 75 + 74 ] }, "matches": { @@ -33597,13 +33583,13 @@ export default { 3 ], "cancels_at": [ - 3467 + 3466 ], "clutches": [ - 3909, + 3908, { "distinct_on": [ - 3925, + 3924, "[v_match_clutches_select_column!]" ], "limit": [ @@ -33613,19 +33599,19 @@ export default { 38 ], "order_by": [ - 3924, + 3923, "[v_match_clutches_order_by!]" ], "where": [ - 3918 + 3917 ] } ], "clutches_aggregate": [ - 3910, + 3909, { "distinct_on": [ - 3925, + 3924, "[v_match_clutches_select_column!]" ], "limit": [ @@ -33635,31 +33621,31 @@ export default { 38 ], "order_by": [ - 3924, + 3923, "[v_match_clutches_order_by!]" ], "where": [ - 3918 + 3917 ] } ], "connection_link": [ - 75 + 74 ], "connection_string": [ - 75 + 74 ], "created_at": [ - 3467 + 3466 ], "current_match_map_id": [ - 3864 + 3863 ], "demos": [ - 1553, + 1552, { "distinct_on": [ - 1582, + 1581, "[match_map_demos_select_column!]" ], "limit": [ @@ -33669,19 +33655,19 @@ export default { 38 ], "order_by": [ - 1579, + 1578, "[match_map_demos_order_by!]" ], "where": [ - 1565 + 1564 ] } ], "demos_aggregate": [ - 1554, + 1553, { "distinct_on": [ - 1582, + 1581, "[match_map_demos_select_column!]" ], "limit": [ @@ -33691,19 +33677,19 @@ export default { 38 ], "order_by": [ - 1579, + 1578, "[match_map_demos_order_by!]" ], "where": [ - 1565 + 1564 ] } ], "draft_games": [ - 347, + 346, { "distinct_on": [ - 371, + 370, "[draft_games_select_column!]" ], "limit": [ @@ -33713,19 +33699,19 @@ export default { 38 ], "order_by": [ - 369, + 368, "[draft_games_order_by!]" ], "where": [ - 358 + 357 ] } ], "draft_games_aggregate": [ - 348, + 347, { "distinct_on": [ - 371, + 370, "[draft_games_select_column!]" ], "limit": [ @@ -33735,28 +33721,28 @@ export default { 38 ], "order_by": [ - 369, + 368, "[draft_games_order_by!]" ], "where": [ - 358 + 357 ] } ], "e_match_status": [ - 703 + 702 ], "e_region": [ - 2971 + 2970 ], "effective_at": [ - 3467 + 3466 ], "elo_changes": [ - 4106, + 4105, { "distinct_on": [ - 4132, + 4131, "[v_player_elo_select_column!]" ], "limit": [ @@ -33766,19 +33752,19 @@ export default { 38 ], "order_by": [ - 4131, + 4130, "[v_player_elo_order_by!]" ], "where": [ - 4125 + 4124 ] } ], "elo_changes_aggregate": [ - 4107, + 4106, { "distinct_on": [ - 4132, + 4131, "[v_player_elo_select_column!]" ], "limit": [ @@ -33788,25 +33774,25 @@ export default { 38 ], "order_by": [ - 4131, + 4130, "[v_player_elo_order_by!]" ], "where": [ - 4125 + 4124 ] } ], "ended_at": [ - 3467 + 3466 ], "external_id": [ - 75 + 74 ], "id": [ - 3864 + 3863 ], "invite_code": [ - 75 + 74 ], "is_captain": [ 3 @@ -33833,36 +33819,36 @@ export default { 3 ], "label": [ - 75 + 74 ], "lineup_1": [ - 1511 + 1510 ], "lineup_1_id": [ - 3864 + 3863 ], "lineup_2": [ - 1511 + 1510 ], "lineup_2_id": [ - 3864 + 3863 ], "lineup_counts": [ - 1238, + 1237, { "path": [ - 75 + 74 ] } ], "map_veto_picking_lineup_id": [ - 3864 + 3863 ], "map_veto_picks": [ - 1645, + 1644, { "distinct_on": [ - 1663, + 1662, "[match_map_veto_picks_select_column!]" ], "limit": [ @@ -33872,19 +33858,19 @@ export default { 38 ], "order_by": [ - 1661, + 1660, "[match_map_veto_picks_order_by!]" ], "where": [ - 1652 + 1651 ] } ], "map_veto_picks_aggregate": [ - 1646, + 1645, { "distinct_on": [ - 1663, + 1662, "[match_map_veto_picks_select_column!]" ], "limit": [ @@ -33894,22 +33880,22 @@ export default { 38 ], "order_by": [ - 1661, + 1660, "[match_map_veto_picks_order_by!]" ], "where": [ - 1652 + 1651 ] } ], "map_veto_type": [ - 75 + 74 ], "match_maps": [ - 1669, + 1668, { "distinct_on": [ - 1691, + 1690, "[match_maps_select_column!]" ], "limit": [ @@ -33919,19 +33905,19 @@ export default { 38 ], "order_by": [ - 1689, + 1688, "[match_maps_order_by!]" ], "where": [ - 1678 + 1677 ] } ], "match_maps_aggregate": [ - 1670, + 1669, { "distinct_on": [ - 1691, + 1690, "[match_maps_select_column!]" ], "limit": [ @@ -33941,16 +33927,16 @@ export default { 38 ], "order_by": [ - 1689, + 1688, "[match_maps_order_by!]" ], "where": [ - 1678 + 1677 ] } ], "match_options_id": [ - 3864 + 3863 ], "max_players_per_lineup": [ 38 @@ -33959,10 +33945,10 @@ export default { 38 ], "opening_duels": [ - 4037, + 4036, { "distinct_on": [ - 4053, + 4052, "[v_match_player_opening_duels_select_column!]" ], "limit": [ @@ -33972,19 +33958,19 @@ export default { 38 ], "order_by": [ - 4052, + 4051, "[v_match_player_opening_duels_order_by!]" ], "where": [ - 4046 + 4045 ] } ], "opening_duels_aggregate": [ - 4038, + 4037, { "distinct_on": [ - 4053, + 4052, "[v_match_player_opening_duels_select_column!]" ], "limit": [ @@ -33994,31 +33980,31 @@ export default { 38 ], "order_by": [ - 4052, + 4051, "[v_match_player_opening_duels_order_by!]" ], "where": [ - 4046 + 4045 ] } ], "options": [ - 1711 + 1710 ], "organizer": [ - 2915 + 2914 ], "organizer_steam_id": [ - 174 + 173 ], "password": [ - 75 + 74 ], "player_assists": [ - 2154, + 2153, { "distinct_on": [ - 2177, + 2176, "[player_assists_select_column!]" ], "limit": [ @@ -34028,19 +34014,19 @@ export default { 38 ], "order_by": [ - 2175, + 2174, "[player_assists_order_by!]" ], "where": [ - 2165 + 2164 ] } ], "player_assists_aggregate": [ - 2155, + 2154, { "distinct_on": [ - 2177, + 2176, "[player_assists_select_column!]" ], "limit": [ @@ -34050,19 +34036,19 @@ export default { 38 ], "order_by": [ - 2175, + 2174, "[player_assists_order_by!]" ], "where": [ - 2165 + 2164 ] } ], "player_damages": [ - 2217, + 2216, { "distinct_on": [ - 2238, + 2237, "[player_damages_select_column!]" ], "limit": [ @@ -34072,19 +34058,19 @@ export default { 38 ], "order_by": [ - 2236, + 2235, "[player_damages_order_by!]" ], "where": [ - 2226 + 2225 ] } ], "player_damages_aggregate": [ - 2218, + 2217, { "distinct_on": [ - 2238, + 2237, "[player_damages_select_column!]" ], "limit": [ @@ -34094,19 +34080,19 @@ export default { 38 ], "order_by": [ - 2236, + 2235, "[player_damages_order_by!]" ], "where": [ - 2226 + 2225 ] } ], "player_flashes": [ - 2326, + 2325, { "distinct_on": [ - 2349, + 2348, "[player_flashes_select_column!]" ], "limit": [ @@ -34116,19 +34102,19 @@ export default { 38 ], "order_by": [ - 2347, + 2346, "[player_flashes_order_by!]" ], "where": [ - 2337 + 2336 ] } ], "player_flashes_aggregate": [ - 2327, + 2326, { "distinct_on": [ - 2349, + 2348, "[player_flashes_select_column!]" ], "limit": [ @@ -34138,19 +34124,19 @@ export default { 38 ], "order_by": [ - 2347, + 2346, "[player_flashes_order_by!]" ], "where": [ - 2337 + 2336 ] } ], "player_kills": [ - 2371, + 2370, { "distinct_on": [ - 2435, + 2434, "[player_kills_select_column!]" ], "limit": [ @@ -34160,19 +34146,19 @@ export default { 38 ], "order_by": [ - 2433, + 2432, "[player_kills_order_by!]" ], "where": [ - 2382 + 2381 ] } ], "player_kills_aggregate": [ - 2372, + 2371, { "distinct_on": [ - 2435, + 2434, "[player_kills_select_column!]" ], "limit": [ @@ -34182,19 +34168,19 @@ export default { 38 ], "order_by": [ - 2433, + 2432, "[player_kills_order_by!]" ], "where": [ - 2382 + 2381 ] } ], "player_objectives": [ - 2572, + 2571, { "distinct_on": [ - 2593, + 2592, "[player_objectives_select_column!]" ], "limit": [ @@ -34204,19 +34190,19 @@ export default { 38 ], "order_by": [ - 2591, + 2590, "[player_objectives_order_by!]" ], "where": [ - 2581 + 2580 ] } ], "player_objectives_aggregate": [ - 2573, + 2572, { "distinct_on": [ - 2593, + 2592, "[player_objectives_select_column!]" ], "limit": [ @@ -34226,19 +34212,19 @@ export default { 38 ], "order_by": [ - 2591, + 2590, "[player_objectives_order_by!]" ], "where": [ - 2581 + 2580 ] } ], "player_unused_utilities": [ - 2800, + 2799, { "distinct_on": [ - 2821, + 2820, "[player_unused_utility_select_column!]" ], "limit": [ @@ -34248,19 +34234,19 @@ export default { 38 ], "order_by": [ - 2819, + 2818, "[player_unused_utility_order_by!]" ], "where": [ - 2809 + 2808 ] } ], "player_unused_utilities_aggregate": [ - 2801, + 2800, { "distinct_on": [ - 2821, + 2820, "[player_unused_utility_select_column!]" ], "limit": [ @@ -34270,19 +34256,19 @@ export default { 38 ], "order_by": [ - 2819, + 2818, "[player_unused_utility_order_by!]" ], "where": [ - 2809 + 2808 ] } ], "player_utility": [ - 2841, + 2840, { "distinct_on": [ - 2862, + 2861, "[player_utility_select_column!]" ], "limit": [ @@ -34292,19 +34278,19 @@ export default { 38 ], "order_by": [ - 2860, + 2859, "[player_utility_order_by!]" ], "where": [ - 2850 + 2849 ] } ], "player_utility_aggregate": [ - 2842, + 2841, { "distinct_on": [ - 2862, + 2861, "[player_utility_select_column!]" ], "limit": [ @@ -34314,25 +34300,25 @@ export default { 38 ], "order_by": [ - 2860, + 2859, "[player_utility_order_by!]" ], "where": [ - 2850 + 2849 ] } ], "region": [ - 75 + 74 ], "region_veto_picking_lineup_id": [ - 3864 + 3863 ], "region_veto_picks": [ - 1739, + 1738, { "distinct_on": [ - 1757, + 1756, "[match_region_veto_picks_select_column!]" ], "limit": [ @@ -34342,19 +34328,19 @@ export default { 38 ], "order_by": [ - 1755, + 1754, "[match_region_veto_picks_order_by!]" ], "where": [ - 1746 + 1745 ] } ], "region_veto_picks_aggregate": [ - 1740, + 1739, { "distinct_on": [ - 1757, + 1756, "[match_region_veto_picks_select_column!]" ], "limit": [ @@ -34364,11 +34350,11 @@ export default { 38 ], "order_by": [ - 1755, + 1754, "[match_region_veto_picks_order_by!]" ], "where": [ - 1746 + 1745 ] } ], @@ -34376,37 +34362,37 @@ export default { 3 ], "scheduled_at": [ - 3467 + 3466 ], "server": [ - 2998 + 2997 ], "server_error": [ - 75 + 74 ], "server_id": [ - 3864 + 3863 ], "server_region": [ - 75 + 74 ], "server_type": [ - 75 + 74 ], "source": [ - 75 + 74 ], "started_at": [ - 3467 + 3466 ], "status": [ - 708 + 707 ], "streams": [ - 1763, + 1762, { "distinct_on": [ - 1791, + 1790, "[match_streams_select_column!]" ], "limit": [ @@ -34416,19 +34402,19 @@ export default { 38 ], "order_by": [ - 1788, + 1787, "[match_streams_order_by!]" ], "where": [ - 1775 + 1774 ] } ], "streams_aggregate": [ - 1764, + 1763, { "distinct_on": [ - 1791, + 1790, "[match_streams_select_column!]" ], "limit": [ @@ -34438,19 +34424,19 @@ export default { 38 ], "order_by": [ - 1788, + 1787, "[match_streams_order_by!]" ], "where": [ - 1775 + 1774 ] } ], "teams": [ - 3424, + 3423, { "distinct_on": [ - 3446, + 3445, "[teams_select_column!]" ], "limit": [ @@ -34460,19 +34446,19 @@ export default { 38 ], "order_by": [ - 3444, + 3443, "[teams_order_by!]" ], "where": [ - 3433 + 3432 ] } ], "tournament_brackets": [ - 3469, + 3468, { "distinct_on": [ - 3493, + 3492, "[tournament_brackets_select_column!]" ], "limit": [ @@ -34482,19 +34468,19 @@ export default { 38 ], "order_by": [ - 3491, + 3490, "[tournament_brackets_order_by!]" ], "where": [ - 3480 + 3479 ] } ], "tournament_brackets_aggregate": [ - 3470, + 3469, { "distinct_on": [ - 3493, + 3492, "[tournament_brackets_select_column!]" ], "limit": [ @@ -34504,72 +34490,72 @@ export default { 38 ], "order_by": [ - 3491, + 3490, "[tournament_brackets_order_by!]" ], "where": [ - 3480 + 3479 ] } ], "tv_connection_string": [ - 75 + 74 ], "winner": [ - 1511 + 1510 ], "winning_lineup_id": [ - 3864 + 3863 ], "__typename": [ - 75 + 74 ] }, "matches_aggregate": { "aggregate": [ - 1835 + 1834 ], "nodes": [ - 1831 + 1830 ], "__typename": [ - 75 + 74 ] }, "matches_aggregate_bool_exp": { "count": [ - 1834 + 1833 ], "__typename": [ - 75 + 74 ] }, "matches_aggregate_bool_exp_count": { "arguments": [ - 1853 + 1852 ], "distinct": [ 3 ], "filter": [ - 1840 + 1839 ], "predicate": [ 39 ], "__typename": [ - 75 + 74 ] }, "matches_aggregate_fields": { "avg": [ - 1838 + 1837 ], "count": [ 38, { "columns": [ - 1853, + 1852, "[matches_select_column!]" ], "distinct": [ @@ -34578,83 +34564,83 @@ export default { } ], "max": [ - 1844 + 1843 ], "min": [ - 1846 + 1845 ], "stddev": [ - 1855 + 1854 ], "stddev_pop": [ - 1857 + 1856 ], "stddev_samp": [ - 1859 + 1858 ], "sum": [ - 1863 + 1862 ], "var_pop": [ - 1867 + 1866 ], "var_samp": [ - 1869 + 1868 ], "variance": [ - 1871 + 1870 ], "__typename": [ - 75 + 74 ] }, "matches_aggregate_order_by": { "avg": [ - 1839 + 1838 ], "count": [ - 2016 + 2015 ], "max": [ - 1845 + 1844 ], "min": [ - 1847 + 1846 ], "stddev": [ - 1856 + 1855 ], "stddev_pop": [ - 1858 + 1857 ], "stddev_samp": [ - 1860 + 1859 ], "sum": [ - 1864 + 1863 ], "var_pop": [ - 1868 + 1867 ], "var_samp": [ - 1870 + 1869 ], "variance": [ - 1872 + 1871 ], "__typename": [ - 75 + 74 ] }, "matches_arr_rel_insert_input": { "data": [ - 1843 + 1842 ], "on_conflict": [ - 1850 + 1849 ], "__typename": [ - 75 + 74 ] }, "matches_avg_fields": { @@ -34668,26 +34654,26 @@ export default { 29 ], "__typename": [ - 75 + 74 ] }, "matches_avg_order_by": { "organizer_steam_id": [ - 2016 + 2015 ], "__typename": [ - 75 + 74 ] }, "matches_bool_exp": { "_and": [ - 1840 + 1839 ], "_not": [ - 1840 + 1839 ], "_or": [ - 1840 + 1839 ], "can_assign_server": [ 4 @@ -34714,64 +34700,64 @@ export default { 4 ], "cancels_at": [ - 3468 + 3467 ], "clutches": [ - 3918 + 3917 ], "clutches_aggregate": [ - 3911 + 3910 ], "connection_link": [ - 77 + 76 ], "connection_string": [ - 77 + 76 ], "created_at": [ - 3468 + 3467 ], "current_match_map_id": [ - 3866 + 3865 ], "demos": [ - 1565 + 1564 ], "demos_aggregate": [ - 1555 + 1554 ], "draft_games": [ - 358 + 357 ], "draft_games_aggregate": [ - 349 + 348 ], "e_match_status": [ - 706 + 705 ], "e_region": [ - 2975 + 2974 ], "effective_at": [ - 3468 + 3467 ], "elo_changes": [ - 4125 + 4124 ], "elo_changes_aggregate": [ - 4108 + 4107 ], "ended_at": [ - 3468 + 3467 ], "external_id": [ - 77 + 76 ], "id": [ - 3866 + 3865 ], "invite_code": [ - 77 + 76 ], "is_captain": [ 4 @@ -34798,43 +34784,43 @@ export default { 4 ], "label": [ - 77 + 76 ], "lineup_1": [ - 1520 + 1519 ], "lineup_1_id": [ - 3866 + 3865 ], "lineup_2": [ - 1520 + 1519 ], "lineup_2_id": [ - 3866 + 3865 ], "lineup_counts": [ - 1239 + 1238 ], "map_veto_picking_lineup_id": [ - 3866 + 3865 ], "map_veto_picks": [ - 1652 + 1651 ], "map_veto_picks_aggregate": [ - 1647 + 1646 ], "map_veto_type": [ - 77 + 76 ], "match_maps": [ - 1678 + 1677 ], "match_maps_aggregate": [ - 1671 + 1670 ], "match_options_id": [ - 3866 + 3865 ], "max_players_per_lineup": [ 39 @@ -34843,329 +34829,329 @@ export default { 39 ], "opening_duels": [ - 4046 + 4045 ], "opening_duels_aggregate": [ - 4039 + 4038 ], "options": [ - 1715 + 1714 ], "organizer": [ - 2919 + 2918 ], "organizer_steam_id": [ - 176 + 175 ], "password": [ - 77 + 76 ], "player_assists": [ - 2165 + 2164 ], "player_assists_aggregate": [ - 2156 + 2155 ], "player_damages": [ - 2226 + 2225 ], "player_damages_aggregate": [ - 2219 + 2218 ], "player_flashes": [ - 2337 + 2336 ], "player_flashes_aggregate": [ - 2328 + 2327 ], "player_kills": [ - 2382 + 2381 ], "player_kills_aggregate": [ - 2373 + 2372 ], "player_objectives": [ - 2581 + 2580 ], "player_objectives_aggregate": [ - 2574 + 2573 ], "player_unused_utilities": [ - 2809 + 2808 ], "player_unused_utilities_aggregate": [ - 2802 + 2801 ], "player_utility": [ - 2850 + 2849 ], "player_utility_aggregate": [ - 2843 + 2842 ], "region": [ - 77 + 76 ], "region_veto_picking_lineup_id": [ - 3866 + 3865 ], "region_veto_picks": [ - 1746 + 1745 ], "region_veto_picks_aggregate": [ - 1741 + 1740 ], "requested_organizer": [ 4 ], "scheduled_at": [ - 3468 + 3467 ], "server": [ - 3009 + 3008 ], "server_error": [ - 77 + 76 ], "server_id": [ - 3866 + 3865 ], "server_region": [ - 77 + 76 ], "server_type": [ - 77 + 76 ], "source": [ - 77 + 76 ], "started_at": [ - 3468 + 3467 ], "status": [ - 709 + 708 ], "streams": [ - 1775 + 1774 ], "streams_aggregate": [ - 1765 + 1764 ], "teams": [ - 3433 + 3432 ], "tournament_brackets": [ - 3480 + 3479 ], "tournament_brackets_aggregate": [ - 3471 + 3470 ], "tv_connection_string": [ - 77 + 76 ], "winner": [ - 1520 + 1519 ], "winning_lineup_id": [ - 3866 + 3865 ], "__typename": [ - 75 + 74 ] }, "matches_constraint": {}, "matches_inc_input": { "organizer_steam_id": [ - 174 + 173 ], "__typename": [ - 75 + 74 ] }, "matches_insert_input": { "cancels_at": [ - 3467 + 3466 ], "clutches": [ - 3915 + 3914 ], "created_at": [ - 3467 + 3466 ], "demos": [ - 1562 + 1561 ], "draft_games": [ - 355 + 354 ], "e_match_status": [ - 714 + 713 ], "e_region": [ - 2981 + 2980 ], "elo_changes": [ - 4122 + 4121 ], "ended_at": [ - 3467 + 3466 ], "external_id": [ - 75 + 74 ], "id": [ - 3864 + 3863 ], "label": [ - 75 + 74 ], "lineup_1": [ - 1529 + 1528 ], "lineup_1_id": [ - 3864 + 3863 ], "lineup_2": [ - 1529 + 1528 ], "lineup_2_id": [ - 3864 + 3863 ], "map_veto_picks": [ - 1651 + 1650 ], "match_maps": [ - 1675 + 1674 ], "match_options_id": [ - 3864 + 3863 ], "opening_duels": [ - 4043 + 4042 ], "options": [ - 1722 + 1721 ], "organizer": [ - 2926 + 2925 ], "organizer_steam_id": [ - 174 + 173 ], "password": [ - 75 + 74 ], "player_assists": [ - 2162 + 2161 ], "player_damages": [ - 2223 + 2222 ], "player_flashes": [ - 2334 + 2333 ], "player_kills": [ - 2379 + 2378 ], "player_objectives": [ - 2578 + 2577 ], "player_unused_utilities": [ - 2806 + 2805 ], "player_utility": [ - 2847 + 2846 ], "region": [ - 75 + 74 ], "region_veto_picks": [ - 1745 + 1744 ], "scheduled_at": [ - 3467 + 3466 ], "server": [ - 3018 + 3017 ], "server_error": [ - 75 + 74 ], "server_id": [ - 3864 + 3863 ], "source": [ - 75 + 74 ], "started_at": [ - 3467 + 3466 ], "status": [ - 708 + 707 ], "streams": [ - 1772 + 1771 ], "tournament_brackets": [ - 3477 + 3476 ], "winner": [ - 1529 + 1528 ], "winning_lineup_id": [ - 3864 + 3863 ], "__typename": [ - 75 + 74 ] }, "matches_max_fields": { "cancels_at": [ - 3467 + 3466 ], "connection_link": [ - 75 + 74 ], "connection_string": [ - 75 + 74 ], "created_at": [ - 3467 + 3466 ], "current_match_map_id": [ - 3864 + 3863 ], "effective_at": [ - 3467 + 3466 ], "ended_at": [ - 3467 + 3466 ], "external_id": [ - 75 + 74 ], "id": [ - 3864 + 3863 ], "invite_code": [ - 75 + 74 ], "label": [ - 75 + 74 ], "lineup_1_id": [ - 3864 + 3863 ], "lineup_2_id": [ - 3864 + 3863 ], "map_veto_picking_lineup_id": [ - 3864 + 3863 ], "map_veto_type": [ - 75 + 74 ], "match_options_id": [ - 3864 + 3863 ], "max_players_per_lineup": [ 38 @@ -35174,158 +35160,158 @@ export default { 38 ], "organizer_steam_id": [ - 174 + 173 ], "password": [ - 75 + 74 ], "region": [ - 75 + 74 ], "region_veto_picking_lineup_id": [ - 3864 + 3863 ], "scheduled_at": [ - 3467 + 3466 ], "server_error": [ - 75 + 74 ], "server_id": [ - 3864 + 3863 ], "server_region": [ - 75 + 74 ], "server_type": [ - 75 + 74 ], "source": [ - 75 + 74 ], "started_at": [ - 3467 + 3466 ], "tv_connection_string": [ - 75 + 74 ], "winning_lineup_id": [ - 3864 + 3863 ], "__typename": [ - 75 + 74 ] }, "matches_max_order_by": { "cancels_at": [ - 2016 + 2015 ], "created_at": [ - 2016 + 2015 ], "effective_at": [ - 2016 + 2015 ], "ended_at": [ - 2016 + 2015 ], "external_id": [ - 2016 + 2015 ], "id": [ - 2016 + 2015 ], "label": [ - 2016 + 2015 ], "lineup_1_id": [ - 2016 + 2015 ], "lineup_2_id": [ - 2016 + 2015 ], "match_options_id": [ - 2016 + 2015 ], "organizer_steam_id": [ - 2016 + 2015 ], "password": [ - 2016 + 2015 ], "region": [ - 2016 + 2015 ], "scheduled_at": [ - 2016 + 2015 ], "server_error": [ - 2016 + 2015 ], "server_id": [ - 2016 + 2015 ], "source": [ - 2016 + 2015 ], "started_at": [ - 2016 + 2015 ], "winning_lineup_id": [ - 2016 + 2015 ], "__typename": [ - 75 + 74 ] }, "matches_min_fields": { "cancels_at": [ - 3467 + 3466 ], "connection_link": [ - 75 + 74 ], "connection_string": [ - 75 + 74 ], "created_at": [ - 3467 + 3466 ], "current_match_map_id": [ - 3864 + 3863 ], "effective_at": [ - 3467 + 3466 ], "ended_at": [ - 3467 + 3466 ], "external_id": [ - 75 + 74 ], "id": [ - 3864 + 3863 ], "invite_code": [ - 75 + 74 ], "label": [ - 75 + 74 ], "lineup_1_id": [ - 3864 + 3863 ], "lineup_2_id": [ - 3864 + 3863 ], "map_veto_picking_lineup_id": [ - 3864 + 3863 ], "map_veto_type": [ - 75 + 74 ], "match_options_id": [ - 3864 + 3863 ], "max_players_per_lineup": [ 38 @@ -35334,108 +35320,108 @@ export default { 38 ], "organizer_steam_id": [ - 174 + 173 ], "password": [ - 75 + 74 ], "region": [ - 75 + 74 ], "region_veto_picking_lineup_id": [ - 3864 + 3863 ], "scheduled_at": [ - 3467 + 3466 ], "server_error": [ - 75 + 74 ], "server_id": [ - 3864 + 3863 ], "server_region": [ - 75 + 74 ], "server_type": [ - 75 + 74 ], "source": [ - 75 + 74 ], "started_at": [ - 3467 + 3466 ], "tv_connection_string": [ - 75 + 74 ], "winning_lineup_id": [ - 3864 + 3863 ], "__typename": [ - 75 + 74 ] }, "matches_min_order_by": { "cancels_at": [ - 2016 + 2015 ], "created_at": [ - 2016 + 2015 ], "effective_at": [ - 2016 + 2015 ], "ended_at": [ - 2016 + 2015 ], "external_id": [ - 2016 + 2015 ], "id": [ - 2016 + 2015 ], "label": [ - 2016 + 2015 ], "lineup_1_id": [ - 2016 + 2015 ], "lineup_2_id": [ - 2016 + 2015 ], "match_options_id": [ - 2016 + 2015 ], "organizer_steam_id": [ - 2016 + 2015 ], "password": [ - 2016 + 2015 ], "region": [ - 2016 + 2015 ], "scheduled_at": [ - 2016 + 2015 ], "server_error": [ - 2016 + 2015 ], "server_id": [ - 2016 + 2015 ], "source": [ - 2016 + 2015 ], "started_at": [ - 2016 + 2015 ], "winning_lineup_id": [ - 2016 + 2015 ], "__typename": [ - 75 + 74 ] }, "matches_mutation_response": { @@ -35443,339 +35429,339 @@ export default { 38 ], "returning": [ - 1831 + 1830 ], "__typename": [ - 75 + 74 ] }, "matches_obj_rel_insert_input": { "data": [ - 1843 + 1842 ], "on_conflict": [ - 1850 + 1849 ], "__typename": [ - 75 + 74 ] }, "matches_on_conflict": { "constraint": [ - 1841 + 1840 ], "update_columns": [ - 1865 + 1864 ], "where": [ - 1840 + 1839 ], "__typename": [ - 75 + 74 ] }, "matches_order_by": { "can_assign_server": [ - 2016 + 2015 ], "can_cancel": [ - 2016 + 2015 ], "can_check_in": [ - 2016 + 2015 ], "can_reassign_winner": [ - 2016 + 2015 ], "can_schedule": [ - 2016 + 2015 ], "can_start": [ - 2016 + 2015 ], "can_stream_live": [ - 2016 + 2015 ], "can_stream_tv": [ - 2016 + 2015 ], "cancels_at": [ - 2016 + 2015 ], "clutches_aggregate": [ - 3914 + 3913 ], "connection_link": [ - 2016 + 2015 ], "connection_string": [ - 2016 + 2015 ], "created_at": [ - 2016 + 2015 ], "current_match_map_id": [ - 2016 + 2015 ], "demos_aggregate": [ - 1560 + 1559 ], "draft_games_aggregate": [ - 354 + 353 ], "e_match_status": [ - 716 + 715 ], "e_region": [ - 2983 + 2982 ], "effective_at": [ - 2016 + 2015 ], "elo_changes_aggregate": [ - 4121 + 4120 ], "ended_at": [ - 2016 + 2015 ], "external_id": [ - 2016 + 2015 ], "id": [ - 2016 + 2015 ], "invite_code": [ - 2016 + 2015 ], "is_captain": [ - 2016 + 2015 ], "is_coach": [ - 2016 + 2015 ], "is_friend_in_match_lineup": [ - 2016 + 2015 ], "is_in_lineup": [ - 2016 + 2015 ], "is_match_server_available": [ - 2016 + 2015 ], "is_organizer": [ - 2016 + 2015 ], "is_server_online": [ - 2016 + 2015 ], "is_tournament_match": [ - 2016 + 2015 ], "label": [ - 2016 + 2015 ], "lineup_1": [ - 1531 + 1530 ], "lineup_1_id": [ - 2016 + 2015 ], "lineup_2": [ - 1531 + 1530 ], "lineup_2_id": [ - 2016 + 2015 ], "lineup_counts": [ - 2016 + 2015 ], "map_veto_picking_lineup_id": [ - 2016 + 2015 ], "map_veto_picks_aggregate": [ - 1650 + 1649 ], "map_veto_type": [ - 2016 + 2015 ], "match_maps_aggregate": [ - 1674 + 1673 ], "match_options_id": [ - 2016 + 2015 ], "max_players_per_lineup": [ - 2016 + 2015 ], "min_players_per_lineup": [ - 2016 + 2015 ], "opening_duels_aggregate": [ - 4042 + 4041 ], "options": [ - 1724 + 1723 ], "organizer": [ - 2928 + 2927 ], "organizer_steam_id": [ - 2016 + 2015 ], "password": [ - 2016 + 2015 ], "player_assists_aggregate": [ - 2161 + 2160 ], "player_damages_aggregate": [ - 2222 + 2221 ], "player_flashes_aggregate": [ - 2333 + 2332 ], "player_kills_aggregate": [ - 2378 + 2377 ], "player_objectives_aggregate": [ - 2577 + 2576 ], "player_unused_utilities_aggregate": [ - 2805 + 2804 ], "player_utility_aggregate": [ - 2846 + 2845 ], "region": [ - 2016 + 2015 ], "region_veto_picking_lineup_id": [ - 2016 + 2015 ], "region_veto_picks_aggregate": [ - 1744 + 1743 ], "requested_organizer": [ - 2016 + 2015 ], "scheduled_at": [ - 2016 + 2015 ], "server": [ - 3020 + 3019 ], "server_error": [ - 2016 + 2015 ], "server_id": [ - 2016 + 2015 ], "server_region": [ - 2016 + 2015 ], "server_type": [ - 2016 + 2015 ], "source": [ - 2016 + 2015 ], "started_at": [ - 2016 + 2015 ], "status": [ - 2016 + 2015 ], "streams_aggregate": [ - 1770 + 1769 ], "teams_aggregate": [ - 3429 + 3428 ], "tournament_brackets_aggregate": [ - 3476 + 3475 ], "tv_connection_string": [ - 2016 + 2015 ], "winner": [ - 1531 + 1530 ], "winning_lineup_id": [ - 2016 + 2015 ], "__typename": [ - 75 + 74 ] }, "matches_pk_columns_input": { "id": [ - 3864 + 3863 ], "__typename": [ - 75 + 74 ] }, "matches_select_column": {}, "matches_set_input": { "cancels_at": [ - 3467 + 3466 ], "created_at": [ - 3467 + 3466 ], "ended_at": [ - 3467 + 3466 ], "external_id": [ - 75 + 74 ], "id": [ - 3864 + 3863 ], "label": [ - 75 + 74 ], "lineup_1_id": [ - 3864 + 3863 ], "lineup_2_id": [ - 3864 + 3863 ], "match_options_id": [ - 3864 + 3863 ], "organizer_steam_id": [ - 174 + 173 ], "password": [ - 75 + 74 ], "region": [ - 75 + 74 ], "scheduled_at": [ - 3467 + 3466 ], "server_error": [ - 75 + 74 ], "server_id": [ - 3864 + 3863 ], "source": [ - 75 + 74 ], "started_at": [ - 3467 + 3466 ], "status": [ - 708 + 707 ], "winning_lineup_id": [ - 3864 + 3863 ], "__typename": [ - 75 + 74 ] }, "matches_stddev_fields": { @@ -35789,15 +35775,15 @@ export default { 29 ], "__typename": [ - 75 + 74 ] }, "matches_stddev_order_by": { "organizer_steam_id": [ - 2016 + 2015 ], "__typename": [ - 75 + 74 ] }, "matches_stddev_pop_fields": { @@ -35811,15 +35797,15 @@ export default { 29 ], "__typename": [ - 75 + 74 ] }, "matches_stddev_pop_order_by": { "organizer_steam_id": [ - 2016 + 2015 ], "__typename": [ - 75 + 74 ] }, "matches_stddev_samp_fields": { @@ -35833,91 +35819,91 @@ export default { 29 ], "__typename": [ - 75 + 74 ] }, "matches_stddev_samp_order_by": { "organizer_steam_id": [ - 2016 + 2015 ], "__typename": [ - 75 + 74 ] }, "matches_stream_cursor_input": { "initial_value": [ - 1862 + 1861 ], "ordering": [ - 229 + 228 ], "__typename": [ - 75 + 74 ] }, "matches_stream_cursor_value_input": { "cancels_at": [ - 3467 + 3466 ], "created_at": [ - 3467 + 3466 ], "effective_at": [ - 3467 + 3466 ], "ended_at": [ - 3467 + 3466 ], "external_id": [ - 75 + 74 ], "id": [ - 3864 + 3863 ], "label": [ - 75 + 74 ], "lineup_1_id": [ - 3864 + 3863 ], "lineup_2_id": [ - 3864 + 3863 ], "match_options_id": [ - 3864 + 3863 ], "organizer_steam_id": [ - 174 + 173 ], "password": [ - 75 + 74 ], "region": [ - 75 + 74 ], "scheduled_at": [ - 3467 + 3466 ], "server_error": [ - 75 + 74 ], "server_id": [ - 3864 + 3863 ], "source": [ - 75 + 74 ], "started_at": [ - 3467 + 3466 ], "status": [ - 708 + 707 ], "winning_lineup_id": [ - 3864 + 3863 ], "__typename": [ - 75 + 74 ] }, "matches_sum_fields": { @@ -35928,33 +35914,33 @@ export default { 38 ], "organizer_steam_id": [ - 174 + 173 ], "__typename": [ - 75 + 74 ] }, "matches_sum_order_by": { "organizer_steam_id": [ - 2016 + 2015 ], "__typename": [ - 75 + 74 ] }, "matches_update_column": {}, "matches_updates": { "_inc": [ - 1842 + 1841 ], "_set": [ - 1854 + 1853 ], "where": [ - 1840 + 1839 ], "__typename": [ - 75 + 74 ] }, "matches_var_pop_fields": { @@ -35968,15 +35954,15 @@ export default { 29 ], "__typename": [ - 75 + 74 ] }, "matches_var_pop_order_by": { "organizer_steam_id": [ - 2016 + 2015 ], "__typename": [ - 75 + 74 ] }, "matches_var_samp_fields": { @@ -35990,15 +35976,15 @@ export default { 29 ], "__typename": [ - 75 + 74 ] }, "matches_var_samp_order_by": { "organizer_steam_id": [ - 2016 + 2015 ], "__typename": [ - 75 + 74 ] }, "matches_variance_fields": { @@ -36012,37 +35998,37 @@ export default { 29 ], "__typename": [ - 75 + 74 ] }, "matches_variance_order_by": { "organizer_steam_id": [ - 2016 + 2015 ], "__typename": [ - 75 + 74 ] }, "migration_hashes_hashes": { "hash": [ - 75 + 74 ], "name": [ - 75 + 74 ], "__typename": [ - 75 + 74 ] }, "migration_hashes_hashes_aggregate": { "aggregate": [ - 1875 + 1874 ], "nodes": [ - 1873 + 1872 ], "__typename": [ - 75 + 74 ] }, "migration_hashes_hashes_aggregate_fields": { @@ -36050,7 +36036,7 @@ export default { 38, { "columns": [ - 1885, + 1884, "[migration_hashes_hashes_select_column!]" ], "distinct": [ @@ -36059,67 +36045,67 @@ export default { } ], "max": [ - 1879 + 1878 ], "min": [ - 1880 + 1879 ], "__typename": [ - 75 + 74 ] }, "migration_hashes_hashes_bool_exp": { "_and": [ - 1876 + 1875 ], "_not": [ - 1876 + 1875 ], "_or": [ - 1876 + 1875 ], "hash": [ - 77 + 76 ], "name": [ - 77 + 76 ], "__typename": [ - 75 + 74 ] }, "migration_hashes_hashes_constraint": {}, "migration_hashes_hashes_insert_input": { "hash": [ - 75 + 74 ], "name": [ - 75 + 74 ], "__typename": [ - 75 + 74 ] }, "migration_hashes_hashes_max_fields": { "hash": [ - 75 + 74 ], "name": [ - 75 + 74 ], "__typename": [ - 75 + 74 ] }, "migration_hashes_hashes_min_fields": { "hash": [ - 75 + 74 ], "name": [ - 75 + 74 ], "__typename": [ - 75 + 74 ] }, "migration_hashes_hashes_mutation_response": { @@ -36127,234 +36113,296 @@ export default { 38 ], "returning": [ - 1873 + 1872 ], "__typename": [ - 75 + 74 ] }, "migration_hashes_hashes_on_conflict": { "constraint": [ - 1877 + 1876 ], "update_columns": [ - 1889 + 1888 ], "where": [ - 1876 + 1875 ], "__typename": [ - 75 + 74 ] }, "migration_hashes_hashes_order_by": { "hash": [ - 2016 + 2015 ], "name": [ - 2016 + 2015 ], "__typename": [ - 75 + 74 ] }, "migration_hashes_hashes_pk_columns_input": { "name": [ - 75 + 74 ], "__typename": [ - 75 + 74 ] }, "migration_hashes_hashes_select_column": {}, "migration_hashes_hashes_set_input": { "hash": [ - 75 + 74 ], "name": [ - 75 + 74 ], "__typename": [ - 75 + 74 ] }, "migration_hashes_hashes_stream_cursor_input": { "initial_value": [ - 1888 + 1887 ], "ordering": [ - 229 + 228 ], "__typename": [ - 75 + 74 ] }, "migration_hashes_hashes_stream_cursor_value_input": { "hash": [ - 75 + 74 ], "name": [ - 75 + 74 ], "__typename": [ - 75 + 74 ] }, "migration_hashes_hashes_update_column": {}, "migration_hashes_hashes_updates": { "_set": [ - 1886 + 1885 ], "where": [ - 1876 + 1875 ], "__typename": [ - 75 + 74 ] }, "my_friends": { "avatar_url": [ - 75 + 74 ], "country": [ - 75 + 74 ], "created_at": [ - 3467 + 3466 + ], + "custom_avatar_url": [ + 74 + ], + "days_since_last_ban": [ + 38 ], "discord_id": [ - 75 + 74 ], "elo": [ - 1240, + 1239, { "path": [ - 75 + 74 ] } ], + "faceit_elo": [ + 38 + ], + "faceit_nickname": [ + 74 + ], + "faceit_player_id": [ + 74 + ], + "faceit_skill_level": [ + 38 + ], + "faceit_updated_at": [ + 3466 + ], + "faceit_url": [ + 74 + ], "friend_steam_id": [ - 174 + 173 + ], + "game_ban_count": [ + 38 ], "invited_by_steam_id": [ - 174 + 173 ], "language": [ - 75 + 74 + ], + "last_presence_state": [ + 1239, + { + "path": [ + 74 + ] + } + ], + "last_read_news_at": [ + 3466 ], "last_sign_in_at": [ - 3467 + 3466 ], "name": [ - 75 + 74 ], "name_registered": [ 3 ], "player": [ - 2915 + 2914 + ], + "premier_rank": [ + 38 + ], + "premier_rank_updated_at": [ + 3466 + ], + "presence_updated_at": [ + 3466 ], "profile_url": [ - 75 + 74 ], "role": [ - 75 + 74 + ], + "roster_image_url": [ + 74 + ], + "show_match_ready_modal": [ + 3 ], "status": [ - 75 + 74 + ], + "steam_bans_checked_at": [ + 3466 ], "steam_id": [ - 174 + 173 + ], + "vac_ban_count": [ + 38 + ], + "vac_banned": [ + 3 ], "__typename": [ - 75 + 74 ] }, "my_friends_aggregate": { "aggregate": [ - 1897 + 1896 ], "nodes": [ - 1891 + 1890 ], "__typename": [ - 75 + 74 ] }, "my_friends_aggregate_bool_exp": { "bool_and": [ - 1894 + 1893 ], "bool_or": [ - 1895 + 1894 ], "count": [ - 1896 + 1895 ], "__typename": [ - 75 + 74 ] }, "my_friends_aggregate_bool_exp_bool_and": { "arguments": [ - 1917 + 1916 ], "distinct": [ 3 ], "filter": [ - 1903 + 1902 ], "predicate": [ 4 ], "__typename": [ - 75 + 74 ] }, "my_friends_aggregate_bool_exp_bool_or": { "arguments": [ - 1918 + 1917 ], "distinct": [ 3 ], "filter": [ - 1903 + 1902 ], "predicate": [ 4 ], "__typename": [ - 75 + 74 ] }, "my_friends_aggregate_bool_exp_count": { "arguments": [ - 1916 + 1915 ], "distinct": [ 3 ], "filter": [ - 1903 + 1902 ], "predicate": [ 39 ], "__typename": [ - 75 + 74 ] }, "my_friends_aggregate_fields": { "avg": [ - 1901 + 1900 ], "count": [ 38, { "columns": [ - 1916, + 1915, "[my_friends_select_column!]" ], "distinct": [ @@ -36363,445 +36411,817 @@ export default { } ], "max": [ - 1909 + 1908 ], "min": [ - 1911 + 1910 ], "stddev": [ - 1920 + 1919 ], "stddev_pop": [ - 1922 + 1921 ], "stddev_samp": [ - 1924 + 1923 ], "sum": [ - 1928 + 1927 ], "var_pop": [ - 1931 + 1930 ], "var_samp": [ - 1933 + 1932 ], "variance": [ - 1935 + 1934 ], "__typename": [ - 75 + 74 ] }, "my_friends_aggregate_order_by": { "avg": [ - 1902 + 1901 ], "count": [ - 2016 + 2015 ], "max": [ - 1910 + 1909 ], "min": [ - 1912 + 1911 ], "stddev": [ - 1921 + 1920 ], "stddev_pop": [ - 1923 + 1922 ], "stddev_samp": [ - 1925 + 1924 ], "sum": [ - 1929 + 1928 ], "var_pop": [ - 1932 + 1931 ], "var_samp": [ - 1934 + 1933 ], "variance": [ - 1936 + 1935 ], "__typename": [ - 75 + 74 ] }, "my_friends_append_input": { "elo": [ - 1240 + 1239 + ], + "last_presence_state": [ + 1239 ], "__typename": [ - 75 + 74 ] }, "my_friends_arr_rel_insert_input": { "data": [ - 1908 + 1907 ], "__typename": [ - 75 + 74 ] }, "my_friends_avg_fields": { + "days_since_last_ban": [ + 29 + ], + "faceit_elo": [ + 29 + ], + "faceit_skill_level": [ + 29 + ], "friend_steam_id": [ 29 ], + "game_ban_count": [ + 29 + ], "invited_by_steam_id": [ 29 ], + "premier_rank": [ + 29 + ], "steam_id": [ 29 ], + "vac_ban_count": [ + 29 + ], "__typename": [ - 75 + 74 ] }, "my_friends_avg_order_by": { + "days_since_last_ban": [ + 2015 + ], + "faceit_elo": [ + 2015 + ], + "faceit_skill_level": [ + 2015 + ], "friend_steam_id": [ - 2016 + 2015 + ], + "game_ban_count": [ + 2015 ], "invited_by_steam_id": [ - 2016 + 2015 + ], + "premier_rank": [ + 2015 ], "steam_id": [ - 2016 + 2015 + ], + "vac_ban_count": [ + 2015 ], "__typename": [ - 75 + 74 ] }, "my_friends_bool_exp": { "_and": [ - 1903 + 1902 ], "_not": [ - 1903 + 1902 ], "_or": [ - 1903 + 1902 ], "avatar_url": [ - 77 + 76 ], "country": [ - 77 + 76 ], "created_at": [ - 3468 + 3467 + ], + "custom_avatar_url": [ + 76 + ], + "days_since_last_ban": [ + 39 ], "discord_id": [ - 77 + 76 ], "elo": [ - 1242 + 1241 + ], + "faceit_elo": [ + 39 + ], + "faceit_nickname": [ + 76 + ], + "faceit_player_id": [ + 76 + ], + "faceit_skill_level": [ + 39 + ], + "faceit_updated_at": [ + 3467 + ], + "faceit_url": [ + 76 ], "friend_steam_id": [ - 176 + 175 + ], + "game_ban_count": [ + 39 ], "invited_by_steam_id": [ - 176 + 175 ], "language": [ - 77 + 76 + ], + "last_presence_state": [ + 1241 + ], + "last_read_news_at": [ + 3467 ], "last_sign_in_at": [ - 3468 + 3467 ], "name": [ - 77 + 76 ], "name_registered": [ 4 ], "player": [ - 2919 + 2918 + ], + "premier_rank": [ + 39 + ], + "premier_rank_updated_at": [ + 3467 + ], + "presence_updated_at": [ + 3467 ], "profile_url": [ - 77 + 76 ], "role": [ - 77 + 76 + ], + "roster_image_url": [ + 76 + ], + "show_match_ready_modal": [ + 4 ], "status": [ - 77 + 76 + ], + "steam_bans_checked_at": [ + 3467 ], "steam_id": [ - 176 + 175 + ], + "vac_ban_count": [ + 39 + ], + "vac_banned": [ + 4 ], "__typename": [ - 75 + 74 ] }, "my_friends_delete_at_path_input": { "elo": [ - 75 + 74 + ], + "last_presence_state": [ + 74 ], "__typename": [ - 75 + 74 ] }, "my_friends_delete_elem_input": { "elo": [ 38 ], + "last_presence_state": [ + 38 + ], "__typename": [ - 75 + 74 ] }, "my_friends_delete_key_input": { "elo": [ - 75 + 74 + ], + "last_presence_state": [ + 74 ], "__typename": [ - 75 + 74 ] }, "my_friends_inc_input": { + "days_since_last_ban": [ + 38 + ], + "faceit_elo": [ + 38 + ], + "faceit_skill_level": [ + 38 + ], "friend_steam_id": [ - 174 + 173 + ], + "game_ban_count": [ + 38 ], "invited_by_steam_id": [ - 174 + 173 + ], + "premier_rank": [ + 38 ], "steam_id": [ - 174 + 173 + ], + "vac_ban_count": [ + 38 ], "__typename": [ - 75 + 74 ] }, "my_friends_insert_input": { "avatar_url": [ - 75 + 74 ], "country": [ - 75 + 74 ], "created_at": [ - 3467 + 3466 + ], + "custom_avatar_url": [ + 74 + ], + "days_since_last_ban": [ + 38 ], "discord_id": [ - 75 + 74 ], "elo": [ - 1240 + 1239 + ], + "faceit_elo": [ + 38 + ], + "faceit_nickname": [ + 74 + ], + "faceit_player_id": [ + 74 + ], + "faceit_skill_level": [ + 38 + ], + "faceit_updated_at": [ + 3466 + ], + "faceit_url": [ + 74 ], "friend_steam_id": [ - 174 + 173 + ], + "game_ban_count": [ + 38 ], "invited_by_steam_id": [ - 174 + 173 ], "language": [ - 75 + 74 + ], + "last_presence_state": [ + 1239 + ], + "last_read_news_at": [ + 3466 ], "last_sign_in_at": [ - 3467 + 3466 ], "name": [ - 75 + 74 ], "name_registered": [ 3 ], "player": [ - 2926 + 2925 + ], + "premier_rank": [ + 38 + ], + "premier_rank_updated_at": [ + 3466 + ], + "presence_updated_at": [ + 3466 ], "profile_url": [ - 75 + 74 ], "role": [ - 75 + 74 + ], + "roster_image_url": [ + 74 + ], + "show_match_ready_modal": [ + 3 ], "status": [ - 75 + 74 + ], + "steam_bans_checked_at": [ + 3466 ], "steam_id": [ - 174 + 173 + ], + "vac_ban_count": [ + 38 + ], + "vac_banned": [ + 3 ], "__typename": [ - 75 + 74 ] }, "my_friends_max_fields": { "avatar_url": [ - 75 + 74 ], "country": [ - 75 + 74 ], "created_at": [ - 3467 + 3466 + ], + "custom_avatar_url": [ + 74 + ], + "days_since_last_ban": [ + 38 ], "discord_id": [ - 75 + 74 + ], + "faceit_elo": [ + 38 + ], + "faceit_nickname": [ + 74 + ], + "faceit_player_id": [ + 74 + ], + "faceit_skill_level": [ + 38 + ], + "faceit_updated_at": [ + 3466 + ], + "faceit_url": [ + 74 ], "friend_steam_id": [ - 174 + 173 + ], + "game_ban_count": [ + 38 ], "invited_by_steam_id": [ - 174 + 173 ], "language": [ - 75 + 74 + ], + "last_read_news_at": [ + 3466 ], "last_sign_in_at": [ - 3467 + 3466 ], "name": [ - 75 + 74 + ], + "premier_rank": [ + 38 + ], + "premier_rank_updated_at": [ + 3466 + ], + "presence_updated_at": [ + 3466 ], "profile_url": [ - 75 + 74 ], "role": [ - 75 + 74 + ], + "roster_image_url": [ + 74 ], "status": [ - 75 + 74 + ], + "steam_bans_checked_at": [ + 3466 ], "steam_id": [ - 174 + 173 + ], + "vac_ban_count": [ + 38 ], "__typename": [ - 75 + 74 ] }, "my_friends_max_order_by": { "avatar_url": [ - 2016 + 2015 ], "country": [ - 2016 + 2015 ], "created_at": [ - 2016 + 2015 + ], + "custom_avatar_url": [ + 2015 + ], + "days_since_last_ban": [ + 2015 ], "discord_id": [ - 2016 + 2015 + ], + "faceit_elo": [ + 2015 + ], + "faceit_nickname": [ + 2015 + ], + "faceit_player_id": [ + 2015 + ], + "faceit_skill_level": [ + 2015 + ], + "faceit_updated_at": [ + 2015 + ], + "faceit_url": [ + 2015 ], "friend_steam_id": [ - 2016 + 2015 + ], + "game_ban_count": [ + 2015 ], "invited_by_steam_id": [ - 2016 + 2015 ], "language": [ - 2016 + 2015 + ], + "last_read_news_at": [ + 2015 ], "last_sign_in_at": [ - 2016 + 2015 ], "name": [ - 2016 + 2015 + ], + "premier_rank": [ + 2015 + ], + "premier_rank_updated_at": [ + 2015 + ], + "presence_updated_at": [ + 2015 ], "profile_url": [ - 2016 + 2015 ], "role": [ - 2016 + 2015 + ], + "roster_image_url": [ + 2015 ], "status": [ - 2016 + 2015 + ], + "steam_bans_checked_at": [ + 2015 ], "steam_id": [ - 2016 + 2015 + ], + "vac_ban_count": [ + 2015 ], "__typename": [ - 75 + 74 ] }, "my_friends_min_fields": { "avatar_url": [ - 75 + 74 ], "country": [ - 75 + 74 ], "created_at": [ - 3467 + 3466 + ], + "custom_avatar_url": [ + 74 + ], + "days_since_last_ban": [ + 38 ], "discord_id": [ - 75 + 74 + ], + "faceit_elo": [ + 38 + ], + "faceit_nickname": [ + 74 + ], + "faceit_player_id": [ + 74 + ], + "faceit_skill_level": [ + 38 + ], + "faceit_updated_at": [ + 3466 + ], + "faceit_url": [ + 74 ], "friend_steam_id": [ - 174 + 173 + ], + "game_ban_count": [ + 38 ], "invited_by_steam_id": [ - 174 + 173 ], "language": [ - 75 + 74 + ], + "last_read_news_at": [ + 3466 ], "last_sign_in_at": [ - 3467 + 3466 ], "name": [ - 75 + 74 + ], + "premier_rank": [ + 38 + ], + "premier_rank_updated_at": [ + 3466 + ], + "presence_updated_at": [ + 3466 ], "profile_url": [ - 75 + 74 ], "role": [ - 75 + 74 + ], + "roster_image_url": [ + 74 ], "status": [ - 75 + 74 + ], + "steam_bans_checked_at": [ + 3466 ], "steam_id": [ - 174 + 173 + ], + "vac_ban_count": [ + 38 ], "__typename": [ - 75 + 74 ] }, "my_friends_min_order_by": { "avatar_url": [ - 2016 + 2015 ], "country": [ - 2016 + 2015 ], "created_at": [ - 2016 + 2015 + ], + "custom_avatar_url": [ + 2015 + ], + "days_since_last_ban": [ + 2015 ], "discord_id": [ - 2016 + 2015 + ], + "faceit_elo": [ + 2015 + ], + "faceit_nickname": [ + 2015 + ], + "faceit_player_id": [ + 2015 + ], + "faceit_skill_level": [ + 2015 + ], + "faceit_updated_at": [ + 2015 + ], + "faceit_url": [ + 2015 ], "friend_steam_id": [ - 2016 + 2015 + ], + "game_ban_count": [ + 2015 ], "invited_by_steam_id": [ - 2016 + 2015 ], "language": [ - 2016 + 2015 + ], + "last_read_news_at": [ + 2015 ], "last_sign_in_at": [ - 2016 + 2015 ], "name": [ - 2016 + 2015 + ], + "premier_rank": [ + 2015 + ], + "premier_rank_updated_at": [ + 2015 + ], + "presence_updated_at": [ + 2015 ], "profile_url": [ - 2016 + 2015 ], "role": [ - 2016 + 2015 + ], + "roster_image_url": [ + 2015 ], "status": [ - 2016 + 2015 + ], + "steam_bans_checked_at": [ + 2015 ], "steam_id": [ - 2016 + 2015 + ], + "vac_ban_count": [ + 2015 ], "__typename": [ - 75 + 74 ] }, "my_friends_mutation_response": { @@ -36809,71 +37229,131 @@ export default { 38 ], "returning": [ - 1891 + 1890 ], "__typename": [ - 75 + 74 ] }, "my_friends_order_by": { "avatar_url": [ - 2016 + 2015 ], "country": [ - 2016 + 2015 ], "created_at": [ - 2016 + 2015 + ], + "custom_avatar_url": [ + 2015 + ], + "days_since_last_ban": [ + 2015 ], "discord_id": [ - 2016 + 2015 ], "elo": [ - 2016 + 2015 + ], + "faceit_elo": [ + 2015 + ], + "faceit_nickname": [ + 2015 + ], + "faceit_player_id": [ + 2015 + ], + "faceit_skill_level": [ + 2015 + ], + "faceit_updated_at": [ + 2015 + ], + "faceit_url": [ + 2015 ], "friend_steam_id": [ - 2016 + 2015 + ], + "game_ban_count": [ + 2015 ], "invited_by_steam_id": [ - 2016 + 2015 ], "language": [ - 2016 + 2015 + ], + "last_presence_state": [ + 2015 + ], + "last_read_news_at": [ + 2015 ], "last_sign_in_at": [ - 2016 + 2015 ], "name": [ - 2016 + 2015 ], "name_registered": [ - 2016 + 2015 ], "player": [ - 2928 + 2927 + ], + "premier_rank": [ + 2015 + ], + "premier_rank_updated_at": [ + 2015 + ], + "presence_updated_at": [ + 2015 ], "profile_url": [ - 2016 + 2015 ], "role": [ - 2016 + 2015 + ], + "roster_image_url": [ + 2015 + ], + "show_match_ready_modal": [ + 2015 ], "status": [ - 2016 + 2015 + ], + "steam_bans_checked_at": [ + 2015 ], "steam_id": [ - 2016 + 2015 + ], + "vac_ban_count": [ + 2015 + ], + "vac_banned": [ + 2015 ], "__typename": [ - 75 + 74 ] }, "my_friends_prepend_input": { "elo": [ - 1240 + 1239 + ], + "last_presence_state": [ + 1239 ], "__typename": [ - 75 + 74 ] }, "my_friends_select_column": {}, @@ -36881,404 +37361,770 @@ export default { "my_friends_select_column_my_friends_aggregate_bool_exp_bool_or_arguments_columns": {}, "my_friends_set_input": { "avatar_url": [ - 75 + 74 ], "country": [ - 75 + 74 ], "created_at": [ - 3467 + 3466 + ], + "custom_avatar_url": [ + 74 + ], + "days_since_last_ban": [ + 38 ], "discord_id": [ - 75 + 74 ], "elo": [ - 1240 + 1239 + ], + "faceit_elo": [ + 38 + ], + "faceit_nickname": [ + 74 + ], + "faceit_player_id": [ + 74 + ], + "faceit_skill_level": [ + 38 + ], + "faceit_updated_at": [ + 3466 + ], + "faceit_url": [ + 74 ], "friend_steam_id": [ - 174 + 173 + ], + "game_ban_count": [ + 38 ], "invited_by_steam_id": [ - 174 + 173 ], "language": [ - 75 + 74 + ], + "last_presence_state": [ + 1239 + ], + "last_read_news_at": [ + 3466 ], "last_sign_in_at": [ - 3467 + 3466 ], "name": [ - 75 + 74 ], "name_registered": [ 3 ], + "premier_rank": [ + 38 + ], + "premier_rank_updated_at": [ + 3466 + ], + "presence_updated_at": [ + 3466 + ], "profile_url": [ - 75 + 74 ], "role": [ - 75 + 74 + ], + "roster_image_url": [ + 74 + ], + "show_match_ready_modal": [ + 3 ], "status": [ - 75 + 74 + ], + "steam_bans_checked_at": [ + 3466 ], "steam_id": [ - 174 + 173 + ], + "vac_ban_count": [ + 38 + ], + "vac_banned": [ + 3 ], "__typename": [ - 75 + 74 ] }, "my_friends_stddev_fields": { + "days_since_last_ban": [ + 29 + ], + "faceit_elo": [ + 29 + ], + "faceit_skill_level": [ + 29 + ], "friend_steam_id": [ 29 ], + "game_ban_count": [ + 29 + ], "invited_by_steam_id": [ 29 ], + "premier_rank": [ + 29 + ], "steam_id": [ 29 ], + "vac_ban_count": [ + 29 + ], "__typename": [ - 75 + 74 ] }, "my_friends_stddev_order_by": { + "days_since_last_ban": [ + 2015 + ], + "faceit_elo": [ + 2015 + ], + "faceit_skill_level": [ + 2015 + ], "friend_steam_id": [ - 2016 + 2015 + ], + "game_ban_count": [ + 2015 ], "invited_by_steam_id": [ - 2016 + 2015 + ], + "premier_rank": [ + 2015 ], "steam_id": [ - 2016 + 2015 + ], + "vac_ban_count": [ + 2015 ], "__typename": [ - 75 + 74 ] }, "my_friends_stddev_pop_fields": { + "days_since_last_ban": [ + 29 + ], + "faceit_elo": [ + 29 + ], + "faceit_skill_level": [ + 29 + ], "friend_steam_id": [ 29 ], + "game_ban_count": [ + 29 + ], "invited_by_steam_id": [ 29 ], + "premier_rank": [ + 29 + ], "steam_id": [ 29 ], + "vac_ban_count": [ + 29 + ], "__typename": [ - 75 + 74 ] }, "my_friends_stddev_pop_order_by": { + "days_since_last_ban": [ + 2015 + ], + "faceit_elo": [ + 2015 + ], + "faceit_skill_level": [ + 2015 + ], "friend_steam_id": [ - 2016 + 2015 + ], + "game_ban_count": [ + 2015 ], "invited_by_steam_id": [ - 2016 + 2015 + ], + "premier_rank": [ + 2015 ], "steam_id": [ - 2016 + 2015 + ], + "vac_ban_count": [ + 2015 ], "__typename": [ - 75 + 74 ] }, "my_friends_stddev_samp_fields": { + "days_since_last_ban": [ + 29 + ], + "faceit_elo": [ + 29 + ], + "faceit_skill_level": [ + 29 + ], "friend_steam_id": [ 29 ], + "game_ban_count": [ + 29 + ], "invited_by_steam_id": [ 29 ], + "premier_rank": [ + 29 + ], "steam_id": [ 29 ], + "vac_ban_count": [ + 29 + ], "__typename": [ - 75 + 74 ] }, "my_friends_stddev_samp_order_by": { + "days_since_last_ban": [ + 2015 + ], + "faceit_elo": [ + 2015 + ], + "faceit_skill_level": [ + 2015 + ], "friend_steam_id": [ - 2016 + 2015 + ], + "game_ban_count": [ + 2015 ], "invited_by_steam_id": [ - 2016 + 2015 + ], + "premier_rank": [ + 2015 ], "steam_id": [ - 2016 + 2015 + ], + "vac_ban_count": [ + 2015 ], "__typename": [ - 75 + 74 ] }, "my_friends_stream_cursor_input": { "initial_value": [ - 1927 + 1926 ], "ordering": [ - 229 + 228 ], "__typename": [ - 75 + 74 ] }, "my_friends_stream_cursor_value_input": { "avatar_url": [ - 75 + 74 ], "country": [ - 75 + 74 ], "created_at": [ - 3467 + 3466 + ], + "custom_avatar_url": [ + 74 + ], + "days_since_last_ban": [ + 38 ], "discord_id": [ - 75 + 74 ], "elo": [ - 1240 + 1239 + ], + "faceit_elo": [ + 38 + ], + "faceit_nickname": [ + 74 + ], + "faceit_player_id": [ + 74 + ], + "faceit_skill_level": [ + 38 + ], + "faceit_updated_at": [ + 3466 + ], + "faceit_url": [ + 74 ], "friend_steam_id": [ - 174 + 173 + ], + "game_ban_count": [ + 38 ], "invited_by_steam_id": [ - 174 + 173 ], "language": [ - 75 + 74 + ], + "last_presence_state": [ + 1239 + ], + "last_read_news_at": [ + 3466 ], "last_sign_in_at": [ - 3467 + 3466 ], "name": [ - 75 + 74 ], "name_registered": [ 3 ], + "premier_rank": [ + 38 + ], + "premier_rank_updated_at": [ + 3466 + ], + "presence_updated_at": [ + 3466 + ], "profile_url": [ - 75 + 74 ], "role": [ - 75 + 74 + ], + "roster_image_url": [ + 74 + ], + "show_match_ready_modal": [ + 3 ], "status": [ - 75 + 74 + ], + "steam_bans_checked_at": [ + 3466 ], "steam_id": [ - 174 + 173 + ], + "vac_ban_count": [ + 38 + ], + "vac_banned": [ + 3 ], "__typename": [ - 75 + 74 ] }, "my_friends_sum_fields": { + "days_since_last_ban": [ + 38 + ], + "faceit_elo": [ + 38 + ], + "faceit_skill_level": [ + 38 + ], "friend_steam_id": [ - 174 + 173 + ], + "game_ban_count": [ + 38 ], "invited_by_steam_id": [ - 174 + 173 + ], + "premier_rank": [ + 38 ], "steam_id": [ - 174 + 173 + ], + "vac_ban_count": [ + 38 ], "__typename": [ - 75 + 74 ] }, "my_friends_sum_order_by": { + "days_since_last_ban": [ + 2015 + ], + "faceit_elo": [ + 2015 + ], + "faceit_skill_level": [ + 2015 + ], "friend_steam_id": [ - 2016 + 2015 + ], + "game_ban_count": [ + 2015 ], "invited_by_steam_id": [ - 2016 + 2015 + ], + "premier_rank": [ + 2015 ], "steam_id": [ - 2016 + 2015 + ], + "vac_ban_count": [ + 2015 ], "__typename": [ - 75 + 74 ] }, "my_friends_updates": { "_append": [ - 1899 + 1898 ], "_delete_at_path": [ - 1904 + 1903 ], "_delete_elem": [ - 1905 + 1904 ], "_delete_key": [ - 1906 + 1905 ], "_inc": [ - 1907 + 1906 ], "_prepend": [ - 1915 + 1914 ], "_set": [ - 1919 + 1918 ], "where": [ - 1903 + 1902 ], "__typename": [ - 75 + 74 ] }, "my_friends_var_pop_fields": { + "days_since_last_ban": [ + 29 + ], + "faceit_elo": [ + 29 + ], + "faceit_skill_level": [ + 29 + ], "friend_steam_id": [ 29 ], + "game_ban_count": [ + 29 + ], "invited_by_steam_id": [ 29 ], + "premier_rank": [ + 29 + ], "steam_id": [ 29 ], + "vac_ban_count": [ + 29 + ], "__typename": [ - 75 + 74 ] }, "my_friends_var_pop_order_by": { + "days_since_last_ban": [ + 2015 + ], + "faceit_elo": [ + 2015 + ], + "faceit_skill_level": [ + 2015 + ], "friend_steam_id": [ - 2016 + 2015 + ], + "game_ban_count": [ + 2015 ], "invited_by_steam_id": [ - 2016 + 2015 + ], + "premier_rank": [ + 2015 ], "steam_id": [ - 2016 + 2015 + ], + "vac_ban_count": [ + 2015 ], "__typename": [ - 75 + 74 ] }, "my_friends_var_samp_fields": { + "days_since_last_ban": [ + 29 + ], + "faceit_elo": [ + 29 + ], + "faceit_skill_level": [ + 29 + ], "friend_steam_id": [ 29 ], + "game_ban_count": [ + 29 + ], "invited_by_steam_id": [ 29 ], + "premier_rank": [ + 29 + ], "steam_id": [ 29 ], + "vac_ban_count": [ + 29 + ], "__typename": [ - 75 + 74 ] }, "my_friends_var_samp_order_by": { + "days_since_last_ban": [ + 2015 + ], + "faceit_elo": [ + 2015 + ], + "faceit_skill_level": [ + 2015 + ], "friend_steam_id": [ - 2016 + 2015 + ], + "game_ban_count": [ + 2015 ], "invited_by_steam_id": [ - 2016 + 2015 + ], + "premier_rank": [ + 2015 ], "steam_id": [ - 2016 + 2015 + ], + "vac_ban_count": [ + 2015 ], "__typename": [ - 75 + 74 ] }, "my_friends_variance_fields": { + "days_since_last_ban": [ + 29 + ], + "faceit_elo": [ + 29 + ], + "faceit_skill_level": [ + 29 + ], "friend_steam_id": [ 29 ], + "game_ban_count": [ + 29 + ], "invited_by_steam_id": [ 29 ], + "premier_rank": [ + 29 + ], "steam_id": [ 29 ], + "vac_ban_count": [ + 29 + ], "__typename": [ - 75 + 74 ] }, "my_friends_variance_order_by": { + "days_since_last_ban": [ + 2015 + ], + "faceit_elo": [ + 2015 + ], + "faceit_skill_level": [ + 2015 + ], "friend_steam_id": [ - 2016 + 2015 + ], + "game_ban_count": [ + 2015 ], "invited_by_steam_id": [ - 2016 + 2015 + ], + "premier_rank": [ + 2015 ], "steam_id": [ - 2016 + 2015 + ], + "vac_ban_count": [ + 2015 ], "__typename": [ - 75 + 74 ] }, "news_articles": { "author": [ - 2915 + 2914 ], "author_steam_id": [ - 174 + 173 ], "content_markdown": [ - 75 + 74 ], "cover_image_url": [ - 75 + 74 ], "created_at": [ - 3467 + 3466 ], "id": [ - 3864 + 3863 ], "published_at": [ - 3467 + 3466 ], "slug": [ - 75 + 74 ], "status": [ - 75 + 74 ], "teaser": [ - 75 + 74 ], "title": [ - 75 + 74 ], "updated_at": [ - 3467 + 3466 ], "view_count": [ - 174 + 173 ], "__typename": [ - 75 + 74 ] }, "news_articles_aggregate": { "aggregate": [ - 1939 + 1938 ], "nodes": [ - 1937 + 1936 ], "__typename": [ - 75 + 74 ] }, "news_articles_aggregate_fields": { "avg": [ - 1940 + 1939 ], "count": [ 38, { "columns": [ - 1951, + 1950, "[news_articles_select_column!]" ], "distinct": [ @@ -37287,34 +38133,34 @@ export default { } ], "max": [ - 1945 + 1944 ], "min": [ - 1946 + 1945 ], "stddev": [ - 1953 + 1952 ], "stddev_pop": [ - 1954 + 1953 ], "stddev_samp": [ - 1955 + 1954 ], "sum": [ - 1958 + 1957 ], "var_pop": [ - 1961 + 1960 ], "var_samp": [ - 1962 + 1961 ], "variance": [ - 1963 + 1962 ], "__typename": [ - 75 + 74 ] }, "news_articles_avg_fields": { @@ -37325,198 +38171,198 @@ export default { 29 ], "__typename": [ - 75 + 74 ] }, "news_articles_bool_exp": { "_and": [ - 1941 + 1940 ], "_not": [ - 1941 + 1940 ], "_or": [ - 1941 + 1940 ], "author": [ - 2919 + 2918 ], "author_steam_id": [ - 176 + 175 ], "content_markdown": [ - 77 + 76 ], "cover_image_url": [ - 77 + 76 ], "created_at": [ - 3468 + 3467 ], "id": [ - 3866 + 3865 ], "published_at": [ - 3468 + 3467 ], "slug": [ - 77 + 76 ], "status": [ - 77 + 76 ], "teaser": [ - 77 + 76 ], "title": [ - 77 + 76 ], "updated_at": [ - 3468 + 3467 ], "view_count": [ - 176 + 175 ], "__typename": [ - 75 + 74 ] }, "news_articles_constraint": {}, "news_articles_inc_input": { "author_steam_id": [ - 174 + 173 ], "view_count": [ - 174 + 173 ], "__typename": [ - 75 + 74 ] }, "news_articles_insert_input": { "author": [ - 2926 + 2925 ], "author_steam_id": [ - 174 + 173 ], "content_markdown": [ - 75 + 74 ], "cover_image_url": [ - 75 + 74 ], "created_at": [ - 3467 + 3466 ], "id": [ - 3864 + 3863 ], "published_at": [ - 3467 + 3466 ], "slug": [ - 75 + 74 ], "status": [ - 75 + 74 ], "teaser": [ - 75 + 74 ], "title": [ - 75 + 74 ], "updated_at": [ - 3467 + 3466 ], "view_count": [ - 174 + 173 ], "__typename": [ - 75 + 74 ] }, "news_articles_max_fields": { "author_steam_id": [ - 174 + 173 ], "content_markdown": [ - 75 + 74 ], "cover_image_url": [ - 75 + 74 ], "created_at": [ - 3467 + 3466 ], "id": [ - 3864 + 3863 ], "published_at": [ - 3467 + 3466 ], "slug": [ - 75 + 74 ], "status": [ - 75 + 74 ], "teaser": [ - 75 + 74 ], "title": [ - 75 + 74 ], "updated_at": [ - 3467 + 3466 ], "view_count": [ - 174 + 173 ], "__typename": [ - 75 + 74 ] }, "news_articles_min_fields": { "author_steam_id": [ - 174 + 173 ], "content_markdown": [ - 75 + 74 ], "cover_image_url": [ - 75 + 74 ], "created_at": [ - 3467 + 3466 ], "id": [ - 3864 + 3863 ], "published_at": [ - 3467 + 3466 ], "slug": [ - 75 + 74 ], "status": [ - 75 + 74 ], "teaser": [ - 75 + 74 ], "title": [ - 75 + 74 ], "updated_at": [ - 3467 + 3466 ], "view_count": [ - 174 + 173 ], "__typename": [ - 75 + 74 ] }, "news_articles_mutation_response": { @@ -37524,118 +38370,118 @@ export default { 38 ], "returning": [ - 1937 + 1936 ], "__typename": [ - 75 + 74 ] }, "news_articles_on_conflict": { "constraint": [ - 1942 + 1941 ], "update_columns": [ - 1959 + 1958 ], "where": [ - 1941 + 1940 ], "__typename": [ - 75 + 74 ] }, "news_articles_order_by": { "author": [ - 2928 + 2927 ], "author_steam_id": [ - 2016 + 2015 ], "content_markdown": [ - 2016 + 2015 ], "cover_image_url": [ - 2016 + 2015 ], "created_at": [ - 2016 + 2015 ], "id": [ - 2016 + 2015 ], "published_at": [ - 2016 + 2015 ], "slug": [ - 2016 + 2015 ], "status": [ - 2016 + 2015 ], "teaser": [ - 2016 + 2015 ], "title": [ - 2016 + 2015 ], "updated_at": [ - 2016 + 2015 ], "view_count": [ - 2016 + 2015 ], "__typename": [ - 75 + 74 ] }, "news_articles_pk_columns_input": { "id": [ - 3864 + 3863 ], "__typename": [ - 75 + 74 ] }, "news_articles_select_column": {}, "news_articles_set_input": { "author_steam_id": [ - 174 + 173 ], "content_markdown": [ - 75 + 74 ], "cover_image_url": [ - 75 + 74 ], "created_at": [ - 3467 + 3466 ], "id": [ - 3864 + 3863 ], "published_at": [ - 3467 + 3466 ], "slug": [ - 75 + 74 ], "status": [ - 75 + 74 ], "teaser": [ - 75 + 74 ], "title": [ - 75 + 74 ], "updated_at": [ - 3467 + 3466 ], "view_count": [ - 174 + 173 ], "__typename": [ - 75 + 74 ] }, "news_articles_stddev_fields": { @@ -37646,7 +38492,7 @@ export default { 29 ], "__typename": [ - 75 + 74 ] }, "news_articles_stddev_pop_fields": { @@ -37657,7 +38503,7 @@ export default { 29 ], "__typename": [ - 75 + 74 ] }, "news_articles_stddev_samp_fields": { @@ -37668,85 +38514,85 @@ export default { 29 ], "__typename": [ - 75 + 74 ] }, "news_articles_stream_cursor_input": { "initial_value": [ - 1957 + 1956 ], "ordering": [ - 229 + 228 ], "__typename": [ - 75 + 74 ] }, "news_articles_stream_cursor_value_input": { "author_steam_id": [ - 174 + 173 ], "content_markdown": [ - 75 + 74 ], "cover_image_url": [ - 75 + 74 ], "created_at": [ - 3467 + 3466 ], "id": [ - 3864 + 3863 ], "published_at": [ - 3467 + 3466 ], "slug": [ - 75 + 74 ], "status": [ - 75 + 74 ], "teaser": [ - 75 + 74 ], "title": [ - 75 + 74 ], "updated_at": [ - 3467 + 3466 ], "view_count": [ - 174 + 173 ], "__typename": [ - 75 + 74 ] }, "news_articles_sum_fields": { "author_steam_id": [ - 174 + 173 ], "view_count": [ - 174 + 173 ], "__typename": [ - 75 + 74 ] }, "news_articles_update_column": {}, "news_articles_updates": { "_inc": [ - 1943 + 1942 ], "_set": [ - 1952 + 1951 ], "where": [ - 1941 + 1940 ], "__typename": [ - 75 + 74 ] }, "news_articles_var_pop_fields": { @@ -37757,7 +38603,7 @@ export default { 29 ], "__typename": [ - 75 + 74 ] }, "news_articles_var_samp_fields": { @@ -37768,7 +38614,7 @@ export default { 29 ], "__typename": [ - 75 + 74 ] }, "news_articles_variance_fields": { @@ -37779,143 +38625,143 @@ export default { 29 ], "__typename": [ - 75 + 74 ] }, "notifications": { "actions": [ - 1240, + 1239, { "path": [ - 75 + 74 ] } ], "created_at": [ - 3467 + 3466 ], "deletable": [ 3 ], "deleted_at": [ - 3467 + 3466 ], "entity_id": [ - 75 + 74 ], "id": [ - 3864 + 3863 ], "is_read": [ 3 ], "message": [ - 75 + 74 ], "player": [ - 2915 + 2914 ], "role": [ - 790 + 789 ], "steam_id": [ - 174 + 173 ], "title": [ - 75 + 74 ], "type": [ - 750 + 749 ], "__typename": [ - 75 + 74 ] }, "notifications_aggregate": { "aggregate": [ - 1970 + 1969 ], "nodes": [ - 1964 + 1963 ], "__typename": [ - 75 + 74 ] }, "notifications_aggregate_bool_exp": { "bool_and": [ - 1967 + 1966 ], "bool_or": [ - 1968 + 1967 ], "count": [ - 1969 + 1968 ], "__typename": [ - 75 + 74 ] }, "notifications_aggregate_bool_exp_bool_and": { "arguments": [ - 1993 + 1992 ], "distinct": [ 3 ], "filter": [ - 1976 + 1975 ], "predicate": [ 4 ], "__typename": [ - 75 + 74 ] }, "notifications_aggregate_bool_exp_bool_or": { "arguments": [ - 1994 + 1993 ], "distinct": [ 3 ], "filter": [ - 1976 + 1975 ], "predicate": [ 4 ], "__typename": [ - 75 + 74 ] }, "notifications_aggregate_bool_exp_count": { "arguments": [ - 1992 + 1991 ], "distinct": [ 3 ], "filter": [ - 1976 + 1975 ], "predicate": [ 39 ], "__typename": [ - 75 + 74 ] }, "notifications_aggregate_fields": { "avg": [ - 1974 + 1973 ], "count": [ 38, { "columns": [ - 1992, + 1991, "[notifications_select_column!]" ], "distinct": [ @@ -37924,91 +38770,91 @@ export default { } ], "max": [ - 1983 + 1982 ], "min": [ - 1985 + 1984 ], "stddev": [ - 1996 + 1995 ], "stddev_pop": [ - 1998 + 1997 ], "stddev_samp": [ - 2000 + 1999 ], "sum": [ - 2004 + 2003 ], "var_pop": [ - 2008 + 2007 ], "var_samp": [ - 2010 + 2009 ], "variance": [ - 2012 + 2011 ], "__typename": [ - 75 + 74 ] }, "notifications_aggregate_order_by": { "avg": [ - 1975 + 1974 ], "count": [ - 2016 + 2015 ], "max": [ - 1984 + 1983 ], "min": [ - 1986 + 1985 ], "stddev": [ - 1997 + 1996 ], "stddev_pop": [ - 1999 + 1998 ], "stddev_samp": [ - 2001 + 2000 ], "sum": [ - 2005 + 2004 ], "var_pop": [ - 2009 + 2008 ], "var_samp": [ - 2011 + 2010 ], "variance": [ - 2013 + 2012 ], "__typename": [ - 75 + 74 ] }, "notifications_append_input": { "actions": [ - 1240 + 1239 ], "__typename": [ - 75 + 74 ] }, "notifications_arr_rel_insert_input": { "data": [ - 1982 + 1981 ], "on_conflict": [ - 1988 + 1987 ], "__typename": [ - 75 + 74 ] }, "notifications_avg_fields": { @@ -38016,77 +38862,77 @@ export default { 29 ], "__typename": [ - 75 + 74 ] }, "notifications_avg_order_by": { "steam_id": [ - 2016 + 2015 ], "__typename": [ - 75 + 74 ] }, "notifications_bool_exp": { "_and": [ - 1976 + 1975 ], "_not": [ - 1976 + 1975 ], "_or": [ - 1976 + 1975 ], "actions": [ - 1242 + 1241 ], "created_at": [ - 3468 + 3467 ], "deletable": [ 4 ], "deleted_at": [ - 3468 + 3467 ], "entity_id": [ - 77 + 76 ], "id": [ - 3866 + 3865 ], "is_read": [ 4 ], "message": [ - 77 + 76 ], "player": [ - 2919 + 2918 ], "role": [ - 791 + 790 ], "steam_id": [ - 176 + 175 ], "title": [ - 77 + 76 ], "type": [ - 751 + 750 ], "__typename": [ - 75 + 74 ] }, "notifications_constraint": {}, "notifications_delete_at_path_input": { "actions": [ - 75 + 74 ], "__typename": [ - 75 + 74 ] }, "notifications_delete_elem_input": { @@ -38094,171 +38940,171 @@ export default { 38 ], "__typename": [ - 75 + 74 ] }, "notifications_delete_key_input": { "actions": [ - 75 + 74 ], "__typename": [ - 75 + 74 ] }, "notifications_inc_input": { "steam_id": [ - 174 + 173 ], "__typename": [ - 75 + 74 ] }, "notifications_insert_input": { "actions": [ - 1240 + 1239 ], "created_at": [ - 3467 + 3466 ], "deletable": [ 3 ], "deleted_at": [ - 3467 + 3466 ], "entity_id": [ - 75 + 74 ], "id": [ - 3864 + 3863 ], "is_read": [ 3 ], "message": [ - 75 + 74 ], "player": [ - 2926 + 2925 ], "role": [ - 790 + 789 ], "steam_id": [ - 174 + 173 ], "title": [ - 75 + 74 ], "type": [ - 750 + 749 ], "__typename": [ - 75 + 74 ] }, "notifications_max_fields": { "created_at": [ - 3467 + 3466 ], "deleted_at": [ - 3467 + 3466 ], "entity_id": [ - 75 + 74 ], "id": [ - 3864 + 3863 ], "message": [ - 75 + 74 ], "steam_id": [ - 174 + 173 ], "title": [ - 75 + 74 ], "__typename": [ - 75 + 74 ] }, "notifications_max_order_by": { "created_at": [ - 2016 + 2015 ], "deleted_at": [ - 2016 + 2015 ], "entity_id": [ - 2016 + 2015 ], "id": [ - 2016 + 2015 ], "message": [ - 2016 + 2015 ], "steam_id": [ - 2016 + 2015 ], "title": [ - 2016 + 2015 ], "__typename": [ - 75 + 74 ] }, "notifications_min_fields": { "created_at": [ - 3467 + 3466 ], "deleted_at": [ - 3467 + 3466 ], "entity_id": [ - 75 + 74 ], "id": [ - 3864 + 3863 ], "message": [ - 75 + 74 ], "steam_id": [ - 174 + 173 ], "title": [ - 75 + 74 ], "__typename": [ - 75 + 74 ] }, "notifications_min_order_by": { "created_at": [ - 2016 + 2015 ], "deleted_at": [ - 2016 + 2015 ], "entity_id": [ - 2016 + 2015 ], "id": [ - 2016 + 2015 ], "message": [ - 2016 + 2015 ], "steam_id": [ - 2016 + 2015 ], "title": [ - 2016 + 2015 ], "__typename": [ - 75 + 74 ] }, "notifications_mutation_response": { @@ -38266,84 +39112,84 @@ export default { 38 ], "returning": [ - 1964 + 1963 ], "__typename": [ - 75 + 74 ] }, "notifications_on_conflict": { "constraint": [ - 1977 + 1976 ], "update_columns": [ - 2006 + 2005 ], "where": [ - 1976 + 1975 ], "__typename": [ - 75 + 74 ] }, "notifications_order_by": { "actions": [ - 2016 + 2015 ], "created_at": [ - 2016 + 2015 ], "deletable": [ - 2016 + 2015 ], "deleted_at": [ - 2016 + 2015 ], "entity_id": [ - 2016 + 2015 ], "id": [ - 2016 + 2015 ], "is_read": [ - 2016 + 2015 ], "message": [ - 2016 + 2015 ], "player": [ - 2928 + 2927 ], "role": [ - 2016 + 2015 ], "steam_id": [ - 2016 + 2015 ], "title": [ - 2016 + 2015 ], "type": [ - 2016 + 2015 ], "__typename": [ - 75 + 74 ] }, "notifications_pk_columns_input": { "id": [ - 3864 + 3863 ], "__typename": [ - 75 + 74 ] }, "notifications_prepend_input": { "actions": [ - 1240 + 1239 ], "__typename": [ - 75 + 74 ] }, "notifications_select_column": {}, @@ -38351,43 +39197,43 @@ export default { "notifications_select_column_notifications_aggregate_bool_exp_bool_or_arguments_columns": {}, "notifications_set_input": { "actions": [ - 1240 + 1239 ], "created_at": [ - 3467 + 3466 ], "deletable": [ 3 ], "deleted_at": [ - 3467 + 3466 ], "entity_id": [ - 75 + 74 ], "id": [ - 3864 + 3863 ], "is_read": [ 3 ], "message": [ - 75 + 74 ], "role": [ - 790 + 789 ], "steam_id": [ - 174 + 173 ], "title": [ - 75 + 74 ], "type": [ - 750 + 749 ], "__typename": [ - 75 + 74 ] }, "notifications_stddev_fields": { @@ -38395,15 +39241,15 @@ export default { 29 ], "__typename": [ - 75 + 74 ] }, "notifications_stddev_order_by": { "steam_id": [ - 2016 + 2015 ], "__typename": [ - 75 + 74 ] }, "notifications_stddev_pop_fields": { @@ -38411,15 +39257,15 @@ export default { 29 ], "__typename": [ - 75 + 74 ] }, "notifications_stddev_pop_order_by": { "steam_id": [ - 2016 + 2015 ], "__typename": [ - 75 + 74 ] }, "notifications_stddev_samp_fields": { @@ -38427,113 +39273,113 @@ export default { 29 ], "__typename": [ - 75 + 74 ] }, "notifications_stddev_samp_order_by": { "steam_id": [ - 2016 + 2015 ], "__typename": [ - 75 + 74 ] }, "notifications_stream_cursor_input": { "initial_value": [ - 2003 + 2002 ], "ordering": [ - 229 + 228 ], "__typename": [ - 75 + 74 ] }, "notifications_stream_cursor_value_input": { "actions": [ - 1240 + 1239 ], "created_at": [ - 3467 + 3466 ], "deletable": [ 3 ], "deleted_at": [ - 3467 + 3466 ], "entity_id": [ - 75 + 74 ], "id": [ - 3864 + 3863 ], "is_read": [ 3 ], "message": [ - 75 + 74 ], "role": [ - 790 + 789 ], "steam_id": [ - 174 + 173 ], "title": [ - 75 + 74 ], "type": [ - 750 + 749 ], "__typename": [ - 75 + 74 ] }, "notifications_sum_fields": { "steam_id": [ - 174 + 173 ], "__typename": [ - 75 + 74 ] }, "notifications_sum_order_by": { "steam_id": [ - 2016 + 2015 ], "__typename": [ - 75 + 74 ] }, "notifications_update_column": {}, "notifications_updates": { "_append": [ - 1972 + 1971 ], "_delete_at_path": [ - 1978 + 1977 ], "_delete_elem": [ - 1979 + 1978 ], "_delete_key": [ - 1980 + 1979 ], "_inc": [ - 1981 + 1980 ], "_prepend": [ - 1991 + 1990 ], "_set": [ - 1995 + 1994 ], "where": [ - 1976 + 1975 ], "__typename": [ - 75 + 74 ] }, "notifications_var_pop_fields": { @@ -38541,15 +39387,15 @@ export default { 29 ], "__typename": [ - 75 + 74 ] }, "notifications_var_pop_order_by": { "steam_id": [ - 2016 + 2015 ], "__typename": [ - 75 + 74 ] }, "notifications_var_samp_fields": { @@ -38557,15 +39403,15 @@ export default { 29 ], "__typename": [ - 75 + 74 ] }, "notifications_var_samp_order_by": { "steam_id": [ - 2016 + 2015 ], "__typename": [ - 75 + 74 ] }, "notifications_variance_fields": { @@ -38573,116 +39419,116 @@ export default { 29 ], "__typename": [ - 75 + 74 ] }, "notifications_variance_order_by": { "steam_id": [ - 2016 + 2015 ], "__typename": [ - 75 + 74 ] }, "numeric": {}, "numeric_comparison_exp": { "_eq": [ - 2014 + 2013 ], "_gt": [ - 2014 + 2013 ], "_gte": [ - 2014 + 2013 ], "_in": [ - 2014 + 2013 ], "_is_null": [ 3 ], "_lt": [ - 2014 + 2013 ], "_lte": [ - 2014 + 2013 ], "_neq": [ - 2014 + 2013 ], "_nin": [ - 2014 + 2013 ], "__typename": [ - 75 + 74 ] }, "order_by": {}, "pending_match_import_players": { "created_at": [ - 3467 + 3466 ], "pending_match_import": [ - 2058 + 2057 ], "player": [ - 2915 + 2914 ], "steam_id": [ - 174 + 173 ], "valve_match_id": [ - 2014 + 2013 ], "__typename": [ - 75 + 74 ] }, "pending_match_import_players_aggregate": { "aggregate": [ - 2021 + 2020 ], "nodes": [ - 2017 + 2016 ], "__typename": [ - 75 + 74 ] }, "pending_match_import_players_aggregate_bool_exp": { "count": [ - 2020 + 2019 ], "__typename": [ - 75 + 74 ] }, "pending_match_import_players_aggregate_bool_exp_count": { "arguments": [ - 2038 + 2037 ], "distinct": [ 3 ], "filter": [ - 2026 + 2025 ], "predicate": [ 39 ], "__typename": [ - 75 + 74 ] }, "pending_match_import_players_aggregate_fields": { "avg": [ - 2024 + 2023 ], "count": [ 38, { "columns": [ - 2038, + 2037, "[pending_match_import_players_select_column!]" ], "distinct": [ @@ -38690,6 +39536,44 @@ export default { ] } ], + "max": [ + 2029 + ], + "min": [ + 2031 + ], + "stddev": [ + 2039 + ], + "stddev_pop": [ + 2041 + ], + "stddev_samp": [ + 2043 + ], + "sum": [ + 2047 + ], + "var_pop": [ + 2051 + ], + "var_samp": [ + 2053 + ], + "variance": [ + 2055 + ], + "__typename": [ + 74 + ] + }, + "pending_match_import_players_aggregate_order_by": { + "avg": [ + 2024 + ], + "count": [ + 2015 + ], "max": [ 2030 ], @@ -38718,56 +39602,18 @@ export default { 2056 ], "__typename": [ - 75 - ] - }, - "pending_match_import_players_aggregate_order_by": { - "avg": [ - 2025 - ], - "count": [ - 2016 - ], - "max": [ - 2031 - ], - "min": [ - 2033 - ], - "stddev": [ - 2041 - ], - "stddev_pop": [ - 2043 - ], - "stddev_samp": [ - 2045 - ], - "sum": [ - 2049 - ], - "var_pop": [ - 2053 - ], - "var_samp": [ - 2055 - ], - "variance": [ - 2057 - ], - "__typename": [ - 75 + 74 ] }, "pending_match_import_players_arr_rel_insert_input": { "data": [ - 2029 + 2028 ], "on_conflict": [ - 2035 + 2034 ], "__typename": [ - 75 + 74 ] }, "pending_match_import_players_avg_fields": { @@ -38778,135 +39624,135 @@ export default { 29 ], "__typename": [ - 75 + 74 ] }, "pending_match_import_players_avg_order_by": { "steam_id": [ - 2016 + 2015 ], "valve_match_id": [ - 2016 + 2015 ], "__typename": [ - 75 + 74 ] }, "pending_match_import_players_bool_exp": { "_and": [ - 2026 + 2025 ], "_not": [ - 2026 + 2025 ], "_or": [ - 2026 + 2025 ], "created_at": [ - 3468 + 3467 ], "pending_match_import": [ - 2062 + 2061 ], "player": [ - 2919 + 2918 ], "steam_id": [ - 176 + 175 ], "valve_match_id": [ - 2015 + 2014 ], "__typename": [ - 75 + 74 ] }, "pending_match_import_players_constraint": {}, "pending_match_import_players_inc_input": { "steam_id": [ - 174 + 173 ], "valve_match_id": [ - 2014 + 2013 ], "__typename": [ - 75 + 74 ] }, "pending_match_import_players_insert_input": { "created_at": [ - 3467 + 3466 ], "pending_match_import": [ - 2069 + 2068 ], "player": [ - 2926 + 2925 ], "steam_id": [ - 174 + 173 ], "valve_match_id": [ - 2014 + 2013 ], "__typename": [ - 75 + 74 ] }, "pending_match_import_players_max_fields": { "created_at": [ - 3467 + 3466 ], "steam_id": [ - 174 + 173 ], "valve_match_id": [ - 2014 + 2013 ], "__typename": [ - 75 + 74 ] }, "pending_match_import_players_max_order_by": { "created_at": [ - 2016 + 2015 ], "steam_id": [ - 2016 + 2015 ], "valve_match_id": [ - 2016 + 2015 ], "__typename": [ - 75 + 74 ] }, "pending_match_import_players_min_fields": { "created_at": [ - 3467 + 3466 ], "steam_id": [ - 174 + 173 ], "valve_match_id": [ - 2014 + 2013 ], "__typename": [ - 75 + 74 ] }, "pending_match_import_players_min_order_by": { "created_at": [ - 2016 + 2015 ], "steam_id": [ - 2016 + 2015 ], "valve_match_id": [ - 2016 + 2015 ], "__typename": [ - 75 + 74 ] }, "pending_match_import_players_mutation_response": { @@ -38914,70 +39760,70 @@ export default { 38 ], "returning": [ - 2017 + 2016 ], "__typename": [ - 75 + 74 ] }, "pending_match_import_players_on_conflict": { "constraint": [ - 2027 + 2026 ], "update_columns": [ - 2050 + 2049 ], "where": [ - 2026 + 2025 ], "__typename": [ - 75 + 74 ] }, "pending_match_import_players_order_by": { "created_at": [ - 2016 + 2015 ], "pending_match_import": [ - 2071 + 2070 ], "player": [ - 2928 + 2927 ], "steam_id": [ - 2016 + 2015 ], "valve_match_id": [ - 2016 + 2015 ], "__typename": [ - 75 + 74 ] }, "pending_match_import_players_pk_columns_input": { "steam_id": [ - 174 + 173 ], "valve_match_id": [ - 2014 + 2013 ], "__typename": [ - 75 + 74 ] }, "pending_match_import_players_select_column": {}, "pending_match_import_players_set_input": { "created_at": [ - 3467 + 3466 ], "steam_id": [ - 174 + 173 ], "valve_match_id": [ - 2014 + 2013 ], "__typename": [ - 75 + 74 ] }, "pending_match_import_players_stddev_fields": { @@ -38988,18 +39834,18 @@ export default { 29 ], "__typename": [ - 75 + 74 ] }, "pending_match_import_players_stddev_order_by": { "steam_id": [ - 2016 + 2015 ], "valve_match_id": [ - 2016 + 2015 ], "__typename": [ - 75 + 74 ] }, "pending_match_import_players_stddev_pop_fields": { @@ -39010,18 +39856,18 @@ export default { 29 ], "__typename": [ - 75 + 74 ] }, "pending_match_import_players_stddev_pop_order_by": { "steam_id": [ - 2016 + 2015 ], "valve_match_id": [ - 2016 + 2015 ], "__typename": [ - 75 + 74 ] }, "pending_match_import_players_stddev_samp_fields": { @@ -39032,80 +39878,80 @@ export default { 29 ], "__typename": [ - 75 + 74 ] }, "pending_match_import_players_stddev_samp_order_by": { "steam_id": [ - 2016 + 2015 ], "valve_match_id": [ - 2016 + 2015 ], "__typename": [ - 75 + 74 ] }, "pending_match_import_players_stream_cursor_input": { "initial_value": [ - 2047 + 2046 ], "ordering": [ - 229 + 228 ], "__typename": [ - 75 + 74 ] }, "pending_match_import_players_stream_cursor_value_input": { "created_at": [ - 3467 + 3466 ], "steam_id": [ - 174 + 173 ], "valve_match_id": [ - 2014 + 2013 ], "__typename": [ - 75 + 74 ] }, "pending_match_import_players_sum_fields": { "steam_id": [ - 174 + 173 ], "valve_match_id": [ - 2014 + 2013 ], "__typename": [ - 75 + 74 ] }, "pending_match_import_players_sum_order_by": { "steam_id": [ - 2016 + 2015 ], "valve_match_id": [ - 2016 + 2015 ], "__typename": [ - 75 + 74 ] }, "pending_match_import_players_update_column": {}, "pending_match_import_players_updates": { "_inc": [ - 2028 + 2027 ], "_set": [ - 2039 + 2038 ], "where": [ - 2026 + 2025 ], "__typename": [ - 75 + 74 ] }, "pending_match_import_players_var_pop_fields": { @@ -39116,18 +39962,18 @@ export default { 29 ], "__typename": [ - 75 + 74 ] }, "pending_match_import_players_var_pop_order_by": { "steam_id": [ - 2016 + 2015 ], "valve_match_id": [ - 2016 + 2015 ], "__typename": [ - 75 + 74 ] }, "pending_match_import_players_var_samp_fields": { @@ -39138,18 +39984,18 @@ export default { 29 ], "__typename": [ - 75 + 74 ] }, "pending_match_import_players_var_samp_order_by": { "steam_id": [ - 2016 + 2015 ], "valve_match_id": [ - 2016 + 2015 ], "__typename": [ - 75 + 74 ] }, "pending_match_import_players_variance_fields": { @@ -39160,41 +40006,41 @@ export default { 29 ], "__typename": [ - 75 + 74 ] }, "pending_match_import_players_variance_order_by": { "steam_id": [ - 2016 + 2015 ], "valve_match_id": [ - 2016 + 2015 ], "__typename": [ - 75 + 74 ] }, "pending_match_imports": { "created_at": [ - 3467 + 3466 ], "demo_url": [ - 75 + 74 ], "error": [ - 75 + 74 ], "map_name": [ - 75 + 74 ], "match_start_time": [ - 3467 + 3466 ], "players": [ - 2017, + 2016, { "distinct_on": [ - 2038, + 2037, "[pending_match_import_players_select_column!]" ], "limit": [ @@ -39204,19 +40050,19 @@ export default { 38 ], "order_by": [ - 2036, + 2035, "[pending_match_import_players_order_by!]" ], "where": [ - 2026 + 2025 ] } ], "players_aggregate": [ - 2018, + 2017, { "distinct_on": [ - 2038, + 2037, "[pending_match_import_players_select_column!]" ], "limit": [ @@ -39226,50 +40072,50 @@ export default { 38 ], "order_by": [ - 2036, + 2035, "[pending_match_import_players_order_by!]" ], "where": [ - 2026 + 2025 ] } ], "share_code": [ - 75 + 74 ], "status": [ - 75 + 74 ], "updated_at": [ - 3467 + 3466 ], "valve_match_id": [ - 2014 + 2013 ], "__typename": [ - 75 + 74 ] }, "pending_match_imports_aggregate": { "aggregate": [ - 2060 + 2059 ], "nodes": [ - 2058 + 2057 ], "__typename": [ - 75 + 74 ] }, "pending_match_imports_aggregate_fields": { "avg": [ - 2061 + 2060 ], "count": [ 38, { "columns": [ - 2073, + 2072, "[pending_match_imports_select_column!]" ], "distinct": [ @@ -39278,34 +40124,34 @@ export default { } ], "max": [ - 2066 + 2065 ], "min": [ - 2067 + 2066 ], "stddev": [ - 2075 + 2074 ], "stddev_pop": [ - 2076 + 2075 ], "stddev_samp": [ - 2077 + 2076 ], "sum": [ - 2080 + 2079 ], "var_pop": [ - 2083 + 2082 ], "var_samp": [ - 2084 + 2083 ], "variance": [ - 2085 + 2084 ], "__typename": [ - 75 + 74 ] }, "pending_match_imports_avg_fields": { @@ -39313,162 +40159,162 @@ export default { 29 ], "__typename": [ - 75 + 74 ] }, "pending_match_imports_bool_exp": { "_and": [ - 2062 + 2061 ], "_not": [ - 2062 + 2061 ], "_or": [ - 2062 + 2061 ], "created_at": [ - 3468 + 3467 ], "demo_url": [ - 77 + 76 ], "error": [ - 77 + 76 ], "map_name": [ - 77 + 76 ], "match_start_time": [ - 3468 + 3467 ], "players": [ - 2026 + 2025 ], "players_aggregate": [ - 2019 + 2018 ], "share_code": [ - 77 + 76 ], "status": [ - 77 + 76 ], "updated_at": [ - 3468 + 3467 ], "valve_match_id": [ - 2015 + 2014 ], "__typename": [ - 75 + 74 ] }, "pending_match_imports_constraint": {}, "pending_match_imports_inc_input": { "valve_match_id": [ - 2014 + 2013 ], "__typename": [ - 75 + 74 ] }, "pending_match_imports_insert_input": { "created_at": [ - 3467 + 3466 ], "demo_url": [ - 75 + 74 ], "error": [ - 75 + 74 ], "map_name": [ - 75 + 74 ], "match_start_time": [ - 3467 + 3466 ], "players": [ - 2023 + 2022 ], "share_code": [ - 75 + 74 ], "status": [ - 75 + 74 ], "updated_at": [ - 3467 + 3466 ], "valve_match_id": [ - 2014 + 2013 ], "__typename": [ - 75 + 74 ] }, "pending_match_imports_max_fields": { "created_at": [ - 3467 + 3466 ], "demo_url": [ - 75 + 74 ], "error": [ - 75 + 74 ], "map_name": [ - 75 + 74 ], "match_start_time": [ - 3467 + 3466 ], "share_code": [ - 75 + 74 ], "status": [ - 75 + 74 ], "updated_at": [ - 3467 + 3466 ], "valve_match_id": [ - 2014 + 2013 ], "__typename": [ - 75 + 74 ] }, "pending_match_imports_min_fields": { "created_at": [ - 3467 + 3466 ], "demo_url": [ - 75 + 74 ], "error": [ - 75 + 74 ], "map_name": [ - 75 + 74 ], "match_start_time": [ - 3467 + 3466 ], "share_code": [ - 75 + 74 ], "status": [ - 75 + 74 ], "updated_at": [ - 3467 + 3466 ], "valve_match_id": [ - 2014 + 2013 ], "__typename": [ - 75 + 74 ] }, "pending_match_imports_mutation_response": { @@ -39476,111 +40322,111 @@ export default { 38 ], "returning": [ - 2058 + 2057 ], "__typename": [ - 75 + 74 ] }, "pending_match_imports_obj_rel_insert_input": { "data": [ - 2065 + 2064 ], "on_conflict": [ - 2070 + 2069 ], "__typename": [ - 75 + 74 ] }, "pending_match_imports_on_conflict": { "constraint": [ - 2063 + 2062 ], "update_columns": [ - 2081 + 2080 ], "where": [ - 2062 + 2061 ], "__typename": [ - 75 + 74 ] }, "pending_match_imports_order_by": { "created_at": [ - 2016 + 2015 ], "demo_url": [ - 2016 + 2015 ], "error": [ - 2016 + 2015 ], "map_name": [ - 2016 + 2015 ], "match_start_time": [ - 2016 + 2015 ], "players_aggregate": [ - 2022 + 2021 ], "share_code": [ - 2016 + 2015 ], "status": [ - 2016 + 2015 ], "updated_at": [ - 2016 + 2015 ], "valve_match_id": [ - 2016 + 2015 ], "__typename": [ - 75 + 74 ] }, "pending_match_imports_pk_columns_input": { "valve_match_id": [ - 2014 + 2013 ], "__typename": [ - 75 + 74 ] }, "pending_match_imports_select_column": {}, "pending_match_imports_set_input": { "created_at": [ - 3467 + 3466 ], "demo_url": [ - 75 + 74 ], "error": [ - 75 + 74 ], "map_name": [ - 75 + 74 ], "match_start_time": [ - 3467 + 3466 ], "share_code": [ - 75 + 74 ], "status": [ - 75 + 74 ], "updated_at": [ - 3467 + 3466 ], "valve_match_id": [ - 2014 + 2013 ], "__typename": [ - 75 + 74 ] }, "pending_match_imports_stddev_fields": { @@ -39588,7 +40434,7 @@ export default { 29 ], "__typename": [ - 75 + 74 ] }, "pending_match_imports_stddev_pop_fields": { @@ -39596,7 +40442,7 @@ export default { 29 ], "__typename": [ - 75 + 74 ] }, "pending_match_imports_stddev_samp_fields": { @@ -39604,73 +40450,73 @@ export default { 29 ], "__typename": [ - 75 + 74 ] }, "pending_match_imports_stream_cursor_input": { "initial_value": [ - 2079 + 2078 ], "ordering": [ - 229 + 228 ], "__typename": [ - 75 + 74 ] }, "pending_match_imports_stream_cursor_value_input": { "created_at": [ - 3467 + 3466 ], "demo_url": [ - 75 + 74 ], "error": [ - 75 + 74 ], "map_name": [ - 75 + 74 ], "match_start_time": [ - 3467 + 3466 ], "share_code": [ - 75 + 74 ], "status": [ - 75 + 74 ], "updated_at": [ - 3467 + 3466 ], "valve_match_id": [ - 2014 + 2013 ], "__typename": [ - 75 + 74 ] }, "pending_match_imports_sum_fields": { "valve_match_id": [ - 2014 + 2013 ], "__typename": [ - 75 + 74 ] }, "pending_match_imports_update_column": {}, "pending_match_imports_updates": { "_inc": [ - 2064 + 2063 ], "_set": [ - 2074 + 2073 ], "where": [ - 2062 + 2061 ], "__typename": [ - 75 + 74 ] }, "pending_match_imports_var_pop_fields": { @@ -39678,7 +40524,7 @@ export default { 29 ], "__typename": [ - 75 + 74 ] }, "pending_match_imports_var_samp_fields": { @@ -39686,7 +40532,7 @@ export default { 29 ], "__typename": [ - 75 + 74 ] }, "pending_match_imports_variance_fields": { @@ -39694,15 +40540,15 @@ export default { 29 ], "__typename": [ - 75 + 74 ] }, "player_aim_stats_demo": { "attacker": [ - 2915 + 2914 ], "attacker_steam_id": [ - 174 + 173 ], "counter_strafe_eligible_shots": [ 38 @@ -39714,7 +40560,7 @@ export default { 38 ], "crosshair_angle_sum_deg": [ - 2014 + 2013 ], "first_bullet_hits": [ 38 @@ -39732,16 +40578,16 @@ export default { 38 ], "match": [ - 1831 + 1830 ], "match_id": [ - 3864 + 3863 ], "match_map": [ - 1669 + 1668 ], "match_map_id": [ - 3864 + 3863 ], "non_awp_hits": [ 38 @@ -39762,35 +40608,35 @@ export default { 38 ], "time_to_damage_sum_s": [ - 2014 + 2013 ], "total_engagement_frames": [ 38 ], "__typename": [ - 75 + 74 ] }, "player_aim_stats_demo_aggregate": { "aggregate": [ - 2088 + 2087 ], "nodes": [ - 2086 + 2085 ], "__typename": [ - 75 + 74 ] }, "player_aim_stats_demo_aggregate_fields": { "avg": [ - 2089 + 2088 ], "count": [ 38, { "columns": [ - 2100, + 2099, "[player_aim_stats_demo_select_column!]" ], "distinct": [ @@ -39799,34 +40645,34 @@ export default { } ], "max": [ - 2094 + 2093 ], "min": [ - 2095 + 2094 ], "stddev": [ - 2102 + 2101 ], "stddev_pop": [ - 2103 + 2102 ], "stddev_samp": [ - 2104 + 2103 ], "sum": [ - 2107 + 2106 ], "var_pop": [ - 2110 + 2109 ], "var_samp": [ - 2111 + 2110 ], "variance": [ - 2112 + 2111 ], "__typename": [ - 75 + 74 ] }, "player_aim_stats_demo_avg_fields": { @@ -39885,24 +40731,24 @@ export default { 29 ], "__typename": [ - 75 + 74 ] }, "player_aim_stats_demo_bool_exp": { "_and": [ - 2090 + 2089 ], "_not": [ - 2090 + 2089 ], "_or": [ - 2090 + 2089 ], "attacker": [ - 2919 + 2918 ], "attacker_steam_id": [ - 176 + 175 ], "counter_strafe_eligible_shots": [ 39 @@ -39914,7 +40760,7 @@ export default { 39 ], "crosshair_angle_sum_deg": [ - 2015 + 2014 ], "first_bullet_hits": [ 39 @@ -39932,16 +40778,16 @@ export default { 39 ], "match": [ - 1840 + 1839 ], "match_id": [ - 3866 + 3865 ], "match_map": [ - 1678 + 1677 ], "match_map_id": [ - 3866 + 3865 ], "non_awp_hits": [ 39 @@ -39962,19 +40808,19 @@ export default { 39 ], "time_to_damage_sum_s": [ - 2015 + 2014 ], "total_engagement_frames": [ 39 ], "__typename": [ - 75 + 74 ] }, "player_aim_stats_demo_constraint": {}, "player_aim_stats_demo_inc_input": { "attacker_steam_id": [ - 174 + 173 ], "counter_strafe_eligible_shots": [ 38 @@ -39986,7 +40832,7 @@ export default { 38 ], "crosshair_angle_sum_deg": [ - 2014 + 2013 ], "first_bullet_hits": [ 38 @@ -40022,21 +40868,21 @@ export default { 38 ], "time_to_damage_sum_s": [ - 2014 + 2013 ], "total_engagement_frames": [ 38 ], "__typename": [ - 75 + 74 ] }, "player_aim_stats_demo_insert_input": { "attacker": [ - 2926 + 2925 ], "attacker_steam_id": [ - 174 + 173 ], "counter_strafe_eligible_shots": [ 38 @@ -40048,7 +40894,7 @@ export default { 38 ], "crosshair_angle_sum_deg": [ - 2014 + 2013 ], "first_bullet_hits": [ 38 @@ -40066,16 +40912,16 @@ export default { 38 ], "match": [ - 1849 + 1848 ], "match_id": [ - 3864 + 3863 ], "match_map": [ - 1687 + 1686 ], "match_map_id": [ - 3864 + 3863 ], "non_awp_hits": [ 38 @@ -40096,18 +40942,18 @@ export default { 38 ], "time_to_damage_sum_s": [ - 2014 + 2013 ], "total_engagement_frames": [ 38 ], "__typename": [ - 75 + 74 ] }, "player_aim_stats_demo_max_fields": { "attacker_steam_id": [ - 174 + 173 ], "counter_strafe_eligible_shots": [ 38 @@ -40119,7 +40965,7 @@ export default { 38 ], "crosshair_angle_sum_deg": [ - 2014 + 2013 ], "first_bullet_hits": [ 38 @@ -40137,10 +40983,10 @@ export default { 38 ], "match_id": [ - 3864 + 3863 ], "match_map_id": [ - 3864 + 3863 ], "non_awp_hits": [ 38 @@ -40161,18 +41007,18 @@ export default { 38 ], "time_to_damage_sum_s": [ - 2014 + 2013 ], "total_engagement_frames": [ 38 ], "__typename": [ - 75 + 74 ] }, "player_aim_stats_demo_min_fields": { "attacker_steam_id": [ - 174 + 173 ], "counter_strafe_eligible_shots": [ 38 @@ -40184,7 +41030,7 @@ export default { 38 ], "crosshair_angle_sum_deg": [ - 2014 + 2013 ], "first_bullet_hits": [ 38 @@ -40202,10 +41048,10 @@ export default { 38 ], "match_id": [ - 3864 + 3863 ], "match_map_id": [ - 3864 + 3863 ], "non_awp_hits": [ 38 @@ -40226,13 +41072,13 @@ export default { 38 ], "time_to_damage_sum_s": [ - 2014 + 2013 ], "total_engagement_frames": [ 38 ], "__typename": [ - 75 + 74 ] }, "player_aim_stats_demo_mutation_response": { @@ -40240,115 +41086,115 @@ export default { 38 ], "returning": [ - 2086 + 2085 ], "__typename": [ - 75 + 74 ] }, "player_aim_stats_demo_on_conflict": { "constraint": [ - 2091 + 2090 ], "update_columns": [ - 2108 + 2107 ], "where": [ - 2090 + 2089 ], "__typename": [ - 75 + 74 ] }, "player_aim_stats_demo_order_by": { "attacker": [ - 2928 + 2927 ], "attacker_steam_id": [ - 2016 + 2015 ], "counter_strafe_eligible_shots": [ - 2016 + 2015 ], "counter_strafed_shots": [ - 2016 + 2015 ], "crosshair_angle_count": [ - 2016 + 2015 ], "crosshair_angle_sum_deg": [ - 2016 + 2015 ], "first_bullet_hits": [ - 2016 + 2015 ], "first_bullet_shots": [ - 2016 + 2015 ], "headshot_hits": [ - 2016 + 2015 ], "hits": [ - 2016 + 2015 ], "hits_at_spotted": [ - 2016 + 2015 ], "match": [ - 1851 + 1850 ], "match_id": [ - 2016 + 2015 ], "match_map": [ - 1689 + 1688 ], "match_map_id": [ - 2016 + 2015 ], "non_awp_hits": [ - 2016 + 2015 ], "on_target_frames": [ - 2016 + 2015 ], "shots_at_spotted": [ - 2016 + 2015 ], "spray_hits": [ - 2016 + 2015 ], "spray_shots": [ - 2016 + 2015 ], "time_to_damage_count": [ - 2016 + 2015 ], "time_to_damage_sum_s": [ - 2016 + 2015 ], "total_engagement_frames": [ - 2016 + 2015 ], "__typename": [ - 75 + 74 ] }, "player_aim_stats_demo_pk_columns_input": { "attacker_steam_id": [ - 174 + 173 ], "match_map_id": [ - 3864 + 3863 ], "__typename": [ - 75 + 74 ] }, "player_aim_stats_demo_select_column": {}, "player_aim_stats_demo_set_input": { "attacker_steam_id": [ - 174 + 173 ], "counter_strafe_eligible_shots": [ 38 @@ -40360,7 +41206,7 @@ export default { 38 ], "crosshair_angle_sum_deg": [ - 2014 + 2013 ], "first_bullet_hits": [ 38 @@ -40378,10 +41224,10 @@ export default { 38 ], "match_id": [ - 3864 + 3863 ], "match_map_id": [ - 3864 + 3863 ], "non_awp_hits": [ 38 @@ -40402,13 +41248,13 @@ export default { 38 ], "time_to_damage_sum_s": [ - 2014 + 2013 ], "total_engagement_frames": [ 38 ], "__typename": [ - 75 + 74 ] }, "player_aim_stats_demo_stddev_fields": { @@ -40467,7 +41313,7 @@ export default { 29 ], "__typename": [ - 75 + 74 ] }, "player_aim_stats_demo_stddev_pop_fields": { @@ -40526,7 +41372,7 @@ export default { 29 ], "__typename": [ - 75 + 74 ] }, "player_aim_stats_demo_stddev_samp_fields": { @@ -40585,23 +41431,23 @@ export default { 29 ], "__typename": [ - 75 + 74 ] }, "player_aim_stats_demo_stream_cursor_input": { "initial_value": [ - 2106 + 2105 ], "ordering": [ - 229 + 228 ], "__typename": [ - 75 + 74 ] }, "player_aim_stats_demo_stream_cursor_value_input": { "attacker_steam_id": [ - 174 + 173 ], "counter_strafe_eligible_shots": [ 38 @@ -40613,7 +41459,7 @@ export default { 38 ], "crosshair_angle_sum_deg": [ - 2014 + 2013 ], "first_bullet_hits": [ 38 @@ -40631,10 +41477,10 @@ export default { 38 ], "match_id": [ - 3864 + 3863 ], "match_map_id": [ - 3864 + 3863 ], "non_awp_hits": [ 38 @@ -40655,18 +41501,18 @@ export default { 38 ], "time_to_damage_sum_s": [ - 2014 + 2013 ], "total_engagement_frames": [ 38 ], "__typename": [ - 75 + 74 ] }, "player_aim_stats_demo_sum_fields": { "attacker_steam_id": [ - 174 + 173 ], "counter_strafe_eligible_shots": [ 38 @@ -40678,7 +41524,7 @@ export default { 38 ], "crosshair_angle_sum_deg": [ - 2014 + 2013 ], "first_bullet_hits": [ 38 @@ -40714,28 +41560,28 @@ export default { 38 ], "time_to_damage_sum_s": [ - 2014 + 2013 ], "total_engagement_frames": [ 38 ], "__typename": [ - 75 + 74 ] }, "player_aim_stats_demo_update_column": {}, "player_aim_stats_demo_updates": { "_inc": [ - 2092 + 2091 ], "_set": [ - 2101 + 2100 ], "where": [ - 2090 + 2089 ], "__typename": [ - 75 + 74 ] }, "player_aim_stats_demo_var_pop_fields": { @@ -40794,7 +41640,7 @@ export default { 29 ], "__typename": [ - 75 + 74 ] }, "player_aim_stats_demo_var_samp_fields": { @@ -40853,7 +41699,7 @@ export default { 29 ], "__typename": [ - 75 + 74 ] }, "player_aim_stats_demo_variance_fields": { @@ -40912,7 +41758,7 @@ export default { 29 ], "__typename": [ - 75 + 74 ] }, "player_aim_weapon_stats": { @@ -40929,19 +41775,19 @@ export default { 38 ], "match": [ - 1831 + 1830 ], "match_id": [ - 3864 + 3863 ], "match_map": [ - 1669 + 1668 ], "match_map_id": [ - 3864 + 3863 ], "player": [ - 2915 + 2914 ], "shots": [ 38 @@ -40950,60 +41796,60 @@ export default { 38 ], "steam_id": [ - 174 + 173 ], "weapon_class": [ - 75 + 74 ], "__typename": [ - 75 + 74 ] }, "player_aim_weapon_stats_aggregate": { "aggregate": [ - 2117 + 2116 ], "nodes": [ - 2113 + 2112 ], "__typename": [ - 75 + 74 ] }, "player_aim_weapon_stats_aggregate_bool_exp": { "count": [ - 2116 + 2115 ], "__typename": [ - 75 + 74 ] }, "player_aim_weapon_stats_aggregate_bool_exp_count": { "arguments": [ - 2134 + 2133 ], "distinct": [ 3 ], "filter": [ - 2122 + 2121 ], "predicate": [ 39 ], "__typename": [ - 75 + 74 ] }, "player_aim_weapon_stats_aggregate_fields": { "avg": [ - 2120 + 2119 ], "count": [ 38, { "columns": [ - 2134, + 2133, "[player_aim_weapon_stats_select_column!]" ], "distinct": [ @@ -41012,83 +41858,83 @@ export default { } ], "max": [ - 2126 + 2125 ], "min": [ - 2128 + 2127 ], "stddev": [ - 2136 + 2135 ], "stddev_pop": [ - 2138 + 2137 ], "stddev_samp": [ - 2140 + 2139 ], "sum": [ - 2144 + 2143 ], "var_pop": [ - 2148 + 2147 ], "var_samp": [ - 2150 + 2149 ], "variance": [ - 2152 + 2151 ], "__typename": [ - 75 + 74 ] }, "player_aim_weapon_stats_aggregate_order_by": { "avg": [ - 2121 + 2120 ], "count": [ - 2016 + 2015 ], "max": [ - 2127 + 2126 ], "min": [ - 2129 + 2128 ], "stddev": [ - 2137 + 2136 ], "stddev_pop": [ - 2139 + 2138 ], "stddev_samp": [ - 2141 + 2140 ], "sum": [ - 2145 + 2144 ], "var_pop": [ - 2149 + 2148 ], "var_samp": [ - 2151 + 2150 ], "variance": [ - 2153 + 2152 ], "__typename": [ - 75 + 74 ] }, "player_aim_weapon_stats_arr_rel_insert_input": { "data": [ - 2125 + 2124 ], "on_conflict": [ - 2131 + 2130 ], "__typename": [ - 75 + 74 ] }, "player_aim_weapon_stats_avg_fields": { @@ -41114,44 +41960,44 @@ export default { 29 ], "__typename": [ - 75 + 74 ] }, "player_aim_weapon_stats_avg_order_by": { "first_bullet_hits": [ - 2016 + 2015 ], "first_bullet_shots": [ - 2016 + 2015 ], "hits": [ - 2016 + 2015 ], "hits_spotted": [ - 2016 + 2015 ], "shots": [ - 2016 + 2015 ], "shots_spotted": [ - 2016 + 2015 ], "steam_id": [ - 2016 + 2015 ], "__typename": [ - 75 + 74 ] }, "player_aim_weapon_stats_bool_exp": { "_and": [ - 2122 + 2121 ], "_not": [ - 2122 + 2121 ], "_or": [ - 2122 + 2121 ], "first_bullet_hits": [ 39 @@ -41166,19 +42012,19 @@ export default { 39 ], "match": [ - 1840 + 1839 ], "match_id": [ - 3866 + 3865 ], "match_map": [ - 1678 + 1677 ], "match_map_id": [ - 3866 + 3865 ], "player": [ - 2919 + 2918 ], "shots": [ 39 @@ -41187,13 +42033,13 @@ export default { 39 ], "steam_id": [ - 176 + 175 ], "weapon_class": [ - 77 + 76 ], "__typename": [ - 75 + 74 ] }, "player_aim_weapon_stats_constraint": {}, @@ -41217,10 +42063,10 @@ export default { 38 ], "steam_id": [ - 174 + 173 ], "__typename": [ - 75 + 74 ] }, "player_aim_weapon_stats_insert_input": { @@ -41237,19 +42083,19 @@ export default { 38 ], "match": [ - 1849 + 1848 ], "match_id": [ - 3864 + 3863 ], "match_map": [ - 1687 + 1686 ], "match_map_id": [ - 3864 + 3863 ], "player": [ - 2926 + 2925 ], "shots": [ 38 @@ -41258,13 +42104,13 @@ export default { 38 ], "steam_id": [ - 174 + 173 ], "weapon_class": [ - 75 + 74 ], "__typename": [ - 75 + 74 ] }, "player_aim_weapon_stats_max_fields": { @@ -41281,10 +42127,10 @@ export default { 38 ], "match_id": [ - 3864 + 3863 ], "match_map_id": [ - 3864 + 3863 ], "shots": [ 38 @@ -41293,48 +42139,48 @@ export default { 38 ], "steam_id": [ - 174 + 173 ], "weapon_class": [ - 75 + 74 ], "__typename": [ - 75 + 74 ] }, "player_aim_weapon_stats_max_order_by": { "first_bullet_hits": [ - 2016 + 2015 ], "first_bullet_shots": [ - 2016 + 2015 ], "hits": [ - 2016 + 2015 ], "hits_spotted": [ - 2016 + 2015 ], "match_id": [ - 2016 + 2015 ], "match_map_id": [ - 2016 + 2015 ], "shots": [ - 2016 + 2015 ], "shots_spotted": [ - 2016 + 2015 ], "steam_id": [ - 2016 + 2015 ], "weapon_class": [ - 2016 + 2015 ], "__typename": [ - 75 + 74 ] }, "player_aim_weapon_stats_min_fields": { @@ -41351,10 +42197,10 @@ export default { 38 ], "match_id": [ - 3864 + 3863 ], "match_map_id": [ - 3864 + 3863 ], "shots": [ 38 @@ -41363,48 +42209,48 @@ export default { 38 ], "steam_id": [ - 174 + 173 ], "weapon_class": [ - 75 + 74 ], "__typename": [ - 75 + 74 ] }, "player_aim_weapon_stats_min_order_by": { "first_bullet_hits": [ - 2016 + 2015 ], "first_bullet_shots": [ - 2016 + 2015 ], "hits": [ - 2016 + 2015 ], "hits_spotted": [ - 2016 + 2015 ], "match_id": [ - 2016 + 2015 ], "match_map_id": [ - 2016 + 2015 ], "shots": [ - 2016 + 2015 ], "shots_spotted": [ - 2016 + 2015 ], "steam_id": [ - 2016 + 2015 ], "weapon_class": [ - 2016 + 2015 ], "__typename": [ - 75 + 74 ] }, "player_aim_weapon_stats_mutation_response": { @@ -41412,82 +42258,82 @@ export default { 38 ], "returning": [ - 2113 + 2112 ], "__typename": [ - 75 + 74 ] }, "player_aim_weapon_stats_on_conflict": { "constraint": [ - 2123 + 2122 ], "update_columns": [ - 2146 + 2145 ], "where": [ - 2122 + 2121 ], "__typename": [ - 75 + 74 ] }, "player_aim_weapon_stats_order_by": { "first_bullet_hits": [ - 2016 + 2015 ], "first_bullet_shots": [ - 2016 + 2015 ], "hits": [ - 2016 + 2015 ], "hits_spotted": [ - 2016 + 2015 ], "match": [ - 1851 + 1850 ], "match_id": [ - 2016 + 2015 ], "match_map": [ - 1689 + 1688 ], "match_map_id": [ - 2016 + 2015 ], "player": [ - 2928 + 2927 ], "shots": [ - 2016 + 2015 ], "shots_spotted": [ - 2016 + 2015 ], "steam_id": [ - 2016 + 2015 ], "weapon_class": [ - 2016 + 2015 ], "__typename": [ - 75 + 74 ] }, "player_aim_weapon_stats_pk_columns_input": { "match_map_id": [ - 3864 + 3863 ], "steam_id": [ - 174 + 173 ], "weapon_class": [ - 75 + 74 ], "__typename": [ - 75 + 74 ] }, "player_aim_weapon_stats_select_column": {}, @@ -41505,10 +42351,10 @@ export default { 38 ], "match_id": [ - 3864 + 3863 ], "match_map_id": [ - 3864 + 3863 ], "shots": [ 38 @@ -41517,13 +42363,13 @@ export default { 38 ], "steam_id": [ - 174 + 173 ], "weapon_class": [ - 75 + 74 ], "__typename": [ - 75 + 74 ] }, "player_aim_weapon_stats_stddev_fields": { @@ -41549,33 +42395,33 @@ export default { 29 ], "__typename": [ - 75 + 74 ] }, "player_aim_weapon_stats_stddev_order_by": { "first_bullet_hits": [ - 2016 + 2015 ], "first_bullet_shots": [ - 2016 + 2015 ], "hits": [ - 2016 + 2015 ], "hits_spotted": [ - 2016 + 2015 ], "shots": [ - 2016 + 2015 ], "shots_spotted": [ - 2016 + 2015 ], "steam_id": [ - 2016 + 2015 ], "__typename": [ - 75 + 74 ] }, "player_aim_weapon_stats_stddev_pop_fields": { @@ -41601,33 +42447,33 @@ export default { 29 ], "__typename": [ - 75 + 74 ] }, "player_aim_weapon_stats_stddev_pop_order_by": { "first_bullet_hits": [ - 2016 + 2015 ], "first_bullet_shots": [ - 2016 + 2015 ], "hits": [ - 2016 + 2015 ], "hits_spotted": [ - 2016 + 2015 ], "shots": [ - 2016 + 2015 ], "shots_spotted": [ - 2016 + 2015 ], "steam_id": [ - 2016 + 2015 ], "__typename": [ - 75 + 74 ] }, "player_aim_weapon_stats_stddev_samp_fields": { @@ -41653,44 +42499,44 @@ export default { 29 ], "__typename": [ - 75 + 74 ] }, "player_aim_weapon_stats_stddev_samp_order_by": { "first_bullet_hits": [ - 2016 + 2015 ], "first_bullet_shots": [ - 2016 + 2015 ], "hits": [ - 2016 + 2015 ], "hits_spotted": [ - 2016 + 2015 ], "shots": [ - 2016 + 2015 ], "shots_spotted": [ - 2016 + 2015 ], "steam_id": [ - 2016 + 2015 ], "__typename": [ - 75 + 74 ] }, "player_aim_weapon_stats_stream_cursor_input": { "initial_value": [ - 2143 + 2142 ], "ordering": [ - 229 + 228 ], "__typename": [ - 75 + 74 ] }, "player_aim_weapon_stats_stream_cursor_value_input": { @@ -41707,10 +42553,10 @@ export default { 38 ], "match_id": [ - 3864 + 3863 ], "match_map_id": [ - 3864 + 3863 ], "shots": [ 38 @@ -41719,13 +42565,13 @@ export default { 38 ], "steam_id": [ - 174 + 173 ], "weapon_class": [ - 75 + 74 ], "__typename": [ - 75 + 74 ] }, "player_aim_weapon_stats_sum_fields": { @@ -41748,51 +42594,51 @@ export default { 38 ], "steam_id": [ - 174 + 173 ], "__typename": [ - 75 + 74 ] }, "player_aim_weapon_stats_sum_order_by": { "first_bullet_hits": [ - 2016 + 2015 ], "first_bullet_shots": [ - 2016 + 2015 ], "hits": [ - 2016 + 2015 ], "hits_spotted": [ - 2016 + 2015 ], "shots": [ - 2016 + 2015 ], "shots_spotted": [ - 2016 + 2015 ], "steam_id": [ - 2016 + 2015 ], "__typename": [ - 75 + 74 ] }, "player_aim_weapon_stats_update_column": {}, "player_aim_weapon_stats_updates": { "_inc": [ - 2124 + 2123 ], "_set": [ - 2135 + 2134 ], "where": [ - 2122 + 2121 ], "__typename": [ - 75 + 74 ] }, "player_aim_weapon_stats_var_pop_fields": { @@ -41818,33 +42664,33 @@ export default { 29 ], "__typename": [ - 75 + 74 ] }, "player_aim_weapon_stats_var_pop_order_by": { "first_bullet_hits": [ - 2016 + 2015 ], "first_bullet_shots": [ - 2016 + 2015 ], "hits": [ - 2016 + 2015 ], "hits_spotted": [ - 2016 + 2015 ], "shots": [ - 2016 + 2015 ], "shots_spotted": [ - 2016 + 2015 ], "steam_id": [ - 2016 + 2015 ], "__typename": [ - 75 + 74 ] }, "player_aim_weapon_stats_var_samp_fields": { @@ -41870,33 +42716,33 @@ export default { 29 ], "__typename": [ - 75 + 74 ] }, "player_aim_weapon_stats_var_samp_order_by": { "first_bullet_hits": [ - 2016 + 2015 ], "first_bullet_shots": [ - 2016 + 2015 ], "hits": [ - 2016 + 2015 ], "hits_spotted": [ - 2016 + 2015 ], "shots": [ - 2016 + 2015 ], "shots_spotted": [ - 2016 + 2015 ], "steam_id": [ - 2016 + 2015 ], "__typename": [ - 75 + 74 ] }, "player_aim_weapon_stats_variance_fields": { @@ -41922,53 +42768,53 @@ export default { 29 ], "__typename": [ - 75 + 74 ] }, "player_aim_weapon_stats_variance_order_by": { "first_bullet_hits": [ - 2016 + 2015 ], "first_bullet_shots": [ - 2016 + 2015 ], "hits": [ - 2016 + 2015 ], "hits_spotted": [ - 2016 + 2015 ], "shots": [ - 2016 + 2015 ], "shots_spotted": [ - 2016 + 2015 ], "steam_id": [ - 2016 + 2015 ], "__typename": [ - 75 + 74 ] }, "player_assists": { "attacked_player": [ - 2915 + 2914 ], "attacked_steam_id": [ - 174 + 173 ], "attacked_team": [ - 75 + 74 ], "attacker_steam_id": [ - 174 + 173 ], "attacker_team": [ - 75 + 74 ], "deleted_at": [ - 3467 + 3466 ], "flash": [ 3 @@ -41977,115 +42823,115 @@ export default { 3 ], "match": [ - 1831 + 1830 ], "match_id": [ - 3864 + 3863 ], "match_map": [ - 1669 + 1668 ], "match_map_id": [ - 3864 + 3863 ], "player": [ - 2915 + 2914 ], "round": [ 38 ], "time": [ - 3467 + 3466 ], "__typename": [ - 75 + 74 ] }, "player_assists_aggregate": { "aggregate": [ - 2160 + 2159 ], "nodes": [ - 2154 + 2153 ], "__typename": [ - 75 + 74 ] }, "player_assists_aggregate_bool_exp": { "bool_and": [ - 2157 + 2156 ], "bool_or": [ - 2158 + 2157 ], "count": [ - 2159 + 2158 ], "__typename": [ - 75 + 74 ] }, "player_assists_aggregate_bool_exp_bool_and": { "arguments": [ - 2178 + 2177 ], "distinct": [ 3 ], "filter": [ - 2165 + 2164 ], "predicate": [ 4 ], "__typename": [ - 75 + 74 ] }, "player_assists_aggregate_bool_exp_bool_or": { "arguments": [ - 2179 + 2178 ], "distinct": [ 3 ], "filter": [ - 2165 + 2164 ], "predicate": [ 4 ], "__typename": [ - 75 + 74 ] }, "player_assists_aggregate_bool_exp_count": { "arguments": [ - 2177 + 2176 ], "distinct": [ 3 ], "filter": [ - 2165 + 2164 ], "predicate": [ 39 ], "__typename": [ - 75 + 74 ] }, "player_assists_aggregate_fields": { "avg": [ - 2163 + 2162 ], "count": [ 38, { "columns": [ - 2177, + 2176, "[player_assists_select_column!]" ], "distinct": [ @@ -42094,83 +42940,83 @@ export default { } ], "max": [ - 2169 + 2168 ], "min": [ - 2171 + 2170 ], "stddev": [ - 2181 + 2180 ], "stddev_pop": [ - 2183 + 2182 ], "stddev_samp": [ - 2185 + 2184 ], "sum": [ - 2189 + 2188 ], "var_pop": [ - 2193 + 2192 ], "var_samp": [ - 2195 + 2194 ], "variance": [ - 2197 + 2196 ], "__typename": [ - 75 + 74 ] }, "player_assists_aggregate_order_by": { "avg": [ - 2164 + 2163 ], "count": [ - 2016 + 2015 ], "max": [ - 2170 + 2169 ], "min": [ - 2172 + 2171 ], "stddev": [ - 2182 + 2181 ], "stddev_pop": [ - 2184 + 2183 ], "stddev_samp": [ - 2186 + 2185 ], "sum": [ - 2190 + 2189 ], "var_pop": [ - 2194 + 2193 ], "var_samp": [ - 2196 + 2195 ], "variance": [ - 2198 + 2197 ], "__typename": [ - 75 + 74 ] }, "player_assists_arr_rel_insert_input": { "data": [ - 2168 + 2167 ], "on_conflict": [ - 2174 + 2173 ], "__typename": [ - 75 + 74 ] }, "player_assists_avg_fields": { @@ -42184,50 +43030,50 @@ export default { 29 ], "__typename": [ - 75 + 74 ] }, "player_assists_avg_order_by": { "attacked_steam_id": [ - 2016 + 2015 ], "attacker_steam_id": [ - 2016 + 2015 ], "round": [ - 2016 + 2015 ], "__typename": [ - 75 + 74 ] }, "player_assists_bool_exp": { "_and": [ - 2165 + 2164 ], "_not": [ - 2165 + 2164 ], "_or": [ - 2165 + 2164 ], "attacked_player": [ - 2919 + 2918 ], "attacked_steam_id": [ - 176 + 175 ], "attacked_team": [ - 77 + 76 ], "attacker_steam_id": [ - 176 + 175 ], "attacker_team": [ - 77 + 76 ], "deleted_at": [ - 3468 + 3467 ], "flash": [ 4 @@ -42236,218 +43082,218 @@ export default { 4 ], "match": [ - 1840 + 1839 ], "match_id": [ - 3866 + 3865 ], "match_map": [ - 1678 + 1677 ], "match_map_id": [ - 3866 + 3865 ], "player": [ - 2919 + 2918 ], "round": [ 39 ], "time": [ - 3468 + 3467 ], "__typename": [ - 75 + 74 ] }, "player_assists_constraint": {}, "player_assists_inc_input": { "attacked_steam_id": [ - 174 + 173 ], "attacker_steam_id": [ - 174 + 173 ], "round": [ 38 ], "__typename": [ - 75 + 74 ] }, "player_assists_insert_input": { "attacked_player": [ - 2926 + 2925 ], "attacked_steam_id": [ - 174 + 173 ], "attacked_team": [ - 75 + 74 ], "attacker_steam_id": [ - 174 + 173 ], "attacker_team": [ - 75 + 74 ], "deleted_at": [ - 3467 + 3466 ], "flash": [ 3 ], "match": [ - 1849 + 1848 ], "match_id": [ - 3864 + 3863 ], "match_map": [ - 1687 + 1686 ], "match_map_id": [ - 3864 + 3863 ], "player": [ - 2926 + 2925 ], "round": [ 38 ], "time": [ - 3467 + 3466 ], "__typename": [ - 75 + 74 ] }, "player_assists_max_fields": { "attacked_steam_id": [ - 174 + 173 ], "attacked_team": [ - 75 + 74 ], "attacker_steam_id": [ - 174 + 173 ], "attacker_team": [ - 75 + 74 ], "deleted_at": [ - 3467 + 3466 ], "match_id": [ - 3864 + 3863 ], "match_map_id": [ - 3864 + 3863 ], "round": [ 38 ], "time": [ - 3467 + 3466 ], "__typename": [ - 75 + 74 ] }, "player_assists_max_order_by": { "attacked_steam_id": [ - 2016 + 2015 ], "attacked_team": [ - 2016 + 2015 ], "attacker_steam_id": [ - 2016 + 2015 ], "attacker_team": [ - 2016 + 2015 ], "deleted_at": [ - 2016 + 2015 ], "match_id": [ - 2016 + 2015 ], "match_map_id": [ - 2016 + 2015 ], "round": [ - 2016 + 2015 ], "time": [ - 2016 + 2015 ], "__typename": [ - 75 + 74 ] }, "player_assists_min_fields": { "attacked_steam_id": [ - 174 + 173 ], "attacked_team": [ - 75 + 74 ], "attacker_steam_id": [ - 174 + 173 ], "attacker_team": [ - 75 + 74 ], "deleted_at": [ - 3467 + 3466 ], "match_id": [ - 3864 + 3863 ], "match_map_id": [ - 3864 + 3863 ], "round": [ 38 ], "time": [ - 3467 + 3466 ], "__typename": [ - 75 + 74 ] }, "player_assists_min_order_by": { "attacked_steam_id": [ - 2016 + 2015 ], "attacked_team": [ - 2016 + 2015 ], "attacker_steam_id": [ - 2016 + 2015 ], "attacker_team": [ - 2016 + 2015 ], "deleted_at": [ - 2016 + 2015 ], "match_id": [ - 2016 + 2015 ], "match_map_id": [ - 2016 + 2015 ], "round": [ - 2016 + 2015 ], "time": [ - 2016 + 2015 ], "__typename": [ - 75 + 74 ] }, "player_assists_mutation_response": { @@ -42455,91 +43301,91 @@ export default { 38 ], "returning": [ - 2154 + 2153 ], "__typename": [ - 75 + 74 ] }, "player_assists_on_conflict": { "constraint": [ - 2166 + 2165 ], "update_columns": [ - 2191 + 2190 ], "where": [ - 2165 + 2164 ], "__typename": [ - 75 + 74 ] }, "player_assists_order_by": { "attacked_player": [ - 2928 + 2927 ], "attacked_steam_id": [ - 2016 + 2015 ], "attacked_team": [ - 2016 + 2015 ], "attacker_steam_id": [ - 2016 + 2015 ], "attacker_team": [ - 2016 + 2015 ], "deleted_at": [ - 2016 + 2015 ], "flash": [ - 2016 + 2015 ], "is_team_assist": [ - 2016 + 2015 ], "match": [ - 1851 + 1850 ], "match_id": [ - 2016 + 2015 ], "match_map": [ - 1689 + 1688 ], "match_map_id": [ - 2016 + 2015 ], "player": [ - 2928 + 2927 ], "round": [ - 2016 + 2015 ], "time": [ - 2016 + 2015 ], "__typename": [ - 75 + 74 ] }, "player_assists_pk_columns_input": { "attacked_steam_id": [ - 174 + 173 ], "attacker_steam_id": [ - 174 + 173 ], "match_map_id": [ - 3864 + 3863 ], "time": [ - 3467 + 3466 ], "__typename": [ - 75 + 74 ] }, "player_assists_select_column": {}, @@ -42547,37 +43393,37 @@ export default { "player_assists_select_column_player_assists_aggregate_bool_exp_bool_or_arguments_columns": {}, "player_assists_set_input": { "attacked_steam_id": [ - 174 + 173 ], "attacked_team": [ - 75 + 74 ], "attacker_steam_id": [ - 174 + 173 ], "attacker_team": [ - 75 + 74 ], "deleted_at": [ - 3467 + 3466 ], "flash": [ 3 ], "match_id": [ - 3864 + 3863 ], "match_map_id": [ - 3864 + 3863 ], "round": [ 38 ], "time": [ - 3467 + 3466 ], "__typename": [ - 75 + 74 ] }, "player_assists_stddev_fields": { @@ -42591,21 +43437,21 @@ export default { 29 ], "__typename": [ - 75 + 74 ] }, "player_assists_stddev_order_by": { "attacked_steam_id": [ - 2016 + 2015 ], "attacker_steam_id": [ - 2016 + 2015 ], "round": [ - 2016 + 2015 ], "__typename": [ - 75 + 74 ] }, "player_assists_stddev_pop_fields": { @@ -42619,21 +43465,21 @@ export default { 29 ], "__typename": [ - 75 + 74 ] }, "player_assists_stddev_pop_order_by": { "attacked_steam_id": [ - 2016 + 2015 ], "attacker_steam_id": [ - 2016 + 2015 ], "round": [ - 2016 + 2015 ], "__typename": [ - 75 + 74 ] }, "player_assists_stddev_samp_fields": { @@ -42647,110 +43493,110 @@ export default { 29 ], "__typename": [ - 75 + 74 ] }, "player_assists_stddev_samp_order_by": { "attacked_steam_id": [ - 2016 + 2015 ], "attacker_steam_id": [ - 2016 + 2015 ], "round": [ - 2016 + 2015 ], "__typename": [ - 75 + 74 ] }, "player_assists_stream_cursor_input": { "initial_value": [ - 2188 + 2187 ], "ordering": [ - 229 + 228 ], "__typename": [ - 75 + 74 ] }, "player_assists_stream_cursor_value_input": { "attacked_steam_id": [ - 174 + 173 ], "attacked_team": [ - 75 + 74 ], "attacker_steam_id": [ - 174 + 173 ], "attacker_team": [ - 75 + 74 ], "deleted_at": [ - 3467 + 3466 ], "flash": [ 3 ], "match_id": [ - 3864 + 3863 ], "match_map_id": [ - 3864 + 3863 ], "round": [ 38 ], "time": [ - 3467 + 3466 ], "__typename": [ - 75 + 74 ] }, "player_assists_sum_fields": { "attacked_steam_id": [ - 174 + 173 ], "attacker_steam_id": [ - 174 + 173 ], "round": [ 38 ], "__typename": [ - 75 + 74 ] }, "player_assists_sum_order_by": { "attacked_steam_id": [ - 2016 + 2015 ], "attacker_steam_id": [ - 2016 + 2015 ], "round": [ - 2016 + 2015 ], "__typename": [ - 75 + 74 ] }, "player_assists_update_column": {}, "player_assists_updates": { "_inc": [ - 2167 + 2166 ], "_set": [ - 2180 + 2179 ], "where": [ - 2165 + 2164 ], "__typename": [ - 75 + 74 ] }, "player_assists_var_pop_fields": { @@ -42764,21 +43610,21 @@ export default { 29 ], "__typename": [ - 75 + 74 ] }, "player_assists_var_pop_order_by": { "attacked_steam_id": [ - 2016 + 2015 ], "attacker_steam_id": [ - 2016 + 2015 ], "round": [ - 2016 + 2015 ], "__typename": [ - 75 + 74 ] }, "player_assists_var_samp_fields": { @@ -42792,21 +43638,21 @@ export default { 29 ], "__typename": [ - 75 + 74 ] }, "player_assists_var_samp_order_by": { "attacked_steam_id": [ - 2016 + 2015 ], "attacker_steam_id": [ - 2016 + 2015 ], "round": [ - 2016 + 2015 ], "__typename": [ - 75 + 74 ] }, "player_assists_variance_fields": { @@ -42820,47 +43666,47 @@ export default { 29 ], "__typename": [ - 75 + 74 ] }, "player_assists_variance_order_by": { "attacked_steam_id": [ - 2016 + 2015 ], "attacker_steam_id": [ - 2016 + 2015 ], "round": [ - 2016 + 2015 ], "__typename": [ - 75 + 74 ] }, "player_career_stats_v": { "accuracy": [ - 2014 + 2013 ], "accuracy_spotted": [ - 2014 + 2013 ], "counter_strafe_pct": [ - 2014 + 2013 ], "crosshair_deg": [ - 2014 + 2013 ], "enemy_blind_pr": [ - 2014 + 2013 ], "flash_assists_pr": [ - 2014 + 2013 ], "hs_pct": [ - 2014 + 2013 ], "kast_pct": [ - 2014 + 2013 ], "maps": [ 38 @@ -42872,44 +43718,44 @@ export default { 38 ], "steam_id": [ - 174 + 173 ], "survival_pct": [ - 2014 + 2013 ], "time_to_damage_s": [ - 2014 + 2013 ], "traded_death_pct": [ - 2014 + 2013 ], "util_efficiency": [ - 2014 + 2013 ], "__typename": [ - 75 + 74 ] }, "player_career_stats_v_aggregate": { "aggregate": [ - 2201 + 2200 ], "nodes": [ - 2199 + 2198 ], "__typename": [ - 75 + 74 ] }, "player_career_stats_v_aggregate_fields": { "avg": [ - 2202 + 2201 ], "count": [ 38, { "columns": [ - 2207, + 2206, "[player_career_stats_v_select_column!]" ], "distinct": [ @@ -42918,34 +43764,34 @@ export default { } ], "max": [ - 2204 + 2203 ], "min": [ - 2205 + 2204 ], "stddev": [ - 2208 + 2207 ], "stddev_pop": [ - 2209 + 2208 ], "stddev_samp": [ - 2210 + 2209 ], "sum": [ - 2213 + 2212 ], "var_pop": [ - 2214 + 2213 ], "var_samp": [ - 2215 + 2214 ], "variance": [ - 2216 + 2215 ], "__typename": [ - 75 + 74 ] }, "player_career_stats_v_avg_fields": { @@ -42998,72 +43844,19 @@ export default { 29 ], "__typename": [ - 75 + 74 ] }, "player_career_stats_v_bool_exp": { "_and": [ - 2203 + 2202 ], "_not": [ - 2203 + 2202 ], "_or": [ - 2203 - ], - "accuracy": [ - 2015 - ], - "accuracy_spotted": [ - 2015 - ], - "counter_strafe_pct": [ - 2015 - ], - "crosshair_deg": [ - 2015 - ], - "enemy_blind_pr": [ - 2015 - ], - "flash_assists_pr": [ - 2015 - ], - "hs_pct": [ - 2015 - ], - "kast_pct": [ - 2015 - ], - "maps": [ - 39 - ], - "premier_rank": [ - 39 - ], - "rounds": [ - 39 - ], - "steam_id": [ - 176 - ], - "survival_pct": [ - 2015 - ], - "time_to_damage_s": [ - 2015 - ], - "traded_death_pct": [ - 2015 - ], - "util_efficiency": [ - 2015 + 2202 ], - "__typename": [ - 75 - ] - }, - "player_career_stats_v_max_fields": { "accuracy": [ 2014 ], @@ -43089,16 +43882,16 @@ export default { 2014 ], "maps": [ - 38 + 39 ], "premier_rank": [ - 38 + 39 ], "rounds": [ - 38 + 39 ], "steam_id": [ - 174 + 175 ], "survival_pct": [ 2014 @@ -43113,33 +43906,86 @@ export default { 2014 ], "__typename": [ - 75 + 74 + ] + }, + "player_career_stats_v_max_fields": { + "accuracy": [ + 2013 + ], + "accuracy_spotted": [ + 2013 + ], + "counter_strafe_pct": [ + 2013 + ], + "crosshair_deg": [ + 2013 + ], + "enemy_blind_pr": [ + 2013 + ], + "flash_assists_pr": [ + 2013 + ], + "hs_pct": [ + 2013 + ], + "kast_pct": [ + 2013 + ], + "maps": [ + 38 + ], + "premier_rank": [ + 38 + ], + "rounds": [ + 38 + ], + "steam_id": [ + 173 + ], + "survival_pct": [ + 2013 + ], + "time_to_damage_s": [ + 2013 + ], + "traded_death_pct": [ + 2013 + ], + "util_efficiency": [ + 2013 + ], + "__typename": [ + 74 ] }, "player_career_stats_v_min_fields": { "accuracy": [ - 2014 + 2013 ], "accuracy_spotted": [ - 2014 + 2013 ], "counter_strafe_pct": [ - 2014 + 2013 ], "crosshair_deg": [ - 2014 + 2013 ], "enemy_blind_pr": [ - 2014 + 2013 ], "flash_assists_pr": [ - 2014 + 2013 ], "hs_pct": [ - 2014 + 2013 ], "kast_pct": [ - 2014 + 2013 ], "maps": [ 38 @@ -43151,75 +43997,75 @@ export default { 38 ], "steam_id": [ - 174 + 173 ], "survival_pct": [ - 2014 + 2013 ], "time_to_damage_s": [ - 2014 + 2013 ], "traded_death_pct": [ - 2014 + 2013 ], "util_efficiency": [ - 2014 + 2013 ], "__typename": [ - 75 + 74 ] }, "player_career_stats_v_order_by": { "accuracy": [ - 2016 + 2015 ], "accuracy_spotted": [ - 2016 + 2015 ], "counter_strafe_pct": [ - 2016 + 2015 ], "crosshair_deg": [ - 2016 + 2015 ], "enemy_blind_pr": [ - 2016 + 2015 ], "flash_assists_pr": [ - 2016 + 2015 ], "hs_pct": [ - 2016 + 2015 ], "kast_pct": [ - 2016 + 2015 ], "maps": [ - 2016 + 2015 ], "premier_rank": [ - 2016 + 2015 ], "rounds": [ - 2016 + 2015 ], "steam_id": [ - 2016 + 2015 ], "survival_pct": [ - 2016 + 2015 ], "time_to_damage_s": [ - 2016 + 2015 ], "traded_death_pct": [ - 2016 + 2015 ], "util_efficiency": [ - 2016 + 2015 ], "__typename": [ - 75 + 74 ] }, "player_career_stats_v_select_column": {}, @@ -43273,7 +44119,7 @@ export default { 29 ], "__typename": [ - 75 + 74 ] }, "player_career_stats_v_stddev_pop_fields": { @@ -43326,7 +44172,7 @@ export default { 29 ], "__typename": [ - 75 + 74 ] }, "player_career_stats_v_stddev_samp_fields": { @@ -43379,44 +44225,44 @@ export default { 29 ], "__typename": [ - 75 + 74 ] }, "player_career_stats_v_stream_cursor_input": { "initial_value": [ - 2212 + 2211 ], "ordering": [ - 229 + 228 ], "__typename": [ - 75 + 74 ] }, "player_career_stats_v_stream_cursor_value_input": { "accuracy": [ - 2014 + 2013 ], "accuracy_spotted": [ - 2014 + 2013 ], "counter_strafe_pct": [ - 2014 + 2013 ], "crosshair_deg": [ - 2014 + 2013 ], "enemy_blind_pr": [ - 2014 + 2013 ], "flash_assists_pr": [ - 2014 + 2013 ], "hs_pct": [ - 2014 + 2013 ], "kast_pct": [ - 2014 + 2013 ], "maps": [ 38 @@ -43428,48 +44274,48 @@ export default { 38 ], "steam_id": [ - 174 + 173 ], "survival_pct": [ - 2014 + 2013 ], "time_to_damage_s": [ - 2014 + 2013 ], "traded_death_pct": [ - 2014 + 2013 ], "util_efficiency": [ - 2014 + 2013 ], "__typename": [ - 75 + 74 ] }, "player_career_stats_v_sum_fields": { "accuracy": [ - 2014 + 2013 ], "accuracy_spotted": [ - 2014 + 2013 ], "counter_strafe_pct": [ - 2014 + 2013 ], "crosshair_deg": [ - 2014 + 2013 ], "enemy_blind_pr": [ - 2014 + 2013 ], "flash_assists_pr": [ - 2014 + 2013 ], "hs_pct": [ - 2014 + 2013 ], "kast_pct": [ - 2014 + 2013 ], "maps": [ 38 @@ -43481,22 +44327,22 @@ export default { 38 ], "steam_id": [ - 174 + 173 ], "survival_pct": [ - 2014 + 2013 ], "time_to_damage_s": [ - 2014 + 2013 ], "traded_death_pct": [ - 2014 + 2013 ], "util_efficiency": [ - 2014 + 2013 ], "__typename": [ - 75 + 74 ] }, "player_career_stats_v_var_pop_fields": { @@ -43549,7 +44395,7 @@ export default { 29 ], "__typename": [ - 75 + 74 ] }, "player_career_stats_v_var_samp_fields": { @@ -43602,7 +44448,7 @@ export default { 29 ], "__typename": [ - 75 + 74 ] }, "player_career_stats_v_variance_fields": { @@ -43655,7 +44501,7 @@ export default { 29 ], "__typename": [ - 75 + 74 ] }, "player_damages": { @@ -43663,31 +44509,31 @@ export default { 38 ], "attacked_location": [ - 75 + 74 ], "attacked_location_coordinates": [ - 75 + 74 ], "attacked_player": [ - 2915 + 2914 ], "attacked_steam_id": [ - 174 + 173 ], "attacked_team": [ - 75 + 74 ], "attacker_location": [ - 75 + 74 ], "attacker_location_coordinates": [ - 75 + 74 ], "attacker_steam_id": [ - 174 + 173 ], "attacker_team": [ - 75 + 74 ], "damage": [ 38 @@ -43696,93 +44542,93 @@ export default { 38 ], "deleted_at": [ - 3467 + 3466 ], "health": [ 38 ], "hitgroup": [ - 75 + 74 ], "id": [ - 3864 + 3863 ], "match": [ - 1831 + 1830 ], "match_id": [ - 3864 + 3863 ], "match_map": [ - 1669 + 1668 ], "match_map_id": [ - 3864 + 3863 ], "player": [ - 2915 + 2914 ], "round": [ - 2014 + 2013 ], "team_damage": [ 3 ], "time": [ - 3467 + 3466 ], "with": [ - 75 + 74 ], "__typename": [ - 75 + 74 ] }, "player_damages_aggregate": { "aggregate": [ - 2221 + 2220 ], "nodes": [ - 2217 + 2216 ], "__typename": [ - 75 + 74 ] }, "player_damages_aggregate_bool_exp": { "count": [ - 2220 + 2219 ], "__typename": [ - 75 + 74 ] }, "player_damages_aggregate_bool_exp_count": { "arguments": [ - 2238 + 2237 ], "distinct": [ 3 ], "filter": [ - 2226 + 2225 ], "predicate": [ 39 ], "__typename": [ - 75 + 74 ] }, "player_damages_aggregate_fields": { "avg": [ - 2224 + 2223 ], "count": [ 38, { "columns": [ - 2238, + 2237, "[player_damages_select_column!]" ], "distinct": [ @@ -43791,83 +44637,83 @@ export default { } ], "max": [ - 2230 + 2229 ], "min": [ - 2232 + 2231 ], "stddev": [ - 2240 + 2239 ], "stddev_pop": [ - 2242 + 2241 ], "stddev_samp": [ - 2244 + 2243 ], "sum": [ - 2248 + 2247 ], "var_pop": [ - 2252 + 2251 ], "var_samp": [ - 2254 + 2253 ], "variance": [ - 2256 + 2255 ], "__typename": [ - 75 + 74 ] }, "player_damages_aggregate_order_by": { "avg": [ - 2225 + 2224 ], "count": [ - 2016 + 2015 ], "max": [ - 2231 + 2230 ], "min": [ - 2233 + 2232 ], "stddev": [ - 2241 + 2240 ], "stddev_pop": [ - 2243 + 2242 ], "stddev_samp": [ - 2245 + 2244 ], "sum": [ - 2249 + 2248 ], "var_pop": [ - 2253 + 2252 ], "var_samp": [ - 2255 + 2254 ], "variance": [ - 2257 + 2256 ], "__typename": [ - 75 + 74 ] }, "player_damages_arr_rel_insert_input": { "data": [ - 2229 + 2228 ], "on_conflict": [ - 2235 + 2234 ], "__typename": [ - 75 + 74 ] }, "player_damages_avg_fields": { @@ -43893,74 +44739,74 @@ export default { 29 ], "__typename": [ - 75 + 74 ] }, "player_damages_avg_order_by": { "armor": [ - 2016 + 2015 ], "attacked_steam_id": [ - 2016 + 2015 ], "attacker_steam_id": [ - 2016 + 2015 ], "damage": [ - 2016 + 2015 ], "damage_armor": [ - 2016 + 2015 ], "health": [ - 2016 + 2015 ], "round": [ - 2016 + 2015 ], "__typename": [ - 75 + 74 ] }, "player_damages_bool_exp": { "_and": [ - 2226 + 2225 ], "_not": [ - 2226 + 2225 ], "_or": [ - 2226 + 2225 ], "armor": [ 39 ], "attacked_location": [ - 77 + 76 ], "attacked_location_coordinates": [ - 77 + 76 ], "attacked_player": [ - 2919 + 2918 ], "attacked_steam_id": [ - 176 + 175 ], "attacked_team": [ - 77 + 76 ], "attacker_location": [ - 77 + 76 ], "attacker_location_coordinates": [ - 77 + 76 ], "attacker_steam_id": [ - 176 + 175 ], "attacker_team": [ - 77 + 76 ], "damage": [ 39 @@ -43969,46 +44815,46 @@ export default { 39 ], "deleted_at": [ - 3468 + 3467 ], "health": [ 39 ], "hitgroup": [ - 77 + 76 ], "id": [ - 3866 + 3865 ], "match": [ - 1840 + 1839 ], "match_id": [ - 3866 + 3865 ], "match_map": [ - 1678 + 1677 ], "match_map_id": [ - 3866 + 3865 ], "player": [ - 2919 + 2918 ], "round": [ - 2015 + 2014 ], "team_damage": [ 4 ], "time": [ - 3468 + 3467 ], "with": [ - 77 + 76 ], "__typename": [ - 75 + 74 ] }, "player_damages_constraint": {}, @@ -44017,10 +44863,10 @@ export default { 38 ], "attacked_steam_id": [ - 174 + 173 ], "attacker_steam_id": [ - 174 + 173 ], "damage": [ 38 @@ -44032,10 +44878,10 @@ export default { 38 ], "round": [ - 2014 + 2013 ], "__typename": [ - 75 + 74 ] }, "player_damages_insert_input": { @@ -44043,31 +44889,31 @@ export default { 38 ], "attacked_location": [ - 75 + 74 ], "attacked_location_coordinates": [ - 75 + 74 ], "attacked_player": [ - 2926 + 2925 ], "attacked_steam_id": [ - 174 + 173 ], "attacked_team": [ - 75 + 74 ], "attacker_location": [ - 75 + 74 ], "attacker_location_coordinates": [ - 75 + 74 ], "attacker_steam_id": [ - 174 + 173 ], "attacker_team": [ - 75 + 74 ], "damage": [ 38 @@ -44076,43 +44922,43 @@ export default { 38 ], "deleted_at": [ - 3467 + 3466 ], "health": [ 38 ], "hitgroup": [ - 75 + 74 ], "id": [ - 3864 + 3863 ], "match": [ - 1849 + 1848 ], "match_id": [ - 3864 + 3863 ], "match_map": [ - 1687 + 1686 ], "match_map_id": [ - 3864 + 3863 ], "player": [ - 2926 + 2925 ], "round": [ - 2014 + 2013 ], "time": [ - 3467 + 3466 ], "with": [ - 75 + 74 ], "__typename": [ - 75 + 74 ] }, "player_damages_max_fields": { @@ -44120,28 +44966,28 @@ export default { 38 ], "attacked_location": [ - 75 + 74 ], "attacked_location_coordinates": [ - 75 + 74 ], "attacked_steam_id": [ - 174 + 173 ], "attacked_team": [ - 75 + 74 ], "attacker_location": [ - 75 + 74 ], "attacker_location_coordinates": [ - 75 + 74 ], "attacker_steam_id": [ - 174 + 173 ], "attacker_team": [ - 75 + 74 ], "damage": [ 38 @@ -44150,99 +44996,99 @@ export default { 38 ], "deleted_at": [ - 3467 + 3466 ], "health": [ 38 ], "hitgroup": [ - 75 + 74 ], "id": [ - 3864 + 3863 ], "match_id": [ - 3864 + 3863 ], "match_map_id": [ - 3864 + 3863 ], "round": [ - 2014 + 2013 ], "time": [ - 3467 + 3466 ], "with": [ - 75 + 74 ], "__typename": [ - 75 + 74 ] }, "player_damages_max_order_by": { "armor": [ - 2016 + 2015 ], "attacked_location": [ - 2016 + 2015 ], "attacked_location_coordinates": [ - 2016 + 2015 ], "attacked_steam_id": [ - 2016 + 2015 ], "attacked_team": [ - 2016 + 2015 ], "attacker_location": [ - 2016 + 2015 ], "attacker_location_coordinates": [ - 2016 + 2015 ], "attacker_steam_id": [ - 2016 + 2015 ], "attacker_team": [ - 2016 + 2015 ], "damage": [ - 2016 + 2015 ], "damage_armor": [ - 2016 + 2015 ], "deleted_at": [ - 2016 + 2015 ], "health": [ - 2016 + 2015 ], "hitgroup": [ - 2016 + 2015 ], "id": [ - 2016 + 2015 ], "match_id": [ - 2016 + 2015 ], "match_map_id": [ - 2016 + 2015 ], "round": [ - 2016 + 2015 ], "time": [ - 2016 + 2015 ], "with": [ - 2016 + 2015 ], "__typename": [ - 75 + 74 ] }, "player_damages_min_fields": { @@ -44250,28 +45096,28 @@ export default { 38 ], "attacked_location": [ - 75 + 74 ], "attacked_location_coordinates": [ - 75 + 74 ], "attacked_steam_id": [ - 174 + 173 ], "attacked_team": [ - 75 + 74 ], "attacker_location": [ - 75 + 74 ], "attacker_location_coordinates": [ - 75 + 74 ], "attacker_steam_id": [ - 174 + 173 ], "attacker_team": [ - 75 + 74 ], "damage": [ 38 @@ -44280,99 +45126,99 @@ export default { 38 ], "deleted_at": [ - 3467 + 3466 ], "health": [ 38 ], "hitgroup": [ - 75 + 74 ], "id": [ - 3864 + 3863 ], "match_id": [ - 3864 + 3863 ], "match_map_id": [ - 3864 + 3863 ], "round": [ - 2014 + 2013 ], "time": [ - 3467 + 3466 ], "with": [ - 75 + 74 ], "__typename": [ - 75 + 74 ] }, "player_damages_min_order_by": { "armor": [ - 2016 + 2015 ], "attacked_location": [ - 2016 + 2015 ], "attacked_location_coordinates": [ - 2016 + 2015 ], "attacked_steam_id": [ - 2016 + 2015 ], "attacked_team": [ - 2016 + 2015 ], "attacker_location": [ - 2016 + 2015 ], "attacker_location_coordinates": [ - 2016 + 2015 ], "attacker_steam_id": [ - 2016 + 2015 ], "attacker_team": [ - 2016 + 2015 ], "damage": [ - 2016 + 2015 ], "damage_armor": [ - 2016 + 2015 ], "deleted_at": [ - 2016 + 2015 ], "health": [ - 2016 + 2015 ], "hitgroup": [ - 2016 + 2015 ], "id": [ - 2016 + 2015 ], "match_id": [ - 2016 + 2015 ], "match_map_id": [ - 2016 + 2015 ], "round": [ - 2016 + 2015 ], "time": [ - 2016 + 2015 ], "with": [ - 2016 + 2015 ], "__typename": [ - 75 + 74 ] }, "player_damages_mutation_response": { @@ -44380,118 +45226,118 @@ export default { 38 ], "returning": [ - 2217 + 2216 ], "__typename": [ - 75 + 74 ] }, "player_damages_on_conflict": { "constraint": [ - 2227 + 2226 ], "update_columns": [ - 2250 + 2249 ], "where": [ - 2226 + 2225 ], "__typename": [ - 75 + 74 ] }, "player_damages_order_by": { "armor": [ - 2016 + 2015 ], "attacked_location": [ - 2016 + 2015 ], "attacked_location_coordinates": [ - 2016 + 2015 ], "attacked_player": [ - 2928 + 2927 ], "attacked_steam_id": [ - 2016 + 2015 ], "attacked_team": [ - 2016 + 2015 ], "attacker_location": [ - 2016 + 2015 ], "attacker_location_coordinates": [ - 2016 + 2015 ], "attacker_steam_id": [ - 2016 + 2015 ], "attacker_team": [ - 2016 + 2015 ], "damage": [ - 2016 + 2015 ], "damage_armor": [ - 2016 + 2015 ], "deleted_at": [ - 2016 + 2015 ], "health": [ - 2016 + 2015 ], "hitgroup": [ - 2016 + 2015 ], "id": [ - 2016 + 2015 ], "match": [ - 1851 + 1850 ], "match_id": [ - 2016 + 2015 ], "match_map": [ - 1689 + 1688 ], "match_map_id": [ - 2016 + 2015 ], "player": [ - 2928 + 2927 ], "round": [ - 2016 + 2015 ], "team_damage": [ - 2016 + 2015 ], "time": [ - 2016 + 2015 ], "with": [ - 2016 + 2015 ], "__typename": [ - 75 + 74 ] }, "player_damages_pk_columns_input": { "id": [ - 3864 + 3863 ], "match_map_id": [ - 3864 + 3863 ], "time": [ - 3467 + 3466 ], "__typename": [ - 75 + 74 ] }, "player_damages_select_column": {}, @@ -44500,28 +45346,28 @@ export default { 38 ], "attacked_location": [ - 75 + 74 ], "attacked_location_coordinates": [ - 75 + 74 ], "attacked_steam_id": [ - 174 + 173 ], "attacked_team": [ - 75 + 74 ], "attacker_location": [ - 75 + 74 ], "attacker_location_coordinates": [ - 75 + 74 ], "attacker_steam_id": [ - 174 + 173 ], "attacker_team": [ - 75 + 74 ], "damage": [ 38 @@ -44530,34 +45376,34 @@ export default { 38 ], "deleted_at": [ - 3467 + 3466 ], "health": [ 38 ], "hitgroup": [ - 75 + 74 ], "id": [ - 3864 + 3863 ], "match_id": [ - 3864 + 3863 ], "match_map_id": [ - 3864 + 3863 ], "round": [ - 2014 + 2013 ], "time": [ - 3467 + 3466 ], "with": [ - 75 + 74 ], "__typename": [ - 75 + 74 ] }, "player_damages_stddev_fields": { @@ -44583,33 +45429,33 @@ export default { 29 ], "__typename": [ - 75 + 74 ] }, "player_damages_stddev_order_by": { "armor": [ - 2016 + 2015 ], "attacked_steam_id": [ - 2016 + 2015 ], "attacker_steam_id": [ - 2016 + 2015 ], "damage": [ - 2016 + 2015 ], "damage_armor": [ - 2016 + 2015 ], "health": [ - 2016 + 2015 ], "round": [ - 2016 + 2015 ], "__typename": [ - 75 + 74 ] }, "player_damages_stddev_pop_fields": { @@ -44635,33 +45481,33 @@ export default { 29 ], "__typename": [ - 75 + 74 ] }, "player_damages_stddev_pop_order_by": { "armor": [ - 2016 + 2015 ], "attacked_steam_id": [ - 2016 + 2015 ], "attacker_steam_id": [ - 2016 + 2015 ], "damage": [ - 2016 + 2015 ], "damage_armor": [ - 2016 + 2015 ], "health": [ - 2016 + 2015 ], "round": [ - 2016 + 2015 ], "__typename": [ - 75 + 74 ] }, "player_damages_stddev_samp_fields": { @@ -44687,44 +45533,44 @@ export default { 29 ], "__typename": [ - 75 + 74 ] }, "player_damages_stddev_samp_order_by": { "armor": [ - 2016 + 2015 ], "attacked_steam_id": [ - 2016 + 2015 ], "attacker_steam_id": [ - 2016 + 2015 ], "damage": [ - 2016 + 2015 ], "damage_armor": [ - 2016 + 2015 ], "health": [ - 2016 + 2015 ], "round": [ - 2016 + 2015 ], "__typename": [ - 75 + 74 ] }, "player_damages_stream_cursor_input": { "initial_value": [ - 2247 + 2246 ], "ordering": [ - 229 + 228 ], "__typename": [ - 75 + 74 ] }, "player_damages_stream_cursor_value_input": { @@ -44732,28 +45578,28 @@ export default { 38 ], "attacked_location": [ - 75 + 74 ], "attacked_location_coordinates": [ - 75 + 74 ], "attacked_steam_id": [ - 174 + 173 ], "attacked_team": [ - 75 + 74 ], "attacker_location": [ - 75 + 74 ], "attacker_location_coordinates": [ - 75 + 74 ], "attacker_steam_id": [ - 174 + 173 ], "attacker_team": [ - 75 + 74 ], "damage": [ 38 @@ -44762,34 +45608,34 @@ export default { 38 ], "deleted_at": [ - 3467 + 3466 ], "health": [ 38 ], "hitgroup": [ - 75 + 74 ], "id": [ - 3864 + 3863 ], "match_id": [ - 3864 + 3863 ], "match_map_id": [ - 3864 + 3863 ], "round": [ - 2014 + 2013 ], "time": [ - 3467 + 3466 ], "with": [ - 75 + 74 ], "__typename": [ - 75 + 74 ] }, "player_damages_sum_fields": { @@ -44797,10 +45643,10 @@ export default { 38 ], "attacked_steam_id": [ - 174 + 173 ], "attacker_steam_id": [ - 174 + 173 ], "damage": [ 38 @@ -44812,51 +45658,51 @@ export default { 38 ], "round": [ - 2014 + 2013 ], "__typename": [ - 75 + 74 ] }, "player_damages_sum_order_by": { "armor": [ - 2016 + 2015 ], "attacked_steam_id": [ - 2016 + 2015 ], "attacker_steam_id": [ - 2016 + 2015 ], "damage": [ - 2016 + 2015 ], "damage_armor": [ - 2016 + 2015 ], "health": [ - 2016 + 2015 ], "round": [ - 2016 + 2015 ], "__typename": [ - 75 + 74 ] }, "player_damages_update_column": {}, "player_damages_updates": { "_inc": [ - 2228 + 2227 ], "_set": [ - 2239 + 2238 ], "where": [ - 2226 + 2225 ], "__typename": [ - 75 + 74 ] }, "player_damages_var_pop_fields": { @@ -44882,33 +45728,33 @@ export default { 29 ], "__typename": [ - 75 + 74 ] }, "player_damages_var_pop_order_by": { "armor": [ - 2016 + 2015 ], "attacked_steam_id": [ - 2016 + 2015 ], "attacker_steam_id": [ - 2016 + 2015 ], "damage": [ - 2016 + 2015 ], "damage_armor": [ - 2016 + 2015 ], "health": [ - 2016 + 2015 ], "round": [ - 2016 + 2015 ], "__typename": [ - 75 + 74 ] }, "player_damages_var_samp_fields": { @@ -44934,33 +45780,33 @@ export default { 29 ], "__typename": [ - 75 + 74 ] }, "player_damages_var_samp_order_by": { "armor": [ - 2016 + 2015 ], "attacked_steam_id": [ - 2016 + 2015 ], "attacker_steam_id": [ - 2016 + 2015 ], "damage": [ - 2016 + 2015 ], "damage_armor": [ - 2016 + 2015 ], "health": [ - 2016 + 2015 ], "round": [ - 2016 + 2015 ], "__typename": [ - 75 + 74 ] }, "player_damages_variance_fields": { @@ -44986,71 +45832,71 @@ export default { 29 ], "__typename": [ - 75 + 74 ] }, "player_damages_variance_order_by": { "armor": [ - 2016 + 2015 ], "attacked_steam_id": [ - 2016 + 2015 ], "attacker_steam_id": [ - 2016 + 2015 ], "damage": [ - 2016 + 2015 ], "damage_armor": [ - 2016 + 2015 ], "health": [ - 2016 + 2015 ], "round": [ - 2016 + 2015 ], "__typename": [ - 75 + 74 ] }, "player_elo": { "actual_score": [ - 1089 + 1088 ], "assists": [ 38 ], "change": [ - 2014 + 2013 ], "created_at": [ - 3467 + 3466 ], "current": [ - 2014 + 2013 ], "damage": [ 38 ], "damage_percent": [ - 1089 + 1088 ], "deaths": [ 38 ], "expected_score": [ - 1089 + 1088 ], "impact": [ - 2014 + 2013 ], "k_factor": [ 38 ], "kda": [ - 1089 + 1088 ], "kills": [ 38 @@ -45062,59 +45908,59 @@ export default { 38 ], "match": [ - 1831 + 1830 ], "match_id": [ - 3864 + 3863 ], "opponent_team_elo_avg": [ - 1089 + 1088 ], "performance_multiplier": [ - 1089 + 1088 ], "player": [ - 2915 + 2914 ], "player_team_elo_avg": [ - 1089 + 1088 ], "series_multiplier": [ 38 ], "steam_id": [ - 174 + 173 ], "team_avg_kda": [ - 1089 + 1088 ], "type": [ - 729 + 728 ], "__typename": [ - 75 + 74 ] }, "player_elo_aggregate": { "aggregate": [ - 2260 + 2259 ], "nodes": [ - 2258 + 2257 ], "__typename": [ - 75 + 74 ] }, "player_elo_aggregate_fields": { "avg": [ - 2261 + 2260 ], "count": [ 38, { "columns": [ - 2272, + 2271, "[player_elo_select_column!]" ], "distinct": [ @@ -45123,34 +45969,34 @@ export default { } ], "max": [ - 2266 + 2265 ], "min": [ - 2267 + 2266 ], "stddev": [ - 2274 + 2273 ], "stddev_pop": [ - 2275 + 2274 ], "stddev_samp": [ - 2276 + 2275 ], "sum": [ - 2279 + 2278 ], "var_pop": [ - 2282 + 2281 ], "var_samp": [ - 2283 + 2282 ], "variance": [ - 2284 + 2283 ], "__typename": [ - 75 + 74 ] }, "player_elo_avg_fields": { @@ -45215,54 +46061,54 @@ export default { 29 ], "__typename": [ - 75 + 74 ] }, "player_elo_bool_exp": { "_and": [ - 2262 + 2261 ], "_not": [ - 2262 + 2261 ], "_or": [ - 2262 + 2261 ], "actual_score": [ - 1090 + 1089 ], "assists": [ 39 ], "change": [ - 2015 + 2014 ], "created_at": [ - 3468 + 3467 ], "current": [ - 2015 + 2014 ], "damage": [ 39 ], "damage_percent": [ - 1090 + 1089 ], "deaths": [ 39 ], "expected_score": [ - 1090 + 1089 ], "impact": [ - 2015 + 2014 ], "k_factor": [ 39 ], "kda": [ - 1090 + 1089 ], "kills": [ 39 @@ -45274,73 +46120,73 @@ export default { 39 ], "match": [ - 1840 + 1839 ], "match_id": [ - 3866 + 3865 ], "opponent_team_elo_avg": [ - 1090 + 1089 ], "performance_multiplier": [ - 1090 + 1089 ], "player": [ - 2919 + 2918 ], "player_team_elo_avg": [ - 1090 + 1089 ], "series_multiplier": [ 39 ], "steam_id": [ - 176 + 175 ], "team_avg_kda": [ - 1090 + 1089 ], "type": [ - 730 + 729 ], "__typename": [ - 75 + 74 ] }, "player_elo_constraint": {}, "player_elo_inc_input": { "actual_score": [ - 1089 + 1088 ], "assists": [ 38 ], "change": [ - 2014 + 2013 ], "current": [ - 2014 + 2013 ], "damage": [ 38 ], "damage_percent": [ - 1089 + 1088 ], "deaths": [ 38 ], "expected_score": [ - 1089 + 1088 ], "impact": [ - 2014 + 2013 ], "k_factor": [ 38 ], "kda": [ - 1089 + 1088 ], "kills": [ 38 @@ -45352,63 +46198,63 @@ export default { 38 ], "opponent_team_elo_avg": [ - 1089 + 1088 ], "performance_multiplier": [ - 1089 + 1088 ], "player_team_elo_avg": [ - 1089 + 1088 ], "series_multiplier": [ 38 ], "steam_id": [ - 174 + 173 ], "team_avg_kda": [ - 1089 + 1088 ], "__typename": [ - 75 + 74 ] }, "player_elo_insert_input": { "actual_score": [ - 1089 + 1088 ], "assists": [ 38 ], "change": [ - 2014 + 2013 ], "created_at": [ - 3467 + 3466 ], "current": [ - 2014 + 2013 ], "damage": [ 38 ], "damage_percent": [ - 1089 + 1088 ], "deaths": [ 38 ], "expected_score": [ - 1089 + 1088 ], "impact": [ - 2014 + 2013 ], "k_factor": [ 38 ], "kda": [ - 1089 + 1088 ], "kills": [ 38 @@ -45420,75 +46266,75 @@ export default { 38 ], "match": [ - 1849 + 1848 ], "match_id": [ - 3864 + 3863 ], "opponent_team_elo_avg": [ - 1089 + 1088 ], "performance_multiplier": [ - 1089 + 1088 ], "player": [ - 2926 + 2925 ], "player_team_elo_avg": [ - 1089 + 1088 ], "series_multiplier": [ 38 ], "steam_id": [ - 174 + 173 ], "team_avg_kda": [ - 1089 + 1088 ], "type": [ - 729 + 728 ], "__typename": [ - 75 + 74 ] }, "player_elo_max_fields": { "actual_score": [ - 1089 + 1088 ], "assists": [ 38 ], "change": [ - 2014 + 2013 ], "created_at": [ - 3467 + 3466 ], "current": [ - 2014 + 2013 ], "damage": [ 38 ], "damage_percent": [ - 1089 + 1088 ], "deaths": [ 38 ], "expected_score": [ - 1089 + 1088 ], "impact": [ - 2014 + 2013 ], "k_factor": [ 38 ], "kda": [ - 1089 + 1088 ], "kills": [ 38 @@ -45500,66 +46346,66 @@ export default { 38 ], "match_id": [ - 3864 + 3863 ], "opponent_team_elo_avg": [ - 1089 + 1088 ], "performance_multiplier": [ - 1089 + 1088 ], "player_team_elo_avg": [ - 1089 + 1088 ], "series_multiplier": [ 38 ], "steam_id": [ - 174 + 173 ], "team_avg_kda": [ - 1089 + 1088 ], "__typename": [ - 75 + 74 ] }, "player_elo_min_fields": { "actual_score": [ - 1089 + 1088 ], "assists": [ 38 ], "change": [ - 2014 + 2013 ], "created_at": [ - 3467 + 3466 ], "current": [ - 2014 + 2013 ], "damage": [ 38 ], "damage_percent": [ - 1089 + 1088 ], "deaths": [ 38 ], "expected_score": [ - 1089 + 1088 ], "impact": [ - 2014 + 2013 ], "k_factor": [ 38 ], "kda": [ - 1089 + 1088 ], "kills": [ 38 @@ -45571,28 +46417,28 @@ export default { 38 ], "match_id": [ - 3864 + 3863 ], "opponent_team_elo_avg": [ - 1089 + 1088 ], "performance_multiplier": [ - 1089 + 1088 ], "player_team_elo_avg": [ - 1089 + 1088 ], "series_multiplier": [ 38 ], "steam_id": [ - 174 + 173 ], "team_avg_kda": [ - 1089 + 1088 ], "__typename": [ - 75 + 74 ] }, "player_elo_mutation_response": { @@ -45600,157 +46446,157 @@ export default { 38 ], "returning": [ - 2258 + 2257 ], "__typename": [ - 75 + 74 ] }, "player_elo_on_conflict": { "constraint": [ - 2263 + 2262 ], "update_columns": [ - 2280 + 2279 ], "where": [ - 2262 + 2261 ], "__typename": [ - 75 + 74 ] }, "player_elo_order_by": { "actual_score": [ - 2016 + 2015 ], "assists": [ - 2016 + 2015 ], "change": [ - 2016 + 2015 ], "created_at": [ - 2016 + 2015 ], "current": [ - 2016 + 2015 ], "damage": [ - 2016 + 2015 ], "damage_percent": [ - 2016 + 2015 ], "deaths": [ - 2016 + 2015 ], "expected_score": [ - 2016 + 2015 ], "impact": [ - 2016 + 2015 ], "k_factor": [ - 2016 + 2015 ], "kda": [ - 2016 + 2015 ], "kills": [ - 2016 + 2015 ], "map_losses": [ - 2016 + 2015 ], "map_wins": [ - 2016 + 2015 ], "match": [ - 1851 + 1850 ], "match_id": [ - 2016 + 2015 ], "opponent_team_elo_avg": [ - 2016 + 2015 ], "performance_multiplier": [ - 2016 + 2015 ], "player": [ - 2928 + 2927 ], "player_team_elo_avg": [ - 2016 + 2015 ], "series_multiplier": [ - 2016 + 2015 ], "steam_id": [ - 2016 + 2015 ], "team_avg_kda": [ - 2016 + 2015 ], "type": [ - 2016 + 2015 ], "__typename": [ - 75 + 74 ] }, "player_elo_pk_columns_input": { "match_id": [ - 3864 + 3863 ], "steam_id": [ - 174 + 173 ], "type": [ - 729 + 728 ], "__typename": [ - 75 + 74 ] }, "player_elo_select_column": {}, "player_elo_set_input": { "actual_score": [ - 1089 + 1088 ], "assists": [ 38 ], "change": [ - 2014 + 2013 ], "created_at": [ - 3467 + 3466 ], "current": [ - 2014 + 2013 ], "damage": [ 38 ], "damage_percent": [ - 1089 + 1088 ], "deaths": [ 38 ], "expected_score": [ - 1089 + 1088 ], "impact": [ - 2014 + 2013 ], "k_factor": [ 38 ], "kda": [ - 1089 + 1088 ], "kills": [ 38 @@ -45762,31 +46608,31 @@ export default { 38 ], "match_id": [ - 3864 + 3863 ], "opponent_team_elo_avg": [ - 1089 + 1088 ], "performance_multiplier": [ - 1089 + 1088 ], "player_team_elo_avg": [ - 1089 + 1088 ], "series_multiplier": [ 38 ], "steam_id": [ - 174 + 173 ], "team_avg_kda": [ - 1089 + 1088 ], "type": [ - 729 + 728 ], "__typename": [ - 75 + 74 ] }, "player_elo_stddev_fields": { @@ -45851,7 +46697,7 @@ export default { 29 ], "__typename": [ - 75 + 74 ] }, "player_elo_stddev_pop_fields": { @@ -45916,7 +46762,7 @@ export default { 29 ], "__typename": [ - 75 + 74 ] }, "player_elo_stddev_samp_fields": { @@ -45981,56 +46827,56 @@ export default { 29 ], "__typename": [ - 75 + 74 ] }, "player_elo_stream_cursor_input": { "initial_value": [ - 2278 + 2277 ], "ordering": [ - 229 + 228 ], "__typename": [ - 75 + 74 ] }, "player_elo_stream_cursor_value_input": { "actual_score": [ - 1089 + 1088 ], "assists": [ 38 ], "change": [ - 2014 + 2013 ], "created_at": [ - 3467 + 3466 ], "current": [ - 2014 + 2013 ], "damage": [ 38 ], "damage_percent": [ - 1089 + 1088 ], "deaths": [ 38 ], "expected_score": [ - 1089 + 1088 ], "impact": [ - 2014 + 2013 ], "k_factor": [ 38 ], "kda": [ - 1089 + 1088 ], "kills": [ 38 @@ -46042,66 +46888,66 @@ export default { 38 ], "match_id": [ - 3864 + 3863 ], "opponent_team_elo_avg": [ - 1089 + 1088 ], "performance_multiplier": [ - 1089 + 1088 ], "player_team_elo_avg": [ - 1089 + 1088 ], "series_multiplier": [ 38 ], "steam_id": [ - 174 + 173 ], "team_avg_kda": [ - 1089 + 1088 ], "type": [ - 729 + 728 ], "__typename": [ - 75 + 74 ] }, "player_elo_sum_fields": { "actual_score": [ - 1089 + 1088 ], "assists": [ 38 ], "change": [ - 2014 + 2013 ], "current": [ - 2014 + 2013 ], "damage": [ 38 ], "damage_percent": [ - 1089 + 1088 ], "deaths": [ 38 ], "expected_score": [ - 1089 + 1088 ], "impact": [ - 2014 + 2013 ], "k_factor": [ 38 ], "kda": [ - 1089 + 1088 ], "kills": [ 38 @@ -46113,40 +46959,40 @@ export default { 38 ], "opponent_team_elo_avg": [ - 1089 + 1088 ], "performance_multiplier": [ - 1089 + 1088 ], "player_team_elo_avg": [ - 1089 + 1088 ], "series_multiplier": [ 38 ], "steam_id": [ - 174 + 173 ], "team_avg_kda": [ - 1089 + 1088 ], "__typename": [ - 75 + 74 ] }, "player_elo_update_column": {}, "player_elo_updates": { "_inc": [ - 2264 + 2263 ], "_set": [ - 2273 + 2272 ], "where": [ - 2262 + 2261 ], "__typename": [ - 75 + 74 ] }, "player_elo_var_pop_fields": { @@ -46211,7 +47057,7 @@ export default { 29 ], "__typename": [ - 75 + 74 ] }, "player_elo_var_samp_fields": { @@ -46276,7 +47122,7 @@ export default { 29 ], "__typename": [ - 75 + 74 ] }, "player_elo_variance_fields": { @@ -46341,7 +47187,7 @@ export default { 29 ], "__typename": [ - 75 + 74 ] }, "player_faceit_rank_history": { @@ -46349,19 +47195,19 @@ export default { 38 ], "id": [ - 3864 + 3863 ], "match": [ - 1831 + 1830 ], "match_id": [ - 3864 + 3863 ], "observed_at": [ - 3467 + 3466 ], "player": [ - 2915 + 2914 ], "previous_rank": [ 38 @@ -46370,57 +47216,57 @@ export default { 38 ], "steam_id": [ - 174 + 173 ], "__typename": [ - 75 + 74 ] }, "player_faceit_rank_history_aggregate": { "aggregate": [ - 2289 + 2288 ], "nodes": [ - 2285 + 2284 ], "__typename": [ - 75 + 74 ] }, "player_faceit_rank_history_aggregate_bool_exp": { "count": [ - 2288 + 2287 ], "__typename": [ - 75 + 74 ] }, "player_faceit_rank_history_aggregate_bool_exp_count": { "arguments": [ - 2306 + 2305 ], "distinct": [ 3 ], "filter": [ - 2294 + 2293 ], "predicate": [ 39 ], "__typename": [ - 75 + 74 ] }, "player_faceit_rank_history_aggregate_fields": { "avg": [ - 2292 + 2291 ], "count": [ 38, { "columns": [ - 2306, + 2305, "[player_faceit_rank_history_select_column!]" ], "distinct": [ @@ -46428,6 +47274,44 @@ export default { ] } ], + "max": [ + 2297 + ], + "min": [ + 2299 + ], + "stddev": [ + 2307 + ], + "stddev_pop": [ + 2309 + ], + "stddev_samp": [ + 2311 + ], + "sum": [ + 2315 + ], + "var_pop": [ + 2319 + ], + "var_samp": [ + 2321 + ], + "variance": [ + 2323 + ], + "__typename": [ + 74 + ] + }, + "player_faceit_rank_history_aggregate_order_by": { + "avg": [ + 2292 + ], + "count": [ + 2015 + ], "max": [ 2298 ], @@ -46456,56 +47340,18 @@ export default { 2324 ], "__typename": [ - 75 - ] - }, - "player_faceit_rank_history_aggregate_order_by": { - "avg": [ - 2293 - ], - "count": [ - 2016 - ], - "max": [ - 2299 - ], - "min": [ - 2301 - ], - "stddev": [ - 2309 - ], - "stddev_pop": [ - 2311 - ], - "stddev_samp": [ - 2313 - ], - "sum": [ - 2317 - ], - "var_pop": [ - 2321 - ], - "var_samp": [ - 2323 - ], - "variance": [ - 2325 - ], - "__typename": [ - 75 + 74 ] }, "player_faceit_rank_history_arr_rel_insert_input": { "data": [ - 2297 + 2296 ], "on_conflict": [ - 2303 + 2302 ], "__typename": [ - 75 + 74 ] }, "player_faceit_rank_history_avg_fields": { @@ -46522,53 +47368,53 @@ export default { 29 ], "__typename": [ - 75 + 74 ] }, "player_faceit_rank_history_avg_order_by": { "elo": [ - 2016 + 2015 ], "previous_rank": [ - 2016 + 2015 ], "skill_level": [ - 2016 + 2015 ], "steam_id": [ - 2016 + 2015 ], "__typename": [ - 75 + 74 ] }, "player_faceit_rank_history_bool_exp": { "_and": [ - 2294 + 2293 ], "_not": [ - 2294 + 2293 ], "_or": [ - 2294 + 2293 ], "elo": [ 39 ], "id": [ - 3866 + 3865 ], "match": [ - 1840 + 1839 ], "match_id": [ - 3866 + 3865 ], "observed_at": [ - 3468 + 3467 ], "player": [ - 2919 + 2918 ], "previous_rank": [ 39 @@ -46577,10 +47423,10 @@ export default { 39 ], "steam_id": [ - 176 + 175 ], "__typename": [ - 75 + 74 ] }, "player_faceit_rank_history_constraint": {}, @@ -46595,10 +47441,10 @@ export default { 38 ], "steam_id": [ - 174 + 173 ], "__typename": [ - 75 + 74 ] }, "player_faceit_rank_history_insert_input": { @@ -46606,19 +47452,19 @@ export default { 38 ], "id": [ - 3864 + 3863 ], "match": [ - 1849 + 1848 ], "match_id": [ - 3864 + 3863 ], "observed_at": [ - 3467 + 3466 ], "player": [ - 2926 + 2925 ], "previous_rank": [ 38 @@ -46627,10 +47473,10 @@ export default { 38 ], "steam_id": [ - 174 + 173 ], "__typename": [ - 75 + 74 ] }, "player_faceit_rank_history_max_fields": { @@ -46638,13 +47484,13 @@ export default { 38 ], "id": [ - 3864 + 3863 ], "match_id": [ - 3864 + 3863 ], "observed_at": [ - 3467 + 3466 ], "previous_rank": [ 38 @@ -46653,36 +47499,36 @@ export default { 38 ], "steam_id": [ - 174 + 173 ], "__typename": [ - 75 + 74 ] }, "player_faceit_rank_history_max_order_by": { "elo": [ - 2016 + 2015 ], "id": [ - 2016 + 2015 ], "match_id": [ - 2016 + 2015 ], "observed_at": [ - 2016 + 2015 ], "previous_rank": [ - 2016 + 2015 ], "skill_level": [ - 2016 + 2015 ], "steam_id": [ - 2016 + 2015 ], "__typename": [ - 75 + 74 ] }, "player_faceit_rank_history_min_fields": { @@ -46690,13 +47536,13 @@ export default { 38 ], "id": [ - 3864 + 3863 ], "match_id": [ - 3864 + 3863 ], "observed_at": [ - 3467 + 3466 ], "previous_rank": [ 38 @@ -46705,36 +47551,36 @@ export default { 38 ], "steam_id": [ - 174 + 173 ], "__typename": [ - 75 + 74 ] }, "player_faceit_rank_history_min_order_by": { "elo": [ - 2016 + 2015 ], "id": [ - 2016 + 2015 ], "match_id": [ - 2016 + 2015 ], "observed_at": [ - 2016 + 2015 ], "previous_rank": [ - 2016 + 2015 ], "skill_level": [ - 2016 + 2015 ], "steam_id": [ - 2016 + 2015 ], "__typename": [ - 75 + 74 ] }, "player_faceit_rank_history_mutation_response": { @@ -46742,64 +47588,64 @@ export default { 38 ], "returning": [ - 2285 + 2284 ], "__typename": [ - 75 + 74 ] }, "player_faceit_rank_history_on_conflict": { "constraint": [ - 2295 + 2294 ], "update_columns": [ - 2318 + 2317 ], "where": [ - 2294 + 2293 ], "__typename": [ - 75 + 74 ] }, "player_faceit_rank_history_order_by": { "elo": [ - 2016 + 2015 ], "id": [ - 2016 + 2015 ], "match": [ - 1851 + 1850 ], "match_id": [ - 2016 + 2015 ], "observed_at": [ - 2016 + 2015 ], "player": [ - 2928 + 2927 ], "previous_rank": [ - 2016 + 2015 ], "skill_level": [ - 2016 + 2015 ], "steam_id": [ - 2016 + 2015 ], "__typename": [ - 75 + 74 ] }, "player_faceit_rank_history_pk_columns_input": { "id": [ - 3864 + 3863 ], "__typename": [ - 75 + 74 ] }, "player_faceit_rank_history_select_column": {}, @@ -46808,13 +47654,13 @@ export default { 38 ], "id": [ - 3864 + 3863 ], "match_id": [ - 3864 + 3863 ], "observed_at": [ - 3467 + 3466 ], "previous_rank": [ 38 @@ -46823,10 +47669,10 @@ export default { 38 ], "steam_id": [ - 174 + 173 ], "__typename": [ - 75 + 74 ] }, "player_faceit_rank_history_stddev_fields": { @@ -46843,24 +47689,24 @@ export default { 29 ], "__typename": [ - 75 + 74 ] }, "player_faceit_rank_history_stddev_order_by": { "elo": [ - 2016 + 2015 ], "previous_rank": [ - 2016 + 2015 ], "skill_level": [ - 2016 + 2015 ], "steam_id": [ - 2016 + 2015 ], "__typename": [ - 75 + 74 ] }, "player_faceit_rank_history_stddev_pop_fields": { @@ -46877,24 +47723,24 @@ export default { 29 ], "__typename": [ - 75 + 74 ] }, "player_faceit_rank_history_stddev_pop_order_by": { "elo": [ - 2016 + 2015 ], "previous_rank": [ - 2016 + 2015 ], "skill_level": [ - 2016 + 2015 ], "steam_id": [ - 2016 + 2015 ], "__typename": [ - 75 + 74 ] }, "player_faceit_rank_history_stddev_samp_fields": { @@ -46911,35 +47757,35 @@ export default { 29 ], "__typename": [ - 75 + 74 ] }, "player_faceit_rank_history_stddev_samp_order_by": { "elo": [ - 2016 + 2015 ], "previous_rank": [ - 2016 + 2015 ], "skill_level": [ - 2016 + 2015 ], "steam_id": [ - 2016 + 2015 ], "__typename": [ - 75 + 74 ] }, "player_faceit_rank_history_stream_cursor_input": { "initial_value": [ - 2315 + 2314 ], "ordering": [ - 229 + 228 ], "__typename": [ - 75 + 74 ] }, "player_faceit_rank_history_stream_cursor_value_input": { @@ -46947,13 +47793,13 @@ export default { 38 ], "id": [ - 3864 + 3863 ], "match_id": [ - 3864 + 3863 ], "observed_at": [ - 3467 + 3466 ], "previous_rank": [ 38 @@ -46962,10 +47808,10 @@ export default { 38 ], "steam_id": [ - 174 + 173 ], "__typename": [ - 75 + 74 ] }, "player_faceit_rank_history_sum_fields": { @@ -46979,42 +47825,42 @@ export default { 38 ], "steam_id": [ - 174 + 173 ], "__typename": [ - 75 + 74 ] }, "player_faceit_rank_history_sum_order_by": { "elo": [ - 2016 + 2015 ], "previous_rank": [ - 2016 + 2015 ], "skill_level": [ - 2016 + 2015 ], "steam_id": [ - 2016 + 2015 ], "__typename": [ - 75 + 74 ] }, "player_faceit_rank_history_update_column": {}, "player_faceit_rank_history_updates": { "_inc": [ - 2296 + 2295 ], "_set": [ - 2307 + 2306 ], "where": [ - 2294 + 2293 ], "__typename": [ - 75 + 74 ] }, "player_faceit_rank_history_var_pop_fields": { @@ -47031,24 +47877,24 @@ export default { 29 ], "__typename": [ - 75 + 74 ] }, "player_faceit_rank_history_var_pop_order_by": { "elo": [ - 2016 + 2015 ], "previous_rank": [ - 2016 + 2015 ], "skill_level": [ - 2016 + 2015 ], "steam_id": [ - 2016 + 2015 ], "__typename": [ - 75 + 74 ] }, "player_faceit_rank_history_var_samp_fields": { @@ -47065,24 +47911,24 @@ export default { 29 ], "__typename": [ - 75 + 74 ] }, "player_faceit_rank_history_var_samp_order_by": { "elo": [ - 2016 + 2015 ], "previous_rank": [ - 2016 + 2015 ], "skill_level": [ - 2016 + 2015 ], "steam_id": [ - 2016 + 2015 ], "__typename": [ - 75 + 74 ] }, "player_faceit_rank_history_variance_fields": { @@ -47099,53 +47945,53 @@ export default { 29 ], "__typename": [ - 75 + 74 ] }, "player_faceit_rank_history_variance_order_by": { "elo": [ - 2016 + 2015 ], "previous_rank": [ - 2016 + 2015 ], "skill_level": [ - 2016 + 2015 ], "steam_id": [ - 2016 + 2015 ], "__typename": [ - 75 + 74 ] }, "player_flashes": { "attacked_steam_id": [ - 174 + 173 ], "attacker_steam_id": [ - 174 + 173 ], "blinded": [ - 2915 + 2914 ], "deleted_at": [ - 3467 + 3466 ], "duration": [ - 2014 + 2013 ], "match": [ - 1831 + 1830 ], "match_id": [ - 3864 + 3863 ], "match_map": [ - 1669 + 1668 ], "match_map_id": [ - 3864 + 3863 ], "round": [ 38 @@ -47154,100 +48000,100 @@ export default { 3 ], "thrown_by": [ - 2915 + 2914 ], "time": [ - 3467 + 3466 ], "__typename": [ - 75 + 74 ] }, "player_flashes_aggregate": { "aggregate": [ - 2332 + 2331 ], "nodes": [ - 2326 + 2325 ], "__typename": [ - 75 + 74 ] }, "player_flashes_aggregate_bool_exp": { "bool_and": [ - 2329 + 2328 ], "bool_or": [ - 2330 + 2329 ], "count": [ - 2331 + 2330 ], "__typename": [ - 75 + 74 ] }, "player_flashes_aggregate_bool_exp_bool_and": { "arguments": [ - 2350 + 2349 ], "distinct": [ 3 ], "filter": [ - 2337 + 2336 ], "predicate": [ 4 ], "__typename": [ - 75 + 74 ] }, "player_flashes_aggregate_bool_exp_bool_or": { "arguments": [ - 2351 + 2350 ], "distinct": [ 3 ], "filter": [ - 2337 + 2336 ], "predicate": [ 4 ], "__typename": [ - 75 + 74 ] }, "player_flashes_aggregate_bool_exp_count": { "arguments": [ - 2349 + 2348 ], "distinct": [ 3 ], "filter": [ - 2337 + 2336 ], "predicate": [ 39 ], "__typename": [ - 75 + 74 ] }, "player_flashes_aggregate_fields": { "avg": [ - 2335 + 2334 ], "count": [ 38, { "columns": [ - 2349, + 2348, "[player_flashes_select_column!]" ], "distinct": [ @@ -47255,6 +48101,44 @@ export default { ] } ], + "max": [ + 2340 + ], + "min": [ + 2342 + ], + "stddev": [ + 2352 + ], + "stddev_pop": [ + 2354 + ], + "stddev_samp": [ + 2356 + ], + "sum": [ + 2360 + ], + "var_pop": [ + 2364 + ], + "var_samp": [ + 2366 + ], + "variance": [ + 2368 + ], + "__typename": [ + 74 + ] + }, + "player_flashes_aggregate_order_by": { + "avg": [ + 2335 + ], + "count": [ + 2015 + ], "max": [ 2341 ], @@ -47283,56 +48167,18 @@ export default { 2369 ], "__typename": [ - 75 - ] - }, - "player_flashes_aggregate_order_by": { - "avg": [ - 2336 - ], - "count": [ - 2016 - ], - "max": [ - 2342 - ], - "min": [ - 2344 - ], - "stddev": [ - 2354 - ], - "stddev_pop": [ - 2356 - ], - "stddev_samp": [ - 2358 - ], - "sum": [ - 2362 - ], - "var_pop": [ - 2366 - ], - "var_samp": [ - 2368 - ], - "variance": [ - 2370 - ], - "__typename": [ - 75 + 74 ] }, "player_flashes_arr_rel_insert_input": { "data": [ - 2340 + 2339 ], "on_conflict": [ - 2346 + 2345 ], "__typename": [ - 75 + 74 ] }, "player_flashes_avg_fields": { @@ -47349,62 +48195,62 @@ export default { 29 ], "__typename": [ - 75 + 74 ] }, "player_flashes_avg_order_by": { "attacked_steam_id": [ - 2016 + 2015 ], "attacker_steam_id": [ - 2016 + 2015 ], "duration": [ - 2016 + 2015 ], "round": [ - 2016 + 2015 ], "__typename": [ - 75 + 74 ] }, "player_flashes_bool_exp": { "_and": [ - 2337 + 2336 ], "_not": [ - 2337 + 2336 ], "_or": [ - 2337 + 2336 ], "attacked_steam_id": [ - 176 + 175 ], "attacker_steam_id": [ - 176 + 175 ], "blinded": [ - 2919 + 2918 ], "deleted_at": [ - 3468 + 3467 ], "duration": [ - 2015 + 2014 ], "match": [ - 1840 + 1839 ], "match_id": [ - 3866 + 3865 ], "match_map": [ - 1678 + 1677 ], "match_map_id": [ - 3866 + 3865 ], "round": [ 39 @@ -47413,60 +48259,60 @@ export default { 4 ], "thrown_by": [ - 2919 + 2918 ], "time": [ - 3468 + 3467 ], "__typename": [ - 75 + 74 ] }, "player_flashes_constraint": {}, "player_flashes_inc_input": { "attacked_steam_id": [ - 174 + 173 ], "attacker_steam_id": [ - 174 + 173 ], "duration": [ - 2014 + 2013 ], "round": [ 38 ], "__typename": [ - 75 + 74 ] }, "player_flashes_insert_input": { "attacked_steam_id": [ - 174 + 173 ], "attacker_steam_id": [ - 174 + 173 ], "blinded": [ - 2926 + 2925 ], "deleted_at": [ - 3467 + 3466 ], "duration": [ - 2014 + 2013 ], "match": [ - 1849 + 1848 ], "match_id": [ - 3864 + 3863 ], "match_map": [ - 1687 + 1686 ], "match_map_id": [ - 3864 + 3863 ], "round": [ 38 @@ -47475,129 +48321,129 @@ export default { 3 ], "thrown_by": [ - 2926 + 2925 ], "time": [ - 3467 + 3466 ], "__typename": [ - 75 + 74 ] }, "player_flashes_max_fields": { "attacked_steam_id": [ - 174 + 173 ], "attacker_steam_id": [ - 174 + 173 ], "deleted_at": [ - 3467 + 3466 ], "duration": [ - 2014 + 2013 ], "match_id": [ - 3864 + 3863 ], "match_map_id": [ - 3864 + 3863 ], "round": [ 38 ], "time": [ - 3467 + 3466 ], "__typename": [ - 75 + 74 ] }, "player_flashes_max_order_by": { "attacked_steam_id": [ - 2016 + 2015 ], "attacker_steam_id": [ - 2016 + 2015 ], "deleted_at": [ - 2016 + 2015 ], "duration": [ - 2016 + 2015 ], "match_id": [ - 2016 + 2015 ], "match_map_id": [ - 2016 + 2015 ], "round": [ - 2016 + 2015 ], "time": [ - 2016 + 2015 ], "__typename": [ - 75 + 74 ] }, "player_flashes_min_fields": { "attacked_steam_id": [ - 174 + 173 ], "attacker_steam_id": [ - 174 + 173 ], "deleted_at": [ - 3467 + 3466 ], "duration": [ - 2014 + 2013 ], "match_id": [ - 3864 + 3863 ], "match_map_id": [ - 3864 + 3863 ], "round": [ 38 ], "time": [ - 3467 + 3466 ], "__typename": [ - 75 + 74 ] }, "player_flashes_min_order_by": { "attacked_steam_id": [ - 2016 + 2015 ], "attacker_steam_id": [ - 2016 + 2015 ], "deleted_at": [ - 2016 + 2015 ], "duration": [ - 2016 + 2015 ], "match_id": [ - 2016 + 2015 ], "match_map_id": [ - 2016 + 2015 ], "round": [ - 2016 + 2015 ], "time": [ - 2016 + 2015 ], "__typename": [ - 75 + 74 ] }, "player_flashes_mutation_response": { @@ -47605,85 +48451,85 @@ export default { 38 ], "returning": [ - 2326 + 2325 ], "__typename": [ - 75 + 74 ] }, "player_flashes_on_conflict": { "constraint": [ - 2338 + 2337 ], "update_columns": [ - 2363 + 2362 ], "where": [ - 2337 + 2336 ], "__typename": [ - 75 + 74 ] }, "player_flashes_order_by": { "attacked_steam_id": [ - 2016 + 2015 ], "attacker_steam_id": [ - 2016 + 2015 ], "blinded": [ - 2928 + 2927 ], "deleted_at": [ - 2016 + 2015 ], "duration": [ - 2016 + 2015 ], "match": [ - 1851 + 1850 ], "match_id": [ - 2016 + 2015 ], "match_map": [ - 1689 + 1688 ], "match_map_id": [ - 2016 + 2015 ], "round": [ - 2016 + 2015 ], "team_flash": [ - 2016 + 2015 ], "thrown_by": [ - 2928 + 2927 ], "time": [ - 2016 + 2015 ], "__typename": [ - 75 + 74 ] }, "player_flashes_pk_columns_input": { "attacked_steam_id": [ - 174 + 173 ], "attacker_steam_id": [ - 174 + 173 ], "match_map_id": [ - 3864 + 3863 ], "time": [ - 3467 + 3466 ], "__typename": [ - 75 + 74 ] }, "player_flashes_select_column": {}, @@ -47691,22 +48537,22 @@ export default { "player_flashes_select_column_player_flashes_aggregate_bool_exp_bool_or_arguments_columns": {}, "player_flashes_set_input": { "attacked_steam_id": [ - 174 + 173 ], "attacker_steam_id": [ - 174 + 173 ], "deleted_at": [ - 3467 + 3466 ], "duration": [ - 2014 + 2013 ], "match_id": [ - 3864 + 3863 ], "match_map_id": [ - 3864 + 3863 ], "round": [ 38 @@ -47715,10 +48561,10 @@ export default { 3 ], "time": [ - 3467 + 3466 ], "__typename": [ - 75 + 74 ] }, "player_flashes_stddev_fields": { @@ -47735,24 +48581,24 @@ export default { 29 ], "__typename": [ - 75 + 74 ] }, "player_flashes_stddev_order_by": { "attacked_steam_id": [ - 2016 + 2015 ], "attacker_steam_id": [ - 2016 + 2015 ], "duration": [ - 2016 + 2015 ], "round": [ - 2016 + 2015 ], "__typename": [ - 75 + 74 ] }, "player_flashes_stddev_pop_fields": { @@ -47769,24 +48615,24 @@ export default { 29 ], "__typename": [ - 75 + 74 ] }, "player_flashes_stddev_pop_order_by": { "attacked_steam_id": [ - 2016 + 2015 ], "attacker_steam_id": [ - 2016 + 2015 ], "duration": [ - 2016 + 2015 ], "round": [ - 2016 + 2015 ], "__typename": [ - 75 + 74 ] }, "player_flashes_stddev_samp_fields": { @@ -47803,55 +48649,55 @@ export default { 29 ], "__typename": [ - 75 + 74 ] }, "player_flashes_stddev_samp_order_by": { "attacked_steam_id": [ - 2016 + 2015 ], "attacker_steam_id": [ - 2016 + 2015 ], "duration": [ - 2016 + 2015 ], "round": [ - 2016 + 2015 ], "__typename": [ - 75 + 74 ] }, "player_flashes_stream_cursor_input": { "initial_value": [ - 2360 + 2359 ], "ordering": [ - 229 + 228 ], "__typename": [ - 75 + 74 ] }, "player_flashes_stream_cursor_value_input": { "attacked_steam_id": [ - 174 + 173 ], "attacker_steam_id": [ - 174 + 173 ], "deleted_at": [ - 3467 + 3466 ], "duration": [ - 2014 + 2013 ], "match_id": [ - 3864 + 3863 ], "match_map_id": [ - 3864 + 3863 ], "round": [ 38 @@ -47860,59 +48706,59 @@ export default { 3 ], "time": [ - 3467 + 3466 ], "__typename": [ - 75 + 74 ] }, "player_flashes_sum_fields": { "attacked_steam_id": [ - 174 + 173 ], "attacker_steam_id": [ - 174 + 173 ], "duration": [ - 2014 + 2013 ], "round": [ 38 ], "__typename": [ - 75 + 74 ] }, "player_flashes_sum_order_by": { "attacked_steam_id": [ - 2016 + 2015 ], "attacker_steam_id": [ - 2016 + 2015 ], "duration": [ - 2016 + 2015 ], "round": [ - 2016 + 2015 ], "__typename": [ - 75 + 74 ] }, "player_flashes_update_column": {}, "player_flashes_updates": { "_inc": [ - 2339 + 2338 ], "_set": [ - 2352 + 2351 ], "where": [ - 2337 + 2336 ], "__typename": [ - 75 + 74 ] }, "player_flashes_var_pop_fields": { @@ -47929,24 +48775,24 @@ export default { 29 ], "__typename": [ - 75 + 74 ] }, "player_flashes_var_pop_order_by": { "attacked_steam_id": [ - 2016 + 2015 ], "attacker_steam_id": [ - 2016 + 2015 ], "duration": [ - 2016 + 2015 ], "round": [ - 2016 + 2015 ], "__typename": [ - 75 + 74 ] }, "player_flashes_var_samp_fields": { @@ -47963,24 +48809,24 @@ export default { 29 ], "__typename": [ - 75 + 74 ] }, "player_flashes_var_samp_order_by": { "attacked_steam_id": [ - 2016 + 2015 ], "attacker_steam_id": [ - 2016 + 2015 ], "duration": [ - 2016 + 2015 ], "round": [ - 2016 + 2015 ], "__typename": [ - 75 + 74 ] }, "player_flashes_variance_fields": { @@ -47997,24 +48843,24 @@ export default { 29 ], "__typename": [ - 75 + 74 ] }, "player_flashes_variance_order_by": { "attacked_steam_id": [ - 2016 + 2015 ], "attacker_steam_id": [ - 2016 + 2015 ], "duration": [ - 2016 + 2015 ], "round": [ - 2016 + 2015 ], "__typename": [ - 75 + 74 ] }, "player_kills": { @@ -48022,43 +48868,43 @@ export default { 3 ], "attacked_location": [ - 75 + 74 ], "attacked_location_coordinates": [ - 75 + 74 ], "attacked_player": [ - 2915 + 2914 ], "attacked_steam_id": [ - 174 + 173 ], "attacked_team": [ - 75 + 74 ], "attacker_location": [ - 75 + 74 ], "attacker_location_coordinates": [ - 75 + 74 ], "attacker_steam_id": [ - 174 + 173 ], "attacker_team": [ - 75 + 74 ], "blinded": [ 3 ], "deleted_at": [ - 3467 + 3466 ], "headshot": [ 3 ], "hitgroup": [ - 75 + 74 ], "in_air": [ 3 @@ -48067,22 +48913,22 @@ export default { 3 ], "match": [ - 1831 + 1830 ], "match_id": [ - 3864 + 3863 ], "match_map": [ - 1669 + 1668 ], "match_map_id": [ - 3864 + 3863 ], "no_scope": [ 3 ], "player": [ - 2915 + 2914 ], "round": [ 38 @@ -48097,100 +48943,100 @@ export default { 3 ], "time": [ - 3467 + 3466 ], "with": [ - 75 + 74 ], "__typename": [ - 75 + 74 ] }, "player_kills_aggregate": { "aggregate": [ - 2377 + 2376 ], "nodes": [ - 2371 + 2370 ], "__typename": [ - 75 + 74 ] }, "player_kills_aggregate_bool_exp": { "bool_and": [ - 2374 + 2373 ], "bool_or": [ - 2375 + 2374 ], "count": [ - 2376 + 2375 ], "__typename": [ - 75 + 74 ] }, "player_kills_aggregate_bool_exp_bool_and": { "arguments": [ - 2436 + 2435 ], "distinct": [ 3 ], "filter": [ - 2382 + 2381 ], "predicate": [ 4 ], "__typename": [ - 75 + 74 ] }, "player_kills_aggregate_bool_exp_bool_or": { "arguments": [ - 2437 + 2436 ], "distinct": [ 3 ], "filter": [ - 2382 + 2381 ], "predicate": [ 4 ], "__typename": [ - 75 + 74 ] }, "player_kills_aggregate_bool_exp_count": { "arguments": [ - 2435 + 2434 ], "distinct": [ 3 ], "filter": [ - 2382 + 2381 ], "predicate": [ 39 ], "__typename": [ - 75 + 74 ] }, "player_kills_aggregate_fields": { "avg": [ - 2380 + 2379 ], "count": [ 38, { "columns": [ - 2435, + 2434, "[player_kills_select_column!]" ], "distinct": [ @@ -48199,83 +49045,83 @@ export default { } ], "max": [ - 2427 + 2426 ], "min": [ - 2429 + 2428 ], "stddev": [ - 2439 + 2438 ], "stddev_pop": [ - 2441 + 2440 ], "stddev_samp": [ - 2443 + 2442 ], "sum": [ - 2447 + 2446 ], "var_pop": [ - 2451 + 2450 ], "var_samp": [ - 2453 + 2452 ], "variance": [ - 2455 + 2454 ], "__typename": [ - 75 + 74 ] }, "player_kills_aggregate_order_by": { "avg": [ - 2381 + 2380 ], "count": [ - 2016 + 2015 ], "max": [ - 2428 + 2427 ], "min": [ - 2430 + 2429 ], "stddev": [ - 2440 + 2439 ], "stddev_pop": [ - 2442 + 2441 ], "stddev_samp": [ - 2444 + 2443 ], "sum": [ - 2448 + 2447 ], "var_pop": [ - 2452 + 2451 ], "var_samp": [ - 2454 + 2453 ], "variance": [ - 2456 + 2455 ], "__typename": [ - 75 + 74 ] }, "player_kills_arr_rel_insert_input": { "data": [ - 2426 + 2425 ], "on_conflict": [ - 2432 + 2431 ], "__typename": [ - 75 + 74 ] }, "player_kills_avg_fields": { @@ -48289,74 +49135,74 @@ export default { 29 ], "__typename": [ - 75 + 74 ] }, "player_kills_avg_order_by": { "attacked_steam_id": [ - 2016 + 2015 ], "attacker_steam_id": [ - 2016 + 2015 ], "round": [ - 2016 + 2015 ], "__typename": [ - 75 + 74 ] }, "player_kills_bool_exp": { "_and": [ - 2382 + 2381 ], "_not": [ - 2382 + 2381 ], "_or": [ - 2382 + 2381 ], "assisted": [ 4 ], "attacked_location": [ - 77 + 76 ], "attacked_location_coordinates": [ - 77 + 76 ], "attacked_player": [ - 2919 + 2918 ], "attacked_steam_id": [ - 176 + 175 ], "attacked_team": [ - 77 + 76 ], "attacker_location": [ - 77 + 76 ], "attacker_location_coordinates": [ - 77 + 76 ], "attacker_steam_id": [ - 176 + 175 ], "attacker_team": [ - 77 + 76 ], "blinded": [ 4 ], "deleted_at": [ - 3468 + 3467 ], "headshot": [ 4 ], "hitgroup": [ - 77 + 76 ], "in_air": [ 4 @@ -48365,22 +49211,22 @@ export default { 4 ], "match": [ - 1840 + 1839 ], "match_id": [ - 3866 + 3865 ], "match_map": [ - 1678 + 1677 ], "match_map_id": [ - 3866 + 3865 ], "no_scope": [ 4 ], "player": [ - 2919 + 2918 ], "round": [ 39 @@ -48395,77 +49241,77 @@ export default { 4 ], "time": [ - 3468 + 3467 ], "with": [ - 77 + 76 ], "__typename": [ - 75 + 74 ] }, "player_kills_by_weapon": { "kill_count": [ - 174 + 173 ], "player": [ - 2915 + 2914 ], "player_steam_id": [ - 174 + 173 ], "with": [ - 75 + 74 ], "__typename": [ - 75 + 74 ] }, "player_kills_by_weapon_aggregate": { "aggregate": [ - 2387 + 2386 ], "nodes": [ - 2383 + 2382 ], "__typename": [ - 75 + 74 ] }, "player_kills_by_weapon_aggregate_bool_exp": { "count": [ - 2386 + 2385 ], "__typename": [ - 75 + 74 ] }, "player_kills_by_weapon_aggregate_bool_exp_count": { "arguments": [ - 2404 + 2403 ], "distinct": [ 3 ], "filter": [ - 2392 + 2391 ], "predicate": [ 39 ], "__typename": [ - 75 + 74 ] }, "player_kills_by_weapon_aggregate_fields": { "avg": [ - 2390 + 2389 ], "count": [ 38, { "columns": [ - 2404, + 2403, "[player_kills_by_weapon_select_column!]" ], "distinct": [ @@ -48473,6 +49319,44 @@ export default { ] } ], + "max": [ + 2395 + ], + "min": [ + 2397 + ], + "stddev": [ + 2405 + ], + "stddev_pop": [ + 2407 + ], + "stddev_samp": [ + 2409 + ], + "sum": [ + 2413 + ], + "var_pop": [ + 2417 + ], + "var_samp": [ + 2419 + ], + "variance": [ + 2421 + ], + "__typename": [ + 74 + ] + }, + "player_kills_by_weapon_aggregate_order_by": { + "avg": [ + 2390 + ], + "count": [ + 2015 + ], "max": [ 2396 ], @@ -48501,56 +49385,18 @@ export default { 2422 ], "__typename": [ - 75 - ] - }, - "player_kills_by_weapon_aggregate_order_by": { - "avg": [ - 2391 - ], - "count": [ - 2016 - ], - "max": [ - 2397 - ], - "min": [ - 2399 - ], - "stddev": [ - 2407 - ], - "stddev_pop": [ - 2409 - ], - "stddev_samp": [ - 2411 - ], - "sum": [ - 2415 - ], - "var_pop": [ - 2419 - ], - "var_samp": [ - 2421 - ], - "variance": [ - 2423 - ], - "__typename": [ - 75 + 74 ] }, "player_kills_by_weapon_arr_rel_insert_input": { "data": [ - 2395 + 2394 ], "on_conflict": [ - 2401 + 2400 ], "__typename": [ - 75 + 74 ] }, "player_kills_by_weapon_avg_fields": { @@ -48561,129 +49407,129 @@ export default { 29 ], "__typename": [ - 75 + 74 ] }, "player_kills_by_weapon_avg_order_by": { "kill_count": [ - 2016 + 2015 ], "player_steam_id": [ - 2016 + 2015 ], "__typename": [ - 75 + 74 ] }, "player_kills_by_weapon_bool_exp": { "_and": [ - 2392 + 2391 ], "_not": [ - 2392 + 2391 ], "_or": [ - 2392 + 2391 ], "kill_count": [ - 176 + 175 ], "player": [ - 2919 + 2918 ], "player_steam_id": [ - 176 + 175 ], "with": [ - 77 + 76 ], "__typename": [ - 75 + 74 ] }, "player_kills_by_weapon_constraint": {}, "player_kills_by_weapon_inc_input": { "kill_count": [ - 174 + 173 ], "player_steam_id": [ - 174 + 173 ], "__typename": [ - 75 + 74 ] }, "player_kills_by_weapon_insert_input": { "kill_count": [ - 174 + 173 ], "player": [ - 2926 + 2925 ], "player_steam_id": [ - 174 + 173 ], "with": [ - 75 + 74 ], "__typename": [ - 75 + 74 ] }, "player_kills_by_weapon_max_fields": { "kill_count": [ - 174 + 173 ], "player_steam_id": [ - 174 + 173 ], "with": [ - 75 + 74 ], "__typename": [ - 75 + 74 ] }, "player_kills_by_weapon_max_order_by": { "kill_count": [ - 2016 + 2015 ], "player_steam_id": [ - 2016 + 2015 ], "with": [ - 2016 + 2015 ], "__typename": [ - 75 + 74 ] }, "player_kills_by_weapon_min_fields": { "kill_count": [ - 174 + 173 ], "player_steam_id": [ - 174 + 173 ], "with": [ - 75 + 74 ], "__typename": [ - 75 + 74 ] }, "player_kills_by_weapon_min_order_by": { "kill_count": [ - 2016 + 2015 ], "player_steam_id": [ - 2016 + 2015 ], "with": [ - 2016 + 2015 ], "__typename": [ - 75 + 74 ] }, "player_kills_by_weapon_mutation_response": { @@ -48691,67 +49537,67 @@ export default { 38 ], "returning": [ - 2383 + 2382 ], "__typename": [ - 75 + 74 ] }, "player_kills_by_weapon_on_conflict": { "constraint": [ - 2393 + 2392 ], "update_columns": [ - 2416 + 2415 ], "where": [ - 2392 + 2391 ], "__typename": [ - 75 + 74 ] }, "player_kills_by_weapon_order_by": { "kill_count": [ - 2016 + 2015 ], "player": [ - 2928 + 2927 ], "player_steam_id": [ - 2016 + 2015 ], "with": [ - 2016 + 2015 ], "__typename": [ - 75 + 74 ] }, "player_kills_by_weapon_pk_columns_input": { "player_steam_id": [ - 174 + 173 ], "with": [ - 75 + 74 ], "__typename": [ - 75 + 74 ] }, "player_kills_by_weapon_select_column": {}, "player_kills_by_weapon_set_input": { "kill_count": [ - 174 + 173 ], "player_steam_id": [ - 174 + 173 ], "with": [ - 75 + 74 ], "__typename": [ - 75 + 74 ] }, "player_kills_by_weapon_stddev_fields": { @@ -48762,18 +49608,18 @@ export default { 29 ], "__typename": [ - 75 + 74 ] }, "player_kills_by_weapon_stddev_order_by": { "kill_count": [ - 2016 + 2015 ], "player_steam_id": [ - 2016 + 2015 ], "__typename": [ - 75 + 74 ] }, "player_kills_by_weapon_stddev_pop_fields": { @@ -48784,18 +49630,18 @@ export default { 29 ], "__typename": [ - 75 + 74 ] }, "player_kills_by_weapon_stddev_pop_order_by": { "kill_count": [ - 2016 + 2015 ], "player_steam_id": [ - 2016 + 2015 ], "__typename": [ - 75 + 74 ] }, "player_kills_by_weapon_stddev_samp_fields": { @@ -48806,80 +49652,80 @@ export default { 29 ], "__typename": [ - 75 + 74 ] }, "player_kills_by_weapon_stddev_samp_order_by": { "kill_count": [ - 2016 + 2015 ], "player_steam_id": [ - 2016 + 2015 ], "__typename": [ - 75 + 74 ] }, "player_kills_by_weapon_stream_cursor_input": { "initial_value": [ - 2413 + 2412 ], "ordering": [ - 229 + 228 ], "__typename": [ - 75 + 74 ] }, "player_kills_by_weapon_stream_cursor_value_input": { "kill_count": [ - 174 + 173 ], "player_steam_id": [ - 174 + 173 ], "with": [ - 75 + 74 ], "__typename": [ - 75 + 74 ] }, "player_kills_by_weapon_sum_fields": { "kill_count": [ - 174 + 173 ], "player_steam_id": [ - 174 + 173 ], "__typename": [ - 75 + 74 ] }, "player_kills_by_weapon_sum_order_by": { "kill_count": [ - 2016 + 2015 ], "player_steam_id": [ - 2016 + 2015 ], "__typename": [ - 75 + 74 ] }, "player_kills_by_weapon_update_column": {}, "player_kills_by_weapon_updates": { "_inc": [ - 2394 + 2393 ], "_set": [ - 2405 + 2404 ], "where": [ - 2392 + 2391 ], "__typename": [ - 75 + 74 ] }, "player_kills_by_weapon_var_pop_fields": { @@ -48890,18 +49736,18 @@ export default { 29 ], "__typename": [ - 75 + 74 ] }, "player_kills_by_weapon_var_pop_order_by": { "kill_count": [ - 2016 + 2015 ], "player_steam_id": [ - 2016 + 2015 ], "__typename": [ - 75 + 74 ] }, "player_kills_by_weapon_var_samp_fields": { @@ -48912,18 +49758,18 @@ export default { 29 ], "__typename": [ - 75 + 74 ] }, "player_kills_by_weapon_var_samp_order_by": { "kill_count": [ - 2016 + 2015 ], "player_steam_id": [ - 2016 + 2015 ], "__typename": [ - 75 + 74 ] }, "player_kills_by_weapon_variance_fields": { @@ -48934,33 +49780,33 @@ export default { 29 ], "__typename": [ - 75 + 74 ] }, "player_kills_by_weapon_variance_order_by": { "kill_count": [ - 2016 + 2015 ], "player_steam_id": [ - 2016 + 2015 ], "__typename": [ - 75 + 74 ] }, "player_kills_constraint": {}, "player_kills_inc_input": { "attacked_steam_id": [ - 174 + 173 ], "attacker_steam_id": [ - 174 + 173 ], "round": [ 38 ], "__typename": [ - 75 + 74 ] }, "player_kills_insert_input": { @@ -48968,64 +49814,64 @@ export default { 3 ], "attacked_location": [ - 75 + 74 ], "attacked_location_coordinates": [ - 75 + 74 ], "attacked_player": [ - 2926 + 2925 ], "attacked_steam_id": [ - 174 + 173 ], "attacked_team": [ - 75 + 74 ], "attacker_location": [ - 75 + 74 ], "attacker_location_coordinates": [ - 75 + 74 ], "attacker_steam_id": [ - 174 + 173 ], "attacker_team": [ - 75 + 74 ], "blinded": [ 3 ], "deleted_at": [ - 3467 + 3466 ], "headshot": [ 3 ], "hitgroup": [ - 75 + 74 ], "in_air": [ 3 ], "match": [ - 1849 + 1848 ], "match_id": [ - 3864 + 3863 ], "match_map": [ - 1687 + 1686 ], "match_map_id": [ - 3864 + 3863 ], "no_scope": [ 3 ], "player": [ - 2926 + 2925 ], "round": [ 38 @@ -49037,213 +49883,213 @@ export default { 3 ], "time": [ - 3467 + 3466 ], "with": [ - 75 + 74 ], "__typename": [ - 75 + 74 ] }, "player_kills_max_fields": { "attacked_location": [ - 75 + 74 ], "attacked_location_coordinates": [ - 75 + 74 ], "attacked_steam_id": [ - 174 + 173 ], "attacked_team": [ - 75 + 74 ], "attacker_location": [ - 75 + 74 ], "attacker_location_coordinates": [ - 75 + 74 ], "attacker_steam_id": [ - 174 + 173 ], "attacker_team": [ - 75 + 74 ], "deleted_at": [ - 3467 + 3466 ], "hitgroup": [ - 75 + 74 ], "match_id": [ - 3864 + 3863 ], "match_map_id": [ - 3864 + 3863 ], "round": [ 38 ], "time": [ - 3467 + 3466 ], "with": [ - 75 + 74 ], "__typename": [ - 75 + 74 ] }, "player_kills_max_order_by": { "attacked_location": [ - 2016 + 2015 ], "attacked_location_coordinates": [ - 2016 + 2015 ], "attacked_steam_id": [ - 2016 + 2015 ], "attacked_team": [ - 2016 + 2015 ], "attacker_location": [ - 2016 + 2015 ], "attacker_location_coordinates": [ - 2016 + 2015 ], "attacker_steam_id": [ - 2016 + 2015 ], "attacker_team": [ - 2016 + 2015 ], "deleted_at": [ - 2016 + 2015 ], "hitgroup": [ - 2016 + 2015 ], "match_id": [ - 2016 + 2015 ], "match_map_id": [ - 2016 + 2015 ], "round": [ - 2016 + 2015 ], "time": [ - 2016 + 2015 ], "with": [ - 2016 + 2015 ], "__typename": [ - 75 + 74 ] }, "player_kills_min_fields": { "attacked_location": [ - 75 + 74 ], "attacked_location_coordinates": [ - 75 + 74 ], "attacked_steam_id": [ - 174 + 173 ], "attacked_team": [ - 75 + 74 ], "attacker_location": [ - 75 + 74 ], "attacker_location_coordinates": [ - 75 + 74 ], "attacker_steam_id": [ - 174 + 173 ], "attacker_team": [ - 75 + 74 ], "deleted_at": [ - 3467 + 3466 ], "hitgroup": [ - 75 + 74 ], "match_id": [ - 3864 + 3863 ], "match_map_id": [ - 3864 + 3863 ], "round": [ 38 ], "time": [ - 3467 + 3466 ], "with": [ - 75 + 74 ], "__typename": [ - 75 + 74 ] }, "player_kills_min_order_by": { "attacked_location": [ - 2016 + 2015 ], "attacked_location_coordinates": [ - 2016 + 2015 ], "attacked_steam_id": [ - 2016 + 2015 ], "attacked_team": [ - 2016 + 2015 ], "attacker_location": [ - 2016 + 2015 ], "attacker_location_coordinates": [ - 2016 + 2015 ], "attacker_steam_id": [ - 2016 + 2015 ], "attacker_team": [ - 2016 + 2015 ], "deleted_at": [ - 2016 + 2015 ], "hitgroup": [ - 2016 + 2015 ], "match_id": [ - 2016 + 2015 ], "match_map_id": [ - 2016 + 2015 ], "round": [ - 2016 + 2015 ], "time": [ - 2016 + 2015 ], "with": [ - 2016 + 2015 ], "__typename": [ - 75 + 74 ] }, "player_kills_mutation_response": { @@ -49251,130 +50097,130 @@ export default { 38 ], "returning": [ - 2371 + 2370 ], "__typename": [ - 75 + 74 ] }, "player_kills_on_conflict": { "constraint": [ - 2424 + 2423 ], "update_columns": [ - 2449 + 2448 ], "where": [ - 2382 + 2381 ], "__typename": [ - 75 + 74 ] }, "player_kills_order_by": { "assisted": [ - 2016 + 2015 ], "attacked_location": [ - 2016 + 2015 ], "attacked_location_coordinates": [ - 2016 + 2015 ], "attacked_player": [ - 2928 + 2927 ], "attacked_steam_id": [ - 2016 + 2015 ], "attacked_team": [ - 2016 + 2015 ], "attacker_location": [ - 2016 + 2015 ], "attacker_location_coordinates": [ - 2016 + 2015 ], "attacker_steam_id": [ - 2016 + 2015 ], "attacker_team": [ - 2016 + 2015 ], "blinded": [ - 2016 + 2015 ], "deleted_at": [ - 2016 + 2015 ], "headshot": [ - 2016 + 2015 ], "hitgroup": [ - 2016 + 2015 ], "in_air": [ - 2016 + 2015 ], "is_suicide": [ - 2016 + 2015 ], "match": [ - 1851 + 1850 ], "match_id": [ - 2016 + 2015 ], "match_map": [ - 1689 + 1688 ], "match_map_id": [ - 2016 + 2015 ], "no_scope": [ - 2016 + 2015 ], "player": [ - 2928 + 2927 ], "round": [ - 2016 + 2015 ], "team_kill": [ - 2016 + 2015 ], "thru_smoke": [ - 2016 + 2015 ], "thru_wall": [ - 2016 + 2015 ], "time": [ - 2016 + 2015 ], "with": [ - 2016 + 2015 ], "__typename": [ - 75 + 74 ] }, "player_kills_pk_columns_input": { "attacked_steam_id": [ - 174 + 173 ], "attacker_steam_id": [ - 174 + 173 ], "match_map_id": [ - 3864 + 3863 ], "time": [ - 3467 + 3466 ], "__typename": [ - 75 + 74 ] }, "player_kills_select_column": {}, @@ -49385,49 +50231,49 @@ export default { 3 ], "attacked_location": [ - 75 + 74 ], "attacked_location_coordinates": [ - 75 + 74 ], "attacked_steam_id": [ - 174 + 173 ], "attacked_team": [ - 75 + 74 ], "attacker_location": [ - 75 + 74 ], "attacker_location_coordinates": [ - 75 + 74 ], "attacker_steam_id": [ - 174 + 173 ], "attacker_team": [ - 75 + 74 ], "blinded": [ 3 ], "deleted_at": [ - 3467 + 3466 ], "headshot": [ 3 ], "hitgroup": [ - 75 + 74 ], "in_air": [ 3 ], "match_id": [ - 3864 + 3863 ], "match_map_id": [ - 3864 + 3863 ], "no_scope": [ 3 @@ -49442,13 +50288,13 @@ export default { 3 ], "time": [ - 3467 + 3466 ], "with": [ - 75 + 74 ], "__typename": [ - 75 + 74 ] }, "player_kills_stddev_fields": { @@ -49462,21 +50308,21 @@ export default { 29 ], "__typename": [ - 75 + 74 ] }, "player_kills_stddev_order_by": { "attacked_steam_id": [ - 2016 + 2015 ], "attacker_steam_id": [ - 2016 + 2015 ], "round": [ - 2016 + 2015 ], "__typename": [ - 75 + 74 ] }, "player_kills_stddev_pop_fields": { @@ -49490,21 +50336,21 @@ export default { 29 ], "__typename": [ - 75 + 74 ] }, "player_kills_stddev_pop_order_by": { "attacked_steam_id": [ - 2016 + 2015 ], "attacker_steam_id": [ - 2016 + 2015 ], "round": [ - 2016 + 2015 ], "__typename": [ - 75 + 74 ] }, "player_kills_stddev_samp_fields": { @@ -49518,32 +50364,32 @@ export default { 29 ], "__typename": [ - 75 + 74 ] }, "player_kills_stddev_samp_order_by": { "attacked_steam_id": [ - 2016 + 2015 ], "attacker_steam_id": [ - 2016 + 2015 ], "round": [ - 2016 + 2015 ], "__typename": [ - 75 + 74 ] }, "player_kills_stream_cursor_input": { "initial_value": [ - 2446 + 2445 ], "ordering": [ - 229 + 228 ], "__typename": [ - 75 + 74 ] }, "player_kills_stream_cursor_value_input": { @@ -49551,49 +50397,49 @@ export default { 3 ], "attacked_location": [ - 75 + 74 ], "attacked_location_coordinates": [ - 75 + 74 ], "attacked_steam_id": [ - 174 + 173 ], "attacked_team": [ - 75 + 74 ], "attacker_location": [ - 75 + 74 ], "attacker_location_coordinates": [ - 75 + 74 ], "attacker_steam_id": [ - 174 + 173 ], "attacker_team": [ - 75 + 74 ], "blinded": [ 3 ], "deleted_at": [ - 3467 + 3466 ], "headshot": [ 3 ], "hitgroup": [ - 75 + 74 ], "in_air": [ 3 ], "match_id": [ - 3864 + 3863 ], "match_map_id": [ - 3864 + 3863 ], "no_scope": [ 3 @@ -49608,56 +50454,56 @@ export default { 3 ], "time": [ - 3467 + 3466 ], "with": [ - 75 + 74 ], "__typename": [ - 75 + 74 ] }, "player_kills_sum_fields": { "attacked_steam_id": [ - 174 + 173 ], "attacker_steam_id": [ - 174 + 173 ], "round": [ 38 ], "__typename": [ - 75 + 74 ] }, "player_kills_sum_order_by": { "attacked_steam_id": [ - 2016 + 2015 ], "attacker_steam_id": [ - 2016 + 2015 ], "round": [ - 2016 + 2015 ], "__typename": [ - 75 + 74 ] }, "player_kills_update_column": {}, "player_kills_updates": { "_inc": [ - 2425 + 2424 ], "_set": [ - 2438 + 2437 ], "where": [ - 2382 + 2381 ], "__typename": [ - 75 + 74 ] }, "player_kills_var_pop_fields": { @@ -49671,21 +50517,21 @@ export default { 29 ], "__typename": [ - 75 + 74 ] }, "player_kills_var_pop_order_by": { "attacked_steam_id": [ - 2016 + 2015 ], "attacker_steam_id": [ - 2016 + 2015 ], "round": [ - 2016 + 2015 ], "__typename": [ - 75 + 74 ] }, "player_kills_var_samp_fields": { @@ -49699,21 +50545,21 @@ export default { 29 ], "__typename": [ - 75 + 74 ] }, "player_kills_var_samp_order_by": { "attacked_steam_id": [ - 2016 + 2015 ], "attacker_steam_id": [ - 2016 + 2015 ], "round": [ - 2016 + 2015 ], "__typename": [ - 75 + 74 ] }, "player_kills_variance_fields": { @@ -49727,26 +50573,26 @@ export default { 29 ], "__typename": [ - 75 + 74 ] }, "player_kills_variance_order_by": { "attacked_steam_id": [ - 2016 + 2015 ], "attacker_steam_id": [ - 2016 + 2015 ], "round": [ - 2016 + 2015 ], "__typename": [ - 75 + 74 ] }, "player_leaderboard_rank": { "player_steam_id": [ - 75 + 74 ], "rank": [ 38 @@ -49755,32 +50601,32 @@ export default { 38 ], "value": [ - 1089 + 1088 ], "__typename": [ - 75 + 74 ] }, "player_leaderboard_rank_aggregate": { "aggregate": [ - 2459 + 2458 ], "nodes": [ - 2457 + 2456 ], "__typename": [ - 75 + 74 ] }, "player_leaderboard_rank_aggregate_fields": { "avg": [ - 2460 + 2459 ], "count": [ 38, { "columns": [ - 2468, + 2467, "[player_leaderboard_rank_select_column!]" ], "distinct": [ @@ -49789,34 +50635,34 @@ export default { } ], "max": [ - 2464 + 2463 ], "min": [ - 2465 + 2464 ], "stddev": [ - 2470 + 2469 ], "stddev_pop": [ - 2471 + 2470 ], "stddev_samp": [ - 2472 + 2471 ], "sum": [ - 2475 + 2474 ], "var_pop": [ - 2477 + 2476 ], "var_samp": [ - 2478 + 2477 ], "variance": [ - 2479 + 2478 ], "__typename": [ - 75 + 74 ] }, "player_leaderboard_rank_avg_fields": { @@ -49830,21 +50676,21 @@ export default { 29 ], "__typename": [ - 75 + 74 ] }, "player_leaderboard_rank_bool_exp": { "_and": [ - 2461 + 2460 ], "_not": [ - 2461 + 2460 ], "_or": [ - 2461 + 2460 ], "player_steam_id": [ - 77 + 76 ], "rank": [ 39 @@ -49853,10 +50699,10 @@ export default { 39 ], "value": [ - 1090 + 1089 ], "__typename": [ - 75 + 74 ] }, "player_leaderboard_rank_inc_input": { @@ -49867,15 +50713,15 @@ export default { 38 ], "value": [ - 1089 + 1088 ], "__typename": [ - 75 + 74 ] }, "player_leaderboard_rank_insert_input": { "player_steam_id": [ - 75 + 74 ], "rank": [ 38 @@ -49884,15 +50730,15 @@ export default { 38 ], "value": [ - 1089 + 1088 ], "__typename": [ - 75 + 74 ] }, "player_leaderboard_rank_max_fields": { "player_steam_id": [ - 75 + 74 ], "rank": [ 38 @@ -49901,15 +50747,15 @@ export default { 38 ], "value": [ - 1089 + 1088 ], "__typename": [ - 75 + 74 ] }, "player_leaderboard_rank_min_fields": { "player_steam_id": [ - 75 + 74 ], "rank": [ 38 @@ -49918,10 +50764,10 @@ export default { 38 ], "value": [ - 1089 + 1088 ], "__typename": [ - 75 + 74 ] }, "player_leaderboard_rank_mutation_response": { @@ -49929,33 +50775,33 @@ export default { 38 ], "returning": [ - 2457 + 2456 ], "__typename": [ - 75 + 74 ] }, "player_leaderboard_rank_order_by": { "player_steam_id": [ - 2016 + 2015 ], "rank": [ - 2016 + 2015 ], "total": [ - 2016 + 2015 ], "value": [ - 2016 + 2015 ], "__typename": [ - 75 + 74 ] }, "player_leaderboard_rank_select_column": {}, "player_leaderboard_rank_set_input": { "player_steam_id": [ - 75 + 74 ], "rank": [ 38 @@ -49964,10 +50810,10 @@ export default { 38 ], "value": [ - 1089 + 1088 ], "__typename": [ - 75 + 74 ] }, "player_leaderboard_rank_stddev_fields": { @@ -49981,7 +50827,7 @@ export default { 29 ], "__typename": [ - 75 + 74 ] }, "player_leaderboard_rank_stddev_pop_fields": { @@ -49995,7 +50841,7 @@ export default { 29 ], "__typename": [ - 75 + 74 ] }, "player_leaderboard_rank_stddev_samp_fields": { @@ -50009,23 +50855,23 @@ export default { 29 ], "__typename": [ - 75 + 74 ] }, "player_leaderboard_rank_stream_cursor_input": { "initial_value": [ - 2474 + 2473 ], "ordering": [ - 229 + 228 ], "__typename": [ - 75 + 74 ] }, "player_leaderboard_rank_stream_cursor_value_input": { "player_steam_id": [ - 75 + 74 ], "rank": [ 38 @@ -50034,10 +50880,10 @@ export default { 38 ], "value": [ - 1089 + 1088 ], "__typename": [ - 75 + 74 ] }, "player_leaderboard_rank_sum_fields": { @@ -50048,24 +50894,24 @@ export default { 38 ], "value": [ - 1089 + 1088 ], "__typename": [ - 75 + 74 ] }, "player_leaderboard_rank_updates": { "_inc": [ - 2462 + 2461 ], "_set": [ - 2469 + 2468 ], "where": [ - 2461 + 2460 ], "__typename": [ - 75 + 74 ] }, "player_leaderboard_rank_var_pop_fields": { @@ -50079,7 +50925,7 @@ export default { 29 ], "__typename": [ - 75 + 74 ] }, "player_leaderboard_rank_var_samp_fields": { @@ -50093,7 +50939,7 @@ export default { 29 ], "__typename": [ - 75 + 74 ] }, "player_leaderboard_rank_variance_fields": { @@ -50107,7 +50953,7 @@ export default { 29 ], "__typename": [ - 75 + 74 ] }, "player_match_map_stats": { @@ -50130,7 +50976,7 @@ export default { 38 ], "crosshair_angle_sum_deg": [ - 2014 + 2013 ], "damage": [ 38 @@ -50172,7 +51018,7 @@ export default { 38 ], "flash_duration_sum": [ - 2014 + 2013 ], "flashes_thrown": [ 38 @@ -50226,16 +51072,16 @@ export default { 38 ], "match": [ - 1831 + 1830 ], "match_id": [ - 3864 + 3863 ], "match_map": [ - 1669 + 1668 ], "match_map_id": [ - 3864 + 3863 ], "molotov_damage": [ 38 @@ -50250,7 +51096,7 @@ export default { 38 ], "player": [ - 2915 + 2914 ], "rounds_ct": [ 38 @@ -50283,7 +51129,7 @@ export default { 38 ], "steam_id": [ - 174 + 173 ], "team_damage": [ 38 @@ -50298,7 +51144,7 @@ export default { 38 ], "time_to_damage_sum_s": [ - 2014 + 2013 ], "total_engagement_frames": [ 38 @@ -50328,7 +51174,7 @@ export default { 38 ], "updated_at": [ - 3467 + 3466 ], "util_on_death_count": [ 38 @@ -50343,54 +51189,54 @@ export default { 38 ], "__typename": [ - 75 + 74 ] }, "player_match_map_stats_aggregate": { "aggregate": [ - 2484 + 2483 ], "nodes": [ - 2480 + 2479 ], "__typename": [ - 75 + 74 ] }, "player_match_map_stats_aggregate_bool_exp": { "count": [ - 2483 + 2482 ], "__typename": [ - 75 + 74 ] }, "player_match_map_stats_aggregate_bool_exp_count": { "arguments": [ - 2501 + 2500 ], "distinct": [ 3 ], "filter": [ - 2489 + 2488 ], "predicate": [ 39 ], "__typename": [ - 75 + 74 ] }, "player_match_map_stats_aggregate_fields": { "avg": [ - 2487 + 2486 ], "count": [ 38, { "columns": [ - 2501, + 2500, "[player_match_map_stats_select_column!]" ], "distinct": [ @@ -50399,83 +51245,83 @@ export default { } ], "max": [ - 2493 + 2492 ], "min": [ - 2495 + 2494 ], "stddev": [ - 2503 + 2502 ], "stddev_pop": [ - 2505 + 2504 ], "stddev_samp": [ - 2507 + 2506 ], "sum": [ - 2511 + 2510 ], "var_pop": [ - 2515 + 2514 ], "var_samp": [ - 2517 + 2516 ], "variance": [ - 2519 + 2518 ], "__typename": [ - 75 + 74 ] }, "player_match_map_stats_aggregate_order_by": { "avg": [ - 2488 + 2487 ], "count": [ - 2016 + 2015 ], "max": [ - 2494 + 2493 ], "min": [ - 2496 + 2495 ], "stddev": [ - 2504 + 2503 ], "stddev_pop": [ - 2506 + 2505 ], "stddev_samp": [ - 2508 + 2507 ], "sum": [ - 2512 + 2511 ], "var_pop": [ - 2516 + 2515 ], "var_samp": [ - 2518 + 2517 ], "variance": [ - 2520 + 2519 ], "__typename": [ - 75 + 74 ] }, "player_match_map_stats_arr_rel_insert_input": { "data": [ - 2492 + 2491 ], "on_conflict": [ - 2498 + 2497 ], "__typename": [ - 75 + 74 ] }, "player_match_map_stats_avg_fields": { @@ -50693,236 +51539,236 @@ export default { 29 ], "__typename": [ - 75 + 74 ] }, "player_match_map_stats_avg_order_by": { "assists": [ - 2016 + 2015 ], "assists_ct": [ - 2016 + 2015 ], "assists_t": [ - 2016 + 2015 ], "counter_strafe_eligible_shots": [ - 2016 + 2015 ], "counter_strafed_shots": [ - 2016 + 2015 ], "crosshair_angle_count": [ - 2016 + 2015 ], "crosshair_angle_sum_deg": [ - 2016 + 2015 ], "damage": [ - 2016 + 2015 ], "damage_ct": [ - 2016 + 2015 ], "damage_t": [ - 2016 + 2015 ], "deaths": [ - 2016 + 2015 ], "deaths_ct": [ - 2016 + 2015 ], "deaths_t": [ - 2016 + 2015 ], "decoy_throws": [ - 2016 + 2015 ], "enemies_flashed": [ - 2016 + 2015 ], "first_bullet_hits": [ - 2016 + 2015 ], "first_bullet_shots": [ - 2016 + 2015 ], "five_kill_rounds": [ - 2016 + 2015 ], "flash_assists": [ - 2016 + 2015 ], "flash_duration_count": [ - 2016 + 2015 ], "flash_duration_sum": [ - 2016 + 2015 ], "flashes_thrown": [ - 2016 + 2015 ], "four_kill_rounds": [ - 2016 + 2015 ], "he_damage": [ - 2016 + 2015 ], "he_team_damage": [ - 2016 + 2015 ], "he_throws": [ - 2016 + 2015 ], "headshot_hits": [ - 2016 + 2015 ], "hits": [ - 2016 + 2015 ], "hits_at_spotted": [ - 2016 + 2015 ], "hs_kills": [ - 2016 + 2015 ], "hs_kills_ct": [ - 2016 + 2015 ], "hs_kills_t": [ - 2016 + 2015 ], "kast_rounds": [ - 2016 + 2015 ], "kast_total_rounds": [ - 2016 + 2015 ], "kills": [ - 2016 + 2015 ], "kills_ct": [ - 2016 + 2015 ], "kills_t": [ - 2016 + 2015 ], "knife_kills": [ - 2016 + 2015 ], "molotov_damage": [ - 2016 + 2015 ], "molotov_throws": [ - 2016 + 2015 ], "non_awp_hits": [ - 2016 + 2015 ], "on_target_frames": [ - 2016 + 2015 ], "rounds_ct": [ - 2016 + 2015 ], "rounds_played": [ - 2016 + 2015 ], "rounds_t": [ - 2016 + 2015 ], "shots_at_spotted": [ - 2016 + 2015 ], "shots_fired": [ - 2016 + 2015 ], "smoke_throws": [ - 2016 + 2015 ], "spotted_count": [ - 2016 + 2015 ], "spotted_with_damage_count": [ - 2016 + 2015 ], "spray_hits": [ - 2016 + 2015 ], "spray_shots": [ - 2016 + 2015 ], "steam_id": [ - 2016 + 2015 ], "team_damage": [ - 2016 + 2015 ], "team_flashed": [ - 2016 + 2015 ], "three_kill_rounds": [ - 2016 + 2015 ], "time_to_damage_count": [ - 2016 + 2015 ], "time_to_damage_sum_s": [ - 2016 + 2015 ], "total_engagement_frames": [ - 2016 + 2015 ], "trade_kill_attempts": [ - 2016 + 2015 ], "trade_kill_opportunities": [ - 2016 + 2015 ], "trade_kill_successes": [ - 2016 + 2015 ], "traded_death_attempts": [ - 2016 + 2015 ], "traded_death_opportunities": [ - 2016 + 2015 ], "traded_death_successes": [ - 2016 + 2015 ], "two_kill_rounds": [ - 2016 + 2015 ], "unused_utility_value": [ - 2016 + 2015 ], "util_on_death_count": [ - 2016 + 2015 ], "util_on_death_sum": [ - 2016 + 2015 ], "wasted_magazine_shots": [ - 2016 + 2015 ], "zeus_kills": [ - 2016 + 2015 ], "__typename": [ - 75 + 74 ] }, "player_match_map_stats_bool_exp": { "_and": [ - 2489 + 2488 ], "_not": [ - 2489 + 2488 ], "_or": [ - 2489 + 2488 ], "assists": [ 39 @@ -50943,7 +51789,7 @@ export default { 39 ], "crosshair_angle_sum_deg": [ - 2015 + 2014 ], "damage": [ 39 @@ -50985,7 +51831,7 @@ export default { 39 ], "flash_duration_sum": [ - 2015 + 2014 ], "flashes_thrown": [ 39 @@ -51039,16 +51885,16 @@ export default { 39 ], "match": [ - 1840 + 1839 ], "match_id": [ - 3866 + 3865 ], "match_map": [ - 1678 + 1677 ], "match_map_id": [ - 3866 + 3865 ], "molotov_damage": [ 39 @@ -51063,7 +51909,7 @@ export default { 39 ], "player": [ - 2919 + 2918 ], "rounds_ct": [ 39 @@ -51096,7 +51942,7 @@ export default { 39 ], "steam_id": [ - 176 + 175 ], "team_damage": [ 39 @@ -51111,7 +51957,7 @@ export default { 39 ], "time_to_damage_sum_s": [ - 2015 + 2014 ], "total_engagement_frames": [ 39 @@ -51141,7 +51987,7 @@ export default { 39 ], "updated_at": [ - 3468 + 3467 ], "util_on_death_count": [ 39 @@ -51156,7 +52002,7 @@ export default { 39 ], "__typename": [ - 75 + 74 ] }, "player_match_map_stats_constraint": {}, @@ -51180,7 +52026,7 @@ export default { 38 ], "crosshair_angle_sum_deg": [ - 2014 + 2013 ], "damage": [ 38 @@ -51222,7 +52068,7 @@ export default { 38 ], "flash_duration_sum": [ - 2014 + 2013 ], "flashes_thrown": [ 38 @@ -51318,7 +52164,7 @@ export default { 38 ], "steam_id": [ - 174 + 173 ], "team_damage": [ 38 @@ -51333,7 +52179,7 @@ export default { 38 ], "time_to_damage_sum_s": [ - 2014 + 2013 ], "total_engagement_frames": [ 38 @@ -51375,7 +52221,7 @@ export default { 38 ], "__typename": [ - 75 + 74 ] }, "player_match_map_stats_insert_input": { @@ -51398,7 +52244,7 @@ export default { 38 ], "crosshair_angle_sum_deg": [ - 2014 + 2013 ], "damage": [ 38 @@ -51440,7 +52286,7 @@ export default { 38 ], "flash_duration_sum": [ - 2014 + 2013 ], "flashes_thrown": [ 38 @@ -51494,16 +52340,16 @@ export default { 38 ], "match": [ - 1849 + 1848 ], "match_id": [ - 3864 + 3863 ], "match_map": [ - 1687 + 1686 ], "match_map_id": [ - 3864 + 3863 ], "molotov_damage": [ 38 @@ -51518,7 +52364,7 @@ export default { 38 ], "player": [ - 2926 + 2925 ], "rounds_ct": [ 38 @@ -51551,7 +52397,7 @@ export default { 38 ], "steam_id": [ - 174 + 173 ], "team_damage": [ 38 @@ -51566,7 +52412,7 @@ export default { 38 ], "time_to_damage_sum_s": [ - 2014 + 2013 ], "total_engagement_frames": [ 38 @@ -51596,7 +52442,7 @@ export default { 38 ], "updated_at": [ - 3467 + 3466 ], "util_on_death_count": [ 38 @@ -51611,7 +52457,7 @@ export default { 38 ], "__typename": [ - 75 + 74 ] }, "player_match_map_stats_max_fields": { @@ -51634,7 +52480,7 @@ export default { 38 ], "crosshair_angle_sum_deg": [ - 2014 + 2013 ], "damage": [ 38 @@ -51676,7 +52522,7 @@ export default { 38 ], "flash_duration_sum": [ - 2014 + 2013 ], "flashes_thrown": [ 38 @@ -51730,10 +52576,10 @@ export default { 38 ], "match_id": [ - 3864 + 3863 ], "match_map_id": [ - 3864 + 3863 ], "molotov_damage": [ 38 @@ -51778,7 +52624,7 @@ export default { 38 ], "steam_id": [ - 174 + 173 ], "team_damage": [ 38 @@ -51793,7 +52639,7 @@ export default { 38 ], "time_to_damage_sum_s": [ - 2014 + 2013 ], "total_engagement_frames": [ 38 @@ -51823,7 +52669,7 @@ export default { 38 ], "updated_at": [ - 3467 + 3466 ], "util_on_death_count": [ 38 @@ -51838,234 +52684,234 @@ export default { 38 ], "__typename": [ - 75 + 74 ] }, "player_match_map_stats_max_order_by": { "assists": [ - 2016 + 2015 ], "assists_ct": [ - 2016 + 2015 ], "assists_t": [ - 2016 + 2015 ], "counter_strafe_eligible_shots": [ - 2016 + 2015 ], "counter_strafed_shots": [ - 2016 + 2015 ], "crosshair_angle_count": [ - 2016 + 2015 ], "crosshair_angle_sum_deg": [ - 2016 + 2015 ], "damage": [ - 2016 + 2015 ], "damage_ct": [ - 2016 + 2015 ], "damage_t": [ - 2016 + 2015 ], "deaths": [ - 2016 + 2015 ], "deaths_ct": [ - 2016 + 2015 ], "deaths_t": [ - 2016 + 2015 ], "decoy_throws": [ - 2016 + 2015 ], "enemies_flashed": [ - 2016 + 2015 ], "first_bullet_hits": [ - 2016 + 2015 ], "first_bullet_shots": [ - 2016 + 2015 ], "five_kill_rounds": [ - 2016 + 2015 ], "flash_assists": [ - 2016 + 2015 ], "flash_duration_count": [ - 2016 + 2015 ], "flash_duration_sum": [ - 2016 + 2015 ], "flashes_thrown": [ - 2016 + 2015 ], "four_kill_rounds": [ - 2016 + 2015 ], "he_damage": [ - 2016 + 2015 ], "he_team_damage": [ - 2016 + 2015 ], "he_throws": [ - 2016 + 2015 ], "headshot_hits": [ - 2016 + 2015 ], "hits": [ - 2016 + 2015 ], "hits_at_spotted": [ - 2016 + 2015 ], "hs_kills": [ - 2016 + 2015 ], "hs_kills_ct": [ - 2016 + 2015 ], "hs_kills_t": [ - 2016 + 2015 ], "kast_rounds": [ - 2016 + 2015 ], "kast_total_rounds": [ - 2016 + 2015 ], "kills": [ - 2016 + 2015 ], "kills_ct": [ - 2016 + 2015 ], "kills_t": [ - 2016 + 2015 ], "knife_kills": [ - 2016 + 2015 ], "match_id": [ - 2016 + 2015 ], "match_map_id": [ - 2016 + 2015 ], "molotov_damage": [ - 2016 + 2015 ], "molotov_throws": [ - 2016 + 2015 ], "non_awp_hits": [ - 2016 + 2015 ], "on_target_frames": [ - 2016 + 2015 ], "rounds_ct": [ - 2016 + 2015 ], "rounds_played": [ - 2016 + 2015 ], "rounds_t": [ - 2016 + 2015 ], "shots_at_spotted": [ - 2016 + 2015 ], "shots_fired": [ - 2016 + 2015 ], "smoke_throws": [ - 2016 + 2015 ], "spotted_count": [ - 2016 + 2015 ], "spotted_with_damage_count": [ - 2016 + 2015 ], "spray_hits": [ - 2016 + 2015 ], "spray_shots": [ - 2016 + 2015 ], "steam_id": [ - 2016 + 2015 ], "team_damage": [ - 2016 + 2015 ], "team_flashed": [ - 2016 + 2015 ], "three_kill_rounds": [ - 2016 + 2015 ], "time_to_damage_count": [ - 2016 + 2015 ], "time_to_damage_sum_s": [ - 2016 + 2015 ], "total_engagement_frames": [ - 2016 + 2015 ], "trade_kill_attempts": [ - 2016 + 2015 ], "trade_kill_opportunities": [ - 2016 + 2015 ], "trade_kill_successes": [ - 2016 + 2015 ], "traded_death_attempts": [ - 2016 + 2015 ], "traded_death_opportunities": [ - 2016 + 2015 ], "traded_death_successes": [ - 2016 + 2015 ], "two_kill_rounds": [ - 2016 + 2015 ], "unused_utility_value": [ - 2016 + 2015 ], "updated_at": [ - 2016 + 2015 ], "util_on_death_count": [ - 2016 + 2015 ], "util_on_death_sum": [ - 2016 + 2015 ], "wasted_magazine_shots": [ - 2016 + 2015 ], "zeus_kills": [ - 2016 + 2015 ], "__typename": [ - 75 + 74 ] }, "player_match_map_stats_min_fields": { @@ -52088,7 +52934,7 @@ export default { 38 ], "crosshair_angle_sum_deg": [ - 2014 + 2013 ], "damage": [ 38 @@ -52130,7 +52976,7 @@ export default { 38 ], "flash_duration_sum": [ - 2014 + 2013 ], "flashes_thrown": [ 38 @@ -52184,10 +53030,10 @@ export default { 38 ], "match_id": [ - 3864 + 3863 ], "match_map_id": [ - 3864 + 3863 ], "molotov_damage": [ 38 @@ -52232,7 +53078,7 @@ export default { 38 ], "steam_id": [ - 174 + 173 ], "team_damage": [ 38 @@ -52247,7 +53093,7 @@ export default { 38 ], "time_to_damage_sum_s": [ - 2014 + 2013 ], "total_engagement_frames": [ 38 @@ -52277,7 +53123,7 @@ export default { 38 ], "updated_at": [ - 3467 + 3466 ], "util_on_death_count": [ 38 @@ -52292,234 +53138,234 @@ export default { 38 ], "__typename": [ - 75 + 74 ] }, "player_match_map_stats_min_order_by": { "assists": [ - 2016 + 2015 ], "assists_ct": [ - 2016 + 2015 ], "assists_t": [ - 2016 + 2015 ], "counter_strafe_eligible_shots": [ - 2016 + 2015 ], "counter_strafed_shots": [ - 2016 + 2015 ], "crosshair_angle_count": [ - 2016 + 2015 ], "crosshair_angle_sum_deg": [ - 2016 + 2015 ], "damage": [ - 2016 + 2015 ], "damage_ct": [ - 2016 + 2015 ], "damage_t": [ - 2016 + 2015 ], "deaths": [ - 2016 + 2015 ], "deaths_ct": [ - 2016 + 2015 ], "deaths_t": [ - 2016 + 2015 ], "decoy_throws": [ - 2016 + 2015 ], "enemies_flashed": [ - 2016 + 2015 ], "first_bullet_hits": [ - 2016 + 2015 ], "first_bullet_shots": [ - 2016 + 2015 ], "five_kill_rounds": [ - 2016 + 2015 ], "flash_assists": [ - 2016 + 2015 ], "flash_duration_count": [ - 2016 + 2015 ], "flash_duration_sum": [ - 2016 + 2015 ], "flashes_thrown": [ - 2016 + 2015 ], "four_kill_rounds": [ - 2016 + 2015 ], "he_damage": [ - 2016 + 2015 ], "he_team_damage": [ - 2016 + 2015 ], "he_throws": [ - 2016 + 2015 ], "headshot_hits": [ - 2016 + 2015 ], "hits": [ - 2016 + 2015 ], "hits_at_spotted": [ - 2016 + 2015 ], "hs_kills": [ - 2016 + 2015 ], "hs_kills_ct": [ - 2016 + 2015 ], "hs_kills_t": [ - 2016 + 2015 ], "kast_rounds": [ - 2016 + 2015 ], "kast_total_rounds": [ - 2016 + 2015 ], "kills": [ - 2016 + 2015 ], "kills_ct": [ - 2016 + 2015 ], "kills_t": [ - 2016 + 2015 ], "knife_kills": [ - 2016 + 2015 ], "match_id": [ - 2016 + 2015 ], "match_map_id": [ - 2016 + 2015 ], "molotov_damage": [ - 2016 + 2015 ], "molotov_throws": [ - 2016 + 2015 ], "non_awp_hits": [ - 2016 + 2015 ], "on_target_frames": [ - 2016 + 2015 ], "rounds_ct": [ - 2016 + 2015 ], "rounds_played": [ - 2016 + 2015 ], "rounds_t": [ - 2016 + 2015 ], "shots_at_spotted": [ - 2016 + 2015 ], "shots_fired": [ - 2016 + 2015 ], "smoke_throws": [ - 2016 + 2015 ], "spotted_count": [ - 2016 + 2015 ], "spotted_with_damage_count": [ - 2016 + 2015 ], "spray_hits": [ - 2016 + 2015 ], "spray_shots": [ - 2016 + 2015 ], "steam_id": [ - 2016 + 2015 ], "team_damage": [ - 2016 + 2015 ], "team_flashed": [ - 2016 + 2015 ], "three_kill_rounds": [ - 2016 + 2015 ], "time_to_damage_count": [ - 2016 + 2015 ], "time_to_damage_sum_s": [ - 2016 + 2015 ], "total_engagement_frames": [ - 2016 + 2015 ], "trade_kill_attempts": [ - 2016 + 2015 ], "trade_kill_opportunities": [ - 2016 + 2015 ], "trade_kill_successes": [ - 2016 + 2015 ], "traded_death_attempts": [ - 2016 + 2015 ], "traded_death_opportunities": [ - 2016 + 2015 ], "traded_death_successes": [ - 2016 + 2015 ], "two_kill_rounds": [ - 2016 + 2015 ], "unused_utility_value": [ - 2016 + 2015 ], "updated_at": [ - 2016 + 2015 ], "util_on_death_count": [ - 2016 + 2015 ], "util_on_death_sum": [ - 2016 + 2015 ], "wasted_magazine_shots": [ - 2016 + 2015 ], "zeus_kills": [ - 2016 + 2015 ], "__typename": [ - 75 + 74 ] }, "player_match_map_stats_mutation_response": { @@ -52527,271 +53373,271 @@ export default { 38 ], "returning": [ - 2480 + 2479 ], "__typename": [ - 75 + 74 ] }, "player_match_map_stats_on_conflict": { "constraint": [ - 2490 + 2489 ], "update_columns": [ - 2513 + 2512 ], "where": [ - 2489 + 2488 ], "__typename": [ - 75 + 74 ] }, "player_match_map_stats_order_by": { "assists": [ - 2016 + 2015 ], "assists_ct": [ - 2016 + 2015 ], "assists_t": [ - 2016 + 2015 ], "counter_strafe_eligible_shots": [ - 2016 + 2015 ], "counter_strafed_shots": [ - 2016 + 2015 ], "crosshair_angle_count": [ - 2016 + 2015 ], "crosshair_angle_sum_deg": [ - 2016 + 2015 ], "damage": [ - 2016 + 2015 ], "damage_ct": [ - 2016 + 2015 ], "damage_t": [ - 2016 + 2015 ], "deaths": [ - 2016 + 2015 ], "deaths_ct": [ - 2016 + 2015 ], "deaths_t": [ - 2016 + 2015 ], "decoy_throws": [ - 2016 + 2015 ], "enemies_flashed": [ - 2016 + 2015 ], "first_bullet_hits": [ - 2016 + 2015 ], "first_bullet_shots": [ - 2016 + 2015 ], "five_kill_rounds": [ - 2016 + 2015 ], "flash_assists": [ - 2016 + 2015 ], "flash_duration_count": [ - 2016 + 2015 ], "flash_duration_sum": [ - 2016 + 2015 ], "flashes_thrown": [ - 2016 + 2015 ], "four_kill_rounds": [ - 2016 + 2015 ], "he_damage": [ - 2016 + 2015 ], "he_team_damage": [ - 2016 + 2015 ], "he_throws": [ - 2016 + 2015 ], "headshot_hits": [ - 2016 + 2015 ], "hits": [ - 2016 + 2015 ], "hits_at_spotted": [ - 2016 + 2015 ], "hs_kills": [ - 2016 + 2015 ], "hs_kills_ct": [ - 2016 + 2015 ], "hs_kills_t": [ - 2016 + 2015 ], "kast_rounds": [ - 2016 + 2015 ], "kast_total_rounds": [ - 2016 + 2015 ], "kills": [ - 2016 + 2015 ], "kills_ct": [ - 2016 + 2015 ], "kills_t": [ - 2016 + 2015 ], "knife_kills": [ - 2016 + 2015 ], "match": [ - 1851 + 1850 ], "match_id": [ - 2016 + 2015 ], "match_map": [ - 1689 + 1688 ], "match_map_id": [ - 2016 + 2015 ], "molotov_damage": [ - 2016 + 2015 ], "molotov_throws": [ - 2016 + 2015 ], "non_awp_hits": [ - 2016 + 2015 ], "on_target_frames": [ - 2016 + 2015 ], "player": [ - 2928 + 2927 ], "rounds_ct": [ - 2016 + 2015 ], "rounds_played": [ - 2016 + 2015 ], "rounds_t": [ - 2016 + 2015 ], "shots_at_spotted": [ - 2016 + 2015 ], "shots_fired": [ - 2016 + 2015 ], "smoke_throws": [ - 2016 + 2015 ], "spotted_count": [ - 2016 + 2015 ], "spotted_with_damage_count": [ - 2016 + 2015 ], "spray_hits": [ - 2016 + 2015 ], "spray_shots": [ - 2016 + 2015 ], "steam_id": [ - 2016 + 2015 ], "team_damage": [ - 2016 + 2015 ], "team_flashed": [ - 2016 + 2015 ], "three_kill_rounds": [ - 2016 + 2015 ], "time_to_damage_count": [ - 2016 + 2015 ], "time_to_damage_sum_s": [ - 2016 + 2015 ], "total_engagement_frames": [ - 2016 + 2015 ], "trade_kill_attempts": [ - 2016 + 2015 ], "trade_kill_opportunities": [ - 2016 + 2015 ], "trade_kill_successes": [ - 2016 + 2015 ], "traded_death_attempts": [ - 2016 + 2015 ], "traded_death_opportunities": [ - 2016 + 2015 ], "traded_death_successes": [ - 2016 + 2015 ], "two_kill_rounds": [ - 2016 + 2015 ], "unused_utility_value": [ - 2016 + 2015 ], "updated_at": [ - 2016 + 2015 ], "util_on_death_count": [ - 2016 + 2015 ], "util_on_death_sum": [ - 2016 + 2015 ], "wasted_magazine_shots": [ - 2016 + 2015 ], "zeus_kills": [ - 2016 + 2015 ], "__typename": [ - 75 + 74 ] }, "player_match_map_stats_pk_columns_input": { "match_map_id": [ - 3864 + 3863 ], "steam_id": [ - 174 + 173 ], "__typename": [ - 75 + 74 ] }, "player_match_map_stats_select_column": {}, @@ -52815,7 +53661,7 @@ export default { 38 ], "crosshair_angle_sum_deg": [ - 2014 + 2013 ], "damage": [ 38 @@ -52857,7 +53703,7 @@ export default { 38 ], "flash_duration_sum": [ - 2014 + 2013 ], "flashes_thrown": [ 38 @@ -52911,10 +53757,10 @@ export default { 38 ], "match_id": [ - 3864 + 3863 ], "match_map_id": [ - 3864 + 3863 ], "molotov_damage": [ 38 @@ -52959,7 +53805,7 @@ export default { 38 ], "steam_id": [ - 174 + 173 ], "team_damage": [ 38 @@ -52974,7 +53820,7 @@ export default { 38 ], "time_to_damage_sum_s": [ - 2014 + 2013 ], "total_engagement_frames": [ 38 @@ -53004,7 +53850,7 @@ export default { 38 ], "updated_at": [ - 3467 + 3466 ], "util_on_death_count": [ 38 @@ -53019,7 +53865,7 @@ export default { 38 ], "__typename": [ - 75 + 74 ] }, "player_match_map_stats_stddev_fields": { @@ -53237,225 +54083,225 @@ export default { 29 ], "__typename": [ - 75 + 74 ] }, "player_match_map_stats_stddev_order_by": { "assists": [ - 2016 + 2015 ], "assists_ct": [ - 2016 + 2015 ], "assists_t": [ - 2016 + 2015 ], "counter_strafe_eligible_shots": [ - 2016 + 2015 ], "counter_strafed_shots": [ - 2016 + 2015 ], "crosshair_angle_count": [ - 2016 + 2015 ], "crosshair_angle_sum_deg": [ - 2016 + 2015 ], "damage": [ - 2016 + 2015 ], "damage_ct": [ - 2016 + 2015 ], "damage_t": [ - 2016 + 2015 ], "deaths": [ - 2016 + 2015 ], "deaths_ct": [ - 2016 + 2015 ], "deaths_t": [ - 2016 + 2015 ], "decoy_throws": [ - 2016 + 2015 ], "enemies_flashed": [ - 2016 + 2015 ], "first_bullet_hits": [ - 2016 + 2015 ], "first_bullet_shots": [ - 2016 + 2015 ], "five_kill_rounds": [ - 2016 + 2015 ], "flash_assists": [ - 2016 + 2015 ], "flash_duration_count": [ - 2016 + 2015 ], "flash_duration_sum": [ - 2016 + 2015 ], "flashes_thrown": [ - 2016 + 2015 ], "four_kill_rounds": [ - 2016 + 2015 ], "he_damage": [ - 2016 + 2015 ], "he_team_damage": [ - 2016 + 2015 ], "he_throws": [ - 2016 + 2015 ], "headshot_hits": [ - 2016 + 2015 ], "hits": [ - 2016 + 2015 ], "hits_at_spotted": [ - 2016 + 2015 ], "hs_kills": [ - 2016 + 2015 ], "hs_kills_ct": [ - 2016 + 2015 ], "hs_kills_t": [ - 2016 + 2015 ], "kast_rounds": [ - 2016 + 2015 ], "kast_total_rounds": [ - 2016 + 2015 ], "kills": [ - 2016 + 2015 ], "kills_ct": [ - 2016 + 2015 ], "kills_t": [ - 2016 + 2015 ], "knife_kills": [ - 2016 + 2015 ], "molotov_damage": [ - 2016 + 2015 ], "molotov_throws": [ - 2016 + 2015 ], "non_awp_hits": [ - 2016 + 2015 ], "on_target_frames": [ - 2016 + 2015 ], "rounds_ct": [ - 2016 + 2015 ], "rounds_played": [ - 2016 + 2015 ], "rounds_t": [ - 2016 + 2015 ], "shots_at_spotted": [ - 2016 + 2015 ], "shots_fired": [ - 2016 + 2015 ], "smoke_throws": [ - 2016 + 2015 ], "spotted_count": [ - 2016 + 2015 ], "spotted_with_damage_count": [ - 2016 + 2015 ], "spray_hits": [ - 2016 + 2015 ], "spray_shots": [ - 2016 + 2015 ], "steam_id": [ - 2016 + 2015 ], "team_damage": [ - 2016 + 2015 ], "team_flashed": [ - 2016 + 2015 ], "three_kill_rounds": [ - 2016 + 2015 ], "time_to_damage_count": [ - 2016 + 2015 ], "time_to_damage_sum_s": [ - 2016 + 2015 ], "total_engagement_frames": [ - 2016 + 2015 ], "trade_kill_attempts": [ - 2016 + 2015 ], "trade_kill_opportunities": [ - 2016 + 2015 ], "trade_kill_successes": [ - 2016 + 2015 ], "traded_death_attempts": [ - 2016 + 2015 ], "traded_death_opportunities": [ - 2016 + 2015 ], "traded_death_successes": [ - 2016 + 2015 ], "two_kill_rounds": [ - 2016 + 2015 ], "unused_utility_value": [ - 2016 + 2015 ], "util_on_death_count": [ - 2016 + 2015 ], "util_on_death_sum": [ - 2016 + 2015 ], "wasted_magazine_shots": [ - 2016 + 2015 ], "zeus_kills": [ - 2016 + 2015 ], "__typename": [ - 75 + 74 ] }, "player_match_map_stats_stddev_pop_fields": { @@ -53673,225 +54519,225 @@ export default { 29 ], "__typename": [ - 75 + 74 ] }, "player_match_map_stats_stddev_pop_order_by": { "assists": [ - 2016 + 2015 ], "assists_ct": [ - 2016 + 2015 ], "assists_t": [ - 2016 + 2015 ], "counter_strafe_eligible_shots": [ - 2016 + 2015 ], "counter_strafed_shots": [ - 2016 + 2015 ], "crosshair_angle_count": [ - 2016 + 2015 ], "crosshair_angle_sum_deg": [ - 2016 + 2015 ], "damage": [ - 2016 + 2015 ], "damage_ct": [ - 2016 + 2015 ], "damage_t": [ - 2016 + 2015 ], "deaths": [ - 2016 + 2015 ], "deaths_ct": [ - 2016 + 2015 ], "deaths_t": [ - 2016 + 2015 ], "decoy_throws": [ - 2016 + 2015 ], "enemies_flashed": [ - 2016 + 2015 ], "first_bullet_hits": [ - 2016 + 2015 ], "first_bullet_shots": [ - 2016 + 2015 ], "five_kill_rounds": [ - 2016 + 2015 ], "flash_assists": [ - 2016 + 2015 ], "flash_duration_count": [ - 2016 + 2015 ], "flash_duration_sum": [ - 2016 + 2015 ], "flashes_thrown": [ - 2016 + 2015 ], "four_kill_rounds": [ - 2016 + 2015 ], "he_damage": [ - 2016 + 2015 ], "he_team_damage": [ - 2016 + 2015 ], "he_throws": [ - 2016 + 2015 ], "headshot_hits": [ - 2016 + 2015 ], "hits": [ - 2016 + 2015 ], "hits_at_spotted": [ - 2016 + 2015 ], "hs_kills": [ - 2016 + 2015 ], "hs_kills_ct": [ - 2016 + 2015 ], "hs_kills_t": [ - 2016 + 2015 ], "kast_rounds": [ - 2016 + 2015 ], "kast_total_rounds": [ - 2016 + 2015 ], "kills": [ - 2016 + 2015 ], "kills_ct": [ - 2016 + 2015 ], "kills_t": [ - 2016 + 2015 ], "knife_kills": [ - 2016 + 2015 ], "molotov_damage": [ - 2016 + 2015 ], "molotov_throws": [ - 2016 + 2015 ], "non_awp_hits": [ - 2016 + 2015 ], "on_target_frames": [ - 2016 + 2015 ], "rounds_ct": [ - 2016 + 2015 ], "rounds_played": [ - 2016 + 2015 ], "rounds_t": [ - 2016 + 2015 ], "shots_at_spotted": [ - 2016 + 2015 ], "shots_fired": [ - 2016 + 2015 ], "smoke_throws": [ - 2016 + 2015 ], "spotted_count": [ - 2016 + 2015 ], "spotted_with_damage_count": [ - 2016 + 2015 ], "spray_hits": [ - 2016 + 2015 ], "spray_shots": [ - 2016 + 2015 ], "steam_id": [ - 2016 + 2015 ], "team_damage": [ - 2016 + 2015 ], "team_flashed": [ - 2016 + 2015 ], "three_kill_rounds": [ - 2016 + 2015 ], "time_to_damage_count": [ - 2016 + 2015 ], "time_to_damage_sum_s": [ - 2016 + 2015 ], "total_engagement_frames": [ - 2016 + 2015 ], "trade_kill_attempts": [ - 2016 + 2015 ], "trade_kill_opportunities": [ - 2016 + 2015 ], "trade_kill_successes": [ - 2016 + 2015 ], "traded_death_attempts": [ - 2016 + 2015 ], "traded_death_opportunities": [ - 2016 + 2015 ], "traded_death_successes": [ - 2016 + 2015 ], "two_kill_rounds": [ - 2016 + 2015 ], "unused_utility_value": [ - 2016 + 2015 ], "util_on_death_count": [ - 2016 + 2015 ], "util_on_death_sum": [ - 2016 + 2015 ], "wasted_magazine_shots": [ - 2016 + 2015 ], "zeus_kills": [ - 2016 + 2015 ], "__typename": [ - 75 + 74 ] }, "player_match_map_stats_stddev_samp_fields": { @@ -54109,236 +54955,236 @@ export default { 29 ], "__typename": [ - 75 + 74 ] }, "player_match_map_stats_stddev_samp_order_by": { "assists": [ - 2016 + 2015 ], "assists_ct": [ - 2016 + 2015 ], "assists_t": [ - 2016 + 2015 ], "counter_strafe_eligible_shots": [ - 2016 + 2015 ], "counter_strafed_shots": [ - 2016 + 2015 ], "crosshair_angle_count": [ - 2016 + 2015 ], "crosshair_angle_sum_deg": [ - 2016 + 2015 ], "damage": [ - 2016 + 2015 ], "damage_ct": [ - 2016 + 2015 ], "damage_t": [ - 2016 + 2015 ], "deaths": [ - 2016 + 2015 ], "deaths_ct": [ - 2016 + 2015 ], "deaths_t": [ - 2016 + 2015 ], "decoy_throws": [ - 2016 + 2015 ], "enemies_flashed": [ - 2016 + 2015 ], "first_bullet_hits": [ - 2016 + 2015 ], "first_bullet_shots": [ - 2016 + 2015 ], "five_kill_rounds": [ - 2016 + 2015 ], "flash_assists": [ - 2016 + 2015 ], "flash_duration_count": [ - 2016 + 2015 ], "flash_duration_sum": [ - 2016 + 2015 ], "flashes_thrown": [ - 2016 + 2015 ], "four_kill_rounds": [ - 2016 + 2015 ], "he_damage": [ - 2016 + 2015 ], "he_team_damage": [ - 2016 + 2015 ], "he_throws": [ - 2016 + 2015 ], "headshot_hits": [ - 2016 + 2015 ], "hits": [ - 2016 + 2015 ], "hits_at_spotted": [ - 2016 + 2015 ], "hs_kills": [ - 2016 + 2015 ], "hs_kills_ct": [ - 2016 + 2015 ], "hs_kills_t": [ - 2016 + 2015 ], "kast_rounds": [ - 2016 + 2015 ], "kast_total_rounds": [ - 2016 + 2015 ], "kills": [ - 2016 + 2015 ], "kills_ct": [ - 2016 + 2015 ], "kills_t": [ - 2016 + 2015 ], "knife_kills": [ - 2016 + 2015 ], "molotov_damage": [ - 2016 + 2015 ], "molotov_throws": [ - 2016 + 2015 ], "non_awp_hits": [ - 2016 + 2015 ], "on_target_frames": [ - 2016 + 2015 ], "rounds_ct": [ - 2016 + 2015 ], "rounds_played": [ - 2016 + 2015 ], "rounds_t": [ - 2016 + 2015 ], "shots_at_spotted": [ - 2016 + 2015 ], "shots_fired": [ - 2016 + 2015 ], "smoke_throws": [ - 2016 + 2015 ], "spotted_count": [ - 2016 + 2015 ], "spotted_with_damage_count": [ - 2016 + 2015 ], "spray_hits": [ - 2016 + 2015 ], "spray_shots": [ - 2016 + 2015 ], "steam_id": [ - 2016 + 2015 ], "team_damage": [ - 2016 + 2015 ], "team_flashed": [ - 2016 + 2015 ], "three_kill_rounds": [ - 2016 + 2015 ], "time_to_damage_count": [ - 2016 + 2015 ], "time_to_damage_sum_s": [ - 2016 + 2015 ], "total_engagement_frames": [ - 2016 + 2015 ], "trade_kill_attempts": [ - 2016 + 2015 ], "trade_kill_opportunities": [ - 2016 + 2015 ], "trade_kill_successes": [ - 2016 + 2015 ], "traded_death_attempts": [ - 2016 + 2015 ], "traded_death_opportunities": [ - 2016 + 2015 ], "traded_death_successes": [ - 2016 + 2015 ], "two_kill_rounds": [ - 2016 + 2015 ], "unused_utility_value": [ - 2016 + 2015 ], "util_on_death_count": [ - 2016 + 2015 ], "util_on_death_sum": [ - 2016 + 2015 ], "wasted_magazine_shots": [ - 2016 + 2015 ], "zeus_kills": [ - 2016 + 2015 ], "__typename": [ - 75 + 74 ] }, "player_match_map_stats_stream_cursor_input": { "initial_value": [ - 2510 + 2509 ], "ordering": [ - 229 + 228 ], "__typename": [ - 75 + 74 ] }, "player_match_map_stats_stream_cursor_value_input": { @@ -54361,7 +55207,7 @@ export default { 38 ], "crosshair_angle_sum_deg": [ - 2014 + 2013 ], "damage": [ 38 @@ -54403,7 +55249,7 @@ export default { 38 ], "flash_duration_sum": [ - 2014 + 2013 ], "flashes_thrown": [ 38 @@ -54457,10 +55303,10 @@ export default { 38 ], "match_id": [ - 3864 + 3863 ], "match_map_id": [ - 3864 + 3863 ], "molotov_damage": [ 38 @@ -54505,7 +55351,7 @@ export default { 38 ], "steam_id": [ - 174 + 173 ], "team_damage": [ 38 @@ -54520,7 +55366,7 @@ export default { 38 ], "time_to_damage_sum_s": [ - 2014 + 2013 ], "total_engagement_frames": [ 38 @@ -54550,7 +55396,7 @@ export default { 38 ], "updated_at": [ - 3467 + 3466 ], "util_on_death_count": [ 38 @@ -54565,7 +55411,7 @@ export default { 38 ], "__typename": [ - 75 + 74 ] }, "player_match_map_stats_sum_fields": { @@ -54588,7 +55434,7 @@ export default { 38 ], "crosshair_angle_sum_deg": [ - 2014 + 2013 ], "damage": [ 38 @@ -54630,7 +55476,7 @@ export default { 38 ], "flash_duration_sum": [ - 2014 + 2013 ], "flashes_thrown": [ 38 @@ -54726,7 +55572,7 @@ export default { 38 ], "steam_id": [ - 174 + 173 ], "team_damage": [ 38 @@ -54741,7 +55587,7 @@ export default { 38 ], "time_to_damage_sum_s": [ - 2014 + 2013 ], "total_engagement_frames": [ 38 @@ -54783,240 +55629,240 @@ export default { 38 ], "__typename": [ - 75 + 74 ] }, "player_match_map_stats_sum_order_by": { "assists": [ - 2016 + 2015 ], "assists_ct": [ - 2016 + 2015 ], "assists_t": [ - 2016 + 2015 ], "counter_strafe_eligible_shots": [ - 2016 + 2015 ], "counter_strafed_shots": [ - 2016 + 2015 ], "crosshair_angle_count": [ - 2016 + 2015 ], "crosshair_angle_sum_deg": [ - 2016 + 2015 ], "damage": [ - 2016 + 2015 ], "damage_ct": [ - 2016 + 2015 ], "damage_t": [ - 2016 + 2015 ], "deaths": [ - 2016 + 2015 ], "deaths_ct": [ - 2016 + 2015 ], "deaths_t": [ - 2016 + 2015 ], "decoy_throws": [ - 2016 + 2015 ], "enemies_flashed": [ - 2016 + 2015 ], "first_bullet_hits": [ - 2016 + 2015 ], "first_bullet_shots": [ - 2016 + 2015 ], "five_kill_rounds": [ - 2016 + 2015 ], "flash_assists": [ - 2016 + 2015 ], "flash_duration_count": [ - 2016 + 2015 ], "flash_duration_sum": [ - 2016 + 2015 ], "flashes_thrown": [ - 2016 + 2015 ], "four_kill_rounds": [ - 2016 + 2015 ], "he_damage": [ - 2016 + 2015 ], "he_team_damage": [ - 2016 + 2015 ], "he_throws": [ - 2016 + 2015 ], "headshot_hits": [ - 2016 + 2015 ], "hits": [ - 2016 + 2015 ], "hits_at_spotted": [ - 2016 + 2015 ], "hs_kills": [ - 2016 + 2015 ], "hs_kills_ct": [ - 2016 + 2015 ], "hs_kills_t": [ - 2016 + 2015 ], "kast_rounds": [ - 2016 + 2015 ], "kast_total_rounds": [ - 2016 + 2015 ], "kills": [ - 2016 + 2015 ], "kills_ct": [ - 2016 + 2015 ], "kills_t": [ - 2016 + 2015 ], "knife_kills": [ - 2016 + 2015 ], "molotov_damage": [ - 2016 + 2015 ], "molotov_throws": [ - 2016 + 2015 ], "non_awp_hits": [ - 2016 + 2015 ], "on_target_frames": [ - 2016 + 2015 ], "rounds_ct": [ - 2016 + 2015 ], "rounds_played": [ - 2016 + 2015 ], "rounds_t": [ - 2016 + 2015 ], "shots_at_spotted": [ - 2016 + 2015 ], "shots_fired": [ - 2016 + 2015 ], "smoke_throws": [ - 2016 + 2015 ], "spotted_count": [ - 2016 + 2015 ], "spotted_with_damage_count": [ - 2016 + 2015 ], "spray_hits": [ - 2016 + 2015 ], "spray_shots": [ - 2016 + 2015 ], "steam_id": [ - 2016 + 2015 ], "team_damage": [ - 2016 + 2015 ], "team_flashed": [ - 2016 + 2015 ], "three_kill_rounds": [ - 2016 + 2015 ], "time_to_damage_count": [ - 2016 + 2015 ], "time_to_damage_sum_s": [ - 2016 + 2015 ], "total_engagement_frames": [ - 2016 + 2015 ], "trade_kill_attempts": [ - 2016 + 2015 ], "trade_kill_opportunities": [ - 2016 + 2015 ], "trade_kill_successes": [ - 2016 + 2015 ], "traded_death_attempts": [ - 2016 + 2015 ], "traded_death_opportunities": [ - 2016 + 2015 ], "traded_death_successes": [ - 2016 + 2015 ], "two_kill_rounds": [ - 2016 + 2015 ], "unused_utility_value": [ - 2016 + 2015 ], "util_on_death_count": [ - 2016 + 2015 ], "util_on_death_sum": [ - 2016 + 2015 ], "wasted_magazine_shots": [ - 2016 + 2015 ], "zeus_kills": [ - 2016 + 2015 ], "__typename": [ - 75 + 74 ] }, "player_match_map_stats_update_column": {}, "player_match_map_stats_updates": { "_inc": [ - 2491 + 2490 ], "_set": [ - 2502 + 2501 ], "where": [ - 2489 + 2488 ], "__typename": [ - 75 + 74 ] }, "player_match_map_stats_var_pop_fields": { @@ -55234,225 +56080,225 @@ export default { 29 ], "__typename": [ - 75 + 74 ] }, "player_match_map_stats_var_pop_order_by": { "assists": [ - 2016 + 2015 ], "assists_ct": [ - 2016 + 2015 ], "assists_t": [ - 2016 + 2015 ], "counter_strafe_eligible_shots": [ - 2016 + 2015 ], "counter_strafed_shots": [ - 2016 + 2015 ], "crosshair_angle_count": [ - 2016 + 2015 ], "crosshair_angle_sum_deg": [ - 2016 + 2015 ], "damage": [ - 2016 + 2015 ], "damage_ct": [ - 2016 + 2015 ], "damage_t": [ - 2016 + 2015 ], "deaths": [ - 2016 + 2015 ], "deaths_ct": [ - 2016 + 2015 ], "deaths_t": [ - 2016 + 2015 ], "decoy_throws": [ - 2016 + 2015 ], "enemies_flashed": [ - 2016 + 2015 ], "first_bullet_hits": [ - 2016 + 2015 ], "first_bullet_shots": [ - 2016 + 2015 ], "five_kill_rounds": [ - 2016 + 2015 ], "flash_assists": [ - 2016 + 2015 ], "flash_duration_count": [ - 2016 + 2015 ], "flash_duration_sum": [ - 2016 + 2015 ], "flashes_thrown": [ - 2016 + 2015 ], "four_kill_rounds": [ - 2016 + 2015 ], "he_damage": [ - 2016 + 2015 ], "he_team_damage": [ - 2016 + 2015 ], "he_throws": [ - 2016 + 2015 ], "headshot_hits": [ - 2016 + 2015 ], "hits": [ - 2016 + 2015 ], "hits_at_spotted": [ - 2016 + 2015 ], "hs_kills": [ - 2016 + 2015 ], "hs_kills_ct": [ - 2016 + 2015 ], "hs_kills_t": [ - 2016 + 2015 ], "kast_rounds": [ - 2016 + 2015 ], "kast_total_rounds": [ - 2016 + 2015 ], "kills": [ - 2016 + 2015 ], "kills_ct": [ - 2016 + 2015 ], "kills_t": [ - 2016 + 2015 ], "knife_kills": [ - 2016 + 2015 ], "molotov_damage": [ - 2016 + 2015 ], "molotov_throws": [ - 2016 + 2015 ], "non_awp_hits": [ - 2016 + 2015 ], "on_target_frames": [ - 2016 + 2015 ], "rounds_ct": [ - 2016 + 2015 ], "rounds_played": [ - 2016 + 2015 ], "rounds_t": [ - 2016 + 2015 ], "shots_at_spotted": [ - 2016 + 2015 ], "shots_fired": [ - 2016 + 2015 ], "smoke_throws": [ - 2016 + 2015 ], "spotted_count": [ - 2016 + 2015 ], "spotted_with_damage_count": [ - 2016 + 2015 ], "spray_hits": [ - 2016 + 2015 ], "spray_shots": [ - 2016 + 2015 ], "steam_id": [ - 2016 + 2015 ], "team_damage": [ - 2016 + 2015 ], "team_flashed": [ - 2016 + 2015 ], "three_kill_rounds": [ - 2016 + 2015 ], "time_to_damage_count": [ - 2016 + 2015 ], "time_to_damage_sum_s": [ - 2016 + 2015 ], "total_engagement_frames": [ - 2016 + 2015 ], "trade_kill_attempts": [ - 2016 + 2015 ], "trade_kill_opportunities": [ - 2016 + 2015 ], "trade_kill_successes": [ - 2016 + 2015 ], "traded_death_attempts": [ - 2016 + 2015 ], "traded_death_opportunities": [ - 2016 + 2015 ], "traded_death_successes": [ - 2016 + 2015 ], "two_kill_rounds": [ - 2016 + 2015 ], "unused_utility_value": [ - 2016 + 2015 ], "util_on_death_count": [ - 2016 + 2015 ], "util_on_death_sum": [ - 2016 + 2015 ], "wasted_magazine_shots": [ - 2016 + 2015 ], "zeus_kills": [ - 2016 + 2015 ], "__typename": [ - 75 + 74 ] }, "player_match_map_stats_var_samp_fields": { @@ -55670,225 +56516,225 @@ export default { 29 ], "__typename": [ - 75 + 74 ] }, "player_match_map_stats_var_samp_order_by": { "assists": [ - 2016 + 2015 ], "assists_ct": [ - 2016 + 2015 ], "assists_t": [ - 2016 + 2015 ], "counter_strafe_eligible_shots": [ - 2016 + 2015 ], "counter_strafed_shots": [ - 2016 + 2015 ], "crosshair_angle_count": [ - 2016 + 2015 ], "crosshair_angle_sum_deg": [ - 2016 + 2015 ], "damage": [ - 2016 + 2015 ], "damage_ct": [ - 2016 + 2015 ], "damage_t": [ - 2016 + 2015 ], "deaths": [ - 2016 + 2015 ], "deaths_ct": [ - 2016 + 2015 ], "deaths_t": [ - 2016 + 2015 ], "decoy_throws": [ - 2016 + 2015 ], "enemies_flashed": [ - 2016 + 2015 ], "first_bullet_hits": [ - 2016 + 2015 ], "first_bullet_shots": [ - 2016 + 2015 ], "five_kill_rounds": [ - 2016 + 2015 ], "flash_assists": [ - 2016 + 2015 ], "flash_duration_count": [ - 2016 + 2015 ], "flash_duration_sum": [ - 2016 + 2015 ], "flashes_thrown": [ - 2016 + 2015 ], "four_kill_rounds": [ - 2016 + 2015 ], "he_damage": [ - 2016 + 2015 ], "he_team_damage": [ - 2016 + 2015 ], "he_throws": [ - 2016 + 2015 ], "headshot_hits": [ - 2016 + 2015 ], "hits": [ - 2016 + 2015 ], "hits_at_spotted": [ - 2016 + 2015 ], "hs_kills": [ - 2016 + 2015 ], "hs_kills_ct": [ - 2016 + 2015 ], "hs_kills_t": [ - 2016 + 2015 ], "kast_rounds": [ - 2016 + 2015 ], "kast_total_rounds": [ - 2016 + 2015 ], "kills": [ - 2016 + 2015 ], "kills_ct": [ - 2016 + 2015 ], "kills_t": [ - 2016 + 2015 ], "knife_kills": [ - 2016 + 2015 ], "molotov_damage": [ - 2016 + 2015 ], "molotov_throws": [ - 2016 + 2015 ], "non_awp_hits": [ - 2016 + 2015 ], "on_target_frames": [ - 2016 + 2015 ], "rounds_ct": [ - 2016 + 2015 ], "rounds_played": [ - 2016 + 2015 ], "rounds_t": [ - 2016 + 2015 ], "shots_at_spotted": [ - 2016 + 2015 ], "shots_fired": [ - 2016 + 2015 ], "smoke_throws": [ - 2016 + 2015 ], "spotted_count": [ - 2016 + 2015 ], "spotted_with_damage_count": [ - 2016 + 2015 ], "spray_hits": [ - 2016 + 2015 ], "spray_shots": [ - 2016 + 2015 ], "steam_id": [ - 2016 + 2015 ], "team_damage": [ - 2016 + 2015 ], "team_flashed": [ - 2016 + 2015 ], "three_kill_rounds": [ - 2016 + 2015 ], "time_to_damage_count": [ - 2016 + 2015 ], "time_to_damage_sum_s": [ - 2016 + 2015 ], "total_engagement_frames": [ - 2016 + 2015 ], "trade_kill_attempts": [ - 2016 + 2015 ], "trade_kill_opportunities": [ - 2016 + 2015 ], "trade_kill_successes": [ - 2016 + 2015 ], "traded_death_attempts": [ - 2016 + 2015 ], "traded_death_opportunities": [ - 2016 + 2015 ], "traded_death_successes": [ - 2016 + 2015 ], "two_kill_rounds": [ - 2016 + 2015 ], "unused_utility_value": [ - 2016 + 2015 ], "util_on_death_count": [ - 2016 + 2015 ], "util_on_death_sum": [ - 2016 + 2015 ], "wasted_magazine_shots": [ - 2016 + 2015 ], "zeus_kills": [ - 2016 + 2015 ], "__typename": [ - 75 + 74 ] }, "player_match_map_stats_variance_fields": { @@ -56106,309 +56952,309 @@ export default { 29 ], "__typename": [ - 75 + 74 ] }, "player_match_map_stats_variance_order_by": { "assists": [ - 2016 + 2015 ], "assists_ct": [ - 2016 + 2015 ], "assists_t": [ - 2016 + 2015 ], "counter_strafe_eligible_shots": [ - 2016 + 2015 ], "counter_strafed_shots": [ - 2016 + 2015 ], "crosshair_angle_count": [ - 2016 + 2015 ], "crosshair_angle_sum_deg": [ - 2016 + 2015 ], "damage": [ - 2016 + 2015 ], "damage_ct": [ - 2016 + 2015 ], "damage_t": [ - 2016 + 2015 ], "deaths": [ - 2016 + 2015 ], "deaths_ct": [ - 2016 + 2015 ], "deaths_t": [ - 2016 + 2015 ], "decoy_throws": [ - 2016 + 2015 ], "enemies_flashed": [ - 2016 + 2015 ], "first_bullet_hits": [ - 2016 + 2015 ], "first_bullet_shots": [ - 2016 + 2015 ], "five_kill_rounds": [ - 2016 + 2015 ], "flash_assists": [ - 2016 + 2015 ], "flash_duration_count": [ - 2016 + 2015 ], "flash_duration_sum": [ - 2016 + 2015 ], "flashes_thrown": [ - 2016 + 2015 ], "four_kill_rounds": [ - 2016 + 2015 ], "he_damage": [ - 2016 + 2015 ], "he_team_damage": [ - 2016 + 2015 ], "he_throws": [ - 2016 + 2015 ], "headshot_hits": [ - 2016 + 2015 ], "hits": [ - 2016 + 2015 ], "hits_at_spotted": [ - 2016 + 2015 ], "hs_kills": [ - 2016 + 2015 ], "hs_kills_ct": [ - 2016 + 2015 ], "hs_kills_t": [ - 2016 + 2015 ], "kast_rounds": [ - 2016 + 2015 ], "kast_total_rounds": [ - 2016 + 2015 ], "kills": [ - 2016 + 2015 ], "kills_ct": [ - 2016 + 2015 ], "kills_t": [ - 2016 + 2015 ], "knife_kills": [ - 2016 + 2015 ], "molotov_damage": [ - 2016 + 2015 ], "molotov_throws": [ - 2016 + 2015 ], "non_awp_hits": [ - 2016 + 2015 ], "on_target_frames": [ - 2016 + 2015 ], "rounds_ct": [ - 2016 + 2015 ], "rounds_played": [ - 2016 + 2015 ], "rounds_t": [ - 2016 + 2015 ], "shots_at_spotted": [ - 2016 + 2015 ], "shots_fired": [ - 2016 + 2015 ], "smoke_throws": [ - 2016 + 2015 ], "spotted_count": [ - 2016 + 2015 ], "spotted_with_damage_count": [ - 2016 + 2015 ], "spray_hits": [ - 2016 + 2015 ], "spray_shots": [ - 2016 + 2015 ], "steam_id": [ - 2016 + 2015 ], "team_damage": [ - 2016 + 2015 ], "team_flashed": [ - 2016 + 2015 ], "three_kill_rounds": [ - 2016 + 2015 ], "time_to_damage_count": [ - 2016 + 2015 ], "time_to_damage_sum_s": [ - 2016 + 2015 ], "total_engagement_frames": [ - 2016 + 2015 ], "trade_kill_attempts": [ - 2016 + 2015 ], "trade_kill_opportunities": [ - 2016 + 2015 ], "trade_kill_successes": [ - 2016 + 2015 ], "traded_death_attempts": [ - 2016 + 2015 ], "traded_death_opportunities": [ - 2016 + 2015 ], "traded_death_successes": [ - 2016 + 2015 ], "two_kill_rounds": [ - 2016 + 2015 ], "unused_utility_value": [ - 2016 + 2015 ], "util_on_death_count": [ - 2016 + 2015 ], "util_on_death_sum": [ - 2016 + 2015 ], "wasted_magazine_shots": [ - 2016 + 2015 ], "zeus_kills": [ - 2016 + 2015 ], "__typename": [ - 75 + 74 ] }, "player_match_performance_v": { "accuracy": [ - 2014 + 2013 ], "accuracy_spotted": [ - 2014 + 2013 ], "aim_rating": [ - 1089 + 1088 ], "counter_strafe_pct": [ - 2014 + 2013 ], "enemy_blind_pr": [ - 2014 + 2013 ], "flash_assists_pr": [ - 2014 + 2013 ], "hs_pct": [ - 2014 + 2013 ], "kast_pct": [ - 2014 + 2013 ], "match_id": [ - 3864 + 3863 ], "overall_rating": [ - 1089 + 1088 ], "played_at": [ - 3467 + 3466 ], "positioning_rating": [ - 1089 + 1088 ], "rounds": [ 38 ], "source": [ - 75 + 74 ], "steam_id": [ - 174 + 173 ], "survival_pct": [ - 2014 + 2013 ], "traded_death_pct": [ - 2014 + 2013 ], "util_efficiency": [ - 2014 + 2013 ], "utility_rating": [ - 1089 + 1088 ], "__typename": [ - 75 + 74 ] }, "player_match_performance_v_aggregate": { "aggregate": [ - 2523 + 2522 ], "nodes": [ - 2521 + 2520 ], "__typename": [ - 75 + 74 ] }, "player_match_performance_v_aggregate_fields": { "avg": [ - 2524 + 2523 ], "count": [ 38, { "columns": [ - 2529, + 2528, "[player_match_performance_v_select_column!]" ], "distinct": [ @@ -56417,34 +57263,34 @@ export default { } ], "max": [ - 2526 + 2525 ], "min": [ - 2527 + 2526 ], "stddev": [ - 2530 + 2529 ], "stddev_pop": [ - 2531 + 2530 ], "stddev_samp": [ - 2532 + 2531 ], "sum": [ - 2535 + 2534 ], "var_pop": [ - 2536 + 2535 ], "var_samp": [ - 2537 + 2536 ], "variance": [ - 2538 + 2537 ], "__typename": [ - 75 + 74 ] }, "player_match_performance_v_avg_fields": { @@ -56497,81 +57343,19 @@ export default { 29 ], "__typename": [ - 75 + 74 ] }, "player_match_performance_v_bool_exp": { "_and": [ - 2525 + 2524 ], "_not": [ - 2525 + 2524 ], "_or": [ - 2525 - ], - "accuracy": [ - 2015 - ], - "accuracy_spotted": [ - 2015 - ], - "aim_rating": [ - 1090 - ], - "counter_strafe_pct": [ - 2015 - ], - "enemy_blind_pr": [ - 2015 - ], - "flash_assists_pr": [ - 2015 - ], - "hs_pct": [ - 2015 - ], - "kast_pct": [ - 2015 - ], - "match_id": [ - 3866 - ], - "overall_rating": [ - 1090 - ], - "played_at": [ - 3468 - ], - "positioning_rating": [ - 1090 - ], - "rounds": [ - 39 - ], - "source": [ - 77 - ], - "steam_id": [ - 176 - ], - "survival_pct": [ - 2015 - ], - "traded_death_pct": [ - 2015 - ], - "util_efficiency": [ - 2015 - ], - "utility_rating": [ - 1090 + 2524 ], - "__typename": [ - 75 - ] - }, - "player_match_performance_v_max_fields": { "accuracy": [ 2014 ], @@ -56597,7 +57381,7 @@ export default { 2014 ], "match_id": [ - 3864 + 3865 ], "overall_rating": [ 1089 @@ -56609,13 +57393,13 @@ export default { 1089 ], "rounds": [ - 38 + 39 ], "source": [ - 75 + 76 ], "steam_id": [ - 174 + 175 ], "survival_pct": [ 2014 @@ -56630,131 +57414,193 @@ export default { 1089 ], "__typename": [ - 75 + 74 + ] + }, + "player_match_performance_v_max_fields": { + "accuracy": [ + 2013 + ], + "accuracy_spotted": [ + 2013 + ], + "aim_rating": [ + 1088 + ], + "counter_strafe_pct": [ + 2013 + ], + "enemy_blind_pr": [ + 2013 + ], + "flash_assists_pr": [ + 2013 + ], + "hs_pct": [ + 2013 + ], + "kast_pct": [ + 2013 + ], + "match_id": [ + 3863 + ], + "overall_rating": [ + 1088 + ], + "played_at": [ + 3466 + ], + "positioning_rating": [ + 1088 + ], + "rounds": [ + 38 + ], + "source": [ + 74 + ], + "steam_id": [ + 173 + ], + "survival_pct": [ + 2013 + ], + "traded_death_pct": [ + 2013 + ], + "util_efficiency": [ + 2013 + ], + "utility_rating": [ + 1088 + ], + "__typename": [ + 74 ] }, "player_match_performance_v_min_fields": { "accuracy": [ - 2014 + 2013 ], "accuracy_spotted": [ - 2014 + 2013 ], "aim_rating": [ - 1089 + 1088 ], "counter_strafe_pct": [ - 2014 + 2013 ], "enemy_blind_pr": [ - 2014 + 2013 ], "flash_assists_pr": [ - 2014 + 2013 ], "hs_pct": [ - 2014 + 2013 ], "kast_pct": [ - 2014 + 2013 ], "match_id": [ - 3864 + 3863 ], "overall_rating": [ - 1089 + 1088 ], "played_at": [ - 3467 + 3466 ], "positioning_rating": [ - 1089 + 1088 ], "rounds": [ 38 ], "source": [ - 75 + 74 ], "steam_id": [ - 174 + 173 ], "survival_pct": [ - 2014 + 2013 ], "traded_death_pct": [ - 2014 + 2013 ], "util_efficiency": [ - 2014 + 2013 ], "utility_rating": [ - 1089 + 1088 ], "__typename": [ - 75 + 74 ] }, "player_match_performance_v_order_by": { "accuracy": [ - 2016 + 2015 ], "accuracy_spotted": [ - 2016 + 2015 ], "aim_rating": [ - 2016 + 2015 ], "counter_strafe_pct": [ - 2016 + 2015 ], "enemy_blind_pr": [ - 2016 + 2015 ], "flash_assists_pr": [ - 2016 + 2015 ], "hs_pct": [ - 2016 + 2015 ], "kast_pct": [ - 2016 + 2015 ], "match_id": [ - 2016 + 2015 ], "overall_rating": [ - 2016 + 2015 ], "played_at": [ - 2016 + 2015 ], "positioning_rating": [ - 2016 + 2015 ], "rounds": [ - 2016 + 2015 ], "source": [ - 2016 + 2015 ], "steam_id": [ - 2016 + 2015 ], "survival_pct": [ - 2016 + 2015 ], "traded_death_pct": [ - 2016 + 2015 ], "util_efficiency": [ - 2016 + 2015 ], "utility_rating": [ - 2016 + 2015 ], "__typename": [ - 75 + 74 ] }, "player_match_performance_v_select_column": {}, @@ -56808,7 +57654,7 @@ export default { 29 ], "__typename": [ - 75 + 74 ] }, "player_match_performance_v_stddev_pop_fields": { @@ -56861,7 +57707,7 @@ export default { 29 ], "__typename": [ - 75 + 74 ] }, "player_match_performance_v_stddev_samp_fields": { @@ -56914,133 +57760,133 @@ export default { 29 ], "__typename": [ - 75 + 74 ] }, "player_match_performance_v_stream_cursor_input": { "initial_value": [ - 2534 + 2533 ], "ordering": [ - 229 + 228 ], "__typename": [ - 75 + 74 ] }, "player_match_performance_v_stream_cursor_value_input": { "accuracy": [ - 2014 + 2013 ], "accuracy_spotted": [ - 2014 + 2013 ], "aim_rating": [ - 1089 + 1088 ], "counter_strafe_pct": [ - 2014 + 2013 ], "enemy_blind_pr": [ - 2014 + 2013 ], "flash_assists_pr": [ - 2014 + 2013 ], "hs_pct": [ - 2014 + 2013 ], "kast_pct": [ - 2014 + 2013 ], "match_id": [ - 3864 + 3863 ], "overall_rating": [ - 1089 + 1088 ], "played_at": [ - 3467 + 3466 ], "positioning_rating": [ - 1089 + 1088 ], "rounds": [ 38 ], "source": [ - 75 + 74 ], "steam_id": [ - 174 + 173 ], "survival_pct": [ - 2014 + 2013 ], "traded_death_pct": [ - 2014 + 2013 ], "util_efficiency": [ - 2014 + 2013 ], "utility_rating": [ - 1089 + 1088 ], "__typename": [ - 75 + 74 ] }, "player_match_performance_v_sum_fields": { "accuracy": [ - 2014 + 2013 ], "accuracy_spotted": [ - 2014 + 2013 ], "aim_rating": [ - 1089 + 1088 ], "counter_strafe_pct": [ - 2014 + 2013 ], "enemy_blind_pr": [ - 2014 + 2013 ], "flash_assists_pr": [ - 2014 + 2013 ], "hs_pct": [ - 2014 + 2013 ], "kast_pct": [ - 2014 + 2013 ], "overall_rating": [ - 1089 + 1088 ], "positioning_rating": [ - 1089 + 1088 ], "rounds": [ 38 ], "steam_id": [ - 174 + 173 ], "survival_pct": [ - 2014 + 2013 ], "traded_death_pct": [ - 2014 + 2013 ], "util_efficiency": [ - 2014 + 2013 ], "utility_rating": [ - 1089 + 1088 ], "__typename": [ - 75 + 74 ] }, "player_match_performance_v_var_pop_fields": { @@ -57093,7 +57939,7 @@ export default { 29 ], "__typename": [ - 75 + 74 ] }, "player_match_performance_v_var_samp_fields": { @@ -57146,7 +57992,7 @@ export default { 29 ], "__typename": [ - 75 + 74 ] }, "player_match_performance_v_variance_fields": { @@ -57199,7 +58045,7 @@ export default { 29 ], "__typename": [ - 75 + 74 ] }, "player_match_stats_v": { @@ -57213,13 +58059,13 @@ export default { 38 ], "avg_crosshair_angle_deg": [ - 2014 + 2013 ], "avg_flash_duration": [ - 2014 + 2013 ], "avg_time_to_damage_s": [ - 2014 + 2013 ], "counter_strafe_eligible_shots": [ 38 @@ -57309,7 +58155,7 @@ export default { 38 ], "match_id": [ - 3864 + 3863 ], "molotov_damage": [ 38 @@ -57354,7 +58200,7 @@ export default { 38 ], "steam_id": [ - 174 + 173 ], "team_damage": [ 38 @@ -57393,7 +58239,7 @@ export default { 38 ], "utility_on_death": [ - 2014 + 2013 ], "wasted_magazine_shots": [ 38 @@ -57402,54 +58248,54 @@ export default { 38 ], "__typename": [ - 75 + 74 ] }, "player_match_stats_v_aggregate": { "aggregate": [ - 2543 + 2542 ], "nodes": [ - 2539 + 2538 ], "__typename": [ - 75 + 74 ] }, "player_match_stats_v_aggregate_bool_exp": { "count": [ - 2542 + 2541 ], "__typename": [ - 75 + 74 ] }, "player_match_stats_v_aggregate_bool_exp_count": { "arguments": [ - 2555 + 2554 ], "distinct": [ 3 ], "filter": [ - 2548 + 2547 ], "predicate": [ 39 ], "__typename": [ - 75 + 74 ] }, "player_match_stats_v_aggregate_fields": { "avg": [ - 2546 + 2545 ], "count": [ 38, { "columns": [ - 2555, + 2554, "[player_match_stats_v_select_column!]" ], "distinct": [ @@ -57458,80 +58304,80 @@ export default { } ], "max": [ - 2550 + 2549 ], "min": [ - 2552 + 2551 ], "stddev": [ - 2556 + 2555 ], "stddev_pop": [ - 2558 + 2557 ], "stddev_samp": [ - 2560 + 2559 ], "sum": [ - 2564 + 2563 ], "var_pop": [ - 2566 + 2565 ], "var_samp": [ - 2568 + 2567 ], "variance": [ - 2570 + 2569 ], "__typename": [ - 75 + 74 ] }, "player_match_stats_v_aggregate_order_by": { "avg": [ - 2547 + 2546 ], "count": [ - 2016 + 2015 ], "max": [ - 2551 + 2550 ], "min": [ - 2553 + 2552 ], "stddev": [ - 2557 + 2556 ], "stddev_pop": [ - 2559 + 2558 ], "stddev_samp": [ - 2561 + 2560 ], "sum": [ - 2565 + 2564 ], "var_pop": [ - 2567 + 2566 ], "var_samp": [ - 2569 + 2568 ], "variance": [ - 2571 + 2570 ], "__typename": [ - 75 + 74 ] }, "player_match_stats_v_arr_rel_insert_input": { "data": [ - 2549 + 2548 ], "__typename": [ - 75 + 74 ] }, "player_match_stats_v_avg_fields": { @@ -57731,218 +58577,218 @@ export default { 29 ], "__typename": [ - 75 + 74 ] }, "player_match_stats_v_avg_order_by": { "assists": [ - 2016 + 2015 ], "assists_ct": [ - 2016 + 2015 ], "assists_t": [ - 2016 + 2015 ], "avg_crosshair_angle_deg": [ - 2016 + 2015 ], "avg_flash_duration": [ - 2016 + 2015 ], "avg_time_to_damage_s": [ - 2016 + 2015 ], "counter_strafe_eligible_shots": [ - 2016 + 2015 ], "counter_strafed_shots": [ - 2016 + 2015 ], "damage": [ - 2016 + 2015 ], "damage_ct": [ - 2016 + 2015 ], "damage_t": [ - 2016 + 2015 ], "deaths": [ - 2016 + 2015 ], "deaths_ct": [ - 2016 + 2015 ], "deaths_t": [ - 2016 + 2015 ], "decoy_throws": [ - 2016 + 2015 ], "enemies_flashed": [ - 2016 + 2015 ], "first_bullet_hits": [ - 2016 + 2015 ], "first_bullet_shots": [ - 2016 + 2015 ], "five_kill_rounds": [ - 2016 + 2015 ], "flash_assists": [ - 2016 + 2015 ], "flashes_thrown": [ - 2016 + 2015 ], "four_kill_rounds": [ - 2016 + 2015 ], "he_damage": [ - 2016 + 2015 ], "he_team_damage": [ - 2016 + 2015 ], "he_throws": [ - 2016 + 2015 ], "headshot_hits": [ - 2016 + 2015 ], "hits": [ - 2016 + 2015 ], "hits_at_spotted": [ - 2016 + 2015 ], "hs_kills": [ - 2016 + 2015 ], "hs_kills_ct": [ - 2016 + 2015 ], "hs_kills_t": [ - 2016 + 2015 ], "kills": [ - 2016 + 2015 ], "kills_ct": [ - 2016 + 2015 ], "kills_t": [ - 2016 + 2015 ], "knife_kills": [ - 2016 + 2015 ], "molotov_damage": [ - 2016 + 2015 ], "molotov_throws": [ - 2016 + 2015 ], "non_awp_hits": [ - 2016 + 2015 ], "on_target_frames": [ - 2016 + 2015 ], "rounds_ct": [ - 2016 + 2015 ], "rounds_played": [ - 2016 + 2015 ], "rounds_t": [ - 2016 + 2015 ], "shots_at_spotted": [ - 2016 + 2015 ], "shots_fired": [ - 2016 + 2015 ], "smoke_throws": [ - 2016 + 2015 ], "spotted_count": [ - 2016 + 2015 ], "spotted_with_damage_count": [ - 2016 + 2015 ], "spray_hits": [ - 2016 + 2015 ], "spray_shots": [ - 2016 + 2015 ], "steam_id": [ - 2016 + 2015 ], "team_damage": [ - 2016 + 2015 ], "team_flashed": [ - 2016 + 2015 ], "three_kill_rounds": [ - 2016 + 2015 ], "total_engagement_frames": [ - 2016 + 2015 ], "trade_kill_attempts": [ - 2016 + 2015 ], "trade_kill_opportunities": [ - 2016 + 2015 ], "trade_kill_successes": [ - 2016 + 2015 ], "traded_death_attempts": [ - 2016 + 2015 ], "traded_death_opportunities": [ - 2016 + 2015 ], "traded_death_successes": [ - 2016 + 2015 ], "two_kill_rounds": [ - 2016 + 2015 ], "unused_utility_value": [ - 2016 + 2015 ], "utility_on_death": [ - 2016 + 2015 ], "wasted_magazine_shots": [ - 2016 + 2015 ], "zeus_kills": [ - 2016 + 2015 ], "__typename": [ - 75 + 74 ] }, "player_match_stats_v_bool_exp": { "_and": [ - 2548 + 2547 ], "_not": [ - 2548 + 2547 ], "_or": [ - 2548 + 2547 ], "assists": [ 39 @@ -57954,13 +58800,13 @@ export default { 39 ], "avg_crosshair_angle_deg": [ - 2015 + 2014 ], "avg_flash_duration": [ - 2015 + 2014 ], "avg_time_to_damage_s": [ - 2015 + 2014 ], "counter_strafe_eligible_shots": [ 39 @@ -58050,7 +58896,7 @@ export default { 39 ], "match_id": [ - 3866 + 3865 ], "molotov_damage": [ 39 @@ -58095,7 +58941,7 @@ export default { 39 ], "steam_id": [ - 176 + 175 ], "team_damage": [ 39 @@ -58134,7 +58980,7 @@ export default { 39 ], "utility_on_death": [ - 2015 + 2014 ], "wasted_magazine_shots": [ 39 @@ -58143,7 +58989,7 @@ export default { 39 ], "__typename": [ - 75 + 74 ] }, "player_match_stats_v_insert_input": { @@ -58157,13 +59003,13 @@ export default { 38 ], "avg_crosshair_angle_deg": [ - 2014 + 2013 ], "avg_flash_duration": [ - 2014 + 2013 ], "avg_time_to_damage_s": [ - 2014 + 2013 ], "counter_strafe_eligible_shots": [ 38 @@ -58253,7 +59099,7 @@ export default { 38 ], "match_id": [ - 3864 + 3863 ], "molotov_damage": [ 38 @@ -58298,7 +59144,7 @@ export default { 38 ], "steam_id": [ - 174 + 173 ], "team_damage": [ 38 @@ -58337,7 +59183,7 @@ export default { 38 ], "utility_on_death": [ - 2014 + 2013 ], "wasted_magazine_shots": [ 38 @@ -58346,7 +59192,7 @@ export default { 38 ], "__typename": [ - 75 + 74 ] }, "player_match_stats_v_max_fields": { @@ -58360,13 +59206,13 @@ export default { 38 ], "avg_crosshair_angle_deg": [ - 2014 + 2013 ], "avg_flash_duration": [ - 2014 + 2013 ], "avg_time_to_damage_s": [ - 2014 + 2013 ], "counter_strafe_eligible_shots": [ 38 @@ -58456,7 +59302,7 @@ export default { 38 ], "match_id": [ - 3864 + 3863 ], "molotov_damage": [ 38 @@ -58501,7 +59347,7 @@ export default { 38 ], "steam_id": [ - 174 + 173 ], "team_damage": [ 38 @@ -58540,7 +59386,7 @@ export default { 38 ], "utility_on_death": [ - 2014 + 2013 ], "wasted_magazine_shots": [ 38 @@ -58549,210 +59395,210 @@ export default { 38 ], "__typename": [ - 75 + 74 ] }, "player_match_stats_v_max_order_by": { "assists": [ - 2016 + 2015 ], "assists_ct": [ - 2016 + 2015 ], "assists_t": [ - 2016 + 2015 ], "avg_crosshair_angle_deg": [ - 2016 + 2015 ], "avg_flash_duration": [ - 2016 + 2015 ], "avg_time_to_damage_s": [ - 2016 + 2015 ], "counter_strafe_eligible_shots": [ - 2016 + 2015 ], "counter_strafed_shots": [ - 2016 + 2015 ], "damage": [ - 2016 + 2015 ], "damage_ct": [ - 2016 + 2015 ], "damage_t": [ - 2016 + 2015 ], "deaths": [ - 2016 + 2015 ], "deaths_ct": [ - 2016 + 2015 ], "deaths_t": [ - 2016 + 2015 ], "decoy_throws": [ - 2016 + 2015 ], "enemies_flashed": [ - 2016 + 2015 ], "first_bullet_hits": [ - 2016 + 2015 ], "first_bullet_shots": [ - 2016 + 2015 ], "five_kill_rounds": [ - 2016 + 2015 ], "flash_assists": [ - 2016 + 2015 ], "flashes_thrown": [ - 2016 + 2015 ], "four_kill_rounds": [ - 2016 + 2015 ], "he_damage": [ - 2016 + 2015 ], "he_team_damage": [ - 2016 + 2015 ], "he_throws": [ - 2016 + 2015 ], "headshot_hits": [ - 2016 + 2015 ], "hits": [ - 2016 + 2015 ], "hits_at_spotted": [ - 2016 + 2015 ], "hs_kills": [ - 2016 + 2015 ], "hs_kills_ct": [ - 2016 + 2015 ], "hs_kills_t": [ - 2016 + 2015 ], "kills": [ - 2016 + 2015 ], "kills_ct": [ - 2016 + 2015 ], "kills_t": [ - 2016 + 2015 ], "knife_kills": [ - 2016 + 2015 ], "match_id": [ - 2016 + 2015 ], "molotov_damage": [ - 2016 + 2015 ], "molotov_throws": [ - 2016 + 2015 ], "non_awp_hits": [ - 2016 + 2015 ], "on_target_frames": [ - 2016 + 2015 ], "rounds_ct": [ - 2016 + 2015 ], "rounds_played": [ - 2016 + 2015 ], "rounds_t": [ - 2016 + 2015 ], "shots_at_spotted": [ - 2016 + 2015 ], "shots_fired": [ - 2016 + 2015 ], "smoke_throws": [ - 2016 + 2015 ], "spotted_count": [ - 2016 + 2015 ], "spotted_with_damage_count": [ - 2016 + 2015 ], "spray_hits": [ - 2016 + 2015 ], "spray_shots": [ - 2016 + 2015 ], "steam_id": [ - 2016 + 2015 ], "team_damage": [ - 2016 + 2015 ], "team_flashed": [ - 2016 + 2015 ], "three_kill_rounds": [ - 2016 + 2015 ], "total_engagement_frames": [ - 2016 + 2015 ], "trade_kill_attempts": [ - 2016 + 2015 ], "trade_kill_opportunities": [ - 2016 + 2015 ], "trade_kill_successes": [ - 2016 + 2015 ], "traded_death_attempts": [ - 2016 + 2015 ], "traded_death_opportunities": [ - 2016 + 2015 ], "traded_death_successes": [ - 2016 + 2015 ], "two_kill_rounds": [ - 2016 + 2015 ], "unused_utility_value": [ - 2016 + 2015 ], "utility_on_death": [ - 2016 + 2015 ], "wasted_magazine_shots": [ - 2016 + 2015 ], "zeus_kills": [ - 2016 + 2015 ], "__typename": [ - 75 + 74 ] }, "player_match_stats_v_min_fields": { @@ -58766,13 +59612,13 @@ export default { 38 ], "avg_crosshair_angle_deg": [ - 2014 + 2013 ], "avg_flash_duration": [ - 2014 + 2013 ], "avg_time_to_damage_s": [ - 2014 + 2013 ], "counter_strafe_eligible_shots": [ 38 @@ -58862,7 +59708,7 @@ export default { 38 ], "match_id": [ - 3864 + 3863 ], "molotov_damage": [ 38 @@ -58907,7 +59753,7 @@ export default { 38 ], "steam_id": [ - 174 + 173 ], "team_damage": [ 38 @@ -58946,7 +59792,7 @@ export default { 38 ], "utility_on_death": [ - 2014 + 2013 ], "wasted_magazine_shots": [ 38 @@ -58955,413 +59801,413 @@ export default { 38 ], "__typename": [ - 75 + 74 ] }, "player_match_stats_v_min_order_by": { "assists": [ - 2016 + 2015 ], "assists_ct": [ - 2016 + 2015 ], "assists_t": [ - 2016 + 2015 ], "avg_crosshair_angle_deg": [ - 2016 + 2015 ], "avg_flash_duration": [ - 2016 + 2015 ], "avg_time_to_damage_s": [ - 2016 + 2015 ], "counter_strafe_eligible_shots": [ - 2016 + 2015 ], "counter_strafed_shots": [ - 2016 + 2015 ], "damage": [ - 2016 + 2015 ], "damage_ct": [ - 2016 + 2015 ], "damage_t": [ - 2016 + 2015 ], "deaths": [ - 2016 + 2015 ], "deaths_ct": [ - 2016 + 2015 ], "deaths_t": [ - 2016 + 2015 ], "decoy_throws": [ - 2016 + 2015 ], "enemies_flashed": [ - 2016 + 2015 ], "first_bullet_hits": [ - 2016 + 2015 ], "first_bullet_shots": [ - 2016 + 2015 ], "five_kill_rounds": [ - 2016 + 2015 ], "flash_assists": [ - 2016 + 2015 ], "flashes_thrown": [ - 2016 + 2015 ], "four_kill_rounds": [ - 2016 + 2015 ], "he_damage": [ - 2016 + 2015 ], "he_team_damage": [ - 2016 + 2015 ], "he_throws": [ - 2016 + 2015 ], "headshot_hits": [ - 2016 + 2015 ], "hits": [ - 2016 + 2015 ], "hits_at_spotted": [ - 2016 + 2015 ], "hs_kills": [ - 2016 + 2015 ], "hs_kills_ct": [ - 2016 + 2015 ], "hs_kills_t": [ - 2016 + 2015 ], "kills": [ - 2016 + 2015 ], "kills_ct": [ - 2016 + 2015 ], "kills_t": [ - 2016 + 2015 ], "knife_kills": [ - 2016 + 2015 ], "match_id": [ - 2016 + 2015 ], "molotov_damage": [ - 2016 + 2015 ], "molotov_throws": [ - 2016 + 2015 ], "non_awp_hits": [ - 2016 + 2015 ], "on_target_frames": [ - 2016 + 2015 ], "rounds_ct": [ - 2016 + 2015 ], "rounds_played": [ - 2016 + 2015 ], "rounds_t": [ - 2016 + 2015 ], "shots_at_spotted": [ - 2016 + 2015 ], "shots_fired": [ - 2016 + 2015 ], "smoke_throws": [ - 2016 + 2015 ], "spotted_count": [ - 2016 + 2015 ], "spotted_with_damage_count": [ - 2016 + 2015 ], "spray_hits": [ - 2016 + 2015 ], "spray_shots": [ - 2016 + 2015 ], "steam_id": [ - 2016 + 2015 ], "team_damage": [ - 2016 + 2015 ], "team_flashed": [ - 2016 + 2015 ], "three_kill_rounds": [ - 2016 + 2015 ], "total_engagement_frames": [ - 2016 + 2015 ], "trade_kill_attempts": [ - 2016 + 2015 ], "trade_kill_opportunities": [ - 2016 + 2015 ], "trade_kill_successes": [ - 2016 + 2015 ], "traded_death_attempts": [ - 2016 + 2015 ], "traded_death_opportunities": [ - 2016 + 2015 ], "traded_death_successes": [ - 2016 + 2015 ], "two_kill_rounds": [ - 2016 + 2015 ], "unused_utility_value": [ - 2016 + 2015 ], "utility_on_death": [ - 2016 + 2015 ], "wasted_magazine_shots": [ - 2016 + 2015 ], "zeus_kills": [ - 2016 + 2015 ], "__typename": [ - 75 + 74 ] }, "player_match_stats_v_order_by": { "assists": [ - 2016 + 2015 ], "assists_ct": [ - 2016 + 2015 ], "assists_t": [ - 2016 + 2015 ], "avg_crosshair_angle_deg": [ - 2016 + 2015 ], "avg_flash_duration": [ - 2016 + 2015 ], "avg_time_to_damage_s": [ - 2016 + 2015 ], "counter_strafe_eligible_shots": [ - 2016 + 2015 ], "counter_strafed_shots": [ - 2016 + 2015 ], "damage": [ - 2016 + 2015 ], "damage_ct": [ - 2016 + 2015 ], "damage_t": [ - 2016 + 2015 ], "deaths": [ - 2016 + 2015 ], "deaths_ct": [ - 2016 + 2015 ], "deaths_t": [ - 2016 + 2015 ], "decoy_throws": [ - 2016 + 2015 ], "enemies_flashed": [ - 2016 + 2015 ], "first_bullet_hits": [ - 2016 + 2015 ], "first_bullet_shots": [ - 2016 + 2015 ], "five_kill_rounds": [ - 2016 + 2015 ], "flash_assists": [ - 2016 + 2015 ], "flashes_thrown": [ - 2016 + 2015 ], "four_kill_rounds": [ - 2016 + 2015 ], "he_damage": [ - 2016 + 2015 ], "he_team_damage": [ - 2016 + 2015 ], "he_throws": [ - 2016 + 2015 ], "headshot_hits": [ - 2016 + 2015 ], "hits": [ - 2016 + 2015 ], "hits_at_spotted": [ - 2016 + 2015 ], "hs_kills": [ - 2016 + 2015 ], "hs_kills_ct": [ - 2016 + 2015 ], "hs_kills_t": [ - 2016 + 2015 ], "kills": [ - 2016 + 2015 ], "kills_ct": [ - 2016 + 2015 ], "kills_t": [ - 2016 + 2015 ], "knife_kills": [ - 2016 + 2015 ], "match_id": [ - 2016 + 2015 ], "molotov_damage": [ - 2016 + 2015 ], "molotov_throws": [ - 2016 + 2015 ], "non_awp_hits": [ - 2016 + 2015 ], "on_target_frames": [ - 2016 + 2015 ], "rounds_ct": [ - 2016 + 2015 ], "rounds_played": [ - 2016 + 2015 ], "rounds_t": [ - 2016 + 2015 ], "shots_at_spotted": [ - 2016 + 2015 ], "shots_fired": [ - 2016 + 2015 ], "smoke_throws": [ - 2016 + 2015 ], "spotted_count": [ - 2016 + 2015 ], "spotted_with_damage_count": [ - 2016 + 2015 ], "spray_hits": [ - 2016 + 2015 ], "spray_shots": [ - 2016 + 2015 ], "steam_id": [ - 2016 + 2015 ], "team_damage": [ - 2016 + 2015 ], "team_flashed": [ - 2016 + 2015 ], "three_kill_rounds": [ - 2016 + 2015 ], "total_engagement_frames": [ - 2016 + 2015 ], "trade_kill_attempts": [ - 2016 + 2015 ], "trade_kill_opportunities": [ - 2016 + 2015 ], "trade_kill_successes": [ - 2016 + 2015 ], "traded_death_attempts": [ - 2016 + 2015 ], "traded_death_opportunities": [ - 2016 + 2015 ], "traded_death_successes": [ - 2016 + 2015 ], "two_kill_rounds": [ - 2016 + 2015 ], "unused_utility_value": [ - 2016 + 2015 ], "utility_on_death": [ - 2016 + 2015 ], "wasted_magazine_shots": [ - 2016 + 2015 ], "zeus_kills": [ - 2016 + 2015 ], "__typename": [ - 75 + 74 ] }, "player_match_stats_v_select_column": {}, @@ -59562,207 +60408,207 @@ export default { 29 ], "__typename": [ - 75 + 74 ] }, "player_match_stats_v_stddev_order_by": { "assists": [ - 2016 + 2015 ], "assists_ct": [ - 2016 + 2015 ], "assists_t": [ - 2016 + 2015 ], "avg_crosshair_angle_deg": [ - 2016 + 2015 ], "avg_flash_duration": [ - 2016 + 2015 ], "avg_time_to_damage_s": [ - 2016 + 2015 ], "counter_strafe_eligible_shots": [ - 2016 + 2015 ], "counter_strafed_shots": [ - 2016 + 2015 ], "damage": [ - 2016 + 2015 ], "damage_ct": [ - 2016 + 2015 ], "damage_t": [ - 2016 + 2015 ], "deaths": [ - 2016 + 2015 ], "deaths_ct": [ - 2016 + 2015 ], "deaths_t": [ - 2016 + 2015 ], "decoy_throws": [ - 2016 + 2015 ], "enemies_flashed": [ - 2016 + 2015 ], "first_bullet_hits": [ - 2016 + 2015 ], "first_bullet_shots": [ - 2016 + 2015 ], "five_kill_rounds": [ - 2016 + 2015 ], "flash_assists": [ - 2016 + 2015 ], "flashes_thrown": [ - 2016 + 2015 ], "four_kill_rounds": [ - 2016 + 2015 ], "he_damage": [ - 2016 + 2015 ], "he_team_damage": [ - 2016 + 2015 ], "he_throws": [ - 2016 + 2015 ], "headshot_hits": [ - 2016 + 2015 ], "hits": [ - 2016 + 2015 ], "hits_at_spotted": [ - 2016 + 2015 ], "hs_kills": [ - 2016 + 2015 ], "hs_kills_ct": [ - 2016 + 2015 ], "hs_kills_t": [ - 2016 + 2015 ], "kills": [ - 2016 + 2015 ], "kills_ct": [ - 2016 + 2015 ], "kills_t": [ - 2016 + 2015 ], "knife_kills": [ - 2016 + 2015 ], "molotov_damage": [ - 2016 + 2015 ], "molotov_throws": [ - 2016 + 2015 ], "non_awp_hits": [ - 2016 + 2015 ], "on_target_frames": [ - 2016 + 2015 ], "rounds_ct": [ - 2016 + 2015 ], "rounds_played": [ - 2016 + 2015 ], "rounds_t": [ - 2016 + 2015 ], "shots_at_spotted": [ - 2016 + 2015 ], "shots_fired": [ - 2016 + 2015 ], "smoke_throws": [ - 2016 + 2015 ], "spotted_count": [ - 2016 + 2015 ], "spotted_with_damage_count": [ - 2016 + 2015 ], "spray_hits": [ - 2016 + 2015 ], "spray_shots": [ - 2016 + 2015 ], "steam_id": [ - 2016 + 2015 ], "team_damage": [ - 2016 + 2015 ], "team_flashed": [ - 2016 + 2015 ], "three_kill_rounds": [ - 2016 + 2015 ], "total_engagement_frames": [ - 2016 + 2015 ], "trade_kill_attempts": [ - 2016 + 2015 ], "trade_kill_opportunities": [ - 2016 + 2015 ], "trade_kill_successes": [ - 2016 + 2015 ], "traded_death_attempts": [ - 2016 + 2015 ], "traded_death_opportunities": [ - 2016 + 2015 ], "traded_death_successes": [ - 2016 + 2015 ], "two_kill_rounds": [ - 2016 + 2015 ], "unused_utility_value": [ - 2016 + 2015 ], "utility_on_death": [ - 2016 + 2015 ], "wasted_magazine_shots": [ - 2016 + 2015 ], "zeus_kills": [ - 2016 + 2015 ], "__typename": [ - 75 + 74 ] }, "player_match_stats_v_stddev_pop_fields": { @@ -59962,207 +60808,207 @@ export default { 29 ], "__typename": [ - 75 + 74 ] }, "player_match_stats_v_stddev_pop_order_by": { "assists": [ - 2016 + 2015 ], "assists_ct": [ - 2016 + 2015 ], "assists_t": [ - 2016 + 2015 ], "avg_crosshair_angle_deg": [ - 2016 + 2015 ], "avg_flash_duration": [ - 2016 + 2015 ], "avg_time_to_damage_s": [ - 2016 + 2015 ], "counter_strafe_eligible_shots": [ - 2016 + 2015 ], "counter_strafed_shots": [ - 2016 + 2015 ], "damage": [ - 2016 + 2015 ], "damage_ct": [ - 2016 + 2015 ], "damage_t": [ - 2016 + 2015 ], "deaths": [ - 2016 + 2015 ], "deaths_ct": [ - 2016 + 2015 ], "deaths_t": [ - 2016 + 2015 ], "decoy_throws": [ - 2016 + 2015 ], "enemies_flashed": [ - 2016 + 2015 ], "first_bullet_hits": [ - 2016 + 2015 ], "first_bullet_shots": [ - 2016 + 2015 ], "five_kill_rounds": [ - 2016 + 2015 ], "flash_assists": [ - 2016 + 2015 ], "flashes_thrown": [ - 2016 + 2015 ], "four_kill_rounds": [ - 2016 + 2015 ], "he_damage": [ - 2016 + 2015 ], "he_team_damage": [ - 2016 + 2015 ], "he_throws": [ - 2016 + 2015 ], "headshot_hits": [ - 2016 + 2015 ], "hits": [ - 2016 + 2015 ], "hits_at_spotted": [ - 2016 + 2015 ], "hs_kills": [ - 2016 + 2015 ], "hs_kills_ct": [ - 2016 + 2015 ], "hs_kills_t": [ - 2016 + 2015 ], "kills": [ - 2016 + 2015 ], "kills_ct": [ - 2016 + 2015 ], "kills_t": [ - 2016 + 2015 ], "knife_kills": [ - 2016 + 2015 ], "molotov_damage": [ - 2016 + 2015 ], "molotov_throws": [ - 2016 + 2015 ], "non_awp_hits": [ - 2016 + 2015 ], "on_target_frames": [ - 2016 + 2015 ], "rounds_ct": [ - 2016 + 2015 ], "rounds_played": [ - 2016 + 2015 ], "rounds_t": [ - 2016 + 2015 ], "shots_at_spotted": [ - 2016 + 2015 ], "shots_fired": [ - 2016 + 2015 ], "smoke_throws": [ - 2016 + 2015 ], "spotted_count": [ - 2016 + 2015 ], "spotted_with_damage_count": [ - 2016 + 2015 ], "spray_hits": [ - 2016 + 2015 ], "spray_shots": [ - 2016 + 2015 ], "steam_id": [ - 2016 + 2015 ], "team_damage": [ - 2016 + 2015 ], "team_flashed": [ - 2016 + 2015 ], "three_kill_rounds": [ - 2016 + 2015 ], "total_engagement_frames": [ - 2016 + 2015 ], "trade_kill_attempts": [ - 2016 + 2015 ], "trade_kill_opportunities": [ - 2016 + 2015 ], "trade_kill_successes": [ - 2016 + 2015 ], "traded_death_attempts": [ - 2016 + 2015 ], "traded_death_opportunities": [ - 2016 + 2015 ], "traded_death_successes": [ - 2016 + 2015 ], "two_kill_rounds": [ - 2016 + 2015 ], "unused_utility_value": [ - 2016 + 2015 ], "utility_on_death": [ - 2016 + 2015 ], "wasted_magazine_shots": [ - 2016 + 2015 ], "zeus_kills": [ - 2016 + 2015 ], "__typename": [ - 75 + 74 ] }, "player_match_stats_v_stddev_samp_fields": { @@ -60362,218 +61208,218 @@ export default { 29 ], "__typename": [ - 75 + 74 ] }, "player_match_stats_v_stddev_samp_order_by": { "assists": [ - 2016 + 2015 ], "assists_ct": [ - 2016 + 2015 ], "assists_t": [ - 2016 + 2015 ], "avg_crosshair_angle_deg": [ - 2016 + 2015 ], "avg_flash_duration": [ - 2016 + 2015 ], "avg_time_to_damage_s": [ - 2016 + 2015 ], "counter_strafe_eligible_shots": [ - 2016 + 2015 ], "counter_strafed_shots": [ - 2016 + 2015 ], "damage": [ - 2016 + 2015 ], "damage_ct": [ - 2016 + 2015 ], "damage_t": [ - 2016 + 2015 ], "deaths": [ - 2016 + 2015 ], "deaths_ct": [ - 2016 + 2015 ], "deaths_t": [ - 2016 + 2015 ], "decoy_throws": [ - 2016 + 2015 ], "enemies_flashed": [ - 2016 + 2015 ], "first_bullet_hits": [ - 2016 + 2015 ], "first_bullet_shots": [ - 2016 + 2015 ], "five_kill_rounds": [ - 2016 + 2015 ], "flash_assists": [ - 2016 + 2015 ], "flashes_thrown": [ - 2016 + 2015 ], "four_kill_rounds": [ - 2016 + 2015 ], "he_damage": [ - 2016 + 2015 ], "he_team_damage": [ - 2016 + 2015 ], "he_throws": [ - 2016 + 2015 ], "headshot_hits": [ - 2016 + 2015 ], "hits": [ - 2016 + 2015 ], "hits_at_spotted": [ - 2016 + 2015 ], "hs_kills": [ - 2016 + 2015 ], "hs_kills_ct": [ - 2016 + 2015 ], "hs_kills_t": [ - 2016 + 2015 ], "kills": [ - 2016 + 2015 ], "kills_ct": [ - 2016 + 2015 ], "kills_t": [ - 2016 + 2015 ], "knife_kills": [ - 2016 + 2015 ], "molotov_damage": [ - 2016 + 2015 ], "molotov_throws": [ - 2016 + 2015 ], "non_awp_hits": [ - 2016 + 2015 ], "on_target_frames": [ - 2016 + 2015 ], "rounds_ct": [ - 2016 + 2015 ], "rounds_played": [ - 2016 + 2015 ], "rounds_t": [ - 2016 + 2015 ], "shots_at_spotted": [ - 2016 + 2015 ], "shots_fired": [ - 2016 + 2015 ], "smoke_throws": [ - 2016 + 2015 ], "spotted_count": [ - 2016 + 2015 ], "spotted_with_damage_count": [ - 2016 + 2015 ], "spray_hits": [ - 2016 + 2015 ], "spray_shots": [ - 2016 + 2015 ], "steam_id": [ - 2016 + 2015 ], "team_damage": [ - 2016 + 2015 ], "team_flashed": [ - 2016 + 2015 ], "three_kill_rounds": [ - 2016 + 2015 ], "total_engagement_frames": [ - 2016 + 2015 ], "trade_kill_attempts": [ - 2016 + 2015 ], "trade_kill_opportunities": [ - 2016 + 2015 ], "trade_kill_successes": [ - 2016 + 2015 ], "traded_death_attempts": [ - 2016 + 2015 ], "traded_death_opportunities": [ - 2016 + 2015 ], "traded_death_successes": [ - 2016 + 2015 ], "two_kill_rounds": [ - 2016 + 2015 ], "unused_utility_value": [ - 2016 + 2015 ], "utility_on_death": [ - 2016 + 2015 ], "wasted_magazine_shots": [ - 2016 + 2015 ], "zeus_kills": [ - 2016 + 2015 ], "__typename": [ - 75 + 74 ] }, "player_match_stats_v_stream_cursor_input": { "initial_value": [ - 2563 + 2562 ], "ordering": [ - 229 + 228 ], "__typename": [ - 75 + 74 ] }, "player_match_stats_v_stream_cursor_value_input": { @@ -60587,13 +61433,13 @@ export default { 38 ], "avg_crosshair_angle_deg": [ - 2014 + 2013 ], "avg_flash_duration": [ - 2014 + 2013 ], "avg_time_to_damage_s": [ - 2014 + 2013 ], "counter_strafe_eligible_shots": [ 38 @@ -60683,7 +61529,7 @@ export default { 38 ], "match_id": [ - 3864 + 3863 ], "molotov_damage": [ 38 @@ -60728,7 +61574,7 @@ export default { 38 ], "steam_id": [ - 174 + 173 ], "team_damage": [ 38 @@ -60767,7 +61613,7 @@ export default { 38 ], "utility_on_death": [ - 2014 + 2013 ], "wasted_magazine_shots": [ 38 @@ -60776,7 +61622,7 @@ export default { 38 ], "__typename": [ - 75 + 74 ] }, "player_match_stats_v_sum_fields": { @@ -60790,13 +61636,13 @@ export default { 38 ], "avg_crosshair_angle_deg": [ - 2014 + 2013 ], "avg_flash_duration": [ - 2014 + 2013 ], "avg_time_to_damage_s": [ - 2014 + 2013 ], "counter_strafe_eligible_shots": [ 38 @@ -60928,7 +61774,7 @@ export default { 38 ], "steam_id": [ - 174 + 173 ], "team_damage": [ 38 @@ -60967,7 +61813,7 @@ export default { 38 ], "utility_on_death": [ - 2014 + 2013 ], "wasted_magazine_shots": [ 38 @@ -60976,207 +61822,207 @@ export default { 38 ], "__typename": [ - 75 + 74 ] }, "player_match_stats_v_sum_order_by": { "assists": [ - 2016 + 2015 ], "assists_ct": [ - 2016 + 2015 ], "assists_t": [ - 2016 + 2015 ], "avg_crosshair_angle_deg": [ - 2016 + 2015 ], "avg_flash_duration": [ - 2016 + 2015 ], "avg_time_to_damage_s": [ - 2016 + 2015 ], "counter_strafe_eligible_shots": [ - 2016 + 2015 ], "counter_strafed_shots": [ - 2016 + 2015 ], "damage": [ - 2016 + 2015 ], "damage_ct": [ - 2016 + 2015 ], "damage_t": [ - 2016 + 2015 ], "deaths": [ - 2016 + 2015 ], "deaths_ct": [ - 2016 + 2015 ], "deaths_t": [ - 2016 + 2015 ], "decoy_throws": [ - 2016 + 2015 ], "enemies_flashed": [ - 2016 + 2015 ], "first_bullet_hits": [ - 2016 + 2015 ], "first_bullet_shots": [ - 2016 + 2015 ], "five_kill_rounds": [ - 2016 + 2015 ], "flash_assists": [ - 2016 + 2015 ], "flashes_thrown": [ - 2016 + 2015 ], "four_kill_rounds": [ - 2016 + 2015 ], "he_damage": [ - 2016 + 2015 ], "he_team_damage": [ - 2016 + 2015 ], "he_throws": [ - 2016 + 2015 ], "headshot_hits": [ - 2016 + 2015 ], "hits": [ - 2016 + 2015 ], "hits_at_spotted": [ - 2016 + 2015 ], "hs_kills": [ - 2016 + 2015 ], "hs_kills_ct": [ - 2016 + 2015 ], "hs_kills_t": [ - 2016 + 2015 ], "kills": [ - 2016 + 2015 ], "kills_ct": [ - 2016 + 2015 ], "kills_t": [ - 2016 + 2015 ], "knife_kills": [ - 2016 + 2015 ], "molotov_damage": [ - 2016 + 2015 ], "molotov_throws": [ - 2016 + 2015 ], "non_awp_hits": [ - 2016 + 2015 ], "on_target_frames": [ - 2016 + 2015 ], "rounds_ct": [ - 2016 + 2015 ], "rounds_played": [ - 2016 + 2015 ], "rounds_t": [ - 2016 + 2015 ], "shots_at_spotted": [ - 2016 + 2015 ], "shots_fired": [ - 2016 + 2015 ], "smoke_throws": [ - 2016 + 2015 ], "spotted_count": [ - 2016 + 2015 ], "spotted_with_damage_count": [ - 2016 + 2015 ], "spray_hits": [ - 2016 + 2015 ], "spray_shots": [ - 2016 + 2015 ], "steam_id": [ - 2016 + 2015 ], "team_damage": [ - 2016 + 2015 ], "team_flashed": [ - 2016 + 2015 ], "three_kill_rounds": [ - 2016 + 2015 ], "total_engagement_frames": [ - 2016 + 2015 ], "trade_kill_attempts": [ - 2016 + 2015 ], "trade_kill_opportunities": [ - 2016 + 2015 ], "trade_kill_successes": [ - 2016 + 2015 ], "traded_death_attempts": [ - 2016 + 2015 ], "traded_death_opportunities": [ - 2016 + 2015 ], "traded_death_successes": [ - 2016 + 2015 ], "two_kill_rounds": [ - 2016 + 2015 ], "unused_utility_value": [ - 2016 + 2015 ], "utility_on_death": [ - 2016 + 2015 ], "wasted_magazine_shots": [ - 2016 + 2015 ], "zeus_kills": [ - 2016 + 2015 ], "__typename": [ - 75 + 74 ] }, "player_match_stats_v_var_pop_fields": { @@ -61376,207 +62222,207 @@ export default { 29 ], "__typename": [ - 75 + 74 ] }, "player_match_stats_v_var_pop_order_by": { "assists": [ - 2016 + 2015 ], "assists_ct": [ - 2016 + 2015 ], "assists_t": [ - 2016 + 2015 ], "avg_crosshair_angle_deg": [ - 2016 + 2015 ], "avg_flash_duration": [ - 2016 + 2015 ], "avg_time_to_damage_s": [ - 2016 + 2015 ], "counter_strafe_eligible_shots": [ - 2016 + 2015 ], "counter_strafed_shots": [ - 2016 + 2015 ], "damage": [ - 2016 + 2015 ], "damage_ct": [ - 2016 + 2015 ], "damage_t": [ - 2016 + 2015 ], "deaths": [ - 2016 + 2015 ], "deaths_ct": [ - 2016 + 2015 ], "deaths_t": [ - 2016 + 2015 ], "decoy_throws": [ - 2016 + 2015 ], "enemies_flashed": [ - 2016 + 2015 ], "first_bullet_hits": [ - 2016 + 2015 ], "first_bullet_shots": [ - 2016 + 2015 ], "five_kill_rounds": [ - 2016 + 2015 ], "flash_assists": [ - 2016 + 2015 ], "flashes_thrown": [ - 2016 + 2015 ], "four_kill_rounds": [ - 2016 + 2015 ], "he_damage": [ - 2016 + 2015 ], "he_team_damage": [ - 2016 + 2015 ], "he_throws": [ - 2016 + 2015 ], "headshot_hits": [ - 2016 + 2015 ], "hits": [ - 2016 + 2015 ], "hits_at_spotted": [ - 2016 + 2015 ], "hs_kills": [ - 2016 + 2015 ], "hs_kills_ct": [ - 2016 + 2015 ], "hs_kills_t": [ - 2016 + 2015 ], "kills": [ - 2016 + 2015 ], "kills_ct": [ - 2016 + 2015 ], "kills_t": [ - 2016 + 2015 ], "knife_kills": [ - 2016 + 2015 ], "molotov_damage": [ - 2016 + 2015 ], "molotov_throws": [ - 2016 + 2015 ], "non_awp_hits": [ - 2016 + 2015 ], "on_target_frames": [ - 2016 + 2015 ], "rounds_ct": [ - 2016 + 2015 ], "rounds_played": [ - 2016 + 2015 ], "rounds_t": [ - 2016 + 2015 ], "shots_at_spotted": [ - 2016 + 2015 ], "shots_fired": [ - 2016 + 2015 ], "smoke_throws": [ - 2016 + 2015 ], "spotted_count": [ - 2016 + 2015 ], "spotted_with_damage_count": [ - 2016 + 2015 ], "spray_hits": [ - 2016 + 2015 ], "spray_shots": [ - 2016 + 2015 ], "steam_id": [ - 2016 + 2015 ], "team_damage": [ - 2016 + 2015 ], "team_flashed": [ - 2016 + 2015 ], "three_kill_rounds": [ - 2016 + 2015 ], "total_engagement_frames": [ - 2016 + 2015 ], "trade_kill_attempts": [ - 2016 + 2015 ], "trade_kill_opportunities": [ - 2016 + 2015 ], "trade_kill_successes": [ - 2016 + 2015 ], "traded_death_attempts": [ - 2016 + 2015 ], "traded_death_opportunities": [ - 2016 + 2015 ], "traded_death_successes": [ - 2016 + 2015 ], "two_kill_rounds": [ - 2016 + 2015 ], "unused_utility_value": [ - 2016 + 2015 ], "utility_on_death": [ - 2016 + 2015 ], "wasted_magazine_shots": [ - 2016 + 2015 ], "zeus_kills": [ - 2016 + 2015 ], "__typename": [ - 75 + 74 ] }, "player_match_stats_v_var_samp_fields": { @@ -61776,207 +62622,207 @@ export default { 29 ], "__typename": [ - 75 + 74 ] }, "player_match_stats_v_var_samp_order_by": { "assists": [ - 2016 + 2015 ], "assists_ct": [ - 2016 + 2015 ], "assists_t": [ - 2016 + 2015 ], "avg_crosshair_angle_deg": [ - 2016 + 2015 ], "avg_flash_duration": [ - 2016 + 2015 ], "avg_time_to_damage_s": [ - 2016 + 2015 ], "counter_strafe_eligible_shots": [ - 2016 + 2015 ], "counter_strafed_shots": [ - 2016 + 2015 ], "damage": [ - 2016 + 2015 ], "damage_ct": [ - 2016 + 2015 ], "damage_t": [ - 2016 + 2015 ], "deaths": [ - 2016 + 2015 ], "deaths_ct": [ - 2016 + 2015 ], "deaths_t": [ - 2016 + 2015 ], "decoy_throws": [ - 2016 + 2015 ], "enemies_flashed": [ - 2016 + 2015 ], "first_bullet_hits": [ - 2016 + 2015 ], "first_bullet_shots": [ - 2016 + 2015 ], "five_kill_rounds": [ - 2016 + 2015 ], "flash_assists": [ - 2016 + 2015 ], "flashes_thrown": [ - 2016 + 2015 ], "four_kill_rounds": [ - 2016 + 2015 ], "he_damage": [ - 2016 + 2015 ], "he_team_damage": [ - 2016 + 2015 ], "he_throws": [ - 2016 + 2015 ], "headshot_hits": [ - 2016 + 2015 ], "hits": [ - 2016 + 2015 ], "hits_at_spotted": [ - 2016 + 2015 ], "hs_kills": [ - 2016 + 2015 ], "hs_kills_ct": [ - 2016 + 2015 ], "hs_kills_t": [ - 2016 + 2015 ], "kills": [ - 2016 + 2015 ], "kills_ct": [ - 2016 + 2015 ], "kills_t": [ - 2016 + 2015 ], "knife_kills": [ - 2016 + 2015 ], "molotov_damage": [ - 2016 + 2015 ], "molotov_throws": [ - 2016 + 2015 ], "non_awp_hits": [ - 2016 + 2015 ], "on_target_frames": [ - 2016 + 2015 ], "rounds_ct": [ - 2016 + 2015 ], "rounds_played": [ - 2016 + 2015 ], "rounds_t": [ - 2016 + 2015 ], "shots_at_spotted": [ - 2016 + 2015 ], "shots_fired": [ - 2016 + 2015 ], "smoke_throws": [ - 2016 + 2015 ], "spotted_count": [ - 2016 + 2015 ], "spotted_with_damage_count": [ - 2016 + 2015 ], "spray_hits": [ - 2016 + 2015 ], "spray_shots": [ - 2016 + 2015 ], "steam_id": [ - 2016 + 2015 ], "team_damage": [ - 2016 + 2015 ], "team_flashed": [ - 2016 + 2015 ], "three_kill_rounds": [ - 2016 + 2015 ], "total_engagement_frames": [ - 2016 + 2015 ], "trade_kill_attempts": [ - 2016 + 2015 ], "trade_kill_opportunities": [ - 2016 + 2015 ], "trade_kill_successes": [ - 2016 + 2015 ], "traded_death_attempts": [ - 2016 + 2015 ], "traded_death_opportunities": [ - 2016 + 2015 ], "traded_death_successes": [ - 2016 + 2015 ], "two_kill_rounds": [ - 2016 + 2015 ], "unused_utility_value": [ - 2016 + 2015 ], "utility_on_death": [ - 2016 + 2015 ], "wasted_magazine_shots": [ - 2016 + 2015 ], "zeus_kills": [ - 2016 + 2015 ], "__typename": [ - 75 + 74 ] }, "player_match_stats_v_variance_fields": { @@ -62176,289 +63022,289 @@ export default { 29 ], "__typename": [ - 75 + 74 ] }, "player_match_stats_v_variance_order_by": { "assists": [ - 2016 + 2015 ], "assists_ct": [ - 2016 + 2015 ], "assists_t": [ - 2016 + 2015 ], "avg_crosshair_angle_deg": [ - 2016 + 2015 ], "avg_flash_duration": [ - 2016 + 2015 ], "avg_time_to_damage_s": [ - 2016 + 2015 ], "counter_strafe_eligible_shots": [ - 2016 + 2015 ], "counter_strafed_shots": [ - 2016 + 2015 ], "damage": [ - 2016 + 2015 ], "damage_ct": [ - 2016 + 2015 ], "damage_t": [ - 2016 + 2015 ], "deaths": [ - 2016 + 2015 ], "deaths_ct": [ - 2016 + 2015 ], "deaths_t": [ - 2016 + 2015 ], "decoy_throws": [ - 2016 + 2015 ], "enemies_flashed": [ - 2016 + 2015 ], "first_bullet_hits": [ - 2016 + 2015 ], "first_bullet_shots": [ - 2016 + 2015 ], "five_kill_rounds": [ - 2016 + 2015 ], "flash_assists": [ - 2016 + 2015 ], "flashes_thrown": [ - 2016 + 2015 ], "four_kill_rounds": [ - 2016 + 2015 ], "he_damage": [ - 2016 + 2015 ], "he_team_damage": [ - 2016 + 2015 ], "he_throws": [ - 2016 + 2015 ], "headshot_hits": [ - 2016 + 2015 ], "hits": [ - 2016 + 2015 ], "hits_at_spotted": [ - 2016 + 2015 ], "hs_kills": [ - 2016 + 2015 ], "hs_kills_ct": [ - 2016 + 2015 ], "hs_kills_t": [ - 2016 + 2015 ], "kills": [ - 2016 + 2015 ], "kills_ct": [ - 2016 + 2015 ], "kills_t": [ - 2016 + 2015 ], "knife_kills": [ - 2016 + 2015 ], "molotov_damage": [ - 2016 + 2015 ], "molotov_throws": [ - 2016 + 2015 ], "non_awp_hits": [ - 2016 + 2015 ], "on_target_frames": [ - 2016 + 2015 ], "rounds_ct": [ - 2016 + 2015 ], "rounds_played": [ - 2016 + 2015 ], "rounds_t": [ - 2016 + 2015 ], "shots_at_spotted": [ - 2016 + 2015 ], "shots_fired": [ - 2016 + 2015 ], "smoke_throws": [ - 2016 + 2015 ], "spotted_count": [ - 2016 + 2015 ], "spotted_with_damage_count": [ - 2016 + 2015 ], "spray_hits": [ - 2016 + 2015 ], "spray_shots": [ - 2016 + 2015 ], "steam_id": [ - 2016 + 2015 ], "team_damage": [ - 2016 + 2015 ], "team_flashed": [ - 2016 + 2015 ], "three_kill_rounds": [ - 2016 + 2015 ], "total_engagement_frames": [ - 2016 + 2015 ], "trade_kill_attempts": [ - 2016 + 2015 ], "trade_kill_opportunities": [ - 2016 + 2015 ], "trade_kill_successes": [ - 2016 + 2015 ], "traded_death_attempts": [ - 2016 + 2015 ], "traded_death_opportunities": [ - 2016 + 2015 ], "traded_death_successes": [ - 2016 + 2015 ], "two_kill_rounds": [ - 2016 + 2015 ], "unused_utility_value": [ - 2016 + 2015 ], "utility_on_death": [ - 2016 + 2015 ], "wasted_magazine_shots": [ - 2016 + 2015 ], "zeus_kills": [ - 2016 + 2015 ], "__typename": [ - 75 + 74 ] }, "player_objectives": { "deleted_at": [ - 3467 + 3466 ], "match": [ - 1831 + 1830 ], "match_id": [ - 3864 + 3863 ], "match_map": [ - 1669 + 1668 ], "match_map_id": [ - 3864 + 3863 ], "player": [ - 2915 + 2914 ], "player_steam_id": [ - 174 + 173 ], "round": [ 38 ], "time": [ - 3467 + 3466 ], "type": [ - 770 + 769 ], "__typename": [ - 75 + 74 ] }, "player_objectives_aggregate": { "aggregate": [ - 2576 + 2575 ], "nodes": [ - 2572 + 2571 ], "__typename": [ - 75 + 74 ] }, "player_objectives_aggregate_bool_exp": { "count": [ - 2575 + 2574 ], "__typename": [ - 75 + 74 ] }, "player_objectives_aggregate_bool_exp_count": { "arguments": [ - 2593 + 2592 ], "distinct": [ 3 ], "filter": [ - 2581 + 2580 ], "predicate": [ 39 ], "__typename": [ - 75 + 74 ] }, "player_objectives_aggregate_fields": { "avg": [ - 2579 + 2578 ], "count": [ 38, { "columns": [ - 2593, + 2592, "[player_objectives_select_column!]" ], "distinct": [ @@ -62467,83 +63313,83 @@ export default { } ], "max": [ - 2585 + 2584 ], "min": [ - 2587 + 2586 ], "stddev": [ - 2595 + 2594 ], "stddev_pop": [ - 2597 + 2596 ], "stddev_samp": [ - 2599 + 2598 ], "sum": [ - 2603 + 2602 ], "var_pop": [ - 2607 + 2606 ], "var_samp": [ - 2609 + 2608 ], "variance": [ - 2611 + 2610 ], "__typename": [ - 75 + 74 ] }, "player_objectives_aggregate_order_by": { "avg": [ - 2580 + 2579 ], "count": [ - 2016 + 2015 ], "max": [ - 2586 + 2585 ], "min": [ - 2588 + 2587 ], "stddev": [ - 2596 + 2595 ], "stddev_pop": [ - 2598 + 2597 ], "stddev_samp": [ - 2600 + 2599 ], "sum": [ - 2604 + 2603 ], "var_pop": [ - 2608 + 2607 ], "var_samp": [ - 2610 + 2609 ], "variance": [ - 2612 + 2611 ], "__typename": [ - 75 + 74 ] }, "player_objectives_arr_rel_insert_input": { "data": [ - 2584 + 2583 ], "on_conflict": [ - 2590 + 2589 ], "__typename": [ - 75 + 74 ] }, "player_objectives_avg_fields": { @@ -62554,201 +63400,201 @@ export default { 29 ], "__typename": [ - 75 + 74 ] }, "player_objectives_avg_order_by": { "player_steam_id": [ - 2016 + 2015 ], "round": [ - 2016 + 2015 ], "__typename": [ - 75 + 74 ] }, "player_objectives_bool_exp": { "_and": [ - 2581 + 2580 ], "_not": [ - 2581 + 2580 ], "_or": [ - 2581 + 2580 ], "deleted_at": [ - 3468 + 3467 ], "match": [ - 1840 + 1839 ], "match_id": [ - 3866 + 3865 ], "match_map": [ - 1678 + 1677 ], "match_map_id": [ - 3866 + 3865 ], "player": [ - 2919 + 2918 ], "player_steam_id": [ - 176 + 175 ], "round": [ 39 ], "time": [ - 3468 + 3467 ], "type": [ - 771 + 770 ], "__typename": [ - 75 + 74 ] }, "player_objectives_constraint": {}, "player_objectives_inc_input": { "player_steam_id": [ - 174 + 173 ], "round": [ 38 ], "__typename": [ - 75 + 74 ] }, "player_objectives_insert_input": { "deleted_at": [ - 3467 + 3466 ], "match": [ - 1849 + 1848 ], "match_id": [ - 3864 + 3863 ], "match_map": [ - 1687 + 1686 ], "match_map_id": [ - 3864 + 3863 ], "player": [ - 2926 + 2925 ], "player_steam_id": [ - 174 + 173 ], "round": [ 38 ], "time": [ - 3467 + 3466 ], "type": [ - 770 + 769 ], "__typename": [ - 75 + 74 ] }, "player_objectives_max_fields": { "deleted_at": [ - 3467 + 3466 ], "match_id": [ - 3864 + 3863 ], "match_map_id": [ - 3864 + 3863 ], "player_steam_id": [ - 174 + 173 ], "round": [ 38 ], "time": [ - 3467 + 3466 ], "__typename": [ - 75 + 74 ] }, "player_objectives_max_order_by": { "deleted_at": [ - 2016 + 2015 ], "match_id": [ - 2016 + 2015 ], "match_map_id": [ - 2016 + 2015 ], "player_steam_id": [ - 2016 + 2015 ], "round": [ - 2016 + 2015 ], "time": [ - 2016 + 2015 ], "__typename": [ - 75 + 74 ] }, "player_objectives_min_fields": { "deleted_at": [ - 3467 + 3466 ], "match_id": [ - 3864 + 3863 ], "match_map_id": [ - 3864 + 3863 ], "player_steam_id": [ - 174 + 173 ], "round": [ 38 ], "time": [ - 3467 + 3466 ], "__typename": [ - 75 + 74 ] }, "player_objectives_min_order_by": { "deleted_at": [ - 2016 + 2015 ], "match_id": [ - 2016 + 2015 ], "match_map_id": [ - 2016 + 2015 ], "player_steam_id": [ - 2016 + 2015 ], "round": [ - 2016 + 2015 ], "time": [ - 2016 + 2015 ], "__typename": [ - 75 + 74 ] }, "player_objectives_mutation_response": { @@ -62756,100 +63602,100 @@ export default { 38 ], "returning": [ - 2572 + 2571 ], "__typename": [ - 75 + 74 ] }, "player_objectives_on_conflict": { "constraint": [ - 2582 + 2581 ], "update_columns": [ - 2605 + 2604 ], "where": [ - 2581 + 2580 ], "__typename": [ - 75 + 74 ] }, "player_objectives_order_by": { "deleted_at": [ - 2016 + 2015 ], "match": [ - 1851 + 1850 ], "match_id": [ - 2016 + 2015 ], "match_map": [ - 1689 + 1688 ], "match_map_id": [ - 2016 + 2015 ], "player": [ - 2928 + 2927 ], "player_steam_id": [ - 2016 + 2015 ], "round": [ - 2016 + 2015 ], "time": [ - 2016 + 2015 ], "type": [ - 2016 + 2015 ], "__typename": [ - 75 + 74 ] }, "player_objectives_pk_columns_input": { "match_map_id": [ - 3864 + 3863 ], "player_steam_id": [ - 174 + 173 ], "time": [ - 3467 + 3466 ], "__typename": [ - 75 + 74 ] }, "player_objectives_select_column": {}, "player_objectives_set_input": { "deleted_at": [ - 3467 + 3466 ], "match_id": [ - 3864 + 3863 ], "match_map_id": [ - 3864 + 3863 ], "player_steam_id": [ - 174 + 173 ], "round": [ 38 ], "time": [ - 3467 + 3466 ], "type": [ - 770 + 769 ], "__typename": [ - 75 + 74 ] }, "player_objectives_stddev_fields": { @@ -62860,18 +63706,18 @@ export default { 29 ], "__typename": [ - 75 + 74 ] }, "player_objectives_stddev_order_by": { "player_steam_id": [ - 2016 + 2015 ], "round": [ - 2016 + 2015 ], "__typename": [ - 75 + 74 ] }, "player_objectives_stddev_pop_fields": { @@ -62882,18 +63728,18 @@ export default { 29 ], "__typename": [ - 75 + 74 ] }, "player_objectives_stddev_pop_order_by": { "player_steam_id": [ - 2016 + 2015 ], "round": [ - 2016 + 2015 ], "__typename": [ - 75 + 74 ] }, "player_objectives_stddev_samp_fields": { @@ -62904,92 +63750,92 @@ export default { 29 ], "__typename": [ - 75 + 74 ] }, "player_objectives_stddev_samp_order_by": { "player_steam_id": [ - 2016 + 2015 ], "round": [ - 2016 + 2015 ], "__typename": [ - 75 + 74 ] }, "player_objectives_stream_cursor_input": { "initial_value": [ - 2602 + 2601 ], "ordering": [ - 229 + 228 ], "__typename": [ - 75 + 74 ] }, "player_objectives_stream_cursor_value_input": { "deleted_at": [ - 3467 + 3466 ], "match_id": [ - 3864 + 3863 ], "match_map_id": [ - 3864 + 3863 ], "player_steam_id": [ - 174 + 173 ], "round": [ 38 ], "time": [ - 3467 + 3466 ], "type": [ - 770 + 769 ], "__typename": [ - 75 + 74 ] }, "player_objectives_sum_fields": { "player_steam_id": [ - 174 + 173 ], "round": [ 38 ], "__typename": [ - 75 + 74 ] }, "player_objectives_sum_order_by": { "player_steam_id": [ - 2016 + 2015 ], "round": [ - 2016 + 2015 ], "__typename": [ - 75 + 74 ] }, "player_objectives_update_column": {}, "player_objectives_updates": { "_inc": [ - 2583 + 2582 ], "_set": [ - 2594 + 2593 ], "where": [ - 2581 + 2580 ], "__typename": [ - 75 + 74 ] }, "player_objectives_var_pop_fields": { @@ -63000,18 +63846,18 @@ export default { 29 ], "__typename": [ - 75 + 74 ] }, "player_objectives_var_pop_order_by": { "player_steam_id": [ - 2016 + 2015 ], "round": [ - 2016 + 2015 ], "__typename": [ - 75 + 74 ] }, "player_objectives_var_samp_fields": { @@ -63022,18 +63868,18 @@ export default { 29 ], "__typename": [ - 75 + 74 ] }, "player_objectives_var_samp_order_by": { "player_steam_id": [ - 2016 + 2015 ], "round": [ - 2016 + 2015 ], "__typename": [ - 75 + 74 ] }, "player_objectives_variance_fields": { @@ -63044,62 +63890,62 @@ export default { 29 ], "__typename": [ - 75 + 74 ] }, "player_objectives_variance_order_by": { "player_steam_id": [ - 2016 + 2015 ], "round": [ - 2016 + 2015 ], "__typename": [ - 75 + 74 ] }, "player_performance_v": { "accuracy_score": [ - 1089 + 1088 ], "aim_goal": [ - 1089 + 1088 ], "aim_rating": [ - 1089 + 1088 ], "band": [ 38 ], "band_sample": [ - 174 + 173 ], "blind_score": [ - 1089 + 1088 ], "counter_strafe_score": [ - 1089 + 1088 ], "crosshair_score": [ - 1089 + 1088 ], "flash_assists_score": [ - 1089 + 1088 ], "hs_score": [ - 1089 + 1088 ], "kast_score": [ - 1089 + 1088 ], "maps": [ 38 ], "positioning_goal": [ - 1089 + 1088 ], "positioning_rating": [ - 1089 + 1088 ], "premier_rank": [ 38 @@ -63108,53 +63954,53 @@ export default { 38 ], "spotted_score": [ - 1089 + 1088 ], "steam_id": [ - 174 + 173 ], "survival_score": [ - 1089 + 1088 ], "traded_score": [ - 1089 + 1088 ], "ttd_score": [ - 1089 + 1088 ], "util_eff_score": [ - 1089 + 1088 ], "utility_goal": [ - 1089 + 1088 ], "utility_rating": [ - 1089 + 1088 ], "__typename": [ - 75 + 74 ] }, "player_performance_v_aggregate": { "aggregate": [ - 2615 + 2614 ], "nodes": [ - 2613 + 2612 ], "__typename": [ - 75 + 74 ] }, "player_performance_v_aggregate_fields": { "avg": [ - 2616 + 2615 ], "count": [ 38, { "columns": [ - 2621, + 2620, "[player_performance_v_select_column!]" ], "distinct": [ @@ -63163,34 +64009,34 @@ export default { } ], "max": [ - 2618 + 2617 ], "min": [ - 2619 + 2618 ], "stddev": [ - 2622 + 2621 ], "stddev_pop": [ - 2623 + 2622 ], "stddev_samp": [ - 2624 + 2623 ], "sum": [ - 2627 + 2626 ], "var_pop": [ - 2628 + 2627 ], "var_samp": [ - 2629 + 2628 ], "variance": [ - 2630 + 2629 ], "__typename": [ - 75 + 74 ] }, "player_performance_v_avg_fields": { @@ -63267,60 +64113,60 @@ export default { 29 ], "__typename": [ - 75 + 74 ] }, "player_performance_v_bool_exp": { "_and": [ - 2617 + 2616 ], "_not": [ - 2617 + 2616 ], "_or": [ - 2617 + 2616 ], "accuracy_score": [ - 1090 + 1089 ], "aim_goal": [ - 1090 + 1089 ], "aim_rating": [ - 1090 + 1089 ], "band": [ 39 ], "band_sample": [ - 176 + 175 ], "blind_score": [ - 1090 + 1089 ], "counter_strafe_score": [ - 1090 + 1089 ], "crosshair_score": [ - 1090 + 1089 ], "flash_assists_score": [ - 1090 + 1089 ], "hs_score": [ - 1090 + 1089 ], "kast_score": [ - 1090 + 1089 ], "maps": [ 39 ], "positioning_goal": [ - 1090 + 1089 ], "positioning_rating": [ - 1090 + 1089 ], "premier_rank": [ 39 @@ -63329,75 +64175,75 @@ export default { 39 ], "spotted_score": [ - 1090 + 1089 ], "steam_id": [ - 176 + 175 ], "survival_score": [ - 1090 + 1089 ], "traded_score": [ - 1090 + 1089 ], "ttd_score": [ - 1090 + 1089 ], "util_eff_score": [ - 1090 + 1089 ], "utility_goal": [ - 1090 + 1089 ], "utility_rating": [ - 1090 + 1089 ], "__typename": [ - 75 + 74 ] }, "player_performance_v_max_fields": { "accuracy_score": [ - 1089 + 1088 ], "aim_goal": [ - 1089 + 1088 ], "aim_rating": [ - 1089 + 1088 ], "band": [ 38 ], "band_sample": [ - 174 + 173 ], "blind_score": [ - 1089 + 1088 ], "counter_strafe_score": [ - 1089 + 1088 ], "crosshair_score": [ - 1089 + 1088 ], "flash_assists_score": [ - 1089 + 1088 ], "hs_score": [ - 1089 + 1088 ], "kast_score": [ - 1089 + 1088 ], "maps": [ 38 ], "positioning_goal": [ - 1089 + 1088 ], "positioning_rating": [ - 1089 + 1088 ], "premier_rank": [ 38 @@ -63406,75 +64252,75 @@ export default { 38 ], "spotted_score": [ - 1089 + 1088 ], "steam_id": [ - 174 + 173 ], "survival_score": [ - 1089 + 1088 ], "traded_score": [ - 1089 + 1088 ], "ttd_score": [ - 1089 + 1088 ], "util_eff_score": [ - 1089 + 1088 ], "utility_goal": [ - 1089 + 1088 ], "utility_rating": [ - 1089 + 1088 ], "__typename": [ - 75 + 74 ] }, "player_performance_v_min_fields": { "accuracy_score": [ - 1089 + 1088 ], "aim_goal": [ - 1089 + 1088 ], "aim_rating": [ - 1089 + 1088 ], "band": [ 38 ], "band_sample": [ - 174 + 173 ], "blind_score": [ - 1089 + 1088 ], "counter_strafe_score": [ - 1089 + 1088 ], "crosshair_score": [ - 1089 + 1088 ], "flash_assists_score": [ - 1089 + 1088 ], "hs_score": [ - 1089 + 1088 ], "kast_score": [ - 1089 + 1088 ], "maps": [ 38 ], "positioning_goal": [ - 1089 + 1088 ], "positioning_rating": [ - 1089 + 1088 ], "premier_rank": [ 38 @@ -63483,108 +64329,108 @@ export default { 38 ], "spotted_score": [ - 1089 + 1088 ], "steam_id": [ - 174 + 173 ], "survival_score": [ - 1089 + 1088 ], "traded_score": [ - 1089 + 1088 ], "ttd_score": [ - 1089 + 1088 ], "util_eff_score": [ - 1089 + 1088 ], "utility_goal": [ - 1089 + 1088 ], "utility_rating": [ - 1089 + 1088 ], "__typename": [ - 75 + 74 ] }, "player_performance_v_order_by": { "accuracy_score": [ - 2016 + 2015 ], "aim_goal": [ - 2016 + 2015 ], "aim_rating": [ - 2016 + 2015 ], "band": [ - 2016 + 2015 ], "band_sample": [ - 2016 + 2015 ], "blind_score": [ - 2016 + 2015 ], "counter_strafe_score": [ - 2016 + 2015 ], "crosshair_score": [ - 2016 + 2015 ], "flash_assists_score": [ - 2016 + 2015 ], "hs_score": [ - 2016 + 2015 ], "kast_score": [ - 2016 + 2015 ], "maps": [ - 2016 + 2015 ], "positioning_goal": [ - 2016 + 2015 ], "positioning_rating": [ - 2016 + 2015 ], "premier_rank": [ - 2016 + 2015 ], "rounds": [ - 2016 + 2015 ], "spotted_score": [ - 2016 + 2015 ], "steam_id": [ - 2016 + 2015 ], "survival_score": [ - 2016 + 2015 ], "traded_score": [ - 2016 + 2015 ], "ttd_score": [ - 2016 + 2015 ], "util_eff_score": [ - 2016 + 2015 ], "utility_goal": [ - 2016 + 2015 ], "utility_rating": [ - 2016 + 2015 ], "__typename": [ - 75 + 74 ] }, "player_performance_v_select_column": {}, @@ -63662,7 +64508,7 @@ export default { 29 ], "__typename": [ - 75 + 74 ] }, "player_performance_v_stddev_pop_fields": { @@ -63739,7 +64585,7 @@ export default { 29 ], "__typename": [ - 75 + 74 ] }, "player_performance_v_stddev_samp_fields": { @@ -63816,62 +64662,62 @@ export default { 29 ], "__typename": [ - 75 + 74 ] }, "player_performance_v_stream_cursor_input": { "initial_value": [ - 2626 + 2625 ], "ordering": [ - 229 + 228 ], "__typename": [ - 75 + 74 ] }, "player_performance_v_stream_cursor_value_input": { "accuracy_score": [ - 1089 + 1088 ], "aim_goal": [ - 1089 + 1088 ], "aim_rating": [ - 1089 + 1088 ], "band": [ 38 ], "band_sample": [ - 174 + 173 ], "blind_score": [ - 1089 + 1088 ], "counter_strafe_score": [ - 1089 + 1088 ], "crosshair_score": [ - 1089 + 1088 ], "flash_assists_score": [ - 1089 + 1088 ], "hs_score": [ - 1089 + 1088 ], "kast_score": [ - 1089 + 1088 ], "maps": [ 38 ], "positioning_goal": [ - 1089 + 1088 ], "positioning_rating": [ - 1089 + 1088 ], "premier_rank": [ 38 @@ -63880,75 +64726,75 @@ export default { 38 ], "spotted_score": [ - 1089 + 1088 ], "steam_id": [ - 174 + 173 ], "survival_score": [ - 1089 + 1088 ], "traded_score": [ - 1089 + 1088 ], "ttd_score": [ - 1089 + 1088 ], "util_eff_score": [ - 1089 + 1088 ], "utility_goal": [ - 1089 + 1088 ], "utility_rating": [ - 1089 + 1088 ], "__typename": [ - 75 + 74 ] }, "player_performance_v_sum_fields": { "accuracy_score": [ - 1089 + 1088 ], "aim_goal": [ - 1089 + 1088 ], "aim_rating": [ - 1089 + 1088 ], "band": [ 38 ], "band_sample": [ - 174 + 173 ], "blind_score": [ - 1089 + 1088 ], "counter_strafe_score": [ - 1089 + 1088 ], "crosshair_score": [ - 1089 + 1088 ], "flash_assists_score": [ - 1089 + 1088 ], "hs_score": [ - 1089 + 1088 ], "kast_score": [ - 1089 + 1088 ], "maps": [ 38 ], "positioning_goal": [ - 1089 + 1088 ], "positioning_rating": [ - 1089 + 1088 ], "premier_rank": [ 38 @@ -63957,31 +64803,31 @@ export default { 38 ], "spotted_score": [ - 1089 + 1088 ], "steam_id": [ - 174 + 173 ], "survival_score": [ - 1089 + 1088 ], "traded_score": [ - 1089 + 1088 ], "ttd_score": [ - 1089 + 1088 ], "util_eff_score": [ - 1089 + 1088 ], "utility_goal": [ - 1089 + 1088 ], "utility_rating": [ - 1089 + 1088 ], "__typename": [ - 75 + 74 ] }, "player_performance_v_var_pop_fields": { @@ -64058,7 +64904,7 @@ export default { 29 ], "__typename": [ - 75 + 74 ] }, "player_performance_v_var_samp_fields": { @@ -64135,7 +64981,7 @@ export default { 29 ], "__typename": [ - 75 + 74 ] }, "player_performance_v_variance_fields": { @@ -64212,30 +65058,30 @@ export default { 29 ], "__typename": [ - 75 + 74 ] }, "player_premier_rank_history": { "id": [ - 3864 + 3863 ], "map": [ - 1349 + 1348 ], "map_id": [ - 3864 + 3863 ], "match": [ - 1831 + 1830 ], "match_id": [ - 3864 + 3863 ], "observed_at": [ - 3467 + 3466 ], "player": [ - 2915 + 2914 ], "previous_rank": [ 38 @@ -64247,57 +65093,57 @@ export default { 38 ], "steam_id": [ - 174 + 173 ], "__typename": [ - 75 + 74 ] }, "player_premier_rank_history_aggregate": { "aggregate": [ - 2635 + 2634 ], "nodes": [ - 2631 + 2630 ], "__typename": [ - 75 + 74 ] }, "player_premier_rank_history_aggregate_bool_exp": { "count": [ - 2634 + 2633 ], "__typename": [ - 75 + 74 ] }, "player_premier_rank_history_aggregate_bool_exp_count": { "arguments": [ - 2652 + 2651 ], "distinct": [ 3 ], "filter": [ - 2640 + 2639 ], "predicate": [ 39 ], "__typename": [ - 75 + 74 ] }, "player_premier_rank_history_aggregate_fields": { "avg": [ - 2638 + 2637 ], "count": [ 38, { "columns": [ - 2652, + 2651, "[player_premier_rank_history_select_column!]" ], "distinct": [ @@ -64305,6 +65151,44 @@ export default { ] } ], + "max": [ + 2643 + ], + "min": [ + 2645 + ], + "stddev": [ + 2653 + ], + "stddev_pop": [ + 2655 + ], + "stddev_samp": [ + 2657 + ], + "sum": [ + 2661 + ], + "var_pop": [ + 2665 + ], + "var_samp": [ + 2667 + ], + "variance": [ + 2669 + ], + "__typename": [ + 74 + ] + }, + "player_premier_rank_history_aggregate_order_by": { + "avg": [ + 2638 + ], + "count": [ + 2015 + ], "max": [ 2644 ], @@ -64333,56 +65217,18 @@ export default { 2670 ], "__typename": [ - 75 - ] - }, - "player_premier_rank_history_aggregate_order_by": { - "avg": [ - 2639 - ], - "count": [ - 2016 - ], - "max": [ - 2645 - ], - "min": [ - 2647 - ], - "stddev": [ - 2655 - ], - "stddev_pop": [ - 2657 - ], - "stddev_samp": [ - 2659 - ], - "sum": [ - 2663 - ], - "var_pop": [ - 2667 - ], - "var_samp": [ - 2669 - ], - "variance": [ - 2671 - ], - "__typename": [ - 75 + 74 ] }, "player_premier_rank_history_arr_rel_insert_input": { "data": [ - 2643 + 2642 ], "on_conflict": [ - 2649 + 2648 ], "__typename": [ - 75 + 74 ] }, "player_premier_rank_history_avg_fields": { @@ -64399,56 +65245,56 @@ export default { 29 ], "__typename": [ - 75 + 74 ] }, "player_premier_rank_history_avg_order_by": { "previous_rank": [ - 2016 + 2015 ], "rank": [ - 2016 + 2015 ], "rank_type": [ - 2016 + 2015 ], "steam_id": [ - 2016 + 2015 ], "__typename": [ - 75 + 74 ] }, "player_premier_rank_history_bool_exp": { "_and": [ - 2640 + 2639 ], "_not": [ - 2640 + 2639 ], "_or": [ - 2640 + 2639 ], "id": [ - 3866 + 3865 ], "map": [ - 1358 + 1357 ], "map_id": [ - 3866 + 3865 ], "match": [ - 1840 + 1839 ], "match_id": [ - 3866 + 3865 ], "observed_at": [ - 3468 + 3467 ], "player": [ - 2919 + 2918 ], "previous_rank": [ 39 @@ -64460,10 +65306,10 @@ export default { 39 ], "steam_id": [ - 176 + 175 ], "__typename": [ - 75 + 74 ] }, "player_premier_rank_history_constraint": {}, @@ -64478,33 +65324,33 @@ export default { 38 ], "steam_id": [ - 174 + 173 ], "__typename": [ - 75 + 74 ] }, "player_premier_rank_history_insert_input": { "id": [ - 3864 + 3863 ], "map": [ - 1366 + 1365 ], "map_id": [ - 3864 + 3863 ], "match": [ - 1849 + 1848 ], "match_id": [ - 3864 + 3863 ], "observed_at": [ - 3467 + 3466 ], "player": [ - 2926 + 2925 ], "previous_rank": [ 38 @@ -64516,24 +65362,24 @@ export default { 38 ], "steam_id": [ - 174 + 173 ], "__typename": [ - 75 + 74 ] }, "player_premier_rank_history_max_fields": { "id": [ - 3864 + 3863 ], "map_id": [ - 3864 + 3863 ], "match_id": [ - 3864 + 3863 ], "observed_at": [ - 3467 + 3466 ], "previous_rank": [ 38 @@ -64545,53 +65391,53 @@ export default { 38 ], "steam_id": [ - 174 + 173 ], "__typename": [ - 75 + 74 ] }, "player_premier_rank_history_max_order_by": { "id": [ - 2016 + 2015 ], "map_id": [ - 2016 + 2015 ], "match_id": [ - 2016 + 2015 ], "observed_at": [ - 2016 + 2015 ], "previous_rank": [ - 2016 + 2015 ], "rank": [ - 2016 + 2015 ], "rank_type": [ - 2016 + 2015 ], "steam_id": [ - 2016 + 2015 ], "__typename": [ - 75 + 74 ] }, "player_premier_rank_history_min_fields": { "id": [ - 3864 + 3863 ], "map_id": [ - 3864 + 3863 ], "match_id": [ - 3864 + 3863 ], "observed_at": [ - 3467 + 3466 ], "previous_rank": [ 38 @@ -64603,39 +65449,39 @@ export default { 38 ], "steam_id": [ - 174 + 173 ], "__typename": [ - 75 + 74 ] }, "player_premier_rank_history_min_order_by": { "id": [ - 2016 + 2015 ], "map_id": [ - 2016 + 2015 ], "match_id": [ - 2016 + 2015 ], "observed_at": [ - 2016 + 2015 ], "previous_rank": [ - 2016 + 2015 ], "rank": [ - 2016 + 2015 ], "rank_type": [ - 2016 + 2015 ], "steam_id": [ - 2016 + 2015 ], "__typename": [ - 75 + 74 ] }, "player_premier_rank_history_mutation_response": { @@ -64643,85 +65489,85 @@ export default { 38 ], "returning": [ - 2631 + 2630 ], "__typename": [ - 75 + 74 ] }, "player_premier_rank_history_on_conflict": { "constraint": [ - 2641 + 2640 ], "update_columns": [ - 2664 + 2663 ], "where": [ - 2640 + 2639 ], "__typename": [ - 75 + 74 ] }, "player_premier_rank_history_order_by": { "id": [ - 2016 + 2015 ], "map": [ - 1368 + 1367 ], "map_id": [ - 2016 + 2015 ], "match": [ - 1851 + 1850 ], "match_id": [ - 2016 + 2015 ], "observed_at": [ - 2016 + 2015 ], "player": [ - 2928 + 2927 ], "previous_rank": [ - 2016 + 2015 ], "rank": [ - 2016 + 2015 ], "rank_type": [ - 2016 + 2015 ], "steam_id": [ - 2016 + 2015 ], "__typename": [ - 75 + 74 ] }, "player_premier_rank_history_pk_columns_input": { "id": [ - 3864 + 3863 ], "__typename": [ - 75 + 74 ] }, "player_premier_rank_history_select_column": {}, "player_premier_rank_history_set_input": { "id": [ - 3864 + 3863 ], "map_id": [ - 3864 + 3863 ], "match_id": [ - 3864 + 3863 ], "observed_at": [ - 3467 + 3466 ], "previous_rank": [ 38 @@ -64733,10 +65579,10 @@ export default { 38 ], "steam_id": [ - 174 + 173 ], "__typename": [ - 75 + 74 ] }, "player_premier_rank_history_stddev_fields": { @@ -64753,24 +65599,24 @@ export default { 29 ], "__typename": [ - 75 + 74 ] }, "player_premier_rank_history_stddev_order_by": { "previous_rank": [ - 2016 + 2015 ], "rank": [ - 2016 + 2015 ], "rank_type": [ - 2016 + 2015 ], "steam_id": [ - 2016 + 2015 ], "__typename": [ - 75 + 74 ] }, "player_premier_rank_history_stddev_pop_fields": { @@ -64787,24 +65633,24 @@ export default { 29 ], "__typename": [ - 75 + 74 ] }, "player_premier_rank_history_stddev_pop_order_by": { "previous_rank": [ - 2016 + 2015 ], "rank": [ - 2016 + 2015 ], "rank_type": [ - 2016 + 2015 ], "steam_id": [ - 2016 + 2015 ], "__typename": [ - 75 + 74 ] }, "player_premier_rank_history_stddev_samp_fields": { @@ -64821,49 +65667,49 @@ export default { 29 ], "__typename": [ - 75 + 74 ] }, "player_premier_rank_history_stddev_samp_order_by": { "previous_rank": [ - 2016 + 2015 ], "rank": [ - 2016 + 2015 ], "rank_type": [ - 2016 + 2015 ], "steam_id": [ - 2016 + 2015 ], "__typename": [ - 75 + 74 ] }, "player_premier_rank_history_stream_cursor_input": { "initial_value": [ - 2661 + 2660 ], "ordering": [ - 229 + 228 ], "__typename": [ - 75 + 74 ] }, "player_premier_rank_history_stream_cursor_value_input": { "id": [ - 3864 + 3863 ], "map_id": [ - 3864 + 3863 ], "match_id": [ - 3864 + 3863 ], "observed_at": [ - 3467 + 3466 ], "previous_rank": [ 38 @@ -64875,10 +65721,10 @@ export default { 38 ], "steam_id": [ - 174 + 173 ], "__typename": [ - 75 + 74 ] }, "player_premier_rank_history_sum_fields": { @@ -64892,42 +65738,42 @@ export default { 38 ], "steam_id": [ - 174 + 173 ], "__typename": [ - 75 + 74 ] }, "player_premier_rank_history_sum_order_by": { "previous_rank": [ - 2016 + 2015 ], "rank": [ - 2016 + 2015 ], "rank_type": [ - 2016 + 2015 ], "steam_id": [ - 2016 + 2015 ], "__typename": [ - 75 + 74 ] }, "player_premier_rank_history_update_column": {}, "player_premier_rank_history_updates": { "_inc": [ - 2642 + 2641 ], "_set": [ - 2653 + 2652 ], "where": [ - 2640 + 2639 ], "__typename": [ - 75 + 74 ] }, "player_premier_rank_history_var_pop_fields": { @@ -64944,24 +65790,24 @@ export default { 29 ], "__typename": [ - 75 + 74 ] }, "player_premier_rank_history_var_pop_order_by": { "previous_rank": [ - 2016 + 2015 ], "rank": [ - 2016 + 2015 ], "rank_type": [ - 2016 + 2015 ], "steam_id": [ - 2016 + 2015 ], "__typename": [ - 75 + 74 ] }, "player_premier_rank_history_var_samp_fields": { @@ -64978,24 +65824,24 @@ export default { 29 ], "__typename": [ - 75 + 74 ] }, "player_premier_rank_history_var_samp_order_by": { "previous_rank": [ - 2016 + 2015 ], "rank": [ - 2016 + 2015 ], "rank_type": [ - 2016 + 2015 ], "steam_id": [ - 2016 + 2015 ], "__typename": [ - 75 + 74 ] }, "player_premier_rank_history_variance_fields": { @@ -65012,109 +65858,109 @@ export default { 29 ], "__typename": [ - 75 + 74 ] }, "player_premier_rank_history_variance_order_by": { "previous_rank": [ - 2016 + 2015 ], "rank": [ - 2016 + 2015 ], "rank_type": [ - 2016 + 2015 ], "steam_id": [ - 2016 + 2015 ], "__typename": [ - 75 + 74 ] }, "player_sanctions": { "created_at": [ - 3467 + 3466 ], "deleted_at": [ - 3467 + 3466 ], "e_sanction_type": [ - 825 + 824 ], "id": [ - 3864 + 3863 ], "player": [ - 2915 + 2914 ], "player_steam_id": [ - 174 + 173 ], "reason": [ - 75 + 74 ], "remove_sanction_date": [ - 3467 + 3466 ], "sanctioned_by": [ - 2915 + 2914 ], "sanctioned_by_steam_id": [ - 174 + 173 ], "type": [ - 830 + 829 ], "__typename": [ - 75 + 74 ] }, "player_sanctions_aggregate": { "aggregate": [ - 2676 + 2675 ], "nodes": [ - 2672 + 2671 ], "__typename": [ - 75 + 74 ] }, "player_sanctions_aggregate_bool_exp": { "count": [ - 2675 + 2674 ], "__typename": [ - 75 + 74 ] }, "player_sanctions_aggregate_bool_exp_count": { "arguments": [ - 2693 + 2692 ], "distinct": [ 3 ], "filter": [ - 2681 + 2680 ], "predicate": [ 39 ], "__typename": [ - 75 + 74 ] }, "player_sanctions_aggregate_fields": { "avg": [ - 2679 + 2678 ], "count": [ 38, { "columns": [ - 2693, + 2692, "[player_sanctions_select_column!]" ], "distinct": [ @@ -65123,83 +65969,83 @@ export default { } ], "max": [ - 2685 + 2684 ], "min": [ - 2687 + 2686 ], "stddev": [ - 2695 + 2694 ], "stddev_pop": [ - 2697 + 2696 ], "stddev_samp": [ - 2699 + 2698 ], "sum": [ - 2703 + 2702 ], "var_pop": [ - 2707 + 2706 ], "var_samp": [ - 2709 + 2708 ], "variance": [ - 2711 + 2710 ], "__typename": [ - 75 + 74 ] }, "player_sanctions_aggregate_order_by": { "avg": [ - 2680 + 2679 ], "count": [ - 2016 + 2015 ], "max": [ - 2686 + 2685 ], "min": [ - 2688 + 2687 ], "stddev": [ - 2696 + 2695 ], "stddev_pop": [ - 2698 + 2697 ], "stddev_samp": [ - 2700 + 2699 ], "sum": [ - 2704 + 2703 ], "var_pop": [ - 2708 + 2707 ], "var_samp": [ - 2710 + 2709 ], "variance": [ - 2712 + 2711 ], "__typename": [ - 75 + 74 ] }, "player_sanctions_arr_rel_insert_input": { "data": [ - 2684 + 2683 ], "on_conflict": [ - 2690 + 2689 ], "__typename": [ - 75 + 74 ] }, "player_sanctions_avg_fields": { @@ -65210,219 +66056,219 @@ export default { 29 ], "__typename": [ - 75 + 74 ] }, "player_sanctions_avg_order_by": { "player_steam_id": [ - 2016 + 2015 ], "sanctioned_by_steam_id": [ - 2016 + 2015 ], "__typename": [ - 75 + 74 ] }, "player_sanctions_bool_exp": { "_and": [ - 2681 + 2680 ], "_not": [ - 2681 + 2680 ], "_or": [ - 2681 + 2680 ], "created_at": [ - 3468 + 3467 ], "deleted_at": [ - 3468 + 3467 ], "e_sanction_type": [ - 828 + 827 ], "id": [ - 3866 + 3865 ], "player": [ - 2919 + 2918 ], "player_steam_id": [ - 176 + 175 ], "reason": [ - 77 + 76 ], "remove_sanction_date": [ - 3468 + 3467 ], "sanctioned_by": [ - 2919 + 2918 ], "sanctioned_by_steam_id": [ - 176 + 175 ], "type": [ - 831 + 830 ], "__typename": [ - 75 + 74 ] }, "player_sanctions_constraint": {}, "player_sanctions_inc_input": { "player_steam_id": [ - 174 + 173 ], "sanctioned_by_steam_id": [ - 174 + 173 ], "__typename": [ - 75 + 74 ] }, "player_sanctions_insert_input": { "created_at": [ - 3467 + 3466 ], "deleted_at": [ - 3467 + 3466 ], "e_sanction_type": [ - 836 + 835 ], "id": [ - 3864 + 3863 ], "player": [ - 2926 + 2925 ], "player_steam_id": [ - 174 + 173 ], "reason": [ - 75 + 74 ], "remove_sanction_date": [ - 3467 + 3466 ], "sanctioned_by": [ - 2926 + 2925 ], "sanctioned_by_steam_id": [ - 174 + 173 ], "type": [ - 830 + 829 ], "__typename": [ - 75 + 74 ] }, "player_sanctions_max_fields": { "created_at": [ - 3467 + 3466 ], "deleted_at": [ - 3467 + 3466 ], "id": [ - 3864 + 3863 ], "player_steam_id": [ - 174 + 173 ], "reason": [ - 75 + 74 ], "remove_sanction_date": [ - 3467 + 3466 ], "sanctioned_by_steam_id": [ - 174 + 173 ], "__typename": [ - 75 + 74 ] }, "player_sanctions_max_order_by": { "created_at": [ - 2016 + 2015 ], "deleted_at": [ - 2016 + 2015 ], "id": [ - 2016 + 2015 ], "player_steam_id": [ - 2016 + 2015 ], "reason": [ - 2016 + 2015 ], "remove_sanction_date": [ - 2016 + 2015 ], "sanctioned_by_steam_id": [ - 2016 + 2015 ], "__typename": [ - 75 + 74 ] }, "player_sanctions_min_fields": { "created_at": [ - 3467 + 3466 ], "deleted_at": [ - 3467 + 3466 ], "id": [ - 3864 + 3863 ], "player_steam_id": [ - 174 + 173 ], "reason": [ - 75 + 74 ], "remove_sanction_date": [ - 3467 + 3466 ], "sanctioned_by_steam_id": [ - 174 + 173 ], "__typename": [ - 75 + 74 ] }, "player_sanctions_min_order_by": { "created_at": [ - 2016 + 2015 ], "deleted_at": [ - 2016 + 2015 ], "id": [ - 2016 + 2015 ], "player_steam_id": [ - 2016 + 2015 ], "reason": [ - 2016 + 2015 ], "remove_sanction_date": [ - 2016 + 2015 ], "sanctioned_by_steam_id": [ - 2016 + 2015 ], "__typename": [ - 75 + 74 ] }, "player_sanctions_mutation_response": { @@ -65430,103 +66276,103 @@ export default { 38 ], "returning": [ - 2672 + 2671 ], "__typename": [ - 75 + 74 ] }, "player_sanctions_on_conflict": { "constraint": [ - 2682 + 2681 ], "update_columns": [ - 2705 + 2704 ], "where": [ - 2681 + 2680 ], "__typename": [ - 75 + 74 ] }, "player_sanctions_order_by": { "created_at": [ - 2016 + 2015 ], "deleted_at": [ - 2016 + 2015 ], "e_sanction_type": [ - 838 + 837 ], "id": [ - 2016 + 2015 ], "player": [ - 2928 + 2927 ], "player_steam_id": [ - 2016 + 2015 ], "reason": [ - 2016 + 2015 ], "remove_sanction_date": [ - 2016 + 2015 ], "sanctioned_by": [ - 2928 + 2927 ], "sanctioned_by_steam_id": [ - 2016 + 2015 ], "type": [ - 2016 + 2015 ], "__typename": [ - 75 + 74 ] }, "player_sanctions_pk_columns_input": { "created_at": [ - 3467 + 3466 ], "id": [ - 3864 + 3863 ], "__typename": [ - 75 + 74 ] }, "player_sanctions_select_column": {}, "player_sanctions_set_input": { "created_at": [ - 3467 + 3466 ], "deleted_at": [ - 3467 + 3466 ], "id": [ - 3864 + 3863 ], "player_steam_id": [ - 174 + 173 ], "reason": [ - 75 + 74 ], "remove_sanction_date": [ - 3467 + 3466 ], "sanctioned_by_steam_id": [ - 174 + 173 ], "type": [ - 830 + 829 ], "__typename": [ - 75 + 74 ] }, "player_sanctions_stddev_fields": { @@ -65537,18 +66383,18 @@ export default { 29 ], "__typename": [ - 75 + 74 ] }, "player_sanctions_stddev_order_by": { "player_steam_id": [ - 2016 + 2015 ], "sanctioned_by_steam_id": [ - 2016 + 2015 ], "__typename": [ - 75 + 74 ] }, "player_sanctions_stddev_pop_fields": { @@ -65559,18 +66405,18 @@ export default { 29 ], "__typename": [ - 75 + 74 ] }, "player_sanctions_stddev_pop_order_by": { "player_steam_id": [ - 2016 + 2015 ], "sanctioned_by_steam_id": [ - 2016 + 2015 ], "__typename": [ - 75 + 74 ] }, "player_sanctions_stddev_samp_fields": { @@ -65581,95 +66427,95 @@ export default { 29 ], "__typename": [ - 75 + 74 ] }, "player_sanctions_stddev_samp_order_by": { "player_steam_id": [ - 2016 + 2015 ], "sanctioned_by_steam_id": [ - 2016 + 2015 ], "__typename": [ - 75 + 74 ] }, "player_sanctions_stream_cursor_input": { "initial_value": [ - 2702 + 2701 ], "ordering": [ - 229 + 228 ], "__typename": [ - 75 + 74 ] }, "player_sanctions_stream_cursor_value_input": { "created_at": [ - 3467 + 3466 ], "deleted_at": [ - 3467 + 3466 ], "id": [ - 3864 + 3863 ], "player_steam_id": [ - 174 + 173 ], "reason": [ - 75 + 74 ], "remove_sanction_date": [ - 3467 + 3466 ], "sanctioned_by_steam_id": [ - 174 + 173 ], "type": [ - 830 + 829 ], "__typename": [ - 75 + 74 ] }, "player_sanctions_sum_fields": { "player_steam_id": [ - 174 + 173 ], "sanctioned_by_steam_id": [ - 174 + 173 ], "__typename": [ - 75 + 74 ] }, "player_sanctions_sum_order_by": { "player_steam_id": [ - 2016 + 2015 ], "sanctioned_by_steam_id": [ - 2016 + 2015 ], "__typename": [ - 75 + 74 ] }, "player_sanctions_update_column": {}, "player_sanctions_updates": { "_inc": [ - 2683 + 2682 ], "_set": [ - 2694 + 2693 ], "where": [ - 2681 + 2680 ], "__typename": [ - 75 + 74 ] }, "player_sanctions_var_pop_fields": { @@ -65680,18 +66526,18 @@ export default { 29 ], "__typename": [ - 75 + 74 ] }, "player_sanctions_var_pop_order_by": { "player_steam_id": [ - 2016 + 2015 ], "sanctioned_by_steam_id": [ - 2016 + 2015 ], "__typename": [ - 75 + 74 ] }, "player_sanctions_var_samp_fields": { @@ -65702,18 +66548,18 @@ export default { 29 ], "__typename": [ - 75 + 74 ] }, "player_sanctions_var_samp_order_by": { "player_steam_id": [ - 2016 + 2015 ], "sanctioned_by_steam_id": [ - 2016 + 2015 ], "__typename": [ - 75 + 74 ] }, "player_sanctions_variance_fields": { @@ -65724,66 +66570,66 @@ export default { 29 ], "__typename": [ - 75 + 74 ] }, "player_sanctions_variance_order_by": { "player_steam_id": [ - 2016 + 2015 ], "sanctioned_by_steam_id": [ - 2016 + 2015 ], "__typename": [ - 75 + 74 ] }, "player_stats": { "assists": [ - 174 + 173 ], "deaths": [ - 174 + 173 ], "headshot_percentage": [ - 1089 + 1088 ], "headshots": [ - 174 + 173 ], "kills": [ - 174 + 173 ], "player": [ - 2915 + 2914 ], "player_steam_id": [ - 174 + 173 ], "__typename": [ - 75 + 74 ] }, "player_stats_aggregate": { "aggregate": [ - 2715 + 2714 ], "nodes": [ - 2713 + 2712 ], "__typename": [ - 75 + 74 ] }, "player_stats_aggregate_fields": { "avg": [ - 2716 + 2715 ], "count": [ 38, { "columns": [ - 2728, + 2727, "[player_stats_select_column!]" ], "distinct": [ @@ -65792,34 +66638,34 @@ export default { } ], "max": [ - 2721 + 2720 ], "min": [ - 2722 + 2721 ], "stddev": [ - 2730 + 2729 ], "stddev_pop": [ - 2731 + 2730 ], "stddev_samp": [ - 2732 + 2731 ], "sum": [ - 2735 + 2734 ], "var_pop": [ - 2738 + 2737 ], "var_samp": [ - 2739 + 2738 ], "variance": [ - 2740 + 2739 ], "__typename": [ - 75 + 74 ] }, "player_stats_avg_fields": { @@ -65842,138 +66688,138 @@ export default { 29 ], "__typename": [ - 75 + 74 ] }, "player_stats_bool_exp": { "_and": [ - 2717 + 2716 ], "_not": [ - 2717 + 2716 ], "_or": [ - 2717 + 2716 ], "assists": [ - 176 + 175 ], "deaths": [ - 176 + 175 ], "headshot_percentage": [ - 1090 + 1089 ], "headshots": [ - 176 + 175 ], "kills": [ - 176 + 175 ], "player": [ - 2919 + 2918 ], "player_steam_id": [ - 176 + 175 ], "__typename": [ - 75 + 74 ] }, "player_stats_constraint": {}, "player_stats_inc_input": { "assists": [ - 174 + 173 ], "deaths": [ - 174 + 173 ], "headshot_percentage": [ - 1089 + 1088 ], "headshots": [ - 174 + 173 ], "kills": [ - 174 + 173 ], "player_steam_id": [ - 174 + 173 ], "__typename": [ - 75 + 74 ] }, "player_stats_insert_input": { "assists": [ - 174 + 173 ], "deaths": [ - 174 + 173 ], "headshot_percentage": [ - 1089 + 1088 ], "headshots": [ - 174 + 173 ], "kills": [ - 174 + 173 ], "player": [ - 2926 + 2925 ], "player_steam_id": [ - 174 + 173 ], "__typename": [ - 75 + 74 ] }, "player_stats_max_fields": { "assists": [ - 174 + 173 ], "deaths": [ - 174 + 173 ], "headshot_percentage": [ - 1089 + 1088 ], "headshots": [ - 174 + 173 ], "kills": [ - 174 + 173 ], "player_steam_id": [ - 174 + 173 ], "__typename": [ - 75 + 74 ] }, "player_stats_min_fields": { "assists": [ - 174 + 173 ], "deaths": [ - 174 + 173 ], "headshot_percentage": [ - 1089 + 1088 ], "headshots": [ - 174 + 173 ], "kills": [ - 174 + 173 ], "player_steam_id": [ - 174 + 173 ], "__typename": [ - 75 + 74 ] }, "player_stats_mutation_response": { @@ -65981,93 +66827,93 @@ export default { 38 ], "returning": [ - 2713 + 2712 ], "__typename": [ - 75 + 74 ] }, "player_stats_obj_rel_insert_input": { "data": [ - 2720 + 2719 ], "on_conflict": [ - 2725 + 2724 ], "__typename": [ - 75 + 74 ] }, "player_stats_on_conflict": { "constraint": [ - 2718 + 2717 ], "update_columns": [ - 2736 + 2735 ], "where": [ - 2717 + 2716 ], "__typename": [ - 75 + 74 ] }, "player_stats_order_by": { "assists": [ - 2016 + 2015 ], "deaths": [ - 2016 + 2015 ], "headshot_percentage": [ - 2016 + 2015 ], "headshots": [ - 2016 + 2015 ], "kills": [ - 2016 + 2015 ], "player": [ - 2928 + 2927 ], "player_steam_id": [ - 2016 + 2015 ], "__typename": [ - 75 + 74 ] }, "player_stats_pk_columns_input": { "player_steam_id": [ - 174 + 173 ], "__typename": [ - 75 + 74 ] }, "player_stats_select_column": {}, "player_stats_set_input": { "assists": [ - 174 + 173 ], "deaths": [ - 174 + 173 ], "headshot_percentage": [ - 1089 + 1088 ], "headshots": [ - 174 + 173 ], "kills": [ - 174 + 173 ], "player_steam_id": [ - 174 + 173 ], "__typename": [ - 75 + 74 ] }, "player_stats_stddev_fields": { @@ -66090,7 +66936,7 @@ export default { 29 ], "__typename": [ - 75 + 74 ] }, "player_stats_stddev_pop_fields": { @@ -66113,7 +66959,7 @@ export default { 29 ], "__typename": [ - 75 + 74 ] }, "player_stats_stddev_samp_fields": { @@ -66136,79 +66982,79 @@ export default { 29 ], "__typename": [ - 75 + 74 ] }, "player_stats_stream_cursor_input": { "initial_value": [ - 2734 + 2733 ], "ordering": [ - 229 + 228 ], "__typename": [ - 75 + 74 ] }, "player_stats_stream_cursor_value_input": { "assists": [ - 174 + 173 ], "deaths": [ - 174 + 173 ], "headshot_percentage": [ - 1089 + 1088 ], "headshots": [ - 174 + 173 ], "kills": [ - 174 + 173 ], "player_steam_id": [ - 174 + 173 ], "__typename": [ - 75 + 74 ] }, "player_stats_sum_fields": { "assists": [ - 174 + 173 ], "deaths": [ - 174 + 173 ], "headshot_percentage": [ - 1089 + 1088 ], "headshots": [ - 174 + 173 ], "kills": [ - 174 + 173 ], "player_steam_id": [ - 174 + 173 ], "__typename": [ - 75 + 74 ] }, "player_stats_update_column": {}, "player_stats_updates": { "_inc": [ - 2719 + 2718 ], "_set": [ - 2729 + 2728 ], "where": [ - 2717 + 2716 ], "__typename": [ - 75 + 74 ] }, "player_stats_var_pop_fields": { @@ -66231,7 +67077,7 @@ export default { 29 ], "__typename": [ - 75 + 74 ] }, "player_stats_var_samp_fields": { @@ -66254,7 +67100,7 @@ export default { 29 ], "__typename": [ - 75 + 74 ] }, "player_stats_variance_fields": { @@ -66277,66 +67123,66 @@ export default { 29 ], "__typename": [ - 75 + 74 ] }, "player_steam_bot_friend": { "bot_steam_account_id": [ - 3864 + 3863 ], "bot_steamid64": [ - 174 + 173 ], "created_at": [ - 3467 + 3466 ], "friended_at": [ - 3467 + 3466 ], "last_presence_state": [ - 1240, + 1239, { "path": [ - 75 + 74 ] } ], "player": [ - 2915 + 2914 ], "status": [ - 75 + 74 ], "steam_id": [ - 174 + 173 ], "updated_at": [ - 3467 + 3466 ], "__typename": [ - 75 + 74 ] }, "player_steam_bot_friend_aggregate": { "aggregate": [ - 2743 + 2742 ], "nodes": [ - 2741 + 2740 ], "__typename": [ - 75 + 74 ] }, "player_steam_bot_friend_aggregate_fields": { "avg": [ - 2745 + 2744 ], "count": [ 38, { "columns": [ - 2760, + 2759, "[player_steam_bot_friend_select_column!]" ], "distinct": [ @@ -66345,42 +67191,42 @@ export default { } ], "max": [ - 2753 + 2752 ], "min": [ - 2754 + 2753 ], "stddev": [ - 2762 + 2761 ], "stddev_pop": [ - 2763 + 2762 ], "stddev_samp": [ - 2764 + 2763 ], "sum": [ - 2767 + 2766 ], "var_pop": [ - 2770 + 2769 ], "var_samp": [ - 2771 + 2770 ], "variance": [ - 2772 + 2771 ], "__typename": [ - 75 + 74 ] }, "player_steam_bot_friend_append_input": { "last_presence_state": [ - 1240 + 1239 ], "__typename": [ - 75 + 74 ] }, "player_steam_bot_friend_avg_fields": { @@ -66391,57 +67237,57 @@ export default { 29 ], "__typename": [ - 75 + 74 ] }, "player_steam_bot_friend_bool_exp": { "_and": [ - 2746 + 2745 ], "_not": [ - 2746 + 2745 ], "_or": [ - 2746 + 2745 ], "bot_steam_account_id": [ - 3866 + 3865 ], "bot_steamid64": [ - 176 + 175 ], "created_at": [ - 3468 + 3467 ], "friended_at": [ - 3468 + 3467 ], "last_presence_state": [ - 1242 + 1241 ], "player": [ - 2919 + 2918 ], "status": [ - 77 + 76 ], "steam_id": [ - 176 + 175 ], "updated_at": [ - 3468 + 3467 ], "__typename": [ - 75 + 74 ] }, "player_steam_bot_friend_constraint": {}, "player_steam_bot_friend_delete_at_path_input": { "last_presence_state": [ - 75 + 74 ], "__typename": [ - 75 + 74 ] }, "player_steam_bot_friend_delete_elem_input": { @@ -66449,110 +67295,110 @@ export default { 38 ], "__typename": [ - 75 + 74 ] }, "player_steam_bot_friend_delete_key_input": { "last_presence_state": [ - 75 + 74 ], "__typename": [ - 75 + 74 ] }, "player_steam_bot_friend_inc_input": { "bot_steamid64": [ - 174 + 173 ], "steam_id": [ - 174 + 173 ], "__typename": [ - 75 + 74 ] }, "player_steam_bot_friend_insert_input": { "bot_steam_account_id": [ - 3864 + 3863 ], "bot_steamid64": [ - 174 + 173 ], "created_at": [ - 3467 + 3466 ], "friended_at": [ - 3467 + 3466 ], "last_presence_state": [ - 1240 + 1239 ], "player": [ - 2926 + 2925 ], "status": [ - 75 + 74 ], "steam_id": [ - 174 + 173 ], "updated_at": [ - 3467 + 3466 ], "__typename": [ - 75 + 74 ] }, "player_steam_bot_friend_max_fields": { "bot_steam_account_id": [ - 3864 + 3863 ], "bot_steamid64": [ - 174 + 173 ], "created_at": [ - 3467 + 3466 ], "friended_at": [ - 3467 + 3466 ], "status": [ - 75 + 74 ], "steam_id": [ - 174 + 173 ], "updated_at": [ - 3467 + 3466 ], "__typename": [ - 75 + 74 ] }, "player_steam_bot_friend_min_fields": { "bot_steam_account_id": [ - 3864 + 3863 ], "bot_steamid64": [ - 174 + 173 ], "created_at": [ - 3467 + 3466 ], "friended_at": [ - 3467 + 3466 ], "status": [ - 75 + 74 ], "steam_id": [ - 174 + 173 ], "updated_at": [ - 3467 + 3466 ], "__typename": [ - 75 + 74 ] }, "player_steam_bot_friend_mutation_response": { @@ -66560,102 +67406,102 @@ export default { 38 ], "returning": [ - 2741 + 2740 ], "__typename": [ - 75 + 74 ] }, "player_steam_bot_friend_on_conflict": { "constraint": [ - 2747 + 2746 ], "update_columns": [ - 2768 + 2767 ], "where": [ - 2746 + 2745 ], "__typename": [ - 75 + 74 ] }, "player_steam_bot_friend_order_by": { "bot_steam_account_id": [ - 2016 + 2015 ], "bot_steamid64": [ - 2016 + 2015 ], "created_at": [ - 2016 + 2015 ], "friended_at": [ - 2016 + 2015 ], "last_presence_state": [ - 2016 + 2015 ], "player": [ - 2928 + 2927 ], "status": [ - 2016 + 2015 ], "steam_id": [ - 2016 + 2015 ], "updated_at": [ - 2016 + 2015 ], "__typename": [ - 75 + 74 ] }, "player_steam_bot_friend_pk_columns_input": { "steam_id": [ - 174 + 173 ], "__typename": [ - 75 + 74 ] }, "player_steam_bot_friend_prepend_input": { "last_presence_state": [ - 1240 + 1239 ], "__typename": [ - 75 + 74 ] }, "player_steam_bot_friend_select_column": {}, "player_steam_bot_friend_set_input": { "bot_steam_account_id": [ - 3864 + 3863 ], "bot_steamid64": [ - 174 + 173 ], "created_at": [ - 3467 + 3466 ], "friended_at": [ - 3467 + 3466 ], "last_presence_state": [ - 1240 + 1239 ], "status": [ - 75 + 74 ], "steam_id": [ - 174 + 173 ], "updated_at": [ - 3467 + 3466 ], "__typename": [ - 75 + 74 ] }, "player_steam_bot_friend_stddev_fields": { @@ -66666,7 +67512,7 @@ export default { 29 ], "__typename": [ - 75 + 74 ] }, "player_steam_bot_friend_stddev_pop_fields": { @@ -66677,7 +67523,7 @@ export default { 29 ], "__typename": [ - 75 + 74 ] }, "player_steam_bot_friend_stddev_samp_fields": { @@ -66688,88 +67534,88 @@ export default { 29 ], "__typename": [ - 75 + 74 ] }, "player_steam_bot_friend_stream_cursor_input": { "initial_value": [ - 2766 + 2765 ], "ordering": [ - 229 + 228 ], "__typename": [ - 75 + 74 ] }, "player_steam_bot_friend_stream_cursor_value_input": { "bot_steam_account_id": [ - 3864 + 3863 ], "bot_steamid64": [ - 174 + 173 ], "created_at": [ - 3467 + 3466 ], "friended_at": [ - 3467 + 3466 ], "last_presence_state": [ - 1240 + 1239 ], "status": [ - 75 + 74 ], "steam_id": [ - 174 + 173 ], "updated_at": [ - 3467 + 3466 ], "__typename": [ - 75 + 74 ] }, "player_steam_bot_friend_sum_fields": { "bot_steamid64": [ - 174 + 173 ], "steam_id": [ - 174 + 173 ], "__typename": [ - 75 + 74 ] }, "player_steam_bot_friend_update_column": {}, "player_steam_bot_friend_updates": { "_append": [ - 2744 + 2743 ], "_delete_at_path": [ - 2748 + 2747 ], "_delete_elem": [ - 2749 + 2748 ], "_delete_key": [ - 2750 + 2749 ], "_inc": [ - 2751 + 2750 ], "_prepend": [ - 2759 + 2758 ], "_set": [ - 2761 + 2760 ], "where": [ - 2746 + 2745 ], "__typename": [ - 75 + 74 ] }, "player_steam_bot_friend_var_pop_fields": { @@ -66780,7 +67626,7 @@ export default { 29 ], "__typename": [ - 75 + 74 ] }, "player_steam_bot_friend_var_samp_fields": { @@ -66791,7 +67637,7 @@ export default { 29 ], "__typename": [ - 75 + 74 ] }, "player_steam_bot_friend_variance_fields": { @@ -66802,58 +67648,58 @@ export default { 29 ], "__typename": [ - 75 + 74 ] }, "player_steam_match_auth": { "auth_code": [ - 75 + 74 ], "created_at": [ - 3467 + 3466 ], "last_error": [ - 75 + 74 ], "last_known_share_code": [ - 75 + 74 ], "last_polled_at": [ - 3467 + 3466 ], "player": [ - 2915 + 2914 ], "steam_id": [ - 174 + 173 ], "updated_at": [ - 3467 + 3466 ], "__typename": [ - 75 + 74 ] }, "player_steam_match_auth_aggregate": { "aggregate": [ - 2775 + 2774 ], "nodes": [ - 2773 + 2772 ], "__typename": [ - 75 + 74 ] }, "player_steam_match_auth_aggregate_fields": { "avg": [ - 2776 + 2775 ], "count": [ 38, { "columns": [ - 2787, + 2786, "[player_steam_match_auth_select_column!]" ], "distinct": [ @@ -66862,34 +67708,34 @@ export default { } ], "max": [ - 2781 + 2780 ], "min": [ - 2782 + 2781 ], "stddev": [ - 2789 + 2788 ], "stddev_pop": [ - 2790 + 2789 ], "stddev_samp": [ - 2791 + 2790 ], "sum": [ - 2794 + 2793 ], "var_pop": [ - 2797 + 2796 ], "var_samp": [ - 2798 + 2797 ], "variance": [ - 2799 + 2798 ], "__typename": [ - 75 + 74 ] }, "player_steam_match_auth_avg_fields": { @@ -66897,135 +67743,135 @@ export default { 29 ], "__typename": [ - 75 + 74 ] }, "player_steam_match_auth_bool_exp": { "_and": [ - 2777 + 2776 ], "_not": [ - 2777 + 2776 ], "_or": [ - 2777 + 2776 ], "auth_code": [ - 77 + 76 ], "created_at": [ - 3468 + 3467 ], "last_error": [ - 77 + 76 ], "last_known_share_code": [ - 77 + 76 ], "last_polled_at": [ - 3468 + 3467 ], "player": [ - 2919 + 2918 ], "steam_id": [ - 176 + 175 ], "updated_at": [ - 3468 + 3467 ], "__typename": [ - 75 + 74 ] }, "player_steam_match_auth_constraint": {}, "player_steam_match_auth_inc_input": { "steam_id": [ - 174 + 173 ], "__typename": [ - 75 + 74 ] }, "player_steam_match_auth_insert_input": { "auth_code": [ - 75 + 74 ], "created_at": [ - 3467 + 3466 ], "last_error": [ - 75 + 74 ], "last_known_share_code": [ - 75 + 74 ], "last_polled_at": [ - 3467 + 3466 ], "player": [ - 2926 + 2925 ], "steam_id": [ - 174 + 173 ], "updated_at": [ - 3467 + 3466 ], "__typename": [ - 75 + 74 ] }, "player_steam_match_auth_max_fields": { "auth_code": [ - 75 + 74 ], "created_at": [ - 3467 + 3466 ], "last_error": [ - 75 + 74 ], "last_known_share_code": [ - 75 + 74 ], "last_polled_at": [ - 3467 + 3466 ], "steam_id": [ - 174 + 173 ], "updated_at": [ - 3467 + 3466 ], "__typename": [ - 75 + 74 ] }, "player_steam_match_auth_min_fields": { "auth_code": [ - 75 + 74 ], "created_at": [ - 3467 + 3466 ], "last_error": [ - 75 + 74 ], "last_known_share_code": [ - 75 + 74 ], "last_polled_at": [ - 3467 + 3466 ], "steam_id": [ - 174 + 173 ], "updated_at": [ - 3467 + 3466 ], "__typename": [ - 75 + 74 ] }, "player_steam_match_auth_mutation_response": { @@ -67033,88 +67879,88 @@ export default { 38 ], "returning": [ - 2773 + 2772 ], "__typename": [ - 75 + 74 ] }, "player_steam_match_auth_on_conflict": { "constraint": [ - 2778 + 2777 ], "update_columns": [ - 2795 + 2794 ], "where": [ - 2777 + 2776 ], "__typename": [ - 75 + 74 ] }, "player_steam_match_auth_order_by": { "auth_code": [ - 2016 + 2015 ], "created_at": [ - 2016 + 2015 ], "last_error": [ - 2016 + 2015 ], "last_known_share_code": [ - 2016 + 2015 ], "last_polled_at": [ - 2016 + 2015 ], "player": [ - 2928 + 2927 ], "steam_id": [ - 2016 + 2015 ], "updated_at": [ - 2016 + 2015 ], "__typename": [ - 75 + 74 ] }, "player_steam_match_auth_pk_columns_input": { "steam_id": [ - 174 + 173 ], "__typename": [ - 75 + 74 ] }, "player_steam_match_auth_select_column": {}, "player_steam_match_auth_set_input": { "auth_code": [ - 75 + 74 ], "created_at": [ - 3467 + 3466 ], "last_error": [ - 75 + 74 ], "last_known_share_code": [ - 75 + 74 ], "last_polled_at": [ - 3467 + 3466 ], "steam_id": [ - 174 + 173 ], "updated_at": [ - 3467 + 3466 ], "__typename": [ - 75 + 74 ] }, "player_steam_match_auth_stddev_fields": { @@ -67122,7 +67968,7 @@ export default { 29 ], "__typename": [ - 75 + 74 ] }, "player_steam_match_auth_stddev_pop_fields": { @@ -67130,7 +67976,7 @@ export default { 29 ], "__typename": [ - 75 + 74 ] }, "player_steam_match_auth_stddev_samp_fields": { @@ -67138,67 +67984,67 @@ export default { 29 ], "__typename": [ - 75 + 74 ] }, "player_steam_match_auth_stream_cursor_input": { "initial_value": [ - 2793 + 2792 ], "ordering": [ - 229 + 228 ], "__typename": [ - 75 + 74 ] }, "player_steam_match_auth_stream_cursor_value_input": { "auth_code": [ - 75 + 74 ], "created_at": [ - 3467 + 3466 ], "last_error": [ - 75 + 74 ], "last_known_share_code": [ - 75 + 74 ], "last_polled_at": [ - 3467 + 3466 ], "steam_id": [ - 174 + 173 ], "updated_at": [ - 3467 + 3466 ], "__typename": [ - 75 + 74 ] }, "player_steam_match_auth_sum_fields": { "steam_id": [ - 174 + 173 ], "__typename": [ - 75 + 74 ] }, "player_steam_match_auth_update_column": {}, "player_steam_match_auth_updates": { "_inc": [ - 2779 + 2778 ], "_set": [ - 2788 + 2787 ], "where": [ - 2777 + 2776 ], "__typename": [ - 75 + 74 ] }, "player_steam_match_auth_var_pop_fields": { @@ -67206,7 +68052,7 @@ export default { 29 ], "__typename": [ - 75 + 74 ] }, "player_steam_match_auth_var_samp_fields": { @@ -67214,7 +68060,7 @@ export default { 29 ], "__typename": [ - 75 + 74 ] }, "player_steam_match_auth_variance_fields": { @@ -67222,30 +68068,30 @@ export default { 29 ], "__typename": [ - 75 + 74 ] }, "player_unused_utility": { "deleted_at": [ - 3467 + 3466 ], "match": [ - 1831 + 1830 ], "match_id": [ - 3864 + 3863 ], "match_map": [ - 1669 + 1668 ], "match_map_id": [ - 3864 + 3863 ], "player": [ - 2915 + 2914 ], "player_steam_id": [ - 174 + 173 ], "round": [ 38 @@ -67254,54 +68100,54 @@ export default { 38 ], "__typename": [ - 75 + 74 ] }, "player_unused_utility_aggregate": { "aggregate": [ - 2804 + 2803 ], "nodes": [ - 2800 + 2799 ], "__typename": [ - 75 + 74 ] }, "player_unused_utility_aggregate_bool_exp": { "count": [ - 2803 + 2802 ], "__typename": [ - 75 + 74 ] }, "player_unused_utility_aggregate_bool_exp_count": { "arguments": [ - 2821 + 2820 ], "distinct": [ 3 ], "filter": [ - 2809 + 2808 ], "predicate": [ 39 ], "__typename": [ - 75 + 74 ] }, "player_unused_utility_aggregate_fields": { "avg": [ - 2807 + 2806 ], "count": [ 38, { "columns": [ - 2821, + 2820, "[player_unused_utility_select_column!]" ], "distinct": [ @@ -67309,6 +68155,44 @@ export default { ] } ], + "max": [ + 2812 + ], + "min": [ + 2814 + ], + "stddev": [ + 2822 + ], + "stddev_pop": [ + 2824 + ], + "stddev_samp": [ + 2826 + ], + "sum": [ + 2830 + ], + "var_pop": [ + 2834 + ], + "var_samp": [ + 2836 + ], + "variance": [ + 2838 + ], + "__typename": [ + 74 + ] + }, + "player_unused_utility_aggregate_order_by": { + "avg": [ + 2807 + ], + "count": [ + 2015 + ], "max": [ 2813 ], @@ -67337,56 +68221,18 @@ export default { 2839 ], "__typename": [ - 75 - ] - }, - "player_unused_utility_aggregate_order_by": { - "avg": [ - 2808 - ], - "count": [ - 2016 - ], - "max": [ - 2814 - ], - "min": [ - 2816 - ], - "stddev": [ - 2824 - ], - "stddev_pop": [ - 2826 - ], - "stddev_samp": [ - 2828 - ], - "sum": [ - 2832 - ], - "var_pop": [ - 2836 - ], - "var_samp": [ - 2838 - ], - "variance": [ - 2840 - ], - "__typename": [ - 75 + 74 ] }, "player_unused_utility_arr_rel_insert_input": { "data": [ - 2812 + 2811 ], "on_conflict": [ - 2818 + 2817 ], "__typename": [ - 75 + 74 ] }, "player_unused_utility_avg_fields": { @@ -67400,53 +68246,53 @@ export default { 29 ], "__typename": [ - 75 + 74 ] }, "player_unused_utility_avg_order_by": { "player_steam_id": [ - 2016 + 2015 ], "round": [ - 2016 + 2015 ], "unused": [ - 2016 + 2015 ], "__typename": [ - 75 + 74 ] }, "player_unused_utility_bool_exp": { "_and": [ - 2809 + 2808 ], "_not": [ - 2809 + 2808 ], "_or": [ - 2809 + 2808 ], "deleted_at": [ - 3468 + 3467 ], "match": [ - 1840 + 1839 ], "match_id": [ - 3866 + 3865 ], "match_map": [ - 1678 + 1677 ], "match_map_id": [ - 3866 + 3865 ], "player": [ - 2919 + 2918 ], "player_steam_id": [ - 176 + 175 ], "round": [ 39 @@ -67455,13 +68301,13 @@ export default { 39 ], "__typename": [ - 75 + 74 ] }, "player_unused_utility_constraint": {}, "player_unused_utility_inc_input": { "player_steam_id": [ - 174 + 173 ], "round": [ 38 @@ -67470,30 +68316,30 @@ export default { 38 ], "__typename": [ - 75 + 74 ] }, "player_unused_utility_insert_input": { "deleted_at": [ - 3467 + 3466 ], "match": [ - 1849 + 1848 ], "match_id": [ - 3864 + 3863 ], "match_map": [ - 1687 + 1686 ], "match_map_id": [ - 3864 + 3863 ], "player": [ - 2926 + 2925 ], "player_steam_id": [ - 174 + 173 ], "round": [ 38 @@ -67502,21 +68348,21 @@ export default { 38 ], "__typename": [ - 75 + 74 ] }, "player_unused_utility_max_fields": { "deleted_at": [ - 3467 + 3466 ], "match_id": [ - 3864 + 3863 ], "match_map_id": [ - 3864 + 3863 ], "player_steam_id": [ - 174 + 173 ], "round": [ 38 @@ -67525,44 +68371,44 @@ export default { 38 ], "__typename": [ - 75 + 74 ] }, "player_unused_utility_max_order_by": { "deleted_at": [ - 2016 + 2015 ], "match_id": [ - 2016 + 2015 ], "match_map_id": [ - 2016 + 2015 ], "player_steam_id": [ - 2016 + 2015 ], "round": [ - 2016 + 2015 ], "unused": [ - 2016 + 2015 ], "__typename": [ - 75 + 74 ] }, "player_unused_utility_min_fields": { "deleted_at": [ - 3467 + 3466 ], "match_id": [ - 3864 + 3863 ], "match_map_id": [ - 3864 + 3863 ], "player_steam_id": [ - 174 + 173 ], "round": [ 38 @@ -67571,30 +68417,30 @@ export default { 38 ], "__typename": [ - 75 + 74 ] }, "player_unused_utility_min_order_by": { "deleted_at": [ - 2016 + 2015 ], "match_id": [ - 2016 + 2015 ], "match_map_id": [ - 2016 + 2015 ], "player_steam_id": [ - 2016 + 2015 ], "round": [ - 2016 + 2015 ], "unused": [ - 2016 + 2015 ], "__typename": [ - 75 + 74 ] }, "player_unused_utility_mutation_response": { @@ -67602,82 +68448,82 @@ export default { 38 ], "returning": [ - 2800 + 2799 ], "__typename": [ - 75 + 74 ] }, "player_unused_utility_on_conflict": { "constraint": [ - 2810 + 2809 ], "update_columns": [ - 2833 + 2832 ], "where": [ - 2809 + 2808 ], "__typename": [ - 75 + 74 ] }, "player_unused_utility_order_by": { "deleted_at": [ - 2016 + 2015 ], "match": [ - 1851 + 1850 ], "match_id": [ - 2016 + 2015 ], "match_map": [ - 1689 + 1688 ], "match_map_id": [ - 2016 + 2015 ], "player": [ - 2928 + 2927 ], "player_steam_id": [ - 2016 + 2015 ], "round": [ - 2016 + 2015 ], "unused": [ - 2016 + 2015 ], "__typename": [ - 75 + 74 ] }, "player_unused_utility_pk_columns_input": { "match_map_id": [ - 3864 + 3863 ], "player_steam_id": [ - 174 + 173 ], "__typename": [ - 75 + 74 ] }, "player_unused_utility_select_column": {}, "player_unused_utility_set_input": { "deleted_at": [ - 3467 + 3466 ], "match_id": [ - 3864 + 3863 ], "match_map_id": [ - 3864 + 3863 ], "player_steam_id": [ - 174 + 173 ], "round": [ 38 @@ -67686,7 +68532,7 @@ export default { 38 ], "__typename": [ - 75 + 74 ] }, "player_unused_utility_stddev_fields": { @@ -67700,21 +68546,21 @@ export default { 29 ], "__typename": [ - 75 + 74 ] }, "player_unused_utility_stddev_order_by": { "player_steam_id": [ - 2016 + 2015 ], "round": [ - 2016 + 2015 ], "unused": [ - 2016 + 2015 ], "__typename": [ - 75 + 74 ] }, "player_unused_utility_stddev_pop_fields": { @@ -67728,21 +68574,21 @@ export default { 29 ], "__typename": [ - 75 + 74 ] }, "player_unused_utility_stddev_pop_order_by": { "player_steam_id": [ - 2016 + 2015 ], "round": [ - 2016 + 2015 ], "unused": [ - 2016 + 2015 ], "__typename": [ - 75 + 74 ] }, "player_unused_utility_stddev_samp_fields": { @@ -67756,46 +68602,46 @@ export default { 29 ], "__typename": [ - 75 + 74 ] }, "player_unused_utility_stddev_samp_order_by": { "player_steam_id": [ - 2016 + 2015 ], "round": [ - 2016 + 2015 ], "unused": [ - 2016 + 2015 ], "__typename": [ - 75 + 74 ] }, "player_unused_utility_stream_cursor_input": { "initial_value": [ - 2830 + 2829 ], "ordering": [ - 229 + 228 ], "__typename": [ - 75 + 74 ] }, "player_unused_utility_stream_cursor_value_input": { "deleted_at": [ - 3467 + 3466 ], "match_id": [ - 3864 + 3863 ], "match_map_id": [ - 3864 + 3863 ], "player_steam_id": [ - 174 + 173 ], "round": [ 38 @@ -67804,12 +68650,12 @@ export default { 38 ], "__typename": [ - 75 + 74 ] }, "player_unused_utility_sum_fields": { "player_steam_id": [ - 174 + 173 ], "round": [ 38 @@ -67818,36 +68664,36 @@ export default { 38 ], "__typename": [ - 75 + 74 ] }, "player_unused_utility_sum_order_by": { "player_steam_id": [ - 2016 + 2015 ], "round": [ - 2016 + 2015 ], "unused": [ - 2016 + 2015 ], "__typename": [ - 75 + 74 ] }, "player_unused_utility_update_column": {}, "player_unused_utility_updates": { "_inc": [ - 2811 + 2810 ], "_set": [ - 2822 + 2821 ], "where": [ - 2809 + 2808 ], "__typename": [ - 75 + 74 ] }, "player_unused_utility_var_pop_fields": { @@ -67861,21 +68707,21 @@ export default { 29 ], "__typename": [ - 75 + 74 ] }, "player_unused_utility_var_pop_order_by": { "player_steam_id": [ - 2016 + 2015 ], "round": [ - 2016 + 2015 ], "unused": [ - 2016 + 2015 ], "__typename": [ - 75 + 74 ] }, "player_unused_utility_var_samp_fields": { @@ -67889,21 +68735,21 @@ export default { 29 ], "__typename": [ - 75 + 74 ] }, "player_unused_utility_var_samp_order_by": { "player_steam_id": [ - 2016 + 2015 ], "round": [ - 2016 + 2015 ], "unused": [ - 2016 + 2015 ], "__typename": [ - 75 + 74 ] }, "player_unused_utility_variance_fields": { @@ -67917,106 +68763,106 @@ export default { 29 ], "__typename": [ - 75 + 74 ] }, "player_unused_utility_variance_order_by": { "player_steam_id": [ - 2016 + 2015 ], "round": [ - 2016 + 2015 ], "unused": [ - 2016 + 2015 ], "__typename": [ - 75 + 74 ] }, "player_utility": { "attacker_location_coordinates": [ - 75 + 74 ], "attacker_steam_id": [ - 174 + 173 ], "deleted_at": [ - 3467 + 3466 ], "match": [ - 1831 + 1830 ], "match_id": [ - 3864 + 3863 ], "match_map": [ - 1669 + 1668 ], "match_map_id": [ - 3864 + 3863 ], "player": [ - 2915 + 2914 ], "round": [ 38 ], "time": [ - 3467 + 3466 ], "type": [ - 1034 + 1033 ], "__typename": [ - 75 + 74 ] }, "player_utility_aggregate": { "aggregate": [ - 2845 + 2844 ], "nodes": [ - 2841 + 2840 ], "__typename": [ - 75 + 74 ] }, "player_utility_aggregate_bool_exp": { "count": [ - 2844 + 2843 ], "__typename": [ - 75 + 74 ] }, "player_utility_aggregate_bool_exp_count": { "arguments": [ - 2862 + 2861 ], "distinct": [ 3 ], "filter": [ - 2850 + 2849 ], "predicate": [ 39 ], "__typename": [ - 75 + 74 ] }, "player_utility_aggregate_fields": { "avg": [ - 2848 + 2847 ], "count": [ 38, { "columns": [ - 2862, + 2861, "[player_utility_select_column!]" ], "distinct": [ @@ -68025,83 +68871,83 @@ export default { } ], "max": [ - 2854 + 2853 ], "min": [ - 2856 + 2855 ], "stddev": [ - 2864 + 2863 ], "stddev_pop": [ - 2866 + 2865 ], "stddev_samp": [ - 2868 + 2867 ], "sum": [ - 2872 + 2871 ], "var_pop": [ - 2876 + 2875 ], "var_samp": [ - 2878 + 2877 ], "variance": [ - 2880 + 2879 ], "__typename": [ - 75 + 74 ] }, "player_utility_aggregate_order_by": { "avg": [ - 2849 + 2848 ], "count": [ - 2016 + 2015 ], "max": [ - 2855 + 2854 ], "min": [ - 2857 + 2856 ], "stddev": [ - 2865 + 2864 ], "stddev_pop": [ - 2867 + 2866 ], "stddev_samp": [ - 2869 + 2868 ], "sum": [ - 2873 + 2872 ], "var_pop": [ - 2877 + 2876 ], "var_samp": [ - 2879 + 2878 ], "variance": [ - 2881 + 2880 ], "__typename": [ - 75 + 74 ] }, "player_utility_arr_rel_insert_input": { "data": [ - 2853 + 2852 ], "on_conflict": [ - 2859 + 2858 ], "__typename": [ - 75 + 74 ] }, "player_utility_avg_fields": { @@ -68112,219 +68958,219 @@ export default { 29 ], "__typename": [ - 75 + 74 ] }, "player_utility_avg_order_by": { "attacker_steam_id": [ - 2016 + 2015 ], "round": [ - 2016 + 2015 ], "__typename": [ - 75 + 74 ] }, "player_utility_bool_exp": { "_and": [ - 2850 + 2849 ], "_not": [ - 2850 + 2849 ], "_or": [ - 2850 + 2849 ], "attacker_location_coordinates": [ - 77 + 76 ], "attacker_steam_id": [ - 176 + 175 ], "deleted_at": [ - 3468 + 3467 ], "match": [ - 1840 + 1839 ], "match_id": [ - 3866 + 3865 ], "match_map": [ - 1678 + 1677 ], "match_map_id": [ - 3866 + 3865 ], "player": [ - 2919 + 2918 ], "round": [ 39 ], "time": [ - 3468 + 3467 ], "type": [ - 1035 + 1034 ], "__typename": [ - 75 + 74 ] }, "player_utility_constraint": {}, "player_utility_inc_input": { "attacker_steam_id": [ - 174 + 173 ], "round": [ 38 ], "__typename": [ - 75 + 74 ] }, "player_utility_insert_input": { "attacker_location_coordinates": [ - 75 + 74 ], "attacker_steam_id": [ - 174 + 173 ], "deleted_at": [ - 3467 + 3466 ], "match": [ - 1849 + 1848 ], "match_id": [ - 3864 + 3863 ], "match_map": [ - 1687 + 1686 ], "match_map_id": [ - 3864 + 3863 ], "player": [ - 2926 + 2925 ], "round": [ 38 ], "time": [ - 3467 + 3466 ], "type": [ - 1034 + 1033 ], "__typename": [ - 75 + 74 ] }, "player_utility_max_fields": { "attacker_location_coordinates": [ - 75 + 74 ], "attacker_steam_id": [ - 174 + 173 ], "deleted_at": [ - 3467 + 3466 ], "match_id": [ - 3864 + 3863 ], "match_map_id": [ - 3864 + 3863 ], "round": [ 38 ], "time": [ - 3467 + 3466 ], "__typename": [ - 75 + 74 ] }, "player_utility_max_order_by": { "attacker_location_coordinates": [ - 2016 + 2015 ], "attacker_steam_id": [ - 2016 + 2015 ], "deleted_at": [ - 2016 + 2015 ], "match_id": [ - 2016 + 2015 ], "match_map_id": [ - 2016 + 2015 ], "round": [ - 2016 + 2015 ], "time": [ - 2016 + 2015 ], "__typename": [ - 75 + 74 ] }, "player_utility_min_fields": { "attacker_location_coordinates": [ - 75 + 74 ], "attacker_steam_id": [ - 174 + 173 ], "deleted_at": [ - 3467 + 3466 ], "match_id": [ - 3864 + 3863 ], "match_map_id": [ - 3864 + 3863 ], "round": [ 38 ], "time": [ - 3467 + 3466 ], "__typename": [ - 75 + 74 ] }, "player_utility_min_order_by": { "attacker_location_coordinates": [ - 2016 + 2015 ], "attacker_steam_id": [ - 2016 + 2015 ], "deleted_at": [ - 2016 + 2015 ], "match_id": [ - 2016 + 2015 ], "match_map_id": [ - 2016 + 2015 ], "round": [ - 2016 + 2015 ], "time": [ - 2016 + 2015 ], "__typename": [ - 75 + 74 ] }, "player_utility_mutation_response": { @@ -68332,106 +69178,106 @@ export default { 38 ], "returning": [ - 2841 + 2840 ], "__typename": [ - 75 + 74 ] }, "player_utility_on_conflict": { "constraint": [ - 2851 + 2850 ], "update_columns": [ - 2874 + 2873 ], "where": [ - 2850 + 2849 ], "__typename": [ - 75 + 74 ] }, "player_utility_order_by": { "attacker_location_coordinates": [ - 2016 + 2015 ], "attacker_steam_id": [ - 2016 + 2015 ], "deleted_at": [ - 2016 + 2015 ], "match": [ - 1851 + 1850 ], "match_id": [ - 2016 + 2015 ], "match_map": [ - 1689 + 1688 ], "match_map_id": [ - 2016 + 2015 ], "player": [ - 2928 + 2927 ], "round": [ - 2016 + 2015 ], "time": [ - 2016 + 2015 ], "type": [ - 2016 + 2015 ], "__typename": [ - 75 + 74 ] }, "player_utility_pk_columns_input": { "attacker_steam_id": [ - 174 + 173 ], "match_map_id": [ - 3864 + 3863 ], "time": [ - 3467 + 3466 ], "__typename": [ - 75 + 74 ] }, "player_utility_select_column": {}, "player_utility_set_input": { "attacker_location_coordinates": [ - 75 + 74 ], "attacker_steam_id": [ - 174 + 173 ], "deleted_at": [ - 3467 + 3466 ], "match_id": [ - 3864 + 3863 ], "match_map_id": [ - 3864 + 3863 ], "round": [ 38 ], "time": [ - 3467 + 3466 ], "type": [ - 1034 + 1033 ], "__typename": [ - 75 + 74 ] }, "player_utility_stddev_fields": { @@ -68442,18 +69288,18 @@ export default { 29 ], "__typename": [ - 75 + 74 ] }, "player_utility_stddev_order_by": { "attacker_steam_id": [ - 2016 + 2015 ], "round": [ - 2016 + 2015 ], "__typename": [ - 75 + 74 ] }, "player_utility_stddev_pop_fields": { @@ -68464,18 +69310,18 @@ export default { 29 ], "__typename": [ - 75 + 74 ] }, "player_utility_stddev_pop_order_by": { "attacker_steam_id": [ - 2016 + 2015 ], "round": [ - 2016 + 2015 ], "__typename": [ - 75 + 74 ] }, "player_utility_stddev_samp_fields": { @@ -68486,95 +69332,95 @@ export default { 29 ], "__typename": [ - 75 + 74 ] }, "player_utility_stddev_samp_order_by": { "attacker_steam_id": [ - 2016 + 2015 ], "round": [ - 2016 + 2015 ], "__typename": [ - 75 + 74 ] }, "player_utility_stream_cursor_input": { "initial_value": [ - 2871 + 2870 ], "ordering": [ - 229 + 228 ], "__typename": [ - 75 + 74 ] }, "player_utility_stream_cursor_value_input": { "attacker_location_coordinates": [ - 75 + 74 ], "attacker_steam_id": [ - 174 + 173 ], "deleted_at": [ - 3467 + 3466 ], "match_id": [ - 3864 + 3863 ], "match_map_id": [ - 3864 + 3863 ], "round": [ 38 ], "time": [ - 3467 + 3466 ], "type": [ - 1034 + 1033 ], "__typename": [ - 75 + 74 ] }, "player_utility_sum_fields": { "attacker_steam_id": [ - 174 + 173 ], "round": [ 38 ], "__typename": [ - 75 + 74 ] }, "player_utility_sum_order_by": { "attacker_steam_id": [ - 2016 + 2015 ], "round": [ - 2016 + 2015 ], "__typename": [ - 75 + 74 ] }, "player_utility_update_column": {}, "player_utility_updates": { "_inc": [ - 2852 + 2851 ], "_set": [ - 2863 + 2862 ], "where": [ - 2850 + 2849 ], "__typename": [ - 75 + 74 ] }, "player_utility_var_pop_fields": { @@ -68585,18 +69431,18 @@ export default { 29 ], "__typename": [ - 75 + 74 ] }, "player_utility_var_pop_order_by": { "attacker_steam_id": [ - 2016 + 2015 ], "round": [ - 2016 + 2015 ], "__typename": [ - 75 + 74 ] }, "player_utility_var_samp_fields": { @@ -68607,18 +69453,18 @@ export default { 29 ], "__typename": [ - 75 + 74 ] }, "player_utility_var_samp_order_by": { "attacker_steam_id": [ - 2016 + 2015 ], "round": [ - 2016 + 2015 ], "__typename": [ - 75 + 74 ] }, "player_utility_variance_fields": { @@ -68629,18 +69475,18 @@ export default { 29 ], "__typename": [ - 75 + 74 ] }, "player_utility_variance_order_by": { "attacker_steam_id": [ - 2016 + 2015 ], "round": [ - 2016 + 2015 ], "__typename": [ - 75 + 74 ] }, "player_weapon_stats_v": { @@ -68657,7 +69503,7 @@ export default { 38 ], "match_id": [ - 3864 + 3863 ], "shots": [ 38 @@ -68666,60 +69512,60 @@ export default { 38 ], "steam_id": [ - 174 + 173 ], "weapon_class": [ - 75 + 74 ], "__typename": [ - 75 + 74 ] }, "player_weapon_stats_v_aggregate": { "aggregate": [ - 2886 + 2885 ], "nodes": [ - 2882 + 2881 ], "__typename": [ - 75 + 74 ] }, "player_weapon_stats_v_aggregate_bool_exp": { "count": [ - 2885 + 2884 ], "__typename": [ - 75 + 74 ] }, "player_weapon_stats_v_aggregate_bool_exp_count": { "arguments": [ - 2898 + 2897 ], "distinct": [ 3 ], "filter": [ - 2891 + 2890 ], "predicate": [ 39 ], "__typename": [ - 75 + 74 ] }, "player_weapon_stats_v_aggregate_fields": { "avg": [ - 2889 + 2888 ], "count": [ 38, { "columns": [ - 2898, + 2897, "[player_weapon_stats_v_select_column!]" ], "distinct": [ @@ -68727,6 +69573,44 @@ export default { ] } ], + "max": [ + 2892 + ], + "min": [ + 2894 + ], + "stddev": [ + 2898 + ], + "stddev_pop": [ + 2900 + ], + "stddev_samp": [ + 2902 + ], + "sum": [ + 2906 + ], + "var_pop": [ + 2908 + ], + "var_samp": [ + 2910 + ], + "variance": [ + 2912 + ], + "__typename": [ + 74 + ] + }, + "player_weapon_stats_v_aggregate_order_by": { + "avg": [ + 2889 + ], + "count": [ + 2015 + ], "max": [ 2893 ], @@ -68755,53 +69639,15 @@ export default { 2913 ], "__typename": [ - 75 - ] - }, - "player_weapon_stats_v_aggregate_order_by": { - "avg": [ - 2890 - ], - "count": [ - 2016 - ], - "max": [ - 2894 - ], - "min": [ - 2896 - ], - "stddev": [ - 2900 - ], - "stddev_pop": [ - 2902 - ], - "stddev_samp": [ - 2904 - ], - "sum": [ - 2908 - ], - "var_pop": [ - 2910 - ], - "var_samp": [ - 2912 - ], - "variance": [ - 2914 - ], - "__typename": [ - 75 + 74 ] }, "player_weapon_stats_v_arr_rel_insert_input": { "data": [ - 2892 + 2891 ], "__typename": [ - 75 + 74 ] }, "player_weapon_stats_v_avg_fields": { @@ -68827,44 +69673,44 @@ export default { 29 ], "__typename": [ - 75 + 74 ] }, "player_weapon_stats_v_avg_order_by": { "first_bullet_hits": [ - 2016 + 2015 ], "first_bullet_shots": [ - 2016 + 2015 ], "hits": [ - 2016 + 2015 ], "hits_spotted": [ - 2016 + 2015 ], "shots": [ - 2016 + 2015 ], "shots_spotted": [ - 2016 + 2015 ], "steam_id": [ - 2016 + 2015 ], "__typename": [ - 75 + 74 ] }, "player_weapon_stats_v_bool_exp": { "_and": [ - 2891 + 2890 ], "_not": [ - 2891 + 2890 ], "_or": [ - 2891 + 2890 ], "first_bullet_hits": [ 39 @@ -68879,7 +69725,7 @@ export default { 39 ], "match_id": [ - 3866 + 3865 ], "shots": [ 39 @@ -68888,13 +69734,13 @@ export default { 39 ], "steam_id": [ - 176 + 175 ], "weapon_class": [ - 77 + 76 ], "__typename": [ - 75 + 74 ] }, "player_weapon_stats_v_insert_input": { @@ -68911,7 +69757,7 @@ export default { 38 ], "match_id": [ - 3864 + 3863 ], "shots": [ 38 @@ -68920,13 +69766,13 @@ export default { 38 ], "steam_id": [ - 174 + 173 ], "weapon_class": [ - 75 + 74 ], "__typename": [ - 75 + 74 ] }, "player_weapon_stats_v_max_fields": { @@ -68943,7 +69789,7 @@ export default { 38 ], "match_id": [ - 3864 + 3863 ], "shots": [ 38 @@ -68952,45 +69798,45 @@ export default { 38 ], "steam_id": [ - 174 + 173 ], "weapon_class": [ - 75 + 74 ], "__typename": [ - 75 + 74 ] }, "player_weapon_stats_v_max_order_by": { "first_bullet_hits": [ - 2016 + 2015 ], "first_bullet_shots": [ - 2016 + 2015 ], "hits": [ - 2016 + 2015 ], "hits_spotted": [ - 2016 + 2015 ], "match_id": [ - 2016 + 2015 ], "shots": [ - 2016 + 2015 ], "shots_spotted": [ - 2016 + 2015 ], "steam_id": [ - 2016 + 2015 ], "weapon_class": [ - 2016 + 2015 ], "__typename": [ - 75 + 74 ] }, "player_weapon_stats_v_min_fields": { @@ -69007,7 +69853,7 @@ export default { 38 ], "match_id": [ - 3864 + 3863 ], "shots": [ 38 @@ -69016,77 +69862,77 @@ export default { 38 ], "steam_id": [ - 174 + 173 ], "weapon_class": [ - 75 + 74 ], "__typename": [ - 75 + 74 ] }, "player_weapon_stats_v_min_order_by": { "first_bullet_hits": [ - 2016 + 2015 ], "first_bullet_shots": [ - 2016 + 2015 ], "hits": [ - 2016 + 2015 ], "hits_spotted": [ - 2016 + 2015 ], "match_id": [ - 2016 + 2015 ], "shots": [ - 2016 + 2015 ], "shots_spotted": [ - 2016 + 2015 ], "steam_id": [ - 2016 + 2015 ], "weapon_class": [ - 2016 + 2015 ], "__typename": [ - 75 + 74 ] }, "player_weapon_stats_v_order_by": { "first_bullet_hits": [ - 2016 + 2015 ], "first_bullet_shots": [ - 2016 + 2015 ], "hits": [ - 2016 + 2015 ], "hits_spotted": [ - 2016 + 2015 ], "match_id": [ - 2016 + 2015 ], "shots": [ - 2016 + 2015 ], "shots_spotted": [ - 2016 + 2015 ], "steam_id": [ - 2016 + 2015 ], "weapon_class": [ - 2016 + 2015 ], "__typename": [ - 75 + 74 ] }, "player_weapon_stats_v_select_column": {}, @@ -69113,33 +69959,33 @@ export default { 29 ], "__typename": [ - 75 + 74 ] }, "player_weapon_stats_v_stddev_order_by": { "first_bullet_hits": [ - 2016 + 2015 ], "first_bullet_shots": [ - 2016 + 2015 ], "hits": [ - 2016 + 2015 ], "hits_spotted": [ - 2016 + 2015 ], "shots": [ - 2016 + 2015 ], "shots_spotted": [ - 2016 + 2015 ], "steam_id": [ - 2016 + 2015 ], "__typename": [ - 75 + 74 ] }, "player_weapon_stats_v_stddev_pop_fields": { @@ -69165,33 +70011,33 @@ export default { 29 ], "__typename": [ - 75 + 74 ] }, "player_weapon_stats_v_stddev_pop_order_by": { "first_bullet_hits": [ - 2016 + 2015 ], "first_bullet_shots": [ - 2016 + 2015 ], "hits": [ - 2016 + 2015 ], "hits_spotted": [ - 2016 + 2015 ], "shots": [ - 2016 + 2015 ], "shots_spotted": [ - 2016 + 2015 ], "steam_id": [ - 2016 + 2015 ], "__typename": [ - 75 + 74 ] }, "player_weapon_stats_v_stddev_samp_fields": { @@ -69217,44 +70063,44 @@ export default { 29 ], "__typename": [ - 75 + 74 ] }, "player_weapon_stats_v_stddev_samp_order_by": { "first_bullet_hits": [ - 2016 + 2015 ], "first_bullet_shots": [ - 2016 + 2015 ], "hits": [ - 2016 + 2015 ], "hits_spotted": [ - 2016 + 2015 ], "shots": [ - 2016 + 2015 ], "shots_spotted": [ - 2016 + 2015 ], "steam_id": [ - 2016 + 2015 ], "__typename": [ - 75 + 74 ] }, "player_weapon_stats_v_stream_cursor_input": { "initial_value": [ - 2906 + 2905 ], "ordering": [ - 229 + 228 ], "__typename": [ - 75 + 74 ] }, "player_weapon_stats_v_stream_cursor_value_input": { @@ -69271,7 +70117,7 @@ export default { 38 ], "match_id": [ - 3864 + 3863 ], "shots": [ 38 @@ -69280,13 +70126,13 @@ export default { 38 ], "steam_id": [ - 174 + 173 ], "weapon_class": [ - 75 + 74 ], "__typename": [ - 75 + 74 ] }, "player_weapon_stats_v_sum_fields": { @@ -69309,36 +70155,36 @@ export default { 38 ], "steam_id": [ - 174 + 173 ], "__typename": [ - 75 + 74 ] }, "player_weapon_stats_v_sum_order_by": { "first_bullet_hits": [ - 2016 + 2015 ], "first_bullet_shots": [ - 2016 + 2015 ], "hits": [ - 2016 + 2015 ], "hits_spotted": [ - 2016 + 2015 ], "shots": [ - 2016 + 2015 ], "shots_spotted": [ - 2016 + 2015 ], "steam_id": [ - 2016 + 2015 ], "__typename": [ - 75 + 74 ] }, "player_weapon_stats_v_var_pop_fields": { @@ -69364,33 +70210,33 @@ export default { 29 ], "__typename": [ - 75 + 74 ] }, "player_weapon_stats_v_var_pop_order_by": { "first_bullet_hits": [ - 2016 + 2015 ], "first_bullet_shots": [ - 2016 + 2015 ], "hits": [ - 2016 + 2015 ], "hits_spotted": [ - 2016 + 2015 ], "shots": [ - 2016 + 2015 ], "shots_spotted": [ - 2016 + 2015 ], "steam_id": [ - 2016 + 2015 ], "__typename": [ - 75 + 74 ] }, "player_weapon_stats_v_var_samp_fields": { @@ -69416,33 +70262,33 @@ export default { 29 ], "__typename": [ - 75 + 74 ] }, "player_weapon_stats_v_var_samp_order_by": { "first_bullet_hits": [ - 2016 + 2015 ], "first_bullet_shots": [ - 2016 + 2015 ], "hits": [ - 2016 + 2015 ], "hits_spotted": [ - 2016 + 2015 ], "shots": [ - 2016 + 2015 ], "shots_spotted": [ - 2016 + 2015 ], "steam_id": [ - 2016 + 2015 ], "__typename": [ - 75 + 74 ] }, "player_weapon_stats_v_variance_fields": { @@ -69468,41 +70314,41 @@ export default { 29 ], "__typename": [ - 75 + 74 ] }, "player_weapon_stats_v_variance_order_by": { "first_bullet_hits": [ - 2016 + 2015 ], "first_bullet_shots": [ - 2016 + 2015 ], "hits": [ - 2016 + 2015 ], "hits_spotted": [ - 2016 + 2015 ], "shots": [ - 2016 + 2015 ], "shots_spotted": [ - 2016 + 2015 ], "steam_id": [ - 2016 + 2015 ], "__typename": [ - 75 + 74 ] }, "players": { "abandoned_matches": [ - 106, + 105, { "distinct_on": [ - 127, + 126, "[abandoned_matches_select_column!]" ], "limit": [ @@ -69512,19 +70358,19 @@ export default { 38 ], "order_by": [ - 125, + 124, "[abandoned_matches_order_by!]" ], "where": [ - 115 + 114 ] } ], "abandoned_matches_aggregate": [ - 107, + 106, { "distinct_on": [ - 127, + 126, "[abandoned_matches_select_column!]" ], "limit": [ @@ -69534,19 +70380,19 @@ export default { 38 ], "order_by": [ - 125, + 124, "[abandoned_matches_order_by!]" ], "where": [ - 115 + 114 ] } ], "aim_weapon_stats": [ - 2113, + 2112, { "distinct_on": [ - 2134, + 2133, "[player_aim_weapon_stats_select_column!]" ], "limit": [ @@ -69556,19 +70402,19 @@ export default { 38 ], "order_by": [ - 2132, + 2131, "[player_aim_weapon_stats_order_by!]" ], "where": [ - 2122 + 2121 ] } ], "aim_weapon_stats_aggregate": [ - 2114, + 2113, { "distinct_on": [ - 2134, + 2133, "[player_aim_weapon_stats_select_column!]" ], "limit": [ @@ -69578,19 +70424,19 @@ export default { 38 ], "order_by": [ - 2132, + 2131, "[player_aim_weapon_stats_order_by!]" ], "where": [ - 2122 + 2121 ] } ], "assists": [ - 2154, + 2153, { "distinct_on": [ - 2177, + 2176, "[player_assists_select_column!]" ], "limit": [ @@ -69600,19 +70446,19 @@ export default { 38 ], "order_by": [ - 2175, + 2174, "[player_assists_order_by!]" ], "where": [ - 2165 + 2164 ] } ], "assists_aggregate": [ - 2155, + 2154, { "distinct_on": [ - 2177, + 2176, "[player_assists_select_column!]" ], "limit": [ @@ -69622,19 +70468,19 @@ export default { 38 ], "order_by": [ - 2175, + 2174, "[player_assists_order_by!]" ], "where": [ - 2165 + 2164 ] } ], "assited_by_players": [ - 2154, + 2153, { "distinct_on": [ - 2177, + 2176, "[player_assists_select_column!]" ], "limit": [ @@ -69644,19 +70490,19 @@ export default { 38 ], "order_by": [ - 2175, + 2174, "[player_assists_order_by!]" ], "where": [ - 2165 + 2164 ] } ], "assited_by_players_aggregate": [ - 2155, + 2154, { "distinct_on": [ - 2177, + 2176, "[player_assists_select_column!]" ], "limit": [ @@ -69666,22 +70512,22 @@ export default { 38 ], "order_by": [ - 2175, + 2174, "[player_assists_order_by!]" ], "where": [ - 2165 + 2164 ] } ], "avatar_url": [ - 75 + 74 ], "coach_lineups": [ - 1511, + 1510, { "distinct_on": [ - 1533, + 1532, "[match_lineups_select_column!]" ], "limit": [ @@ -69691,19 +70537,19 @@ export default { 38 ], "order_by": [ - 1531, + 1530, "[match_lineups_order_by!]" ], "where": [ - 1520 + 1519 ] } ], "coach_lineups_aggregate": [ - 1512, + 1511, { "distinct_on": [ - 1533, + 1532, "[match_lineups_select_column!]" ], "limit": [ @@ -69713,31 +70559,31 @@ export default { 38 ], "order_by": [ - 1531, + 1530, "[match_lineups_order_by!]" ], "where": [ - 1520 + 1519 ] } ], "country": [ - 75 + 74 ], "created_at": [ - 3467 + 3466 ], "current_lobby_id": [ - 3864 + 3863 ], "custom_avatar_url": [ - 75 + 74 ], "damage_dealt": [ - 2217, + 2216, { "distinct_on": [ - 2238, + 2237, "[player_damages_select_column!]" ], "limit": [ @@ -69747,19 +70593,19 @@ export default { 38 ], "order_by": [ - 2236, + 2235, "[player_damages_order_by!]" ], "where": [ - 2226 + 2225 ] } ], "damage_dealt_aggregate": [ - 2218, + 2217, { "distinct_on": [ - 2238, + 2237, "[player_damages_select_column!]" ], "limit": [ @@ -69769,19 +70615,19 @@ export default { 38 ], "order_by": [ - 2236, + 2235, "[player_damages_order_by!]" ], "where": [ - 2226 + 2225 ] } ], "damage_taken": [ - 2217, + 2216, { "distinct_on": [ - 2238, + 2237, "[player_damages_select_column!]" ], "limit": [ @@ -69791,19 +70637,19 @@ export default { 38 ], "order_by": [ - 2236, + 2235, "[player_damages_order_by!]" ], "where": [ - 2226 + 2225 ] } ], "damage_taken_aggregate": [ - 2218, + 2217, { "distinct_on": [ - 2238, + 2237, "[player_damages_select_column!]" ], "limit": [ @@ -69813,11 +70659,11 @@ export default { 38 ], "order_by": [ - 2236, + 2235, "[player_damages_order_by!]" ], "where": [ - 2226 + 2225 ] } ], @@ -69825,10 +70671,10 @@ export default { 38 ], "deaths": [ - 2371, + 2370, { "distinct_on": [ - 2435, + 2434, "[player_kills_select_column!]" ], "limit": [ @@ -69838,19 +70684,19 @@ export default { 38 ], "order_by": [ - 2433, + 2432, "[player_kills_order_by!]" ], "where": [ - 2382 + 2381 ] } ], "deaths_aggregate": [ - 2372, + 2371, { "distinct_on": [ - 2435, + 2434, "[player_kills_select_column!]" ], "limit": [ @@ -69860,22 +70706,22 @@ export default { 38 ], "order_by": [ - 2433, + 2432, "[player_kills_order_by!]" ], "where": [ - 2382 + 2381 ] } ], "discord_id": [ - 75 + 74 ], "draft_game_players": [ - 302, + 301, { "distinct_on": [ - 325, + 324, "[draft_game_players_select_column!]" ], "limit": [ @@ -69885,19 +70731,19 @@ export default { 38 ], "order_by": [ - 323, + 322, "[draft_game_players_order_by!]" ], "where": [ - 313 + 312 ] } ], "draft_game_players_aggregate": [ - 303, + 302, { "distinct_on": [ - 325, + 324, "[draft_game_players_select_column!]" ], "limit": [ @@ -69907,27 +70753,27 @@ export default { 38 ], "order_by": [ - 323, + 322, "[draft_game_players_order_by!]" ], "where": [ - 313 + 312 ] } ], "elo": [ - 1240, + 1239, { "path": [ - 75 + 74 ] } ], "elo_history": [ - 4106, + 4105, { "distinct_on": [ - 4132, + 4131, "[v_player_elo_select_column!]" ], "limit": [ @@ -69937,19 +70783,19 @@ export default { 38 ], "order_by": [ - 4131, + 4130, "[v_player_elo_order_by!]" ], "where": [ - 4125 + 4124 ] } ], "elo_history_aggregate": [ - 4107, + 4106, { "distinct_on": [ - 4132, + 4131, "[v_player_elo_select_column!]" ], "limit": [ @@ -69959,11 +70805,11 @@ export default { 38 ], "order_by": [ - 4131, + 4130, "[v_player_elo_order_by!]" ], "where": [ - 4125 + 4124 ] } ], @@ -69971,16 +70817,16 @@ export default { 38 ], "faceit_nickname": [ - 75 + 74 ], "faceit_player_id": [ - 75 + 74 ], "faceit_rank_history": [ - 2285, + 2284, { "distinct_on": [ - 2306, + 2305, "[player_faceit_rank_history_select_column!]" ], "limit": [ @@ -69990,19 +70836,19 @@ export default { 38 ], "order_by": [ - 2304, + 2303, "[player_faceit_rank_history_order_by!]" ], "where": [ - 2294 + 2293 ] } ], "faceit_rank_history_aggregate": [ - 2286, + 2285, { "distinct_on": [ - 2306, + 2305, "[player_faceit_rank_history_select_column!]" ], "limit": [ @@ -70012,11 +70858,11 @@ export default { 38 ], "order_by": [ - 2304, + 2303, "[player_faceit_rank_history_order_by!]" ], "where": [ - 2294 + 2293 ] } ], @@ -70024,16 +70870,16 @@ export default { 38 ], "faceit_updated_at": [ - 3467 + 3466 ], "faceit_url": [ - 75 + 74 ], "flashed_by_players": [ - 2326, + 2325, { "distinct_on": [ - 2349, + 2348, "[player_flashes_select_column!]" ], "limit": [ @@ -70043,19 +70889,19 @@ export default { 38 ], "order_by": [ - 2347, + 2346, "[player_flashes_order_by!]" ], "where": [ - 2337 + 2336 ] } ], "flashed_by_players_aggregate": [ - 2327, + 2326, { "distinct_on": [ - 2349, + 2348, "[player_flashes_select_column!]" ], "limit": [ @@ -70065,19 +70911,19 @@ export default { 38 ], "order_by": [ - 2347, + 2346, "[player_flashes_order_by!]" ], "where": [ - 2337 + 2336 ] } ], "flashed_players": [ - 2326, + 2325, { "distinct_on": [ - 2349, + 2348, "[player_flashes_select_column!]" ], "limit": [ @@ -70087,19 +70933,19 @@ export default { 38 ], "order_by": [ - 2347, + 2346, "[player_flashes_order_by!]" ], "where": [ - 2337 + 2336 ] } ], "flashed_players_aggregate": [ - 2327, + 2326, { "distinct_on": [ - 2349, + 2348, "[player_flashes_select_column!]" ], "limit": [ @@ -70109,19 +70955,19 @@ export default { 38 ], "order_by": [ - 2347, + 2346, "[player_flashes_order_by!]" ], "where": [ - 2337 + 2336 ] } ], "friends": [ - 1891, + 1890, { "distinct_on": [ - 1916, + 1915, "[my_friends_select_column!]" ], "limit": [ @@ -70131,19 +70977,19 @@ export default { 38 ], "order_by": [ - 1914, + 1913, "[my_friends_order_by!]" ], "where": [ - 1903 + 1902 ] } ], "friends_aggregate": [ - 1892, + 1891, { "distinct_on": [ - 1916, + 1915, "[my_friends_select_column!]" ], "limit": [ @@ -70153,11 +70999,11 @@ export default { 38 ], "order_by": [ - 1914, + 1913, "[my_friends_order_by!]" ], "where": [ - 1903 + 1902 ] } ], @@ -70165,10 +71011,10 @@ export default { 38 ], "invited_players": [ - 3141, + 3140, { "distinct_on": [ - 3162, + 3161, "[team_invites_select_column!]" ], "limit": [ @@ -70178,19 +71024,19 @@ export default { 38 ], "order_by": [ - 3160, + 3159, "[team_invites_order_by!]" ], "where": [ - 3150 + 3149 ] } ], "invited_players_aggregate": [ - 3142, + 3141, { "distinct_on": [ - 3162, + 3161, "[team_invites_select_column!]" ], "limit": [ @@ -70200,11 +71046,11 @@ export default { 38 ], "order_by": [ - 3160, + 3159, "[team_invites_order_by!]" ], "where": [ - 3150 + 3149 ] } ], @@ -70227,10 +71073,10 @@ export default { 3 ], "kills": [ - 2371, + 2370, { "distinct_on": [ - 2435, + 2434, "[player_kills_select_column!]" ], "limit": [ @@ -70240,19 +71086,19 @@ export default { 38 ], "order_by": [ - 2433, + 2432, "[player_kills_order_by!]" ], "where": [ - 2382 + 2381 ] } ], "kills_aggregate": [ - 2372, + 2371, { "distinct_on": [ - 2435, + 2434, "[player_kills_select_column!]" ], "limit": [ @@ -70262,19 +71108,19 @@ export default { 38 ], "order_by": [ - 2433, + 2432, "[player_kills_order_by!]" ], "where": [ - 2382 + 2381 ] } ], "kills_by_weapons": [ - 2383, + 2382, { "distinct_on": [ - 2404, + 2403, "[player_kills_by_weapon_select_column!]" ], "limit": [ @@ -70284,19 +71130,19 @@ export default { 38 ], "order_by": [ - 2402, + 2401, "[player_kills_by_weapon_order_by!]" ], "where": [ - 2392 + 2391 ] } ], "kills_by_weapons_aggregate": [ - 2384, + 2383, { "distinct_on": [ - 2404, + 2403, "[player_kills_by_weapon_select_column!]" ], "limit": [ @@ -70306,28 +71152,28 @@ export default { 38 ], "order_by": [ - 2402, + 2401, "[player_kills_by_weapon_order_by!]" ], "where": [ - 2392 + 2391 ] } ], "language": [ - 75 + 74 ], "last_read_news_at": [ - 3467 + 3466 ], "last_sign_in_at": [ - 3467 + 3466 ], "lobby_players": [ - 1285, + 1284, { "distinct_on": [ - 1308, + 1307, "[lobby_players_select_column!]" ], "limit": [ @@ -70337,19 +71183,19 @@ export default { 38 ], "order_by": [ - 1306, + 1305, "[lobby_players_order_by!]" ], "where": [ - 1296 + 1295 ] } ], "lobby_players_aggregate": [ - 1286, + 1285, { "distinct_on": [ - 1308, + 1307, "[lobby_players_select_column!]" ], "limit": [ @@ -70359,11 +71205,11 @@ export default { 38 ], "order_by": [ - 1306, + 1305, "[lobby_players_order_by!]" ], "where": [ - 1296 + 1295 ] } ], @@ -70380,10 +71226,10 @@ export default { 38 ], "match_map_hltv": [ - 4211, + 4210, { "distinct_on": [ - 4229, + 4228, "[v_player_match_map_hltv_select_column!]" ], "limit": [ @@ -70393,19 +71239,19 @@ export default { 38 ], "order_by": [ - 4228, + 4227, "[v_player_match_map_hltv_order_by!]" ], "where": [ - 4220 + 4219 ] } ], "match_map_hltv_aggregate": [ - 4212, + 4211, { "distinct_on": [ - 4229, + 4228, "[v_player_match_map_hltv_select_column!]" ], "limit": [ @@ -70415,19 +71261,19 @@ export default { 38 ], "order_by": [ - 4228, + 4227, "[v_player_match_map_hltv_order_by!]" ], "where": [ - 4220 + 4219 ] } ], "match_map_stats": [ - 2480, + 2479, { "distinct_on": [ - 2501, + 2500, "[player_match_map_stats_select_column!]" ], "limit": [ @@ -70437,19 +71283,19 @@ export default { 38 ], "order_by": [ - 2499, + 2498, "[player_match_map_stats_order_by!]" ], "where": [ - 2489 + 2488 ] } ], "match_map_stats_aggregate": [ - 2481, + 2480, { "distinct_on": [ - 2501, + 2500, "[player_match_map_stats_select_column!]" ], "limit": [ @@ -70459,19 +71305,19 @@ export default { 38 ], "order_by": [ - 2499, + 2498, "[player_match_map_stats_order_by!]" ], "where": [ - 2489 + 2488 ] } ], "match_stats": [ - 2539, + 2538, { "distinct_on": [ - 2555, + 2554, "[player_match_stats_v_select_column!]" ], "limit": [ @@ -70481,19 +71327,19 @@ export default { 38 ], "order_by": [ - 2554, + 2553, "[player_match_stats_v_order_by!]" ], "where": [ - 2548 + 2547 ] } ], "match_stats_aggregate": [ - 2540, + 2539, { "distinct_on": [ - 2555, + 2554, "[player_match_stats_v_select_column!]" ], "limit": [ @@ -70503,19 +71349,19 @@ export default { 38 ], "order_by": [ - 2554, + 2553, "[player_match_stats_v_order_by!]" ], "where": [ - 2548 + 2547 ] } ], "matches": [ - 1831, + 1830, { "distinct_on": [ - 1853, + 1852, "[matches_select_column!]" ], "limit": [ @@ -70525,22 +71371,22 @@ export default { 38 ], "order_by": [ - 1851, + 1850, "[matches_order_by!]" ], "where": [ - 1840 + 1839 ] } ], "matchmaking_cooldown": [ - 3467 + 3466 ], "multi_kills": [ - 4302, + 4301, { "distinct_on": [ - 4318, + 4317, "[v_player_multi_kills_select_column!]" ], "limit": [ @@ -70550,19 +71396,19 @@ export default { 38 ], "order_by": [ - 4317, + 4316, "[v_player_multi_kills_order_by!]" ], "where": [ - 4311 + 4310 ] } ], "multi_kills_aggregate": [ - 4303, + 4302, { "distinct_on": [ - 4318, + 4317, "[v_player_multi_kills_select_column!]" ], "limit": [ @@ -70572,25 +71418,25 @@ export default { 38 ], "order_by": [ - 4317, + 4316, "[v_player_multi_kills_order_by!]" ], "where": [ - 4311 + 4310 ] } ], "name": [ - 75 + 74 ], "name_registered": [ 3 ], "notifications": [ - 1964, + 1963, { "distinct_on": [ - 1992, + 1991, "[notifications_select_column!]" ], "limit": [ @@ -70600,19 +71446,19 @@ export default { 38 ], "order_by": [ - 1989, + 1988, "[notifications_order_by!]" ], "where": [ - 1976 + 1975 ] } ], "notifications_aggregate": [ - 1965, + 1964, { "distinct_on": [ - 1992, + 1991, "[notifications_select_column!]" ], "limit": [ @@ -70622,19 +71468,19 @@ export default { 38 ], "order_by": [ - 1989, + 1988, "[notifications_order_by!]" ], "where": [ - 1976 + 1975 ] } ], "objectives": [ - 2572, + 2571, { "distinct_on": [ - 2593, + 2592, "[player_objectives_select_column!]" ], "limit": [ @@ -70644,19 +71490,19 @@ export default { 38 ], "order_by": [ - 2591, + 2590, "[player_objectives_order_by!]" ], "where": [ - 2581 + 2580 ] } ], "objectives_aggregate": [ - 2573, + 2572, { "distinct_on": [ - 2593, + 2592, "[player_objectives_select_column!]" ], "limit": [ @@ -70666,19 +71512,19 @@ export default { 38 ], "order_by": [ - 2591, + 2590, "[player_objectives_order_by!]" ], "where": [ - 2581 + 2580 ] } ], "owned_teams": [ - 3424, + 3423, { "distinct_on": [ - 3446, + 3445, "[teams_select_column!]" ], "limit": [ @@ -70688,19 +71534,19 @@ export default { 38 ], "order_by": [ - 3444, + 3443, "[teams_order_by!]" ], "where": [ - 3433 + 3432 ] } ], "owned_teams_aggregate": [ - 3425, + 3424, { "distinct_on": [ - 3446, + 3445, "[teams_select_column!]" ], "limit": [ @@ -70710,27 +71556,27 @@ export default { 38 ], "order_by": [ - 3444, + 3443, "[teams_order_by!]" ], "where": [ - 3433 + 3432 ] } ], "peak_elo": [ - 1240, + 1239, { "path": [ - 75 + 74 ] } ], "pending_match_imports": [ - 2017, + 2016, { "distinct_on": [ - 2038, + 2037, "[pending_match_import_players_select_column!]" ], "limit": [ @@ -70740,19 +71586,19 @@ export default { 38 ], "order_by": [ - 2036, + 2035, "[pending_match_import_players_order_by!]" ], "where": [ - 2026 + 2025 ] } ], "pending_match_imports_aggregate": [ - 2018, + 2017, { "distinct_on": [ - 2038, + 2037, "[pending_match_import_players_select_column!]" ], "limit": [ @@ -70762,19 +71608,19 @@ export default { 38 ], "order_by": [ - 2036, + 2035, "[pending_match_import_players_order_by!]" ], "where": [ - 2026 + 2025 ] } ], "player_lineup": [ - 1466, + 1465, { "distinct_on": [ - 1489, + 1488, "[match_lineup_players_select_column!]" ], "limit": [ @@ -70784,19 +71630,19 @@ export default { 38 ], "order_by": [ - 1487, + 1486, "[match_lineup_players_order_by!]" ], "where": [ - 1477 + 1476 ] } ], "player_lineup_aggregate": [ - 1467, + 1466, { "distinct_on": [ - 1489, + 1488, "[match_lineup_players_select_column!]" ], "limit": [ @@ -70806,19 +71652,19 @@ export default { 38 ], "order_by": [ - 1487, + 1486, "[match_lineup_players_order_by!]" ], "where": [ - 1477 + 1476 ] } ], "player_unused_utilities": [ - 2800, + 2799, { "distinct_on": [ - 2821, + 2820, "[player_unused_utility_select_column!]" ], "limit": [ @@ -70828,19 +71674,19 @@ export default { 38 ], "order_by": [ - 2819, + 2818, "[player_unused_utility_order_by!]" ], "where": [ - 2809 + 2808 ] } ], "player_unused_utilities_aggregate": [ - 2801, + 2800, { "distinct_on": [ - 2821, + 2820, "[player_unused_utility_select_column!]" ], "limit": [ @@ -70850,11 +71696,11 @@ export default { 38 ], "order_by": [ - 2819, + 2818, "[player_unused_utility_order_by!]" ], "where": [ - 2809 + 2808 ] } ], @@ -70862,10 +71708,10 @@ export default { 38 ], "premier_rank_history": [ - 2631, + 2630, { "distinct_on": [ - 2652, + 2651, "[player_premier_rank_history_select_column!]" ], "limit": [ @@ -70875,19 +71721,19 @@ export default { 38 ], "order_by": [ - 2650, + 2649, "[player_premier_rank_history_order_by!]" ], "where": [ - 2640 + 2639 ] } ], "premier_rank_history_aggregate": [ - 2632, + 2631, { "distinct_on": [ - 2652, + 2651, "[player_premier_rank_history_select_column!]" ], "limit": [ @@ -70897,31 +71743,31 @@ export default { 38 ], "order_by": [ - 2650, + 2649, "[player_premier_rank_history_order_by!]" ], "where": [ - 2640 + 2639 ] } ], "premier_rank_updated_at": [ - 3467 + 3466 ], "profile_url": [ - 75 + 74 ], "role": [ - 790 + 789 ], "roster_image_url": [ - 75 + 74 ], "sanctions": [ - 2672, + 2671, { "distinct_on": [ - 2693, + 2692, "[player_sanctions_select_column!]" ], "limit": [ @@ -70931,19 +71777,19 @@ export default { 38 ], "order_by": [ - 2691, + 2690, "[player_sanctions_order_by!]" ], "where": [ - 2681 + 2680 ] } ], "sanctions_aggregate": [ - 2673, + 2672, { "distinct_on": [ - 2693, + 2692, "[player_sanctions_select_column!]" ], "limit": [ @@ -70953,11 +71799,11 @@ export default { 38 ], "order_by": [ - 2691, + 2690, "[player_sanctions_order_by!]" ], "where": [ - 2681 + 2680 ] } ], @@ -70965,19 +71811,19 @@ export default { 3 ], "stats": [ - 2713 + 2712 ], "steam_bans_checked_at": [ - 3467 + 3466 ], "steam_id": [ - 174 + 173 ], "team_invites": [ - 3141, + 3140, { "distinct_on": [ - 3162, + 3161, "[team_invites_select_column!]" ], "limit": [ @@ -70987,19 +71833,19 @@ export default { 38 ], "order_by": [ - 3160, + 3159, "[team_invites_order_by!]" ], "where": [ - 3150 + 3149 ] } ], "team_invites_aggregate": [ - 3142, + 3141, { "distinct_on": [ - 3162, + 3161, "[team_invites_select_column!]" ], "limit": [ @@ -71009,19 +71855,19 @@ export default { 38 ], "order_by": [ - 3160, + 3159, "[team_invites_order_by!]" ], "where": [ - 3150 + 3149 ] } ], "team_members": [ - 3182, + 3181, { "distinct_on": [ - 3205, + 3204, "[team_roster_select_column!]" ], "limit": [ @@ -71031,19 +71877,19 @@ export default { 38 ], "order_by": [ - 3203, + 3202, "[team_roster_order_by!]" ], "where": [ - 3193 + 3192 ] } ], "team_members_aggregate": [ - 3183, + 3182, { "distinct_on": [ - 3205, + 3204, "[team_roster_select_column!]" ], "limit": [ @@ -71053,19 +71899,19 @@ export default { 38 ], "order_by": [ - 3203, + 3202, "[team_roster_order_by!]" ], "where": [ - 3193 + 3192 ] } ], "teams": [ - 3424, + 3423, { "distinct_on": [ - 3446, + 3445, "[teams_select_column!]" ], "limit": [ @@ -71075,11 +71921,11 @@ export default { 38 ], "order_by": [ - 3444, + 3443, "[teams_order_by!]" ], "where": [ - 3433 + 3432 ] } ], @@ -71087,10 +71933,10 @@ export default { 38 ], "tournament_organizers": [ - 3515, + 3514, { "distinct_on": [ - 3536, + 3535, "[tournament_organizers_select_column!]" ], "limit": [ @@ -71100,19 +71946,19 @@ export default { 38 ], "order_by": [ - 3534, + 3533, "[tournament_organizers_order_by!]" ], "where": [ - 3524 + 3523 ] } ], "tournament_organizers_aggregate": [ - 3516, + 3515, { "distinct_on": [ - 3536, + 3535, "[tournament_organizers_select_column!]" ], "limit": [ @@ -71122,19 +71968,19 @@ export default { 38 ], "order_by": [ - 3534, + 3533, "[tournament_organizers_order_by!]" ], "where": [ - 3524 + 3523 ] } ], "tournament_rosters": [ - 3648, + 3647, { "distinct_on": [ - 3669, + 3668, "[tournament_team_roster_select_column!]" ], "limit": [ @@ -71144,19 +71990,19 @@ export default { 38 ], "order_by": [ - 3667, + 3666, "[tournament_team_roster_order_by!]" ], "where": [ - 3657 + 3656 ] } ], "tournament_rosters_aggregate": [ - 3649, + 3648, { "distinct_on": [ - 3669, + 3668, "[tournament_team_roster_select_column!]" ], "limit": [ @@ -71166,19 +72012,19 @@ export default { 38 ], "order_by": [ - 3667, + 3666, "[tournament_team_roster_order_by!]" ], "where": [ - 3657 + 3656 ] } ], "tournament_trophies": [ - 3731, + 3730, { "distinct_on": [ - 3754, + 3753, "[tournament_trophies_select_column!]" ], "limit": [ @@ -71188,19 +72034,19 @@ export default { 38 ], "order_by": [ - 3752, + 3751, "[tournament_trophies_order_by!]" ], "where": [ - 3742 + 3741 ] } ], "tournament_trophies_aggregate": [ - 3732, + 3731, { "distinct_on": [ - 3754, + 3753, "[tournament_trophies_select_column!]" ], "limit": [ @@ -71210,19 +72056,19 @@ export default { 38 ], "order_by": [ - 3752, + 3751, "[tournament_trophies_order_by!]" ], "where": [ - 3742 + 3741 ] } ], "tournaments": [ - 3818, + 3817, { "distinct_on": [ - 3842, + 3841, "[tournaments_select_column!]" ], "limit": [ @@ -71232,19 +72078,19 @@ export default { 38 ], "order_by": [ - 3840, + 3839, "[tournaments_order_by!]" ], "where": [ - 3829 + 3828 ] } ], "tournaments_aggregate": [ - 3819, + 3818, { "distinct_on": [ - 3842, + 3841, "[tournaments_select_column!]" ], "limit": [ @@ -71254,19 +72100,19 @@ export default { 38 ], "order_by": [ - 3840, + 3839, "[tournaments_order_by!]" ], "where": [ - 3829 + 3828 ] } ], "utility_thrown": [ - 2841, + 2840, { "distinct_on": [ - 2862, + 2861, "[player_utility_select_column!]" ], "limit": [ @@ -71276,19 +72122,19 @@ export default { 38 ], "order_by": [ - 2860, + 2859, "[player_utility_order_by!]" ], "where": [ - 2850 + 2849 ] } ], "utility_thrown_aggregate": [ - 2842, + 2841, { "distinct_on": [ - 2862, + 2861, "[player_utility_select_column!]" ], "limit": [ @@ -71298,11 +72144,11 @@ export default { 38 ], "order_by": [ - 2860, + 2859, "[player_utility_order_by!]" ], "where": [ - 2850 + 2849 ] } ], @@ -71313,10 +72159,10 @@ export default { 3 ], "weapon_stats": [ - 2882, + 2881, { "distinct_on": [ - 2898, + 2897, "[player_weapon_stats_v_select_column!]" ], "limit": [ @@ -71326,19 +72172,19 @@ export default { 38 ], "order_by": [ - 2897, + 2896, "[player_weapon_stats_v_order_by!]" ], "where": [ - 2891 + 2890 ] } ], "weapon_stats_aggregate": [ - 2883, + 2882, { "distinct_on": [ - 2898, + 2897, "[player_weapon_stats_v_select_column!]" ], "limit": [ @@ -71348,11 +72194,11 @@ export default { 38 ], "order_by": [ - 2897, + 2896, "[player_weapon_stats_v_order_by!]" ], "where": [ - 2891 + 2890 ] } ], @@ -71369,29 +72215,29 @@ export default { 38 ], "__typename": [ - 75 + 74 ] }, "players_aggregate": { "aggregate": [ - 2917 + 2916 ], "nodes": [ - 2915 + 2914 ], "__typename": [ - 75 + 74 ] }, "players_aggregate_fields": { "avg": [ - 2918 + 2917 ], "count": [ 38, { "columns": [ - 2930, + 2929, "[players_select_column!]" ], "distinct": [ @@ -71400,34 +72246,34 @@ export default { } ], "max": [ - 2923 + 2922 ], "min": [ - 2924 + 2923 ], "stddev": [ - 2932 + 2931 ], "stddev_pop": [ - 2933 + 2932 ], "stddev_samp": [ - 2934 + 2933 ], "sum": [ - 2937 + 2936 ], "var_pop": [ - 2940 + 2939 ], "var_samp": [ - 2941 + 2940 ], "variance": [ - 2942 + 2941 ], "__typename": [ - 75 + 74 ] }, "players_avg_fields": { @@ -71480,153 +72326,153 @@ export default { 38 ], "__typename": [ - 75 + 74 ] }, "players_bool_exp": { "_and": [ - 2919 + 2918 ], "_not": [ - 2919 + 2918 ], "_or": [ - 2919 + 2918 ], "abandoned_matches": [ - 115 + 114 ], "abandoned_matches_aggregate": [ - 108 + 107 ], "aim_weapon_stats": [ - 2122 + 2121 ], "aim_weapon_stats_aggregate": [ - 2115 + 2114 ], "assists": [ - 2165 + 2164 ], "assists_aggregate": [ - 2156 + 2155 ], "assited_by_players": [ - 2165 + 2164 ], "assited_by_players_aggregate": [ - 2156 + 2155 ], "avatar_url": [ - 77 + 76 ], "coach_lineups": [ - 1520 + 1519 ], "coach_lineups_aggregate": [ - 1513 + 1512 ], "country": [ - 77 + 76 ], "created_at": [ - 3468 + 3467 ], "current_lobby_id": [ - 3866 + 3865 ], "custom_avatar_url": [ - 77 + 76 ], "damage_dealt": [ - 2226 + 2225 ], "damage_dealt_aggregate": [ - 2219 + 2218 ], "damage_taken": [ - 2226 + 2225 ], "damage_taken_aggregate": [ - 2219 + 2218 ], "days_since_last_ban": [ 39 ], "deaths": [ - 2382 + 2381 ], "deaths_aggregate": [ - 2373 + 2372 ], "discord_id": [ - 77 + 76 ], "draft_game_players": [ - 313 + 312 ], "draft_game_players_aggregate": [ - 304 + 303 ], "elo": [ - 1242 + 1241 ], "elo_history": [ - 4125 + 4124 ], "elo_history_aggregate": [ - 4108 + 4107 ], "faceit_elo": [ 39 ], "faceit_nickname": [ - 77 + 76 ], "faceit_player_id": [ - 77 + 76 ], "faceit_rank_history": [ - 2294 + 2293 ], "faceit_rank_history_aggregate": [ - 2287 + 2286 ], "faceit_skill_level": [ 39 ], "faceit_updated_at": [ - 3468 + 3467 ], "faceit_url": [ - 77 + 76 ], "flashed_by_players": [ - 2337 + 2336 ], "flashed_by_players_aggregate": [ - 2328 + 2327 ], "flashed_players": [ - 2337 + 2336 ], "flashed_players_aggregate": [ - 2328 + 2327 ], "friends": [ - 1903 + 1902 ], "friends_aggregate": [ - 1893 + 1892 ], "game_ban_count": [ 39 ], "invited_players": [ - 3150 + 3149 ], "invited_players_aggregate": [ - 3143 + 3142 ], "is_banned": [ 4 @@ -71647,31 +72493,31 @@ export default { 4 ], "kills": [ - 2382 + 2381 ], "kills_aggregate": [ - 2373 + 2372 ], "kills_by_weapons": [ - 2392 + 2391 ], "kills_by_weapons_aggregate": [ - 2385 + 2384 ], "language": [ - 77 + 76 ], "last_read_news_at": [ - 3468 + 3467 ], "last_sign_in_at": [ - 3468 + 3467 ], "lobby_players": [ - 1296 + 1295 ], "lobby_players_aggregate": [ - 1287 + 1286 ], "losses": [ 39 @@ -71686,166 +72532,166 @@ export default { 39 ], "match_map_hltv": [ - 4220 + 4219 ], "match_map_hltv_aggregate": [ - 4213 + 4212 ], "match_map_stats": [ - 2489 + 2488 ], "match_map_stats_aggregate": [ - 2482 + 2481 ], "match_stats": [ - 2548 + 2547 ], "match_stats_aggregate": [ - 2541 + 2540 ], "matches": [ - 1840 + 1839 ], "matchmaking_cooldown": [ - 3468 + 3467 ], "multi_kills": [ - 4311 + 4310 ], "multi_kills_aggregate": [ - 4304 + 4303 ], "name": [ - 77 + 76 ], "name_registered": [ 4 ], "notifications": [ - 1976 + 1975 ], "notifications_aggregate": [ - 1966 + 1965 ], "objectives": [ - 2581 + 2580 ], "objectives_aggregate": [ - 2574 + 2573 ], "owned_teams": [ - 3433 + 3432 ], "owned_teams_aggregate": [ - 3426 + 3425 ], "peak_elo": [ - 1242 + 1241 ], "pending_match_imports": [ - 2026 + 2025 ], "pending_match_imports_aggregate": [ - 2019 + 2018 ], "player_lineup": [ - 1477 + 1476 ], "player_lineup_aggregate": [ - 1468 + 1467 ], "player_unused_utilities": [ - 2809 + 2808 ], "player_unused_utilities_aggregate": [ - 2802 + 2801 ], "premier_rank": [ 39 ], "premier_rank_history": [ - 2640 + 2639 ], "premier_rank_history_aggregate": [ - 2633 + 2632 ], "premier_rank_updated_at": [ - 3468 + 3467 ], "profile_url": [ - 77 + 76 ], "role": [ - 791 + 790 ], "roster_image_url": [ - 77 + 76 ], "sanctions": [ - 2681 + 2680 ], "sanctions_aggregate": [ - 2674 + 2673 ], "show_match_ready_modal": [ 4 ], "stats": [ - 2717 + 2716 ], "steam_bans_checked_at": [ - 3468 + 3467 ], "steam_id": [ - 176 + 175 ], "team_invites": [ - 3150 + 3149 ], "team_invites_aggregate": [ - 3143 + 3142 ], "team_members": [ - 3193 + 3192 ], "team_members_aggregate": [ - 3184 + 3183 ], "teams": [ - 3433 + 3432 ], "total_matches": [ 39 ], "tournament_organizers": [ - 3524 + 3523 ], "tournament_organizers_aggregate": [ - 3517 + 3516 ], "tournament_rosters": [ - 3657 + 3656 ], "tournament_rosters_aggregate": [ - 3650 + 3649 ], "tournament_trophies": [ - 3742 + 3741 ], "tournament_trophies_aggregate": [ - 3733 + 3732 ], "tournaments": [ - 3829 + 3828 ], "tournaments_aggregate": [ - 3820 + 3819 ], "utility_thrown": [ - 2850 + 2849 ], "utility_thrown_aggregate": [ - 2843 + 2842 ], "vac_ban_count": [ 39 @@ -71854,10 +72700,10 @@ export default { 4 ], "weapon_stats": [ - 2891 + 2890 ], "weapon_stats_aggregate": [ - 2884 + 2883 ], "wins": [ 39 @@ -71872,7 +72718,7 @@ export default { 39 ], "__typename": [ - 75 + 74 ] }, "players_constraint": {}, @@ -71893,207 +72739,207 @@ export default { 38 ], "steam_id": [ - 174 + 173 ], "vac_ban_count": [ 38 ], "__typename": [ - 75 + 74 ] }, "players_insert_input": { "abandoned_matches": [ - 112 + 111 ], "aim_weapon_stats": [ - 2119 + 2118 ], "assists": [ - 2162 + 2161 ], "assited_by_players": [ - 2162 + 2161 ], "avatar_url": [ - 75 + 74 ], "coach_lineups": [ - 1517 + 1516 ], "country": [ - 75 + 74 ], "created_at": [ - 3467 + 3466 ], "custom_avatar_url": [ - 75 + 74 ], "damage_dealt": [ - 2223 + 2222 ], "damage_taken": [ - 2223 + 2222 ], "days_since_last_ban": [ 38 ], "deaths": [ - 2379 + 2378 ], "discord_id": [ - 75 + 74 ], "draft_game_players": [ - 310 + 309 ], "elo_history": [ - 4122 + 4121 ], "faceit_elo": [ 38 ], "faceit_nickname": [ - 75 + 74 ], "faceit_player_id": [ - 75 + 74 ], "faceit_rank_history": [ - 2291 + 2290 ], "faceit_skill_level": [ 38 ], "faceit_updated_at": [ - 3467 + 3466 ], "faceit_url": [ - 75 + 74 ], "flashed_by_players": [ - 2334 + 2333 ], "flashed_players": [ - 2334 + 2333 ], "friends": [ - 1900 + 1899 ], "game_ban_count": [ 38 ], "invited_players": [ - 3147 + 3146 ], "kills": [ - 2379 + 2378 ], "kills_by_weapons": [ - 2389 + 2388 ], "language": [ - 75 + 74 ], "last_read_news_at": [ - 3467 + 3466 ], "last_sign_in_at": [ - 3467 + 3466 ], "lobby_players": [ - 1293 + 1292 ], "match_map_hltv": [ - 4217 + 4216 ], "match_map_stats": [ - 2486 + 2485 ], "match_stats": [ - 2545 + 2544 ], "multi_kills": [ - 4308 + 4307 ], "name": [ - 75 + 74 ], "name_registered": [ 3 ], "notifications": [ - 1973 + 1972 ], "objectives": [ - 2578 + 2577 ], "owned_teams": [ - 3430 + 3429 ], "pending_match_imports": [ - 2023 + 2022 ], "player_lineup": [ - 1474 + 1473 ], "player_unused_utilities": [ - 2806 + 2805 ], "premier_rank": [ 38 ], "premier_rank_history": [ - 2637 + 2636 ], "premier_rank_updated_at": [ - 3467 + 3466 ], "profile_url": [ - 75 + 74 ], "role": [ - 790 + 789 ], "roster_image_url": [ - 75 + 74 ], "sanctions": [ - 2678 + 2677 ], "show_match_ready_modal": [ 3 ], "stats": [ - 2724 + 2723 ], "steam_bans_checked_at": [ - 3467 + 3466 ], "steam_id": [ - 174 + 173 ], "team_invites": [ - 3147 + 3146 ], "team_members": [ - 3190 + 3189 ], "tournament_organizers": [ - 3521 + 3520 ], "tournament_rosters": [ - 3654 + 3653 ], "tournament_trophies": [ - 3739 + 3738 ], "tournaments": [ - 3826 + 3825 ], "utility_thrown": [ - 2847 + 2846 ], "vac_ban_count": [ 38 @@ -72102,63 +72948,63 @@ export default { 3 ], "weapon_stats": [ - 2888 + 2887 ], "__typename": [ - 75 + 74 ] }, "players_max_fields": { "avatar_url": [ - 75 + 74 ], "country": [ - 75 + 74 ], "created_at": [ - 3467 + 3466 ], "current_lobby_id": [ - 3864 + 3863 ], "custom_avatar_url": [ - 75 + 74 ], "days_since_last_ban": [ 38 ], "discord_id": [ - 75 + 74 ], "faceit_elo": [ 38 ], "faceit_nickname": [ - 75 + 74 ], "faceit_player_id": [ - 75 + 74 ], "faceit_skill_level": [ 38 ], "faceit_updated_at": [ - 3467 + 3466 ], "faceit_url": [ - 75 + 74 ], "game_ban_count": [ 38 ], "language": [ - 75 + 74 ], "last_read_news_at": [ - 3467 + 3466 ], "last_sign_in_at": [ - 3467 + 3466 ], "losses": [ 38 @@ -72173,28 +73019,28 @@ export default { 38 ], "matchmaking_cooldown": [ - 3467 + 3466 ], "name": [ - 75 + 74 ], "premier_rank": [ 38 ], "premier_rank_updated_at": [ - 3467 + 3466 ], "profile_url": [ - 75 + 74 ], "roster_image_url": [ - 75 + 74 ], "steam_bans_checked_at": [ - 3467 + 3466 ], "steam_id": [ - 174 + 173 ], "total_matches": [ 38 @@ -72215,60 +73061,60 @@ export default { 38 ], "__typename": [ - 75 + 74 ] }, "players_min_fields": { "avatar_url": [ - 75 + 74 ], "country": [ - 75 + 74 ], "created_at": [ - 3467 + 3466 ], "current_lobby_id": [ - 3864 + 3863 ], "custom_avatar_url": [ - 75 + 74 ], "days_since_last_ban": [ 38 ], "discord_id": [ - 75 + 74 ], "faceit_elo": [ 38 ], "faceit_nickname": [ - 75 + 74 ], "faceit_player_id": [ - 75 + 74 ], "faceit_skill_level": [ 38 ], "faceit_updated_at": [ - 3467 + 3466 ], "faceit_url": [ - 75 + 74 ], "game_ban_count": [ 38 ], "language": [ - 75 + 74 ], "last_read_news_at": [ - 3467 + 3466 ], "last_sign_in_at": [ - 3467 + 3466 ], "losses": [ 38 @@ -72283,28 +73129,28 @@ export default { 38 ], "matchmaking_cooldown": [ - 3467 + 3466 ], "name": [ - 75 + 74 ], "premier_rank": [ 38 ], "premier_rank_updated_at": [ - 3467 + 3466 ], "profile_url": [ - 75 + 74 ], "roster_image_url": [ - 75 + 74 ], "steam_bans_checked_at": [ - 3467 + 3466 ], "steam_id": [ - 174 + 173 ], "total_matches": [ 38 @@ -72325,7 +73171,7 @@ export default { 38 ], "__typename": [ - 75 + 74 ] }, "players_mutation_response": { @@ -72333,366 +73179,366 @@ export default { 38 ], "returning": [ - 2915 + 2914 ], "__typename": [ - 75 + 74 ] }, "players_obj_rel_insert_input": { "data": [ - 2922 + 2921 ], "on_conflict": [ - 2927 + 2926 ], "__typename": [ - 75 + 74 ] }, "players_on_conflict": { "constraint": [ - 2920 + 2919 ], "update_columns": [ - 2938 + 2937 ], "where": [ - 2919 + 2918 ], "__typename": [ - 75 + 74 ] }, "players_order_by": { "abandoned_matches_aggregate": [ - 111 + 110 ], "aim_weapon_stats_aggregate": [ - 2118 + 2117 ], "assists_aggregate": [ - 2161 + 2160 ], "assited_by_players_aggregate": [ - 2161 + 2160 ], "avatar_url": [ - 2016 + 2015 ], "coach_lineups_aggregate": [ - 1516 + 1515 ], "country": [ - 2016 + 2015 ], "created_at": [ - 2016 + 2015 ], "current_lobby_id": [ - 2016 + 2015 ], "custom_avatar_url": [ - 2016 + 2015 ], "damage_dealt_aggregate": [ - 2222 + 2221 ], "damage_taken_aggregate": [ - 2222 + 2221 ], "days_since_last_ban": [ - 2016 + 2015 ], "deaths_aggregate": [ - 2378 + 2377 ], "discord_id": [ - 2016 + 2015 ], "draft_game_players_aggregate": [ - 309 + 308 ], "elo": [ - 2016 + 2015 ], "elo_history_aggregate": [ - 4121 + 4120 ], "faceit_elo": [ - 2016 + 2015 ], "faceit_nickname": [ - 2016 + 2015 ], "faceit_player_id": [ - 2016 + 2015 ], "faceit_rank_history_aggregate": [ - 2290 + 2289 ], "faceit_skill_level": [ - 2016 + 2015 ], "faceit_updated_at": [ - 2016 + 2015 ], "faceit_url": [ - 2016 + 2015 ], "flashed_by_players_aggregate": [ - 2333 + 2332 ], "flashed_players_aggregate": [ - 2333 + 2332 ], "friends_aggregate": [ - 1898 + 1897 ], "game_ban_count": [ - 2016 + 2015 ], "invited_players_aggregate": [ - 3146 + 3145 ], "is_banned": [ - 2016 + 2015 ], "is_gagged": [ - 2016 + 2015 ], "is_in_another_match": [ - 2016 + 2015 ], "is_in_draft": [ - 2016 + 2015 ], "is_in_lobby": [ - 2016 + 2015 ], "is_muted": [ - 2016 + 2015 ], "kills_aggregate": [ - 2378 + 2377 ], "kills_by_weapons_aggregate": [ - 2388 + 2387 ], "language": [ - 2016 + 2015 ], "last_read_news_at": [ - 2016 + 2015 ], "last_sign_in_at": [ - 2016 + 2015 ], "lobby_players_aggregate": [ - 1292 + 1291 ], "losses": [ - 2016 + 2015 ], "losses_competitive": [ - 2016 + 2015 ], "losses_duel": [ - 2016 + 2015 ], "losses_wingman": [ - 2016 + 2015 ], "match_map_hltv_aggregate": [ - 4216 + 4215 ], "match_map_stats_aggregate": [ - 2485 + 2484 ], "match_stats_aggregate": [ - 2544 + 2543 ], "matches_aggregate": [ - 1836 + 1835 ], "matchmaking_cooldown": [ - 2016 + 2015 ], "multi_kills_aggregate": [ - 4307 + 4306 ], "name": [ - 2016 + 2015 ], "name_registered": [ - 2016 + 2015 ], "notifications_aggregate": [ - 1971 + 1970 ], "objectives_aggregate": [ - 2577 + 2576 ], "owned_teams_aggregate": [ - 3429 + 3428 ], "peak_elo": [ - 2016 + 2015 ], "pending_match_imports_aggregate": [ - 2022 + 2021 ], "player_lineup_aggregate": [ - 1473 + 1472 ], "player_unused_utilities_aggregate": [ - 2805 + 2804 ], "premier_rank": [ - 2016 + 2015 ], "premier_rank_history_aggregate": [ - 2636 + 2635 ], "premier_rank_updated_at": [ - 2016 + 2015 ], "profile_url": [ - 2016 + 2015 ], "role": [ - 2016 + 2015 ], "roster_image_url": [ - 2016 + 2015 ], "sanctions_aggregate": [ - 2677 + 2676 ], "show_match_ready_modal": [ - 2016 + 2015 ], "stats": [ - 2726 + 2725 ], "steam_bans_checked_at": [ - 2016 + 2015 ], "steam_id": [ - 2016 + 2015 ], "team_invites_aggregate": [ - 3146 + 3145 ], "team_members_aggregate": [ - 3189 + 3188 ], "teams_aggregate": [ - 3429 + 3428 ], "total_matches": [ - 2016 + 2015 ], "tournament_organizers_aggregate": [ - 3520 + 3519 ], "tournament_rosters_aggregate": [ - 3653 + 3652 ], "tournament_trophies_aggregate": [ - 3738 + 3737 ], "tournaments_aggregate": [ - 3825 + 3824 ], "utility_thrown_aggregate": [ - 2846 + 2845 ], "vac_ban_count": [ - 2016 + 2015 ], "vac_banned": [ - 2016 + 2015 ], "weapon_stats_aggregate": [ - 2887 + 2886 ], "wins": [ - 2016 + 2015 ], "wins_competitive": [ - 2016 + 2015 ], "wins_duel": [ - 2016 + 2015 ], "wins_wingman": [ - 2016 + 2015 ], "__typename": [ - 75 + 74 ] }, "players_pk_columns_input": { "steam_id": [ - 174 + 173 ], "__typename": [ - 75 + 74 ] }, "players_select_column": {}, "players_set_input": { "avatar_url": [ - 75 + 74 ], "country": [ - 75 + 74 ], "created_at": [ - 3467 + 3466 ], "custom_avatar_url": [ - 75 + 74 ], "days_since_last_ban": [ 38 ], "discord_id": [ - 75 + 74 ], "faceit_elo": [ 38 ], "faceit_nickname": [ - 75 + 74 ], "faceit_player_id": [ - 75 + 74 ], "faceit_skill_level": [ 38 ], "faceit_updated_at": [ - 3467 + 3466 ], "faceit_url": [ - 75 + 74 ], "game_ban_count": [ 38 ], "language": [ - 75 + 74 ], "last_read_news_at": [ - 3467 + 3466 ], "last_sign_in_at": [ - 3467 + 3466 ], "name": [ - 75 + 74 ], "name_registered": [ 3 @@ -72701,25 +73547,25 @@ export default { 38 ], "premier_rank_updated_at": [ - 3467 + 3466 ], "profile_url": [ - 75 + 74 ], "role": [ - 790 + 789 ], "roster_image_url": [ - 75 + 74 ], "show_match_ready_modal": [ 3 ], "steam_bans_checked_at": [ - 3467 + 3466 ], "steam_id": [ - 174 + 173 ], "vac_ban_count": [ 38 @@ -72728,7 +73574,7 @@ export default { 3 ], "__typename": [ - 75 + 74 ] }, "players_stddev_fields": { @@ -72781,7 +73627,7 @@ export default { 38 ], "__typename": [ - 75 + 74 ] }, "players_stddev_pop_fields": { @@ -72834,7 +73680,7 @@ export default { 38 ], "__typename": [ - 75 + 74 ] }, "players_stddev_samp_fields": { @@ -72887,71 +73733,71 @@ export default { 38 ], "__typename": [ - 75 + 74 ] }, "players_stream_cursor_input": { "initial_value": [ - 2936 + 2935 ], "ordering": [ - 229 + 228 ], "__typename": [ - 75 + 74 ] }, "players_stream_cursor_value_input": { "avatar_url": [ - 75 + 74 ], "country": [ - 75 + 74 ], "created_at": [ - 3467 + 3466 ], "custom_avatar_url": [ - 75 + 74 ], "days_since_last_ban": [ 38 ], "discord_id": [ - 75 + 74 ], "faceit_elo": [ 38 ], "faceit_nickname": [ - 75 + 74 ], "faceit_player_id": [ - 75 + 74 ], "faceit_skill_level": [ 38 ], "faceit_updated_at": [ - 3467 + 3466 ], "faceit_url": [ - 75 + 74 ], "game_ban_count": [ 38 ], "language": [ - 75 + 74 ], "last_read_news_at": [ - 3467 + 3466 ], "last_sign_in_at": [ - 3467 + 3466 ], "name": [ - 75 + 74 ], "name_registered": [ 3 @@ -72960,25 +73806,25 @@ export default { 38 ], "premier_rank_updated_at": [ - 3467 + 3466 ], "profile_url": [ - 75 + 74 ], "role": [ - 790 + 789 ], "roster_image_url": [ - 75 + 74 ], "show_match_ready_modal": [ 3 ], "steam_bans_checked_at": [ - 3467 + 3466 ], "steam_id": [ - 174 + 173 ], "vac_ban_count": [ 38 @@ -72987,7 +73833,7 @@ export default { 3 ], "__typename": [ - 75 + 74 ] }, "players_sum_fields": { @@ -73019,7 +73865,7 @@ export default { 38 ], "steam_id": [ - 174 + 173 ], "total_matches": [ 38 @@ -73040,22 +73886,22 @@ export default { 38 ], "__typename": [ - 75 + 74 ] }, "players_update_column": {}, "players_updates": { "_inc": [ - 2921 + 2920 ], "_set": [ - 2931 + 2930 ], "where": [ - 2919 + 2918 ], "__typename": [ - 75 + 74 ] }, "players_var_pop_fields": { @@ -73108,7 +73954,7 @@ export default { 38 ], "__typename": [ - 75 + 74 ] }, "players_var_samp_fields": { @@ -73161,7 +74007,7 @@ export default { 38 ], "__typename": [ - 75 + 74 ] }, "players_variance_fields": { @@ -73214,7 +74060,7 @@ export default { 38 ], "__typename": [ - 75 + 74 ] }, "plugin_versions": { @@ -73222,35 +74068,35 @@ export default { 38 ], "published_at": [ - 3467 + 3466 ], "version": [ - 75 + 74 ], "__typename": [ - 75 + 74 ] }, "plugin_versions_aggregate": { "aggregate": [ - 2945 + 2944 ], "nodes": [ - 2943 + 2942 ], "__typename": [ - 75 + 74 ] }, "plugin_versions_aggregate_fields": { "avg": [ - 2946 + 2945 ], "count": [ 38, { "columns": [ - 2957, + 2956, "[plugin_versions_select_column!]" ], "distinct": [ @@ -73259,34 +74105,34 @@ export default { } ], "max": [ - 2951 + 2950 ], "min": [ - 2952 + 2951 ], "stddev": [ - 2959 + 2958 ], "stddev_pop": [ - 2960 + 2959 ], "stddev_samp": [ - 2961 + 2960 ], "sum": [ - 2964 + 2963 ], "var_pop": [ - 2967 + 2966 ], "var_samp": [ - 2968 + 2967 ], "variance": [ - 2969 + 2968 ], "__typename": [ - 75 + 74 ] }, "plugin_versions_avg_fields": { @@ -73294,30 +74140,30 @@ export default { 29 ], "__typename": [ - 75 + 74 ] }, "plugin_versions_bool_exp": { "_and": [ - 2947 + 2946 ], "_not": [ - 2947 + 2946 ], "_or": [ - 2947 + 2946 ], "min_game_build_id": [ 39 ], "published_at": [ - 3468 + 3467 ], "version": [ - 77 + 76 ], "__typename": [ - 75 + 74 ] }, "plugin_versions_constraint": {}, @@ -73326,7 +74172,7 @@ export default { 38 ], "__typename": [ - 75 + 74 ] }, "plugin_versions_insert_input": { @@ -73334,13 +74180,13 @@ export default { 38 ], "published_at": [ - 3467 + 3466 ], "version": [ - 75 + 74 ], "__typename": [ - 75 + 74 ] }, "plugin_versions_max_fields": { @@ -73348,13 +74194,13 @@ export default { 38 ], "published_at": [ - 3467 + 3466 ], "version": [ - 75 + 74 ], "__typename": [ - 75 + 74 ] }, "plugin_versions_min_fields": { @@ -73362,13 +74208,13 @@ export default { 38 ], "published_at": [ - 3467 + 3466 ], "version": [ - 75 + 74 ], "__typename": [ - 75 + 74 ] }, "plugin_versions_mutation_response": { @@ -73376,46 +74222,46 @@ export default { 38 ], "returning": [ - 2943 + 2942 ], "__typename": [ - 75 + 74 ] }, "plugin_versions_on_conflict": { "constraint": [ - 2948 + 2947 ], "update_columns": [ - 2965 + 2964 ], "where": [ - 2947 + 2946 ], "__typename": [ - 75 + 74 ] }, "plugin_versions_order_by": { "min_game_build_id": [ - 2016 + 2015 ], "published_at": [ - 2016 + 2015 ], "version": [ - 2016 + 2015 ], "__typename": [ - 75 + 74 ] }, "plugin_versions_pk_columns_input": { "version": [ - 75 + 74 ], "__typename": [ - 75 + 74 ] }, "plugin_versions_select_column": {}, @@ -73424,13 +74270,13 @@ export default { 38 ], "published_at": [ - 3467 + 3466 ], "version": [ - 75 + 74 ], "__typename": [ - 75 + 74 ] }, "plugin_versions_stddev_fields": { @@ -73438,7 +74284,7 @@ export default { 29 ], "__typename": [ - 75 + 74 ] }, "plugin_versions_stddev_pop_fields": { @@ -73446,7 +74292,7 @@ export default { 29 ], "__typename": [ - 75 + 74 ] }, "plugin_versions_stddev_samp_fields": { @@ -73454,18 +74300,18 @@ export default { 29 ], "__typename": [ - 75 + 74 ] }, "plugin_versions_stream_cursor_input": { "initial_value": [ - 2963 + 2962 ], "ordering": [ - 229 + 228 ], "__typename": [ - 75 + 74 ] }, "plugin_versions_stream_cursor_value_input": { @@ -73473,13 +74319,13 @@ export default { 38 ], "published_at": [ - 3467 + 3466 ], "version": [ - 75 + 74 ], "__typename": [ - 75 + 74 ] }, "plugin_versions_sum_fields": { @@ -73487,22 +74333,22 @@ export default { 38 ], "__typename": [ - 75 + 74 ] }, "plugin_versions_update_column": {}, "plugin_versions_updates": { "_inc": [ - 2949 + 2948 ], "_set": [ - 2958 + 2957 ], "where": [ - 2947 + 2946 ], "__typename": [ - 75 + 74 ] }, "plugin_versions_var_pop_fields": { @@ -73510,7 +74356,7 @@ export default { 29 ], "__typename": [ - 75 + 74 ] }, "plugin_versions_var_samp_fields": { @@ -73518,7 +74364,7 @@ export default { 29 ], "__typename": [ - 75 + 74 ] }, "plugin_versions_variance_fields": { @@ -73526,15 +74372,15 @@ export default { 29 ], "__typename": [ - 75 + 74 ] }, "recalculate_tournament_trophies_args": { "_tournament_id": [ - 3864 + 3863 ], "__typename": [ - 75 + 74 ] }, "server_regions": { @@ -73542,13 +74388,13 @@ export default { 38 ], "description": [ - 75 + 74 ], "game_server_nodes": [ - 1118, + 1117, { "distinct_on": [ - 1147, + 1146, "[game_server_nodes_select_column!]" ], "limit": [ @@ -73558,19 +74404,19 @@ export default { 38 ], "order_by": [ - 1144, + 1143, "[game_server_nodes_order_by!]" ], "where": [ - 1130 + 1129 ] } ], "game_server_nodes_aggregate": [ - 1119, + 1118, { "distinct_on": [ - 1147, + 1146, "[game_server_nodes_select_column!]" ], "limit": [ @@ -73580,11 +74426,11 @@ export default { 38 ], "order_by": [ - 1144, + 1143, "[game_server_nodes_order_by!]" ], "where": [ - 1130 + 1129 ] } ], @@ -73595,7 +74441,7 @@ export default { 3 ], "status": [ - 75 + 74 ], "steam_relay": [ 3 @@ -73604,32 +74450,32 @@ export default { 38 ], "value": [ - 75 + 74 ], "__typename": [ - 75 + 74 ] }, "server_regions_aggregate": { "aggregate": [ - 2973 + 2972 ], "nodes": [ - 2971 + 2970 ], "__typename": [ - 75 + 74 ] }, "server_regions_aggregate_fields": { "avg": [ - 2974 + 2973 ], "count": [ 38, { "columns": [ - 2985, + 2984, "[server_regions_select_column!]" ], "distinct": [ @@ -73638,34 +74484,34 @@ export default { } ], "max": [ - 2978 + 2977 ], "min": [ - 2979 + 2978 ], "stddev": [ - 2987 + 2986 ], "stddev_pop": [ - 2988 + 2987 ], "stddev_samp": [ - 2989 + 2988 ], "sum": [ - 2992 + 2991 ], "var_pop": [ - 2995 + 2994 ], "var_samp": [ - 2996 + 2995 ], "variance": [ - 2997 + 2996 ], "__typename": [ - 75 + 74 ] }, "server_regions_avg_fields": { @@ -73676,30 +74522,30 @@ export default { 38 ], "__typename": [ - 75 + 74 ] }, "server_regions_bool_exp": { "_and": [ - 2975 + 2974 ], "_not": [ - 2975 + 2974 ], "_or": [ - 2975 + 2974 ], "available_server_count": [ 39 ], "description": [ - 77 + 76 ], "game_server_nodes": [ - 1130 + 1129 ], "game_server_nodes_aggregate": [ - 1120 + 1119 ], "has_node": [ 4 @@ -73708,7 +74554,7 @@ export default { 4 ], "status": [ - 77 + 76 ], "steam_relay": [ 4 @@ -73717,19 +74563,19 @@ export default { 39 ], "value": [ - 77 + 76 ], "__typename": [ - 75 + 74 ] }, "server_regions_constraint": {}, "server_regions_insert_input": { "description": [ - 75 + 74 ], "game_server_nodes": [ - 1127 + 1126 ], "is_lan": [ 3 @@ -73738,10 +74584,10 @@ export default { 3 ], "value": [ - 75 + 74 ], "__typename": [ - 75 + 74 ] }, "server_regions_max_fields": { @@ -73749,19 +74595,19 @@ export default { 38 ], "description": [ - 75 + 74 ], "status": [ - 75 + 74 ], "total_server_count": [ 38 ], "value": [ - 75 + 74 ], "__typename": [ - 75 + 74 ] }, "server_regions_min_fields": { @@ -73769,19 +74615,19 @@ export default { 38 ], "description": [ - 75 + 74 ], "status": [ - 75 + 74 ], "total_server_count": [ 38 ], "value": [ - 75 + 74 ], "__typename": [ - 75 + 74 ] }, "server_regions_mutation_response": { @@ -73789,81 +74635,81 @@ export default { 38 ], "returning": [ - 2971 + 2970 ], "__typename": [ - 75 + 74 ] }, "server_regions_obj_rel_insert_input": { "data": [ - 2977 + 2976 ], "on_conflict": [ - 2982 + 2981 ], "__typename": [ - 75 + 74 ] }, "server_regions_on_conflict": { "constraint": [ - 2976 + 2975 ], "update_columns": [ - 2993 + 2992 ], "where": [ - 2975 + 2974 ], "__typename": [ - 75 + 74 ] }, "server_regions_order_by": { "available_server_count": [ - 2016 + 2015 ], "description": [ - 2016 + 2015 ], "game_server_nodes_aggregate": [ - 1125 + 1124 ], "has_node": [ - 2016 + 2015 ], "is_lan": [ - 2016 + 2015 ], "status": [ - 2016 + 2015 ], "steam_relay": [ - 2016 + 2015 ], "total_server_count": [ - 2016 + 2015 ], "value": [ - 2016 + 2015 ], "__typename": [ - 75 + 74 ] }, "server_regions_pk_columns_input": { "value": [ - 75 + 74 ], "__typename": [ - 75 + 74 ] }, "server_regions_select_column": {}, "server_regions_set_input": { "description": [ - 75 + 74 ], "is_lan": [ 3 @@ -73872,10 +74718,10 @@ export default { 3 ], "value": [ - 75 + 74 ], "__typename": [ - 75 + 74 ] }, "server_regions_stddev_fields": { @@ -73886,7 +74732,7 @@ export default { 38 ], "__typename": [ - 75 + 74 ] }, "server_regions_stddev_pop_fields": { @@ -73897,7 +74743,7 @@ export default { 38 ], "__typename": [ - 75 + 74 ] }, "server_regions_stddev_samp_fields": { @@ -73908,23 +74754,23 @@ export default { 38 ], "__typename": [ - 75 + 74 ] }, "server_regions_stream_cursor_input": { "initial_value": [ - 2991 + 2990 ], "ordering": [ - 229 + 228 ], "__typename": [ - 75 + 74 ] }, "server_regions_stream_cursor_value_input": { "description": [ - 75 + 74 ], "is_lan": [ 3 @@ -73933,10 +74779,10 @@ export default { 3 ], "value": [ - 75 + 74 ], "__typename": [ - 75 + 74 ] }, "server_regions_sum_fields": { @@ -73947,19 +74793,19 @@ export default { 38 ], "__typename": [ - 75 + 74 ] }, "server_regions_update_column": {}, "server_regions_updates": { "_set": [ - 2986 + 2985 ], "where": [ - 2975 + 2974 ], "__typename": [ - 75 + 74 ] }, "server_regions_var_pop_fields": { @@ -73970,7 +74816,7 @@ export default { 38 ], "__typename": [ - 75 + 74 ] }, "server_regions_var_samp_fields": { @@ -73981,7 +74827,7 @@ export default { 38 ], "__typename": [ - 75 + 74 ] }, "server_regions_variance_fields": { @@ -73992,63 +74838,63 @@ export default { 38 ], "__typename": [ - 75 + 74 ] }, "servers": { "api_password": [ - 3864 + 3863 ], "boot_status": [ - 75 + 74 ], "boot_status_detail": [ - 75 + 74 ], "connect_password": [ - 75 + 74 ], "connected": [ 3 ], "connection_link": [ - 75 + 74 ], "connection_string": [ - 75 + 74 ], "current_match": [ - 1831 + 1830 ], "enabled": [ 3 ], "game": [ - 75 + 74 ], "game_server_node": [ - 1118 + 1117 ], "game_server_node_id": [ - 75 + 74 ], "host": [ - 75 + 74 ], "id": [ - 3864 + 3863 ], "is_dedicated": [ 3 ], "label": [ - 75 + 74 ], "matches": [ - 1831, + 1830, { "distinct_on": [ - 1853, + 1852, "[matches_select_column!]" ], "limit": [ @@ -74058,19 +74904,19 @@ export default { 38 ], "order_by": [ - 1851, + 1850, "[matches_order_by!]" ], "where": [ - 1840 + 1839 ] } ], "matches_aggregate": [ - 1832, + 1831, { "distinct_on": [ - 1853, + 1852, "[matches_select_column!]" ], "limit": [ @@ -74080,11 +74926,11 @@ export default { 38 ], "order_by": [ - 1851, + 1850, "[matches_order_by!]" ], "where": [ - 1840 + 1839 ] } ], @@ -74092,130 +74938,130 @@ export default { 38 ], "offline_at": [ - 3467 + 3466 ], "plugin_version": [ - 75 + 74 ], "port": [ 38 ], "rcon_password": [ - 177 + 176 ], "rcon_status": [ 3 ], "region": [ - 75 + 74 ], "reserved_by_match_id": [ - 3864 + 3863 ], "server_region": [ - 2971 + 2970 ], "steam_relay": [ - 75 + 74 ], "tv_port": [ 38 ], "type": [ - 871 + 870 ], "updated_at": [ - 3467 + 3466 ], "__typename": [ - 75 + 74 ] }, "servers_aggregate": { "aggregate": [ - 3004 + 3003 ], "nodes": [ - 2998 + 2997 ], "__typename": [ - 75 + 74 ] }, "servers_aggregate_bool_exp": { "bool_and": [ - 3001 + 3000 ], "bool_or": [ - 3002 + 3001 ], "count": [ - 3003 + 3002 ], "__typename": [ - 75 + 74 ] }, "servers_aggregate_bool_exp_bool_and": { "arguments": [ - 3023 + 3022 ], "distinct": [ 3 ], "filter": [ - 3009 + 3008 ], "predicate": [ 4 ], "__typename": [ - 75 + 74 ] }, "servers_aggregate_bool_exp_bool_or": { "arguments": [ - 3024 + 3023 ], "distinct": [ 3 ], "filter": [ - 3009 + 3008 ], "predicate": [ 4 ], "__typename": [ - 75 + 74 ] }, "servers_aggregate_bool_exp_count": { "arguments": [ - 3022 + 3021 ], "distinct": [ 3 ], "filter": [ - 3009 + 3008 ], "predicate": [ 39 ], "__typename": [ - 75 + 74 ] }, "servers_aggregate_fields": { "avg": [ - 3007 + 3006 ], "count": [ 38, { "columns": [ - 3022, + 3021, "[servers_select_column!]" ], "distinct": [ @@ -74224,83 +75070,83 @@ export default { } ], "max": [ - 3013 + 3012 ], "min": [ - 3015 + 3014 ], "stddev": [ - 3026 + 3025 ], "stddev_pop": [ - 3028 + 3027 ], "stddev_samp": [ - 3030 + 3029 ], "sum": [ - 3034 + 3033 ], "var_pop": [ - 3038 + 3037 ], "var_samp": [ - 3040 + 3039 ], "variance": [ - 3042 + 3041 ], "__typename": [ - 75 + 74 ] }, "servers_aggregate_order_by": { "avg": [ - 3008 + 3007 ], "count": [ - 2016 + 2015 ], "max": [ - 3014 + 3013 ], "min": [ - 3016 + 3015 ], "stddev": [ - 3027 + 3026 ], "stddev_pop": [ - 3029 + 3028 ], "stddev_samp": [ - 3031 + 3030 ], "sum": [ - 3035 + 3034 ], "var_pop": [ - 3039 + 3038 ], "var_samp": [ - 3041 + 3040 ], "variance": [ - 3043 + 3042 ], "__typename": [ - 75 + 74 ] }, "servers_arr_rel_insert_input": { "data": [ - 3012 + 3011 ], "on_conflict": [ - 3019 + 3018 ], "__typename": [ - 75 + 74 ] }, "servers_avg_fields": { @@ -74314,128 +75160,128 @@ export default { 29 ], "__typename": [ - 75 + 74 ] }, "servers_avg_order_by": { "max_players": [ - 2016 + 2015 ], "port": [ - 2016 + 2015 ], "tv_port": [ - 2016 + 2015 ], "__typename": [ - 75 + 74 ] }, "servers_bool_exp": { "_and": [ - 3009 + 3008 ], "_not": [ - 3009 + 3008 ], "_or": [ - 3009 + 3008 ], "api_password": [ - 3866 + 3865 ], "boot_status": [ - 77 + 76 ], "boot_status_detail": [ - 77 + 76 ], "connect_password": [ - 77 + 76 ], "connected": [ 4 ], "connection_link": [ - 77 + 76 ], "connection_string": [ - 77 + 76 ], "current_match": [ - 1840 + 1839 ], "enabled": [ 4 ], "game": [ - 77 + 76 ], "game_server_node": [ - 1130 + 1129 ], "game_server_node_id": [ - 77 + 76 ], "host": [ - 77 + 76 ], "id": [ - 3866 + 3865 ], "is_dedicated": [ 4 ], "label": [ - 77 + 76 ], "matches": [ - 1840 + 1839 ], "matches_aggregate": [ - 1833 + 1832 ], "max_players": [ 39 ], "offline_at": [ - 3468 + 3467 ], "plugin_version": [ - 77 + 76 ], "port": [ 39 ], "rcon_password": [ - 178 + 177 ], "rcon_status": [ 4 ], "region": [ - 77 + 76 ], "reserved_by_match_id": [ - 3866 + 3865 ], "server_region": [ - 2975 + 2974 ], "steam_relay": [ - 77 + 76 ], "tv_port": [ 39 ], "type": [ - 872 + 871 ], "updated_at": [ - 3468 + 3467 ], "__typename": [ - 75 + 74 ] }, "servers_constraint": {}, @@ -74450,344 +75296,344 @@ export default { 38 ], "__typename": [ - 75 + 74 ] }, "servers_insert_input": { "api_password": [ - 3864 + 3863 ], "boot_status": [ - 75 + 74 ], "boot_status_detail": [ - 75 + 74 ], "connect_password": [ - 75 + 74 ], "connected": [ 3 ], "current_match": [ - 1849 + 1848 ], "enabled": [ 3 ], "game": [ - 75 + 74 ], "game_server_node": [ - 1142 + 1141 ], "game_server_node_id": [ - 75 + 74 ], "host": [ - 75 + 74 ], "id": [ - 3864 + 3863 ], "is_dedicated": [ 3 ], "label": [ - 75 + 74 ], "matches": [ - 1837 + 1836 ], "max_players": [ 38 ], "offline_at": [ - 3467 + 3466 ], "plugin_version": [ - 75 + 74 ], "port": [ 38 ], "rcon_password": [ - 177 + 176 ], "rcon_status": [ 3 ], "region": [ - 75 + 74 ], "reserved_by_match_id": [ - 3864 + 3863 ], "server_region": [ - 2981 + 2980 ], "steam_relay": [ - 75 + 74 ], "tv_port": [ 38 ], "type": [ - 871 + 870 ], "updated_at": [ - 3467 + 3466 ], "__typename": [ - 75 + 74 ] }, "servers_max_fields": { "api_password": [ - 3864 + 3863 ], "boot_status": [ - 75 + 74 ], "boot_status_detail": [ - 75 + 74 ], "connect_password": [ - 75 + 74 ], "connection_link": [ - 75 + 74 ], "connection_string": [ - 75 + 74 ], "game": [ - 75 + 74 ], "game_server_node_id": [ - 75 + 74 ], "host": [ - 75 + 74 ], "id": [ - 3864 + 3863 ], "label": [ - 75 + 74 ], "max_players": [ 38 ], "offline_at": [ - 3467 + 3466 ], "plugin_version": [ - 75 + 74 ], "port": [ 38 ], "region": [ - 75 + 74 ], "reserved_by_match_id": [ - 3864 + 3863 ], "steam_relay": [ - 75 + 74 ], "tv_port": [ 38 ], "updated_at": [ - 3467 + 3466 ], "__typename": [ - 75 + 74 ] }, "servers_max_order_by": { "api_password": [ - 2016 + 2015 ], "boot_status": [ - 2016 + 2015 ], "boot_status_detail": [ - 2016 + 2015 ], "connect_password": [ - 2016 + 2015 ], "game": [ - 2016 + 2015 ], "game_server_node_id": [ - 2016 + 2015 ], "host": [ - 2016 + 2015 ], "id": [ - 2016 + 2015 ], "label": [ - 2016 + 2015 ], "max_players": [ - 2016 + 2015 ], "offline_at": [ - 2016 + 2015 ], "plugin_version": [ - 2016 + 2015 ], "port": [ - 2016 + 2015 ], "region": [ - 2016 + 2015 ], "reserved_by_match_id": [ - 2016 + 2015 ], "steam_relay": [ - 2016 + 2015 ], "tv_port": [ - 2016 + 2015 ], "updated_at": [ - 2016 + 2015 ], "__typename": [ - 75 + 74 ] }, "servers_min_fields": { "api_password": [ - 3864 + 3863 ], "boot_status": [ - 75 + 74 ], "boot_status_detail": [ - 75 + 74 ], "connect_password": [ - 75 + 74 ], "connection_link": [ - 75 + 74 ], "connection_string": [ - 75 + 74 ], "game": [ - 75 + 74 ], "game_server_node_id": [ - 75 + 74 ], "host": [ - 75 + 74 ], "id": [ - 3864 + 3863 ], "label": [ - 75 + 74 ], "max_players": [ 38 ], "offline_at": [ - 3467 + 3466 ], "plugin_version": [ - 75 + 74 ], "port": [ 38 ], "region": [ - 75 + 74 ], "reserved_by_match_id": [ - 3864 + 3863 ], "steam_relay": [ - 75 + 74 ], "tv_port": [ 38 ], "updated_at": [ - 3467 + 3466 ], "__typename": [ - 75 + 74 ] }, "servers_min_order_by": { "api_password": [ - 2016 + 2015 ], "boot_status": [ - 2016 + 2015 ], "boot_status_detail": [ - 2016 + 2015 ], "connect_password": [ - 2016 + 2015 ], "game": [ - 2016 + 2015 ], "game_server_node_id": [ - 2016 + 2015 ], "host": [ - 2016 + 2015 ], "id": [ - 2016 + 2015 ], "label": [ - 2016 + 2015 ], "max_players": [ - 2016 + 2015 ], "offline_at": [ - 2016 + 2015 ], "plugin_version": [ - 2016 + 2015 ], "port": [ - 2016 + 2015 ], "region": [ - 2016 + 2015 ], "reserved_by_match_id": [ - 2016 + 2015 ], "steam_relay": [ - 2016 + 2015 ], "tv_port": [ - 2016 + 2015 ], "updated_at": [ - 2016 + 2015 ], "__typename": [ - 75 + 74 ] }, "servers_mutation_response": { @@ -74795,138 +75641,138 @@ export default { 38 ], "returning": [ - 2998 + 2997 ], "__typename": [ - 75 + 74 ] }, "servers_obj_rel_insert_input": { "data": [ - 3012 + 3011 ], "on_conflict": [ - 3019 + 3018 ], "__typename": [ - 75 + 74 ] }, "servers_on_conflict": { "constraint": [ - 3010 + 3009 ], "update_columns": [ - 3036 + 3035 ], "where": [ - 3009 + 3008 ], "__typename": [ - 75 + 74 ] }, "servers_order_by": { "api_password": [ - 2016 + 2015 ], "boot_status": [ - 2016 + 2015 ], "boot_status_detail": [ - 2016 + 2015 ], "connect_password": [ - 2016 + 2015 ], "connected": [ - 2016 + 2015 ], "connection_link": [ - 2016 + 2015 ], "connection_string": [ - 2016 + 2015 ], "current_match": [ - 1851 + 1850 ], "enabled": [ - 2016 + 2015 ], "game": [ - 2016 + 2015 ], "game_server_node": [ - 1144 + 1143 ], "game_server_node_id": [ - 2016 + 2015 ], "host": [ - 2016 + 2015 ], "id": [ - 2016 + 2015 ], "is_dedicated": [ - 2016 + 2015 ], "label": [ - 2016 + 2015 ], "matches_aggregate": [ - 1836 + 1835 ], "max_players": [ - 2016 + 2015 ], "offline_at": [ - 2016 + 2015 ], "plugin_version": [ - 2016 + 2015 ], "port": [ - 2016 + 2015 ], "rcon_password": [ - 2016 + 2015 ], "rcon_status": [ - 2016 + 2015 ], "region": [ - 2016 + 2015 ], "reserved_by_match_id": [ - 2016 + 2015 ], "server_region": [ - 2983 + 2982 ], "steam_relay": [ - 2016 + 2015 ], "tv_port": [ - 2016 + 2015 ], "type": [ - 2016 + 2015 ], "updated_at": [ - 2016 + 2015 ], "__typename": [ - 75 + 74 ] }, "servers_pk_columns_input": { "id": [ - 3864 + 3863 ], "__typename": [ - 75 + 74 ] }, "servers_select_column": {}, @@ -74934,16 +75780,16 @@ export default { "servers_select_column_servers_aggregate_bool_exp_bool_or_arguments_columns": {}, "servers_set_input": { "api_password": [ - 3864 + 3863 ], "boot_status": [ - 75 + 74 ], "boot_status_detail": [ - 75 + 74 ], "connect_password": [ - 75 + 74 ], "connected": [ 3 @@ -74952,61 +75798,61 @@ export default { 3 ], "game": [ - 75 + 74 ], "game_server_node_id": [ - 75 + 74 ], "host": [ - 75 + 74 ], "id": [ - 3864 + 3863 ], "is_dedicated": [ 3 ], "label": [ - 75 + 74 ], "max_players": [ 38 ], "offline_at": [ - 3467 + 3466 ], "plugin_version": [ - 75 + 74 ], "port": [ 38 ], "rcon_password": [ - 177 + 176 ], "rcon_status": [ 3 ], "region": [ - 75 + 74 ], "reserved_by_match_id": [ - 3864 + 3863 ], "steam_relay": [ - 75 + 74 ], "tv_port": [ 38 ], "type": [ - 871 + 870 ], "updated_at": [ - 3467 + 3466 ], "__typename": [ - 75 + 74 ] }, "servers_stddev_fields": { @@ -75020,21 +75866,21 @@ export default { 29 ], "__typename": [ - 75 + 74 ] }, "servers_stddev_order_by": { "max_players": [ - 2016 + 2015 ], "port": [ - 2016 + 2015 ], "tv_port": [ - 2016 + 2015 ], "__typename": [ - 75 + 74 ] }, "servers_stddev_pop_fields": { @@ -75048,21 +75894,21 @@ export default { 29 ], "__typename": [ - 75 + 74 ] }, "servers_stddev_pop_order_by": { "max_players": [ - 2016 + 2015 ], "port": [ - 2016 + 2015 ], "tv_port": [ - 2016 + 2015 ], "__typename": [ - 75 + 74 ] }, "servers_stddev_samp_fields": { @@ -75076,46 +75922,46 @@ export default { 29 ], "__typename": [ - 75 + 74 ] }, "servers_stddev_samp_order_by": { "max_players": [ - 2016 + 2015 ], "port": [ - 2016 + 2015 ], "tv_port": [ - 2016 + 2015 ], "__typename": [ - 75 + 74 ] }, "servers_stream_cursor_input": { "initial_value": [ - 3033 + 3032 ], "ordering": [ - 229 + 228 ], "__typename": [ - 75 + 74 ] }, "servers_stream_cursor_value_input": { "api_password": [ - 3864 + 3863 ], "boot_status": [ - 75 + 74 ], "boot_status_detail": [ - 75 + 74 ], "connect_password": [ - 75 + 74 ], "connected": [ 3 @@ -75124,61 +75970,61 @@ export default { 3 ], "game": [ - 75 + 74 ], "game_server_node_id": [ - 75 + 74 ], "host": [ - 75 + 74 ], "id": [ - 3864 + 3863 ], "is_dedicated": [ 3 ], "label": [ - 75 + 74 ], "max_players": [ 38 ], "offline_at": [ - 3467 + 3466 ], "plugin_version": [ - 75 + 74 ], "port": [ 38 ], "rcon_password": [ - 177 + 176 ], "rcon_status": [ 3 ], "region": [ - 75 + 74 ], "reserved_by_match_id": [ - 3864 + 3863 ], "steam_relay": [ - 75 + 74 ], "tv_port": [ 38 ], "type": [ - 871 + 870 ], "updated_at": [ - 3467 + 3466 ], "__typename": [ - 75 + 74 ] }, "servers_sum_fields": { @@ -75192,36 +76038,36 @@ export default { 38 ], "__typename": [ - 75 + 74 ] }, "servers_sum_order_by": { "max_players": [ - 2016 + 2015 ], "port": [ - 2016 + 2015 ], "tv_port": [ - 2016 + 2015 ], "__typename": [ - 75 + 74 ] }, "servers_update_column": {}, "servers_updates": { "_inc": [ - 3011 + 3010 ], "_set": [ - 3025 + 3024 ], "where": [ - 3009 + 3008 ], "__typename": [ - 75 + 74 ] }, "servers_var_pop_fields": { @@ -75235,21 +76081,21 @@ export default { 29 ], "__typename": [ - 75 + 74 ] }, "servers_var_pop_order_by": { "max_players": [ - 2016 + 2015 ], "port": [ - 2016 + 2015 ], "tv_port": [ - 2016 + 2015 ], "__typename": [ - 75 + 74 ] }, "servers_var_samp_fields": { @@ -75263,21 +76109,21 @@ export default { 29 ], "__typename": [ - 75 + 74 ] }, "servers_var_samp_order_by": { "max_players": [ - 2016 + 2015 ], "port": [ - 2016 + 2015 ], "tv_port": [ - 2016 + 2015 ], "__typename": [ - 75 + 74 ] }, "servers_variance_fields": { @@ -75291,43 +76137,43 @@ export default { 29 ], "__typename": [ - 75 + 74 ] }, "servers_variance_order_by": { "max_players": [ - 2016 + 2015 ], "port": [ - 2016 + 2015 ], "tv_port": [ - 2016 + 2015 ], "__typename": [ - 75 + 74 ] }, "settings": { "name": [ - 75 + 74 ], "value": [ - 75 + 74 ], "__typename": [ - 75 + 74 ] }, "settings_aggregate": { "aggregate": [ - 3046 + 3045 ], "nodes": [ - 3044 + 3043 ], "__typename": [ - 75 + 74 ] }, "settings_aggregate_fields": { @@ -75335,7 +76181,7 @@ export default { 38, { "columns": [ - 3056, + 3055, "[settings_select_column!]" ], "distinct": [ @@ -75344,67 +76190,67 @@ export default { } ], "max": [ - 3050 + 3049 ], "min": [ - 3051 + 3050 ], "__typename": [ - 75 + 74 ] }, "settings_bool_exp": { "_and": [ - 3047 + 3046 ], "_not": [ - 3047 + 3046 ], "_or": [ - 3047 + 3046 ], "name": [ - 77 + 76 ], "value": [ - 77 + 76 ], "__typename": [ - 75 + 74 ] }, "settings_constraint": {}, "settings_insert_input": { "name": [ - 75 + 74 ], "value": [ - 75 + 74 ], "__typename": [ - 75 + 74 ] }, "settings_max_fields": { "name": [ - 75 + 74 ], "value": [ - 75 + 74 ], "__typename": [ - 75 + 74 ] }, "settings_min_fields": { "name": [ - 75 + 74 ], "value": [ - 75 + 74 ], "__typename": [ - 75 + 74 ] }, "settings_mutation_response": { @@ -75412,154 +76258,154 @@ export default { 38 ], "returning": [ - 3044 + 3043 ], "__typename": [ - 75 + 74 ] }, "settings_on_conflict": { "constraint": [ - 3048 + 3047 ], "update_columns": [ - 3060 + 3059 ], "where": [ - 3047 + 3046 ], "__typename": [ - 75 + 74 ] }, "settings_order_by": { "name": [ - 2016 + 2015 ], "value": [ - 2016 + 2015 ], "__typename": [ - 75 + 74 ] }, "settings_pk_columns_input": { "name": [ - 75 + 74 ], "__typename": [ - 75 + 74 ] }, "settings_select_column": {}, "settings_set_input": { "name": [ - 75 + 74 ], "value": [ - 75 + 74 ], "__typename": [ - 75 + 74 ] }, "settings_stream_cursor_input": { "initial_value": [ - 3059 + 3058 ], "ordering": [ - 229 + 228 ], "__typename": [ - 75 + 74 ] }, "settings_stream_cursor_value_input": { "name": [ - 75 + 74 ], "value": [ - 75 + 74 ], "__typename": [ - 75 + 74 ] }, "settings_update_column": {}, "settings_updates": { "_set": [ - 3057 + 3056 ], "where": [ - 3047 + 3046 ], "__typename": [ - 75 + 74 ] }, "steam_account_claims": { "created_at": [ - 3467 + 3466 ], "id": [ - 3864 + 3863 ], "k8s_job_name": [ - 75 + 74 ], "node": [ - 1118 + 1117 ], "node_id": [ - 75 + 74 ], "purpose": [ - 75 + 74 ], "steam_account": [ - 3086 + 3085 ], "steam_account_id": [ - 3864 + 3863 ], "__typename": [ - 75 + 74 ] }, "steam_account_claims_aggregate": { "aggregate": [ - 3066 + 3065 ], "nodes": [ - 3062 + 3061 ], "__typename": [ - 75 + 74 ] }, "steam_account_claims_aggregate_bool_exp": { "count": [ - 3065 + 3064 ], "__typename": [ - 75 + 74 ] }, "steam_account_claims_aggregate_bool_exp_count": { "arguments": [ - 3080 + 3079 ], "distinct": [ 3 ], "filter": [ - 3069 + 3068 ], "predicate": [ 39 ], "__typename": [ - 75 + 74 ] }, "steam_account_claims_aggregate_fields": { @@ -75567,7 +76413,7 @@ export default { 38, { "columns": [ - 3080, + 3079, "[steam_account_claims_select_column!]" ], "distinct": [ @@ -75576,198 +76422,198 @@ export default { } ], "max": [ - 3072 + 3071 ], "min": [ - 3074 + 3073 ], "__typename": [ - 75 + 74 ] }, "steam_account_claims_aggregate_order_by": { "count": [ - 2016 + 2015 ], "max": [ - 3073 + 3072 ], "min": [ - 3075 + 3074 ], "__typename": [ - 75 + 74 ] }, "steam_account_claims_arr_rel_insert_input": { "data": [ - 3071 + 3070 ], "on_conflict": [ - 3077 + 3076 ], "__typename": [ - 75 + 74 ] }, "steam_account_claims_bool_exp": { "_and": [ - 3069 + 3068 ], "_not": [ - 3069 + 3068 ], "_or": [ - 3069 + 3068 ], "created_at": [ - 3468 + 3467 ], "id": [ - 3866 + 3865 ], "k8s_job_name": [ - 77 + 76 ], "node": [ - 1130 + 1129 ], "node_id": [ - 77 + 76 ], "purpose": [ - 77 + 76 ], "steam_account": [ - 3090 + 3089 ], "steam_account_id": [ - 3866 + 3865 ], "__typename": [ - 75 + 74 ] }, "steam_account_claims_constraint": {}, "steam_account_claims_insert_input": { "created_at": [ - 3467 + 3466 ], "id": [ - 3864 + 3863 ], "k8s_job_name": [ - 75 + 74 ], "node": [ - 1142 + 1141 ], "node_id": [ - 75 + 74 ], "purpose": [ - 75 + 74 ], "steam_account": [ - 3097 + 3096 ], "steam_account_id": [ - 3864 + 3863 ], "__typename": [ - 75 + 74 ] }, "steam_account_claims_max_fields": { "created_at": [ - 3467 + 3466 ], "id": [ - 3864 + 3863 ], "k8s_job_name": [ - 75 + 74 ], "node_id": [ - 75 + 74 ], "purpose": [ - 75 + 74 ], "steam_account_id": [ - 3864 + 3863 ], "__typename": [ - 75 + 74 ] }, "steam_account_claims_max_order_by": { "created_at": [ - 2016 + 2015 ], "id": [ - 2016 + 2015 ], "k8s_job_name": [ - 2016 + 2015 ], "node_id": [ - 2016 + 2015 ], "purpose": [ - 2016 + 2015 ], "steam_account_id": [ - 2016 + 2015 ], "__typename": [ - 75 + 74 ] }, "steam_account_claims_min_fields": { "created_at": [ - 3467 + 3466 ], "id": [ - 3864 + 3863 ], "k8s_job_name": [ - 75 + 74 ], "node_id": [ - 75 + 74 ], "purpose": [ - 75 + 74 ], "steam_account_id": [ - 3864 + 3863 ], "__typename": [ - 75 + 74 ] }, "steam_account_claims_min_order_by": { "created_at": [ - 2016 + 2015 ], "id": [ - 2016 + 2015 ], "k8s_job_name": [ - 2016 + 2015 ], "node_id": [ - 2016 + 2015 ], "purpose": [ - 2016 + 2015 ], "steam_account_id": [ - 2016 + 2015 ], "__typename": [ - 75 + 74 ] }, "steam_account_claims_mutation_response": { @@ -75775,139 +76621,139 @@ export default { 38 ], "returning": [ - 3062 + 3061 ], "__typename": [ - 75 + 74 ] }, "steam_account_claims_on_conflict": { "constraint": [ - 3070 + 3069 ], "update_columns": [ - 3084 + 3083 ], "where": [ - 3069 + 3068 ], "__typename": [ - 75 + 74 ] }, "steam_account_claims_order_by": { "created_at": [ - 2016 + 2015 ], "id": [ - 2016 + 2015 ], "k8s_job_name": [ - 2016 + 2015 ], "node": [ - 1144 + 1143 ], "node_id": [ - 2016 + 2015 ], "purpose": [ - 2016 + 2015 ], "steam_account": [ - 3099 + 3098 ], "steam_account_id": [ - 2016 + 2015 ], "__typename": [ - 75 + 74 ] }, "steam_account_claims_pk_columns_input": { "id": [ - 3864 + 3863 ], "__typename": [ - 75 + 74 ] }, "steam_account_claims_select_column": {}, "steam_account_claims_set_input": { "created_at": [ - 3467 + 3466 ], "id": [ - 3864 + 3863 ], "k8s_job_name": [ - 75 + 74 ], "node_id": [ - 75 + 74 ], "purpose": [ - 75 + 74 ], "steam_account_id": [ - 3864 + 3863 ], "__typename": [ - 75 + 74 ] }, "steam_account_claims_stream_cursor_input": { "initial_value": [ - 3083 + 3082 ], "ordering": [ - 229 + 228 ], "__typename": [ - 75 + 74 ] }, "steam_account_claims_stream_cursor_value_input": { "created_at": [ - 3467 + 3466 ], "id": [ - 3864 + 3863 ], "k8s_job_name": [ - 75 + 74 ], "node_id": [ - 75 + 74 ], "purpose": [ - 75 + 74 ], "steam_account_id": [ - 3864 + 3863 ], "__typename": [ - 75 + 74 ] }, "steam_account_claims_update_column": {}, "steam_account_claims_updates": { "_set": [ - 3081 + 3080 ], "where": [ - 3069 + 3068 ], "__typename": [ - 75 + 74 ] }, "steam_accounts": { "claims": [ - 3062, + 3061, { "distinct_on": [ - 3080, + 3079, "[steam_account_claims_select_column!]" ], "limit": [ @@ -75917,19 +76763,19 @@ export default { 38 ], "order_by": [ - 3078, + 3077, "[steam_account_claims_order_by!]" ], "where": [ - 3069 + 3068 ] } ], "claims_aggregate": [ - 3063, + 3062, { "distinct_on": [ - 3080, + 3079, "[steam_account_claims_select_column!]" ], "limit": [ @@ -75939,68 +76785,71 @@ export default { 38 ], "order_by": [ - 3078, + 3077, "[steam_account_claims_order_by!]" ], "where": [ - 3069 + 3068 ] } ], "created_at": [ - 3467 + 3466 ], "friend_capacity": [ 38 ], "id": [ - 3864 + 3863 ], "last_node": [ - 1118 + 1117 ], "last_node_id": [ - 75 + 74 ], "password": [ - 75 + 74 ], "role": [ - 75 + 74 + ], + "steam_level": [ + 38 ], "steamid64": [ - 174 + 173 ], "updated_at": [ - 3467 + 3466 ], "username": [ - 75 + 74 ], "__typename": [ - 75 + 74 ] }, "steam_accounts_aggregate": { "aggregate": [ - 3088 + 3087 ], "nodes": [ - 3086 + 3085 ], "__typename": [ - 75 + 74 ] }, "steam_accounts_aggregate_fields": { "avg": [ - 3089 + 3088 ], "count": [ 38, { "columns": [ - 3101, + 3100, "[steam_accounts_select_column!]" ], "distinct": [ @@ -76009,95 +76858,101 @@ export default { } ], "max": [ - 3094 + 3093 ], "min": [ - 3095 + 3094 ], "stddev": [ - 3103 + 3102 ], "stddev_pop": [ - 3104 + 3103 ], "stddev_samp": [ - 3105 + 3104 ], "sum": [ - 3108 + 3107 ], "var_pop": [ - 3111 + 3110 ], "var_samp": [ - 3112 + 3111 ], "variance": [ - 3113 + 3112 ], "__typename": [ - 75 + 74 ] }, "steam_accounts_avg_fields": { "friend_capacity": [ 29 ], + "steam_level": [ + 29 + ], "steamid64": [ 29 ], "__typename": [ - 75 + 74 ] }, "steam_accounts_bool_exp": { "_and": [ - 3090 + 3089 ], "_not": [ - 3090 + 3089 ], "_or": [ - 3090 + 3089 ], "claims": [ - 3069 + 3068 ], "claims_aggregate": [ - 3064 + 3063 ], "created_at": [ - 3468 + 3467 ], "friend_capacity": [ 39 ], "id": [ - 3866 + 3865 ], "last_node": [ - 1130 + 1129 ], "last_node_id": [ - 77 + 76 ], "password": [ - 77 + 76 ], "role": [ - 77 + 76 + ], + "steam_level": [ + 39 ], "steamid64": [ - 176 + 175 ], "updated_at": [ - 3468 + 3467 ], "username": [ - 77 + 76 ], "__typename": [ - 75 + 74 ] }, "steam_accounts_constraint": {}, @@ -76105,113 +76960,125 @@ export default { "friend_capacity": [ 38 ], + "steam_level": [ + 38 + ], "steamid64": [ - 174 + 173 ], "__typename": [ - 75 + 74 ] }, "steam_accounts_insert_input": { "claims": [ - 3068 + 3067 ], "created_at": [ - 3467 + 3466 ], "friend_capacity": [ 38 ], "id": [ - 3864 + 3863 ], "last_node": [ - 1142 + 1141 ], "last_node_id": [ - 75 + 74 ], "password": [ - 75 + 74 ], "role": [ - 75 + 74 + ], + "steam_level": [ + 38 ], "steamid64": [ - 174 + 173 ], "updated_at": [ - 3467 + 3466 ], "username": [ - 75 + 74 ], "__typename": [ - 75 + 74 ] }, "steam_accounts_max_fields": { "created_at": [ - 3467 + 3466 ], "friend_capacity": [ 38 ], "id": [ - 3864 + 3863 ], "last_node_id": [ - 75 + 74 ], "password": [ - 75 + 74 ], "role": [ - 75 + 74 + ], + "steam_level": [ + 38 ], "steamid64": [ - 174 + 173 ], "updated_at": [ - 3467 + 3466 ], "username": [ - 75 + 74 ], "__typename": [ - 75 + 74 ] }, "steam_accounts_min_fields": { "created_at": [ - 3467 + 3466 ], "friend_capacity": [ 38 ], "id": [ - 3864 + 3863 ], "last_node_id": [ - 75 + 74 ], "password": [ - 75 + 74 ], "role": [ - 75 + 74 + ], + "steam_level": [ + 38 ], "steamid64": [ - 174 + 173 ], "updated_at": [ - 3467 + 3466 ], "username": [ - 75 + 74 ], "__typename": [ - 75 + 74 ] }, "steam_accounts_mutation_response": { @@ -76219,306 +77086,336 @@ export default { 38 ], "returning": [ - 3086 + 3085 ], "__typename": [ - 75 + 74 ] }, "steam_accounts_obj_rel_insert_input": { "data": [ - 3093 + 3092 ], "on_conflict": [ - 3098 + 3097 ], "__typename": [ - 75 + 74 ] }, "steam_accounts_on_conflict": { "constraint": [ - 3091 + 3090 ], "update_columns": [ - 3109 + 3108 ], "where": [ - 3090 + 3089 ], "__typename": [ - 75 + 74 ] }, "steam_accounts_order_by": { "claims_aggregate": [ - 3067 + 3066 ], "created_at": [ - 2016 + 2015 ], "friend_capacity": [ - 2016 + 2015 ], "id": [ - 2016 + 2015 ], "last_node": [ - 1144 + 1143 ], "last_node_id": [ - 2016 + 2015 ], "password": [ - 2016 + 2015 ], "role": [ - 2016 + 2015 + ], + "steam_level": [ + 2015 ], "steamid64": [ - 2016 + 2015 ], "updated_at": [ - 2016 + 2015 ], "username": [ - 2016 + 2015 ], "__typename": [ - 75 + 74 ] }, "steam_accounts_pk_columns_input": { "id": [ - 3864 + 3863 ], "__typename": [ - 75 + 74 ] }, "steam_accounts_select_column": {}, "steam_accounts_set_input": { "created_at": [ - 3467 + 3466 ], "friend_capacity": [ 38 ], "id": [ - 3864 + 3863 ], "last_node_id": [ - 75 + 74 ], "password": [ - 75 + 74 ], "role": [ - 75 + 74 + ], + "steam_level": [ + 38 ], "steamid64": [ - 174 + 173 ], "updated_at": [ - 3467 + 3466 ], "username": [ - 75 + 74 ], "__typename": [ - 75 + 74 ] }, "steam_accounts_stddev_fields": { "friend_capacity": [ 29 ], + "steam_level": [ + 29 + ], "steamid64": [ 29 ], "__typename": [ - 75 + 74 ] }, "steam_accounts_stddev_pop_fields": { "friend_capacity": [ 29 ], + "steam_level": [ + 29 + ], "steamid64": [ 29 ], "__typename": [ - 75 + 74 ] }, "steam_accounts_stddev_samp_fields": { "friend_capacity": [ 29 ], + "steam_level": [ + 29 + ], "steamid64": [ 29 ], "__typename": [ - 75 + 74 ] }, "steam_accounts_stream_cursor_input": { "initial_value": [ - 3107 + 3106 ], "ordering": [ - 229 + 228 ], "__typename": [ - 75 + 74 ] }, "steam_accounts_stream_cursor_value_input": { "created_at": [ - 3467 + 3466 ], "friend_capacity": [ 38 ], "id": [ - 3864 + 3863 ], "last_node_id": [ - 75 + 74 ], "password": [ - 75 + 74 ], "role": [ - 75 + 74 + ], + "steam_level": [ + 38 ], "steamid64": [ - 174 + 173 ], "updated_at": [ - 3467 + 3466 ], "username": [ - 75 + 74 ], "__typename": [ - 75 + 74 ] }, "steam_accounts_sum_fields": { "friend_capacity": [ 38 ], + "steam_level": [ + 38 + ], "steamid64": [ - 174 + 173 ], "__typename": [ - 75 + 74 ] }, "steam_accounts_update_column": {}, "steam_accounts_updates": { "_inc": [ - 3092 + 3091 ], "_set": [ - 3102 + 3101 ], "where": [ - 3090 + 3089 ], "__typename": [ - 75 + 74 ] }, "steam_accounts_var_pop_fields": { "friend_capacity": [ 29 ], + "steam_level": [ + 29 + ], "steamid64": [ 29 ], "__typename": [ - 75 + 74 ] }, "steam_accounts_var_samp_fields": { "friend_capacity": [ 29 ], + "steam_level": [ + 29 + ], "steamid64": [ 29 ], "__typename": [ - 75 + 74 ] }, "steam_accounts_variance_fields": { "friend_capacity": [ 29 ], + "steam_level": [ + 29 + ], "steamid64": [ 29 ], "__typename": [ - 75 + 74 ] }, "system_alerts": { "created_at": [ - 3467 + 3466 ], "created_by": [ - 174 + 173 ], "dismissible": [ 3 ], "expires_at": [ - 3467 + 3466 ], "id": [ - 3864 + 3863 ], "is_active": [ 3 ], "message": [ - 75 + 74 ], "title": [ - 75 + 74 ], "type": [ - 911 + 910 ], "updated_at": [ - 3467 + 3466 ], "__typename": [ - 75 + 74 ] }, "system_alerts_aggregate": { "aggregate": [ - 3116 + 3115 ], "nodes": [ - 3114 + 3113 ], "__typename": [ - 75 + 74 ] }, "system_alerts_aggregate_fields": { "avg": [ - 3117 + 3116 ], "count": [ 38, { "columns": [ - 3128, + 3127, "[system_alerts_select_column!]" ], "distinct": [ @@ -76527,34 +77424,34 @@ export default { } ], "max": [ - 3122 + 3121 ], "min": [ - 3123 + 3122 ], "stddev": [ - 3130 + 3129 ], "stddev_pop": [ - 3131 + 3130 ], "stddev_samp": [ - 3132 + 3131 ], "sum": [ - 3135 + 3134 ], "var_pop": [ - 3138 + 3137 ], "var_samp": [ - 3139 + 3138 ], "variance": [ - 3140 + 3139 ], "__typename": [ - 75 + 74 ] }, "system_alerts_avg_fields": { @@ -76562,147 +77459,147 @@ export default { 29 ], "__typename": [ - 75 + 74 ] }, "system_alerts_bool_exp": { "_and": [ - 3118 + 3117 ], "_not": [ - 3118 + 3117 ], "_or": [ - 3118 + 3117 ], "created_at": [ - 3468 + 3467 ], "created_by": [ - 176 + 175 ], "dismissible": [ 4 ], "expires_at": [ - 3468 + 3467 ], "id": [ - 3866 + 3865 ], "is_active": [ 4 ], "message": [ - 77 + 76 ], "title": [ - 77 + 76 ], "type": [ - 912 + 911 ], "updated_at": [ - 3468 + 3467 ], "__typename": [ - 75 + 74 ] }, "system_alerts_constraint": {}, "system_alerts_inc_input": { "created_by": [ - 174 + 173 ], "__typename": [ - 75 + 74 ] }, "system_alerts_insert_input": { "created_at": [ - 3467 + 3466 ], "created_by": [ - 174 + 173 ], "dismissible": [ 3 ], "expires_at": [ - 3467 + 3466 ], "id": [ - 3864 + 3863 ], "is_active": [ 3 ], "message": [ - 75 + 74 ], "title": [ - 75 + 74 ], "type": [ - 911 + 910 ], "updated_at": [ - 3467 + 3466 ], "__typename": [ - 75 + 74 ] }, "system_alerts_max_fields": { "created_at": [ - 3467 + 3466 ], "created_by": [ - 174 + 173 ], "expires_at": [ - 3467 + 3466 ], "id": [ - 3864 + 3863 ], "message": [ - 75 + 74 ], "title": [ - 75 + 74 ], "updated_at": [ - 3467 + 3466 ], "__typename": [ - 75 + 74 ] }, "system_alerts_min_fields": { "created_at": [ - 3467 + 3466 ], "created_by": [ - 174 + 173 ], "expires_at": [ - 3467 + 3466 ], "id": [ - 3864 + 3863 ], "message": [ - 75 + 74 ], "title": [ - 75 + 74 ], "updated_at": [ - 3467 + 3466 ], "__typename": [ - 75 + 74 ] }, "system_alerts_mutation_response": { @@ -76710,103 +77607,103 @@ export default { 38 ], "returning": [ - 3114 + 3113 ], "__typename": [ - 75 + 74 ] }, "system_alerts_on_conflict": { "constraint": [ - 3119 + 3118 ], "update_columns": [ - 3136 + 3135 ], "where": [ - 3118 + 3117 ], "__typename": [ - 75 + 74 ] }, "system_alerts_order_by": { "created_at": [ - 2016 + 2015 ], "created_by": [ - 2016 + 2015 ], "dismissible": [ - 2016 + 2015 ], "expires_at": [ - 2016 + 2015 ], "id": [ - 2016 + 2015 ], "is_active": [ - 2016 + 2015 ], "message": [ - 2016 + 2015 ], "title": [ - 2016 + 2015 ], "type": [ - 2016 + 2015 ], "updated_at": [ - 2016 + 2015 ], "__typename": [ - 75 + 74 ] }, "system_alerts_pk_columns_input": { "id": [ - 3864 + 3863 ], "__typename": [ - 75 + 74 ] }, "system_alerts_select_column": {}, "system_alerts_set_input": { "created_at": [ - 3467 + 3466 ], "created_by": [ - 174 + 173 ], "dismissible": [ 3 ], "expires_at": [ - 3467 + 3466 ], "id": [ - 3864 + 3863 ], "is_active": [ 3 ], "message": [ - 75 + 74 ], "title": [ - 75 + 74 ], "type": [ - 911 + 910 ], "updated_at": [ - 3467 + 3466 ], "__typename": [ - 75 + 74 ] }, "system_alerts_stddev_fields": { @@ -76814,7 +77711,7 @@ export default { 29 ], "__typename": [ - 75 + 74 ] }, "system_alerts_stddev_pop_fields": { @@ -76822,7 +77719,7 @@ export default { 29 ], "__typename": [ - 75 + 74 ] }, "system_alerts_stddev_samp_fields": { @@ -76830,76 +77727,76 @@ export default { 29 ], "__typename": [ - 75 + 74 ] }, "system_alerts_stream_cursor_input": { "initial_value": [ - 3134 + 3133 ], "ordering": [ - 229 + 228 ], "__typename": [ - 75 + 74 ] }, "system_alerts_stream_cursor_value_input": { "created_at": [ - 3467 + 3466 ], "created_by": [ - 174 + 173 ], "dismissible": [ 3 ], "expires_at": [ - 3467 + 3466 ], "id": [ - 3864 + 3863 ], "is_active": [ 3 ], "message": [ - 75 + 74 ], "title": [ - 75 + 74 ], "type": [ - 911 + 910 ], "updated_at": [ - 3467 + 3466 ], "__typename": [ - 75 + 74 ] }, "system_alerts_sum_fields": { "created_by": [ - 174 + 173 ], "__typename": [ - 75 + 74 ] }, "system_alerts_update_column": {}, "system_alerts_updates": { "_inc": [ - 3120 + 3119 ], "_set": [ - 3129 + 3128 ], "where": [ - 3118 + 3117 ], "__typename": [ - 75 + 74 ] }, "system_alerts_var_pop_fields": { @@ -76907,7 +77804,7 @@ export default { 29 ], "__typename": [ - 75 + 74 ] }, "system_alerts_var_samp_fields": { @@ -76915,7 +77812,7 @@ export default { 29 ], "__typename": [ - 75 + 74 ] }, "system_alerts_variance_fields": { @@ -76923,83 +77820,83 @@ export default { 29 ], "__typename": [ - 75 + 74 ] }, "team_invites": { "created_at": [ - 3467 + 3466 ], "id": [ - 3864 + 3863 ], "invited_by": [ - 2915 + 2914 ], "invited_by_player_steam_id": [ - 174 + 173 ], "player": [ - 2915 + 2914 ], "steam_id": [ - 174 + 173 ], "team": [ - 3424 + 3423 ], "team_id": [ - 3864 + 3863 ], "__typename": [ - 75 + 74 ] }, "team_invites_aggregate": { "aggregate": [ - 3145 + 3144 ], "nodes": [ - 3141 + 3140 ], "__typename": [ - 75 + 74 ] }, "team_invites_aggregate_bool_exp": { "count": [ - 3144 + 3143 ], "__typename": [ - 75 + 74 ] }, "team_invites_aggregate_bool_exp_count": { "arguments": [ - 3162 + 3161 ], "distinct": [ 3 ], "filter": [ - 3150 + 3149 ], "predicate": [ 39 ], "__typename": [ - 75 + 74 ] }, "team_invites_aggregate_fields": { "avg": [ - 3148 + 3147 ], "count": [ 38, { "columns": [ - 3162, + 3161, "[team_invites_select_column!]" ], "distinct": [ @@ -77008,83 +77905,83 @@ export default { } ], "max": [ - 3154 + 3153 ], "min": [ - 3156 + 3155 ], "stddev": [ - 3164 + 3163 ], "stddev_pop": [ - 3166 + 3165 ], "stddev_samp": [ - 3168 + 3167 ], "sum": [ - 3172 + 3171 ], "var_pop": [ - 3176 + 3175 ], "var_samp": [ - 3178 + 3177 ], "variance": [ - 3180 + 3179 ], "__typename": [ - 75 + 74 ] }, "team_invites_aggregate_order_by": { "avg": [ - 3149 + 3148 ], "count": [ - 2016 + 2015 ], "max": [ - 3155 + 3154 ], "min": [ - 3157 + 3156 ], "stddev": [ - 3165 + 3164 ], "stddev_pop": [ - 3167 + 3166 ], "stddev_samp": [ - 3169 + 3168 ], "sum": [ - 3173 + 3172 ], "var_pop": [ - 3177 + 3176 ], "var_samp": [ - 3179 + 3178 ], "variance": [ - 3181 + 3180 ], "__typename": [ - 75 + 74 ] }, "team_invites_arr_rel_insert_input": { "data": [ - 3153 + 3152 ], "on_conflict": [ - 3159 + 3158 ], "__typename": [ - 75 + 74 ] }, "team_invites_avg_fields": { @@ -77095,177 +77992,177 @@ export default { 29 ], "__typename": [ - 75 + 74 ] }, "team_invites_avg_order_by": { "invited_by_player_steam_id": [ - 2016 + 2015 ], "steam_id": [ - 2016 + 2015 ], "__typename": [ - 75 + 74 ] }, "team_invites_bool_exp": { "_and": [ - 3150 + 3149 ], "_not": [ - 3150 + 3149 ], "_or": [ - 3150 + 3149 ], "created_at": [ - 3468 + 3467 ], "id": [ - 3866 + 3865 ], "invited_by": [ - 2919 + 2918 ], "invited_by_player_steam_id": [ - 176 + 175 ], "player": [ - 2919 + 2918 ], "steam_id": [ - 176 + 175 ], "team": [ - 3433 + 3432 ], "team_id": [ - 3866 + 3865 ], "__typename": [ - 75 + 74 ] }, "team_invites_constraint": {}, "team_invites_inc_input": { "invited_by_player_steam_id": [ - 174 + 173 ], "steam_id": [ - 174 + 173 ], "__typename": [ - 75 + 74 ] }, "team_invites_insert_input": { "created_at": [ - 3467 + 3466 ], "id": [ - 3864 + 3863 ], "invited_by": [ - 2926 + 2925 ], "invited_by_player_steam_id": [ - 174 + 173 ], "player": [ - 2926 + 2925 ], "steam_id": [ - 174 + 173 ], "team": [ - 3442 + 3441 ], "team_id": [ - 3864 + 3863 ], "__typename": [ - 75 + 74 ] }, "team_invites_max_fields": { "created_at": [ - 3467 + 3466 ], "id": [ - 3864 + 3863 ], "invited_by_player_steam_id": [ - 174 + 173 ], "steam_id": [ - 174 + 173 ], "team_id": [ - 3864 + 3863 ], "__typename": [ - 75 + 74 ] }, "team_invites_max_order_by": { "created_at": [ - 2016 + 2015 ], "id": [ - 2016 + 2015 ], "invited_by_player_steam_id": [ - 2016 + 2015 ], "steam_id": [ - 2016 + 2015 ], "team_id": [ - 2016 + 2015 ], "__typename": [ - 75 + 74 ] }, "team_invites_min_fields": { "created_at": [ - 3467 + 3466 ], "id": [ - 3864 + 3863 ], "invited_by_player_steam_id": [ - 174 + 173 ], "steam_id": [ - 174 + 173 ], "team_id": [ - 3864 + 3863 ], "__typename": [ - 75 + 74 ] }, "team_invites_min_order_by": { "created_at": [ - 2016 + 2015 ], "id": [ - 2016 + 2015 ], "invited_by_player_steam_id": [ - 2016 + 2015 ], "steam_id": [ - 2016 + 2015 ], "team_id": [ - 2016 + 2015 ], "__typename": [ - 75 + 74 ] }, "team_invites_mutation_response": { @@ -77273,82 +78170,82 @@ export default { 38 ], "returning": [ - 3141 + 3140 ], "__typename": [ - 75 + 74 ] }, "team_invites_on_conflict": { "constraint": [ - 3151 + 3150 ], "update_columns": [ - 3174 + 3173 ], "where": [ - 3150 + 3149 ], "__typename": [ - 75 + 74 ] }, "team_invites_order_by": { "created_at": [ - 2016 + 2015 ], "id": [ - 2016 + 2015 ], "invited_by": [ - 2928 + 2927 ], "invited_by_player_steam_id": [ - 2016 + 2015 ], "player": [ - 2928 + 2927 ], "steam_id": [ - 2016 + 2015 ], "team": [ - 3444 + 3443 ], "team_id": [ - 2016 + 2015 ], "__typename": [ - 75 + 74 ] }, "team_invites_pk_columns_input": { "id": [ - 3864 + 3863 ], "__typename": [ - 75 + 74 ] }, "team_invites_select_column": {}, "team_invites_set_input": { "created_at": [ - 3467 + 3466 ], "id": [ - 3864 + 3863 ], "invited_by_player_steam_id": [ - 174 + 173 ], "steam_id": [ - 174 + 173 ], "team_id": [ - 3864 + 3863 ], "__typename": [ - 75 + 74 ] }, "team_invites_stddev_fields": { @@ -77359,18 +78256,18 @@ export default { 29 ], "__typename": [ - 75 + 74 ] }, "team_invites_stddev_order_by": { "invited_by_player_steam_id": [ - 2016 + 2015 ], "steam_id": [ - 2016 + 2015 ], "__typename": [ - 75 + 74 ] }, "team_invites_stddev_pop_fields": { @@ -77381,18 +78278,18 @@ export default { 29 ], "__typename": [ - 75 + 74 ] }, "team_invites_stddev_pop_order_by": { "invited_by_player_steam_id": [ - 2016 + 2015 ], "steam_id": [ - 2016 + 2015 ], "__typename": [ - 75 + 74 ] }, "team_invites_stddev_samp_fields": { @@ -77403,86 +78300,86 @@ export default { 29 ], "__typename": [ - 75 + 74 ] }, "team_invites_stddev_samp_order_by": { "invited_by_player_steam_id": [ - 2016 + 2015 ], "steam_id": [ - 2016 + 2015 ], "__typename": [ - 75 + 74 ] }, "team_invites_stream_cursor_input": { "initial_value": [ - 3171 + 3170 ], "ordering": [ - 229 + 228 ], "__typename": [ - 75 + 74 ] }, "team_invites_stream_cursor_value_input": { "created_at": [ - 3467 + 3466 ], "id": [ - 3864 + 3863 ], "invited_by_player_steam_id": [ - 174 + 173 ], "steam_id": [ - 174 + 173 ], "team_id": [ - 3864 + 3863 ], "__typename": [ - 75 + 74 ] }, "team_invites_sum_fields": { "invited_by_player_steam_id": [ - 174 + 173 ], "steam_id": [ - 174 + 173 ], "__typename": [ - 75 + 74 ] }, "team_invites_sum_order_by": { "invited_by_player_steam_id": [ - 2016 + 2015 ], "steam_id": [ - 2016 + 2015 ], "__typename": [ - 75 + 74 ] }, "team_invites_update_column": {}, "team_invites_updates": { "_inc": [ - 3152 + 3151 ], "_set": [ - 3163 + 3162 ], "where": [ - 3150 + 3149 ], "__typename": [ - 75 + 74 ] }, "team_invites_var_pop_fields": { @@ -77493,18 +78390,18 @@ export default { 29 ], "__typename": [ - 75 + 74 ] }, "team_invites_var_pop_order_by": { "invited_by_player_steam_id": [ - 2016 + 2015 ], "steam_id": [ - 2016 + 2015 ], "__typename": [ - 75 + 74 ] }, "team_invites_var_samp_fields": { @@ -77515,18 +78412,18 @@ export default { 29 ], "__typename": [ - 75 + 74 ] }, "team_invites_var_samp_order_by": { "invited_by_player_steam_id": [ - 2016 + 2015 ], "steam_id": [ - 2016 + 2015 ], "__typename": [ - 75 + 74 ] }, "team_invites_variance_fields": { @@ -77537,18 +78434,18 @@ export default { 29 ], "__typename": [ - 75 + 74 ] }, "team_invites_variance_order_by": { "invited_by_player_steam_id": [ - 2016 + 2015 ], "steam_id": [ - 2016 + 2015 ], "__typename": [ - 75 + 74 ] }, "team_roster": { @@ -77556,115 +78453,115 @@ export default { 3 ], "player": [ - 2915 + 2914 ], "player_steam_id": [ - 174 + 173 ], "role": [ - 931 + 930 ], "roster_image_url": [ - 75 + 74 ], "status": [ - 952 + 951 ], "team": [ - 3424 + 3423 ], "team_id": [ - 3864 + 3863 ], "__typename": [ - 75 + 74 ] }, "team_roster_aggregate": { "aggregate": [ - 3188 + 3187 ], "nodes": [ - 3182 + 3181 ], "__typename": [ - 75 + 74 ] }, "team_roster_aggregate_bool_exp": { "bool_and": [ - 3185 + 3184 ], "bool_or": [ - 3186 + 3185 ], "count": [ - 3187 + 3186 ], "__typename": [ - 75 + 74 ] }, "team_roster_aggregate_bool_exp_bool_and": { "arguments": [ - 3206 + 3205 ], "distinct": [ 3 ], "filter": [ - 3193 + 3192 ], "predicate": [ 4 ], "__typename": [ - 75 + 74 ] }, "team_roster_aggregate_bool_exp_bool_or": { "arguments": [ - 3207 + 3206 ], "distinct": [ 3 ], "filter": [ - 3193 + 3192 ], "predicate": [ 4 ], "__typename": [ - 75 + 74 ] }, "team_roster_aggregate_bool_exp_count": { "arguments": [ - 3205 + 3204 ], "distinct": [ 3 ], "filter": [ - 3193 + 3192 ], "predicate": [ 39 ], "__typename": [ - 75 + 74 ] }, "team_roster_aggregate_fields": { "avg": [ - 3191 + 3190 ], "count": [ 38, { "columns": [ - 3205, + 3204, "[team_roster_select_column!]" ], "distinct": [ @@ -77672,6 +78569,44 @@ export default { ] } ], + "max": [ + 3196 + ], + "min": [ + 3198 + ], + "stddev": [ + 3208 + ], + "stddev_pop": [ + 3210 + ], + "stddev_samp": [ + 3212 + ], + "sum": [ + 3216 + ], + "var_pop": [ + 3220 + ], + "var_samp": [ + 3222 + ], + "variance": [ + 3224 + ], + "__typename": [ + 74 + ] + }, + "team_roster_aggregate_order_by": { + "avg": [ + 3191 + ], + "count": [ + 2015 + ], "max": [ 3197 ], @@ -77700,56 +78635,18 @@ export default { 3225 ], "__typename": [ - 75 - ] - }, - "team_roster_aggregate_order_by": { - "avg": [ - 3192 - ], - "count": [ - 2016 - ], - "max": [ - 3198 - ], - "min": [ - 3200 - ], - "stddev": [ - 3210 - ], - "stddev_pop": [ - 3212 - ], - "stddev_samp": [ - 3214 - ], - "sum": [ - 3218 - ], - "var_pop": [ - 3222 - ], - "var_samp": [ - 3224 - ], - "variance": [ - 3226 - ], - "__typename": [ - 75 + 74 ] }, "team_roster_arr_rel_insert_input": { "data": [ - 3196 + 3195 ], "on_conflict": [ - 3202 + 3201 ], "__typename": [ - 75 + 74 ] }, "team_roster_avg_fields": { @@ -77757,62 +78654,62 @@ export default { 29 ], "__typename": [ - 75 + 74 ] }, "team_roster_avg_order_by": { "player_steam_id": [ - 2016 + 2015 ], "__typename": [ - 75 + 74 ] }, "team_roster_bool_exp": { "_and": [ - 3193 + 3192 ], "_not": [ - 3193 + 3192 ], "_or": [ - 3193 + 3192 ], "coach": [ 4 ], "player": [ - 2919 + 2918 ], "player_steam_id": [ - 176 + 175 ], "role": [ - 932 + 931 ], "roster_image_url": [ - 77 + 76 ], "status": [ - 953 + 952 ], "team": [ - 3433 + 3432 ], "team_id": [ - 3866 + 3865 ], "__typename": [ - 75 + 74 ] }, "team_roster_constraint": {}, "team_roster_inc_input": { "player_steam_id": [ - 174 + 173 ], "__typename": [ - 75 + 74 ] }, "team_roster_insert_input": { @@ -77820,84 +78717,84 @@ export default { 3 ], "player": [ - 2926 + 2925 ], "player_steam_id": [ - 174 + 173 ], "role": [ - 931 + 930 ], "roster_image_url": [ - 75 + 74 ], "status": [ - 952 + 951 ], "team": [ - 3442 + 3441 ], "team_id": [ - 3864 + 3863 ], "__typename": [ - 75 + 74 ] }, "team_roster_max_fields": { "player_steam_id": [ - 174 + 173 ], "roster_image_url": [ - 75 + 74 ], "team_id": [ - 3864 + 3863 ], "__typename": [ - 75 + 74 ] }, "team_roster_max_order_by": { "player_steam_id": [ - 2016 + 2015 ], "roster_image_url": [ - 2016 + 2015 ], "team_id": [ - 2016 + 2015 ], "__typename": [ - 75 + 74 ] }, "team_roster_min_fields": { "player_steam_id": [ - 174 + 173 ], "roster_image_url": [ - 75 + 74 ], "team_id": [ - 3864 + 3863 ], "__typename": [ - 75 + 74 ] }, "team_roster_min_order_by": { "player_steam_id": [ - 2016 + 2015 ], "roster_image_url": [ - 2016 + 2015 ], "team_id": [ - 2016 + 2015 ], "__typename": [ - 75 + 74 ] }, "team_roster_mutation_response": { @@ -77905,64 +78802,64 @@ export default { 38 ], "returning": [ - 3182 + 3181 ], "__typename": [ - 75 + 74 ] }, "team_roster_on_conflict": { "constraint": [ - 3194 + 3193 ], "update_columns": [ - 3219 + 3218 ], "where": [ - 3193 + 3192 ], "__typename": [ - 75 + 74 ] }, "team_roster_order_by": { "coach": [ - 2016 + 2015 ], "player": [ - 2928 + 2927 ], "player_steam_id": [ - 2016 + 2015 ], "role": [ - 2016 + 2015 ], "roster_image_url": [ - 2016 + 2015 ], "status": [ - 2016 + 2015 ], "team": [ - 3444 + 3443 ], "team_id": [ - 2016 + 2015 ], "__typename": [ - 75 + 74 ] }, "team_roster_pk_columns_input": { "player_steam_id": [ - 174 + 173 ], "team_id": [ - 3864 + 3863 ], "__typename": [ - 75 + 74 ] }, "team_roster_select_column": {}, @@ -77973,22 +78870,22 @@ export default { 3 ], "player_steam_id": [ - 174 + 173 ], "role": [ - 931 + 930 ], "roster_image_url": [ - 75 + 74 ], "status": [ - 952 + 951 ], "team_id": [ - 3864 + 3863 ], "__typename": [ - 75 + 74 ] }, "team_roster_stddev_fields": { @@ -77996,15 +78893,15 @@ export default { 29 ], "__typename": [ - 75 + 74 ] }, "team_roster_stddev_order_by": { "player_steam_id": [ - 2016 + 2015 ], "__typename": [ - 75 + 74 ] }, "team_roster_stddev_pop_fields": { @@ -78012,15 +78909,15 @@ export default { 29 ], "__typename": [ - 75 + 74 ] }, "team_roster_stddev_pop_order_by": { "player_steam_id": [ - 2016 + 2015 ], "__typename": [ - 75 + 74 ] }, "team_roster_stddev_samp_fields": { @@ -78028,26 +78925,26 @@ export default { 29 ], "__typename": [ - 75 + 74 ] }, "team_roster_stddev_samp_order_by": { "player_steam_id": [ - 2016 + 2015 ], "__typename": [ - 75 + 74 ] }, "team_roster_stream_cursor_input": { "initial_value": [ - 3216 + 3215 ], "ordering": [ - 229 + 228 ], "__typename": [ - 75 + 74 ] }, "team_roster_stream_cursor_value_input": { @@ -78055,53 +78952,53 @@ export default { 3 ], "player_steam_id": [ - 174 + 173 ], "role": [ - 931 + 930 ], "roster_image_url": [ - 75 + 74 ], "status": [ - 952 + 951 ], "team_id": [ - 3864 + 3863 ], "__typename": [ - 75 + 74 ] }, "team_roster_sum_fields": { "player_steam_id": [ - 174 + 173 ], "__typename": [ - 75 + 74 ] }, "team_roster_sum_order_by": { "player_steam_id": [ - 2016 + 2015 ], "__typename": [ - 75 + 74 ] }, "team_roster_update_column": {}, "team_roster_updates": { "_inc": [ - 3195 + 3194 ], "_set": [ - 3208 + 3207 ], "where": [ - 3193 + 3192 ], "__typename": [ - 75 + 74 ] }, "team_roster_var_pop_fields": { @@ -78109,15 +79006,15 @@ export default { 29 ], "__typename": [ - 75 + 74 ] }, "team_roster_var_pop_order_by": { "player_steam_id": [ - 2016 + 2015 ], "__typename": [ - 75 + 74 ] }, "team_roster_var_samp_fields": { @@ -78125,15 +79022,15 @@ export default { 29 ], "__typename": [ - 75 + 74 ] }, "team_roster_var_samp_order_by": { "player_steam_id": [ - 2016 + 2015 ], "__typename": [ - 75 + 74 ] }, "team_roster_variance_fields": { @@ -78141,20 +79038,20 @@ export default { 29 ], "__typename": [ - 75 + 74 ] }, "team_roster_variance_order_by": { "player_steam_id": [ - 2016 + 2015 ], "__typename": [ - 75 + 74 ] }, "team_scrim_alerts": { "created_at": [ - 3467 + 3466 ], "elo_max": [ 38 @@ -78166,44 +79063,44 @@ export default { 3 ], "id": [ - 3864 + 3863 ], "last_notified_at": [ - 3467 + 3466 ], "regions": [ - 75 + 74 ], "team": [ - 3424 + 3423 ], "team_id": [ - 3864 + 3863 ], "__typename": [ - 75 + 74 ] }, "team_scrim_alerts_aggregate": { "aggregate": [ - 3229 + 3228 ], "nodes": [ - 3227 + 3226 ], "__typename": [ - 75 + 74 ] }, "team_scrim_alerts_aggregate_fields": { "avg": [ - 3230 + 3229 ], "count": [ 38, { "columns": [ - 3241, + 3240, "[team_scrim_alerts_select_column!]" ], "distinct": [ @@ -78212,34 +79109,34 @@ export default { } ], "max": [ - 3235 + 3234 ], "min": [ - 3236 + 3235 ], "stddev": [ - 3243 + 3242 ], "stddev_pop": [ - 3244 + 3243 ], "stddev_samp": [ - 3245 + 3244 ], "sum": [ - 3248 + 3247 ], "var_pop": [ - 3251 + 3250 ], "var_samp": [ - 3252 + 3251 ], "variance": [ - 3253 + 3252 ], "__typename": [ - 75 + 74 ] }, "team_scrim_alerts_avg_fields": { @@ -78250,21 +79147,21 @@ export default { 29 ], "__typename": [ - 75 + 74 ] }, "team_scrim_alerts_bool_exp": { "_and": [ - 3231 + 3230 ], "_not": [ - 3231 + 3230 ], "_or": [ - 3231 + 3230 ], "created_at": [ - 3468 + 3467 ], "elo_max": [ 39 @@ -78276,22 +79173,22 @@ export default { 4 ], "id": [ - 3866 + 3865 ], "last_notified_at": [ - 3468 + 3467 ], "regions": [ - 76 + 75 ], "team": [ - 3433 + 3432 ], "team_id": [ - 3866 + 3865 ], "__typename": [ - 75 + 74 ] }, "team_scrim_alerts_constraint": {}, @@ -78303,12 +79200,12 @@ export default { 38 ], "__typename": [ - 75 + 74 ] }, "team_scrim_alerts_insert_input": { "created_at": [ - 3467 + 3466 ], "elo_max": [ 38 @@ -78320,27 +79217,27 @@ export default { 3 ], "id": [ - 3864 + 3863 ], "last_notified_at": [ - 3467 + 3466 ], "regions": [ - 75 + 74 ], "team": [ - 3442 + 3441 ], "team_id": [ - 3864 + 3863 ], "__typename": [ - 75 + 74 ] }, "team_scrim_alerts_max_fields": { "created_at": [ - 3467 + 3466 ], "elo_max": [ 38 @@ -78349,24 +79246,24 @@ export default { 38 ], "id": [ - 3864 + 3863 ], "last_notified_at": [ - 3467 + 3466 ], "regions": [ - 75 + 74 ], "team_id": [ - 3864 + 3863 ], "__typename": [ - 75 + 74 ] }, "team_scrim_alerts_min_fields": { "created_at": [ - 3467 + 3466 ], "elo_max": [ 38 @@ -78375,19 +79272,19 @@ export default { 38 ], "id": [ - 3864 + 3863 ], "last_notified_at": [ - 3467 + 3466 ], "regions": [ - 75 + 74 ], "team_id": [ - 3864 + 3863 ], "__typename": [ - 75 + 74 ] }, "team_scrim_alerts_mutation_response": { @@ -78395,70 +79292,70 @@ export default { 38 ], "returning": [ - 3227 + 3226 ], "__typename": [ - 75 + 74 ] }, "team_scrim_alerts_on_conflict": { "constraint": [ - 3232 + 3231 ], "update_columns": [ - 3249 + 3248 ], "where": [ - 3231 + 3230 ], "__typename": [ - 75 + 74 ] }, "team_scrim_alerts_order_by": { "created_at": [ - 2016 + 2015 ], "elo_max": [ - 2016 + 2015 ], "elo_min": [ - 2016 + 2015 ], "enabled": [ - 2016 + 2015 ], "id": [ - 2016 + 2015 ], "last_notified_at": [ - 2016 + 2015 ], "regions": [ - 2016 + 2015 ], "team": [ - 3444 + 3443 ], "team_id": [ - 2016 + 2015 ], "__typename": [ - 75 + 74 ] }, "team_scrim_alerts_pk_columns_input": { "id": [ - 3864 + 3863 ], "__typename": [ - 75 + 74 ] }, "team_scrim_alerts_select_column": {}, "team_scrim_alerts_set_input": { "created_at": [ - 3467 + 3466 ], "elo_max": [ 38 @@ -78470,19 +79367,19 @@ export default { 3 ], "id": [ - 3864 + 3863 ], "last_notified_at": [ - 3467 + 3466 ], "regions": [ - 75 + 74 ], "team_id": [ - 3864 + 3863 ], "__typename": [ - 75 + 74 ] }, "team_scrim_alerts_stddev_fields": { @@ -78493,7 +79390,7 @@ export default { 29 ], "__typename": [ - 75 + 74 ] }, "team_scrim_alerts_stddev_pop_fields": { @@ -78504,7 +79401,7 @@ export default { 29 ], "__typename": [ - 75 + 74 ] }, "team_scrim_alerts_stddev_samp_fields": { @@ -78515,23 +79412,23 @@ export default { 29 ], "__typename": [ - 75 + 74 ] }, "team_scrim_alerts_stream_cursor_input": { "initial_value": [ - 3247 + 3246 ], "ordering": [ - 229 + 228 ], "__typename": [ - 75 + 74 ] }, "team_scrim_alerts_stream_cursor_value_input": { "created_at": [ - 3467 + 3466 ], "elo_max": [ 38 @@ -78543,19 +79440,19 @@ export default { 3 ], "id": [ - 3864 + 3863 ], "last_notified_at": [ - 3467 + 3466 ], "regions": [ - 75 + 74 ], "team_id": [ - 3864 + 3863 ], "__typename": [ - 75 + 74 ] }, "team_scrim_alerts_sum_fields": { @@ -78566,22 +79463,22 @@ export default { 38 ], "__typename": [ - 75 + 74 ] }, "team_scrim_alerts_update_column": {}, "team_scrim_alerts_updates": { "_inc": [ - 3233 + 3232 ], "_set": [ - 3242 + 3241 ], "where": [ - 3231 + 3230 ], "__typename": [ - 75 + 74 ] }, "team_scrim_alerts_var_pop_fields": { @@ -78592,7 +79489,7 @@ export default { 29 ], "__typename": [ - 75 + 74 ] }, "team_scrim_alerts_var_samp_fields": { @@ -78603,7 +79500,7 @@ export default { 29 ], "__typename": [ - 75 + 74 ] }, "team_scrim_alerts_variance_fields": { @@ -78614,109 +79511,109 @@ export default { 29 ], "__typename": [ - 75 + 74 ] }, "team_scrim_availability": { "created_at": [ - 3467 + 3466 ], "ends_at": [ - 3467 + 3466 ], "id": [ - 3864 + 3863 ], "recurring_weekly": [ 3 ], "starts_at": [ - 3467 + 3466 ], "team": [ - 3424 + 3423 ], "team_id": [ - 3864 + 3863 ], "__typename": [ - 75 + 74 ] }, "team_scrim_availability_aggregate": { "aggregate": [ - 3260 + 3259 ], "nodes": [ - 3254 + 3253 ], "__typename": [ - 75 + 74 ] }, "team_scrim_availability_aggregate_bool_exp": { "bool_and": [ - 3257 + 3256 ], "bool_or": [ - 3258 + 3257 ], "count": [ - 3259 + 3258 ], "__typename": [ - 75 + 74 ] }, "team_scrim_availability_aggregate_bool_exp_bool_and": { "arguments": [ - 3275 + 3274 ], "distinct": [ 3 ], "filter": [ - 3263 + 3262 ], "predicate": [ 4 ], "__typename": [ - 75 + 74 ] }, "team_scrim_availability_aggregate_bool_exp_bool_or": { "arguments": [ - 3276 + 3275 ], "distinct": [ 3 ], "filter": [ - 3263 + 3262 ], "predicate": [ 4 ], "__typename": [ - 75 + 74 ] }, "team_scrim_availability_aggregate_bool_exp_count": { "arguments": [ - 3274 + 3273 ], "distinct": [ 3 ], "filter": [ - 3263 + 3262 ], "predicate": [ 39 ], "__typename": [ - 75 + 74 ] }, "team_scrim_availability_aggregate_fields": { @@ -78724,7 +79621,7 @@ export default { 38, { "columns": [ - 3274, + 3273, "[team_scrim_availability_select_column!]" ], "distinct": [ @@ -78733,180 +79630,180 @@ export default { } ], "max": [ - 3266 + 3265 ], "min": [ - 3268 + 3267 ], "__typename": [ - 75 + 74 ] }, "team_scrim_availability_aggregate_order_by": { "count": [ - 2016 + 2015 ], "max": [ - 3267 + 3266 ], "min": [ - 3269 + 3268 ], "__typename": [ - 75 + 74 ] }, "team_scrim_availability_arr_rel_insert_input": { "data": [ - 3265 + 3264 ], "on_conflict": [ - 3271 + 3270 ], "__typename": [ - 75 + 74 ] }, "team_scrim_availability_bool_exp": { "_and": [ - 3263 + 3262 ], "_not": [ - 3263 + 3262 ], "_or": [ - 3263 + 3262 ], "created_at": [ - 3468 + 3467 ], "ends_at": [ - 3468 + 3467 ], "id": [ - 3866 + 3865 ], "recurring_weekly": [ 4 ], "starts_at": [ - 3468 + 3467 ], "team": [ - 3433 + 3432 ], "team_id": [ - 3866 + 3865 ], "__typename": [ - 75 + 74 ] }, "team_scrim_availability_constraint": {}, "team_scrim_availability_insert_input": { "created_at": [ - 3467 + 3466 ], "ends_at": [ - 3467 + 3466 ], "id": [ - 3864 + 3863 ], "recurring_weekly": [ 3 ], "starts_at": [ - 3467 + 3466 ], "team": [ - 3442 + 3441 ], "team_id": [ - 3864 + 3863 ], "__typename": [ - 75 + 74 ] }, "team_scrim_availability_max_fields": { "created_at": [ - 3467 + 3466 ], "ends_at": [ - 3467 + 3466 ], "id": [ - 3864 + 3863 ], "starts_at": [ - 3467 + 3466 ], "team_id": [ - 3864 + 3863 ], "__typename": [ - 75 + 74 ] }, "team_scrim_availability_max_order_by": { "created_at": [ - 2016 + 2015 ], "ends_at": [ - 2016 + 2015 ], "id": [ - 2016 + 2015 ], "starts_at": [ - 2016 + 2015 ], "team_id": [ - 2016 + 2015 ], "__typename": [ - 75 + 74 ] }, "team_scrim_availability_min_fields": { "created_at": [ - 3467 + 3466 ], "ends_at": [ - 3467 + 3466 ], "id": [ - 3864 + 3863 ], "starts_at": [ - 3467 + 3466 ], "team_id": [ - 3864 + 3863 ], "__typename": [ - 75 + 74 ] }, "team_scrim_availability_min_order_by": { "created_at": [ - 2016 + 2015 ], "ends_at": [ - 2016 + 2015 ], "id": [ - 2016 + 2015 ], "starts_at": [ - 2016 + 2015 ], "team_id": [ - 2016 + 2015 ], "__typename": [ - 75 + 74 ] }, "team_scrim_availability_mutation_response": { @@ -78914,58 +79811,58 @@ export default { 38 ], "returning": [ - 3254 + 3253 ], "__typename": [ - 75 + 74 ] }, "team_scrim_availability_on_conflict": { "constraint": [ - 3264 + 3263 ], "update_columns": [ - 3280 + 3279 ], "where": [ - 3263 + 3262 ], "__typename": [ - 75 + 74 ] }, "team_scrim_availability_order_by": { "created_at": [ - 2016 + 2015 ], "ends_at": [ - 2016 + 2015 ], "id": [ - 2016 + 2015 ], "recurring_weekly": [ - 2016 + 2015 ], "starts_at": [ - 2016 + 2015 ], "team": [ - 3444 + 3443 ], "team_id": [ - 2016 + 2015 ], "__typename": [ - 75 + 74 ] }, "team_scrim_availability_pk_columns_input": { "id": [ - 3864 + 3863 ], "__typename": [ - 75 + 74 ] }, "team_scrim_availability_select_column": {}, @@ -78973,150 +79870,150 @@ export default { "team_scrim_availability_select_column_team_scrim_availability_aggregate_bool_exp_bool_or_arguments_columns": {}, "team_scrim_availability_set_input": { "created_at": [ - 3467 + 3466 ], "ends_at": [ - 3467 + 3466 ], "id": [ - 3864 + 3863 ], "recurring_weekly": [ 3 ], "starts_at": [ - 3467 + 3466 ], "team_id": [ - 3864 + 3863 ], "__typename": [ - 75 + 74 ] }, "team_scrim_availability_stream_cursor_input": { "initial_value": [ - 3279 + 3278 ], "ordering": [ - 229 + 228 ], "__typename": [ - 75 + 74 ] }, "team_scrim_availability_stream_cursor_value_input": { "created_at": [ - 3467 + 3466 ], "ends_at": [ - 3467 + 3466 ], "id": [ - 3864 + 3863 ], "recurring_weekly": [ 3 ], "starts_at": [ - 3467 + 3466 ], "team_id": [ - 3864 + 3863 ], "__typename": [ - 75 + 74 ] }, "team_scrim_availability_update_column": {}, "team_scrim_availability_updates": { "_set": [ - 3277 + 3276 ], "where": [ - 3263 + 3262 ], "__typename": [ - 75 + 74 ] }, "team_scrim_request_proposals": { "created_at": [ - 3467 + 3466 ], "id": [ - 3864 + 3863 ], "proposed_by": [ - 2915 + 2914 ], "proposed_by_steam_id": [ - 174 + 173 ], "proposed_by_team": [ - 3424 + 3423 ], "proposed_by_team_id": [ - 3864 + 3863 ], "proposed_scheduled_at": [ - 3467 + 3466 ], "request": [ - 3323 + 3322 ], "request_id": [ - 3864 + 3863 ], "__typename": [ - 75 + 74 ] }, "team_scrim_request_proposals_aggregate": { "aggregate": [ - 3286 + 3285 ], "nodes": [ - 3282 + 3281 ], "__typename": [ - 75 + 74 ] }, "team_scrim_request_proposals_aggregate_bool_exp": { "count": [ - 3285 + 3284 ], "__typename": [ - 75 + 74 ] }, "team_scrim_request_proposals_aggregate_bool_exp_count": { "arguments": [ - 3303 + 3302 ], "distinct": [ 3 ], "filter": [ - 3291 + 3290 ], "predicate": [ 39 ], "__typename": [ - 75 + 74 ] }, "team_scrim_request_proposals_aggregate_fields": { "avg": [ - 3289 + 3288 ], "count": [ 38, { "columns": [ - 3303, + 3302, "[team_scrim_request_proposals_select_column!]" ], "distinct": [ @@ -79125,83 +80022,83 @@ export default { } ], "max": [ - 3295 + 3294 ], "min": [ - 3297 + 3296 ], "stddev": [ - 3305 + 3304 ], "stddev_pop": [ - 3307 + 3306 ], "stddev_samp": [ - 3309 + 3308 ], "sum": [ - 3313 + 3312 ], "var_pop": [ - 3317 + 3316 ], "var_samp": [ - 3319 + 3318 ], "variance": [ - 3321 + 3320 ], "__typename": [ - 75 + 74 ] }, "team_scrim_request_proposals_aggregate_order_by": { "avg": [ - 3290 + 3289 ], "count": [ - 2016 + 2015 ], "max": [ - 3296 + 3295 ], "min": [ - 3298 + 3297 ], "stddev": [ - 3306 + 3305 ], "stddev_pop": [ - 3308 + 3307 ], "stddev_samp": [ - 3310 + 3309 ], "sum": [ - 3314 + 3313 ], "var_pop": [ - 3318 + 3317 ], "var_samp": [ - 3320 + 3319 ], "variance": [ - 3322 + 3321 ], "__typename": [ - 75 + 74 ] }, "team_scrim_request_proposals_arr_rel_insert_input": { "data": [ - 3294 + 3293 ], "on_conflict": [ - 3300 + 3299 ], "__typename": [ - 75 + 74 ] }, "team_scrim_request_proposals_avg_fields": { @@ -79209,189 +80106,189 @@ export default { 29 ], "__typename": [ - 75 + 74 ] }, "team_scrim_request_proposals_avg_order_by": { "proposed_by_steam_id": [ - 2016 + 2015 ], "__typename": [ - 75 + 74 ] }, "team_scrim_request_proposals_bool_exp": { "_and": [ - 3291 + 3290 ], "_not": [ - 3291 + 3290 ], "_or": [ - 3291 + 3290 ], "created_at": [ - 3468 + 3467 ], "id": [ - 3866 + 3865 ], "proposed_by": [ - 2919 + 2918 ], "proposed_by_steam_id": [ - 176 + 175 ], "proposed_by_team": [ - 3433 + 3432 ], "proposed_by_team_id": [ - 3866 + 3865 ], "proposed_scheduled_at": [ - 3468 + 3467 ], "request": [ - 3334 + 3333 ], "request_id": [ - 3866 + 3865 ], "__typename": [ - 75 + 74 ] }, "team_scrim_request_proposals_constraint": {}, "team_scrim_request_proposals_inc_input": { "proposed_by_steam_id": [ - 174 + 173 ], "__typename": [ - 75 + 74 ] }, "team_scrim_request_proposals_insert_input": { "created_at": [ - 3467 + 3466 ], "id": [ - 3864 + 3863 ], "proposed_by": [ - 2926 + 2925 ], "proposed_by_steam_id": [ - 174 + 173 ], "proposed_by_team": [ - 3442 + 3441 ], "proposed_by_team_id": [ - 3864 + 3863 ], "proposed_scheduled_at": [ - 3467 + 3466 ], "request": [ - 3343 + 3342 ], "request_id": [ - 3864 + 3863 ], "__typename": [ - 75 + 74 ] }, "team_scrim_request_proposals_max_fields": { "created_at": [ - 3467 + 3466 ], "id": [ - 3864 + 3863 ], "proposed_by_steam_id": [ - 174 + 173 ], "proposed_by_team_id": [ - 3864 + 3863 ], "proposed_scheduled_at": [ - 3467 + 3466 ], "request_id": [ - 3864 + 3863 ], "__typename": [ - 75 + 74 ] }, "team_scrim_request_proposals_max_order_by": { "created_at": [ - 2016 + 2015 ], "id": [ - 2016 + 2015 ], "proposed_by_steam_id": [ - 2016 + 2015 ], "proposed_by_team_id": [ - 2016 + 2015 ], "proposed_scheduled_at": [ - 2016 + 2015 ], "request_id": [ - 2016 + 2015 ], "__typename": [ - 75 + 74 ] }, "team_scrim_request_proposals_min_fields": { "created_at": [ - 3467 + 3466 ], "id": [ - 3864 + 3863 ], "proposed_by_steam_id": [ - 174 + 173 ], "proposed_by_team_id": [ - 3864 + 3863 ], "proposed_scheduled_at": [ - 3467 + 3466 ], "request_id": [ - 3864 + 3863 ], "__typename": [ - 75 + 74 ] }, "team_scrim_request_proposals_min_order_by": { "created_at": [ - 2016 + 2015 ], "id": [ - 2016 + 2015 ], "proposed_by_steam_id": [ - 2016 + 2015 ], "proposed_by_team_id": [ - 2016 + 2015 ], "proposed_scheduled_at": [ - 2016 + 2015 ], "request_id": [ - 2016 + 2015 ], "__typename": [ - 75 + 74 ] }, "team_scrim_request_proposals_mutation_response": { @@ -79399,88 +80296,88 @@ export default { 38 ], "returning": [ - 3282 + 3281 ], "__typename": [ - 75 + 74 ] }, "team_scrim_request_proposals_on_conflict": { "constraint": [ - 3292 + 3291 ], "update_columns": [ - 3315 + 3314 ], "where": [ - 3291 + 3290 ], "__typename": [ - 75 + 74 ] }, "team_scrim_request_proposals_order_by": { "created_at": [ - 2016 + 2015 ], "id": [ - 2016 + 2015 ], "proposed_by": [ - 2928 + 2927 ], "proposed_by_steam_id": [ - 2016 + 2015 ], "proposed_by_team": [ - 3444 + 3443 ], "proposed_by_team_id": [ - 2016 + 2015 ], "proposed_scheduled_at": [ - 2016 + 2015 ], "request": [ - 3345 + 3344 ], "request_id": [ - 2016 + 2015 ], "__typename": [ - 75 + 74 ] }, "team_scrim_request_proposals_pk_columns_input": { "id": [ - 3864 + 3863 ], "__typename": [ - 75 + 74 ] }, "team_scrim_request_proposals_select_column": {}, "team_scrim_request_proposals_set_input": { "created_at": [ - 3467 + 3466 ], "id": [ - 3864 + 3863 ], "proposed_by_steam_id": [ - 174 + 173 ], "proposed_by_team_id": [ - 3864 + 3863 ], "proposed_scheduled_at": [ - 3467 + 3466 ], "request_id": [ - 3864 + 3863 ], "__typename": [ - 75 + 74 ] }, "team_scrim_request_proposals_stddev_fields": { @@ -79488,15 +80385,15 @@ export default { 29 ], "__typename": [ - 75 + 74 ] }, "team_scrim_request_proposals_stddev_order_by": { "proposed_by_steam_id": [ - 2016 + 2015 ], "__typename": [ - 75 + 74 ] }, "team_scrim_request_proposals_stddev_pop_fields": { @@ -79504,15 +80401,15 @@ export default { 29 ], "__typename": [ - 75 + 74 ] }, "team_scrim_request_proposals_stddev_pop_order_by": { "proposed_by_steam_id": [ - 2016 + 2015 ], "__typename": [ - 75 + 74 ] }, "team_scrim_request_proposals_stddev_samp_fields": { @@ -79520,80 +80417,80 @@ export default { 29 ], "__typename": [ - 75 + 74 ] }, "team_scrim_request_proposals_stddev_samp_order_by": { "proposed_by_steam_id": [ - 2016 + 2015 ], "__typename": [ - 75 + 74 ] }, "team_scrim_request_proposals_stream_cursor_input": { "initial_value": [ - 3312 + 3311 ], "ordering": [ - 229 + 228 ], "__typename": [ - 75 + 74 ] }, "team_scrim_request_proposals_stream_cursor_value_input": { "created_at": [ - 3467 + 3466 ], "id": [ - 3864 + 3863 ], "proposed_by_steam_id": [ - 174 + 173 ], "proposed_by_team_id": [ - 3864 + 3863 ], "proposed_scheduled_at": [ - 3467 + 3466 ], "request_id": [ - 3864 + 3863 ], "__typename": [ - 75 + 74 ] }, "team_scrim_request_proposals_sum_fields": { "proposed_by_steam_id": [ - 174 + 173 ], "__typename": [ - 75 + 74 ] }, "team_scrim_request_proposals_sum_order_by": { "proposed_by_steam_id": [ - 2016 + 2015 ], "__typename": [ - 75 + 74 ] }, "team_scrim_request_proposals_update_column": {}, "team_scrim_request_proposals_updates": { "_inc": [ - 3293 + 3292 ], "_set": [ - 3304 + 3303 ], "where": [ - 3291 + 3290 ], "__typename": [ - 75 + 74 ] }, "team_scrim_request_proposals_var_pop_fields": { @@ -79601,15 +80498,15 @@ export default { 29 ], "__typename": [ - 75 + 74 ] }, "team_scrim_request_proposals_var_pop_order_by": { "proposed_by_steam_id": [ - 2016 + 2015 ], "__typename": [ - 75 + 74 ] }, "team_scrim_request_proposals_var_samp_fields": { @@ -79617,15 +80514,15 @@ export default { 29 ], "__typename": [ - 75 + 74 ] }, "team_scrim_request_proposals_var_samp_order_by": { "proposed_by_steam_id": [ - 2016 + 2015 ], "__typename": [ - 75 + 74 ] }, "team_scrim_request_proposals_variance_fields": { @@ -79633,15 +80530,15 @@ export default { 29 ], "__typename": [ - 75 + 74 ] }, "team_scrim_request_proposals_variance_order_by": { "proposed_by_steam_id": [ - 2016 + 2015 ], "__typename": [ - 75 + 74 ] }, "team_scrim_requests": { @@ -79649,55 +80546,55 @@ export default { 3 ], "awaiting_team": [ - 3424 + 3423 ], "awaiting_team_id": [ - 3864 + 3863 ], "canceled_by_team_id": [ - 3864 + 3863 ], "canceled_late": [ 3 ], "created_at": [ - 3467 + 3466 ], "expires_at": [ - 3467 + 3466 ], "from_team": [ - 3424 + 3423 ], "from_team_checked_in": [ 3 ], "from_team_id": [ - 3864 + 3863 ], "id": [ - 3864 + 3863 ], "match": [ - 1831 + 1830 ], "match_id": [ - 3864 + 3863 ], "match_options": [ - 1711 + 1710 ], "match_options_id": [ - 3864 + 3863 ], "match_outcome": [ - 75 + 74 ], "proposals": [ - 3282, + 3281, { "distinct_on": [ - 3303, + 3302, "[team_scrim_request_proposals_select_column!]" ], "limit": [ @@ -79707,19 +80604,19 @@ export default { 38 ], "order_by": [ - 3301, + 3300, "[team_scrim_request_proposals_order_by!]" ], "where": [ - 3291 + 3290 ] } ], "proposals_aggregate": [ - 3283, + 3282, { "distinct_on": [ - 3303, + 3302, "[team_scrim_request_proposals_select_column!]" ], "limit": [ @@ -79729,130 +80626,130 @@ export default { 38 ], "order_by": [ - 3301, + 3300, "[team_scrim_request_proposals_order_by!]" ], "where": [ - 3291 + 3290 ] } ], "proposed_scheduled_at": [ - 3467 + 3466 ], "region": [ - 75 + 74 ], "requested_by": [ - 2915 + 2914 ], "requested_by_steam_id": [ - 174 + 173 ], "responded_at": [ - 3467 + 3466 ], "status": [ - 851 + 850 ], "to_team": [ - 3424 + 3423 ], "to_team_checked_in": [ 3 ], "to_team_id": [ - 3864 + 3863 ], "__typename": [ - 75 + 74 ] }, "team_scrim_requests_aggregate": { "aggregate": [ - 3329 + 3328 ], "nodes": [ - 3323 + 3322 ], "__typename": [ - 75 + 74 ] }, "team_scrim_requests_aggregate_bool_exp": { "bool_and": [ - 3326 + 3325 ], "bool_or": [ - 3327 + 3326 ], "count": [ - 3328 + 3327 ], "__typename": [ - 75 + 74 ] }, "team_scrim_requests_aggregate_bool_exp_bool_and": { "arguments": [ - 3348 + 3347 ], "distinct": [ 3 ], "filter": [ - 3334 + 3333 ], "predicate": [ 4 ], "__typename": [ - 75 + 74 ] }, "team_scrim_requests_aggregate_bool_exp_bool_or": { "arguments": [ - 3349 + 3348 ], "distinct": [ 3 ], "filter": [ - 3334 + 3333 ], "predicate": [ 4 ], "__typename": [ - 75 + 74 ] }, "team_scrim_requests_aggregate_bool_exp_count": { "arguments": [ - 3347 + 3346 ], "distinct": [ 3 ], "filter": [ - 3334 + 3333 ], "predicate": [ 39 ], "__typename": [ - 75 + 74 ] }, "team_scrim_requests_aggregate_fields": { "avg": [ - 3332 + 3331 ], "count": [ 38, { "columns": [ - 3347, + 3346, "[team_scrim_requests_select_column!]" ], "distinct": [ @@ -79861,83 +80758,83 @@ export default { } ], "max": [ - 3338 + 3337 ], "min": [ - 3340 + 3339 ], "stddev": [ - 3351 + 3350 ], "stddev_pop": [ - 3353 + 3352 ], "stddev_samp": [ - 3355 + 3354 ], "sum": [ - 3359 + 3358 ], "var_pop": [ - 3363 + 3362 ], "var_samp": [ - 3365 + 3364 ], "variance": [ - 3367 + 3366 ], "__typename": [ - 75 + 74 ] }, "team_scrim_requests_aggregate_order_by": { "avg": [ - 3333 + 3332 ], "count": [ - 2016 + 2015 ], "max": [ - 3339 + 3338 ], "min": [ - 3341 + 3340 ], "stddev": [ - 3352 + 3351 ], "stddev_pop": [ - 3354 + 3353 ], "stddev_samp": [ - 3356 + 3355 ], "sum": [ - 3360 + 3359 ], "var_pop": [ - 3364 + 3363 ], "var_samp": [ - 3366 + 3365 ], "variance": [ - 3368 + 3367 ], "__typename": [ - 75 + 74 ] }, "team_scrim_requests_arr_rel_insert_input": { "data": [ - 3337 + 3336 ], "on_conflict": [ - 3344 + 3343 ], "__typename": [ - 75 + 74 ] }, "team_scrim_requests_avg_fields": { @@ -79945,119 +80842,119 @@ export default { 29 ], "__typename": [ - 75 + 74 ] }, "team_scrim_requests_avg_order_by": { "requested_by_steam_id": [ - 2016 + 2015 ], "__typename": [ - 75 + 74 ] }, "team_scrim_requests_bool_exp": { "_and": [ - 3334 + 3333 ], "_not": [ - 3334 + 3333 ], "_or": [ - 3334 + 3333 ], "auto_generated": [ 4 ], "awaiting_team": [ - 3433 + 3432 ], "awaiting_team_id": [ - 3866 + 3865 ], "canceled_by_team_id": [ - 3866 + 3865 ], "canceled_late": [ 4 ], "created_at": [ - 3468 + 3467 ], "expires_at": [ - 3468 + 3467 ], "from_team": [ - 3433 + 3432 ], "from_team_checked_in": [ 4 ], "from_team_id": [ - 3866 + 3865 ], "id": [ - 3866 + 3865 ], "match": [ - 1840 + 1839 ], "match_id": [ - 3866 + 3865 ], "match_options": [ - 1715 + 1714 ], "match_options_id": [ - 3866 + 3865 ], "match_outcome": [ - 77 + 76 ], "proposals": [ - 3291 + 3290 ], "proposals_aggregate": [ - 3284 + 3283 ], "proposed_scheduled_at": [ - 3468 + 3467 ], "region": [ - 77 + 76 ], "requested_by": [ - 2919 + 2918 ], "requested_by_steam_id": [ - 176 + 175 ], "responded_at": [ - 3468 + 3467 ], "status": [ - 852 + 851 ], "to_team": [ - 3433 + 3432 ], "to_team_checked_in": [ 4 ], "to_team_id": [ - 3866 + 3865 ], "__typename": [ - 75 + 74 ] }, "team_scrim_requests_constraint": {}, "team_scrim_requests_inc_input": { "requested_by_steam_id": [ - 174 + 173 ], "__typename": [ - 75 + 74 ] }, "team_scrim_requests_insert_input": { @@ -80065,270 +80962,270 @@ export default { 3 ], "awaiting_team": [ - 3442 + 3441 ], "awaiting_team_id": [ - 3864 + 3863 ], "canceled_by_team_id": [ - 3864 + 3863 ], "canceled_late": [ 3 ], "created_at": [ - 3467 + 3466 ], "expires_at": [ - 3467 + 3466 ], "from_team": [ - 3442 + 3441 ], "from_team_checked_in": [ 3 ], "from_team_id": [ - 3864 + 3863 ], "id": [ - 3864 + 3863 ], "match": [ - 1849 + 1848 ], "match_id": [ - 3864 + 3863 ], "match_options": [ - 1722 + 1721 ], "match_options_id": [ - 3864 + 3863 ], "match_outcome": [ - 75 + 74 ], "proposals": [ - 3288 + 3287 ], "proposed_scheduled_at": [ - 3467 + 3466 ], "region": [ - 75 + 74 ], "requested_by": [ - 2926 + 2925 ], "requested_by_steam_id": [ - 174 + 173 ], "responded_at": [ - 3467 + 3466 ], "status": [ - 851 + 850 ], "to_team": [ - 3442 + 3441 ], "to_team_checked_in": [ 3 ], "to_team_id": [ - 3864 + 3863 ], "__typename": [ - 75 + 74 ] }, "team_scrim_requests_max_fields": { "awaiting_team_id": [ - 3864 + 3863 ], "canceled_by_team_id": [ - 3864 + 3863 ], "created_at": [ - 3467 + 3466 ], "expires_at": [ - 3467 + 3466 ], "from_team_id": [ - 3864 + 3863 ], "id": [ - 3864 + 3863 ], "match_id": [ - 3864 + 3863 ], "match_options_id": [ - 3864 + 3863 ], "match_outcome": [ - 75 + 74 ], "proposed_scheduled_at": [ - 3467 + 3466 ], "region": [ - 75 + 74 ], "requested_by_steam_id": [ - 174 + 173 ], "responded_at": [ - 3467 + 3466 ], "to_team_id": [ - 3864 + 3863 ], "__typename": [ - 75 + 74 ] }, "team_scrim_requests_max_order_by": { "awaiting_team_id": [ - 2016 + 2015 ], "canceled_by_team_id": [ - 2016 + 2015 ], "created_at": [ - 2016 + 2015 ], "expires_at": [ - 2016 + 2015 ], "from_team_id": [ - 2016 + 2015 ], "id": [ - 2016 + 2015 ], "match_id": [ - 2016 + 2015 ], "match_options_id": [ - 2016 + 2015 ], "match_outcome": [ - 2016 + 2015 ], "proposed_scheduled_at": [ - 2016 + 2015 ], "region": [ - 2016 + 2015 ], "requested_by_steam_id": [ - 2016 + 2015 ], "responded_at": [ - 2016 + 2015 ], "to_team_id": [ - 2016 + 2015 ], "__typename": [ - 75 + 74 ] }, "team_scrim_requests_min_fields": { "awaiting_team_id": [ - 3864 + 3863 ], "canceled_by_team_id": [ - 3864 + 3863 ], "created_at": [ - 3467 + 3466 ], "expires_at": [ - 3467 + 3466 ], "from_team_id": [ - 3864 + 3863 ], "id": [ - 3864 + 3863 ], "match_id": [ - 3864 + 3863 ], "match_options_id": [ - 3864 + 3863 ], "match_outcome": [ - 75 + 74 ], "proposed_scheduled_at": [ - 3467 + 3466 ], "region": [ - 75 + 74 ], "requested_by_steam_id": [ - 174 + 173 ], "responded_at": [ - 3467 + 3466 ], "to_team_id": [ - 3864 + 3863 ], "__typename": [ - 75 + 74 ] }, "team_scrim_requests_min_order_by": { "awaiting_team_id": [ - 2016 + 2015 ], "canceled_by_team_id": [ - 2016 + 2015 ], "created_at": [ - 2016 + 2015 ], "expires_at": [ - 2016 + 2015 ], "from_team_id": [ - 2016 + 2015 ], "id": [ - 2016 + 2015 ], "match_id": [ - 2016 + 2015 ], "match_options_id": [ - 2016 + 2015 ], "match_outcome": [ - 2016 + 2015 ], "proposed_scheduled_at": [ - 2016 + 2015 ], "region": [ - 2016 + 2015 ], "requested_by_steam_id": [ - 2016 + 2015 ], "responded_at": [ - 2016 + 2015 ], "to_team_id": [ - 2016 + 2015 ], "__typename": [ - 75 + 74 ] }, "team_scrim_requests_mutation_response": { @@ -80336,126 +81233,126 @@ export default { 38 ], "returning": [ - 3323 + 3322 ], "__typename": [ - 75 + 74 ] }, "team_scrim_requests_obj_rel_insert_input": { "data": [ - 3337 + 3336 ], "on_conflict": [ - 3344 + 3343 ], "__typename": [ - 75 + 74 ] }, "team_scrim_requests_on_conflict": { "constraint": [ - 3335 + 3334 ], "update_columns": [ - 3361 + 3360 ], "where": [ - 3334 + 3333 ], "__typename": [ - 75 + 74 ] }, "team_scrim_requests_order_by": { "auto_generated": [ - 2016 + 2015 ], "awaiting_team": [ - 3444 + 3443 ], "awaiting_team_id": [ - 2016 + 2015 ], "canceled_by_team_id": [ - 2016 + 2015 ], "canceled_late": [ - 2016 + 2015 ], "created_at": [ - 2016 + 2015 ], "expires_at": [ - 2016 + 2015 ], "from_team": [ - 3444 + 3443 ], "from_team_checked_in": [ - 2016 + 2015 ], "from_team_id": [ - 2016 + 2015 ], "id": [ - 2016 + 2015 ], "match": [ - 1851 + 1850 ], "match_id": [ - 2016 + 2015 ], "match_options": [ - 1724 + 1723 ], "match_options_id": [ - 2016 + 2015 ], "match_outcome": [ - 2016 + 2015 ], "proposals_aggregate": [ - 3287 + 3286 ], "proposed_scheduled_at": [ - 2016 + 2015 ], "region": [ - 2016 + 2015 ], "requested_by": [ - 2928 + 2927 ], "requested_by_steam_id": [ - 2016 + 2015 ], "responded_at": [ - 2016 + 2015 ], "status": [ - 2016 + 2015 ], "to_team": [ - 3444 + 3443 ], "to_team_checked_in": [ - 2016 + 2015 ], "to_team_id": [ - 2016 + 2015 ], "__typename": [ - 75 + 74 ] }, "team_scrim_requests_pk_columns_input": { "id": [ - 3864 + 3863 ], "__typename": [ - 75 + 74 ] }, "team_scrim_requests_select_column": {}, @@ -80466,61 +81363,61 @@ export default { 3 ], "awaiting_team_id": [ - 3864 + 3863 ], "canceled_by_team_id": [ - 3864 + 3863 ], "canceled_late": [ 3 ], "created_at": [ - 3467 + 3466 ], "expires_at": [ - 3467 + 3466 ], "from_team_checked_in": [ 3 ], "from_team_id": [ - 3864 + 3863 ], "id": [ - 3864 + 3863 ], "match_id": [ - 3864 + 3863 ], "match_options_id": [ - 3864 + 3863 ], "match_outcome": [ - 75 + 74 ], "proposed_scheduled_at": [ - 3467 + 3466 ], "region": [ - 75 + 74 ], "requested_by_steam_id": [ - 174 + 173 ], "responded_at": [ - 3467 + 3466 ], "status": [ - 851 + 850 ], "to_team_checked_in": [ 3 ], "to_team_id": [ - 3864 + 3863 ], "__typename": [ - 75 + 74 ] }, "team_scrim_requests_stddev_fields": { @@ -80528,15 +81425,15 @@ export default { 29 ], "__typename": [ - 75 + 74 ] }, "team_scrim_requests_stddev_order_by": { "requested_by_steam_id": [ - 2016 + 2015 ], "__typename": [ - 75 + 74 ] }, "team_scrim_requests_stddev_pop_fields": { @@ -80544,15 +81441,15 @@ export default { 29 ], "__typename": [ - 75 + 74 ] }, "team_scrim_requests_stddev_pop_order_by": { "requested_by_steam_id": [ - 2016 + 2015 ], "__typename": [ - 75 + 74 ] }, "team_scrim_requests_stddev_samp_fields": { @@ -80560,26 +81457,26 @@ export default { 29 ], "__typename": [ - 75 + 74 ] }, "team_scrim_requests_stddev_samp_order_by": { "requested_by_steam_id": [ - 2016 + 2015 ], "__typename": [ - 75 + 74 ] }, "team_scrim_requests_stream_cursor_input": { "initial_value": [ - 3358 + 3357 ], "ordering": [ - 229 + 228 ], "__typename": [ - 75 + 74 ] }, "team_scrim_requests_stream_cursor_value_input": { @@ -80587,92 +81484,92 @@ export default { 3 ], "awaiting_team_id": [ - 3864 + 3863 ], "canceled_by_team_id": [ - 3864 + 3863 ], "canceled_late": [ 3 ], "created_at": [ - 3467 + 3466 ], "expires_at": [ - 3467 + 3466 ], "from_team_checked_in": [ 3 ], "from_team_id": [ - 3864 + 3863 ], "id": [ - 3864 + 3863 ], "match_id": [ - 3864 + 3863 ], "match_options_id": [ - 3864 + 3863 ], "match_outcome": [ - 75 + 74 ], "proposed_scheduled_at": [ - 3467 + 3466 ], "region": [ - 75 + 74 ], "requested_by_steam_id": [ - 174 + 173 ], "responded_at": [ - 3467 + 3466 ], "status": [ - 851 + 850 ], "to_team_checked_in": [ 3 ], "to_team_id": [ - 3864 + 3863 ], "__typename": [ - 75 + 74 ] }, "team_scrim_requests_sum_fields": { "requested_by_steam_id": [ - 174 + 173 ], "__typename": [ - 75 + 74 ] }, "team_scrim_requests_sum_order_by": { "requested_by_steam_id": [ - 2016 + 2015 ], "__typename": [ - 75 + 74 ] }, "team_scrim_requests_update_column": {}, "team_scrim_requests_updates": { "_inc": [ - 3336 + 3335 ], "_set": [ - 3350 + 3349 ], "where": [ - 3334 + 3333 ], "__typename": [ - 75 + 74 ] }, "team_scrim_requests_var_pop_fields": { @@ -80680,15 +81577,15 @@ export default { 29 ], "__typename": [ - 75 + 74 ] }, "team_scrim_requests_var_pop_order_by": { "requested_by_steam_id": [ - 2016 + 2015 ], "__typename": [ - 75 + 74 ] }, "team_scrim_requests_var_samp_fields": { @@ -80696,15 +81593,15 @@ export default { 29 ], "__typename": [ - 75 + 74 ] }, "team_scrim_requests_var_samp_order_by": { "requested_by_steam_id": [ - 2016 + 2015 ], "__typename": [ - 75 + 74 ] }, "team_scrim_requests_variance_fields": { @@ -80712,15 +81609,15 @@ export default { 29 ], "__typename": [ - 75 + 74 ] }, "team_scrim_requests_variance_order_by": { "requested_by_steam_id": [ - 2016 + 2015 ], "__typename": [ - 75 + 74 ] }, "team_scrim_settings": { @@ -80728,7 +81625,7 @@ export default { 3 ], "created_at": [ - 3467 + 3466 ], "elo_max": [ 38 @@ -80740,50 +81637,50 @@ export default { 3 ], "id": [ - 3864 + 3863 ], "map_ids": [ - 3864 + 3863 ], "notes": [ - 75 + 74 ], "regions": [ - 75 + 74 ], "team": [ - 3424 + 3423 ], "team_id": [ - 3864 + 3863 ], "updated_at": [ - 3467 + 3466 ], "__typename": [ - 75 + 74 ] }, "team_scrim_settings_aggregate": { "aggregate": [ - 3371 + 3370 ], "nodes": [ - 3369 + 3368 ], "__typename": [ - 75 + 74 ] }, "team_scrim_settings_aggregate_fields": { "avg": [ - 3372 + 3371 ], "count": [ 38, { "columns": [ - 3384, + 3383, "[team_scrim_settings_select_column!]" ], "distinct": [ @@ -80792,34 +81689,34 @@ export default { } ], "max": [ - 3377 + 3376 ], "min": [ - 3378 + 3377 ], "stddev": [ - 3386 + 3385 ], "stddev_pop": [ - 3387 + 3386 ], "stddev_samp": [ - 3388 + 3387 ], "sum": [ - 3391 + 3390 ], "var_pop": [ - 3394 + 3393 ], "var_samp": [ - 3395 + 3394 ], "variance": [ - 3396 + 3395 ], "__typename": [ - 75 + 74 ] }, "team_scrim_settings_avg_fields": { @@ -80830,24 +81727,24 @@ export default { 29 ], "__typename": [ - 75 + 74 ] }, "team_scrim_settings_bool_exp": { "_and": [ - 3373 + 3372 ], "_not": [ - 3373 + 3372 ], "_or": [ - 3373 + 3372 ], "allow_outside_availability": [ 4 ], "created_at": [ - 3468 + 3467 ], "elo_max": [ 39 @@ -80859,28 +81756,28 @@ export default { 4 ], "id": [ - 3866 + 3865 ], "map_ids": [ - 3865 + 3864 ], "notes": [ - 77 + 76 ], "regions": [ - 76 + 75 ], "team": [ - 3433 + 3432 ], "team_id": [ - 3866 + 3865 ], "updated_at": [ - 3468 + 3467 ], "__typename": [ - 75 + 74 ] }, "team_scrim_settings_constraint": {}, @@ -80892,7 +81789,7 @@ export default { 38 ], "__typename": [ - 75 + 74 ] }, "team_scrim_settings_insert_input": { @@ -80900,7 +81797,7 @@ export default { 3 ], "created_at": [ - 3467 + 3466 ], "elo_max": [ 38 @@ -80912,33 +81809,33 @@ export default { 3 ], "id": [ - 3864 + 3863 ], "map_ids": [ - 3864 + 3863 ], "notes": [ - 75 + 74 ], "regions": [ - 75 + 74 ], "team": [ - 3442 + 3441 ], "team_id": [ - 3864 + 3863 ], "updated_at": [ - 3467 + 3466 ], "__typename": [ - 75 + 74 ] }, "team_scrim_settings_max_fields": { "created_at": [ - 3467 + 3466 ], "elo_max": [ 38 @@ -80947,30 +81844,30 @@ export default { 38 ], "id": [ - 3864 + 3863 ], "map_ids": [ - 3864 + 3863 ], "notes": [ - 75 + 74 ], "regions": [ - 75 + 74 ], "team_id": [ - 3864 + 3863 ], "updated_at": [ - 3467 + 3466 ], "__typename": [ - 75 + 74 ] }, "team_scrim_settings_min_fields": { "created_at": [ - 3467 + 3466 ], "elo_max": [ 38 @@ -80979,25 +81876,25 @@ export default { 38 ], "id": [ - 3864 + 3863 ], "map_ids": [ - 3864 + 3863 ], "notes": [ - 75 + 74 ], "regions": [ - 75 + 74 ], "team_id": [ - 3864 + 3863 ], "updated_at": [ - 3467 + 3466 ], "__typename": [ - 75 + 74 ] }, "team_scrim_settings_mutation_response": { @@ -81005,84 +81902,84 @@ export default { 38 ], "returning": [ - 3369 + 3368 ], "__typename": [ - 75 + 74 ] }, "team_scrim_settings_obj_rel_insert_input": { "data": [ - 3376 + 3375 ], "on_conflict": [ - 3381 + 3380 ], "__typename": [ - 75 + 74 ] }, "team_scrim_settings_on_conflict": { "constraint": [ - 3374 + 3373 ], "update_columns": [ - 3392 + 3391 ], "where": [ - 3373 + 3372 ], "__typename": [ - 75 + 74 ] }, "team_scrim_settings_order_by": { "allow_outside_availability": [ - 2016 + 2015 ], "created_at": [ - 2016 + 2015 ], "elo_max": [ - 2016 + 2015 ], "elo_min": [ - 2016 + 2015 ], "enabled": [ - 2016 + 2015 ], "id": [ - 2016 + 2015 ], "map_ids": [ - 2016 + 2015 ], "notes": [ - 2016 + 2015 ], "regions": [ - 2016 + 2015 ], "team": [ - 3444 + 3443 ], "team_id": [ - 2016 + 2015 ], "updated_at": [ - 2016 + 2015 ], "__typename": [ - 75 + 74 ] }, "team_scrim_settings_pk_columns_input": { "id": [ - 3864 + 3863 ], "__typename": [ - 75 + 74 ] }, "team_scrim_settings_select_column": {}, @@ -81091,7 +81988,7 @@ export default { 3 ], "created_at": [ - 3467 + 3466 ], "elo_max": [ 38 @@ -81103,25 +82000,25 @@ export default { 3 ], "id": [ - 3864 + 3863 ], "map_ids": [ - 3864 + 3863 ], "notes": [ - 75 + 74 ], "regions": [ - 75 + 74 ], "team_id": [ - 3864 + 3863 ], "updated_at": [ - 3467 + 3466 ], "__typename": [ - 75 + 74 ] }, "team_scrim_settings_stddev_fields": { @@ -81132,7 +82029,7 @@ export default { 29 ], "__typename": [ - 75 + 74 ] }, "team_scrim_settings_stddev_pop_fields": { @@ -81143,7 +82040,7 @@ export default { 29 ], "__typename": [ - 75 + 74 ] }, "team_scrim_settings_stddev_samp_fields": { @@ -81154,18 +82051,18 @@ export default { 29 ], "__typename": [ - 75 + 74 ] }, "team_scrim_settings_stream_cursor_input": { "initial_value": [ - 3390 + 3389 ], "ordering": [ - 229 + 228 ], "__typename": [ - 75 + 74 ] }, "team_scrim_settings_stream_cursor_value_input": { @@ -81173,7 +82070,7 @@ export default { 3 ], "created_at": [ - 3467 + 3466 ], "elo_max": [ 38 @@ -81185,25 +82082,25 @@ export default { 3 ], "id": [ - 3864 + 3863 ], "map_ids": [ - 3864 + 3863 ], "notes": [ - 75 + 74 ], "regions": [ - 75 + 74 ], "team_id": [ - 3864 + 3863 ], "updated_at": [ - 3467 + 3466 ], "__typename": [ - 75 + 74 ] }, "team_scrim_settings_sum_fields": { @@ -81214,22 +82111,22 @@ export default { 38 ], "__typename": [ - 75 + 74 ] }, "team_scrim_settings_update_column": {}, "team_scrim_settings_updates": { "_inc": [ - 3375 + 3374 ], "_set": [ - 3385 + 3384 ], "where": [ - 3373 + 3372 ], "__typename": [ - 75 + 74 ] }, "team_scrim_settings_var_pop_fields": { @@ -81240,7 +82137,7 @@ export default { 29 ], "__typename": [ - 75 + 74 ] }, "team_scrim_settings_var_samp_fields": { @@ -81251,7 +82148,7 @@ export default { 29 ], "__typename": [ - 75 + 74 ] }, "team_scrim_settings_variance_fields": { @@ -81262,55 +82159,55 @@ export default { 29 ], "__typename": [ - 75 + 74 ] }, "team_suggestions": { "created_at": [ - 3467 + 3466 ], "group_hash": [ - 75 + 74 ], "id": [ - 3864 + 3863 ], "last_notified_at": [ - 3467 + 3466 ], "member_steam_ids": [ - 174 + 173 ], "status": [ - 75 + 74 ], "together_count": [ 38 ], "__typename": [ - 75 + 74 ] }, "team_suggestions_aggregate": { "aggregate": [ - 3399 + 3398 ], "nodes": [ - 3397 + 3396 ], "__typename": [ - 75 + 74 ] }, "team_suggestions_aggregate_fields": { "avg": [ - 3400 + 3399 ], "count": [ 38, { "columns": [ - 3411, + 3410, "[team_suggestions_select_column!]" ], "distinct": [ @@ -81319,34 +82216,34 @@ export default { } ], "max": [ - 3405 + 3404 ], "min": [ - 3406 + 3405 ], "stddev": [ - 3413 + 3412 ], "stddev_pop": [ - 3414 + 3413 ], "stddev_samp": [ - 3415 + 3414 ], "sum": [ - 3418 + 3417 ], "var_pop": [ - 3421 + 3420 ], "var_samp": [ - 3422 + 3421 ], "variance": [ - 3423 + 3422 ], "__typename": [ - 75 + 74 ] }, "team_suggestions_avg_fields": { @@ -81354,42 +82251,42 @@ export default { 29 ], "__typename": [ - 75 + 74 ] }, "team_suggestions_bool_exp": { "_and": [ - 3401 + 3400 ], "_not": [ - 3401 + 3400 ], "_or": [ - 3401 + 3400 ], "created_at": [ - 3468 + 3467 ], "group_hash": [ - 77 + 76 ], "id": [ - 3866 + 3865 ], "last_notified_at": [ - 3468 + 3467 ], "member_steam_ids": [ - 175 + 174 ], "status": [ - 77 + 76 ], "together_count": [ 39 ], "__typename": [ - 75 + 74 ] }, "team_suggestions_constraint": {}, @@ -81398,85 +82295,85 @@ export default { 38 ], "__typename": [ - 75 + 74 ] }, "team_suggestions_insert_input": { "created_at": [ - 3467 + 3466 ], "group_hash": [ - 75 + 74 ], "id": [ - 3864 + 3863 ], "last_notified_at": [ - 3467 + 3466 ], "member_steam_ids": [ - 174 + 173 ], "status": [ - 75 + 74 ], "together_count": [ 38 ], "__typename": [ - 75 + 74 ] }, "team_suggestions_max_fields": { "created_at": [ - 3467 + 3466 ], "group_hash": [ - 75 + 74 ], "id": [ - 3864 + 3863 ], "last_notified_at": [ - 3467 + 3466 ], "member_steam_ids": [ - 174 + 173 ], "status": [ - 75 + 74 ], "together_count": [ 38 ], "__typename": [ - 75 + 74 ] }, "team_suggestions_min_fields": { "created_at": [ - 3467 + 3466 ], "group_hash": [ - 75 + 74 ], "id": [ - 3864 + 3863 ], "last_notified_at": [ - 3467 + 3466 ], "member_steam_ids": [ - 174 + 173 ], "status": [ - 75 + 74 ], "together_count": [ 38 ], "__typename": [ - 75 + 74 ] }, "team_suggestions_mutation_response": { @@ -81484,85 +82381,85 @@ export default { 38 ], "returning": [ - 3397 + 3396 ], "__typename": [ - 75 + 74 ] }, "team_suggestions_on_conflict": { "constraint": [ - 3402 + 3401 ], "update_columns": [ - 3419 + 3418 ], "where": [ - 3401 + 3400 ], "__typename": [ - 75 + 74 ] }, "team_suggestions_order_by": { "created_at": [ - 2016 + 2015 ], "group_hash": [ - 2016 + 2015 ], "id": [ - 2016 + 2015 ], "last_notified_at": [ - 2016 + 2015 ], "member_steam_ids": [ - 2016 + 2015 ], "status": [ - 2016 + 2015 ], "together_count": [ - 2016 + 2015 ], "__typename": [ - 75 + 74 ] }, "team_suggestions_pk_columns_input": { "id": [ - 3864 + 3863 ], "__typename": [ - 75 + 74 ] }, "team_suggestions_select_column": {}, "team_suggestions_set_input": { "created_at": [ - 3467 + 3466 ], "group_hash": [ - 75 + 74 ], "id": [ - 3864 + 3863 ], "last_notified_at": [ - 3467 + 3466 ], "member_steam_ids": [ - 174 + 173 ], "status": [ - 75 + 74 ], "together_count": [ 38 ], "__typename": [ - 75 + 74 ] }, "team_suggestions_stddev_fields": { @@ -81570,7 +82467,7 @@ export default { 29 ], "__typename": [ - 75 + 74 ] }, "team_suggestions_stddev_pop_fields": { @@ -81578,7 +82475,7 @@ export default { 29 ], "__typename": [ - 75 + 74 ] }, "team_suggestions_stddev_samp_fields": { @@ -81586,44 +82483,44 @@ export default { 29 ], "__typename": [ - 75 + 74 ] }, "team_suggestions_stream_cursor_input": { "initial_value": [ - 3417 + 3416 ], "ordering": [ - 229 + 228 ], "__typename": [ - 75 + 74 ] }, "team_suggestions_stream_cursor_value_input": { "created_at": [ - 3467 + 3466 ], "group_hash": [ - 75 + 74 ], "id": [ - 3864 + 3863 ], "last_notified_at": [ - 3467 + 3466 ], "member_steam_ids": [ - 174 + 173 ], "status": [ - 75 + 74 ], "together_count": [ 38 ], "__typename": [ - 75 + 74 ] }, "team_suggestions_sum_fields": { @@ -81631,22 +82528,22 @@ export default { 38 ], "__typename": [ - 75 + 74 ] }, "team_suggestions_update_column": {}, "team_suggestions_updates": { "_inc": [ - 3403 + 3402 ], "_set": [ - 3412 + 3411 ], "where": [ - 3401 + 3400 ], "__typename": [ - 75 + 74 ] }, "team_suggestions_var_pop_fields": { @@ -81654,7 +82551,7 @@ export default { 29 ], "__typename": [ - 75 + 74 ] }, "team_suggestions_var_samp_fields": { @@ -81662,7 +82559,7 @@ export default { 29 ], "__typename": [ - 75 + 74 ] }, "team_suggestions_variance_fields": { @@ -81670,12 +82567,12 @@ export default { 29 ], "__typename": [ - 75 + 74 ] }, "teams": { "avatar_url": [ - 75 + 74 ], "can_change_role": [ 3 @@ -81690,19 +82587,19 @@ export default { 3 ], "captain": [ - 2915 + 2914 ], "captain_steam_id": [ - 174 + 173 ], "id": [ - 3864 + 3863 ], "invites": [ - 3141, + 3140, { "distinct_on": [ - 3162, + 3161, "[team_invites_select_column!]" ], "limit": [ @@ -81712,19 +82609,19 @@ export default { 38 ], "order_by": [ - 3160, + 3159, "[team_invites_order_by!]" ], "where": [ - 3150 + 3149 ] } ], "invites_aggregate": [ - 3142, + 3141, { "distinct_on": [ - 3162, + 3161, "[team_invites_select_column!]" ], "limit": [ @@ -81734,19 +82631,19 @@ export default { 38 ], "order_by": [ - 3160, + 3159, "[team_invites_order_by!]" ], "where": [ - 3150 + 3149 ] } ], "match_lineups": [ - 1511, + 1510, { "distinct_on": [ - 1533, + 1532, "[match_lineups_select_column!]" ], "limit": [ @@ -81756,19 +82653,19 @@ export default { 38 ], "order_by": [ - 1531, + 1530, "[match_lineups_order_by!]" ], "where": [ - 1520 + 1519 ] } ], "match_lineups_aggregate": [ - 1512, + 1511, { "distinct_on": [ - 1533, + 1532, "[match_lineups_select_column!]" ], "limit": [ @@ -81778,19 +82675,19 @@ export default { 38 ], "order_by": [ - 1531, + 1530, "[match_lineups_order_by!]" ], "where": [ - 1520 + 1519 ] } ], "matches": [ - 1831, + 1830, { "distinct_on": [ - 1853, + 1852, "[matches_select_column!]" ], "limit": [ @@ -81800,37 +82697,37 @@ export default { 38 ], "order_by": [ - 1851, + 1850, "[matches_order_by!]" ], "where": [ - 1840 + 1839 ] } ], "name": [ - 75 + 74 ], "owner": [ - 2915 + 2914 ], "owner_steam_id": [ - 174 + 173 ], "ranks": [ - 4413 + 4412 ], "reputation": [ - 4433 + 4432 ], "role": [ - 75 + 74 ], "roster": [ - 3182, + 3181, { "distinct_on": [ - 3205, + 3204, "[team_roster_select_column!]" ], "limit": [ @@ -81840,19 +82737,19 @@ export default { 38 ], "order_by": [ - 3203, + 3202, "[team_roster_order_by!]" ], "where": [ - 3193 + 3192 ] } ], "roster_aggregate": [ - 3183, + 3182, { "distinct_on": [ - 3205, + 3204, "[team_roster_select_column!]" ], "limit": [ @@ -81862,19 +82759,19 @@ export default { 38 ], "order_by": [ - 3203, + 3202, "[team_roster_order_by!]" ], "where": [ - 3193 + 3192 ] } ], "scrim_availability": [ - 3254, + 3253, { "distinct_on": [ - 3274, + 3273, "[team_scrim_availability_select_column!]" ], "limit": [ @@ -81884,19 +82781,19 @@ export default { 38 ], "order_by": [ - 3272, + 3271, "[team_scrim_availability_order_by!]" ], "where": [ - 3263 + 3262 ] } ], "scrim_availability_aggregate": [ - 3255, + 3254, { "distinct_on": [ - 3274, + 3273, "[team_scrim_availability_select_column!]" ], "limit": [ @@ -81906,25 +82803,25 @@ export default { 38 ], "order_by": [ - 3272, + 3271, "[team_scrim_availability_order_by!]" ], "where": [ - 3263 + 3262 ] } ], "scrim_settings": [ - 3369 + 3368 ], "short_name": [ - 75 + 74 ], "tournament_teams": [ - 3689, + 3688, { "distinct_on": [ - 3711, + 3710, "[tournament_teams_select_column!]" ], "limit": [ @@ -81934,19 +82831,19 @@ export default { 38 ], "order_by": [ - 3709, + 3708, "[tournament_teams_order_by!]" ], "where": [ - 3698 + 3697 ] } ], "tournament_teams_aggregate": [ - 3690, + 3689, { "distinct_on": [ - 3711, + 3710, "[tournament_teams_select_column!]" ], "limit": [ @@ -81956,63 +82853,63 @@ export default { 38 ], "order_by": [ - 3709, + 3708, "[tournament_teams_order_by!]" ], "where": [ - 3698 + 3697 ] } ], "__typename": [ - 75 + 74 ] }, "teams_aggregate": { "aggregate": [ - 3428 + 3427 ], "nodes": [ - 3424 + 3423 ], "__typename": [ - 75 + 74 ] }, "teams_aggregate_bool_exp": { "count": [ - 3427 + 3426 ], "__typename": [ - 75 + 74 ] }, "teams_aggregate_bool_exp_count": { "arguments": [ - 3446 + 3445 ], "distinct": [ 3 ], "filter": [ - 3433 + 3432 ], "predicate": [ 39 ], "__typename": [ - 75 + 74 ] }, "teams_aggregate_fields": { "avg": [ - 3431 + 3430 ], "count": [ 38, { "columns": [ - 3446, + 3445, "[teams_select_column!]" ], "distinct": [ @@ -82021,83 +82918,83 @@ export default { } ], "max": [ - 3437 + 3436 ], "min": [ - 3439 + 3438 ], "stddev": [ - 3448 + 3447 ], "stddev_pop": [ - 3450 + 3449 ], "stddev_samp": [ - 3452 + 3451 ], "sum": [ - 3456 + 3455 ], "var_pop": [ - 3460 + 3459 ], "var_samp": [ - 3462 + 3461 ], "variance": [ - 3464 + 3463 ], "__typename": [ - 75 + 74 ] }, "teams_aggregate_order_by": { "avg": [ - 3432 + 3431 ], "count": [ - 2016 + 2015 ], "max": [ - 3438 + 3437 ], "min": [ - 3440 + 3439 ], "stddev": [ - 3449 + 3448 ], "stddev_pop": [ - 3451 + 3450 ], "stddev_samp": [ - 3453 + 3452 ], "sum": [ - 3457 + 3456 ], "var_pop": [ - 3461 + 3460 ], "var_samp": [ - 3463 + 3462 ], "variance": [ - 3465 + 3464 ], "__typename": [ - 75 + 74 ] }, "teams_arr_rel_insert_input": { "data": [ - 3436 + 3435 ], "on_conflict": [ - 3443 + 3442 ], "__typename": [ - 75 + 74 ] }, "teams_avg_fields": { @@ -82108,32 +83005,32 @@ export default { 29 ], "__typename": [ - 75 + 74 ] }, "teams_avg_order_by": { "captain_steam_id": [ - 2016 + 2015 ], "owner_steam_id": [ - 2016 + 2015 ], "__typename": [ - 75 + 74 ] }, "teams_bool_exp": { "_and": [ - 3433 + 3432 ], "_not": [ - 3433 + 3432 ], "_or": [ - 3433 + 3432 ], "avatar_url": [ - 77 + 76 ], "can_change_role": [ 4 @@ -82148,236 +83045,236 @@ export default { 4 ], "captain": [ - 2919 + 2918 ], "captain_steam_id": [ - 176 + 175 ], "id": [ - 3866 + 3865 ], "invites": [ - 3150 + 3149 ], "invites_aggregate": [ - 3143 + 3142 ], "match_lineups": [ - 1520 + 1519 ], "match_lineups_aggregate": [ - 1513 + 1512 ], "matches": [ - 1840 + 1839 ], "name": [ - 77 + 76 ], "owner": [ - 2919 + 2918 ], "owner_steam_id": [ - 176 + 175 ], "ranks": [ - 4417 + 4416 ], "reputation": [ - 4437 + 4436 ], "role": [ - 77 + 76 ], "roster": [ - 3193 + 3192 ], "roster_aggregate": [ - 3184 + 3183 ], "scrim_availability": [ - 3263 + 3262 ], "scrim_availability_aggregate": [ - 3256 + 3255 ], "scrim_settings": [ - 3373 + 3372 ], "short_name": [ - 77 + 76 ], "tournament_teams": [ - 3698 + 3697 ], "tournament_teams_aggregate": [ - 3691 + 3690 ], "__typename": [ - 75 + 74 ] }, "teams_constraint": {}, "teams_inc_input": { "captain_steam_id": [ - 174 + 173 ], "owner_steam_id": [ - 174 + 173 ], "__typename": [ - 75 + 74 ] }, "teams_insert_input": { "avatar_url": [ - 75 + 74 ], "captain": [ - 2926 + 2925 ], "captain_steam_id": [ - 174 + 173 ], "id": [ - 3864 + 3863 ], "invites": [ - 3147 + 3146 ], "match_lineups": [ - 1517 + 1516 ], "name": [ - 75 + 74 ], "owner": [ - 2926 + 2925 ], "owner_steam_id": [ - 174 + 173 ], "ranks": [ - 4421 + 4420 ], "reputation": [ - 4441 + 4440 ], "roster": [ - 3190 + 3189 ], "scrim_availability": [ - 3262 + 3261 ], "scrim_settings": [ - 3380 + 3379 ], "short_name": [ - 75 + 74 ], "tournament_teams": [ - 3695 + 3694 ], "__typename": [ - 75 + 74 ] }, "teams_max_fields": { "avatar_url": [ - 75 + 74 ], "captain_steam_id": [ - 174 + 173 ], "id": [ - 3864 + 3863 ], "name": [ - 75 + 74 ], "owner_steam_id": [ - 174 + 173 ], "role": [ - 75 + 74 ], "short_name": [ - 75 + 74 ], "__typename": [ - 75 + 74 ] }, "teams_max_order_by": { "avatar_url": [ - 2016 + 2015 ], "captain_steam_id": [ - 2016 + 2015 ], "id": [ - 2016 + 2015 ], "name": [ - 2016 + 2015 ], "owner_steam_id": [ - 2016 + 2015 ], "short_name": [ - 2016 + 2015 ], "__typename": [ - 75 + 74 ] }, "teams_min_fields": { "avatar_url": [ - 75 + 74 ], "captain_steam_id": [ - 174 + 173 ], "id": [ - 3864 + 3863 ], "name": [ - 75 + 74 ], "owner_steam_id": [ - 174 + 173 ], "role": [ - 75 + 74 ], "short_name": [ - 75 + 74 ], "__typename": [ - 75 + 74 ] }, "teams_min_order_by": { "avatar_url": [ - 2016 + 2015 ], "captain_steam_id": [ - 2016 + 2015 ], "id": [ - 2016 + 2015 ], "name": [ - 2016 + 2015 ], "owner_steam_id": [ - 2016 + 2015 ], "short_name": [ - 2016 + 2015 ], "__typename": [ - 75 + 74 ] }, "teams_mutation_response": { @@ -82385,138 +83282,138 @@ export default { 38 ], "returning": [ - 3424 + 3423 ], "__typename": [ - 75 + 74 ] }, "teams_obj_rel_insert_input": { "data": [ - 3436 + 3435 ], "on_conflict": [ - 3443 + 3442 ], "__typename": [ - 75 + 74 ] }, "teams_on_conflict": { "constraint": [ - 3434 + 3433 ], "update_columns": [ - 3458 + 3457 ], "where": [ - 3433 + 3432 ], "__typename": [ - 75 + 74 ] }, "teams_order_by": { "avatar_url": [ - 2016 + 2015 ], "can_change_role": [ - 2016 + 2015 ], "can_invite": [ - 2016 + 2015 ], "can_manage_scrims": [ - 2016 + 2015 ], "can_remove": [ - 2016 + 2015 ], "captain": [ - 2928 + 2927 ], "captain_steam_id": [ - 2016 + 2015 ], "id": [ - 2016 + 2015 ], "invites_aggregate": [ - 3146 + 3145 ], "match_lineups_aggregate": [ - 1516 + 1515 ], "matches_aggregate": [ - 1836 + 1835 ], "name": [ - 2016 + 2015 ], "owner": [ - 2928 + 2927 ], "owner_steam_id": [ - 2016 + 2015 ], "ranks": [ - 4422 + 4421 ], "reputation": [ - 4442 + 4441 ], "role": [ - 2016 + 2015 ], "roster_aggregate": [ - 3189 + 3188 ], "scrim_availability_aggregate": [ - 3261 + 3260 ], "scrim_settings": [ - 3382 + 3381 ], "short_name": [ - 2016 + 2015 ], "tournament_teams_aggregate": [ - 3694 + 3693 ], "__typename": [ - 75 + 74 ] }, "teams_pk_columns_input": { "id": [ - 3864 + 3863 ], "__typename": [ - 75 + 74 ] }, "teams_select_column": {}, "teams_set_input": { "avatar_url": [ - 75 + 74 ], "captain_steam_id": [ - 174 + 173 ], "id": [ - 3864 + 3863 ], "name": [ - 75 + 74 ], "owner_steam_id": [ - 174 + 173 ], "short_name": [ - 75 + 74 ], "__typename": [ - 75 + 74 ] }, "teams_stddev_fields": { @@ -82527,18 +83424,18 @@ export default { 29 ], "__typename": [ - 75 + 74 ] }, "teams_stddev_order_by": { "captain_steam_id": [ - 2016 + 2015 ], "owner_steam_id": [ - 2016 + 2015 ], "__typename": [ - 75 + 74 ] }, "teams_stddev_pop_fields": { @@ -82549,18 +83446,18 @@ export default { 29 ], "__typename": [ - 75 + 74 ] }, "teams_stddev_pop_order_by": { "captain_steam_id": [ - 2016 + 2015 ], "owner_steam_id": [ - 2016 + 2015 ], "__typename": [ - 75 + 74 ] }, "teams_stddev_samp_fields": { @@ -82571,89 +83468,89 @@ export default { 29 ], "__typename": [ - 75 + 74 ] }, "teams_stddev_samp_order_by": { "captain_steam_id": [ - 2016 + 2015 ], "owner_steam_id": [ - 2016 + 2015 ], "__typename": [ - 75 + 74 ] }, "teams_stream_cursor_input": { "initial_value": [ - 3455 + 3454 ], "ordering": [ - 229 + 228 ], "__typename": [ - 75 + 74 ] }, "teams_stream_cursor_value_input": { "avatar_url": [ - 75 + 74 ], "captain_steam_id": [ - 174 + 173 ], "id": [ - 3864 + 3863 ], "name": [ - 75 + 74 ], "owner_steam_id": [ - 174 + 173 ], "short_name": [ - 75 + 74 ], "__typename": [ - 75 + 74 ] }, "teams_sum_fields": { "captain_steam_id": [ - 174 + 173 ], "owner_steam_id": [ - 174 + 173 ], "__typename": [ - 75 + 74 ] }, "teams_sum_order_by": { "captain_steam_id": [ - 2016 + 2015 ], "owner_steam_id": [ - 2016 + 2015 ], "__typename": [ - 75 + 74 ] }, "teams_update_column": {}, "teams_updates": { "_inc": [ - 3435 + 3434 ], "_set": [ - 3447 + 3446 ], "where": [ - 3433 + 3432 ], "__typename": [ - 75 + 74 ] }, "teams_var_pop_fields": { @@ -82664,18 +83561,18 @@ export default { 29 ], "__typename": [ - 75 + 74 ] }, "teams_var_pop_order_by": { "captain_steam_id": [ - 2016 + 2015 ], "owner_steam_id": [ - 2016 + 2015 ], "__typename": [ - 75 + 74 ] }, "teams_var_samp_fields": { @@ -82686,18 +83583,18 @@ export default { 29 ], "__typename": [ - 75 + 74 ] }, "teams_var_samp_order_by": { "captain_steam_id": [ - 2016 + 2015 ], "owner_steam_id": [ - 2016 + 2015 ], "__typename": [ - 75 + 74 ] }, "teams_variance_fields": { @@ -82708,52 +83605,52 @@ export default { 29 ], "__typename": [ - 75 + 74 ] }, "teams_variance_order_by": { "captain_steam_id": [ - 2016 + 2015 ], "owner_steam_id": [ - 2016 + 2015 ], "__typename": [ - 75 + 74 ] }, "timestamp": {}, "timestamptz": {}, "timestamptz_comparison_exp": { "_eq": [ - 3467 + 3466 ], "_gt": [ - 3467 + 3466 ], "_gte": [ - 3467 + 3466 ], "_in": [ - 3467 + 3466 ], "_is_null": [ 3 ], "_lt": [ - 3467 + 3466 ], "_lte": [ - 3467 + 3466 ], "_neq": [ - 3467 + 3466 ], "_nin": [ - 3467 + 3466 ], "__typename": [ - 75 + 74 ] }, "tournament_brackets": { @@ -82761,13 +83658,13 @@ export default { 3 ], "created_at": [ - 3467 + 3466 ], "feeding_brackets": [ - 3469, + 3468, { "distinct_on": [ - 3493, + 3492, "[tournament_brackets_select_column!]" ], "limit": [ @@ -82777,11 +83674,11 @@ export default { 38 ], "order_by": [ - 3491, + 3490, "[tournament_brackets_order_by!]" ], "where": [ - 3480 + 3479 ] } ], @@ -82789,163 +83686,163 @@ export default { 3 ], "group": [ - 2014 + 2013 ], "id": [ - 3864 + 3863 ], "loser_bracket": [ - 3469 + 3468 ], "loser_parent_bracket_id": [ - 3864 + 3863 ], "match": [ - 1831 + 1830 ], "match_id": [ - 3864 + 3863 ], "match_number": [ 38 ], "match_options_id": [ - 3864 + 3863 ], "options": [ - 1711 + 1710 ], "parent_bracket": [ - 3469 + 3468 ], "parent_bracket_id": [ - 3864 + 3863 ], "path": [ - 75 + 74 ], "round": [ 38 ], "scheduled_at": [ - 3467 + 3466 ], "scheduled_eta": [ - 3467 + 3466 ], "stage": [ - 3556 + 3555 ], "team_1": [ - 3689 + 3688 ], "team_1_seed": [ 38 ], "team_2": [ - 3689 + 3688 ], "team_2_seed": [ 38 ], "tournament_stage_id": [ - 3864 + 3863 ], "tournament_team_id_1": [ - 3864 + 3863 ], "tournament_team_id_2": [ - 3864 + 3863 ], "__typename": [ - 75 + 74 ] }, "tournament_brackets_aggregate": { "aggregate": [ - 3475 + 3474 ], "nodes": [ - 3469 + 3468 ], "__typename": [ - 75 + 74 ] }, "tournament_brackets_aggregate_bool_exp": { "bool_and": [ - 3472 + 3471 ], "bool_or": [ - 3473 + 3472 ], "count": [ - 3474 + 3473 ], "__typename": [ - 75 + 74 ] }, "tournament_brackets_aggregate_bool_exp_bool_and": { "arguments": [ - 3494 + 3493 ], "distinct": [ 3 ], "filter": [ - 3480 + 3479 ], "predicate": [ 4 ], "__typename": [ - 75 + 74 ] }, "tournament_brackets_aggregate_bool_exp_bool_or": { "arguments": [ - 3495 + 3494 ], "distinct": [ 3 ], "filter": [ - 3480 + 3479 ], "predicate": [ 4 ], "__typename": [ - 75 + 74 ] }, "tournament_brackets_aggregate_bool_exp_count": { "arguments": [ - 3493 + 3492 ], "distinct": [ 3 ], "filter": [ - 3480 + 3479 ], "predicate": [ 39 ], "__typename": [ - 75 + 74 ] }, "tournament_brackets_aggregate_fields": { "avg": [ - 3478 + 3477 ], "count": [ 38, { "columns": [ - 3493, + 3492, "[tournament_brackets_select_column!]" ], "distinct": [ @@ -82953,6 +83850,44 @@ export default { ] } ], + "max": [ + 3483 + ], + "min": [ + 3485 + ], + "stddev": [ + 3496 + ], + "stddev_pop": [ + 3498 + ], + "stddev_samp": [ + 3500 + ], + "sum": [ + 3504 + ], + "var_pop": [ + 3508 + ], + "var_samp": [ + 3510 + ], + "variance": [ + 3512 + ], + "__typename": [ + 74 + ] + }, + "tournament_brackets_aggregate_order_by": { + "avg": [ + 3478 + ], + "count": [ + 2015 + ], "max": [ 3484 ], @@ -82981,56 +83916,18 @@ export default { 3513 ], "__typename": [ - 75 - ] - }, - "tournament_brackets_aggregate_order_by": { - "avg": [ - 3479 - ], - "count": [ - 2016 - ], - "max": [ - 3485 - ], - "min": [ - 3487 - ], - "stddev": [ - 3498 - ], - "stddev_pop": [ - 3500 - ], - "stddev_samp": [ - 3502 - ], - "sum": [ - 3506 - ], - "var_pop": [ - 3510 - ], - "var_samp": [ - 3512 - ], - "variance": [ - 3514 - ], - "__typename": [ - 75 + 74 ] }, "tournament_brackets_arr_rel_insert_input": { "data": [ - 3483 + 3482 ], "on_conflict": [ - 3490 + 3489 ], "__typename": [ - 75 + 74 ] }, "tournament_brackets_avg_fields": { @@ -83050,128 +83947,128 @@ export default { 29 ], "__typename": [ - 75 + 74 ] }, "tournament_brackets_avg_order_by": { "group": [ - 2016 + 2015 ], "match_number": [ - 2016 + 2015 ], "round": [ - 2016 + 2015 ], "team_1_seed": [ - 2016 + 2015 ], "team_2_seed": [ - 2016 + 2015 ], "__typename": [ - 75 + 74 ] }, "tournament_brackets_bool_exp": { "_and": [ - 3480 + 3479 ], "_not": [ - 3480 + 3479 ], "_or": [ - 3480 + 3479 ], "bye": [ 4 ], "created_at": [ - 3468 + 3467 ], "feeding_brackets": [ - 3480 + 3479 ], "finished": [ 4 ], "group": [ - 2015 + 2014 ], "id": [ - 3866 + 3865 ], "loser_bracket": [ - 3480 + 3479 ], "loser_parent_bracket_id": [ - 3866 + 3865 ], "match": [ - 1840 + 1839 ], "match_id": [ - 3866 + 3865 ], "match_number": [ 39 ], "match_options_id": [ - 3866 + 3865 ], "options": [ - 1715 + 1714 ], "parent_bracket": [ - 3480 + 3479 ], "parent_bracket_id": [ - 3866 + 3865 ], "path": [ - 77 + 76 ], "round": [ 39 ], "scheduled_at": [ - 3468 + 3467 ], "scheduled_eta": [ - 3468 + 3467 ], "stage": [ - 3568 + 3567 ], "team_1": [ - 3698 + 3697 ], "team_1_seed": [ 39 ], "team_2": [ - 3698 + 3697 ], "team_2_seed": [ 39 ], "tournament_stage_id": [ - 3866 + 3865 ], "tournament_team_id_1": [ - 3866 + 3865 ], "tournament_team_id_2": [ - 3866 + 3865 ], "__typename": [ - 75 + 74 ] }, "tournament_brackets_constraint": {}, "tournament_brackets_inc_input": { "group": [ - 2014 + 2013 ], "match_number": [ 38 @@ -83186,7 +84083,7 @@ export default { 38 ], "__typename": [ - 75 + 74 ] }, "tournament_brackets_insert_input": { @@ -83194,120 +84091,120 @@ export default { 3 ], "created_at": [ - 3467 + 3466 ], "finished": [ 3 ], "group": [ - 2014 + 2013 ], "id": [ - 3864 + 3863 ], "loser_bracket": [ - 3489 + 3488 ], "loser_parent_bracket_id": [ - 3864 + 3863 ], "match": [ - 1849 + 1848 ], "match_id": [ - 3864 + 3863 ], "match_number": [ 38 ], "match_options_id": [ - 3864 + 3863 ], "options": [ - 1722 + 1721 ], "parent_bracket": [ - 3489 + 3488 ], "parent_bracket_id": [ - 3864 + 3863 ], "path": [ - 75 + 74 ], "round": [ 38 ], "scheduled_at": [ - 3467 + 3466 ], "scheduled_eta": [ - 3467 + 3466 ], "stage": [ - 3580 + 3579 ], "team_1": [ - 3707 + 3706 ], "team_1_seed": [ 38 ], "team_2": [ - 3707 + 3706 ], "team_2_seed": [ 38 ], "tournament_stage_id": [ - 3864 + 3863 ], "tournament_team_id_1": [ - 3864 + 3863 ], "tournament_team_id_2": [ - 3864 + 3863 ], "__typename": [ - 75 + 74 ] }, "tournament_brackets_max_fields": { "created_at": [ - 3467 + 3466 ], "group": [ - 2014 + 2013 ], "id": [ - 3864 + 3863 ], "loser_parent_bracket_id": [ - 3864 + 3863 ], "match_id": [ - 3864 + 3863 ], "match_number": [ 38 ], "match_options_id": [ - 3864 + 3863 ], "parent_bracket_id": [ - 3864 + 3863 ], "path": [ - 75 + 74 ], "round": [ 38 ], "scheduled_at": [ - 3467 + 3466 ], "scheduled_eta": [ - 3467 + 3466 ], "team_1_seed": [ 38 @@ -83316,110 +84213,110 @@ export default { 38 ], "tournament_stage_id": [ - 3864 + 3863 ], "tournament_team_id_1": [ - 3864 + 3863 ], "tournament_team_id_2": [ - 3864 + 3863 ], "__typename": [ - 75 + 74 ] }, "tournament_brackets_max_order_by": { "created_at": [ - 2016 + 2015 ], "group": [ - 2016 + 2015 ], "id": [ - 2016 + 2015 ], "loser_parent_bracket_id": [ - 2016 + 2015 ], "match_id": [ - 2016 + 2015 ], "match_number": [ - 2016 + 2015 ], "match_options_id": [ - 2016 + 2015 ], "parent_bracket_id": [ - 2016 + 2015 ], "path": [ - 2016 + 2015 ], "round": [ - 2016 + 2015 ], "scheduled_at": [ - 2016 + 2015 ], "scheduled_eta": [ - 2016 + 2015 ], "team_1_seed": [ - 2016 + 2015 ], "team_2_seed": [ - 2016 + 2015 ], "tournament_stage_id": [ - 2016 + 2015 ], "tournament_team_id_1": [ - 2016 + 2015 ], "tournament_team_id_2": [ - 2016 + 2015 ], "__typename": [ - 75 + 74 ] }, "tournament_brackets_min_fields": { "created_at": [ - 3467 + 3466 ], "group": [ - 2014 + 2013 ], "id": [ - 3864 + 3863 ], "loser_parent_bracket_id": [ - 3864 + 3863 ], "match_id": [ - 3864 + 3863 ], "match_number": [ 38 ], "match_options_id": [ - 3864 + 3863 ], "parent_bracket_id": [ - 3864 + 3863 ], "path": [ - 75 + 74 ], "round": [ 38 ], "scheduled_at": [ - 3467 + 3466 ], "scheduled_eta": [ - 3467 + 3466 ], "team_1_seed": [ 38 @@ -83428,72 +84325,72 @@ export default { 38 ], "tournament_stage_id": [ - 3864 + 3863 ], "tournament_team_id_1": [ - 3864 + 3863 ], "tournament_team_id_2": [ - 3864 + 3863 ], "__typename": [ - 75 + 74 ] }, "tournament_brackets_min_order_by": { "created_at": [ - 2016 + 2015 ], "group": [ - 2016 + 2015 ], "id": [ - 2016 + 2015 ], "loser_parent_bracket_id": [ - 2016 + 2015 ], "match_id": [ - 2016 + 2015 ], "match_number": [ - 2016 + 2015 ], "match_options_id": [ - 2016 + 2015 ], "parent_bracket_id": [ - 2016 + 2015 ], "path": [ - 2016 + 2015 ], "round": [ - 2016 + 2015 ], "scheduled_at": [ - 2016 + 2015 ], "scheduled_eta": [ - 2016 + 2015 ], "team_1_seed": [ - 2016 + 2015 ], "team_2_seed": [ - 2016 + 2015 ], "tournament_stage_id": [ - 2016 + 2015 ], "tournament_team_id_1": [ - 2016 + 2015 ], "tournament_team_id_2": [ - 2016 + 2015 ], "__typename": [ - 75 + 74 ] }, "tournament_brackets_mutation_response": { @@ -83501,129 +84398,129 @@ export default { 38 ], "returning": [ - 3469 + 3468 ], "__typename": [ - 75 + 74 ] }, "tournament_brackets_obj_rel_insert_input": { "data": [ - 3483 + 3482 ], "on_conflict": [ - 3490 + 3489 ], "__typename": [ - 75 + 74 ] }, "tournament_brackets_on_conflict": { "constraint": [ - 3481 + 3480 ], "update_columns": [ - 3507 + 3506 ], "where": [ - 3480 + 3479 ], "__typename": [ - 75 + 74 ] }, "tournament_brackets_order_by": { "bye": [ - 2016 + 2015 ], "created_at": [ - 2016 + 2015 ], "feeding_brackets_aggregate": [ - 3476 + 3475 ], "finished": [ - 2016 + 2015 ], "group": [ - 2016 + 2015 ], "id": [ - 2016 + 2015 ], "loser_bracket": [ - 3491 + 3490 ], "loser_parent_bracket_id": [ - 2016 + 2015 ], "match": [ - 1851 + 1850 ], "match_id": [ - 2016 + 2015 ], "match_number": [ - 2016 + 2015 ], "match_options_id": [ - 2016 + 2015 ], "options": [ - 1724 + 1723 ], "parent_bracket": [ - 3491 + 3490 ], "parent_bracket_id": [ - 2016 + 2015 ], "path": [ - 2016 + 2015 ], "round": [ - 2016 + 2015 ], "scheduled_at": [ - 2016 + 2015 ], "scheduled_eta": [ - 2016 + 2015 ], "stage": [ - 3582 + 3581 ], "team_1": [ - 3709 + 3708 ], "team_1_seed": [ - 2016 + 2015 ], "team_2": [ - 3709 + 3708 ], "team_2_seed": [ - 2016 + 2015 ], "tournament_stage_id": [ - 2016 + 2015 ], "tournament_team_id_1": [ - 2016 + 2015 ], "tournament_team_id_2": [ - 2016 + 2015 ], "__typename": [ - 75 + 74 ] }, "tournament_brackets_pk_columns_input": { "id": [ - 3864 + 3863 ], "__typename": [ - 75 + 74 ] }, "tournament_brackets_select_column": {}, @@ -83634,43 +84531,43 @@ export default { 3 ], "created_at": [ - 3467 + 3466 ], "finished": [ 3 ], "group": [ - 2014 + 2013 ], "id": [ - 3864 + 3863 ], "loser_parent_bracket_id": [ - 3864 + 3863 ], "match_id": [ - 3864 + 3863 ], "match_number": [ 38 ], "match_options_id": [ - 3864 + 3863 ], "parent_bracket_id": [ - 3864 + 3863 ], "path": [ - 75 + 74 ], "round": [ 38 ], "scheduled_at": [ - 3467 + 3466 ], "scheduled_eta": [ - 3467 + 3466 ], "team_1_seed": [ 38 @@ -83679,16 +84576,16 @@ export default { 38 ], "tournament_stage_id": [ - 3864 + 3863 ], "tournament_team_id_1": [ - 3864 + 3863 ], "tournament_team_id_2": [ - 3864 + 3863 ], "__typename": [ - 75 + 74 ] }, "tournament_brackets_stddev_fields": { @@ -83708,27 +84605,27 @@ export default { 29 ], "__typename": [ - 75 + 74 ] }, "tournament_brackets_stddev_order_by": { "group": [ - 2016 + 2015 ], "match_number": [ - 2016 + 2015 ], "round": [ - 2016 + 2015 ], "team_1_seed": [ - 2016 + 2015 ], "team_2_seed": [ - 2016 + 2015 ], "__typename": [ - 75 + 74 ] }, "tournament_brackets_stddev_pop_fields": { @@ -83748,27 +84645,27 @@ export default { 29 ], "__typename": [ - 75 + 74 ] }, "tournament_brackets_stddev_pop_order_by": { "group": [ - 2016 + 2015 ], "match_number": [ - 2016 + 2015 ], "round": [ - 2016 + 2015 ], "team_1_seed": [ - 2016 + 2015 ], "team_2_seed": [ - 2016 + 2015 ], "__typename": [ - 75 + 74 ] }, "tournament_brackets_stddev_samp_fields": { @@ -83788,38 +84685,38 @@ export default { 29 ], "__typename": [ - 75 + 74 ] }, "tournament_brackets_stddev_samp_order_by": { "group": [ - 2016 + 2015 ], "match_number": [ - 2016 + 2015 ], "round": [ - 2016 + 2015 ], "team_1_seed": [ - 2016 + 2015 ], "team_2_seed": [ - 2016 + 2015 ], "__typename": [ - 75 + 74 ] }, "tournament_brackets_stream_cursor_input": { "initial_value": [ - 3504 + 3503 ], "ordering": [ - 229 + 228 ], "__typename": [ - 75 + 74 ] }, "tournament_brackets_stream_cursor_value_input": { @@ -83827,43 +84724,43 @@ export default { 3 ], "created_at": [ - 3467 + 3466 ], "finished": [ 3 ], "group": [ - 2014 + 2013 ], "id": [ - 3864 + 3863 ], "loser_parent_bracket_id": [ - 3864 + 3863 ], "match_id": [ - 3864 + 3863 ], "match_number": [ 38 ], "match_options_id": [ - 3864 + 3863 ], "parent_bracket_id": [ - 3864 + 3863 ], "path": [ - 75 + 74 ], "round": [ 38 ], "scheduled_at": [ - 3467 + 3466 ], "scheduled_eta": [ - 3467 + 3466 ], "team_1_seed": [ 38 @@ -83872,21 +84769,21 @@ export default { 38 ], "tournament_stage_id": [ - 3864 + 3863 ], "tournament_team_id_1": [ - 3864 + 3863 ], "tournament_team_id_2": [ - 3864 + 3863 ], "__typename": [ - 75 + 74 ] }, "tournament_brackets_sum_fields": { "group": [ - 2014 + 2013 ], "match_number": [ 38 @@ -83901,42 +84798,42 @@ export default { 38 ], "__typename": [ - 75 + 74 ] }, "tournament_brackets_sum_order_by": { "group": [ - 2016 + 2015 ], "match_number": [ - 2016 + 2015 ], "round": [ - 2016 + 2015 ], "team_1_seed": [ - 2016 + 2015 ], "team_2_seed": [ - 2016 + 2015 ], "__typename": [ - 75 + 74 ] }, "tournament_brackets_update_column": {}, "tournament_brackets_updates": { "_inc": [ - 3482 + 3481 ], "_set": [ - 3496 + 3495 ], "where": [ - 3480 + 3479 ], "__typename": [ - 75 + 74 ] }, "tournament_brackets_var_pop_fields": { @@ -83956,27 +84853,27 @@ export default { 29 ], "__typename": [ - 75 + 74 ] }, "tournament_brackets_var_pop_order_by": { "group": [ - 2016 + 2015 ], "match_number": [ - 2016 + 2015 ], "round": [ - 2016 + 2015 ], "team_1_seed": [ - 2016 + 2015 ], "team_2_seed": [ - 2016 + 2015 ], "__typename": [ - 75 + 74 ] }, "tournament_brackets_var_samp_fields": { @@ -83996,27 +84893,27 @@ export default { 29 ], "__typename": [ - 75 + 74 ] }, "tournament_brackets_var_samp_order_by": { "group": [ - 2016 + 2015 ], "match_number": [ - 2016 + 2015 ], "round": [ - 2016 + 2015 ], "team_1_seed": [ - 2016 + 2015 ], "team_2_seed": [ - 2016 + 2015 ], "__typename": [ - 75 + 74 ] }, "tournament_brackets_variance_fields": { @@ -84036,91 +84933,91 @@ export default { 29 ], "__typename": [ - 75 + 74 ] }, "tournament_brackets_variance_order_by": { "group": [ - 2016 + 2015 ], "match_number": [ - 2016 + 2015 ], "round": [ - 2016 + 2015 ], "team_1_seed": [ - 2016 + 2015 ], "team_2_seed": [ - 2016 + 2015 ], "__typename": [ - 75 + 74 ] }, "tournament_organizers": { "organizer": [ - 2915 + 2914 ], "steam_id": [ - 174 + 173 ], "tournament": [ - 3818 + 3817 ], "tournament_id": [ - 3864 + 3863 ], "__typename": [ - 75 + 74 ] }, "tournament_organizers_aggregate": { "aggregate": [ - 3519 + 3518 ], "nodes": [ - 3515 + 3514 ], "__typename": [ - 75 + 74 ] }, "tournament_organizers_aggregate_bool_exp": { "count": [ - 3518 + 3517 ], "__typename": [ - 75 + 74 ] }, "tournament_organizers_aggregate_bool_exp_count": { "arguments": [ - 3536 + 3535 ], "distinct": [ 3 ], "filter": [ - 3524 + 3523 ], "predicate": [ 39 ], "__typename": [ - 75 + 74 ] }, "tournament_organizers_aggregate_fields": { "avg": [ - 3522 + 3521 ], "count": [ 38, { "columns": [ - 3536, + 3535, "[tournament_organizers_select_column!]" ], "distinct": [ @@ -84128,6 +85025,44 @@ export default { ] } ], + "max": [ + 3527 + ], + "min": [ + 3529 + ], + "stddev": [ + 3537 + ], + "stddev_pop": [ + 3539 + ], + "stddev_samp": [ + 3541 + ], + "sum": [ + 3545 + ], + "var_pop": [ + 3549 + ], + "var_samp": [ + 3551 + ], + "variance": [ + 3553 + ], + "__typename": [ + 74 + ] + }, + "tournament_organizers_aggregate_order_by": { + "avg": [ + 3522 + ], + "count": [ + 2015 + ], "max": [ 3528 ], @@ -84156,56 +85091,18 @@ export default { 3554 ], "__typename": [ - 75 - ] - }, - "tournament_organizers_aggregate_order_by": { - "avg": [ - 3523 - ], - "count": [ - 2016 - ], - "max": [ - 3529 - ], - "min": [ - 3531 - ], - "stddev": [ - 3539 - ], - "stddev_pop": [ - 3541 - ], - "stddev_samp": [ - 3543 - ], - "sum": [ - 3547 - ], - "var_pop": [ - 3551 - ], - "var_samp": [ - 3553 - ], - "variance": [ - 3555 - ], - "__typename": [ - 75 + 74 ] }, "tournament_organizers_arr_rel_insert_input": { "data": [ - 3527 + 3526 ], "on_conflict": [ - 3533 + 3532 ], "__typename": [ - 75 + 74 ] }, "tournament_organizers_avg_fields": { @@ -84213,111 +85110,111 @@ export default { 29 ], "__typename": [ - 75 + 74 ] }, "tournament_organizers_avg_order_by": { "steam_id": [ - 2016 + 2015 ], "__typename": [ - 75 + 74 ] }, "tournament_organizers_bool_exp": { "_and": [ - 3524 + 3523 ], "_not": [ - 3524 + 3523 ], "_or": [ - 3524 + 3523 ], "organizer": [ - 2919 + 2918 ], "steam_id": [ - 176 + 175 ], "tournament": [ - 3829 + 3828 ], "tournament_id": [ - 3866 + 3865 ], "__typename": [ - 75 + 74 ] }, "tournament_organizers_constraint": {}, "tournament_organizers_inc_input": { "steam_id": [ - 174 + 173 ], "__typename": [ - 75 + 74 ] }, "tournament_organizers_insert_input": { "organizer": [ - 2926 + 2925 ], "steam_id": [ - 174 + 173 ], "tournament": [ - 3838 + 3837 ], "tournament_id": [ - 3864 + 3863 ], "__typename": [ - 75 + 74 ] }, "tournament_organizers_max_fields": { "steam_id": [ - 174 + 173 ], "tournament_id": [ - 3864 + 3863 ], "__typename": [ - 75 + 74 ] }, "tournament_organizers_max_order_by": { "steam_id": [ - 2016 + 2015 ], "tournament_id": [ - 2016 + 2015 ], "__typename": [ - 75 + 74 ] }, "tournament_organizers_min_fields": { "steam_id": [ - 174 + 173 ], "tournament_id": [ - 3864 + 3863 ], "__typename": [ - 75 + 74 ] }, "tournament_organizers_min_order_by": { "steam_id": [ - 2016 + 2015 ], "tournament_id": [ - 2016 + 2015 ], "__typename": [ - 75 + 74 ] }, "tournament_organizers_mutation_response": { @@ -84325,64 +85222,64 @@ export default { 38 ], "returning": [ - 3515 + 3514 ], "__typename": [ - 75 + 74 ] }, "tournament_organizers_on_conflict": { "constraint": [ - 3525 + 3524 ], "update_columns": [ - 3548 + 3547 ], "where": [ - 3524 + 3523 ], "__typename": [ - 75 + 74 ] }, "tournament_organizers_order_by": { "organizer": [ - 2928 + 2927 ], "steam_id": [ - 2016 + 2015 ], "tournament": [ - 3840 + 3839 ], "tournament_id": [ - 2016 + 2015 ], "__typename": [ - 75 + 74 ] }, "tournament_organizers_pk_columns_input": { "steam_id": [ - 174 + 173 ], "tournament_id": [ - 3864 + 3863 ], "__typename": [ - 75 + 74 ] }, "tournament_organizers_select_column": {}, "tournament_organizers_set_input": { "steam_id": [ - 174 + 173 ], "tournament_id": [ - 3864 + 3863 ], "__typename": [ - 75 + 74 ] }, "tournament_organizers_stddev_fields": { @@ -84390,15 +85287,15 @@ export default { 29 ], "__typename": [ - 75 + 74 ] }, "tournament_organizers_stddev_order_by": { "steam_id": [ - 2016 + 2015 ], "__typename": [ - 75 + 74 ] }, "tournament_organizers_stddev_pop_fields": { @@ -84406,15 +85303,15 @@ export default { 29 ], "__typename": [ - 75 + 74 ] }, "tournament_organizers_stddev_pop_order_by": { "steam_id": [ - 2016 + 2015 ], "__typename": [ - 75 + 74 ] }, "tournament_organizers_stddev_samp_fields": { @@ -84422,68 +85319,68 @@ export default { 29 ], "__typename": [ - 75 + 74 ] }, "tournament_organizers_stddev_samp_order_by": { "steam_id": [ - 2016 + 2015 ], "__typename": [ - 75 + 74 ] }, "tournament_organizers_stream_cursor_input": { "initial_value": [ - 3545 + 3544 ], "ordering": [ - 229 + 228 ], "__typename": [ - 75 + 74 ] }, "tournament_organizers_stream_cursor_value_input": { "steam_id": [ - 174 + 173 ], "tournament_id": [ - 3864 + 3863 ], "__typename": [ - 75 + 74 ] }, "tournament_organizers_sum_fields": { "steam_id": [ - 174 + 173 ], "__typename": [ - 75 + 74 ] }, "tournament_organizers_sum_order_by": { "steam_id": [ - 2016 + 2015 ], "__typename": [ - 75 + 74 ] }, "tournament_organizers_update_column": {}, "tournament_organizers_updates": { "_inc": [ - 3526 + 3525 ], "_set": [ - 3537 + 3536 ], "where": [ - 3524 + 3523 ], "__typename": [ - 75 + 74 ] }, "tournament_organizers_var_pop_fields": { @@ -84491,15 +85388,15 @@ export default { 29 ], "__typename": [ - 75 + 74 ] }, "tournament_organizers_var_pop_order_by": { "steam_id": [ - 2016 + 2015 ], "__typename": [ - 75 + 74 ] }, "tournament_organizers_var_samp_fields": { @@ -84507,15 +85404,15 @@ export default { 29 ], "__typename": [ - 75 + 74 ] }, "tournament_organizers_var_samp_order_by": { "steam_id": [ - 2016 + 2015 ], "__typename": [ - 75 + 74 ] }, "tournament_organizers_variance_fields": { @@ -84523,23 +85420,23 @@ export default { 29 ], "__typename": [ - 75 + 74 ] }, "tournament_organizers_variance_order_by": { "steam_id": [ - 2016 + 2015 ], "__typename": [ - 75 + 74 ] }, "tournament_stages": { "brackets": [ - 3469, + 3468, { "distinct_on": [ - 3493, + 3492, "[tournament_brackets_select_column!]" ], "limit": [ @@ -84549,19 +85446,19 @@ export default { 38 ], "order_by": [ - 3491, + 3490, "[tournament_brackets_order_by!]" ], "where": [ - 3480 + 3479 ] } ], "brackets_aggregate": [ - 3470, + 3469, { "distinct_on": [ - 3493, + 3492, "[tournament_brackets_select_column!]" ], "limit": [ @@ -84571,11 +85468,11 @@ export default { 38 ], "order_by": [ - 3491, + 3490, "[tournament_brackets_order_by!]" ], "where": [ - 3480 + 3479 ] } ], @@ -84586,16 +85483,16 @@ export default { 38 ], "e_tournament_stage_type": [ - 987 + 986 ], "groups": [ 38 ], "id": [ - 3864 + 3863 ], "match_options_id": [ - 3864 + 3863 ], "max_teams": [ 38 @@ -84604,16 +85501,16 @@ export default { 38 ], "options": [ - 1711 + 1710 ], "order": [ 38 ], "results": [ - 4453, + 4452, { "distinct_on": [ - 4485, + 4484, "[v_team_stage_results_select_column!]" ], "limit": [ @@ -84623,19 +85520,19 @@ export default { 38 ], "order_by": [ - 4483, + 4482, "[v_team_stage_results_order_by!]" ], "where": [ - 4472 + 4471 ] } ], "results_aggregate": [ - 4454, + 4453, { "distinct_on": [ - 4485, + 4484, "[v_team_stage_results_select_column!]" ], "limit": [ @@ -84645,19 +85542,19 @@ export default { 38 ], "order_by": [ - 4483, + 4482, "[v_team_stage_results_order_by!]" ], "where": [ - 4472 + 4471 ] } ], "settings": [ - 1240, + 1239, { "path": [ - 75 + 74 ] } ], @@ -84665,103 +85562,103 @@ export default { 3 ], "tournament": [ - 3818 + 3817 ], "tournament_id": [ - 3864 + 3863 ], "type": [ - 992 + 991 ], "__typename": [ - 75 + 74 ] }, "tournament_stages_aggregate": { "aggregate": [ - 3562 + 3561 ], "nodes": [ - 3556 + 3555 ], "__typename": [ - 75 + 74 ] }, "tournament_stages_aggregate_bool_exp": { "bool_and": [ - 3559 + 3558 ], "bool_or": [ - 3560 + 3559 ], "count": [ - 3561 + 3560 ], "__typename": [ - 75 + 74 ] }, "tournament_stages_aggregate_bool_exp_bool_and": { "arguments": [ - 3586 + 3585 ], "distinct": [ 3 ], "filter": [ - 3568 + 3567 ], "predicate": [ 4 ], "__typename": [ - 75 + 74 ] }, "tournament_stages_aggregate_bool_exp_bool_or": { "arguments": [ - 3587 + 3586 ], "distinct": [ 3 ], "filter": [ - 3568 + 3567 ], "predicate": [ 4 ], "__typename": [ - 75 + 74 ] }, "tournament_stages_aggregate_bool_exp_count": { "arguments": [ - 3585 + 3584 ], "distinct": [ 3 ], "filter": [ - 3568 + 3567 ], "predicate": [ 39 ], "__typename": [ - 75 + 74 ] }, "tournament_stages_aggregate_fields": { "avg": [ - 3566 + 3565 ], "count": [ 38, { "columns": [ - 3585, + 3584, "[tournament_stages_select_column!]" ], "distinct": [ @@ -84770,91 +85667,91 @@ export default { } ], "max": [ - 3575 + 3574 ], "min": [ - 3577 + 3576 ], "stddev": [ - 3589 + 3588 ], "stddev_pop": [ - 3591 + 3590 ], "stddev_samp": [ - 3593 + 3592 ], "sum": [ - 3597 + 3596 ], "var_pop": [ - 3601 + 3600 ], "var_samp": [ - 3603 + 3602 ], "variance": [ - 3605 + 3604 ], "__typename": [ - 75 + 74 ] }, "tournament_stages_aggregate_order_by": { "avg": [ - 3567 + 3566 ], "count": [ - 2016 + 2015 ], "max": [ - 3576 + 3575 ], "min": [ - 3578 + 3577 ], "stddev": [ - 3590 + 3589 ], "stddev_pop": [ - 3592 + 3591 ], "stddev_samp": [ - 3594 + 3593 ], "sum": [ - 3598 + 3597 ], "var_pop": [ - 3602 + 3601 ], "var_samp": [ - 3604 + 3603 ], "variance": [ - 3606 + 3605 ], "__typename": [ - 75 + 74 ] }, "tournament_stages_append_input": { "settings": [ - 1240 + 1239 ], "__typename": [ - 75 + 74 ] }, "tournament_stages_arr_rel_insert_input": { "data": [ - 3574 + 3573 ], "on_conflict": [ - 3581 + 3580 ], "__typename": [ - 75 + 74 ] }, "tournament_stages_avg_fields": { @@ -84877,47 +85774,47 @@ export default { 29 ], "__typename": [ - 75 + 74 ] }, "tournament_stages_avg_order_by": { "decider_best_of": [ - 2016 + 2015 ], "default_best_of": [ - 2016 + 2015 ], "groups": [ - 2016 + 2015 ], "max_teams": [ - 2016 + 2015 ], "min_teams": [ - 2016 + 2015 ], "order": [ - 2016 + 2015 ], "__typename": [ - 75 + 74 ] }, "tournament_stages_bool_exp": { "_and": [ - 3568 + 3567 ], "_not": [ - 3568 + 3567 ], "_or": [ - 3568 + 3567 ], "brackets": [ - 3480 + 3479 ], "brackets_aggregate": [ - 3471 + 3470 ], "decider_best_of": [ 39 @@ -84926,16 +85823,16 @@ export default { 39 ], "e_tournament_stage_type": [ - 990 + 989 ], "groups": [ 39 ], "id": [ - 3866 + 3865 ], "match_options_id": [ - 3866 + 3865 ], "max_teams": [ 39 @@ -84944,43 +85841,43 @@ export default { 39 ], "options": [ - 1715 + 1714 ], "order": [ 39 ], "results": [ - 4472 + 4471 ], "results_aggregate": [ - 4455 + 4454 ], "settings": [ - 1242 + 1241 ], "third_place_match": [ 4 ], "tournament": [ - 3829 + 3828 ], "tournament_id": [ - 3866 + 3865 ], "type": [ - 993 + 992 ], "__typename": [ - 75 + 74 ] }, "tournament_stages_constraint": {}, "tournament_stages_delete_at_path_input": { "settings": [ - 75 + 74 ], "__typename": [ - 75 + 74 ] }, "tournament_stages_delete_elem_input": { @@ -84988,15 +85885,15 @@ export default { 38 ], "__typename": [ - 75 + 74 ] }, "tournament_stages_delete_key_input": { "settings": [ - 75 + 74 ], "__typename": [ - 75 + 74 ] }, "tournament_stages_inc_input": { @@ -85019,12 +85916,12 @@ export default { 38 ], "__typename": [ - 75 + 74 ] }, "tournament_stages_insert_input": { "brackets": [ - 3477 + 3476 ], "decider_best_of": [ 38 @@ -85033,16 +85930,16 @@ export default { 38 ], "e_tournament_stage_type": [ - 998 + 997 ], "groups": [ 38 ], "id": [ - 3864 + 3863 ], "match_options_id": [ - 3864 + 3863 ], "max_teams": [ 38 @@ -85051,31 +85948,31 @@ export default { 38 ], "options": [ - 1722 + 1721 ], "order": [ 38 ], "results": [ - 4469 + 4468 ], "settings": [ - 1240 + 1239 ], "third_place_match": [ 3 ], "tournament": [ - 3838 + 3837 ], "tournament_id": [ - 3864 + 3863 ], "type": [ - 992 + 991 ], "__typename": [ - 75 + 74 ] }, "tournament_stages_max_fields": { @@ -85089,10 +85986,10 @@ export default { 38 ], "id": [ - 3864 + 3863 ], "match_options_id": [ - 3864 + 3863 ], "max_teams": [ 38 @@ -85104,42 +86001,42 @@ export default { 38 ], "tournament_id": [ - 3864 + 3863 ], "__typename": [ - 75 + 74 ] }, "tournament_stages_max_order_by": { "decider_best_of": [ - 2016 + 2015 ], "default_best_of": [ - 2016 + 2015 ], "groups": [ - 2016 + 2015 ], "id": [ - 2016 + 2015 ], "match_options_id": [ - 2016 + 2015 ], "max_teams": [ - 2016 + 2015 ], "min_teams": [ - 2016 + 2015 ], "order": [ - 2016 + 2015 ], "tournament_id": [ - 2016 + 2015 ], "__typename": [ - 75 + 74 ] }, "tournament_stages_min_fields": { @@ -85153,10 +86050,10 @@ export default { 38 ], "id": [ - 3864 + 3863 ], "match_options_id": [ - 3864 + 3863 ], "max_teams": [ 38 @@ -85168,42 +86065,42 @@ export default { 38 ], "tournament_id": [ - 3864 + 3863 ], "__typename": [ - 75 + 74 ] }, "tournament_stages_min_order_by": { "decider_best_of": [ - 2016 + 2015 ], "default_best_of": [ - 2016 + 2015 ], "groups": [ - 2016 + 2015 ], "id": [ - 2016 + 2015 ], "match_options_id": [ - 2016 + 2015 ], "max_teams": [ - 2016 + 2015 ], "min_teams": [ - 2016 + 2015 ], "order": [ - 2016 + 2015 ], "tournament_id": [ - 2016 + 2015 ], "__typename": [ - 75 + 74 ] }, "tournament_stages_mutation_response": { @@ -85211,107 +86108,107 @@ export default { 38 ], "returning": [ - 3556 + 3555 ], "__typename": [ - 75 + 74 ] }, "tournament_stages_obj_rel_insert_input": { "data": [ - 3574 + 3573 ], "on_conflict": [ - 3581 + 3580 ], "__typename": [ - 75 + 74 ] }, "tournament_stages_on_conflict": { "constraint": [ - 3569 + 3568 ], "update_columns": [ - 3599 + 3598 ], "where": [ - 3568 + 3567 ], "__typename": [ - 75 + 74 ] }, "tournament_stages_order_by": { "brackets_aggregate": [ - 3476 + 3475 ], "decider_best_of": [ - 2016 + 2015 ], "default_best_of": [ - 2016 + 2015 ], "e_tournament_stage_type": [ - 1000 + 999 ], "groups": [ - 2016 + 2015 ], "id": [ - 2016 + 2015 ], "match_options_id": [ - 2016 + 2015 ], "max_teams": [ - 2016 + 2015 ], "min_teams": [ - 2016 + 2015 ], "options": [ - 1724 + 1723 ], "order": [ - 2016 + 2015 ], "results_aggregate": [ - 4468 + 4467 ], "settings": [ - 2016 + 2015 ], "third_place_match": [ - 2016 + 2015 ], "tournament": [ - 3840 + 3839 ], "tournament_id": [ - 2016 + 2015 ], "type": [ - 2016 + 2015 ], "__typename": [ - 75 + 74 ] }, "tournament_stages_pk_columns_input": { "id": [ - 3864 + 3863 ], "__typename": [ - 75 + 74 ] }, "tournament_stages_prepend_input": { "settings": [ - 1240 + 1239 ], "__typename": [ - 75 + 74 ] }, "tournament_stages_select_column": {}, @@ -85328,10 +86225,10 @@ export default { 38 ], "id": [ - 3864 + 3863 ], "match_options_id": [ - 3864 + 3863 ], "max_teams": [ 38 @@ -85343,19 +86240,19 @@ export default { 38 ], "settings": [ - 1240 + 1239 ], "third_place_match": [ 3 ], "tournament_id": [ - 3864 + 3863 ], "type": [ - 992 + 991 ], "__typename": [ - 75 + 74 ] }, "tournament_stages_stddev_fields": { @@ -85378,30 +86275,30 @@ export default { 29 ], "__typename": [ - 75 + 74 ] }, "tournament_stages_stddev_order_by": { "decider_best_of": [ - 2016 + 2015 ], "default_best_of": [ - 2016 + 2015 ], "groups": [ - 2016 + 2015 ], "max_teams": [ - 2016 + 2015 ], "min_teams": [ - 2016 + 2015 ], "order": [ - 2016 + 2015 ], "__typename": [ - 75 + 74 ] }, "tournament_stages_stddev_pop_fields": { @@ -85424,30 +86321,30 @@ export default { 29 ], "__typename": [ - 75 + 74 ] }, "tournament_stages_stddev_pop_order_by": { "decider_best_of": [ - 2016 + 2015 ], "default_best_of": [ - 2016 + 2015 ], "groups": [ - 2016 + 2015 ], "max_teams": [ - 2016 + 2015 ], "min_teams": [ - 2016 + 2015 ], "order": [ - 2016 + 2015 ], "__typename": [ - 75 + 74 ] }, "tournament_stages_stddev_samp_fields": { @@ -85470,41 +86367,41 @@ export default { 29 ], "__typename": [ - 75 + 74 ] }, "tournament_stages_stddev_samp_order_by": { "decider_best_of": [ - 2016 + 2015 ], "default_best_of": [ - 2016 + 2015 ], "groups": [ - 2016 + 2015 ], "max_teams": [ - 2016 + 2015 ], "min_teams": [ - 2016 + 2015 ], "order": [ - 2016 + 2015 ], "__typename": [ - 75 + 74 ] }, "tournament_stages_stream_cursor_input": { "initial_value": [ - 3596 + 3595 ], "ordering": [ - 229 + 228 ], "__typename": [ - 75 + 74 ] }, "tournament_stages_stream_cursor_value_input": { @@ -85518,10 +86415,10 @@ export default { 38 ], "id": [ - 3864 + 3863 ], "match_options_id": [ - 3864 + 3863 ], "max_teams": [ 38 @@ -85533,19 +86430,19 @@ export default { 38 ], "settings": [ - 1240 + 1239 ], "third_place_match": [ 3 ], "tournament_id": [ - 3864 + 3863 ], "type": [ - 992 + 991 ], "__typename": [ - 75 + 74 ] }, "tournament_stages_sum_fields": { @@ -85568,60 +86465,60 @@ export default { 38 ], "__typename": [ - 75 + 74 ] }, "tournament_stages_sum_order_by": { "decider_best_of": [ - 2016 + 2015 ], "default_best_of": [ - 2016 + 2015 ], "groups": [ - 2016 + 2015 ], "max_teams": [ - 2016 + 2015 ], "min_teams": [ - 2016 + 2015 ], "order": [ - 2016 + 2015 ], "__typename": [ - 75 + 74 ] }, "tournament_stages_update_column": {}, "tournament_stages_updates": { "_append": [ - 3564 + 3563 ], "_delete_at_path": [ - 3570 + 3569 ], "_delete_elem": [ - 3571 + 3570 ], "_delete_key": [ - 3572 + 3571 ], "_inc": [ - 3573 + 3572 ], "_prepend": [ - 3584 + 3583 ], "_set": [ - 3588 + 3587 ], "where": [ - 3568 + 3567 ], "__typename": [ - 75 + 74 ] }, "tournament_stages_var_pop_fields": { @@ -85644,30 +86541,30 @@ export default { 29 ], "__typename": [ - 75 + 74 ] }, "tournament_stages_var_pop_order_by": { "decider_best_of": [ - 2016 + 2015 ], "default_best_of": [ - 2016 + 2015 ], "groups": [ - 2016 + 2015 ], "max_teams": [ - 2016 + 2015 ], "min_teams": [ - 2016 + 2015 ], "order": [ - 2016 + 2015 ], "__typename": [ - 75 + 74 ] }, "tournament_stages_var_samp_fields": { @@ -85690,30 +86587,30 @@ export default { 29 ], "__typename": [ - 75 + 74 ] }, "tournament_stages_var_samp_order_by": { "decider_best_of": [ - 2016 + 2015 ], "default_best_of": [ - 2016 + 2015 ], "groups": [ - 2016 + 2015 ], "max_teams": [ - 2016 + 2015 ], "min_teams": [ - 2016 + 2015 ], "order": [ - 2016 + 2015 ], "__typename": [ - 75 + 74 ] }, "tournament_stages_variance_fields": { @@ -85736,106 +86633,106 @@ export default { 29 ], "__typename": [ - 75 + 74 ] }, "tournament_stages_variance_order_by": { "decider_best_of": [ - 2016 + 2015 ], "default_best_of": [ - 2016 + 2015 ], "groups": [ - 2016 + 2015 ], "max_teams": [ - 2016 + 2015 ], "min_teams": [ - 2016 + 2015 ], "order": [ - 2016 + 2015 ], "__typename": [ - 75 + 74 ] }, "tournament_team_invites": { "created_at": [ - 3467 + 3466 ], "id": [ - 3864 + 3863 ], "invited_by": [ - 2915 + 2914 ], "invited_by_player_steam_id": [ - 174 + 173 ], "player": [ - 2915 + 2914 ], "steam_id": [ - 174 + 173 ], "team": [ - 3689 + 3688 ], "tournament_team_id": [ - 3864 + 3863 ], "__typename": [ - 75 + 74 ] }, "tournament_team_invites_aggregate": { "aggregate": [ - 3611 + 3610 ], "nodes": [ - 3607 + 3606 ], "__typename": [ - 75 + 74 ] }, "tournament_team_invites_aggregate_bool_exp": { "count": [ - 3610 + 3609 ], "__typename": [ - 75 + 74 ] }, "tournament_team_invites_aggregate_bool_exp_count": { "arguments": [ - 3628 + 3627 ], "distinct": [ 3 ], "filter": [ - 3616 + 3615 ], "predicate": [ 39 ], "__typename": [ - 75 + 74 ] }, "tournament_team_invites_aggregate_fields": { "avg": [ - 3614 + 3613 ], "count": [ 38, { "columns": [ - 3628, + 3627, "[tournament_team_invites_select_column!]" ], "distinct": [ @@ -85844,83 +86741,83 @@ export default { } ], "max": [ - 3620 + 3619 ], "min": [ - 3622 + 3621 ], "stddev": [ - 3630 + 3629 ], "stddev_pop": [ - 3632 + 3631 ], "stddev_samp": [ - 3634 + 3633 ], "sum": [ - 3638 + 3637 ], "var_pop": [ - 3642 + 3641 ], "var_samp": [ - 3644 + 3643 ], "variance": [ - 3646 + 3645 ], "__typename": [ - 75 + 74 ] }, "tournament_team_invites_aggregate_order_by": { "avg": [ - 3615 + 3614 ], "count": [ - 2016 + 2015 ], "max": [ - 3621 + 3620 ], "min": [ - 3623 + 3622 ], "stddev": [ - 3631 + 3630 ], "stddev_pop": [ - 3633 + 3632 ], "stddev_samp": [ - 3635 + 3634 ], "sum": [ - 3639 + 3638 ], "var_pop": [ - 3643 + 3642 ], "var_samp": [ - 3645 + 3644 ], "variance": [ - 3647 + 3646 ], "__typename": [ - 75 + 74 ] }, "tournament_team_invites_arr_rel_insert_input": { "data": [ - 3619 + 3618 ], "on_conflict": [ - 3625 + 3624 ], "__typename": [ - 75 + 74 ] }, "tournament_team_invites_avg_fields": { @@ -85931,177 +86828,177 @@ export default { 29 ], "__typename": [ - 75 + 74 ] }, "tournament_team_invites_avg_order_by": { "invited_by_player_steam_id": [ - 2016 + 2015 ], "steam_id": [ - 2016 + 2015 ], "__typename": [ - 75 + 74 ] }, "tournament_team_invites_bool_exp": { "_and": [ - 3616 + 3615 ], "_not": [ - 3616 + 3615 ], "_or": [ - 3616 + 3615 ], "created_at": [ - 3468 + 3467 ], "id": [ - 3866 + 3865 ], "invited_by": [ - 2919 + 2918 ], "invited_by_player_steam_id": [ - 176 + 175 ], "player": [ - 2919 + 2918 ], "steam_id": [ - 176 + 175 ], "team": [ - 3698 + 3697 ], "tournament_team_id": [ - 3866 + 3865 ], "__typename": [ - 75 + 74 ] }, "tournament_team_invites_constraint": {}, "tournament_team_invites_inc_input": { "invited_by_player_steam_id": [ - 174 + 173 ], "steam_id": [ - 174 + 173 ], "__typename": [ - 75 + 74 ] }, "tournament_team_invites_insert_input": { "created_at": [ - 3467 + 3466 ], "id": [ - 3864 + 3863 ], "invited_by": [ - 2926 + 2925 ], "invited_by_player_steam_id": [ - 174 + 173 ], "player": [ - 2926 + 2925 ], "steam_id": [ - 174 + 173 ], "team": [ - 3707 + 3706 ], "tournament_team_id": [ - 3864 + 3863 ], "__typename": [ - 75 + 74 ] }, "tournament_team_invites_max_fields": { "created_at": [ - 3467 + 3466 ], "id": [ - 3864 + 3863 ], "invited_by_player_steam_id": [ - 174 + 173 ], "steam_id": [ - 174 + 173 ], "tournament_team_id": [ - 3864 + 3863 ], "__typename": [ - 75 + 74 ] }, "tournament_team_invites_max_order_by": { "created_at": [ - 2016 + 2015 ], "id": [ - 2016 + 2015 ], "invited_by_player_steam_id": [ - 2016 + 2015 ], "steam_id": [ - 2016 + 2015 ], "tournament_team_id": [ - 2016 + 2015 ], "__typename": [ - 75 + 74 ] }, "tournament_team_invites_min_fields": { "created_at": [ - 3467 + 3466 ], "id": [ - 3864 + 3863 ], "invited_by_player_steam_id": [ - 174 + 173 ], "steam_id": [ - 174 + 173 ], "tournament_team_id": [ - 3864 + 3863 ], "__typename": [ - 75 + 74 ] }, "tournament_team_invites_min_order_by": { "created_at": [ - 2016 + 2015 ], "id": [ - 2016 + 2015 ], "invited_by_player_steam_id": [ - 2016 + 2015 ], "steam_id": [ - 2016 + 2015 ], "tournament_team_id": [ - 2016 + 2015 ], "__typename": [ - 75 + 74 ] }, "tournament_team_invites_mutation_response": { @@ -86109,82 +87006,82 @@ export default { 38 ], "returning": [ - 3607 + 3606 ], "__typename": [ - 75 + 74 ] }, "tournament_team_invites_on_conflict": { "constraint": [ - 3617 + 3616 ], "update_columns": [ - 3640 + 3639 ], "where": [ - 3616 + 3615 ], "__typename": [ - 75 + 74 ] }, "tournament_team_invites_order_by": { "created_at": [ - 2016 + 2015 ], "id": [ - 2016 + 2015 ], "invited_by": [ - 2928 + 2927 ], "invited_by_player_steam_id": [ - 2016 + 2015 ], "player": [ - 2928 + 2927 ], "steam_id": [ - 2016 + 2015 ], "team": [ - 3709 + 3708 ], "tournament_team_id": [ - 2016 + 2015 ], "__typename": [ - 75 + 74 ] }, "tournament_team_invites_pk_columns_input": { "id": [ - 3864 + 3863 ], "__typename": [ - 75 + 74 ] }, "tournament_team_invites_select_column": {}, "tournament_team_invites_set_input": { "created_at": [ - 3467 + 3466 ], "id": [ - 3864 + 3863 ], "invited_by_player_steam_id": [ - 174 + 173 ], "steam_id": [ - 174 + 173 ], "tournament_team_id": [ - 3864 + 3863 ], "__typename": [ - 75 + 74 ] }, "tournament_team_invites_stddev_fields": { @@ -86195,18 +87092,18 @@ export default { 29 ], "__typename": [ - 75 + 74 ] }, "tournament_team_invites_stddev_order_by": { "invited_by_player_steam_id": [ - 2016 + 2015 ], "steam_id": [ - 2016 + 2015 ], "__typename": [ - 75 + 74 ] }, "tournament_team_invites_stddev_pop_fields": { @@ -86217,18 +87114,18 @@ export default { 29 ], "__typename": [ - 75 + 74 ] }, "tournament_team_invites_stddev_pop_order_by": { "invited_by_player_steam_id": [ - 2016 + 2015 ], "steam_id": [ - 2016 + 2015 ], "__typename": [ - 75 + 74 ] }, "tournament_team_invites_stddev_samp_fields": { @@ -86239,86 +87136,86 @@ export default { 29 ], "__typename": [ - 75 + 74 ] }, "tournament_team_invites_stddev_samp_order_by": { "invited_by_player_steam_id": [ - 2016 + 2015 ], "steam_id": [ - 2016 + 2015 ], "__typename": [ - 75 + 74 ] }, "tournament_team_invites_stream_cursor_input": { "initial_value": [ - 3637 + 3636 ], "ordering": [ - 229 + 228 ], "__typename": [ - 75 + 74 ] }, "tournament_team_invites_stream_cursor_value_input": { "created_at": [ - 3467 + 3466 ], "id": [ - 3864 + 3863 ], "invited_by_player_steam_id": [ - 174 + 173 ], "steam_id": [ - 174 + 173 ], "tournament_team_id": [ - 3864 + 3863 ], "__typename": [ - 75 + 74 ] }, "tournament_team_invites_sum_fields": { "invited_by_player_steam_id": [ - 174 + 173 ], "steam_id": [ - 174 + 173 ], "__typename": [ - 75 + 74 ] }, "tournament_team_invites_sum_order_by": { "invited_by_player_steam_id": [ - 2016 + 2015 ], "steam_id": [ - 2016 + 2015 ], "__typename": [ - 75 + 74 ] }, "tournament_team_invites_update_column": {}, "tournament_team_invites_updates": { "_inc": [ - 3618 + 3617 ], "_set": [ - 3629 + 3628 ], "where": [ - 3616 + 3615 ], "__typename": [ - 75 + 74 ] }, "tournament_team_invites_var_pop_fields": { @@ -86329,18 +87226,18 @@ export default { 29 ], "__typename": [ - 75 + 74 ] }, "tournament_team_invites_var_pop_order_by": { "invited_by_player_steam_id": [ - 2016 + 2015 ], "steam_id": [ - 2016 + 2015 ], "__typename": [ - 75 + 74 ] }, "tournament_team_invites_var_samp_fields": { @@ -86351,18 +87248,18 @@ export default { 29 ], "__typename": [ - 75 + 74 ] }, "tournament_team_invites_var_samp_order_by": { "invited_by_player_steam_id": [ - 2016 + 2015 ], "steam_id": [ - 2016 + 2015 ], "__typename": [ - 75 + 74 ] }, "tournament_team_invites_variance_fields": { @@ -86373,94 +87270,94 @@ export default { 29 ], "__typename": [ - 75 + 74 ] }, "tournament_team_invites_variance_order_by": { "invited_by_player_steam_id": [ - 2016 + 2015 ], "steam_id": [ - 2016 + 2015 ], "__typename": [ - 75 + 74 ] }, "tournament_team_roster": { "e_team_role": [ - 926 + 925 ], "player": [ - 2915 + 2914 ], "player_steam_id": [ - 174 + 173 ], "role": [ - 931 + 930 ], "tournament": [ - 3818 + 3817 ], "tournament_id": [ - 3864 + 3863 ], "tournament_team": [ - 3689 + 3688 ], "tournament_team_id": [ - 3864 + 3863 ], "__typename": [ - 75 + 74 ] }, "tournament_team_roster_aggregate": { "aggregate": [ - 3652 + 3651 ], "nodes": [ - 3648 + 3647 ], "__typename": [ - 75 + 74 ] }, "tournament_team_roster_aggregate_bool_exp": { "count": [ - 3651 + 3650 ], "__typename": [ - 75 + 74 ] }, "tournament_team_roster_aggregate_bool_exp_count": { "arguments": [ - 3669 + 3668 ], "distinct": [ 3 ], "filter": [ - 3657 + 3656 ], "predicate": [ 39 ], "__typename": [ - 75 + 74 ] }, "tournament_team_roster_aggregate_fields": { "avg": [ - 3655 + 3654 ], "count": [ 38, { "columns": [ - 3669, + 3668, "[tournament_team_roster_select_column!]" ], "distinct": [ @@ -86469,83 +87366,83 @@ export default { } ], "max": [ - 3661 + 3660 ], "min": [ - 3663 + 3662 ], "stddev": [ - 3671 + 3670 ], "stddev_pop": [ - 3673 + 3672 ], "stddev_samp": [ - 3675 + 3674 ], "sum": [ - 3679 + 3678 ], "var_pop": [ - 3683 + 3682 ], "var_samp": [ - 3685 + 3684 ], "variance": [ - 3687 + 3686 ], "__typename": [ - 75 + 74 ] }, "tournament_team_roster_aggregate_order_by": { "avg": [ - 3656 + 3655 ], "count": [ - 2016 + 2015 ], "max": [ - 3662 + 3661 ], "min": [ - 3664 + 3663 ], "stddev": [ - 3672 + 3671 ], "stddev_pop": [ - 3674 + 3673 ], "stddev_samp": [ - 3676 + 3675 ], "sum": [ - 3680 + 3679 ], "var_pop": [ - 3684 + 3683 ], "var_samp": [ - 3686 + 3685 ], "variance": [ - 3688 + 3687 ], "__typename": [ - 75 + 74 ] }, "tournament_team_roster_arr_rel_insert_input": { "data": [ - 3660 + 3659 ], "on_conflict": [ - 3666 + 3665 ], "__typename": [ - 75 + 74 ] }, "tournament_team_roster_avg_fields": { @@ -86553,147 +87450,147 @@ export default { 29 ], "__typename": [ - 75 + 74 ] }, "tournament_team_roster_avg_order_by": { "player_steam_id": [ - 2016 + 2015 ], "__typename": [ - 75 + 74 ] }, "tournament_team_roster_bool_exp": { "_and": [ - 3657 + 3656 ], "_not": [ - 3657 + 3656 ], "_or": [ - 3657 + 3656 ], "e_team_role": [ - 929 + 928 ], "player": [ - 2919 + 2918 ], "player_steam_id": [ - 176 + 175 ], "role": [ - 932 + 931 ], "tournament": [ - 3829 + 3828 ], "tournament_id": [ - 3866 + 3865 ], "tournament_team": [ - 3698 + 3697 ], "tournament_team_id": [ - 3866 + 3865 ], "__typename": [ - 75 + 74 ] }, "tournament_team_roster_constraint": {}, "tournament_team_roster_inc_input": { "player_steam_id": [ - 174 + 173 ], "__typename": [ - 75 + 74 ] }, "tournament_team_roster_insert_input": { "e_team_role": [ - 937 + 936 ], "player": [ - 2926 + 2925 ], "player_steam_id": [ - 174 + 173 ], "role": [ - 931 + 930 ], "tournament": [ - 3838 + 3837 ], "tournament_id": [ - 3864 + 3863 ], "tournament_team": [ - 3707 + 3706 ], "tournament_team_id": [ - 3864 + 3863 ], "__typename": [ - 75 + 74 ] }, "tournament_team_roster_max_fields": { "player_steam_id": [ - 174 + 173 ], "tournament_id": [ - 3864 + 3863 ], "tournament_team_id": [ - 3864 + 3863 ], "__typename": [ - 75 + 74 ] }, "tournament_team_roster_max_order_by": { "player_steam_id": [ - 2016 + 2015 ], "tournament_id": [ - 2016 + 2015 ], "tournament_team_id": [ - 2016 + 2015 ], "__typename": [ - 75 + 74 ] }, "tournament_team_roster_min_fields": { "player_steam_id": [ - 174 + 173 ], "tournament_id": [ - 3864 + 3863 ], "tournament_team_id": [ - 3864 + 3863 ], "__typename": [ - 75 + 74 ] }, "tournament_team_roster_min_order_by": { "player_steam_id": [ - 2016 + 2015 ], "tournament_id": [ - 2016 + 2015 ], "tournament_team_id": [ - 2016 + 2015 ], "__typename": [ - 75 + 74 ] }, "tournament_team_roster_mutation_response": { @@ -86701,82 +87598,82 @@ export default { 38 ], "returning": [ - 3648 + 3647 ], "__typename": [ - 75 + 74 ] }, "tournament_team_roster_on_conflict": { "constraint": [ - 3658 + 3657 ], "update_columns": [ - 3681 + 3680 ], "where": [ - 3657 + 3656 ], "__typename": [ - 75 + 74 ] }, "tournament_team_roster_order_by": { "e_team_role": [ - 939 + 938 ], "player": [ - 2928 + 2927 ], "player_steam_id": [ - 2016 + 2015 ], "role": [ - 2016 + 2015 ], "tournament": [ - 3840 + 3839 ], "tournament_id": [ - 2016 + 2015 ], "tournament_team": [ - 3709 + 3708 ], "tournament_team_id": [ - 2016 + 2015 ], "__typename": [ - 75 + 74 ] }, "tournament_team_roster_pk_columns_input": { "player_steam_id": [ - 174 + 173 ], "tournament_id": [ - 3864 + 3863 ], "__typename": [ - 75 + 74 ] }, "tournament_team_roster_select_column": {}, "tournament_team_roster_set_input": { "player_steam_id": [ - 174 + 173 ], "role": [ - 931 + 930 ], "tournament_id": [ - 3864 + 3863 ], "tournament_team_id": [ - 3864 + 3863 ], "__typename": [ - 75 + 74 ] }, "tournament_team_roster_stddev_fields": { @@ -86784,15 +87681,15 @@ export default { 29 ], "__typename": [ - 75 + 74 ] }, "tournament_team_roster_stddev_order_by": { "player_steam_id": [ - 2016 + 2015 ], "__typename": [ - 75 + 74 ] }, "tournament_team_roster_stddev_pop_fields": { @@ -86800,15 +87697,15 @@ export default { 29 ], "__typename": [ - 75 + 74 ] }, "tournament_team_roster_stddev_pop_order_by": { "player_steam_id": [ - 2016 + 2015 ], "__typename": [ - 75 + 74 ] }, "tournament_team_roster_stddev_samp_fields": { @@ -86816,74 +87713,74 @@ export default { 29 ], "__typename": [ - 75 + 74 ] }, "tournament_team_roster_stddev_samp_order_by": { "player_steam_id": [ - 2016 + 2015 ], "__typename": [ - 75 + 74 ] }, "tournament_team_roster_stream_cursor_input": { "initial_value": [ - 3678 + 3677 ], "ordering": [ - 229 + 228 ], "__typename": [ - 75 + 74 ] }, "tournament_team_roster_stream_cursor_value_input": { "player_steam_id": [ - 174 + 173 ], "role": [ - 931 + 930 ], "tournament_id": [ - 3864 + 3863 ], "tournament_team_id": [ - 3864 + 3863 ], "__typename": [ - 75 + 74 ] }, "tournament_team_roster_sum_fields": { "player_steam_id": [ - 174 + 173 ], "__typename": [ - 75 + 74 ] }, "tournament_team_roster_sum_order_by": { "player_steam_id": [ - 2016 + 2015 ], "__typename": [ - 75 + 74 ] }, "tournament_team_roster_update_column": {}, "tournament_team_roster_updates": { "_inc": [ - 3659 + 3658 ], "_set": [ - 3670 + 3669 ], "where": [ - 3657 + 3656 ], "__typename": [ - 75 + 74 ] }, "tournament_team_roster_var_pop_fields": { @@ -86891,15 +87788,15 @@ export default { 29 ], "__typename": [ - 75 + 74 ] }, "tournament_team_roster_var_pop_order_by": { "player_steam_id": [ - 2016 + 2015 ], "__typename": [ - 75 + 74 ] }, "tournament_team_roster_var_samp_fields": { @@ -86907,15 +87804,15 @@ export default { 29 ], "__typename": [ - 75 + 74 ] }, "tournament_team_roster_var_samp_order_by": { "player_steam_id": [ - 2016 + 2015 ], "__typename": [ - 75 + 74 ] }, "tournament_team_roster_variance_fields": { @@ -86923,15 +87820,15 @@ export default { 29 ], "__typename": [ - 75 + 74 ] }, "tournament_team_roster_variance_order_by": { "player_steam_id": [ - 2016 + 2015 ], "__typename": [ - 75 + 74 ] }, "tournament_teams": { @@ -86939,28 +87836,28 @@ export default { 3 ], "captain": [ - 2915 + 2914 ], "captain_steam_id": [ - 174 + 173 ], "created_at": [ - 3467 + 3466 ], "creator": [ - 2915 + 2914 ], "eligible_at": [ - 3467 + 3466 ], "id": [ - 3864 + 3863 ], "invites": [ - 3607, + 3606, { "distinct_on": [ - 3628, + 3627, "[tournament_team_invites_select_column!]" ], "limit": [ @@ -86970,19 +87867,19 @@ export default { 38 ], "order_by": [ - 3626, + 3625, "[tournament_team_invites_order_by!]" ], "where": [ - 3616 + 3615 ] } ], "invites_aggregate": [ - 3608, + 3607, { "distinct_on": [ - 3628, + 3627, "[tournament_team_invites_select_column!]" ], "limit": [ @@ -86992,28 +87889,28 @@ export default { 38 ], "order_by": [ - 3626, + 3625, "[tournament_team_invites_order_by!]" ], "where": [ - 3616 + 3615 ] } ], "name": [ - 75 + 74 ], "owner_steam_id": [ - 174 + 173 ], "results": [ - 4453 + 4452 ], "roster": [ - 3648, + 3647, { "distinct_on": [ - 3669, + 3668, "[tournament_team_roster_select_column!]" ], "limit": [ @@ -87023,19 +87920,19 @@ export default { 38 ], "order_by": [ - 3667, + 3666, "[tournament_team_roster_order_by!]" ], "where": [ - 3657 + 3656 ] } ], "roster_aggregate": [ - 3649, + 3648, { "distinct_on": [ - 3669, + 3668, "[tournament_team_roster_select_column!]" ], "limit": [ @@ -87045,11 +87942,11 @@ export default { 38 ], "order_by": [ - 3667, + 3666, "[tournament_team_roster_order_by!]" ], "where": [ - 3657 + 3656 ] } ], @@ -87057,69 +87954,69 @@ export default { 38 ], "short_name": [ - 75 + 74 ], "team": [ - 3424 + 3423 ], "team_id": [ - 3864 + 3863 ], "tournament": [ - 3818 + 3817 ], "tournament_id": [ - 3864 + 3863 ], "__typename": [ - 75 + 74 ] }, "tournament_teams_aggregate": { "aggregate": [ - 3693 + 3692 ], "nodes": [ - 3689 + 3688 ], "__typename": [ - 75 + 74 ] }, "tournament_teams_aggregate_bool_exp": { "count": [ - 3692 + 3691 ], "__typename": [ - 75 + 74 ] }, "tournament_teams_aggregate_bool_exp_count": { "arguments": [ - 3711 + 3710 ], "distinct": [ 3 ], "filter": [ - 3698 + 3697 ], "predicate": [ 39 ], "__typename": [ - 75 + 74 ] }, "tournament_teams_aggregate_fields": { "avg": [ - 3696 + 3695 ], "count": [ 38, { "columns": [ - 3711, + 3710, "[tournament_teams_select_column!]" ], "distinct": [ @@ -87128,83 +88025,83 @@ export default { } ], "max": [ - 3702 + 3701 ], "min": [ - 3704 + 3703 ], "stddev": [ - 3713 + 3712 ], "stddev_pop": [ - 3715 + 3714 ], "stddev_samp": [ - 3717 + 3716 ], "sum": [ - 3721 + 3720 ], "var_pop": [ - 3725 + 3724 ], "var_samp": [ - 3727 + 3726 ], "variance": [ - 3729 + 3728 ], "__typename": [ - 75 + 74 ] }, "tournament_teams_aggregate_order_by": { "avg": [ - 3697 + 3696 ], "count": [ - 2016 + 2015 ], "max": [ - 3703 + 3702 ], "min": [ - 3705 + 3704 ], "stddev": [ - 3714 + 3713 ], "stddev_pop": [ - 3716 + 3715 ], "stddev_samp": [ - 3718 + 3717 ], "sum": [ - 3722 + 3721 ], "var_pop": [ - 3726 + 3725 ], "var_samp": [ - 3728 + 3727 ], "variance": [ - 3730 + 3729 ], "__typename": [ - 75 + 74 ] }, "tournament_teams_arr_rel_insert_input": { "data": [ - 3701 + 3700 ], "on_conflict": [ - 3708 + 3707 ], "__typename": [ - 75 + 74 ] }, "tournament_teams_avg_fields": { @@ -87218,306 +88115,306 @@ export default { 29 ], "__typename": [ - 75 + 74 ] }, "tournament_teams_avg_order_by": { "captain_steam_id": [ - 2016 + 2015 ], "owner_steam_id": [ - 2016 + 2015 ], "seed": [ - 2016 + 2015 ], "__typename": [ - 75 + 74 ] }, "tournament_teams_bool_exp": { "_and": [ - 3698 + 3697 ], "_not": [ - 3698 + 3697 ], "_or": [ - 3698 + 3697 ], "can_manage": [ 4 ], "captain": [ - 2919 + 2918 ], "captain_steam_id": [ - 176 + 175 ], "created_at": [ - 3468 + 3467 ], "creator": [ - 2919 + 2918 ], "eligible_at": [ - 3468 + 3467 ], "id": [ - 3866 + 3865 ], "invites": [ - 3616 + 3615 ], "invites_aggregate": [ - 3609 + 3608 ], "name": [ - 77 + 76 ], "owner_steam_id": [ - 176 + 175 ], "results": [ - 4472 + 4471 ], "roster": [ - 3657 + 3656 ], "roster_aggregate": [ - 3650 + 3649 ], "seed": [ 39 ], "short_name": [ - 77 + 76 ], "team": [ - 3433 + 3432 ], "team_id": [ - 3866 + 3865 ], "tournament": [ - 3829 + 3828 ], "tournament_id": [ - 3866 + 3865 ], "__typename": [ - 75 + 74 ] }, "tournament_teams_constraint": {}, "tournament_teams_inc_input": { "captain_steam_id": [ - 174 + 173 ], "owner_steam_id": [ - 174 + 173 ], "seed": [ 38 ], "__typename": [ - 75 + 74 ] }, "tournament_teams_insert_input": { "captain": [ - 2926 + 2925 ], "captain_steam_id": [ - 174 + 173 ], "created_at": [ - 3467 + 3466 ], "creator": [ - 2926 + 2925 ], "eligible_at": [ - 3467 + 3466 ], "id": [ - 3864 + 3863 ], "invites": [ - 3613 + 3612 ], "name": [ - 75 + 74 ], "owner_steam_id": [ - 174 + 173 ], "results": [ - 4481 + 4480 ], "roster": [ - 3654 + 3653 ], "seed": [ 38 ], "short_name": [ - 75 + 74 ], "team": [ - 3442 + 3441 ], "team_id": [ - 3864 + 3863 ], "tournament": [ - 3838 + 3837 ], "tournament_id": [ - 3864 + 3863 ], "__typename": [ - 75 + 74 ] }, "tournament_teams_max_fields": { "captain_steam_id": [ - 174 + 173 ], "created_at": [ - 3467 + 3466 ], "eligible_at": [ - 3467 + 3466 ], "id": [ - 3864 + 3863 ], "name": [ - 75 + 74 ], "owner_steam_id": [ - 174 + 173 ], "seed": [ 38 ], "short_name": [ - 75 + 74 ], "team_id": [ - 3864 + 3863 ], "tournament_id": [ - 3864 + 3863 ], "__typename": [ - 75 + 74 ] }, "tournament_teams_max_order_by": { "captain_steam_id": [ - 2016 + 2015 ], "created_at": [ - 2016 + 2015 ], "eligible_at": [ - 2016 + 2015 ], "id": [ - 2016 + 2015 ], "name": [ - 2016 + 2015 ], "owner_steam_id": [ - 2016 + 2015 ], "seed": [ - 2016 + 2015 ], "short_name": [ - 2016 + 2015 ], "team_id": [ - 2016 + 2015 ], "tournament_id": [ - 2016 + 2015 ], "__typename": [ - 75 + 74 ] }, "tournament_teams_min_fields": { "captain_steam_id": [ - 174 + 173 ], "created_at": [ - 3467 + 3466 ], "eligible_at": [ - 3467 + 3466 ], "id": [ - 3864 + 3863 ], "name": [ - 75 + 74 ], "owner_steam_id": [ - 174 + 173 ], "seed": [ 38 ], "short_name": [ - 75 + 74 ], "team_id": [ - 3864 + 3863 ], "tournament_id": [ - 3864 + 3863 ], "__typename": [ - 75 + 74 ] }, "tournament_teams_min_order_by": { "captain_steam_id": [ - 2016 + 2015 ], "created_at": [ - 2016 + 2015 ], "eligible_at": [ - 2016 + 2015 ], "id": [ - 2016 + 2015 ], "name": [ - 2016 + 2015 ], "owner_steam_id": [ - 2016 + 2015 ], "seed": [ - 2016 + 2015 ], "short_name": [ - 2016 + 2015 ], "team_id": [ - 2016 + 2015 ], "tournament_id": [ - 2016 + 2015 ], "__typename": [ - 75 + 74 ] }, "tournament_teams_mutation_response": { @@ -87525,138 +88422,138 @@ export default { 38 ], "returning": [ - 3689 + 3688 ], "__typename": [ - 75 + 74 ] }, "tournament_teams_obj_rel_insert_input": { "data": [ - 3701 + 3700 ], "on_conflict": [ - 3708 + 3707 ], "__typename": [ - 75 + 74 ] }, "tournament_teams_on_conflict": { "constraint": [ - 3699 + 3698 ], "update_columns": [ - 3723 + 3722 ], "where": [ - 3698 + 3697 ], "__typename": [ - 75 + 74 ] }, "tournament_teams_order_by": { "can_manage": [ - 2016 + 2015 ], "captain": [ - 2928 + 2927 ], "captain_steam_id": [ - 2016 + 2015 ], "created_at": [ - 2016 + 2015 ], "creator": [ - 2928 + 2927 ], "eligible_at": [ - 2016 + 2015 ], "id": [ - 2016 + 2015 ], "invites_aggregate": [ - 3612 + 3611 ], "name": [ - 2016 + 2015 ], "owner_steam_id": [ - 2016 + 2015 ], "results": [ - 4483 + 4482 ], "roster_aggregate": [ - 3653 + 3652 ], "seed": [ - 2016 + 2015 ], "short_name": [ - 2016 + 2015 ], "team": [ - 3444 + 3443 ], "team_id": [ - 2016 + 2015 ], "tournament": [ - 3840 + 3839 ], "tournament_id": [ - 2016 + 2015 ], "__typename": [ - 75 + 74 ] }, "tournament_teams_pk_columns_input": { "id": [ - 3864 + 3863 ], "__typename": [ - 75 + 74 ] }, "tournament_teams_select_column": {}, "tournament_teams_set_input": { "captain_steam_id": [ - 174 + 173 ], "created_at": [ - 3467 + 3466 ], "eligible_at": [ - 3467 + 3466 ], "id": [ - 3864 + 3863 ], "name": [ - 75 + 74 ], "owner_steam_id": [ - 174 + 173 ], "seed": [ 38 ], "short_name": [ - 75 + 74 ], "team_id": [ - 3864 + 3863 ], "tournament_id": [ - 3864 + 3863 ], "__typename": [ - 75 + 74 ] }, "tournament_teams_stddev_fields": { @@ -87670,21 +88567,21 @@ export default { 29 ], "__typename": [ - 75 + 74 ] }, "tournament_teams_stddev_order_by": { "captain_steam_id": [ - 2016 + 2015 ], "owner_steam_id": [ - 2016 + 2015 ], "seed": [ - 2016 + 2015 ], "__typename": [ - 75 + 74 ] }, "tournament_teams_stddev_pop_fields": { @@ -87698,21 +88595,21 @@ export default { 29 ], "__typename": [ - 75 + 74 ] }, "tournament_teams_stddev_pop_order_by": { "captain_steam_id": [ - 2016 + 2015 ], "owner_steam_id": [ - 2016 + 2015 ], "seed": [ - 2016 + 2015 ], "__typename": [ - 75 + 74 ] }, "tournament_teams_stddev_samp_fields": { @@ -87726,110 +88623,110 @@ export default { 29 ], "__typename": [ - 75 + 74 ] }, "tournament_teams_stddev_samp_order_by": { "captain_steam_id": [ - 2016 + 2015 ], "owner_steam_id": [ - 2016 + 2015 ], "seed": [ - 2016 + 2015 ], "__typename": [ - 75 + 74 ] }, "tournament_teams_stream_cursor_input": { "initial_value": [ - 3720 + 3719 ], "ordering": [ - 229 + 228 ], "__typename": [ - 75 + 74 ] }, "tournament_teams_stream_cursor_value_input": { "captain_steam_id": [ - 174 + 173 ], "created_at": [ - 3467 + 3466 ], "eligible_at": [ - 3467 + 3466 ], "id": [ - 3864 + 3863 ], "name": [ - 75 + 74 ], "owner_steam_id": [ - 174 + 173 ], "seed": [ 38 ], "short_name": [ - 75 + 74 ], "team_id": [ - 3864 + 3863 ], "tournament_id": [ - 3864 + 3863 ], "__typename": [ - 75 + 74 ] }, "tournament_teams_sum_fields": { "captain_steam_id": [ - 174 + 173 ], "owner_steam_id": [ - 174 + 173 ], "seed": [ 38 ], "__typename": [ - 75 + 74 ] }, "tournament_teams_sum_order_by": { "captain_steam_id": [ - 2016 + 2015 ], "owner_steam_id": [ - 2016 + 2015 ], "seed": [ - 2016 + 2015 ], "__typename": [ - 75 + 74 ] }, "tournament_teams_update_column": {}, "tournament_teams_updates": { "_inc": [ - 3700 + 3699 ], "_set": [ - 3712 + 3711 ], "where": [ - 3698 + 3697 ], "__typename": [ - 75 + 74 ] }, "tournament_teams_var_pop_fields": { @@ -87843,21 +88740,21 @@ export default { 29 ], "__typename": [ - 75 + 74 ] }, "tournament_teams_var_pop_order_by": { "captain_steam_id": [ - 2016 + 2015 ], "owner_steam_id": [ - 2016 + 2015 ], "seed": [ - 2016 + 2015 ], "__typename": [ - 75 + 74 ] }, "tournament_teams_var_samp_fields": { @@ -87871,21 +88768,21 @@ export default { 29 ], "__typename": [ - 75 + 74 ] }, "tournament_teams_var_samp_order_by": { "captain_steam_id": [ - 2016 + 2015 ], "owner_steam_id": [ - 2016 + 2015 ], "seed": [ - 2016 + 2015 ], "__typename": [ - 75 + 74 ] }, "tournament_teams_variance_fields": { @@ -87899,29 +88796,29 @@ export default { 29 ], "__typename": [ - 75 + 74 ] }, "tournament_teams_variance_order_by": { "captain_steam_id": [ - 2016 + 2015 ], "owner_steam_id": [ - 2016 + 2015 ], "seed": [ - 2016 + 2015 ], "__typename": [ - 75 + 74 ] }, "tournament_trophies": { "created_at": [ - 3467 + 3466 ], "id": [ - 3864 + 3863 ], "manual": [ 3 @@ -87930,124 +88827,124 @@ export default { 38 ], "placement_tier": [ - 75 + 74 ], "player": [ - 2915 + 2914 ], "player_steam_id": [ - 174 + 173 ], "team": [ - 3424 + 3423 ], "team_id": [ - 3864 + 3863 ], "tournament": [ - 3818 + 3817 ], "tournament_id": [ - 3864 + 3863 ], "tournament_team": [ - 3689 + 3688 ], "tournament_team_id": [ - 3864 + 3863 ], "trophy_config": [ - 3776 + 3775 ], "__typename": [ - 75 + 74 ] }, "tournament_trophies_aggregate": { "aggregate": [ - 3737 + 3736 ], "nodes": [ - 3731 + 3730 ], "__typename": [ - 75 + 74 ] }, "tournament_trophies_aggregate_bool_exp": { "bool_and": [ - 3734 + 3733 ], "bool_or": [ - 3735 + 3734 ], "count": [ - 3736 + 3735 ], "__typename": [ - 75 + 74 ] }, "tournament_trophies_aggregate_bool_exp_bool_and": { "arguments": [ - 3755 + 3754 ], "distinct": [ 3 ], "filter": [ - 3742 + 3741 ], "predicate": [ 4 ], "__typename": [ - 75 + 74 ] }, "tournament_trophies_aggregate_bool_exp_bool_or": { "arguments": [ - 3756 + 3755 ], "distinct": [ 3 ], "filter": [ - 3742 + 3741 ], "predicate": [ 4 ], "__typename": [ - 75 + 74 ] }, "tournament_trophies_aggregate_bool_exp_count": { "arguments": [ - 3754 + 3753 ], "distinct": [ 3 ], "filter": [ - 3742 + 3741 ], "predicate": [ 39 ], "__typename": [ - 75 + 74 ] }, "tournament_trophies_aggregate_fields": { "avg": [ - 3740 + 3739 ], "count": [ 38, { "columns": [ - 3754, + 3753, "[tournament_trophies_select_column!]" ], "distinct": [ @@ -88056,83 +88953,83 @@ export default { } ], "max": [ - 3746 + 3745 ], "min": [ - 3748 + 3747 ], "stddev": [ - 3758 + 3757 ], "stddev_pop": [ - 3760 + 3759 ], "stddev_samp": [ - 3762 + 3761 ], "sum": [ - 3766 + 3765 ], "var_pop": [ - 3770 + 3769 ], "var_samp": [ - 3772 + 3771 ], "variance": [ - 3774 + 3773 ], "__typename": [ - 75 + 74 ] }, "tournament_trophies_aggregate_order_by": { "avg": [ - 3741 + 3740 ], "count": [ - 2016 + 2015 ], "max": [ - 3747 + 3746 ], "min": [ - 3749 + 3748 ], "stddev": [ - 3759 + 3758 ], "stddev_pop": [ - 3761 + 3760 ], "stddev_samp": [ - 3763 + 3762 ], "sum": [ - 3767 + 3766 ], "var_pop": [ - 3771 + 3770 ], "var_samp": [ - 3773 + 3772 ], "variance": [ - 3775 + 3774 ], "__typename": [ - 75 + 74 ] }, "tournament_trophies_arr_rel_insert_input": { "data": [ - 3745 + 3744 ], "on_conflict": [ - 3751 + 3750 ], "__typename": [ - 75 + 74 ] }, "tournament_trophies_avg_fields": { @@ -88143,35 +89040,35 @@ export default { 29 ], "__typename": [ - 75 + 74 ] }, "tournament_trophies_avg_order_by": { "placement": [ - 2016 + 2015 ], "player_steam_id": [ - 2016 + 2015 ], "__typename": [ - 75 + 74 ] }, "tournament_trophies_bool_exp": { "_and": [ - 3742 + 3741 ], "_not": [ - 3742 + 3741 ], "_or": [ - 3742 + 3741 ], "created_at": [ - 3468 + 3467 ], "id": [ - 3866 + 3865 ], "manual": [ 4 @@ -88180,37 +89077,37 @@ export default { 39 ], "placement_tier": [ - 77 + 76 ], "player": [ - 2919 + 2918 ], "player_steam_id": [ - 176 + 175 ], "team": [ - 3433 + 3432 ], "team_id": [ - 3866 + 3865 ], "tournament": [ - 3829 + 3828 ], "tournament_id": [ - 3866 + 3865 ], "tournament_team": [ - 3698 + 3697 ], "tournament_team_id": [ - 3866 + 3865 ], "trophy_config": [ - 3785 + 3784 ], "__typename": [ - 75 + 74 ] }, "tournament_trophies_constraint": {}, @@ -88219,18 +89116,18 @@ export default { 38 ], "player_steam_id": [ - 174 + 173 ], "__typename": [ - 75 + 74 ] }, "tournament_trophies_insert_input": { "created_at": [ - 3467 + 3466 ], "id": [ - 3864 + 3863 ], "manual": [ 3 @@ -88239,150 +89136,150 @@ export default { 38 ], "player": [ - 2926 + 2925 ], "player_steam_id": [ - 174 + 173 ], "team": [ - 3442 + 3441 ], "team_id": [ - 3864 + 3863 ], "tournament": [ - 3838 + 3837 ], "tournament_id": [ - 3864 + 3863 ], "tournament_team": [ - 3707 + 3706 ], "tournament_team_id": [ - 3864 + 3863 ], "trophy_config": [ - 3794 + 3793 ], "__typename": [ - 75 + 74 ] }, "tournament_trophies_max_fields": { "created_at": [ - 3467 + 3466 ], "id": [ - 3864 + 3863 ], "placement": [ 38 ], "placement_tier": [ - 75 + 74 ], "player_steam_id": [ - 174 + 173 ], "team_id": [ - 3864 + 3863 ], "tournament_id": [ - 3864 + 3863 ], "tournament_team_id": [ - 3864 + 3863 ], "__typename": [ - 75 + 74 ] }, "tournament_trophies_max_order_by": { "created_at": [ - 2016 + 2015 ], "id": [ - 2016 + 2015 ], "placement": [ - 2016 + 2015 ], "placement_tier": [ - 2016 + 2015 ], "player_steam_id": [ - 2016 + 2015 ], "team_id": [ - 2016 + 2015 ], "tournament_id": [ - 2016 + 2015 ], "tournament_team_id": [ - 2016 + 2015 ], "__typename": [ - 75 + 74 ] }, "tournament_trophies_min_fields": { "created_at": [ - 3467 + 3466 ], "id": [ - 3864 + 3863 ], "placement": [ 38 ], "placement_tier": [ - 75 + 74 ], "player_steam_id": [ - 174 + 173 ], "team_id": [ - 3864 + 3863 ], "tournament_id": [ - 3864 + 3863 ], "tournament_team_id": [ - 3864 + 3863 ], "__typename": [ - 75 + 74 ] }, "tournament_trophies_min_order_by": { "created_at": [ - 2016 + 2015 ], "id": [ - 2016 + 2015 ], "placement": [ - 2016 + 2015 ], "placement_tier": [ - 2016 + 2015 ], "player_steam_id": [ - 2016 + 2015 ], "team_id": [ - 2016 + 2015 ], "tournament_id": [ - 2016 + 2015 ], "tournament_team_id": [ - 2016 + 2015 ], "__typename": [ - 75 + 74 ] }, "tournament_trophies_mutation_response": { @@ -88390,79 +89287,79 @@ export default { 38 ], "returning": [ - 3731 + 3730 ], "__typename": [ - 75 + 74 ] }, "tournament_trophies_on_conflict": { "constraint": [ - 3743 + 3742 ], "update_columns": [ - 3768 + 3767 ], "where": [ - 3742 + 3741 ], "__typename": [ - 75 + 74 ] }, "tournament_trophies_order_by": { "created_at": [ - 2016 + 2015 ], "id": [ - 2016 + 2015 ], "manual": [ - 2016 + 2015 ], "placement": [ - 2016 + 2015 ], "placement_tier": [ - 2016 + 2015 ], "player": [ - 2928 + 2927 ], "player_steam_id": [ - 2016 + 2015 ], "team": [ - 3444 + 3443 ], "team_id": [ - 2016 + 2015 ], "tournament": [ - 3840 + 3839 ], "tournament_id": [ - 2016 + 2015 ], "tournament_team": [ - 3709 + 3708 ], "tournament_team_id": [ - 2016 + 2015 ], "trophy_config": [ - 3796 + 3795 ], "__typename": [ - 75 + 74 ] }, "tournament_trophies_pk_columns_input": { "id": [ - 3864 + 3863 ], "__typename": [ - 75 + 74 ] }, "tournament_trophies_select_column": {}, @@ -88470,10 +89367,10 @@ export default { "tournament_trophies_select_column_tournament_trophies_aggregate_bool_exp_bool_or_arguments_columns": {}, "tournament_trophies_set_input": { "created_at": [ - 3467 + 3466 ], "id": [ - 3864 + 3863 ], "manual": [ 3 @@ -88482,19 +89379,19 @@ export default { 38 ], "player_steam_id": [ - 174 + 173 ], "team_id": [ - 3864 + 3863 ], "tournament_id": [ - 3864 + 3863 ], "tournament_team_id": [ - 3864 + 3863 ], "__typename": [ - 75 + 74 ] }, "tournament_trophies_stddev_fields": { @@ -88505,18 +89402,18 @@ export default { 29 ], "__typename": [ - 75 + 74 ] }, "tournament_trophies_stddev_order_by": { "placement": [ - 2016 + 2015 ], "player_steam_id": [ - 2016 + 2015 ], "__typename": [ - 75 + 74 ] }, "tournament_trophies_stddev_pop_fields": { @@ -88527,18 +89424,18 @@ export default { 29 ], "__typename": [ - 75 + 74 ] }, "tournament_trophies_stddev_pop_order_by": { "placement": [ - 2016 + 2015 ], "player_steam_id": [ - 2016 + 2015 ], "__typename": [ - 75 + 74 ] }, "tournament_trophies_stddev_samp_fields": { @@ -88549,37 +89446,37 @@ export default { 29 ], "__typename": [ - 75 + 74 ] }, "tournament_trophies_stddev_samp_order_by": { "placement": [ - 2016 + 2015 ], "player_steam_id": [ - 2016 + 2015 ], "__typename": [ - 75 + 74 ] }, "tournament_trophies_stream_cursor_input": { "initial_value": [ - 3765 + 3764 ], "ordering": [ - 229 + 228 ], "__typename": [ - 75 + 74 ] }, "tournament_trophies_stream_cursor_value_input": { "created_at": [ - 3467 + 3466 ], "id": [ - 3864 + 3863 ], "manual": [ 3 @@ -88588,22 +89485,22 @@ export default { 38 ], "placement_tier": [ - 75 + 74 ], "player_steam_id": [ - 174 + 173 ], "team_id": [ - 3864 + 3863 ], "tournament_id": [ - 3864 + 3863 ], "tournament_team_id": [ - 3864 + 3863 ], "__typename": [ - 75 + 74 ] }, "tournament_trophies_sum_fields": { @@ -88611,36 +89508,36 @@ export default { 38 ], "player_steam_id": [ - 174 + 173 ], "__typename": [ - 75 + 74 ] }, "tournament_trophies_sum_order_by": { "placement": [ - 2016 + 2015 ], "player_steam_id": [ - 2016 + 2015 ], "__typename": [ - 75 + 74 ] }, "tournament_trophies_update_column": {}, "tournament_trophies_updates": { "_inc": [ - 3744 + 3743 ], "_set": [ - 3757 + 3756 ], "where": [ - 3742 + 3741 ], "__typename": [ - 75 + 74 ] }, "tournament_trophies_var_pop_fields": { @@ -88651,18 +89548,18 @@ export default { 29 ], "__typename": [ - 75 + 74 ] }, "tournament_trophies_var_pop_order_by": { "placement": [ - 2016 + 2015 ], "player_steam_id": [ - 2016 + 2015 ], "__typename": [ - 75 + 74 ] }, "tournament_trophies_var_samp_fields": { @@ -88673,18 +89570,18 @@ export default { 29 ], "__typename": [ - 75 + 74 ] }, "tournament_trophies_var_samp_order_by": { "placement": [ - 2016 + 2015 ], "player_steam_id": [ - 2016 + 2015 ], "__typename": [ - 75 + 74 ] }, "tournament_trophies_variance_fields": { @@ -88695,32 +89592,32 @@ export default { 29 ], "__typename": [ - 75 + 74 ] }, "tournament_trophies_variance_order_by": { "placement": [ - 2016 + 2015 ], "player_steam_id": [ - 2016 + 2015 ], "__typename": [ - 75 + 74 ] }, "tournament_trophy_configs": { "created_at": [ - 3467 + 3466 ], "custom_name": [ - 75 + 74 ], "id": [ - 3864 + 3863 ], "image_url": [ - 75 + 74 ], "placement": [ 38 @@ -88729,63 +89626,63 @@ export default { 38 ], "tournament": [ - 3818 + 3817 ], "tournament_id": [ - 3864 + 3863 ], "updated_at": [ - 3467 + 3466 ], "__typename": [ - 75 + 74 ] }, "tournament_trophy_configs_aggregate": { "aggregate": [ - 3780 + 3779 ], "nodes": [ - 3776 + 3775 ], "__typename": [ - 75 + 74 ] }, "tournament_trophy_configs_aggregate_bool_exp": { "count": [ - 3779 + 3778 ], "__typename": [ - 75 + 74 ] }, "tournament_trophy_configs_aggregate_bool_exp_count": { "arguments": [ - 3798 + 3797 ], "distinct": [ 3 ], "filter": [ - 3785 + 3784 ], "predicate": [ 39 ], "__typename": [ - 75 + 74 ] }, "tournament_trophy_configs_aggregate_fields": { "avg": [ - 3783 + 3782 ], "count": [ 38, { "columns": [ - 3798, + 3797, "[tournament_trophy_configs_select_column!]" ], "distinct": [ @@ -88793,6 +89690,44 @@ export default { ] } ], + "max": [ + 3788 + ], + "min": [ + 3790 + ], + "stddev": [ + 3799 + ], + "stddev_pop": [ + 3801 + ], + "stddev_samp": [ + 3803 + ], + "sum": [ + 3807 + ], + "var_pop": [ + 3811 + ], + "var_samp": [ + 3813 + ], + "variance": [ + 3815 + ], + "__typename": [ + 74 + ] + }, + "tournament_trophy_configs_aggregate_order_by": { + "avg": [ + 3783 + ], + "count": [ + 2015 + ], "max": [ 3789 ], @@ -88821,56 +89756,18 @@ export default { 3816 ], "__typename": [ - 75 - ] - }, - "tournament_trophy_configs_aggregate_order_by": { - "avg": [ - 3784 - ], - "count": [ - 2016 - ], - "max": [ - 3790 - ], - "min": [ - 3792 - ], - "stddev": [ - 3801 - ], - "stddev_pop": [ - 3803 - ], - "stddev_samp": [ - 3805 - ], - "sum": [ - 3809 - ], - "var_pop": [ - 3813 - ], - "var_samp": [ - 3815 - ], - "variance": [ - 3817 - ], - "__typename": [ - 75 + 74 ] }, "tournament_trophy_configs_arr_rel_insert_input": { "data": [ - 3788 + 3787 ], "on_conflict": [ - 3795 + 3794 ], "__typename": [ - 75 + 74 ] }, "tournament_trophy_configs_avg_fields": { @@ -88881,41 +89778,41 @@ export default { 29 ], "__typename": [ - 75 + 74 ] }, "tournament_trophy_configs_avg_order_by": { "placement": [ - 2016 + 2015 ], "silhouette": [ - 2016 + 2015 ], "__typename": [ - 75 + 74 ] }, "tournament_trophy_configs_bool_exp": { "_and": [ - 3785 + 3784 ], "_not": [ - 3785 + 3784 ], "_or": [ - 3785 + 3784 ], "created_at": [ - 3468 + 3467 ], "custom_name": [ - 77 + 76 ], "id": [ - 3866 + 3865 ], "image_url": [ - 77 + 76 ], "placement": [ 39 @@ -88924,16 +89821,16 @@ export default { 39 ], "tournament": [ - 3829 + 3828 ], "tournament_id": [ - 3866 + 3865 ], "updated_at": [ - 3468 + 3467 ], "__typename": [ - 75 + 74 ] }, "tournament_trophy_configs_constraint": {}, @@ -88945,21 +89842,21 @@ export default { 38 ], "__typename": [ - 75 + 74 ] }, "tournament_trophy_configs_insert_input": { "created_at": [ - 3467 + 3466 ], "custom_name": [ - 75 + 74 ], "id": [ - 3864 + 3863 ], "image_url": [ - 75 + 74 ], "placement": [ 38 @@ -88968,30 +89865,30 @@ export default { 38 ], "tournament": [ - 3838 + 3837 ], "tournament_id": [ - 3864 + 3863 ], "updated_at": [ - 3467 + 3466 ], "__typename": [ - 75 + 74 ] }, "tournament_trophy_configs_max_fields": { "created_at": [ - 3467 + 3466 ], "custom_name": [ - 75 + 74 ], "id": [ - 3864 + 3863 ], "image_url": [ - 75 + 74 ], "placement": [ 38 @@ -89000,56 +89897,56 @@ export default { 38 ], "tournament_id": [ - 3864 + 3863 ], "updated_at": [ - 3467 + 3466 ], "__typename": [ - 75 + 74 ] }, "tournament_trophy_configs_max_order_by": { "created_at": [ - 2016 + 2015 ], "custom_name": [ - 2016 + 2015 ], "id": [ - 2016 + 2015 ], "image_url": [ - 2016 + 2015 ], "placement": [ - 2016 + 2015 ], "silhouette": [ - 2016 + 2015 ], "tournament_id": [ - 2016 + 2015 ], "updated_at": [ - 2016 + 2015 ], "__typename": [ - 75 + 74 ] }, "tournament_trophy_configs_min_fields": { "created_at": [ - 3467 + 3466 ], "custom_name": [ - 75 + 74 ], "id": [ - 3864 + 3863 ], "image_url": [ - 75 + 74 ], "placement": [ 38 @@ -89058,42 +89955,42 @@ export default { 38 ], "tournament_id": [ - 3864 + 3863 ], "updated_at": [ - 3467 + 3466 ], "__typename": [ - 75 + 74 ] }, "tournament_trophy_configs_min_order_by": { "created_at": [ - 2016 + 2015 ], "custom_name": [ - 2016 + 2015 ], "id": [ - 2016 + 2015 ], "image_url": [ - 2016 + 2015 ], "placement": [ - 2016 + 2015 ], "silhouette": [ - 2016 + 2015 ], "tournament_id": [ - 2016 + 2015 ], "updated_at": [ - 2016 + 2015 ], "__typename": [ - 75 + 74 ] }, "tournament_trophy_configs_mutation_response": { @@ -89101,90 +89998,90 @@ export default { 38 ], "returning": [ - 3776 + 3775 ], "__typename": [ - 75 + 74 ] }, "tournament_trophy_configs_obj_rel_insert_input": { "data": [ - 3788 + 3787 ], "on_conflict": [ - 3795 + 3794 ], "__typename": [ - 75 + 74 ] }, "tournament_trophy_configs_on_conflict": { "constraint": [ - 3786 + 3785 ], "update_columns": [ - 3810 + 3809 ], "where": [ - 3785 + 3784 ], "__typename": [ - 75 + 74 ] }, "tournament_trophy_configs_order_by": { "created_at": [ - 2016 + 2015 ], "custom_name": [ - 2016 + 2015 ], "id": [ - 2016 + 2015 ], "image_url": [ - 2016 + 2015 ], "placement": [ - 2016 + 2015 ], "silhouette": [ - 2016 + 2015 ], "tournament": [ - 3840 + 3839 ], "tournament_id": [ - 2016 + 2015 ], "updated_at": [ - 2016 + 2015 ], "__typename": [ - 75 + 74 ] }, "tournament_trophy_configs_pk_columns_input": { "id": [ - 3864 + 3863 ], "__typename": [ - 75 + 74 ] }, "tournament_trophy_configs_select_column": {}, "tournament_trophy_configs_set_input": { "created_at": [ - 3467 + 3466 ], "custom_name": [ - 75 + 74 ], "id": [ - 3864 + 3863 ], "image_url": [ - 75 + 74 ], "placement": [ 38 @@ -89193,13 +90090,13 @@ export default { 38 ], "tournament_id": [ - 3864 + 3863 ], "updated_at": [ - 3467 + 3466 ], "__typename": [ - 75 + 74 ] }, "tournament_trophy_configs_stddev_fields": { @@ -89210,18 +90107,18 @@ export default { 29 ], "__typename": [ - 75 + 74 ] }, "tournament_trophy_configs_stddev_order_by": { "placement": [ - 2016 + 2015 ], "silhouette": [ - 2016 + 2015 ], "__typename": [ - 75 + 74 ] }, "tournament_trophy_configs_stddev_pop_fields": { @@ -89232,18 +90129,18 @@ export default { 29 ], "__typename": [ - 75 + 74 ] }, "tournament_trophy_configs_stddev_pop_order_by": { "placement": [ - 2016 + 2015 ], "silhouette": [ - 2016 + 2015 ], "__typename": [ - 75 + 74 ] }, "tournament_trophy_configs_stddev_samp_fields": { @@ -89254,43 +90151,43 @@ export default { 29 ], "__typename": [ - 75 + 74 ] }, "tournament_trophy_configs_stddev_samp_order_by": { "placement": [ - 2016 + 2015 ], "silhouette": [ - 2016 + 2015 ], "__typename": [ - 75 + 74 ] }, "tournament_trophy_configs_stream_cursor_input": { "initial_value": [ - 3807 + 3806 ], "ordering": [ - 229 + 228 ], "__typename": [ - 75 + 74 ] }, "tournament_trophy_configs_stream_cursor_value_input": { "created_at": [ - 3467 + 3466 ], "custom_name": [ - 75 + 74 ], "id": [ - 3864 + 3863 ], "image_url": [ - 75 + 74 ], "placement": [ 38 @@ -89299,13 +90196,13 @@ export default { 38 ], "tournament_id": [ - 3864 + 3863 ], "updated_at": [ - 3467 + 3466 ], "__typename": [ - 75 + 74 ] }, "tournament_trophy_configs_sum_fields": { @@ -89316,33 +90213,33 @@ export default { 38 ], "__typename": [ - 75 + 74 ] }, "tournament_trophy_configs_sum_order_by": { "placement": [ - 2016 + 2015 ], "silhouette": [ - 2016 + 2015 ], "__typename": [ - 75 + 74 ] }, "tournament_trophy_configs_update_column": {}, "tournament_trophy_configs_updates": { "_inc": [ - 3787 + 3786 ], "_set": [ - 3799 + 3798 ], "where": [ - 3785 + 3784 ], "__typename": [ - 75 + 74 ] }, "tournament_trophy_configs_var_pop_fields": { @@ -89353,18 +90250,18 @@ export default { 29 ], "__typename": [ - 75 + 74 ] }, "tournament_trophy_configs_var_pop_order_by": { "placement": [ - 2016 + 2015 ], "silhouette": [ - 2016 + 2015 ], "__typename": [ - 75 + 74 ] }, "tournament_trophy_configs_var_samp_fields": { @@ -89375,18 +90272,18 @@ export default { 29 ], "__typename": [ - 75 + 74 ] }, "tournament_trophy_configs_var_samp_order_by": { "placement": [ - 2016 + 2015 ], "silhouette": [ - 2016 + 2015 ], "__typename": [ - 75 + 74 ] }, "tournament_trophy_configs_variance_fields": { @@ -89397,23 +90294,23 @@ export default { 29 ], "__typename": [ - 75 + 74 ] }, "tournament_trophy_configs_variance_order_by": { "placement": [ - 2016 + 2015 ], "silhouette": [ - 2016 + 2015 ], "__typename": [ - 75 + 74 ] }, "tournaments": { "admin": [ - 2915 + 2914 ], "auto_start": [ 3 @@ -89443,13 +90340,13 @@ export default { 3 ], "created_at": [ - 3467 + 3466 ], "description": [ - 75 + 74 ], "discord_guild_id": [ - 75 + 74 ], "discord_notifications_enabled": [ 3 @@ -89491,22 +90388,22 @@ export default { 3 ], "discord_role_id": [ - 75 + 74 ], "discord_voice_enabled": [ 3 ], "discord_webhook": [ - 75 + 74 ], "e_tournament_status": [ - 1008 + 1007 ], "has_min_teams": [ 3 ], "id": [ - 3864 + 3863 ], "is_organizer": [ 3 @@ -89515,7 +90412,7 @@ export default { 3 ], "match_options_id": [ - 3864 + 3863 ], "max_players_per_lineup": [ 38 @@ -89524,19 +90421,19 @@ export default { 38 ], "name": [ - 75 + 74 ], "options": [ - 1711 + 1710 ], "organizer_steam_id": [ - 174 + 173 ], "organizers": [ - 3515, + 3514, { "distinct_on": [ - 3536, + 3535, "[tournament_organizers_select_column!]" ], "limit": [ @@ -89546,19 +90443,19 @@ export default { 38 ], "order_by": [ - 3534, + 3533, "[tournament_organizers_order_by!]" ], "where": [ - 3524 + 3523 ] } ], "organizers_aggregate": [ - 3516, + 3515, { "distinct_on": [ - 3536, + 3535, "[tournament_organizers_select_column!]" ], "limit": [ @@ -89568,19 +90465,19 @@ export default { 38 ], "order_by": [ - 3534, + 3533, "[tournament_organizers_order_by!]" ], "where": [ - 3524 + 3523 ] } ], "player_stats": [ - 4564, + 4563, { "distinct_on": [ - 4590, + 4589, "[v_tournament_player_stats_select_column!]" ], "limit": [ @@ -89590,19 +90487,19 @@ export default { 38 ], "order_by": [ - 4589, + 4588, "[v_tournament_player_stats_order_by!]" ], "where": [ - 4583 + 4582 ] } ], "player_stats_aggregate": [ - 4565, + 4564, { "distinct_on": [ - 4590, + 4589, "[v_tournament_player_stats_select_column!]" ], "limit": [ @@ -89612,19 +90509,19 @@ export default { 38 ], "order_by": [ - 4589, + 4588, "[v_tournament_player_stats_order_by!]" ], "where": [ - 4583 + 4582 ] } ], "results": [ - 4513, + 4512, { "distinct_on": [ - 4539, + 4538, "[v_team_tournament_results_select_column!]" ], "limit": [ @@ -89634,19 +90531,19 @@ export default { 38 ], "order_by": [ - 4538, + 4537, "[v_team_tournament_results_order_by!]" ], "where": [ - 4532 + 4531 ] } ], "results_aggregate": [ - 4514, + 4513, { "distinct_on": [ - 4539, + 4538, "[v_team_tournament_results_select_column!]" ], "limit": [ @@ -89656,19 +90553,19 @@ export default { 38 ], "order_by": [ - 4538, + 4537, "[v_team_tournament_results_order_by!]" ], "where": [ - 4532 + 4531 ] } ], "rosters": [ - 3648, + 3647, { "distinct_on": [ - 3669, + 3668, "[tournament_team_roster_select_column!]" ], "limit": [ @@ -89678,19 +90575,19 @@ export default { 38 ], "order_by": [ - 3667, + 3666, "[tournament_team_roster_order_by!]" ], "where": [ - 3657 + 3656 ] } ], "rosters_aggregate": [ - 3649, + 3648, { "distinct_on": [ - 3669, + 3668, "[tournament_team_roster_select_column!]" ], "limit": [ @@ -89700,19 +90597,19 @@ export default { 38 ], "order_by": [ - 3667, + 3666, "[tournament_team_roster_order_by!]" ], "where": [ - 3657 + 3656 ] } ], "stages": [ - 3556, + 3555, { "distinct_on": [ - 3585, + 3584, "[tournament_stages_select_column!]" ], "limit": [ @@ -89722,19 +90619,19 @@ export default { 38 ], "order_by": [ - 3582, + 3581, "[tournament_stages_order_by!]" ], "where": [ - 3568 + 3567 ] } ], "stages_aggregate": [ - 3557, + 3556, { "distinct_on": [ - 3585, + 3584, "[tournament_stages_select_column!]" ], "limit": [ @@ -89744,25 +90641,25 @@ export default { 38 ], "order_by": [ - 3582, + 3581, "[tournament_stages_order_by!]" ], "where": [ - 3568 + 3567 ] } ], "start": [ - 3467 + 3466 ], "status": [ - 1013 + 1012 ], "teams": [ - 3689, + 3688, { "distinct_on": [ - 3711, + 3710, "[tournament_teams_select_column!]" ], "limit": [ @@ -89772,19 +90669,19 @@ export default { 38 ], "order_by": [ - 3709, + 3708, "[tournament_teams_order_by!]" ], "where": [ - 3698 + 3697 ] } ], "teams_aggregate": [ - 3690, + 3689, { "distinct_on": [ - 3711, + 3710, "[tournament_teams_select_column!]" ], "limit": [ @@ -89794,19 +90691,19 @@ export default { 38 ], "order_by": [ - 3709, + 3708, "[tournament_teams_order_by!]" ], "where": [ - 3698 + 3697 ] } ], "trophies": [ - 3731, + 3730, { "distinct_on": [ - 3754, + 3753, "[tournament_trophies_select_column!]" ], "limit": [ @@ -89816,19 +90713,19 @@ export default { 38 ], "order_by": [ - 3752, + 3751, "[tournament_trophies_order_by!]" ], "where": [ - 3742 + 3741 ] } ], "trophies_aggregate": [ - 3732, + 3731, { "distinct_on": [ - 3754, + 3753, "[tournament_trophies_select_column!]" ], "limit": [ @@ -89838,11 +90735,11 @@ export default { 38 ], "order_by": [ - 3752, + 3751, "[tournament_trophies_order_by!]" ], "where": [ - 3742 + 3741 ] } ], @@ -89850,10 +90747,10 @@ export default { 3 ], "trophy_configs": [ - 3776, + 3775, { "distinct_on": [ - 3798, + 3797, "[tournament_trophy_configs_select_column!]" ], "limit": [ @@ -89863,19 +90760,19 @@ export default { 38 ], "order_by": [ - 3796, + 3795, "[tournament_trophy_configs_order_by!]" ], "where": [ - 3785 + 3784 ] } ], "trophy_configs_aggregate": [ - 3777, + 3776, { "distinct_on": [ - 3798, + 3797, "[tournament_trophy_configs_select_column!]" ], "limit": [ @@ -89885,103 +90782,103 @@ export default { 38 ], "order_by": [ - 3796, + 3795, "[tournament_trophy_configs_order_by!]" ], "where": [ - 3785 + 3784 ] } ], "__typename": [ - 75 + 74 ] }, "tournaments_aggregate": { "aggregate": [ - 3824 + 3823 ], "nodes": [ - 3818 + 3817 ], "__typename": [ - 75 + 74 ] }, "tournaments_aggregate_bool_exp": { "bool_and": [ - 3821 + 3820 ], "bool_or": [ - 3822 + 3821 ], "count": [ - 3823 + 3822 ], "__typename": [ - 75 + 74 ] }, "tournaments_aggregate_bool_exp_bool_and": { "arguments": [ - 3843 + 3842 ], "distinct": [ 3 ], "filter": [ - 3829 + 3828 ], "predicate": [ 4 ], "__typename": [ - 75 + 74 ] }, "tournaments_aggregate_bool_exp_bool_or": { "arguments": [ - 3844 + 3843 ], "distinct": [ 3 ], "filter": [ - 3829 + 3828 ], "predicate": [ 4 ], "__typename": [ - 75 + 74 ] }, "tournaments_aggregate_bool_exp_count": { "arguments": [ - 3842 + 3841 ], "distinct": [ 3 ], "filter": [ - 3829 + 3828 ], "predicate": [ 39 ], "__typename": [ - 75 + 74 ] }, "tournaments_aggregate_fields": { "avg": [ - 3827 + 3826 ], "count": [ 38, { "columns": [ - 3842, + 3841, "[tournaments_select_column!]" ], "distinct": [ @@ -89990,83 +90887,83 @@ export default { } ], "max": [ - 3833 + 3832 ], "min": [ - 3835 + 3834 ], "stddev": [ - 3846 + 3845 ], "stddev_pop": [ - 3848 + 3847 ], "stddev_samp": [ - 3850 + 3849 ], "sum": [ - 3854 + 3853 ], "var_pop": [ - 3858 + 3857 ], "var_samp": [ - 3860 + 3859 ], "variance": [ - 3862 + 3861 ], "__typename": [ - 75 + 74 ] }, "tournaments_aggregate_order_by": { "avg": [ - 3828 + 3827 ], "count": [ - 2016 + 2015 ], "max": [ - 3834 + 3833 ], "min": [ - 3836 + 3835 ], "stddev": [ - 3847 + 3846 ], "stddev_pop": [ - 3849 + 3848 ], "stddev_samp": [ - 3851 + 3850 ], "sum": [ - 3855 + 3854 ], "var_pop": [ - 3859 + 3858 ], "var_samp": [ - 3861 + 3860 ], "variance": [ - 3863 + 3862 ], "__typename": [ - 75 + 74 ] }, "tournaments_arr_rel_insert_input": { "data": [ - 3832 + 3831 ], "on_conflict": [ - 3839 + 3838 ], "__typename": [ - 75 + 74 ] }, "tournaments_avg_fields": { @@ -90080,29 +90977,29 @@ export default { 29 ], "__typename": [ - 75 + 74 ] }, "tournaments_avg_order_by": { "organizer_steam_id": [ - 2016 + 2015 ], "__typename": [ - 75 + 74 ] }, "tournaments_bool_exp": { "_and": [ - 3829 + 3828 ], "_not": [ - 3829 + 3828 ], "_or": [ - 3829 + 3828 ], "admin": [ - 2919 + 2918 ], "auto_start": [ 4 @@ -90132,13 +91029,13 @@ export default { 4 ], "created_at": [ - 3468 + 3467 ], "description": [ - 77 + 76 ], "discord_guild_id": [ - 77 + 76 ], "discord_notifications_enabled": [ 4 @@ -90180,22 +91077,22 @@ export default { 4 ], "discord_role_id": [ - 77 + 76 ], "discord_voice_enabled": [ 4 ], "discord_webhook": [ - 77 + 76 ], "e_tournament_status": [ - 1011 + 1010 ], "has_min_teams": [ 4 ], "id": [ - 3866 + 3865 ], "is_organizer": [ 4 @@ -90204,7 +91101,7 @@ export default { 4 ], "match_options_id": [ - 3866 + 3865 ], "max_players_per_lineup": [ 39 @@ -90213,99 +91110,99 @@ export default { 39 ], "name": [ - 77 + 76 ], "options": [ - 1715 + 1714 ], "organizer_steam_id": [ - 176 + 175 ], "organizers": [ - 3524 + 3523 ], "organizers_aggregate": [ - 3517 + 3516 ], "player_stats": [ - 4583 + 4582 ], "player_stats_aggregate": [ - 4566 + 4565 ], "results": [ - 4532 + 4531 ], "results_aggregate": [ - 4515 + 4514 ], "rosters": [ - 3657 + 3656 ], "rosters_aggregate": [ - 3650 + 3649 ], "stages": [ - 3568 + 3567 ], "stages_aggregate": [ - 3558 + 3557 ], "start": [ - 3468 + 3467 ], "status": [ - 1014 + 1013 ], "teams": [ - 3698 + 3697 ], "teams_aggregate": [ - 3691 + 3690 ], "trophies": [ - 3742 + 3741 ], "trophies_aggregate": [ - 3733 + 3732 ], "trophies_enabled": [ 4 ], "trophy_configs": [ - 3785 + 3784 ], "trophy_configs_aggregate": [ - 3778 + 3777 ], "__typename": [ - 75 + 74 ] }, "tournaments_constraint": {}, "tournaments_inc_input": { "organizer_steam_id": [ - 174 + 173 ], "__typename": [ - 75 + 74 ] }, "tournaments_insert_input": { "admin": [ - 2926 + 2925 ], "auto_start": [ 3 ], "created_at": [ - 3467 + 3466 ], "description": [ - 75 + 74 ], "discord_guild_id": [ - 75 + 74 ], "discord_notifications_enabled": [ 3 @@ -90347,90 +91244,90 @@ export default { 3 ], "discord_role_id": [ - 75 + 74 ], "discord_voice_enabled": [ 3 ], "discord_webhook": [ - 75 + 74 ], "e_tournament_status": [ - 1019 + 1018 ], "id": [ - 3864 + 3863 ], "match_options_id": [ - 3864 + 3863 ], "name": [ - 75 + 74 ], "options": [ - 1722 + 1721 ], "organizer_steam_id": [ - 174 + 173 ], "organizers": [ - 3521 + 3520 ], "player_stats": [ - 4580 + 4579 ], "results": [ - 4529 + 4528 ], "rosters": [ - 3654 + 3653 ], "stages": [ - 3565 + 3564 ], "start": [ - 3467 + 3466 ], "status": [ - 1013 + 1012 ], "teams": [ - 3695 + 3694 ], "trophies": [ - 3739 + 3738 ], "trophies_enabled": [ 3 ], "trophy_configs": [ - 3782 + 3781 ], "__typename": [ - 75 + 74 ] }, "tournaments_max_fields": { "created_at": [ - 3467 + 3466 ], "description": [ - 75 + 74 ], "discord_guild_id": [ - 75 + 74 ], "discord_role_id": [ - 75 + 74 ], "discord_webhook": [ - 75 + 74 ], "id": [ - 3864 + 3863 ], "match_options_id": [ - 3864 + 3863 ], "max_players_per_lineup": [ 38 @@ -90439,74 +91336,74 @@ export default { 38 ], "name": [ - 75 + 74 ], "organizer_steam_id": [ - 174 + 173 ], "start": [ - 3467 + 3466 ], "__typename": [ - 75 + 74 ] }, "tournaments_max_order_by": { "created_at": [ - 2016 + 2015 ], "description": [ - 2016 + 2015 ], "discord_guild_id": [ - 2016 + 2015 ], "discord_role_id": [ - 2016 + 2015 ], "discord_webhook": [ - 2016 + 2015 ], "id": [ - 2016 + 2015 ], "match_options_id": [ - 2016 + 2015 ], "name": [ - 2016 + 2015 ], "organizer_steam_id": [ - 2016 + 2015 ], "start": [ - 2016 + 2015 ], "__typename": [ - 75 + 74 ] }, "tournaments_min_fields": { "created_at": [ - 3467 + 3466 ], "description": [ - 75 + 74 ], "discord_guild_id": [ - 75 + 74 ], "discord_role_id": [ - 75 + 74 ], "discord_webhook": [ - 75 + 74 ], "id": [ - 3864 + 3863 ], "match_options_id": [ - 3864 + 3863 ], "max_players_per_lineup": [ 38 @@ -90515,51 +91412,51 @@ export default { 38 ], "name": [ - 75 + 74 ], "organizer_steam_id": [ - 174 + 173 ], "start": [ - 3467 + 3466 ], "__typename": [ - 75 + 74 ] }, "tournaments_min_order_by": { "created_at": [ - 2016 + 2015 ], "description": [ - 2016 + 2015 ], "discord_guild_id": [ - 2016 + 2015 ], "discord_role_id": [ - 2016 + 2015 ], "discord_webhook": [ - 2016 + 2015 ], "id": [ - 2016 + 2015 ], "match_options_id": [ - 2016 + 2015 ], "name": [ - 2016 + 2015 ], "organizer_steam_id": [ - 2016 + 2015 ], "start": [ - 2016 + 2015 ], "__typename": [ - 75 + 74 ] }, "tournaments_mutation_response": { @@ -90567,201 +91464,201 @@ export default { 38 ], "returning": [ - 3818 + 3817 ], "__typename": [ - 75 + 74 ] }, "tournaments_obj_rel_insert_input": { "data": [ - 3832 + 3831 ], "on_conflict": [ - 3839 + 3838 ], "__typename": [ - 75 + 74 ] }, "tournaments_on_conflict": { "constraint": [ - 3830 + 3829 ], "update_columns": [ - 3856 + 3855 ], "where": [ - 3829 + 3828 ], "__typename": [ - 75 + 74 ] }, "tournaments_order_by": { "admin": [ - 2928 + 2927 ], "auto_start": [ - 2016 + 2015 ], "can_cancel": [ - 2016 + 2015 ], "can_close_registration": [ - 2016 + 2015 ], "can_join": [ - 2016 + 2015 ], "can_open_registration": [ - 2016 + 2015 ], "can_pause": [ - 2016 + 2015 ], "can_resume": [ - 2016 + 2015 ], "can_setup": [ - 2016 + 2015 ], "can_start": [ - 2016 + 2015 ], "created_at": [ - 2016 + 2015 ], "description": [ - 2016 + 2015 ], "discord_guild_id": [ - 2016 + 2015 ], "discord_notifications_enabled": [ - 2016 + 2015 ], "discord_notify_Canceled": [ - 2016 + 2015 ], "discord_notify_Finished": [ - 2016 + 2015 ], "discord_notify_Forfeit": [ - 2016 + 2015 ], "discord_notify_Live": [ - 2016 + 2015 ], "discord_notify_MapPaused": [ - 2016 + 2015 ], "discord_notify_PickingPlayers": [ - 2016 + 2015 ], "discord_notify_Scheduled": [ - 2016 + 2015 ], "discord_notify_Surrendered": [ - 2016 + 2015 ], "discord_notify_Tie": [ - 2016 + 2015 ], "discord_notify_Veto": [ - 2016 + 2015 ], "discord_notify_WaitingForCheckIn": [ - 2016 + 2015 ], "discord_notify_WaitingForServer": [ - 2016 + 2015 ], "discord_role_id": [ - 2016 + 2015 ], "discord_voice_enabled": [ - 2016 + 2015 ], "discord_webhook": [ - 2016 + 2015 ], "e_tournament_status": [ - 1021 + 1020 ], "has_min_teams": [ - 2016 + 2015 ], "id": [ - 2016 + 2015 ], "is_organizer": [ - 2016 + 2015 ], "joined_tournament": [ - 2016 + 2015 ], "match_options_id": [ - 2016 + 2015 ], "max_players_per_lineup": [ - 2016 + 2015 ], "min_players_per_lineup": [ - 2016 + 2015 ], "name": [ - 2016 + 2015 ], "options": [ - 1724 + 1723 ], "organizer_steam_id": [ - 2016 + 2015 ], "organizers_aggregate": [ - 3520 + 3519 ], "player_stats_aggregate": [ - 4579 + 4578 ], "results_aggregate": [ - 4528 + 4527 ], "rosters_aggregate": [ - 3653 + 3652 ], "stages_aggregate": [ - 3563 + 3562 ], "start": [ - 2016 + 2015 ], "status": [ - 2016 + 2015 ], "teams_aggregate": [ - 3694 + 3693 ], "trophies_aggregate": [ - 3738 + 3737 ], "trophies_enabled": [ - 2016 + 2015 ], "trophy_configs_aggregate": [ - 3781 + 3780 ], "__typename": [ - 75 + 74 ] }, "tournaments_pk_columns_input": { "id": [ - 3864 + 3863 ], "__typename": [ - 75 + 74 ] }, "tournaments_select_column": {}, @@ -90772,13 +91669,13 @@ export default { 3 ], "created_at": [ - 3467 + 3466 ], "description": [ - 75 + 74 ], "discord_guild_id": [ - 75 + 74 ], "discord_notifications_enabled": [ 3 @@ -90820,37 +91717,37 @@ export default { 3 ], "discord_role_id": [ - 75 + 74 ], "discord_voice_enabled": [ 3 ], "discord_webhook": [ - 75 + 74 ], "id": [ - 3864 + 3863 ], "match_options_id": [ - 3864 + 3863 ], "name": [ - 75 + 74 ], "organizer_steam_id": [ - 174 + 173 ], "start": [ - 3467 + 3466 ], "status": [ - 1013 + 1012 ], "trophies_enabled": [ 3 ], "__typename": [ - 75 + 74 ] }, "tournaments_stddev_fields": { @@ -90864,15 +91761,15 @@ export default { 29 ], "__typename": [ - 75 + 74 ] }, "tournaments_stddev_order_by": { "organizer_steam_id": [ - 2016 + 2015 ], "__typename": [ - 75 + 74 ] }, "tournaments_stddev_pop_fields": { @@ -90886,15 +91783,15 @@ export default { 29 ], "__typename": [ - 75 + 74 ] }, "tournaments_stddev_pop_order_by": { "organizer_steam_id": [ - 2016 + 2015 ], "__typename": [ - 75 + 74 ] }, "tournaments_stddev_samp_fields": { @@ -90908,26 +91805,26 @@ export default { 29 ], "__typename": [ - 75 + 74 ] }, "tournaments_stddev_samp_order_by": { "organizer_steam_id": [ - 2016 + 2015 ], "__typename": [ - 75 + 74 ] }, "tournaments_stream_cursor_input": { "initial_value": [ - 3853 + 3852 ], "ordering": [ - 229 + 228 ], "__typename": [ - 75 + 74 ] }, "tournaments_stream_cursor_value_input": { @@ -90935,13 +91832,13 @@ export default { 3 ], "created_at": [ - 3467 + 3466 ], "description": [ - 75 + 74 ], "discord_guild_id": [ - 75 + 74 ], "discord_notifications_enabled": [ 3 @@ -90983,37 +91880,37 @@ export default { 3 ], "discord_role_id": [ - 75 + 74 ], "discord_voice_enabled": [ 3 ], "discord_webhook": [ - 75 + 74 ], "id": [ - 3864 + 3863 ], "match_options_id": [ - 3864 + 3863 ], "name": [ - 75 + 74 ], "organizer_steam_id": [ - 174 + 173 ], "start": [ - 3467 + 3466 ], "status": [ - 1013 + 1012 ], "trophies_enabled": [ 3 ], "__typename": [ - 75 + 74 ] }, "tournaments_sum_fields": { @@ -91024,33 +91921,33 @@ export default { 38 ], "organizer_steam_id": [ - 174 + 173 ], "__typename": [ - 75 + 74 ] }, "tournaments_sum_order_by": { "organizer_steam_id": [ - 2016 + 2015 ], "__typename": [ - 75 + 74 ] }, "tournaments_update_column": {}, "tournaments_updates": { "_inc": [ - 3831 + 3830 ], "_set": [ - 3845 + 3844 ], "where": [ - 3829 + 3828 ], "__typename": [ - 75 + 74 ] }, "tournaments_var_pop_fields": { @@ -91064,15 +91961,15 @@ export default { 29 ], "__typename": [ - 75 + 74 ] }, "tournaments_var_pop_order_by": { "organizer_steam_id": [ - 2016 + 2015 ], "__typename": [ - 75 + 74 ] }, "tournaments_var_samp_fields": { @@ -91086,15 +91983,15 @@ export default { 29 ], "__typename": [ - 75 + 74 ] }, "tournaments_var_samp_order_by": { "organizer_steam_id": [ - 2016 + 2015 ], "__typename": [ - 75 + 74 ] }, "tournaments_variance_fields": { @@ -91108,86 +92005,86 @@ export default { 29 ], "__typename": [ - 75 + 74 ] }, "tournaments_variance_order_by": { "organizer_steam_id": [ - 2016 + 2015 ], "__typename": [ - 75 + 74 ] }, "uuid": {}, "uuid_array_comparison_exp": { "_contained_in": [ - 3864 + 3863 ], "_contains": [ - 3864 + 3863 ], "_eq": [ - 3864 + 3863 ], "_gt": [ - 3864 + 3863 ], "_gte": [ - 3864 + 3863 ], "_in": [ - 3864 + 3863 ], "_is_null": [ 3 ], "_lt": [ - 3864 + 3863 ], "_lte": [ - 3864 + 3863 ], "_neq": [ - 3864 + 3863 ], "_nin": [ - 3864 + 3863 ], "__typename": [ - 75 + 74 ] }, "uuid_comparison_exp": { "_eq": [ - 3864 + 3863 ], "_gt": [ - 3864 + 3863 ], "_gte": [ - 3864 + 3863 ], "_in": [ - 3864 + 3863 ], "_is_null": [ 3 ], "_lt": [ - 3864 + 3863 ], "_lte": [ - 3864 + 3863 ], "_neq": [ - 3864 + 3863 ], "_nin": [ - 3864 + 3863 ], "__typename": [ - 75 + 74 ] }, "v_gpu_pool_status": { @@ -91234,29 +92131,29 @@ export default { 38 ], "__typename": [ - 75 + 74 ] }, "v_gpu_pool_status_aggregate": { "aggregate": [ - 3869 + 3868 ], "nodes": [ - 3867 + 3866 ], "__typename": [ - 75 + 74 ] }, "v_gpu_pool_status_aggregate_fields": { "avg": [ - 3870 + 3869 ], "count": [ 38, { "columns": [ - 3875, + 3874, "[v_gpu_pool_status_select_column!]" ], "distinct": [ @@ -91265,34 +92162,34 @@ export default { } ], "max": [ - 3872 + 3871 ], "min": [ - 3873 + 3872 ], "stddev": [ - 3876 + 3875 ], "stddev_pop": [ - 3877 + 3876 ], "stddev_samp": [ - 3878 + 3877 ], "sum": [ - 3881 + 3880 ], "var_pop": [ - 3882 + 3881 ], "var_samp": [ - 3883 + 3882 ], "variance": [ - 3884 + 3883 ], "__typename": [ - 75 + 74 ] }, "v_gpu_pool_status_avg_fields": { @@ -91327,18 +92224,18 @@ export default { 29 ], "__typename": [ - 75 + 74 ] }, "v_gpu_pool_status_bool_exp": { "_and": [ - 3871 + 3870 ], "_not": [ - 3871 + 3870 ], "_or": [ - 3871 + 3870 ], "demo_free_gpu_nodes": [ 39 @@ -91383,7 +92280,7 @@ export default { 39 ], "__typename": [ - 75 + 74 ] }, "v_gpu_pool_status_max_fields": { @@ -91418,7 +92315,7 @@ export default { 38 ], "__typename": [ - 75 + 74 ] }, "v_gpu_pool_status_min_fields": { @@ -91453,54 +92350,54 @@ export default { 38 ], "__typename": [ - 75 + 74 ] }, "v_gpu_pool_status_order_by": { "demo_free_gpu_nodes": [ - 2016 + 2015 ], "demo_in_progress": [ - 2016 + 2015 ], "demo_total_gpu_nodes": [ - 2016 + 2015 ], "free_gpu_nodes": [ - 2016 + 2015 ], "free_gpu_nodes_for_batch": [ - 2016 + 2015 ], "highlights_in_progress": [ - 2016 + 2015 ], "id": [ - 2016 + 2015 ], "live_in_progress": [ - 2016 + 2015 ], "registered_gpu_nodes": [ - 2016 + 2015 ], "rendering_total_gpu_nodes": [ - 2016 + 2015 ], "renders_paused_for_active_match": [ - 2016 + 2015 ], "streaming_free_gpu_nodes": [ - 2016 + 2015 ], "streaming_total_gpu_nodes": [ - 2016 + 2015 ], "total_gpu_nodes": [ - 2016 + 2015 ], "__typename": [ - 75 + 74 ] }, "v_gpu_pool_status_select_column": {}, @@ -91536,7 +92433,7 @@ export default { 29 ], "__typename": [ - 75 + 74 ] }, "v_gpu_pool_status_stddev_pop_fields": { @@ -91571,7 +92468,7 @@ export default { 29 ], "__typename": [ - 75 + 74 ] }, "v_gpu_pool_status_stddev_samp_fields": { @@ -91606,18 +92503,18 @@ export default { 29 ], "__typename": [ - 75 + 74 ] }, "v_gpu_pool_status_stream_cursor_input": { "initial_value": [ - 3880 + 3879 ], "ordering": [ - 229 + 228 ], "__typename": [ - 75 + 74 ] }, "v_gpu_pool_status_stream_cursor_value_input": { @@ -91664,7 +92561,7 @@ export default { 38 ], "__typename": [ - 75 + 74 ] }, "v_gpu_pool_status_sum_fields": { @@ -91699,7 +92596,7 @@ export default { 38 ], "__typename": [ - 75 + 74 ] }, "v_gpu_pool_status_var_pop_fields": { @@ -91734,7 +92631,7 @@ export default { 29 ], "__typename": [ - 75 + 74 ] }, "v_gpu_pool_status_var_samp_fields": { @@ -91769,7 +92666,7 @@ export default { 29 ], "__typename": [ - 75 + 74 ] }, "v_gpu_pool_status_variance_fields": { @@ -91804,7 +92701,7 @@ export default { 29 ], "__typename": [ - 75 + 74 ] }, "v_match_captains": { @@ -91812,50 +92709,50 @@ export default { 3 ], "discord_id": [ - 75 + 74 ], "id": [ - 3864 + 3863 ], "lineup": [ - 1511 + 1510 ], "match_lineup_id": [ - 3864 + 3863 ], "placeholder_name": [ - 75 + 74 ], "player": [ - 2915 + 2914 ], "steam_id": [ - 174 + 173 ], "__typename": [ - 75 + 74 ] }, "v_match_captains_aggregate": { "aggregate": [ - 3887 + 3886 ], "nodes": [ - 3885 + 3884 ], "__typename": [ - 75 + 74 ] }, "v_match_captains_aggregate_fields": { "avg": [ - 3888 + 3887 ], "count": [ 38, { "columns": [ - 3897, + 3896, "[v_match_captains_select_column!]" ], "distinct": [ @@ -91864,34 +92761,34 @@ export default { } ], "max": [ - 3892 + 3891 ], "min": [ - 3893 + 3892 ], "stddev": [ - 3899 + 3898 ], "stddev_pop": [ - 3900 + 3899 ], "stddev_samp": [ - 3901 + 3900 ], "sum": [ - 3904 + 3903 ], "var_pop": [ - 3906 + 3905 ], "var_samp": [ - 3907 + 3906 ], "variance": [ - 3908 + 3907 ], "__typename": [ - 75 + 74 ] }, "v_match_captains_avg_fields": { @@ -91899,53 +92796,53 @@ export default { 29 ], "__typename": [ - 75 + 74 ] }, "v_match_captains_bool_exp": { "_and": [ - 3889 + 3888 ], "_not": [ - 3889 + 3888 ], "_or": [ - 3889 + 3888 ], "captain": [ 4 ], "discord_id": [ - 77 + 76 ], "id": [ - 3866 + 3865 ], "lineup": [ - 1520 + 1519 ], "match_lineup_id": [ - 3866 + 3865 ], "placeholder_name": [ - 77 + 76 ], "player": [ - 2919 + 2918 ], "steam_id": [ - 176 + 175 ], "__typename": [ - 75 + 74 ] }, "v_match_captains_inc_input": { "steam_id": [ - 174 + 173 ], "__typename": [ - 75 + 74 ] }, "v_match_captains_insert_input": { @@ -91953,68 +92850,68 @@ export default { 3 ], "discord_id": [ - 75 + 74 ], "id": [ - 3864 + 3863 ], "lineup": [ - 1529 + 1528 ], "match_lineup_id": [ - 3864 + 3863 ], "placeholder_name": [ - 75 + 74 ], "player": [ - 2926 + 2925 ], "steam_id": [ - 174 + 173 ], "__typename": [ - 75 + 74 ] }, "v_match_captains_max_fields": { "discord_id": [ - 75 + 74 ], "id": [ - 3864 + 3863 ], "match_lineup_id": [ - 3864 + 3863 ], "placeholder_name": [ - 75 + 74 ], "steam_id": [ - 174 + 173 ], "__typename": [ - 75 + 74 ] }, "v_match_captains_min_fields": { "discord_id": [ - 75 + 74 ], "id": [ - 3864 + 3863 ], "match_lineup_id": [ - 3864 + 3863 ], "placeholder_name": [ - 75 + 74 ], "steam_id": [ - 174 + 173 ], "__typename": [ - 75 + 74 ] }, "v_match_captains_mutation_response": { @@ -92022,47 +92919,47 @@ export default { 38 ], "returning": [ - 3885 + 3884 ], "__typename": [ - 75 + 74 ] }, "v_match_captains_obj_rel_insert_input": { "data": [ - 3891 + 3890 ], "__typename": [ - 75 + 74 ] }, "v_match_captains_order_by": { "captain": [ - 2016 + 2015 ], "discord_id": [ - 2016 + 2015 ], "id": [ - 2016 + 2015 ], "lineup": [ - 1531 + 1530 ], "match_lineup_id": [ - 2016 + 2015 ], "placeholder_name": [ - 2016 + 2015 ], "player": [ - 2928 + 2927 ], "steam_id": [ - 2016 + 2015 ], "__typename": [ - 75 + 74 ] }, "v_match_captains_select_column": {}, @@ -92071,22 +92968,22 @@ export default { 3 ], "discord_id": [ - 75 + 74 ], "id": [ - 3864 + 3863 ], "match_lineup_id": [ - 3864 + 3863 ], "placeholder_name": [ - 75 + 74 ], "steam_id": [ - 174 + 173 ], "__typename": [ - 75 + 74 ] }, "v_match_captains_stddev_fields": { @@ -92094,7 +92991,7 @@ export default { 29 ], "__typename": [ - 75 + 74 ] }, "v_match_captains_stddev_pop_fields": { @@ -92102,7 +92999,7 @@ export default { 29 ], "__typename": [ - 75 + 74 ] }, "v_match_captains_stddev_samp_fields": { @@ -92110,18 +93007,18 @@ export default { 29 ], "__typename": [ - 75 + 74 ] }, "v_match_captains_stream_cursor_input": { "initial_value": [ - 3903 + 3902 ], "ordering": [ - 229 + 228 ], "__typename": [ - 75 + 74 ] }, "v_match_captains_stream_cursor_value_input": { @@ -92129,44 +93026,44 @@ export default { 3 ], "discord_id": [ - 75 + 74 ], "id": [ - 3864 + 3863 ], "match_lineup_id": [ - 3864 + 3863 ], "placeholder_name": [ - 75 + 74 ], "steam_id": [ - 174 + 173 ], "__typename": [ - 75 + 74 ] }, "v_match_captains_sum_fields": { "steam_id": [ - 174 + 173 ], "__typename": [ - 75 + 74 ] }, "v_match_captains_updates": { "_inc": [ - 3890 + 3889 ], "_set": [ - 3898 + 3897 ], "where": [ - 3889 + 3888 ], "__typename": [ - 75 + 74 ] }, "v_match_captains_var_pop_fields": { @@ -92174,7 +93071,7 @@ export default { 29 ], "__typename": [ - 75 + 74 ] }, "v_match_captains_var_samp_fields": { @@ -92182,7 +93079,7 @@ export default { 29 ], "__typename": [ - 75 + 74 ] }, "v_match_captains_variance_fields": { @@ -92190,7 +93087,7 @@ export default { 29 ], "__typename": [ - 75 + 74 ] }, "v_match_clutches": { @@ -92198,90 +93095,90 @@ export default { 38 ], "clutcher": [ - 2915 + 2914 ], "clutcher_steam_id": [ - 174 + 173 ], "kills_in_clutch": [ 38 ], "match": [ - 1831 + 1830 ], "match_id": [ - 3864 + 3863 ], "match_lineup": [ - 1511 + 1510 ], "match_lineup_id": [ - 3864 + 3863 ], "match_map": [ - 1669 + 1668 ], "match_map_id": [ - 3864 + 3863 ], "outcome": [ - 75 + 74 ], "round": [ 38 ], "side": [ - 75 + 74 ], "__typename": [ - 75 + 74 ] }, "v_match_clutches_aggregate": { "aggregate": [ - 3913 + 3912 ], "nodes": [ - 3909 + 3908 ], "__typename": [ - 75 + 74 ] }, "v_match_clutches_aggregate_bool_exp": { "count": [ - 3912 + 3911 ], "__typename": [ - 75 + 74 ] }, "v_match_clutches_aggregate_bool_exp_count": { "arguments": [ - 3925 + 3924 ], "distinct": [ 3 ], "filter": [ - 3918 + 3917 ], "predicate": [ 39 ], "__typename": [ - 75 + 74 ] }, "v_match_clutches_aggregate_fields": { "avg": [ - 3916 + 3915 ], "count": [ 38, { "columns": [ - 3925, + 3924, "[v_match_clutches_select_column!]" ], "distinct": [ @@ -92289,6 +93186,44 @@ export default { ] } ], + "max": [ + 3919 + ], + "min": [ + 3921 + ], + "stddev": [ + 3925 + ], + "stddev_pop": [ + 3927 + ], + "stddev_samp": [ + 3929 + ], + "sum": [ + 3933 + ], + "var_pop": [ + 3935 + ], + "var_samp": [ + 3937 + ], + "variance": [ + 3939 + ], + "__typename": [ + 74 + ] + }, + "v_match_clutches_aggregate_order_by": { + "avg": [ + 3916 + ], + "count": [ + 2015 + ], "max": [ 3920 ], @@ -92317,53 +93252,15 @@ export default { 3940 ], "__typename": [ - 75 - ] - }, - "v_match_clutches_aggregate_order_by": { - "avg": [ - 3917 - ], - "count": [ - 2016 - ], - "max": [ - 3921 - ], - "min": [ - 3923 - ], - "stddev": [ - 3927 - ], - "stddev_pop": [ - 3929 - ], - "stddev_samp": [ - 3931 - ], - "sum": [ - 3935 - ], - "var_pop": [ - 3937 - ], - "var_samp": [ - 3939 - ], - "variance": [ - 3941 - ], - "__typename": [ - 75 + 74 ] }, "v_match_clutches_arr_rel_insert_input": { "data": [ - 3919 + 3918 ], "__typename": [ - 75 + 74 ] }, "v_match_clutches_avg_fields": { @@ -92380,77 +93277,77 @@ export default { 29 ], "__typename": [ - 75 + 74 ] }, "v_match_clutches_avg_order_by": { "against_count": [ - 2016 + 2015 ], "clutcher_steam_id": [ - 2016 + 2015 ], "kills_in_clutch": [ - 2016 + 2015 ], "round": [ - 2016 + 2015 ], "__typename": [ - 75 + 74 ] }, "v_match_clutches_bool_exp": { "_and": [ - 3918 + 3917 ], "_not": [ - 3918 + 3917 ], "_or": [ - 3918 + 3917 ], "against_count": [ 39 ], "clutcher": [ - 2919 + 2918 ], "clutcher_steam_id": [ - 176 + 175 ], "kills_in_clutch": [ 39 ], "match": [ - 1840 + 1839 ], "match_id": [ - 3866 + 3865 ], "match_lineup": [ - 1520 + 1519 ], "match_lineup_id": [ - 3866 + 3865 ], "match_map": [ - 1678 + 1677 ], "match_map_id": [ - 3866 + 3865 ], "outcome": [ - 77 + 76 ], "round": [ 39 ], "side": [ - 77 + 76 ], "__typename": [ - 75 + 74 ] }, "v_match_clutches_insert_input": { @@ -92458,43 +93355,43 @@ export default { 38 ], "clutcher": [ - 2926 + 2925 ], "clutcher_steam_id": [ - 174 + 173 ], "kills_in_clutch": [ 38 ], "match": [ - 1849 + 1848 ], "match_id": [ - 3864 + 3863 ], "match_lineup": [ - 1529 + 1528 ], "match_lineup_id": [ - 3864 + 3863 ], "match_map": [ - 1687 + 1686 ], "match_map_id": [ - 3864 + 3863 ], "outcome": [ - 75 + 74 ], "round": [ 38 ], "side": [ - 75 + 74 ], "__typename": [ - 75 + 74 ] }, "v_match_clutches_max_fields": { @@ -92502,63 +93399,63 @@ export default { 38 ], "clutcher_steam_id": [ - 174 + 173 ], "kills_in_clutch": [ 38 ], "match_id": [ - 3864 + 3863 ], "match_lineup_id": [ - 3864 + 3863 ], "match_map_id": [ - 3864 + 3863 ], "outcome": [ - 75 + 74 ], "round": [ 38 ], "side": [ - 75 + 74 ], "__typename": [ - 75 + 74 ] }, "v_match_clutches_max_order_by": { "against_count": [ - 2016 + 2015 ], "clutcher_steam_id": [ - 2016 + 2015 ], "kills_in_clutch": [ - 2016 + 2015 ], "match_id": [ - 2016 + 2015 ], "match_lineup_id": [ - 2016 + 2015 ], "match_map_id": [ - 2016 + 2015 ], "outcome": [ - 2016 + 2015 ], "round": [ - 2016 + 2015 ], "side": [ - 2016 + 2015 ], "__typename": [ - 75 + 74 ] }, "v_match_clutches_min_fields": { @@ -92566,107 +93463,107 @@ export default { 38 ], "clutcher_steam_id": [ - 174 + 173 ], "kills_in_clutch": [ 38 ], "match_id": [ - 3864 + 3863 ], "match_lineup_id": [ - 3864 + 3863 ], "match_map_id": [ - 3864 + 3863 ], "outcome": [ - 75 + 74 ], "round": [ 38 ], "side": [ - 75 + 74 ], "__typename": [ - 75 + 74 ] }, "v_match_clutches_min_order_by": { "against_count": [ - 2016 + 2015 ], "clutcher_steam_id": [ - 2016 + 2015 ], "kills_in_clutch": [ - 2016 + 2015 ], "match_id": [ - 2016 + 2015 ], "match_lineup_id": [ - 2016 + 2015 ], "match_map_id": [ - 2016 + 2015 ], "outcome": [ - 2016 + 2015 ], "round": [ - 2016 + 2015 ], "side": [ - 2016 + 2015 ], "__typename": [ - 75 + 74 ] }, "v_match_clutches_order_by": { "against_count": [ - 2016 + 2015 ], "clutcher": [ - 2928 + 2927 ], "clutcher_steam_id": [ - 2016 + 2015 ], "kills_in_clutch": [ - 2016 + 2015 ], "match": [ - 1851 + 1850 ], "match_id": [ - 2016 + 2015 ], "match_lineup": [ - 1531 + 1530 ], "match_lineup_id": [ - 2016 + 2015 ], "match_map": [ - 1689 + 1688 ], "match_map_id": [ - 2016 + 2015 ], "outcome": [ - 2016 + 2015 ], "round": [ - 2016 + 2015 ], "side": [ - 2016 + 2015 ], "__typename": [ - 75 + 74 ] }, "v_match_clutches_select_column": {}, @@ -92684,24 +93581,24 @@ export default { 29 ], "__typename": [ - 75 + 74 ] }, "v_match_clutches_stddev_order_by": { "against_count": [ - 2016 + 2015 ], "clutcher_steam_id": [ - 2016 + 2015 ], "kills_in_clutch": [ - 2016 + 2015 ], "round": [ - 2016 + 2015 ], "__typename": [ - 75 + 74 ] }, "v_match_clutches_stddev_pop_fields": { @@ -92718,24 +93615,24 @@ export default { 29 ], "__typename": [ - 75 + 74 ] }, "v_match_clutches_stddev_pop_order_by": { "against_count": [ - 2016 + 2015 ], "clutcher_steam_id": [ - 2016 + 2015 ], "kills_in_clutch": [ - 2016 + 2015 ], "round": [ - 2016 + 2015 ], "__typename": [ - 75 + 74 ] }, "v_match_clutches_stddev_samp_fields": { @@ -92752,35 +93649,35 @@ export default { 29 ], "__typename": [ - 75 + 74 ] }, "v_match_clutches_stddev_samp_order_by": { "against_count": [ - 2016 + 2015 ], "clutcher_steam_id": [ - 2016 + 2015 ], "kills_in_clutch": [ - 2016 + 2015 ], "round": [ - 2016 + 2015 ], "__typename": [ - 75 + 74 ] }, "v_match_clutches_stream_cursor_input": { "initial_value": [ - 3933 + 3932 ], "ordering": [ - 229 + 228 ], "__typename": [ - 75 + 74 ] }, "v_match_clutches_stream_cursor_value_input": { @@ -92788,31 +93685,31 @@ export default { 38 ], "clutcher_steam_id": [ - 174 + 173 ], "kills_in_clutch": [ 38 ], "match_id": [ - 3864 + 3863 ], "match_lineup_id": [ - 3864 + 3863 ], "match_map_id": [ - 3864 + 3863 ], "outcome": [ - 75 + 74 ], "round": [ 38 ], "side": [ - 75 + 74 ], "__typename": [ - 75 + 74 ] }, "v_match_clutches_sum_fields": { @@ -92820,7 +93717,7 @@ export default { 38 ], "clutcher_steam_id": [ - 174 + 173 ], "kills_in_clutch": [ 38 @@ -92829,24 +93726,24 @@ export default { 38 ], "__typename": [ - 75 + 74 ] }, "v_match_clutches_sum_order_by": { "against_count": [ - 2016 + 2015 ], "clutcher_steam_id": [ - 2016 + 2015 ], "kills_in_clutch": [ - 2016 + 2015 ], "round": [ - 2016 + 2015 ], "__typename": [ - 75 + 74 ] }, "v_match_clutches_var_pop_fields": { @@ -92863,24 +93760,24 @@ export default { 29 ], "__typename": [ - 75 + 74 ] }, "v_match_clutches_var_pop_order_by": { "against_count": [ - 2016 + 2015 ], "clutcher_steam_id": [ - 2016 + 2015 ], "kills_in_clutch": [ - 2016 + 2015 ], "round": [ - 2016 + 2015 ], "__typename": [ - 75 + 74 ] }, "v_match_clutches_var_samp_fields": { @@ -92897,24 +93794,24 @@ export default { 29 ], "__typename": [ - 75 + 74 ] }, "v_match_clutches_var_samp_order_by": { "against_count": [ - 2016 + 2015 ], "clutcher_steam_id": [ - 2016 + 2015 ], "kills_in_clutch": [ - 2016 + 2015 ], "round": [ - 2016 + 2015 ], "__typename": [ - 75 + 74 ] }, "v_match_clutches_variance_fields": { @@ -92931,81 +93828,81 @@ export default { 29 ], "__typename": [ - 75 + 74 ] }, "v_match_clutches_variance_order_by": { "against_count": [ - 2016 + 2015 ], "clutcher_steam_id": [ - 2016 + 2015 ], "kills_in_clutch": [ - 2016 + 2015 ], "round": [ - 2016 + 2015 ], "__typename": [ - 75 + 74 ] }, "v_match_kill_pairs": { "killer_side": [ - 75 + 74 ], "killer_steam_id": [ - 174 + 173 ], "kills": [ 38 ], "match": [ - 1831 + 1830 ], "match_id": [ - 3864 + 3863 ], "match_map": [ - 1669 + 1668 ], "match_map_id": [ - 3864 + 3863 ], "victim_side": [ - 75 + 74 ], "victim_steam_id": [ - 174 + 173 ], "weapon": [ - 75 + 74 ], "__typename": [ - 75 + 74 ] }, "v_match_kill_pairs_aggregate": { "aggregate": [ - 3944 + 3943 ], "nodes": [ - 3942 + 3941 ], "__typename": [ - 75 + 74 ] }, "v_match_kill_pairs_aggregate_fields": { "avg": [ - 3945 + 3944 ], "count": [ 38, { "columns": [ - 3950, + 3949, "[v_match_kill_pairs_select_column!]" ], "distinct": [ @@ -93014,34 +93911,34 @@ export default { } ], "max": [ - 3947 + 3946 ], "min": [ - 3948 + 3947 ], "stddev": [ - 3951 + 3950 ], "stddev_pop": [ - 3952 + 3951 ], "stddev_samp": [ - 3953 + 3952 ], "sum": [ - 3956 + 3955 ], "var_pop": [ - 3957 + 3956 ], "var_samp": [ - 3958 + 3957 ], "variance": [ - 3959 + 3958 ], "__typename": [ - 75 + 74 ] }, "v_match_kill_pairs_avg_fields": { @@ -93055,144 +93952,144 @@ export default { 29 ], "__typename": [ - 75 + 74 ] }, "v_match_kill_pairs_bool_exp": { "_and": [ - 3946 + 3945 ], "_not": [ - 3946 + 3945 ], "_or": [ - 3946 + 3945 ], "killer_side": [ - 77 + 76 ], "killer_steam_id": [ - 176 + 175 ], "kills": [ 39 ], "match": [ - 1840 + 1839 ], "match_id": [ - 3866 + 3865 ], "match_map": [ - 1678 + 1677 ], "match_map_id": [ - 3866 + 3865 ], "victim_side": [ - 77 + 76 ], "victim_steam_id": [ - 176 + 175 ], "weapon": [ - 77 + 76 ], "__typename": [ - 75 + 74 ] }, "v_match_kill_pairs_max_fields": { "killer_side": [ - 75 + 74 ], "killer_steam_id": [ - 174 + 173 ], "kills": [ 38 ], "match_id": [ - 3864 + 3863 ], "match_map_id": [ - 3864 + 3863 ], "victim_side": [ - 75 + 74 ], "victim_steam_id": [ - 174 + 173 ], "weapon": [ - 75 + 74 ], "__typename": [ - 75 + 74 ] }, "v_match_kill_pairs_min_fields": { "killer_side": [ - 75 + 74 ], "killer_steam_id": [ - 174 + 173 ], "kills": [ 38 ], "match_id": [ - 3864 + 3863 ], "match_map_id": [ - 3864 + 3863 ], "victim_side": [ - 75 + 74 ], "victim_steam_id": [ - 174 + 173 ], "weapon": [ - 75 + 74 ], "__typename": [ - 75 + 74 ] }, "v_match_kill_pairs_order_by": { "killer_side": [ - 2016 + 2015 ], "killer_steam_id": [ - 2016 + 2015 ], "kills": [ - 2016 + 2015 ], "match": [ - 1851 + 1850 ], "match_id": [ - 2016 + 2015 ], "match_map": [ - 1689 + 1688 ], "match_map_id": [ - 2016 + 2015 ], "victim_side": [ - 2016 + 2015 ], "victim_steam_id": [ - 2016 + 2015 ], "weapon": [ - 2016 + 2015 ], "__typename": [ - 75 + 74 ] }, "v_match_kill_pairs_select_column": {}, @@ -93207,7 +94104,7 @@ export default { 29 ], "__typename": [ - 75 + 74 ] }, "v_match_kill_pairs_stddev_pop_fields": { @@ -93221,7 +94118,7 @@ export default { 29 ], "__typename": [ - 75 + 74 ] }, "v_match_kill_pairs_stddev_samp_fields": { @@ -93235,61 +94132,61 @@ export default { 29 ], "__typename": [ - 75 + 74 ] }, "v_match_kill_pairs_stream_cursor_input": { "initial_value": [ - 3955 + 3954 ], "ordering": [ - 229 + 228 ], "__typename": [ - 75 + 74 ] }, "v_match_kill_pairs_stream_cursor_value_input": { "killer_side": [ - 75 + 74 ], "killer_steam_id": [ - 174 + 173 ], "kills": [ 38 ], "match_id": [ - 3864 + 3863 ], "match_map_id": [ - 3864 + 3863 ], "victim_side": [ - 75 + 74 ], "victim_steam_id": [ - 174 + 173 ], "weapon": [ - 75 + 74 ], "__typename": [ - 75 + 74 ] }, "v_match_kill_pairs_sum_fields": { "killer_steam_id": [ - 174 + 173 ], "kills": [ 38 ], "victim_steam_id": [ - 174 + 173 ], "__typename": [ - 75 + 74 ] }, "v_match_kill_pairs_var_pop_fields": { @@ -93303,7 +94200,7 @@ export default { 29 ], "__typename": [ - 75 + 74 ] }, "v_match_kill_pairs_var_samp_fields": { @@ -93317,7 +94214,7 @@ export default { 29 ], "__typename": [ - 75 + 74 ] }, "v_match_kill_pairs_variance_fields": { @@ -93331,64 +94228,64 @@ export default { 29 ], "__typename": [ - 75 + 74 ] }, "v_match_lineup_buy_types": { "match": [ - 1831 + 1830 ], "match_id": [ - 3864 + 3863 ], "match_lineup": [ - 1511 + 1510 ], "match_lineup_id": [ - 3864 + 3863 ], "match_map": [ - 1669 + 1668 ], "match_map_id": [ - 3864 + 3863 ], "matchup": [ - 75 + 74 ], "rounds": [ 38 ], "side": [ - 75 + 74 ], "wins": [ 38 ], "__typename": [ - 75 + 74 ] }, "v_match_lineup_buy_types_aggregate": { "aggregate": [ - 3962 + 3961 ], "nodes": [ - 3960 + 3959 ], "__typename": [ - 75 + 74 ] }, "v_match_lineup_buy_types_aggregate_fields": { "avg": [ - 3963 + 3962 ], "count": [ 38, { "columns": [ - 3968, + 3967, "[v_match_lineup_buy_types_select_column!]" ], "distinct": [ @@ -93397,34 +94294,34 @@ export default { } ], "max": [ - 3965 + 3964 ], "min": [ - 3966 + 3965 ], "stddev": [ - 3969 + 3968 ], "stddev_pop": [ - 3970 + 3969 ], "stddev_samp": [ - 3971 + 3970 ], "sum": [ - 3974 + 3973 ], "var_pop": [ - 3975 + 3974 ], "var_samp": [ - 3976 + 3975 ], "variance": [ - 3977 + 3976 ], "__typename": [ - 75 + 74 ] }, "v_match_lineup_buy_types_avg_fields": { @@ -93435,138 +94332,138 @@ export default { 29 ], "__typename": [ - 75 + 74 ] }, "v_match_lineup_buy_types_bool_exp": { "_and": [ - 3964 + 3963 ], "_not": [ - 3964 + 3963 ], "_or": [ - 3964 + 3963 ], "match": [ - 1840 + 1839 ], "match_id": [ - 3866 + 3865 ], "match_lineup": [ - 1520 + 1519 ], "match_lineup_id": [ - 3866 + 3865 ], "match_map": [ - 1678 + 1677 ], "match_map_id": [ - 3866 + 3865 ], "matchup": [ - 77 + 76 ], "rounds": [ 39 ], "side": [ - 77 + 76 ], "wins": [ 39 ], "__typename": [ - 75 + 74 ] }, "v_match_lineup_buy_types_max_fields": { "match_id": [ - 3864 + 3863 ], "match_lineup_id": [ - 3864 + 3863 ], "match_map_id": [ - 3864 + 3863 ], "matchup": [ - 75 + 74 ], "rounds": [ 38 ], "side": [ - 75 + 74 ], "wins": [ 38 ], "__typename": [ - 75 + 74 ] }, "v_match_lineup_buy_types_min_fields": { "match_id": [ - 3864 + 3863 ], "match_lineup_id": [ - 3864 + 3863 ], "match_map_id": [ - 3864 + 3863 ], "matchup": [ - 75 + 74 ], "rounds": [ 38 ], "side": [ - 75 + 74 ], "wins": [ 38 ], "__typename": [ - 75 + 74 ] }, "v_match_lineup_buy_types_order_by": { "match": [ - 1851 + 1850 ], "match_id": [ - 2016 + 2015 ], "match_lineup": [ - 1531 + 1530 ], "match_lineup_id": [ - 2016 + 2015 ], "match_map": [ - 1689 + 1688 ], "match_map_id": [ - 2016 + 2015 ], "matchup": [ - 2016 + 2015 ], "rounds": [ - 2016 + 2015 ], "side": [ - 2016 + 2015 ], "wins": [ - 2016 + 2015 ], "__typename": [ - 75 + 74 ] }, "v_match_lineup_buy_types_select_column": {}, @@ -93578,7 +94475,7 @@ export default { 29 ], "__typename": [ - 75 + 74 ] }, "v_match_lineup_buy_types_stddev_pop_fields": { @@ -93589,7 +94486,7 @@ export default { 29 ], "__typename": [ - 75 + 74 ] }, "v_match_lineup_buy_types_stddev_samp_fields": { @@ -93600,44 +94497,44 @@ export default { 29 ], "__typename": [ - 75 + 74 ] }, "v_match_lineup_buy_types_stream_cursor_input": { "initial_value": [ - 3973 + 3972 ], "ordering": [ - 229 + 228 ], "__typename": [ - 75 + 74 ] }, "v_match_lineup_buy_types_stream_cursor_value_input": { "match_id": [ - 3864 + 3863 ], "match_lineup_id": [ - 3864 + 3863 ], "match_map_id": [ - 3864 + 3863 ], "matchup": [ - 75 + 74 ], "rounds": [ 38 ], "side": [ - 75 + 74 ], "wins": [ 38 ], "__typename": [ - 75 + 74 ] }, "v_match_lineup_buy_types_sum_fields": { @@ -93648,7 +94545,7 @@ export default { 38 ], "__typename": [ - 75 + 74 ] }, "v_match_lineup_buy_types_var_pop_fields": { @@ -93659,7 +94556,7 @@ export default { 29 ], "__typename": [ - 75 + 74 ] }, "v_match_lineup_buy_types_var_samp_fields": { @@ -93670,7 +94567,7 @@ export default { 29 ], "__typename": [ - 75 + 74 ] }, "v_match_lineup_buy_types_variance_fields": { @@ -93681,7 +94578,7 @@ export default { 29 ], "__typename": [ - 75 + 74 ] }, "v_match_lineup_map_stats": { @@ -93698,22 +94595,22 @@ export default { 38 ], "match": [ - 1831 + 1830 ], "match_id": [ - 3864 + 3863 ], "match_lineup": [ - 1511 + 1510 ], "match_lineup_id": [ - 3864 + 3863 ], "match_map": [ - 1669 + 1668 ], "match_map_id": [ - 3864 + 3863 ], "opening_attempts": [ 38 @@ -93734,7 +94631,7 @@ export default { 38 ], "side": [ - 75 + 74 ], "won_buy_eco": [ 38 @@ -93749,29 +94646,29 @@ export default { 38 ], "__typename": [ - 75 + 74 ] }, "v_match_lineup_map_stats_aggregate": { "aggregate": [ - 3980 + 3979 ], "nodes": [ - 3978 + 3977 ], "__typename": [ - 75 + 74 ] }, "v_match_lineup_map_stats_aggregate_fields": { "avg": [ - 3981 + 3980 ], "count": [ 38, { "columns": [ - 3986, + 3985, "[v_match_lineup_map_stats_select_column!]" ], "distinct": [ @@ -93780,34 +94677,34 @@ export default { } ], "max": [ - 3983 + 3982 ], "min": [ - 3984 + 3983 ], "stddev": [ - 3987 + 3986 ], "stddev_pop": [ - 3988 + 3987 ], "stddev_samp": [ - 3989 + 3988 ], "sum": [ - 3992 + 3991 ], "var_pop": [ - 3993 + 3992 ], "var_samp": [ - 3994 + 3993 ], "variance": [ - 3995 + 3994 ], "__typename": [ - 75 + 74 ] }, "v_match_lineup_map_stats_avg_fields": { @@ -93854,18 +94751,18 @@ export default { 29 ], "__typename": [ - 75 + 74 ] }, "v_match_lineup_map_stats_bool_exp": { "_and": [ - 3982 + 3981 ], "_not": [ - 3982 + 3981 ], "_or": [ - 3982 + 3981 ], "man_adv_rounds": [ 39 @@ -93880,22 +94777,22 @@ export default { 39 ], "match": [ - 1840 + 1839 ], "match_id": [ - 3866 + 3865 ], "match_lineup": [ - 1520 + 1519 ], "match_lineup_id": [ - 3866 + 3865 ], "match_map": [ - 1678 + 1677 ], "match_map_id": [ - 3866 + 3865 ], "opening_attempts": [ 39 @@ -93916,7 +94813,7 @@ export default { 39 ], "side": [ - 77 + 76 ], "won_buy_eco": [ 39 @@ -93931,7 +94828,7 @@ export default { 39 ], "__typename": [ - 75 + 74 ] }, "v_match_lineup_map_stats_max_fields": { @@ -93948,13 +94845,13 @@ export default { 38 ], "match_id": [ - 3864 + 3863 ], "match_lineup_id": [ - 3864 + 3863 ], "match_map_id": [ - 3864 + 3863 ], "opening_attempts": [ 38 @@ -93975,7 +94872,7 @@ export default { 38 ], "side": [ - 75 + 74 ], "won_buy_eco": [ 38 @@ -93990,7 +94887,7 @@ export default { 38 ], "__typename": [ - 75 + 74 ] }, "v_match_lineup_map_stats_min_fields": { @@ -94007,13 +94904,13 @@ export default { 38 ], "match_id": [ - 3864 + 3863 ], "match_lineup_id": [ - 3864 + 3863 ], "match_map_id": [ - 3864 + 3863 ], "opening_attempts": [ 38 @@ -94034,7 +94931,7 @@ export default { 38 ], "side": [ - 75 + 74 ], "won_buy_eco": [ 38 @@ -94049,75 +94946,75 @@ export default { 38 ], "__typename": [ - 75 + 74 ] }, "v_match_lineup_map_stats_order_by": { "man_adv_rounds": [ - 2016 + 2015 ], "man_adv_wins": [ - 2016 + 2015 ], "man_dis_rounds": [ - 2016 + 2015 ], "man_dis_wins": [ - 2016 + 2015 ], "match": [ - 1851 + 1850 ], "match_id": [ - 2016 + 2015 ], "match_lineup": [ - 1531 + 1530 ], "match_lineup_id": [ - 2016 + 2015 ], "match_map": [ - 1689 + 1688 ], "match_map_id": [ - 2016 + 2015 ], "opening_attempts": [ - 2016 + 2015 ], "opening_wins": [ - 2016 + 2015 ], "pistol_rounds": [ - 2016 + 2015 ], "pistol_wins": [ - 2016 + 2015 ], "round_wins": [ - 2016 + 2015 ], "rounds": [ - 2016 + 2015 ], "side": [ - 2016 + 2015 ], "won_buy_eco": [ - 2016 + 2015 ], "won_buy_force": [ - 2016 + 2015 ], "won_buy_full": [ - 2016 + 2015 ], "won_buy_pistol": [ - 2016 + 2015 ], "__typename": [ - 75 + 74 ] }, "v_match_lineup_map_stats_select_column": {}, @@ -94165,7 +95062,7 @@ export default { 29 ], "__typename": [ - 75 + 74 ] }, "v_match_lineup_map_stats_stddev_pop_fields": { @@ -94212,7 +95109,7 @@ export default { 29 ], "__typename": [ - 75 + 74 ] }, "v_match_lineup_map_stats_stddev_samp_fields": { @@ -94259,18 +95156,18 @@ export default { 29 ], "__typename": [ - 75 + 74 ] }, "v_match_lineup_map_stats_stream_cursor_input": { "initial_value": [ - 3991 + 3990 ], "ordering": [ - 229 + 228 ], "__typename": [ - 75 + 74 ] }, "v_match_lineup_map_stats_stream_cursor_value_input": { @@ -94287,13 +95184,13 @@ export default { 38 ], "match_id": [ - 3864 + 3863 ], "match_lineup_id": [ - 3864 + 3863 ], "match_map_id": [ - 3864 + 3863 ], "opening_attempts": [ 38 @@ -94314,7 +95211,7 @@ export default { 38 ], "side": [ - 75 + 74 ], "won_buy_eco": [ 38 @@ -94329,7 +95226,7 @@ export default { 38 ], "__typename": [ - 75 + 74 ] }, "v_match_lineup_map_stats_sum_fields": { @@ -94376,7 +95273,7 @@ export default { 38 ], "__typename": [ - 75 + 74 ] }, "v_match_lineup_map_stats_var_pop_fields": { @@ -94423,7 +95320,7 @@ export default { 29 ], "__typename": [ - 75 + 74 ] }, "v_match_lineup_map_stats_var_samp_fields": { @@ -94470,7 +95367,7 @@ export default { 29 ], "__typename": [ - 75 + 74 ] }, "v_match_lineup_map_stats_variance_fields": { @@ -94517,7 +95414,7 @@ export default { 29 ], "__typename": [ - 75 + 74 ] }, "v_match_map_backup_rounds": { @@ -94525,35 +95422,35 @@ export default { 3 ], "match_map_id": [ - 3864 + 3863 ], "round": [ 38 ], "__typename": [ - 75 + 74 ] }, "v_match_map_backup_rounds_aggregate": { "aggregate": [ - 3998 + 3997 ], "nodes": [ - 3996 + 3995 ], "__typename": [ - 75 + 74 ] }, "v_match_map_backup_rounds_aggregate_fields": { "avg": [ - 3999 + 3998 ], "count": [ 38, { "columns": [ - 4007, + 4006, "[v_match_map_backup_rounds_select_column!]" ], "distinct": [ @@ -94562,34 +95459,34 @@ export default { } ], "max": [ - 4003 + 4002 ], "min": [ - 4004 + 4003 ], "stddev": [ - 4009 + 4008 ], "stddev_pop": [ - 4010 + 4009 ], "stddev_samp": [ - 4011 + 4010 ], "sum": [ - 4014 + 4013 ], "var_pop": [ - 4016 + 4015 ], "var_samp": [ - 4017 + 4016 ], "variance": [ - 4018 + 4017 ], "__typename": [ - 75 + 74 ] }, "v_match_map_backup_rounds_avg_fields": { @@ -94597,30 +95494,30 @@ export default { 29 ], "__typename": [ - 75 + 74 ] }, "v_match_map_backup_rounds_bool_exp": { "_and": [ - 4000 + 3999 ], "_not": [ - 4000 + 3999 ], "_or": [ - 4000 + 3999 ], "has_backup_file": [ 4 ], "match_map_id": [ - 3866 + 3865 ], "round": [ 39 ], "__typename": [ - 75 + 74 ] }, "v_match_map_backup_rounds_inc_input": { @@ -94628,7 +95525,7 @@ export default { 38 ], "__typename": [ - 75 + 74 ] }, "v_match_map_backup_rounds_insert_input": { @@ -94636,35 +95533,35 @@ export default { 3 ], "match_map_id": [ - 3864 + 3863 ], "round": [ 38 ], "__typename": [ - 75 + 74 ] }, "v_match_map_backup_rounds_max_fields": { "match_map_id": [ - 3864 + 3863 ], "round": [ 38 ], "__typename": [ - 75 + 74 ] }, "v_match_map_backup_rounds_min_fields": { "match_map_id": [ - 3864 + 3863 ], "round": [ 38 ], "__typename": [ - 75 + 74 ] }, "v_match_map_backup_rounds_mutation_response": { @@ -94672,24 +95569,24 @@ export default { 38 ], "returning": [ - 3996 + 3995 ], "__typename": [ - 75 + 74 ] }, "v_match_map_backup_rounds_order_by": { "has_backup_file": [ - 2016 + 2015 ], "match_map_id": [ - 2016 + 2015 ], "round": [ - 2016 + 2015 ], "__typename": [ - 75 + 74 ] }, "v_match_map_backup_rounds_select_column": {}, @@ -94698,13 +95595,13 @@ export default { 3 ], "match_map_id": [ - 3864 + 3863 ], "round": [ 38 ], "__typename": [ - 75 + 74 ] }, "v_match_map_backup_rounds_stddev_fields": { @@ -94712,7 +95609,7 @@ export default { 29 ], "__typename": [ - 75 + 74 ] }, "v_match_map_backup_rounds_stddev_pop_fields": { @@ -94720,7 +95617,7 @@ export default { 29 ], "__typename": [ - 75 + 74 ] }, "v_match_map_backup_rounds_stddev_samp_fields": { @@ -94728,18 +95625,18 @@ export default { 29 ], "__typename": [ - 75 + 74 ] }, "v_match_map_backup_rounds_stream_cursor_input": { "initial_value": [ - 4013 + 4012 ], "ordering": [ - 229 + 228 ], "__typename": [ - 75 + 74 ] }, "v_match_map_backup_rounds_stream_cursor_value_input": { @@ -94747,13 +95644,13 @@ export default { 3 ], "match_map_id": [ - 3864 + 3863 ], "round": [ 38 ], "__typename": [ - 75 + 74 ] }, "v_match_map_backup_rounds_sum_fields": { @@ -94761,21 +95658,21 @@ export default { 38 ], "__typename": [ - 75 + 74 ] }, "v_match_map_backup_rounds_updates": { "_inc": [ - 4001 + 4000 ], "_set": [ - 4008 + 4007 ], "where": [ - 4000 + 3999 ], "__typename": [ - 75 + 74 ] }, "v_match_map_backup_rounds_var_pop_fields": { @@ -94783,7 +95680,7 @@ export default { 29 ], "__typename": [ - 75 + 74 ] }, "v_match_map_backup_rounds_var_samp_fields": { @@ -94791,7 +95688,7 @@ export default { 29 ], "__typename": [ - 75 + 74 ] }, "v_match_map_backup_rounds_variance_fields": { @@ -94799,7 +95696,7 @@ export default { 29 ], "__typename": [ - 75 + 74 ] }, "v_match_player_buy_types": { @@ -94810,62 +95707,62 @@ export default { 38 ], "match": [ - 1831 + 1830 ], "match_id": [ - 3864 + 3863 ], "match_lineup": [ - 1511 + 1510 ], "match_lineup_id": [ - 3864 + 3863 ], "match_map": [ - 1669 + 1668 ], "match_map_id": [ - 3864 + 3863 ], "matchup": [ - 75 + 74 ], "player": [ - 2915 + 2914 ], "rounds": [ 38 ], "side": [ - 75 + 74 ], "steam_id": [ - 174 + 173 ], "__typename": [ - 75 + 74 ] }, "v_match_player_buy_types_aggregate": { "aggregate": [ - 4021 + 4020 ], "nodes": [ - 4019 + 4018 ], "__typename": [ - 75 + 74 ] }, "v_match_player_buy_types_aggregate_fields": { "avg": [ - 4022 + 4021 ], "count": [ 38, { "columns": [ - 4027, + 4026, "[v_match_player_buy_types_select_column!]" ], "distinct": [ @@ -94874,34 +95771,34 @@ export default { } ], "max": [ - 4024 + 4023 ], "min": [ - 4025 + 4024 ], "stddev": [ - 4028 + 4027 ], "stddev_pop": [ - 4029 + 4028 ], "stddev_samp": [ - 4030 + 4029 ], "sum": [ - 4033 + 4032 ], "var_pop": [ - 4034 + 4033 ], "var_samp": [ - 4035 + 4034 ], "variance": [ - 4036 + 4035 ], "__typename": [ - 75 + 74 ] }, "v_match_player_buy_types_avg_fields": { @@ -94918,18 +95815,18 @@ export default { 29 ], "__typename": [ - 75 + 74 ] }, "v_match_player_buy_types_bool_exp": { "_and": [ - 4023 + 4022 ], "_not": [ - 4023 + 4022 ], "_or": [ - 4023 + 4022 ], "deaths": [ 39 @@ -94938,40 +95835,40 @@ export default { 39 ], "match": [ - 1840 + 1839 ], "match_id": [ - 3866 + 3865 ], "match_lineup": [ - 1520 + 1519 ], "match_lineup_id": [ - 3866 + 3865 ], "match_map": [ - 1678 + 1677 ], "match_map_id": [ - 3866 + 3865 ], "matchup": [ - 77 + 76 ], "player": [ - 2919 + 2918 ], "rounds": [ 39 ], "side": [ - 77 + 76 ], "steam_id": [ - 176 + 175 ], "__typename": [ - 75 + 74 ] }, "v_match_player_buy_types_max_fields": { @@ -94982,28 +95879,28 @@ export default { 38 ], "match_id": [ - 3864 + 3863 ], "match_lineup_id": [ - 3864 + 3863 ], "match_map_id": [ - 3864 + 3863 ], "matchup": [ - 75 + 74 ], "rounds": [ 38 ], "side": [ - 75 + 74 ], "steam_id": [ - 174 + 173 ], "__typename": [ - 75 + 74 ] }, "v_match_player_buy_types_min_fields": { @@ -95014,72 +95911,72 @@ export default { 38 ], "match_id": [ - 3864 + 3863 ], "match_lineup_id": [ - 3864 + 3863 ], "match_map_id": [ - 3864 + 3863 ], "matchup": [ - 75 + 74 ], "rounds": [ 38 ], "side": [ - 75 + 74 ], "steam_id": [ - 174 + 173 ], "__typename": [ - 75 + 74 ] }, "v_match_player_buy_types_order_by": { "deaths": [ - 2016 + 2015 ], "kills": [ - 2016 + 2015 ], "match": [ - 1851 + 1850 ], "match_id": [ - 2016 + 2015 ], "match_lineup": [ - 1531 + 1530 ], "match_lineup_id": [ - 2016 + 2015 ], "match_map": [ - 1689 + 1688 ], "match_map_id": [ - 2016 + 2015 ], "matchup": [ - 2016 + 2015 ], "player": [ - 2928 + 2927 ], "rounds": [ - 2016 + 2015 ], "side": [ - 2016 + 2015 ], "steam_id": [ - 2016 + 2015 ], "__typename": [ - 75 + 74 ] }, "v_match_player_buy_types_select_column": {}, @@ -95097,7 +95994,7 @@ export default { 29 ], "__typename": [ - 75 + 74 ] }, "v_match_player_buy_types_stddev_pop_fields": { @@ -95114,7 +96011,7 @@ export default { 29 ], "__typename": [ - 75 + 74 ] }, "v_match_player_buy_types_stddev_samp_fields": { @@ -95131,18 +96028,18 @@ export default { 29 ], "__typename": [ - 75 + 74 ] }, "v_match_player_buy_types_stream_cursor_input": { "initial_value": [ - 4032 + 4031 ], "ordering": [ - 229 + 228 ], "__typename": [ - 75 + 74 ] }, "v_match_player_buy_types_stream_cursor_value_input": { @@ -95153,28 +96050,28 @@ export default { 38 ], "match_id": [ - 3864 + 3863 ], "match_lineup_id": [ - 3864 + 3863 ], "match_map_id": [ - 3864 + 3863 ], "matchup": [ - 75 + 74 ], "rounds": [ 38 ], "side": [ - 75 + 74 ], "steam_id": [ - 174 + 173 ], "__typename": [ - 75 + 74 ] }, "v_match_player_buy_types_sum_fields": { @@ -95188,10 +96085,10 @@ export default { 38 ], "steam_id": [ - 174 + 173 ], "__typename": [ - 75 + 74 ] }, "v_match_player_buy_types_var_pop_fields": { @@ -95208,7 +96105,7 @@ export default { 29 ], "__typename": [ - 75 + 74 ] }, "v_match_player_buy_types_var_samp_fields": { @@ -95225,7 +96122,7 @@ export default { 29 ], "__typename": [ - 75 + 74 ] }, "v_match_player_buy_types_variance_fields": { @@ -95242,7 +96139,7 @@ export default { 29 ], "__typename": [ - 75 + 74 ] }, "v_match_player_opening_duels": { @@ -95253,31 +96150,31 @@ export default { 38 ], "match": [ - 1831 + 1830 ], "match_id": [ - 3864 + 3863 ], "match_lineup": [ - 1511 + 1510 ], "match_lineup_id": [ - 3864 + 3863 ], "match_map": [ - 1669 + 1668 ], "match_map_id": [ - 3864 + 3863 ], "player": [ - 2915 + 2914 ], "side": [ - 75 + 74 ], "steam_id": [ - 174 + 173 ], "traded_deaths": [ 38 @@ -95286,54 +96183,54 @@ export default { 38 ], "__typename": [ - 75 + 74 ] }, "v_match_player_opening_duels_aggregate": { "aggregate": [ - 4041 + 4040 ], "nodes": [ - 4037 + 4036 ], "__typename": [ - 75 + 74 ] }, "v_match_player_opening_duels_aggregate_bool_exp": { "count": [ - 4040 + 4039 ], "__typename": [ - 75 + 74 ] }, "v_match_player_opening_duels_aggregate_bool_exp_count": { "arguments": [ - 4053 + 4052 ], "distinct": [ 3 ], "filter": [ - 4046 + 4045 ], "predicate": [ 39 ], "__typename": [ - 75 + 74 ] }, "v_match_player_opening_duels_aggregate_fields": { "avg": [ - 4044 + 4043 ], "count": [ 38, { "columns": [ - 4053, + 4052, "[v_match_player_opening_duels_select_column!]" ], "distinct": [ @@ -95342,80 +96239,80 @@ export default { } ], "max": [ - 4048 + 4047 ], "min": [ - 4050 + 4049 ], "stddev": [ - 4054 + 4053 ], "stddev_pop": [ - 4056 + 4055 ], "stddev_samp": [ - 4058 + 4057 ], "sum": [ - 4062 + 4061 ], "var_pop": [ - 4064 + 4063 ], "var_samp": [ - 4066 + 4065 ], "variance": [ - 4068 + 4067 ], "__typename": [ - 75 + 74 ] }, "v_match_player_opening_duels_aggregate_order_by": { "avg": [ - 4045 + 4044 ], "count": [ - 2016 + 2015 ], "max": [ - 4049 + 4048 ], "min": [ - 4051 + 4050 ], "stddev": [ - 4055 + 4054 ], "stddev_pop": [ - 4057 + 4056 ], "stddev_samp": [ - 4059 + 4058 ], "sum": [ - 4063 + 4062 ], "var_pop": [ - 4065 + 4064 ], "var_samp": [ - 4067 + 4066 ], "variance": [ - 4069 + 4068 ], "__typename": [ - 75 + 74 ] }, "v_match_player_opening_duels_arr_rel_insert_input": { "data": [ - 4047 + 4046 ], "__typename": [ - 75 + 74 ] }, "v_match_player_opening_duels_avg_fields": { @@ -95435,38 +96332,38 @@ export default { 29 ], "__typename": [ - 75 + 74 ] }, "v_match_player_opening_duels_avg_order_by": { "attempts": [ - 2016 + 2015 ], "deaths": [ - 2016 + 2015 ], "steam_id": [ - 2016 + 2015 ], "traded_deaths": [ - 2016 + 2015 ], "wins": [ - 2016 + 2015 ], "__typename": [ - 75 + 74 ] }, "v_match_player_opening_duels_bool_exp": { "_and": [ - 4046 + 4045 ], "_not": [ - 4046 + 4045 ], "_or": [ - 4046 + 4045 ], "attempts": [ 39 @@ -95475,31 +96372,31 @@ export default { 39 ], "match": [ - 1840 + 1839 ], "match_id": [ - 3866 + 3865 ], "match_lineup": [ - 1520 + 1519 ], "match_lineup_id": [ - 3866 + 3865 ], "match_map": [ - 1678 + 1677 ], "match_map_id": [ - 3866 + 3865 ], "player": [ - 2919 + 2918 ], "side": [ - 77 + 76 ], "steam_id": [ - 176 + 175 ], "traded_deaths": [ 39 @@ -95508,7 +96405,7 @@ export default { 39 ], "__typename": [ - 75 + 74 ] }, "v_match_player_opening_duels_insert_input": { @@ -95519,31 +96416,31 @@ export default { 38 ], "match": [ - 1849 + 1848 ], "match_id": [ - 3864 + 3863 ], "match_lineup": [ - 1529 + 1528 ], "match_lineup_id": [ - 3864 + 3863 ], "match_map": [ - 1687 + 1686 ], "match_map_id": [ - 3864 + 3863 ], "player": [ - 2926 + 2925 ], "side": [ - 75 + 74 ], "steam_id": [ - 174 + 173 ], "traded_deaths": [ 38 @@ -95552,7 +96449,7 @@ export default { 38 ], "__typename": [ - 75 + 74 ] }, "v_match_player_opening_duels_max_fields": { @@ -95563,19 +96460,19 @@ export default { 38 ], "match_id": [ - 3864 + 3863 ], "match_lineup_id": [ - 3864 + 3863 ], "match_map_id": [ - 3864 + 3863 ], "side": [ - 75 + 74 ], "steam_id": [ - 174 + 173 ], "traded_deaths": [ 38 @@ -95584,39 +96481,39 @@ export default { 38 ], "__typename": [ - 75 + 74 ] }, "v_match_player_opening_duels_max_order_by": { "attempts": [ - 2016 + 2015 ], "deaths": [ - 2016 + 2015 ], "match_id": [ - 2016 + 2015 ], "match_lineup_id": [ - 2016 + 2015 ], "match_map_id": [ - 2016 + 2015 ], "side": [ - 2016 + 2015 ], "steam_id": [ - 2016 + 2015 ], "traded_deaths": [ - 2016 + 2015 ], "wins": [ - 2016 + 2015 ], "__typename": [ - 75 + 74 ] }, "v_match_player_opening_duels_min_fields": { @@ -95627,19 +96524,19 @@ export default { 38 ], "match_id": [ - 3864 + 3863 ], "match_lineup_id": [ - 3864 + 3863 ], "match_map_id": [ - 3864 + 3863 ], "side": [ - 75 + 74 ], "steam_id": [ - 174 + 173 ], "traded_deaths": [ 38 @@ -95648,83 +96545,83 @@ export default { 38 ], "__typename": [ - 75 + 74 ] }, "v_match_player_opening_duels_min_order_by": { "attempts": [ - 2016 + 2015 ], "deaths": [ - 2016 + 2015 ], "match_id": [ - 2016 + 2015 ], "match_lineup_id": [ - 2016 + 2015 ], "match_map_id": [ - 2016 + 2015 ], "side": [ - 2016 + 2015 ], "steam_id": [ - 2016 + 2015 ], "traded_deaths": [ - 2016 + 2015 ], "wins": [ - 2016 + 2015 ], "__typename": [ - 75 + 74 ] }, "v_match_player_opening_duels_order_by": { "attempts": [ - 2016 + 2015 ], "deaths": [ - 2016 + 2015 ], "match": [ - 1851 + 1850 ], "match_id": [ - 2016 + 2015 ], "match_lineup": [ - 1531 + 1530 ], "match_lineup_id": [ - 2016 + 2015 ], "match_map": [ - 1689 + 1688 ], "match_map_id": [ - 2016 + 2015 ], "player": [ - 2928 + 2927 ], "side": [ - 2016 + 2015 ], "steam_id": [ - 2016 + 2015 ], "traded_deaths": [ - 2016 + 2015 ], "wins": [ - 2016 + 2015 ], "__typename": [ - 75 + 74 ] }, "v_match_player_opening_duels_select_column": {}, @@ -95745,27 +96642,27 @@ export default { 29 ], "__typename": [ - 75 + 74 ] }, "v_match_player_opening_duels_stddev_order_by": { "attempts": [ - 2016 + 2015 ], "deaths": [ - 2016 + 2015 ], "steam_id": [ - 2016 + 2015 ], "traded_deaths": [ - 2016 + 2015 ], "wins": [ - 2016 + 2015 ], "__typename": [ - 75 + 74 ] }, "v_match_player_opening_duels_stddev_pop_fields": { @@ -95785,27 +96682,27 @@ export default { 29 ], "__typename": [ - 75 + 74 ] }, "v_match_player_opening_duels_stddev_pop_order_by": { "attempts": [ - 2016 + 2015 ], "deaths": [ - 2016 + 2015 ], "steam_id": [ - 2016 + 2015 ], "traded_deaths": [ - 2016 + 2015 ], "wins": [ - 2016 + 2015 ], "__typename": [ - 75 + 74 ] }, "v_match_player_opening_duels_stddev_samp_fields": { @@ -95825,38 +96722,38 @@ export default { 29 ], "__typename": [ - 75 + 74 ] }, "v_match_player_opening_duels_stddev_samp_order_by": { "attempts": [ - 2016 + 2015 ], "deaths": [ - 2016 + 2015 ], "steam_id": [ - 2016 + 2015 ], "traded_deaths": [ - 2016 + 2015 ], "wins": [ - 2016 + 2015 ], "__typename": [ - 75 + 74 ] }, "v_match_player_opening_duels_stream_cursor_input": { "initial_value": [ - 4061 + 4060 ], "ordering": [ - 229 + 228 ], "__typename": [ - 75 + 74 ] }, "v_match_player_opening_duels_stream_cursor_value_input": { @@ -95867,19 +96764,19 @@ export default { 38 ], "match_id": [ - 3864 + 3863 ], "match_lineup_id": [ - 3864 + 3863 ], "match_map_id": [ - 3864 + 3863 ], "side": [ - 75 + 74 ], "steam_id": [ - 174 + 173 ], "traded_deaths": [ 38 @@ -95888,7 +96785,7 @@ export default { 38 ], "__typename": [ - 75 + 74 ] }, "v_match_player_opening_duels_sum_fields": { @@ -95899,7 +96796,7 @@ export default { 38 ], "steam_id": [ - 174 + 173 ], "traded_deaths": [ 38 @@ -95908,27 +96805,27 @@ export default { 38 ], "__typename": [ - 75 + 74 ] }, "v_match_player_opening_duels_sum_order_by": { "attempts": [ - 2016 + 2015 ], "deaths": [ - 2016 + 2015 ], "steam_id": [ - 2016 + 2015 ], "traded_deaths": [ - 2016 + 2015 ], "wins": [ - 2016 + 2015 ], "__typename": [ - 75 + 74 ] }, "v_match_player_opening_duels_var_pop_fields": { @@ -95948,27 +96845,27 @@ export default { 29 ], "__typename": [ - 75 + 74 ] }, "v_match_player_opening_duels_var_pop_order_by": { "attempts": [ - 2016 + 2015 ], "deaths": [ - 2016 + 2015 ], "steam_id": [ - 2016 + 2015 ], "traded_deaths": [ - 2016 + 2015 ], "wins": [ - 2016 + 2015 ], "__typename": [ - 75 + 74 ] }, "v_match_player_opening_duels_var_samp_fields": { @@ -95988,27 +96885,27 @@ export default { 29 ], "__typename": [ - 75 + 74 ] }, "v_match_player_opening_duels_var_samp_order_by": { "attempts": [ - 2016 + 2015 ], "deaths": [ - 2016 + 2015 ], "steam_id": [ - 2016 + 2015 ], "traded_deaths": [ - 2016 + 2015 ], "wins": [ - 2016 + 2015 ], "__typename": [ - 75 + 74 ] }, "v_match_player_opening_duels_variance_fields": { @@ -96028,69 +96925,69 @@ export default { 29 ], "__typename": [ - 75 + 74 ] }, "v_match_player_opening_duels_variance_order_by": { "attempts": [ - 2016 + 2015 ], "deaths": [ - 2016 + 2015 ], "steam_id": [ - 2016 + 2015 ], "traded_deaths": [ - 2016 + 2015 ], "wins": [ - 2016 + 2015 ], "__typename": [ - 75 + 74 ] }, "v_player_arch_nemesis": { "attacker_id": [ - 174 + 173 ], "kill_count": [ - 174 + 173 ], "nemsis": [ - 2915 + 2914 ], "player": [ - 2915 + 2914 ], "victim_id": [ - 174 + 173 ], "__typename": [ - 75 + 74 ] }, "v_player_arch_nemesis_aggregate": { "aggregate": [ - 4072 + 4071 ], "nodes": [ - 4070 + 4069 ], "__typename": [ - 75 + 74 ] }, "v_player_arch_nemesis_aggregate_fields": { "avg": [ - 4073 + 4072 ], "count": [ 38, { "columns": [ - 4078, + 4077, "[v_player_arch_nemesis_select_column!]" ], "distinct": [ @@ -96099,34 +96996,34 @@ export default { } ], "max": [ - 4075 + 4074 ], "min": [ - 4076 + 4075 ], "stddev": [ - 4079 + 4078 ], "stddev_pop": [ - 4080 + 4079 ], "stddev_samp": [ - 4081 + 4080 ], "sum": [ - 4084 + 4083 ], "var_pop": [ - 4085 + 4084 ], "var_samp": [ - 4086 + 4085 ], "variance": [ - 4087 + 4086 ], "__typename": [ - 75 + 74 ] }, "v_player_arch_nemesis_avg_fields": { @@ -96140,84 +97037,84 @@ export default { 29 ], "__typename": [ - 75 + 74 ] }, "v_player_arch_nemesis_bool_exp": { "_and": [ - 4074 + 4073 ], "_not": [ - 4074 + 4073 ], "_or": [ - 4074 + 4073 ], "attacker_id": [ - 176 + 175 ], "kill_count": [ - 176 + 175 ], "nemsis": [ - 2919 + 2918 ], "player": [ - 2919 + 2918 ], "victim_id": [ - 176 + 175 ], "__typename": [ - 75 + 74 ] }, "v_player_arch_nemesis_max_fields": { "attacker_id": [ - 174 + 173 ], "kill_count": [ - 174 + 173 ], "victim_id": [ - 174 + 173 ], "__typename": [ - 75 + 74 ] }, "v_player_arch_nemesis_min_fields": { "attacker_id": [ - 174 + 173 ], "kill_count": [ - 174 + 173 ], "victim_id": [ - 174 + 173 ], "__typename": [ - 75 + 74 ] }, "v_player_arch_nemesis_order_by": { "attacker_id": [ - 2016 + 2015 ], "kill_count": [ - 2016 + 2015 ], "nemsis": [ - 2928 + 2927 ], "player": [ - 2928 + 2927 ], "victim_id": [ - 2016 + 2015 ], "__typename": [ - 75 + 74 ] }, "v_player_arch_nemesis_select_column": {}, @@ -96232,7 +97129,7 @@ export default { 29 ], "__typename": [ - 75 + 74 ] }, "v_player_arch_nemesis_stddev_pop_fields": { @@ -96246,7 +97143,7 @@ export default { 29 ], "__typename": [ - 75 + 74 ] }, "v_player_arch_nemesis_stddev_samp_fields": { @@ -96260,46 +97157,46 @@ export default { 29 ], "__typename": [ - 75 + 74 ] }, "v_player_arch_nemesis_stream_cursor_input": { "initial_value": [ - 4083 + 4082 ], "ordering": [ - 229 + 228 ], "__typename": [ - 75 + 74 ] }, "v_player_arch_nemesis_stream_cursor_value_input": { "attacker_id": [ - 174 + 173 ], "kill_count": [ - 174 + 173 ], "victim_id": [ - 174 + 173 ], "__typename": [ - 75 + 74 ] }, "v_player_arch_nemesis_sum_fields": { "attacker_id": [ - 174 + 173 ], "kill_count": [ - 174 + 173 ], "victim_id": [ - 174 + 173 ], "__typename": [ - 75 + 74 ] }, "v_player_arch_nemesis_var_pop_fields": { @@ -96313,7 +97210,7 @@ export default { 29 ], "__typename": [ - 75 + 74 ] }, "v_player_arch_nemesis_var_samp_fields": { @@ -96327,7 +97224,7 @@ export default { 29 ], "__typename": [ - 75 + 74 ] }, "v_player_arch_nemesis_variance_fields": { @@ -96341,49 +97238,49 @@ export default { 29 ], "__typename": [ - 75 + 74 ] }, "v_player_damage": { "avg_damage_per_round": [ - 174 + 173 ], "player": [ - 2915 + 2914 ], "player_steam_id": [ - 174 + 173 ], "total_damage": [ - 174 + 173 ], "total_rounds": [ - 174 + 173 ], "__typename": [ - 75 + 74 ] }, "v_player_damage_aggregate": { "aggregate": [ - 4090 + 4089 ], "nodes": [ - 4088 + 4087 ], "__typename": [ - 75 + 74 ] }, "v_player_damage_aggregate_fields": { "avg": [ - 4091 + 4090 ], "count": [ 38, { "columns": [ - 4096, + 4095, "[v_player_damage_select_column!]" ], "distinct": [ @@ -96392,34 +97289,34 @@ export default { } ], "max": [ - 4093 + 4092 ], "min": [ - 4094 + 4093 ], "stddev": [ - 4097 + 4096 ], "stddev_pop": [ - 4098 + 4097 ], "stddev_samp": [ - 4099 + 4098 ], "sum": [ - 4102 + 4101 ], "var_pop": [ - 4103 + 4102 ], "var_samp": [ - 4104 + 4103 ], "variance": [ - 4105 + 4104 ], "__typename": [ - 75 + 74 ] }, "v_player_damage_avg_fields": { @@ -96436,90 +97333,90 @@ export default { 29 ], "__typename": [ - 75 + 74 ] }, "v_player_damage_bool_exp": { "_and": [ - 4092 + 4091 ], "_not": [ - 4092 + 4091 ], "_or": [ - 4092 + 4091 ], "avg_damage_per_round": [ - 176 + 175 ], "player": [ - 2919 + 2918 ], "player_steam_id": [ - 176 + 175 ], "total_damage": [ - 176 + 175 ], "total_rounds": [ - 176 + 175 ], "__typename": [ - 75 + 74 ] }, "v_player_damage_max_fields": { "avg_damage_per_round": [ - 174 + 173 ], "player_steam_id": [ - 174 + 173 ], "total_damage": [ - 174 + 173 ], "total_rounds": [ - 174 + 173 ], "__typename": [ - 75 + 74 ] }, "v_player_damage_min_fields": { "avg_damage_per_round": [ - 174 + 173 ], "player_steam_id": [ - 174 + 173 ], "total_damage": [ - 174 + 173 ], "total_rounds": [ - 174 + 173 ], "__typename": [ - 75 + 74 ] }, "v_player_damage_order_by": { "avg_damage_per_round": [ - 2016 + 2015 ], "player": [ - 2928 + 2927 ], "player_steam_id": [ - 2016 + 2015 ], "total_damage": [ - 2016 + 2015 ], "total_rounds": [ - 2016 + 2015 ], "__typename": [ - 75 + 74 ] }, "v_player_damage_select_column": {}, @@ -96537,7 +97434,7 @@ export default { 29 ], "__typename": [ - 75 + 74 ] }, "v_player_damage_stddev_pop_fields": { @@ -96554,7 +97451,7 @@ export default { 29 ], "__typename": [ - 75 + 74 ] }, "v_player_damage_stddev_samp_fields": { @@ -96571,52 +97468,52 @@ export default { 29 ], "__typename": [ - 75 + 74 ] }, "v_player_damage_stream_cursor_input": { "initial_value": [ - 4101 + 4100 ], "ordering": [ - 229 + 228 ], "__typename": [ - 75 + 74 ] }, "v_player_damage_stream_cursor_value_input": { "avg_damage_per_round": [ - 174 + 173 ], "player_steam_id": [ - 174 + 173 ], "total_damage": [ - 174 + 173 ], "total_rounds": [ - 174 + 173 ], "__typename": [ - 75 + 74 ] }, "v_player_damage_sum_fields": { "avg_damage_per_round": [ - 174 + 173 ], "player_steam_id": [ - 174 + 173 ], "total_damage": [ - 174 + 173 ], "total_rounds": [ - 174 + 173 ], "__typename": [ - 75 + 74 ] }, "v_player_damage_var_pop_fields": { @@ -96633,7 +97530,7 @@ export default { 29 ], "__typename": [ - 75 + 74 ] }, "v_player_damage_var_samp_fields": { @@ -96650,7 +97547,7 @@ export default { 29 ], "__typename": [ - 75 + 74 ] }, "v_player_damage_variance_fields": { @@ -96667,12 +97564,12 @@ export default { 29 ], "__typename": [ - 75 + 74 ] }, "v_player_elo": { "actual_score": [ - 1089 + 1088 ], "assists": [ 38 @@ -96684,7 +97581,7 @@ export default { 38 ], "damage_percent": [ - 1089 + 1088 ], "deaths": [ 38 @@ -96693,16 +97590,16 @@ export default { 38 ], "expected_score": [ - 1089 + 1088 ], "impact": [ - 1089 + 1088 ], "k_factor": [ 38 ], "kda": [ - 1089 + 1088 ], "kills": [ 38 @@ -96714,275 +97611,275 @@ export default { 38 ], "match": [ - 1831 + 1830 ], "match_created_at": [ - 3467 + 3466 ], "match_id": [ - 3864 + 3863 ], "match_result": [ - 75 + 74 ], "opponent_team_elo_avg": [ - 1089 + 1088 ], "performance_multiplier": [ - 1089 + 1088 ], "player_name": [ - 75 + 74 ], "player_steam_id": [ - 174 + 173 ], "player_team_elo_avg": [ - 1089 + 1088 ], "series_multiplier": [ 38 ], "team_avg_kda": [ - 1089 + 1088 ], "type": [ - 75 + 74 ], "updated_elo": [ 38 ], "__typename": [ - 75 + 74 ] }, "v_player_elo_aggregate": { "aggregate": [ - 4120 + 4119 ], "nodes": [ - 4106 + 4105 ], "__typename": [ - 75 + 74 ] }, "v_player_elo_aggregate_bool_exp": { "avg": [ - 4109 + 4108 ], "corr": [ - 4110 + 4109 ], "count": [ - 4112 + 4111 ], "covar_samp": [ - 4113 + 4112 ], "max": [ - 4115 + 4114 ], "min": [ - 4116 + 4115 ], "stddev_samp": [ - 4117 + 4116 ], "sum": [ - 4118 + 4117 ], "var_samp": [ - 4119 + 4118 ], "__typename": [ - 75 + 74 ] }, "v_player_elo_aggregate_bool_exp_avg": { "arguments": [ - 4133 + 4132 ], "distinct": [ 3 ], "filter": [ - 4125 + 4124 ], "predicate": [ - 1090 + 1089 ], "__typename": [ - 75 + 74 ] }, "v_player_elo_aggregate_bool_exp_corr": { "arguments": [ - 4111 + 4110 ], "distinct": [ 3 ], "filter": [ - 4125 + 4124 ], "predicate": [ - 1090 + 1089 ], "__typename": [ - 75 + 74 ] }, "v_player_elo_aggregate_bool_exp_corr_arguments": { "X": [ - 4134 + 4133 ], "Y": [ - 4134 + 4133 ], "__typename": [ - 75 + 74 ] }, "v_player_elo_aggregate_bool_exp_count": { "arguments": [ - 4132 + 4131 ], "distinct": [ 3 ], "filter": [ - 4125 + 4124 ], "predicate": [ 39 ], "__typename": [ - 75 + 74 ] }, "v_player_elo_aggregate_bool_exp_covar_samp": { "arguments": [ - 4114 + 4113 ], "distinct": [ 3 ], "filter": [ - 4125 + 4124 ], "predicate": [ - 1090 + 1089 ], "__typename": [ - 75 + 74 ] }, "v_player_elo_aggregate_bool_exp_covar_samp_arguments": { "X": [ - 4135 + 4134 ], "Y": [ - 4135 + 4134 ], "__typename": [ - 75 + 74 ] }, "v_player_elo_aggregate_bool_exp_max": { "arguments": [ - 4136 + 4135 ], "distinct": [ 3 ], "filter": [ - 4125 + 4124 ], "predicate": [ - 1090 + 1089 ], "__typename": [ - 75 + 74 ] }, "v_player_elo_aggregate_bool_exp_min": { "arguments": [ - 4137 + 4136 ], "distinct": [ 3 ], "filter": [ - 4125 + 4124 ], "predicate": [ - 1090 + 1089 ], "__typename": [ - 75 + 74 ] }, "v_player_elo_aggregate_bool_exp_stddev_samp": { "arguments": [ - 4138 + 4137 ], "distinct": [ 3 ], "filter": [ - 4125 + 4124 ], "predicate": [ - 1090 + 1089 ], "__typename": [ - 75 + 74 ] }, "v_player_elo_aggregate_bool_exp_sum": { "arguments": [ - 4139 + 4138 ], "distinct": [ 3 ], "filter": [ - 4125 + 4124 ], "predicate": [ - 1090 + 1089 ], "__typename": [ - 75 + 74 ] }, "v_player_elo_aggregate_bool_exp_var_samp": { "arguments": [ - 4140 + 4139 ], "distinct": [ 3 ], "filter": [ - 4125 + 4124 ], "predicate": [ - 1090 + 1089 ], "__typename": [ - 75 + 74 ] }, "v_player_elo_aggregate_fields": { "avg": [ - 4123 + 4122 ], "count": [ 38, { "columns": [ - 4132, + 4131, "[v_player_elo_select_column!]" ], "distinct": [ @@ -96991,80 +97888,80 @@ export default { } ], "max": [ - 4127 + 4126 ], "min": [ - 4129 + 4128 ], "stddev": [ - 4141 + 4140 ], "stddev_pop": [ - 4143 + 4142 ], "stddev_samp": [ - 4145 + 4144 ], "sum": [ - 4149 + 4148 ], "var_pop": [ - 4151 + 4150 ], "var_samp": [ - 4153 + 4152 ], "variance": [ - 4155 + 4154 ], "__typename": [ - 75 + 74 ] }, "v_player_elo_aggregate_order_by": { "avg": [ - 4124 + 4123 ], "count": [ - 2016 + 2015 ], "max": [ - 4128 + 4127 ], "min": [ - 4130 + 4129 ], "stddev": [ - 4142 + 4141 ], "stddev_pop": [ - 4144 + 4143 ], "stddev_samp": [ - 4146 + 4145 ], "sum": [ - 4150 + 4149 ], "var_pop": [ - 4152 + 4151 ], "var_samp": [ - 4154 + 4153 ], "variance": [ - 4156 + 4155 ], "__typename": [ - 75 + 74 ] }, "v_player_elo_arr_rel_insert_input": { "data": [ - 4126 + 4125 ], "__typename": [ - 75 + 74 ] }, "v_player_elo_avg_fields": { @@ -97132,89 +98029,89 @@ export default { 29 ], "__typename": [ - 75 + 74 ] }, "v_player_elo_avg_order_by": { "actual_score": [ - 2016 + 2015 ], "assists": [ - 2016 + 2015 ], "current_elo": [ - 2016 + 2015 ], "damage": [ - 2016 + 2015 ], "damage_percent": [ - 2016 + 2015 ], "deaths": [ - 2016 + 2015 ], "elo_change": [ - 2016 + 2015 ], "expected_score": [ - 2016 + 2015 ], "impact": [ - 2016 + 2015 ], "k_factor": [ - 2016 + 2015 ], "kda": [ - 2016 + 2015 ], "kills": [ - 2016 + 2015 ], "map_losses": [ - 2016 + 2015 ], "map_wins": [ - 2016 + 2015 ], "opponent_team_elo_avg": [ - 2016 + 2015 ], "performance_multiplier": [ - 2016 + 2015 ], "player_steam_id": [ - 2016 + 2015 ], "player_team_elo_avg": [ - 2016 + 2015 ], "series_multiplier": [ - 2016 + 2015 ], "team_avg_kda": [ - 2016 + 2015 ], "updated_elo": [ - 2016 + 2015 ], "__typename": [ - 75 + 74 ] }, "v_player_elo_bool_exp": { "_and": [ - 4125 + 4124 ], "_not": [ - 4125 + 4124 ], "_or": [ - 4125 + 4124 ], "actual_score": [ - 1090 + 1089 ], "assists": [ 39 @@ -97226,7 +98123,7 @@ export default { 39 ], "damage_percent": [ - 1090 + 1089 ], "deaths": [ 39 @@ -97235,16 +98132,16 @@ export default { 39 ], "expected_score": [ - 1090 + 1089 ], "impact": [ - 1090 + 1089 ], "k_factor": [ 39 ], "kda": [ - 1090 + 1089 ], "kills": [ 39 @@ -97256,51 +98153,51 @@ export default { 39 ], "match": [ - 1840 + 1839 ], "match_created_at": [ - 3468 + 3467 ], "match_id": [ - 3866 + 3865 ], "match_result": [ - 77 + 76 ], "opponent_team_elo_avg": [ - 1090 + 1089 ], "performance_multiplier": [ - 1090 + 1089 ], "player_name": [ - 77 + 76 ], "player_steam_id": [ - 176 + 175 ], "player_team_elo_avg": [ - 1090 + 1089 ], "series_multiplier": [ 39 ], "team_avg_kda": [ - 1090 + 1089 ], "type": [ - 77 + 76 ], "updated_elo": [ 39 ], "__typename": [ - 75 + 74 ] }, "v_player_elo_insert_input": { "actual_score": [ - 1089 + 1088 ], "assists": [ 38 @@ -97312,7 +98209,7 @@ export default { 38 ], "damage_percent": [ - 1089 + 1088 ], "deaths": [ 38 @@ -97321,16 +98218,16 @@ export default { 38 ], "expected_score": [ - 1089 + 1088 ], "impact": [ - 1089 + 1088 ], "k_factor": [ 38 ], "kda": [ - 1089 + 1088 ], "kills": [ 38 @@ -97342,51 +98239,51 @@ export default { 38 ], "match": [ - 1849 + 1848 ], "match_created_at": [ - 3467 + 3466 ], "match_id": [ - 3864 + 3863 ], "match_result": [ - 75 + 74 ], "opponent_team_elo_avg": [ - 1089 + 1088 ], "performance_multiplier": [ - 1089 + 1088 ], "player_name": [ - 75 + 74 ], "player_steam_id": [ - 174 + 173 ], "player_team_elo_avg": [ - 1089 + 1088 ], "series_multiplier": [ 38 ], "team_avg_kda": [ - 1089 + 1088 ], "type": [ - 75 + 74 ], "updated_elo": [ 38 ], "__typename": [ - 75 + 74 ] }, "v_player_elo_max_fields": { "actual_score": [ - 1089 + 1088 ], "assists": [ 38 @@ -97398,7 +98295,7 @@ export default { 38 ], "damage_percent": [ - 1089 + 1088 ], "deaths": [ 38 @@ -97407,16 +98304,16 @@ export default { 38 ], "expected_score": [ - 1089 + 1088 ], "impact": [ - 1089 + 1088 ], "k_factor": [ 38 ], "kda": [ - 1089 + 1088 ], "kills": [ 38 @@ -97428,131 +98325,131 @@ export default { 38 ], "match_created_at": [ - 3467 + 3466 ], "match_id": [ - 3864 + 3863 ], "match_result": [ - 75 + 74 ], "opponent_team_elo_avg": [ - 1089 + 1088 ], "performance_multiplier": [ - 1089 + 1088 ], "player_name": [ - 75 + 74 ], "player_steam_id": [ - 174 + 173 ], "player_team_elo_avg": [ - 1089 + 1088 ], "series_multiplier": [ 38 ], "team_avg_kda": [ - 1089 + 1088 ], "type": [ - 75 + 74 ], "updated_elo": [ 38 ], "__typename": [ - 75 + 74 ] }, "v_player_elo_max_order_by": { "actual_score": [ - 2016 + 2015 ], "assists": [ - 2016 + 2015 ], "current_elo": [ - 2016 + 2015 ], "damage": [ - 2016 + 2015 ], "damage_percent": [ - 2016 + 2015 ], "deaths": [ - 2016 + 2015 ], "elo_change": [ - 2016 + 2015 ], "expected_score": [ - 2016 + 2015 ], "impact": [ - 2016 + 2015 ], "k_factor": [ - 2016 + 2015 ], "kda": [ - 2016 + 2015 ], "kills": [ - 2016 + 2015 ], "map_losses": [ - 2016 + 2015 ], "map_wins": [ - 2016 + 2015 ], "match_created_at": [ - 2016 + 2015 ], "match_id": [ - 2016 + 2015 ], "match_result": [ - 2016 + 2015 ], "opponent_team_elo_avg": [ - 2016 + 2015 ], "performance_multiplier": [ - 2016 + 2015 ], "player_name": [ - 2016 + 2015 ], "player_steam_id": [ - 2016 + 2015 ], "player_team_elo_avg": [ - 2016 + 2015 ], "series_multiplier": [ - 2016 + 2015 ], "team_avg_kda": [ - 2016 + 2015 ], "type": [ - 2016 + 2015 ], "updated_elo": [ - 2016 + 2015 ], "__typename": [ - 75 + 74 ] }, "v_player_elo_min_fields": { "actual_score": [ - 1089 + 1088 ], "assists": [ 38 @@ -97564,7 +98461,7 @@ export default { 38 ], "damage_percent": [ - 1089 + 1088 ], "deaths": [ 38 @@ -97573,16 +98470,16 @@ export default { 38 ], "expected_score": [ - 1089 + 1088 ], "impact": [ - 1089 + 1088 ], "k_factor": [ 38 ], "kda": [ - 1089 + 1088 ], "kills": [ 38 @@ -97594,212 +98491,212 @@ export default { 38 ], "match_created_at": [ - 3467 + 3466 ], "match_id": [ - 3864 + 3863 ], "match_result": [ - 75 + 74 ], "opponent_team_elo_avg": [ - 1089 + 1088 ], "performance_multiplier": [ - 1089 + 1088 ], "player_name": [ - 75 + 74 ], "player_steam_id": [ - 174 + 173 ], "player_team_elo_avg": [ - 1089 + 1088 ], "series_multiplier": [ 38 ], "team_avg_kda": [ - 1089 + 1088 ], "type": [ - 75 + 74 ], "updated_elo": [ 38 ], "__typename": [ - 75 + 74 ] }, "v_player_elo_min_order_by": { "actual_score": [ - 2016 + 2015 ], "assists": [ - 2016 + 2015 ], "current_elo": [ - 2016 + 2015 ], "damage": [ - 2016 + 2015 ], "damage_percent": [ - 2016 + 2015 ], "deaths": [ - 2016 + 2015 ], "elo_change": [ - 2016 + 2015 ], "expected_score": [ - 2016 + 2015 ], "impact": [ - 2016 + 2015 ], "k_factor": [ - 2016 + 2015 ], "kda": [ - 2016 + 2015 ], "kills": [ - 2016 + 2015 ], "map_losses": [ - 2016 + 2015 ], "map_wins": [ - 2016 + 2015 ], "match_created_at": [ - 2016 + 2015 ], "match_id": [ - 2016 + 2015 ], "match_result": [ - 2016 + 2015 ], "opponent_team_elo_avg": [ - 2016 + 2015 ], "performance_multiplier": [ - 2016 + 2015 ], "player_name": [ - 2016 + 2015 ], "player_steam_id": [ - 2016 + 2015 ], "player_team_elo_avg": [ - 2016 + 2015 ], "series_multiplier": [ - 2016 + 2015 ], "team_avg_kda": [ - 2016 + 2015 ], "type": [ - 2016 + 2015 ], "updated_elo": [ - 2016 + 2015 ], "__typename": [ - 75 + 74 ] }, "v_player_elo_order_by": { "actual_score": [ - 2016 + 2015 ], "assists": [ - 2016 + 2015 ], "current_elo": [ - 2016 + 2015 ], "damage": [ - 2016 + 2015 ], "damage_percent": [ - 2016 + 2015 ], "deaths": [ - 2016 + 2015 ], "elo_change": [ - 2016 + 2015 ], "expected_score": [ - 2016 + 2015 ], "impact": [ - 2016 + 2015 ], "k_factor": [ - 2016 + 2015 ], "kda": [ - 2016 + 2015 ], "kills": [ - 2016 + 2015 ], "map_losses": [ - 2016 + 2015 ], "map_wins": [ - 2016 + 2015 ], "match": [ - 1851 + 1850 ], "match_created_at": [ - 2016 + 2015 ], "match_id": [ - 2016 + 2015 ], "match_result": [ - 2016 + 2015 ], "opponent_team_elo_avg": [ - 2016 + 2015 ], "performance_multiplier": [ - 2016 + 2015 ], "player_name": [ - 2016 + 2015 ], "player_steam_id": [ - 2016 + 2015 ], "player_team_elo_avg": [ - 2016 + 2015 ], "series_multiplier": [ - 2016 + 2015 ], "team_avg_kda": [ - 2016 + 2015 ], "type": [ - 2016 + 2015 ], "updated_elo": [ - 2016 + 2015 ], "__typename": [ - 75 + 74 ] }, "v_player_elo_select_column": {}, @@ -97876,75 +98773,75 @@ export default { 29 ], "__typename": [ - 75 + 74 ] }, "v_player_elo_stddev_order_by": { "actual_score": [ - 2016 + 2015 ], "assists": [ - 2016 + 2015 ], "current_elo": [ - 2016 + 2015 ], "damage": [ - 2016 + 2015 ], "damage_percent": [ - 2016 + 2015 ], "deaths": [ - 2016 + 2015 ], "elo_change": [ - 2016 + 2015 ], "expected_score": [ - 2016 + 2015 ], "impact": [ - 2016 + 2015 ], "k_factor": [ - 2016 + 2015 ], "kda": [ - 2016 + 2015 ], "kills": [ - 2016 + 2015 ], "map_losses": [ - 2016 + 2015 ], "map_wins": [ - 2016 + 2015 ], "opponent_team_elo_avg": [ - 2016 + 2015 ], "performance_multiplier": [ - 2016 + 2015 ], "player_steam_id": [ - 2016 + 2015 ], "player_team_elo_avg": [ - 2016 + 2015 ], "series_multiplier": [ - 2016 + 2015 ], "team_avg_kda": [ - 2016 + 2015 ], "updated_elo": [ - 2016 + 2015 ], "__typename": [ - 75 + 74 ] }, "v_player_elo_stddev_pop_fields": { @@ -98012,75 +98909,75 @@ export default { 29 ], "__typename": [ - 75 + 74 ] }, "v_player_elo_stddev_pop_order_by": { "actual_score": [ - 2016 + 2015 ], "assists": [ - 2016 + 2015 ], "current_elo": [ - 2016 + 2015 ], "damage": [ - 2016 + 2015 ], "damage_percent": [ - 2016 + 2015 ], "deaths": [ - 2016 + 2015 ], "elo_change": [ - 2016 + 2015 ], "expected_score": [ - 2016 + 2015 ], "impact": [ - 2016 + 2015 ], "k_factor": [ - 2016 + 2015 ], "kda": [ - 2016 + 2015 ], "kills": [ - 2016 + 2015 ], "map_losses": [ - 2016 + 2015 ], "map_wins": [ - 2016 + 2015 ], "opponent_team_elo_avg": [ - 2016 + 2015 ], "performance_multiplier": [ - 2016 + 2015 ], "player_steam_id": [ - 2016 + 2015 ], "player_team_elo_avg": [ - 2016 + 2015 ], "series_multiplier": [ - 2016 + 2015 ], "team_avg_kda": [ - 2016 + 2015 ], "updated_elo": [ - 2016 + 2015 ], "__typename": [ - 75 + 74 ] }, "v_player_elo_stddev_samp_fields": { @@ -98148,91 +99045,91 @@ export default { 29 ], "__typename": [ - 75 + 74 ] }, "v_player_elo_stddev_samp_order_by": { "actual_score": [ - 2016 + 2015 ], "assists": [ - 2016 + 2015 ], "current_elo": [ - 2016 + 2015 ], "damage": [ - 2016 + 2015 ], "damage_percent": [ - 2016 + 2015 ], "deaths": [ - 2016 + 2015 ], "elo_change": [ - 2016 + 2015 ], "expected_score": [ - 2016 + 2015 ], "impact": [ - 2016 + 2015 ], "k_factor": [ - 2016 + 2015 ], "kda": [ - 2016 + 2015 ], "kills": [ - 2016 + 2015 ], "map_losses": [ - 2016 + 2015 ], "map_wins": [ - 2016 + 2015 ], "opponent_team_elo_avg": [ - 2016 + 2015 ], "performance_multiplier": [ - 2016 + 2015 ], "player_steam_id": [ - 2016 + 2015 ], "player_team_elo_avg": [ - 2016 + 2015 ], "series_multiplier": [ - 2016 + 2015 ], "team_avg_kda": [ - 2016 + 2015 ], "updated_elo": [ - 2016 + 2015 ], "__typename": [ - 75 + 74 ] }, "v_player_elo_stream_cursor_input": { "initial_value": [ - 4148 + 4147 ], "ordering": [ - 229 + 228 ], "__typename": [ - 75 + 74 ] }, "v_player_elo_stream_cursor_value_input": { "actual_score": [ - 1089 + 1088 ], "assists": [ 38 @@ -98244,7 +99141,7 @@ export default { 38 ], "damage_percent": [ - 1089 + 1088 ], "deaths": [ 38 @@ -98253,16 +99150,16 @@ export default { 38 ], "expected_score": [ - 1089 + 1088 ], "impact": [ - 1089 + 1088 ], "k_factor": [ 38 ], "kda": [ - 1089 + 1088 ], "kills": [ 38 @@ -98274,48 +99171,48 @@ export default { 38 ], "match_created_at": [ - 3467 + 3466 ], "match_id": [ - 3864 + 3863 ], "match_result": [ - 75 + 74 ], "opponent_team_elo_avg": [ - 1089 + 1088 ], "performance_multiplier": [ - 1089 + 1088 ], "player_name": [ - 75 + 74 ], "player_steam_id": [ - 174 + 173 ], "player_team_elo_avg": [ - 1089 + 1088 ], "series_multiplier": [ 38 ], "team_avg_kda": [ - 1089 + 1088 ], "type": [ - 75 + 74 ], "updated_elo": [ 38 ], "__typename": [ - 75 + 74 ] }, "v_player_elo_sum_fields": { "actual_score": [ - 1089 + 1088 ], "assists": [ 38 @@ -98327,7 +99224,7 @@ export default { 38 ], "damage_percent": [ - 1089 + 1088 ], "deaths": [ 38 @@ -98336,16 +99233,16 @@ export default { 38 ], "expected_score": [ - 1089 + 1088 ], "impact": [ - 1089 + 1088 ], "k_factor": [ 38 ], "kda": [ - 1089 + 1088 ], "kills": [ 38 @@ -98357,96 +99254,96 @@ export default { 38 ], "opponent_team_elo_avg": [ - 1089 + 1088 ], "performance_multiplier": [ - 1089 + 1088 ], "player_steam_id": [ - 174 + 173 ], "player_team_elo_avg": [ - 1089 + 1088 ], "series_multiplier": [ 38 ], "team_avg_kda": [ - 1089 + 1088 ], "updated_elo": [ 38 ], "__typename": [ - 75 + 74 ] }, "v_player_elo_sum_order_by": { "actual_score": [ - 2016 + 2015 ], "assists": [ - 2016 + 2015 ], "current_elo": [ - 2016 + 2015 ], "damage": [ - 2016 + 2015 ], "damage_percent": [ - 2016 + 2015 ], "deaths": [ - 2016 + 2015 ], "elo_change": [ - 2016 + 2015 ], "expected_score": [ - 2016 + 2015 ], "impact": [ - 2016 + 2015 ], "k_factor": [ - 2016 + 2015 ], "kda": [ - 2016 + 2015 ], "kills": [ - 2016 + 2015 ], "map_losses": [ - 2016 + 2015 ], "map_wins": [ - 2016 + 2015 ], "opponent_team_elo_avg": [ - 2016 + 2015 ], "performance_multiplier": [ - 2016 + 2015 ], "player_steam_id": [ - 2016 + 2015 ], "player_team_elo_avg": [ - 2016 + 2015 ], "series_multiplier": [ - 2016 + 2015 ], "team_avg_kda": [ - 2016 + 2015 ], "updated_elo": [ - 2016 + 2015 ], "__typename": [ - 75 + 74 ] }, "v_player_elo_var_pop_fields": { @@ -98514,75 +99411,75 @@ export default { 29 ], "__typename": [ - 75 + 74 ] }, "v_player_elo_var_pop_order_by": { "actual_score": [ - 2016 + 2015 ], "assists": [ - 2016 + 2015 ], "current_elo": [ - 2016 + 2015 ], "damage": [ - 2016 + 2015 ], "damage_percent": [ - 2016 + 2015 ], "deaths": [ - 2016 + 2015 ], "elo_change": [ - 2016 + 2015 ], "expected_score": [ - 2016 + 2015 ], "impact": [ - 2016 + 2015 ], "k_factor": [ - 2016 + 2015 ], "kda": [ - 2016 + 2015 ], "kills": [ - 2016 + 2015 ], "map_losses": [ - 2016 + 2015 ], "map_wins": [ - 2016 + 2015 ], "opponent_team_elo_avg": [ - 2016 + 2015 ], "performance_multiplier": [ - 2016 + 2015 ], "player_steam_id": [ - 2016 + 2015 ], "player_team_elo_avg": [ - 2016 + 2015 ], "series_multiplier": [ - 2016 + 2015 ], "team_avg_kda": [ - 2016 + 2015 ], "updated_elo": [ - 2016 + 2015 ], "__typename": [ - 75 + 74 ] }, "v_player_elo_var_samp_fields": { @@ -98650,75 +99547,75 @@ export default { 29 ], "__typename": [ - 75 + 74 ] }, "v_player_elo_var_samp_order_by": { "actual_score": [ - 2016 + 2015 ], "assists": [ - 2016 + 2015 ], "current_elo": [ - 2016 + 2015 ], "damage": [ - 2016 + 2015 ], "damage_percent": [ - 2016 + 2015 ], "deaths": [ - 2016 + 2015 ], "elo_change": [ - 2016 + 2015 ], "expected_score": [ - 2016 + 2015 ], "impact": [ - 2016 + 2015 ], "k_factor": [ - 2016 + 2015 ], "kda": [ - 2016 + 2015 ], "kills": [ - 2016 + 2015 ], "map_losses": [ - 2016 + 2015 ], "map_wins": [ - 2016 + 2015 ], "opponent_team_elo_avg": [ - 2016 + 2015 ], "performance_multiplier": [ - 2016 + 2015 ], "player_steam_id": [ - 2016 + 2015 ], "player_team_elo_avg": [ - 2016 + 2015 ], "series_multiplier": [ - 2016 + 2015 ], "team_avg_kda": [ - 2016 + 2015 ], "updated_elo": [ - 2016 + 2015 ], "__typename": [ - 75 + 74 ] }, "v_player_elo_variance_fields": { @@ -98786,120 +99683,120 @@ export default { 29 ], "__typename": [ - 75 + 74 ] }, "v_player_elo_variance_order_by": { "actual_score": [ - 2016 + 2015 ], "assists": [ - 2016 + 2015 ], "current_elo": [ - 2016 + 2015 ], "damage": [ - 2016 + 2015 ], "damage_percent": [ - 2016 + 2015 ], "deaths": [ - 2016 + 2015 ], "elo_change": [ - 2016 + 2015 ], "expected_score": [ - 2016 + 2015 ], "impact": [ - 2016 + 2015 ], "k_factor": [ - 2016 + 2015 ], "kda": [ - 2016 + 2015 ], "kills": [ - 2016 + 2015 ], "map_losses": [ - 2016 + 2015 ], "map_wins": [ - 2016 + 2015 ], "opponent_team_elo_avg": [ - 2016 + 2015 ], "performance_multiplier": [ - 2016 + 2015 ], "player_steam_id": [ - 2016 + 2015 ], "player_team_elo_avg": [ - 2016 + 2015 ], "series_multiplier": [ - 2016 + 2015 ], "team_avg_kda": [ - 2016 + 2015 ], "updated_elo": [ - 2016 + 2015 ], "__typename": [ - 75 + 74 ] }, "v_player_map_losses": { "map": [ - 1349 + 1348 ], "map_id": [ - 3864 + 3863 ], "match": [ - 1831 + 1830 ], "match_id": [ - 3864 + 3863 ], "started_at": [ - 3467 + 3466 ], "steam_id": [ - 174 + 173 ], "__typename": [ - 75 + 74 ] }, "v_player_map_losses_aggregate": { "aggregate": [ - 4159 + 4158 ], "nodes": [ - 4157 + 4156 ], "__typename": [ - 75 + 74 ] }, "v_player_map_losses_aggregate_fields": { "avg": [ - 4160 + 4159 ], "count": [ 38, { "columns": [ - 4165, + 4164, "[v_player_map_losses_select_column!]" ], "distinct": [ @@ -98908,34 +99805,34 @@ export default { } ], "max": [ - 4162 + 4161 ], "min": [ - 4163 + 4162 ], "stddev": [ - 4166 + 4165 ], "stddev_pop": [ - 4167 + 4166 ], "stddev_samp": [ - 4168 + 4167 ], "sum": [ - 4171 + 4170 ], "var_pop": [ - 4172 + 4171 ], "var_samp": [ - 4173 + 4172 ], "variance": [ - 4174 + 4173 ], "__typename": [ - 75 + 74 ] }, "v_player_map_losses_avg_fields": { @@ -98943,96 +99840,96 @@ export default { 29 ], "__typename": [ - 75 + 74 ] }, "v_player_map_losses_bool_exp": { "_and": [ - 4161 + 4160 ], "_not": [ - 4161 + 4160 ], "_or": [ - 4161 + 4160 ], "map": [ - 1358 + 1357 ], "map_id": [ - 3866 + 3865 ], "match": [ - 1840 + 1839 ], "match_id": [ - 3866 + 3865 ], "started_at": [ - 3468 + 3467 ], "steam_id": [ - 176 + 175 ], "__typename": [ - 75 + 74 ] }, "v_player_map_losses_max_fields": { "map_id": [ - 3864 + 3863 ], "match_id": [ - 3864 + 3863 ], "started_at": [ - 3467 + 3466 ], "steam_id": [ - 174 + 173 ], "__typename": [ - 75 + 74 ] }, "v_player_map_losses_min_fields": { "map_id": [ - 3864 + 3863 ], "match_id": [ - 3864 + 3863 ], "started_at": [ - 3467 + 3466 ], "steam_id": [ - 174 + 173 ], "__typename": [ - 75 + 74 ] }, "v_player_map_losses_order_by": { "map": [ - 1368 + 1367 ], "map_id": [ - 2016 + 2015 ], "match": [ - 1851 + 1850 ], "match_id": [ - 2016 + 2015 ], "started_at": [ - 2016 + 2015 ], "steam_id": [ - 2016 + 2015 ], "__typename": [ - 75 + 74 ] }, "v_player_map_losses_select_column": {}, @@ -99041,7 +99938,7 @@ export default { 29 ], "__typename": [ - 75 + 74 ] }, "v_player_map_losses_stddev_pop_fields": { @@ -99049,7 +99946,7 @@ export default { 29 ], "__typename": [ - 75 + 74 ] }, "v_player_map_losses_stddev_samp_fields": { @@ -99057,43 +99954,43 @@ export default { 29 ], "__typename": [ - 75 + 74 ] }, "v_player_map_losses_stream_cursor_input": { "initial_value": [ - 4170 + 4169 ], "ordering": [ - 229 + 228 ], "__typename": [ - 75 + 74 ] }, "v_player_map_losses_stream_cursor_value_input": { "map_id": [ - 3864 + 3863 ], "match_id": [ - 3864 + 3863 ], "started_at": [ - 3467 + 3466 ], "steam_id": [ - 174 + 173 ], "__typename": [ - 75 + 74 ] }, "v_player_map_losses_sum_fields": { "steam_id": [ - 174 + 173 ], "__typename": [ - 75 + 74 ] }, "v_player_map_losses_var_pop_fields": { @@ -99101,7 +99998,7 @@ export default { 29 ], "__typename": [ - 75 + 74 ] }, "v_player_map_losses_var_samp_fields": { @@ -99109,7 +100006,7 @@ export default { 29 ], "__typename": [ - 75 + 74 ] }, "v_player_map_losses_variance_fields": { @@ -99117,52 +100014,52 @@ export default { 29 ], "__typename": [ - 75 + 74 ] }, "v_player_map_wins": { "map": [ - 1349 + 1348 ], "map_id": [ - 3864 + 3863 ], "match": [ - 1831 + 1830 ], "match_id": [ - 3864 + 3863 ], "started_at": [ - 3467 + 3466 ], "steam_id": [ - 174 + 173 ], "__typename": [ - 75 + 74 ] }, "v_player_map_wins_aggregate": { "aggregate": [ - 4177 + 4176 ], "nodes": [ - 4175 + 4174 ], "__typename": [ - 75 + 74 ] }, "v_player_map_wins_aggregate_fields": { "avg": [ - 4178 + 4177 ], "count": [ 38, { "columns": [ - 4183, + 4182, "[v_player_map_wins_select_column!]" ], "distinct": [ @@ -99171,34 +100068,34 @@ export default { } ], "max": [ - 4180 + 4179 ], "min": [ - 4181 + 4180 ], "stddev": [ - 4184 + 4183 ], "stddev_pop": [ - 4185 + 4184 ], "stddev_samp": [ - 4186 + 4185 ], "sum": [ - 4189 + 4188 ], "var_pop": [ - 4190 + 4189 ], "var_samp": [ - 4191 + 4190 ], "variance": [ - 4192 + 4191 ], "__typename": [ - 75 + 74 ] }, "v_player_map_wins_avg_fields": { @@ -99206,96 +100103,96 @@ export default { 29 ], "__typename": [ - 75 + 74 ] }, "v_player_map_wins_bool_exp": { "_and": [ - 4179 + 4178 ], "_not": [ - 4179 + 4178 ], "_or": [ - 4179 + 4178 ], "map": [ - 1358 + 1357 ], "map_id": [ - 3866 + 3865 ], "match": [ - 1840 + 1839 ], "match_id": [ - 3866 + 3865 ], "started_at": [ - 3468 + 3467 ], "steam_id": [ - 176 + 175 ], "__typename": [ - 75 + 74 ] }, "v_player_map_wins_max_fields": { "map_id": [ - 3864 + 3863 ], "match_id": [ - 3864 + 3863 ], "started_at": [ - 3467 + 3466 ], "steam_id": [ - 174 + 173 ], "__typename": [ - 75 + 74 ] }, "v_player_map_wins_min_fields": { "map_id": [ - 3864 + 3863 ], "match_id": [ - 3864 + 3863 ], "started_at": [ - 3467 + 3466 ], "steam_id": [ - 174 + 173 ], "__typename": [ - 75 + 74 ] }, "v_player_map_wins_order_by": { "map": [ - 1368 + 1367 ], "map_id": [ - 2016 + 2015 ], "match": [ - 1851 + 1850 ], "match_id": [ - 2016 + 2015 ], "started_at": [ - 2016 + 2015 ], "steam_id": [ - 2016 + 2015 ], "__typename": [ - 75 + 74 ] }, "v_player_map_wins_select_column": {}, @@ -99304,7 +100201,7 @@ export default { 29 ], "__typename": [ - 75 + 74 ] }, "v_player_map_wins_stddev_pop_fields": { @@ -99312,7 +100209,7 @@ export default { 29 ], "__typename": [ - 75 + 74 ] }, "v_player_map_wins_stddev_samp_fields": { @@ -99320,43 +100217,43 @@ export default { 29 ], "__typename": [ - 75 + 74 ] }, "v_player_map_wins_stream_cursor_input": { "initial_value": [ - 4188 + 4187 ], "ordering": [ - 229 + 228 ], "__typename": [ - 75 + 74 ] }, "v_player_map_wins_stream_cursor_value_input": { "map_id": [ - 3864 + 3863 ], "match_id": [ - 3864 + 3863 ], "started_at": [ - 3467 + 3466 ], "steam_id": [ - 174 + 173 ], "__typename": [ - 75 + 74 ] }, "v_player_map_wins_sum_fields": { "steam_id": [ - 174 + 173 ], "__typename": [ - 75 + 74 ] }, "v_player_map_wins_var_pop_fields": { @@ -99364,7 +100261,7 @@ export default { 29 ], "__typename": [ - 75 + 74 ] }, "v_player_map_wins_var_samp_fields": { @@ -99372,7 +100269,7 @@ export default { 29 ], "__typename": [ - 75 + 74 ] }, "v_player_map_wins_variance_fields": { @@ -99380,67 +100277,67 @@ export default { 29 ], "__typename": [ - 75 + 74 ] }, "v_player_match_head_to_head": { "attacked": [ - 2915 + 2914 ], "attacked_steam_id": [ - 174 + 173 ], "attacker": [ - 2915 + 2914 ], "attacker_steam_id": [ - 174 + 173 ], "damage_dealt": [ 38 ], "flash_count": [ - 174 + 173 ], "headshot_kills": [ - 174 + 173 ], "hits": [ - 174 + 173 ], "kills": [ - 174 + 173 ], "match": [ - 1831 + 1830 ], "match_id": [ - 3864 + 3863 ], "__typename": [ - 75 + 74 ] }, "v_player_match_head_to_head_aggregate": { "aggregate": [ - 4195 + 4194 ], "nodes": [ - 4193 + 4192 ], "__typename": [ - 75 + 74 ] }, "v_player_match_head_to_head_aggregate_fields": { "avg": [ - 4196 + 4195 ], "count": [ 38, { "columns": [ - 4201, + 4200, "[v_player_match_head_to_head_select_column!]" ], "distinct": [ @@ -99449,34 +100346,34 @@ export default { } ], "max": [ - 4198 + 4197 ], "min": [ - 4199 + 4198 ], "stddev": [ - 4202 + 4201 ], "stddev_pop": [ - 4203 + 4202 ], "stddev_samp": [ - 4204 + 4203 ], "sum": [ - 4207 + 4206 ], "var_pop": [ - 4208 + 4207 ], "var_samp": [ - 4209 + 4208 ], "variance": [ - 4210 + 4209 ], "__typename": [ - 75 + 74 ] }, "v_player_match_head_to_head_avg_fields": { @@ -99502,150 +100399,150 @@ export default { 29 ], "__typename": [ - 75 + 74 ] }, "v_player_match_head_to_head_bool_exp": { "_and": [ - 4197 + 4196 ], "_not": [ - 4197 + 4196 ], "_or": [ - 4197 + 4196 ], "attacked": [ - 2919 + 2918 ], "attacked_steam_id": [ - 176 + 175 ], "attacker": [ - 2919 + 2918 ], "attacker_steam_id": [ - 176 + 175 ], "damage_dealt": [ 39 ], "flash_count": [ - 176 + 175 ], "headshot_kills": [ - 176 + 175 ], "hits": [ - 176 + 175 ], "kills": [ - 176 + 175 ], "match": [ - 1840 + 1839 ], "match_id": [ - 3866 + 3865 ], "__typename": [ - 75 + 74 ] }, "v_player_match_head_to_head_max_fields": { "attacked_steam_id": [ - 174 + 173 ], "attacker_steam_id": [ - 174 + 173 ], "damage_dealt": [ 38 ], "flash_count": [ - 174 + 173 ], "headshot_kills": [ - 174 + 173 ], "hits": [ - 174 + 173 ], "kills": [ - 174 + 173 ], "match_id": [ - 3864 + 3863 ], "__typename": [ - 75 + 74 ] }, "v_player_match_head_to_head_min_fields": { "attacked_steam_id": [ - 174 + 173 ], "attacker_steam_id": [ - 174 + 173 ], "damage_dealt": [ 38 ], "flash_count": [ - 174 + 173 ], "headshot_kills": [ - 174 + 173 ], "hits": [ - 174 + 173 ], "kills": [ - 174 + 173 ], "match_id": [ - 3864 + 3863 ], "__typename": [ - 75 + 74 ] }, "v_player_match_head_to_head_order_by": { "attacked": [ - 2928 + 2927 ], "attacked_steam_id": [ - 2016 + 2015 ], "attacker": [ - 2928 + 2927 ], "attacker_steam_id": [ - 2016 + 2015 ], "damage_dealt": [ - 2016 + 2015 ], "flash_count": [ - 2016 + 2015 ], "headshot_kills": [ - 2016 + 2015 ], "hits": [ - 2016 + 2015 ], "kills": [ - 2016 + 2015 ], "match": [ - 1851 + 1850 ], "match_id": [ - 2016 + 2015 ], "__typename": [ - 75 + 74 ] }, "v_player_match_head_to_head_select_column": {}, @@ -99672,7 +100569,7 @@ export default { 29 ], "__typename": [ - 75 + 74 ] }, "v_player_match_head_to_head_stddev_pop_fields": { @@ -99698,7 +100595,7 @@ export default { 29 ], "__typename": [ - 75 + 74 ] }, "v_player_match_head_to_head_stddev_samp_fields": { @@ -99724,73 +100621,73 @@ export default { 29 ], "__typename": [ - 75 + 74 ] }, "v_player_match_head_to_head_stream_cursor_input": { "initial_value": [ - 4206 + 4205 ], "ordering": [ - 229 + 228 ], "__typename": [ - 75 + 74 ] }, "v_player_match_head_to_head_stream_cursor_value_input": { "attacked_steam_id": [ - 174 + 173 ], "attacker_steam_id": [ - 174 + 173 ], "damage_dealt": [ 38 ], "flash_count": [ - 174 + 173 ], "headshot_kills": [ - 174 + 173 ], "hits": [ - 174 + 173 ], "kills": [ - 174 + 173 ], "match_id": [ - 3864 + 3863 ], "__typename": [ - 75 + 74 ] }, "v_player_match_head_to_head_sum_fields": { "attacked_steam_id": [ - 174 + 173 ], "attacker_steam_id": [ - 174 + 173 ], "damage_dealt": [ 38 ], "flash_count": [ - 174 + 173 ], "headshot_kills": [ - 174 + 173 ], "hits": [ - 174 + 173 ], "kills": [ - 174 + 173 ], "__typename": [ - 75 + 74 ] }, "v_player_match_head_to_head_var_pop_fields": { @@ -99816,7 +100713,7 @@ export default { 29 ], "__typename": [ - 75 + 74 ] }, "v_player_match_head_to_head_var_samp_fields": { @@ -99842,7 +100739,7 @@ export default { 29 ], "__typename": [ - 75 + 74 ] }, "v_player_match_head_to_head_variance_fields": { @@ -99868,98 +100765,98 @@ export default { 29 ], "__typename": [ - 75 + 74 ] }, "v_player_match_map_hltv": { "adr": [ - 2014 + 2013 ], "apr": [ - 2014 + 2013 ], "dpr": [ - 2014 + 2013 ], "hltv_rating": [ - 2014 + 2013 ], "kast_pct": [ - 2014 + 2013 ], "kpr": [ - 2014 + 2013 ], "match": [ - 1831 + 1830 ], "match_id": [ - 3864 + 3863 ], "match_map": [ - 1669 + 1668 ], "match_map_id": [ - 3864 + 3863 ], "player": [ - 2915 + 2914 ], "rounds_played": [ 38 ], "steam_id": [ - 174 + 173 ], "__typename": [ - 75 + 74 ] }, "v_player_match_map_hltv_aggregate": { "aggregate": [ - 4215 + 4214 ], "nodes": [ - 4211 + 4210 ], "__typename": [ - 75 + 74 ] }, "v_player_match_map_hltv_aggregate_bool_exp": { "count": [ - 4214 + 4213 ], "__typename": [ - 75 + 74 ] }, "v_player_match_map_hltv_aggregate_bool_exp_count": { "arguments": [ - 4229 + 4228 ], "distinct": [ 3 ], "filter": [ - 4220 + 4219 ], "predicate": [ 39 ], "__typename": [ - 75 + 74 ] }, "v_player_match_map_hltv_aggregate_fields": { "avg": [ - 4218 + 4217 ], "count": [ 38, { "columns": [ - 4229, + 4228, "[v_player_match_map_hltv_select_column!]" ], "distinct": [ @@ -99968,80 +100865,80 @@ export default { } ], "max": [ - 4223 + 4222 ], "min": [ - 4225 + 4224 ], "stddev": [ - 4231 + 4230 ], "stddev_pop": [ - 4233 + 4232 ], "stddev_samp": [ - 4235 + 4234 ], "sum": [ - 4239 + 4238 ], "var_pop": [ - 4242 + 4241 ], "var_samp": [ - 4244 + 4243 ], "variance": [ - 4246 + 4245 ], "__typename": [ - 75 + 74 ] }, "v_player_match_map_hltv_aggregate_order_by": { "avg": [ - 4219 + 4218 ], "count": [ - 2016 + 2015 ], "max": [ - 4224 + 4223 ], "min": [ - 4226 + 4225 ], "stddev": [ - 4232 + 4231 ], "stddev_pop": [ - 4234 + 4233 ], "stddev_samp": [ - 4236 + 4235 ], "sum": [ - 4240 + 4239 ], "var_pop": [ - 4243 + 4242 ], "var_samp": [ - 4245 + 4244 ], "variance": [ - 4247 + 4246 ], "__typename": [ - 75 + 74 ] }, "v_player_match_map_hltv_arr_rel_insert_input": { "data": [ - 4222 + 4221 ], "__typename": [ - 75 + 74 ] }, "v_player_match_map_hltv_avg_fields": { @@ -100070,302 +100967,302 @@ export default { 29 ], "__typename": [ - 75 + 74 ] }, "v_player_match_map_hltv_avg_order_by": { "adr": [ - 2016 + 2015 ], "apr": [ - 2016 + 2015 ], "dpr": [ - 2016 + 2015 ], "hltv_rating": [ - 2016 + 2015 ], "kast_pct": [ - 2016 + 2015 ], "kpr": [ - 2016 + 2015 ], "rounds_played": [ - 2016 + 2015 ], "steam_id": [ - 2016 + 2015 ], "__typename": [ - 75 + 74 ] }, "v_player_match_map_hltv_bool_exp": { "_and": [ - 4220 + 4219 ], "_not": [ - 4220 + 4219 ], "_or": [ - 4220 + 4219 ], "adr": [ - 2015 + 2014 ], "apr": [ - 2015 + 2014 ], "dpr": [ - 2015 + 2014 ], "hltv_rating": [ - 2015 + 2014 ], "kast_pct": [ - 2015 + 2014 ], "kpr": [ - 2015 + 2014 ], "match": [ - 1840 + 1839 ], "match_id": [ - 3866 + 3865 ], "match_map": [ - 1678 + 1677 ], "match_map_id": [ - 3866 + 3865 ], "player": [ - 2919 + 2918 ], "rounds_played": [ 39 ], "steam_id": [ - 176 + 175 ], "__typename": [ - 75 + 74 ] }, "v_player_match_map_hltv_inc_input": { "adr": [ - 2014 + 2013 ], "apr": [ - 2014 + 2013 ], "dpr": [ - 2014 + 2013 ], "hltv_rating": [ - 2014 + 2013 ], "kast_pct": [ - 2014 + 2013 ], "kpr": [ - 2014 + 2013 ], "rounds_played": [ 38 ], "steam_id": [ - 174 + 173 ], "__typename": [ - 75 + 74 ] }, "v_player_match_map_hltv_insert_input": { "adr": [ - 2014 + 2013 ], "apr": [ - 2014 + 2013 ], "dpr": [ - 2014 + 2013 ], "hltv_rating": [ - 2014 + 2013 ], "kast_pct": [ - 2014 + 2013 ], "kpr": [ - 2014 + 2013 ], "match": [ - 1849 + 1848 ], "match_id": [ - 3864 + 3863 ], "match_map": [ - 1687 + 1686 ], "match_map_id": [ - 3864 + 3863 ], "player": [ - 2926 + 2925 ], "rounds_played": [ 38 ], "steam_id": [ - 174 + 173 ], "__typename": [ - 75 + 74 ] }, "v_player_match_map_hltv_max_fields": { "adr": [ - 2014 + 2013 ], "apr": [ - 2014 + 2013 ], "dpr": [ - 2014 + 2013 ], "hltv_rating": [ - 2014 + 2013 ], "kast_pct": [ - 2014 + 2013 ], "kpr": [ - 2014 + 2013 ], "match_id": [ - 3864 + 3863 ], "match_map_id": [ - 3864 + 3863 ], "rounds_played": [ 38 ], "steam_id": [ - 174 + 173 ], "__typename": [ - 75 + 74 ] }, "v_player_match_map_hltv_max_order_by": { "adr": [ - 2016 + 2015 ], "apr": [ - 2016 + 2015 ], "dpr": [ - 2016 + 2015 ], "hltv_rating": [ - 2016 + 2015 ], "kast_pct": [ - 2016 + 2015 ], "kpr": [ - 2016 + 2015 ], "match_id": [ - 2016 + 2015 ], "match_map_id": [ - 2016 + 2015 ], "rounds_played": [ - 2016 + 2015 ], "steam_id": [ - 2016 + 2015 ], "__typename": [ - 75 + 74 ] }, "v_player_match_map_hltv_min_fields": { "adr": [ - 2014 + 2013 ], "apr": [ - 2014 + 2013 ], "dpr": [ - 2014 + 2013 ], "hltv_rating": [ - 2014 + 2013 ], "kast_pct": [ - 2014 + 2013 ], "kpr": [ - 2014 + 2013 ], "match_id": [ - 3864 + 3863 ], "match_map_id": [ - 3864 + 3863 ], "rounds_played": [ 38 ], "steam_id": [ - 174 + 173 ], "__typename": [ - 75 + 74 ] }, "v_player_match_map_hltv_min_order_by": { "adr": [ - 2016 + 2015 ], "apr": [ - 2016 + 2015 ], "dpr": [ - 2016 + 2015 ], "hltv_rating": [ - 2016 + 2015 ], "kast_pct": [ - 2016 + 2015 ], "kpr": [ - 2016 + 2015 ], "match_id": [ - 2016 + 2015 ], "match_map_id": [ - 2016 + 2015 ], "rounds_played": [ - 2016 + 2015 ], "steam_id": [ - 2016 + 2015 ], "__typename": [ - 75 + 74 ] }, "v_player_match_map_hltv_mutation_response": { @@ -100373,90 +101270,90 @@ export default { 38 ], "returning": [ - 4211 + 4210 ], "__typename": [ - 75 + 74 ] }, "v_player_match_map_hltv_order_by": { "adr": [ - 2016 + 2015 ], "apr": [ - 2016 + 2015 ], "dpr": [ - 2016 + 2015 ], "hltv_rating": [ - 2016 + 2015 ], "kast_pct": [ - 2016 + 2015 ], "kpr": [ - 2016 + 2015 ], "match": [ - 1851 + 1850 ], "match_id": [ - 2016 + 2015 ], "match_map": [ - 1689 + 1688 ], "match_map_id": [ - 2016 + 2015 ], "player": [ - 2928 + 2927 ], "rounds_played": [ - 2016 + 2015 ], "steam_id": [ - 2016 + 2015 ], "__typename": [ - 75 + 74 ] }, "v_player_match_map_hltv_select_column": {}, "v_player_match_map_hltv_set_input": { "adr": [ - 2014 + 2013 ], "apr": [ - 2014 + 2013 ], "dpr": [ - 2014 + 2013 ], "hltv_rating": [ - 2014 + 2013 ], "kast_pct": [ - 2014 + 2013 ], "kpr": [ - 2014 + 2013 ], "match_id": [ - 3864 + 3863 ], "match_map_id": [ - 3864 + 3863 ], "rounds_played": [ 38 ], "steam_id": [ - 174 + 173 ], "__typename": [ - 75 + 74 ] }, "v_player_match_map_hltv_stddev_fields": { @@ -100485,36 +101382,36 @@ export default { 29 ], "__typename": [ - 75 + 74 ] }, "v_player_match_map_hltv_stddev_order_by": { "adr": [ - 2016 + 2015 ], "apr": [ - 2016 + 2015 ], "dpr": [ - 2016 + 2015 ], "hltv_rating": [ - 2016 + 2015 ], "kast_pct": [ - 2016 + 2015 ], "kpr": [ - 2016 + 2015 ], "rounds_played": [ - 2016 + 2015 ], "steam_id": [ - 2016 + 2015 ], "__typename": [ - 75 + 74 ] }, "v_player_match_map_hltv_stddev_pop_fields": { @@ -100543,36 +101440,36 @@ export default { 29 ], "__typename": [ - 75 + 74 ] }, "v_player_match_map_hltv_stddev_pop_order_by": { "adr": [ - 2016 + 2015 ], "apr": [ - 2016 + 2015 ], "dpr": [ - 2016 + 2015 ], "hltv_rating": [ - 2016 + 2015 ], "kast_pct": [ - 2016 + 2015 ], "kpr": [ - 2016 + 2015 ], "rounds_played": [ - 2016 + 2015 ], "steam_id": [ - 2016 + 2015 ], "__typename": [ - 75 + 74 ] }, "v_player_match_map_hltv_stddev_samp_fields": { @@ -100601,154 +101498,154 @@ export default { 29 ], "__typename": [ - 75 + 74 ] }, "v_player_match_map_hltv_stddev_samp_order_by": { "adr": [ - 2016 + 2015 ], "apr": [ - 2016 + 2015 ], "dpr": [ - 2016 + 2015 ], "hltv_rating": [ - 2016 + 2015 ], "kast_pct": [ - 2016 + 2015 ], "kpr": [ - 2016 + 2015 ], "rounds_played": [ - 2016 + 2015 ], "steam_id": [ - 2016 + 2015 ], "__typename": [ - 75 + 74 ] }, "v_player_match_map_hltv_stream_cursor_input": { "initial_value": [ - 4238 + 4237 ], "ordering": [ - 229 + 228 ], "__typename": [ - 75 + 74 ] }, "v_player_match_map_hltv_stream_cursor_value_input": { "adr": [ - 2014 + 2013 ], "apr": [ - 2014 + 2013 ], "dpr": [ - 2014 + 2013 ], "hltv_rating": [ - 2014 + 2013 ], "kast_pct": [ - 2014 + 2013 ], "kpr": [ - 2014 + 2013 ], "match_id": [ - 3864 + 3863 ], "match_map_id": [ - 3864 + 3863 ], "rounds_played": [ 38 ], "steam_id": [ - 174 + 173 ], "__typename": [ - 75 + 74 ] }, "v_player_match_map_hltv_sum_fields": { "adr": [ - 2014 + 2013 ], "apr": [ - 2014 + 2013 ], "dpr": [ - 2014 + 2013 ], "hltv_rating": [ - 2014 + 2013 ], "kast_pct": [ - 2014 + 2013 ], "kpr": [ - 2014 + 2013 ], "rounds_played": [ 38 ], "steam_id": [ - 174 + 173 ], "__typename": [ - 75 + 74 ] }, "v_player_match_map_hltv_sum_order_by": { "adr": [ - 2016 + 2015 ], "apr": [ - 2016 + 2015 ], "dpr": [ - 2016 + 2015 ], "hltv_rating": [ - 2016 + 2015 ], "kast_pct": [ - 2016 + 2015 ], "kpr": [ - 2016 + 2015 ], "rounds_played": [ - 2016 + 2015 ], "steam_id": [ - 2016 + 2015 ], "__typename": [ - 75 + 74 ] }, "v_player_match_map_hltv_updates": { "_inc": [ - 4221 + 4220 ], "_set": [ - 4230 + 4229 ], "where": [ - 4220 + 4219 ], "__typename": [ - 75 + 74 ] }, "v_player_match_map_hltv_var_pop_fields": { @@ -100777,36 +101674,36 @@ export default { 29 ], "__typename": [ - 75 + 74 ] }, "v_player_match_map_hltv_var_pop_order_by": { "adr": [ - 2016 + 2015 ], "apr": [ - 2016 + 2015 ], "dpr": [ - 2016 + 2015 ], "hltv_rating": [ - 2016 + 2015 ], "kast_pct": [ - 2016 + 2015 ], "kpr": [ - 2016 + 2015 ], "rounds_played": [ - 2016 + 2015 ], "steam_id": [ - 2016 + 2015 ], "__typename": [ - 75 + 74 ] }, "v_player_match_map_hltv_var_samp_fields": { @@ -100835,36 +101732,36 @@ export default { 29 ], "__typename": [ - 75 + 74 ] }, "v_player_match_map_hltv_var_samp_order_by": { "adr": [ - 2016 + 2015 ], "apr": [ - 2016 + 2015 ], "dpr": [ - 2016 + 2015 ], "hltv_rating": [ - 2016 + 2015 ], "kast_pct": [ - 2016 + 2015 ], "kpr": [ - 2016 + 2015 ], "rounds_played": [ - 2016 + 2015 ], "steam_id": [ - 2016 + 2015 ], "__typename": [ - 75 + 74 ] }, "v_player_match_map_hltv_variance_fields": { @@ -100893,86 +101790,86 @@ export default { 29 ], "__typename": [ - 75 + 74 ] }, "v_player_match_map_hltv_variance_order_by": { "adr": [ - 2016 + 2015 ], "apr": [ - 2016 + 2015 ], "dpr": [ - 2016 + 2015 ], "hltv_rating": [ - 2016 + 2015 ], "kast_pct": [ - 2016 + 2015 ], "kpr": [ - 2016 + 2015 ], "rounds_played": [ - 2016 + 2015 ], "steam_id": [ - 2016 + 2015 ], "__typename": [ - 75 + 74 ] }, "v_player_match_map_roles": { "adr": [ - 2014 + 2013 ], "awp_kills": [ 38 ], "awp_share": [ - 2014 + 2013 ], "deaths": [ 38 ], "dpr": [ - 2014 + 2013 ], "entry_rate": [ - 2014 + 2013 ], "flash_assists": [ 38 ], "hltv_rating": [ - 2014 + 2013 ], "kast_pct": [ - 2014 + 2013 ], "kills": [ 38 ], "kpr": [ - 2014 + 2013 ], "lineup_id": [ - 3864 + 3863 ], "match": [ - 1831 + 1830 ], "match_id": [ - 3864 + 3863 ], "match_map": [ - 1669 + 1668 ], "match_map_id": [ - 3864 + 3863 ], "open_deaths": [ 38 @@ -100984,19 +101881,19 @@ export default { 38 ], "player": [ - 2915 + 2914 ], "role": [ - 75 + 74 ], "rounds": [ 38 ], "steam_id": [ - 174 + 173 ], "support_idx": [ - 2014 + 2013 ], "total_kills": [ 38 @@ -101011,29 +101908,29 @@ export default { 38 ], "__typename": [ - 75 + 74 ] }, "v_player_match_map_roles_aggregate": { "aggregate": [ - 4250 + 4249 ], "nodes": [ - 4248 + 4247 ], "__typename": [ - 75 + 74 ] }, "v_player_match_map_roles_aggregate_fields": { "avg": [ - 4251 + 4250 ], "count": [ 38, { "columns": [ - 4256, + 4255, "[v_player_match_map_roles_select_column!]" ], "distinct": [ @@ -101042,34 +101939,34 @@ export default { } ], "max": [ - 4253 + 4252 ], "min": [ - 4254 + 4253 ], "stddev": [ - 4257 + 4256 ], "stddev_pop": [ - 4258 + 4257 ], "stddev_samp": [ - 4259 + 4258 ], "sum": [ - 4262 + 4261 ], "var_pop": [ - 4263 + 4262 ], "var_samp": [ - 4264 + 4263 ], "variance": [ - 4265 + 4264 ], "__typename": [ - 75 + 74 ] }, "v_player_match_map_roles_avg_fields": { @@ -101137,66 +102034,66 @@ export default { 29 ], "__typename": [ - 75 + 74 ] }, "v_player_match_map_roles_bool_exp": { "_and": [ - 4252 + 4251 ], "_not": [ - 4252 + 4251 ], "_or": [ - 4252 + 4251 ], "adr": [ - 2015 + 2014 ], "awp_kills": [ 39 ], "awp_share": [ - 2015 + 2014 ], "deaths": [ 39 ], "dpr": [ - 2015 + 2014 ], "entry_rate": [ - 2015 + 2014 ], "flash_assists": [ 39 ], "hltv_rating": [ - 2015 + 2014 ], "kast_pct": [ - 2015 + 2014 ], "kills": [ 39 ], "kpr": [ - 2015 + 2014 ], "lineup_id": [ - 3866 + 3865 ], "match": [ - 1840 + 1839 ], "match_id": [ - 3866 + 3865 ], "match_map": [ - 1678 + 1677 ], "match_map_id": [ - 3866 + 3865 ], "open_deaths": [ 39 @@ -101208,19 +102105,19 @@ export default { 39 ], "player": [ - 2919 + 2918 ], "role": [ - 77 + 76 ], "rounds": [ 39 ], "steam_id": [ - 176 + 175 ], "support_idx": [ - 2015 + 2014 ], "total_kills": [ 39 @@ -101235,51 +102132,51 @@ export default { 39 ], "__typename": [ - 75 + 74 ] }, "v_player_match_map_roles_max_fields": { "adr": [ - 2014 + 2013 ], "awp_kills": [ 38 ], "awp_share": [ - 2014 + 2013 ], "deaths": [ 38 ], "dpr": [ - 2014 + 2013 ], "entry_rate": [ - 2014 + 2013 ], "flash_assists": [ 38 ], "hltv_rating": [ - 2014 + 2013 ], "kast_pct": [ - 2014 + 2013 ], "kills": [ 38 ], "kpr": [ - 2014 + 2013 ], "lineup_id": [ - 3864 + 3863 ], "match_id": [ - 3864 + 3863 ], "match_map_id": [ - 3864 + 3863 ], "open_deaths": [ 38 @@ -101291,16 +102188,16 @@ export default { 38 ], "role": [ - 75 + 74 ], "rounds": [ 38 ], "steam_id": [ - 174 + 173 ], "support_idx": [ - 2014 + 2013 ], "total_kills": [ 38 @@ -101315,51 +102212,51 @@ export default { 38 ], "__typename": [ - 75 + 74 ] }, "v_player_match_map_roles_min_fields": { "adr": [ - 2014 + 2013 ], "awp_kills": [ 38 ], "awp_share": [ - 2014 + 2013 ], "deaths": [ 38 ], "dpr": [ - 2014 + 2013 ], "entry_rate": [ - 2014 + 2013 ], "flash_assists": [ 38 ], "hltv_rating": [ - 2014 + 2013 ], "kast_pct": [ - 2014 + 2013 ], "kills": [ 38 ], "kpr": [ - 2014 + 2013 ], "lineup_id": [ - 3864 + 3863 ], "match_id": [ - 3864 + 3863 ], "match_map_id": [ - 3864 + 3863 ], "open_deaths": [ 38 @@ -101371,16 +102268,16 @@ export default { 38 ], "role": [ - 75 + 74 ], "rounds": [ 38 ], "steam_id": [ - 174 + 173 ], "support_idx": [ - 2014 + 2013 ], "total_kills": [ 38 @@ -101395,96 +102292,96 @@ export default { 38 ], "__typename": [ - 75 + 74 ] }, "v_player_match_map_roles_order_by": { "adr": [ - 2016 + 2015 ], "awp_kills": [ - 2016 + 2015 ], "awp_share": [ - 2016 + 2015 ], "deaths": [ - 2016 + 2015 ], "dpr": [ - 2016 + 2015 ], "entry_rate": [ - 2016 + 2015 ], "flash_assists": [ - 2016 + 2015 ], "hltv_rating": [ - 2016 + 2015 ], "kast_pct": [ - 2016 + 2015 ], "kills": [ - 2016 + 2015 ], "kpr": [ - 2016 + 2015 ], "lineup_id": [ - 2016 + 2015 ], "match": [ - 1851 + 1850 ], "match_id": [ - 2016 + 2015 ], "match_map": [ - 1689 + 1688 ], "match_map_id": [ - 2016 + 2015 ], "open_deaths": [ - 2016 + 2015 ], "open_kills": [ - 2016 + 2015 ], "opening_attempts": [ - 2016 + 2015 ], "player": [ - 2928 + 2927 ], "role": [ - 2016 + 2015 ], "rounds": [ - 2016 + 2015 ], "steam_id": [ - 2016 + 2015 ], "support_idx": [ - 2016 + 2015 ], "total_kills": [ - 2016 + 2015 ], "trade_kill_successes": [ - 2016 + 2015 ], "traded_death_successes": [ - 2016 + 2015 ], "util_damage": [ - 2016 + 2015 ], "__typename": [ - 75 + 74 ] }, "v_player_match_map_roles_select_column": {}, @@ -101553,7 +102450,7 @@ export default { 29 ], "__typename": [ - 75 + 74 ] }, "v_player_match_map_roles_stddev_pop_fields": { @@ -101621,7 +102518,7 @@ export default { 29 ], "__typename": [ - 75 + 74 ] }, "v_player_match_map_roles_stddev_samp_fields": { @@ -101689,62 +102586,62 @@ export default { 29 ], "__typename": [ - 75 + 74 ] }, "v_player_match_map_roles_stream_cursor_input": { "initial_value": [ - 4261 + 4260 ], "ordering": [ - 229 + 228 ], "__typename": [ - 75 + 74 ] }, "v_player_match_map_roles_stream_cursor_value_input": { "adr": [ - 2014 + 2013 ], "awp_kills": [ 38 ], "awp_share": [ - 2014 + 2013 ], "deaths": [ 38 ], "dpr": [ - 2014 + 2013 ], "entry_rate": [ - 2014 + 2013 ], "flash_assists": [ 38 ], "hltv_rating": [ - 2014 + 2013 ], "kast_pct": [ - 2014 + 2013 ], "kills": [ 38 ], "kpr": [ - 2014 + 2013 ], "lineup_id": [ - 3864 + 3863 ], "match_id": [ - 3864 + 3863 ], "match_map_id": [ - 3864 + 3863 ], "open_deaths": [ 38 @@ -101756,16 +102653,16 @@ export default { 38 ], "role": [ - 75 + 74 ], "rounds": [ 38 ], "steam_id": [ - 174 + 173 ], "support_idx": [ - 2014 + 2013 ], "total_kills": [ 38 @@ -101780,42 +102677,42 @@ export default { 38 ], "__typename": [ - 75 + 74 ] }, "v_player_match_map_roles_sum_fields": { "adr": [ - 2014 + 2013 ], "awp_kills": [ 38 ], "awp_share": [ - 2014 + 2013 ], "deaths": [ 38 ], "dpr": [ - 2014 + 2013 ], "entry_rate": [ - 2014 + 2013 ], "flash_assists": [ 38 ], "hltv_rating": [ - 2014 + 2013 ], "kast_pct": [ - 2014 + 2013 ], "kills": [ 38 ], "kpr": [ - 2014 + 2013 ], "open_deaths": [ 38 @@ -101830,10 +102727,10 @@ export default { 38 ], "steam_id": [ - 174 + 173 ], "support_idx": [ - 2014 + 2013 ], "total_kills": [ 38 @@ -101848,7 +102745,7 @@ export default { 38 ], "__typename": [ - 75 + 74 ] }, "v_player_match_map_roles_var_pop_fields": { @@ -101916,7 +102813,7 @@ export default { 29 ], "__typename": [ - 75 + 74 ] }, "v_player_match_map_roles_var_samp_fields": { @@ -101984,7 +102881,7 @@ export default { 29 ], "__typename": [ - 75 + 74 ] }, "v_player_match_map_roles_variance_fields": { @@ -102052,7 +102949,7 @@ export default { 29 ], "__typename": [ - 75 + 74 ] }, "v_player_match_performance": { @@ -102066,56 +102963,56 @@ export default { 38 ], "map": [ - 1349 + 1348 ], "map_id": [ - 3864 + 3863 ], "match": [ - 1831 + 1830 ], "match_created_at": [ - 3467 + 3466 ], "match_id": [ - 3864 + 3863 ], "match_result": [ - 75 + 74 ], "player_steam_id": [ - 174 + 173 ], "source": [ - 75 + 74 ], "type": [ - 75 + 74 ], "__typename": [ - 75 + 74 ] }, "v_player_match_performance_aggregate": { "aggregate": [ - 4268 + 4267 ], "nodes": [ - 4266 + 4265 ], "__typename": [ - 75 + 74 ] }, "v_player_match_performance_aggregate_fields": { "avg": [ - 4269 + 4268 ], "count": [ 38, { "columns": [ - 4274, + 4273, "[v_player_match_performance_select_column!]" ], "distinct": [ @@ -102124,34 +103021,34 @@ export default { } ], "max": [ - 4271 + 4270 ], "min": [ - 4272 + 4271 ], "stddev": [ - 4275 + 4274 ], "stddev_pop": [ - 4276 + 4275 ], "stddev_samp": [ - 4277 + 4276 ], "sum": [ - 4280 + 4279 ], "var_pop": [ - 4281 + 4280 ], "var_samp": [ - 4282 + 4281 ], "variance": [ - 4283 + 4282 ], "__typename": [ - 75 + 74 ] }, "v_player_match_performance_avg_fields": { @@ -102168,18 +103065,18 @@ export default { 29 ], "__typename": [ - 75 + 74 ] }, "v_player_match_performance_bool_exp": { "_and": [ - 4270 + 4269 ], "_not": [ - 4270 + 4269 ], "_or": [ - 4270 + 4269 ], "assists": [ 39 @@ -102191,34 +103088,34 @@ export default { 39 ], "map": [ - 1358 + 1357 ], "map_id": [ - 3866 + 3865 ], "match": [ - 1840 + 1839 ], "match_created_at": [ - 3468 + 3467 ], "match_id": [ - 3866 + 3865 ], "match_result": [ - 77 + 76 ], "player_steam_id": [ - 176 + 175 ], "source": [ - 77 + 76 ], "type": [ - 77 + 76 ], "__typename": [ - 75 + 74 ] }, "v_player_match_performance_max_fields": { @@ -102232,28 +103129,28 @@ export default { 38 ], "map_id": [ - 3864 + 3863 ], "match_created_at": [ - 3467 + 3466 ], "match_id": [ - 3864 + 3863 ], "match_result": [ - 75 + 74 ], "player_steam_id": [ - 174 + 173 ], "source": [ - 75 + 74 ], "type": [ - 75 + 74 ], "__typename": [ - 75 + 74 ] }, "v_player_match_performance_min_fields": { @@ -102267,69 +103164,69 @@ export default { 38 ], "map_id": [ - 3864 + 3863 ], "match_created_at": [ - 3467 + 3466 ], "match_id": [ - 3864 + 3863 ], "match_result": [ - 75 + 74 ], "player_steam_id": [ - 174 + 173 ], "source": [ - 75 + 74 ], "type": [ - 75 + 74 ], "__typename": [ - 75 + 74 ] }, "v_player_match_performance_order_by": { "assists": [ - 2016 + 2015 ], "deaths": [ - 2016 + 2015 ], "kills": [ - 2016 + 2015 ], "map": [ - 1368 + 1367 ], "map_id": [ - 2016 + 2015 ], "match": [ - 1851 + 1850 ], "match_created_at": [ - 2016 + 2015 ], "match_id": [ - 2016 + 2015 ], "match_result": [ - 2016 + 2015 ], "player_steam_id": [ - 2016 + 2015 ], "source": [ - 2016 + 2015 ], "type": [ - 2016 + 2015 ], "__typename": [ - 75 + 74 ] }, "v_player_match_performance_select_column": {}, @@ -102347,7 +103244,7 @@ export default { 29 ], "__typename": [ - 75 + 74 ] }, "v_player_match_performance_stddev_pop_fields": { @@ -102364,7 +103261,7 @@ export default { 29 ], "__typename": [ - 75 + 74 ] }, "v_player_match_performance_stddev_samp_fields": { @@ -102381,18 +103278,18 @@ export default { 29 ], "__typename": [ - 75 + 74 ] }, "v_player_match_performance_stream_cursor_input": { "initial_value": [ - 4279 + 4278 ], "ordering": [ - 229 + 228 ], "__typename": [ - 75 + 74 ] }, "v_player_match_performance_stream_cursor_value_input": { @@ -102406,28 +103303,28 @@ export default { 38 ], "map_id": [ - 3864 + 3863 ], "match_created_at": [ - 3467 + 3466 ], "match_id": [ - 3864 + 3863 ], "match_result": [ - 75 + 74 ], "player_steam_id": [ - 174 + 173 ], "source": [ - 75 + 74 ], "type": [ - 75 + 74 ], "__typename": [ - 75 + 74 ] }, "v_player_match_performance_sum_fields": { @@ -102441,10 +103338,10 @@ export default { 38 ], "player_steam_id": [ - 174 + 173 ], "__typename": [ - 75 + 74 ] }, "v_player_match_performance_var_pop_fields": { @@ -102461,7 +103358,7 @@ export default { 29 ], "__typename": [ - 75 + 74 ] }, "v_player_match_performance_var_samp_fields": { @@ -102478,7 +103375,7 @@ export default { 29 ], "__typename": [ - 75 + 74 ] }, "v_player_match_performance_variance_fields": { @@ -102495,64 +103392,64 @@ export default { 29 ], "__typename": [ - 75 + 74 ] }, "v_player_match_rating": { "adr": [ - 2014 + 2013 ], "dpr": [ - 2014 + 2013 ], "hltv_rating": [ - 2014 + 2013 ], "kast_pct": [ - 2014 + 2013 ], "kpr": [ - 2014 + 2013 ], "match": [ - 1831 + 1830 ], "match_id": [ - 3864 + 3863 ], "player": [ - 2915 + 2914 ], "rounds_played": [ 38 ], "steam_id": [ - 174 + 173 ], "__typename": [ - 75 + 74 ] }, "v_player_match_rating_aggregate": { "aggregate": [ - 4286 + 4285 ], "nodes": [ - 4284 + 4283 ], "__typename": [ - 75 + 74 ] }, "v_player_match_rating_aggregate_fields": { "avg": [ - 4287 + 4286 ], "count": [ 38, { "columns": [ - 4292, + 4291, "[v_player_match_rating_select_column!]" ], "distinct": [ @@ -102561,34 +103458,34 @@ export default { } ], "max": [ - 4289 + 4288 ], "min": [ - 4290 + 4289 ], "stddev": [ - 4293 + 4292 ], "stddev_pop": [ - 4294 + 4293 ], "stddev_samp": [ - 4295 + 4294 ], "sum": [ - 4298 + 4297 ], "var_pop": [ - 4299 + 4298 ], "var_samp": [ - 4300 + 4299 ], "variance": [ - 4301 + 4300 ], "__typename": [ - 75 + 74 ] }, "v_player_match_rating_avg_fields": { @@ -102614,144 +103511,144 @@ export default { 29 ], "__typename": [ - 75 + 74 ] }, "v_player_match_rating_bool_exp": { "_and": [ - 4288 + 4287 ], "_not": [ - 4288 + 4287 ], "_or": [ - 4288 + 4287 ], "adr": [ - 2015 + 2014 ], "dpr": [ - 2015 + 2014 ], "hltv_rating": [ - 2015 + 2014 ], "kast_pct": [ - 2015 + 2014 ], "kpr": [ - 2015 + 2014 ], "match": [ - 1840 + 1839 ], "match_id": [ - 3866 + 3865 ], "player": [ - 2919 + 2918 ], "rounds_played": [ 39 ], "steam_id": [ - 176 + 175 ], "__typename": [ - 75 + 74 ] }, "v_player_match_rating_max_fields": { "adr": [ - 2014 + 2013 ], "dpr": [ - 2014 + 2013 ], "hltv_rating": [ - 2014 + 2013 ], "kast_pct": [ - 2014 + 2013 ], "kpr": [ - 2014 + 2013 ], "match_id": [ - 3864 + 3863 ], "rounds_played": [ 38 ], "steam_id": [ - 174 + 173 ], "__typename": [ - 75 + 74 ] }, "v_player_match_rating_min_fields": { "adr": [ - 2014 + 2013 ], "dpr": [ - 2014 + 2013 ], "hltv_rating": [ - 2014 + 2013 ], "kast_pct": [ - 2014 + 2013 ], "kpr": [ - 2014 + 2013 ], "match_id": [ - 3864 + 3863 ], "rounds_played": [ 38 ], "steam_id": [ - 174 + 173 ], "__typename": [ - 75 + 74 ] }, "v_player_match_rating_order_by": { "adr": [ - 2016 + 2015 ], "dpr": [ - 2016 + 2015 ], "hltv_rating": [ - 2016 + 2015 ], "kast_pct": [ - 2016 + 2015 ], "kpr": [ - 2016 + 2015 ], "match": [ - 1851 + 1850 ], "match_id": [ - 2016 + 2015 ], "player": [ - 2928 + 2927 ], "rounds_played": [ - 2016 + 2015 ], "steam_id": [ - 2016 + 2015 ], "__typename": [ - 75 + 74 ] }, "v_player_match_rating_select_column": {}, @@ -102778,7 +103675,7 @@ export default { 29 ], "__typename": [ - 75 + 74 ] }, "v_player_match_rating_stddev_pop_fields": { @@ -102804,7 +103701,7 @@ export default { 29 ], "__typename": [ - 75 + 74 ] }, "v_player_match_rating_stddev_samp_fields": { @@ -102830,73 +103727,73 @@ export default { 29 ], "__typename": [ - 75 + 74 ] }, "v_player_match_rating_stream_cursor_input": { "initial_value": [ - 4297 + 4296 ], "ordering": [ - 229 + 228 ], "__typename": [ - 75 + 74 ] }, "v_player_match_rating_stream_cursor_value_input": { "adr": [ - 2014 + 2013 ], "dpr": [ - 2014 + 2013 ], "hltv_rating": [ - 2014 + 2013 ], "kast_pct": [ - 2014 + 2013 ], "kpr": [ - 2014 + 2013 ], "match_id": [ - 3864 + 3863 ], "rounds_played": [ 38 ], "steam_id": [ - 174 + 173 ], "__typename": [ - 75 + 74 ] }, "v_player_match_rating_sum_fields": { "adr": [ - 2014 + 2013 ], "dpr": [ - 2014 + 2013 ], "hltv_rating": [ - 2014 + 2013 ], "kast_pct": [ - 2014 + 2013 ], "kpr": [ - 2014 + 2013 ], "rounds_played": [ 38 ], "steam_id": [ - 174 + 173 ], "__typename": [ - 75 + 74 ] }, "v_player_match_rating_var_pop_fields": { @@ -102922,7 +103819,7 @@ export default { 29 ], "__typename": [ - 75 + 74 ] }, "v_player_match_rating_var_samp_fields": { @@ -102948,7 +103845,7 @@ export default { 29 ], "__typename": [ - 75 + 74 ] }, "v_player_match_rating_variance_fields": { @@ -102974,71 +103871,71 @@ export default { 29 ], "__typename": [ - 75 + 74 ] }, "v_player_multi_kills": { "attacker_steam_id": [ - 174 + 173 ], "kills": [ - 174 + 173 ], "match_id": [ - 3864 + 3863 ], "round": [ 38 ], "__typename": [ - 75 + 74 ] }, "v_player_multi_kills_aggregate": { "aggregate": [ - 4306 + 4305 ], "nodes": [ - 4302 + 4301 ], "__typename": [ - 75 + 74 ] }, "v_player_multi_kills_aggregate_bool_exp": { "count": [ - 4305 + 4304 ], "__typename": [ - 75 + 74 ] }, "v_player_multi_kills_aggregate_bool_exp_count": { "arguments": [ - 4318 + 4317 ], "distinct": [ 3 ], "filter": [ - 4311 + 4310 ], "predicate": [ 39 ], "__typename": [ - 75 + 74 ] }, "v_player_multi_kills_aggregate_fields": { "avg": [ - 4309 + 4308 ], "count": [ 38, { "columns": [ - 4318, + 4317, "[v_player_multi_kills_select_column!]" ], "distinct": [ @@ -103047,80 +103944,80 @@ export default { } ], "max": [ - 4313 + 4312 ], "min": [ - 4315 + 4314 ], "stddev": [ - 4319 + 4318 ], "stddev_pop": [ - 4321 + 4320 ], "stddev_samp": [ - 4323 + 4322 ], "sum": [ - 4327 + 4326 ], "var_pop": [ - 4329 + 4328 ], "var_samp": [ - 4331 + 4330 ], "variance": [ - 4333 + 4332 ], "__typename": [ - 75 + 74 ] }, "v_player_multi_kills_aggregate_order_by": { "avg": [ - 4310 + 4309 ], "count": [ - 2016 + 2015 ], "max": [ - 4314 + 4313 ], "min": [ - 4316 + 4315 ], "stddev": [ - 4320 + 4319 ], "stddev_pop": [ - 4322 + 4321 ], "stddev_samp": [ - 4324 + 4323 ], "sum": [ - 4328 + 4327 ], "var_pop": [ - 4330 + 4329 ], "var_samp": [ - 4332 + 4331 ], "variance": [ - 4334 + 4333 ], "__typename": [ - 75 + 74 ] }, "v_player_multi_kills_arr_rel_insert_input": { "data": [ - 4312 + 4311 ], "__typename": [ - 75 + 74 ] }, "v_player_multi_kills_avg_fields": { @@ -103134,149 +104031,149 @@ export default { 29 ], "__typename": [ - 75 + 74 ] }, "v_player_multi_kills_avg_order_by": { "attacker_steam_id": [ - 2016 + 2015 ], "kills": [ - 2016 + 2015 ], "round": [ - 2016 + 2015 ], "__typename": [ - 75 + 74 ] }, "v_player_multi_kills_bool_exp": { "_and": [ - 4311 + 4310 ], "_not": [ - 4311 + 4310 ], "_or": [ - 4311 + 4310 ], "attacker_steam_id": [ - 176 + 175 ], "kills": [ - 176 + 175 ], "match_id": [ - 3866 + 3865 ], "round": [ 39 ], "__typename": [ - 75 + 74 ] }, "v_player_multi_kills_insert_input": { "attacker_steam_id": [ - 174 + 173 ], "kills": [ - 174 + 173 ], "match_id": [ - 3864 + 3863 ], "round": [ 38 ], "__typename": [ - 75 + 74 ] }, "v_player_multi_kills_max_fields": { "attacker_steam_id": [ - 174 + 173 ], "kills": [ - 174 + 173 ], "match_id": [ - 3864 + 3863 ], "round": [ 38 ], "__typename": [ - 75 + 74 ] }, "v_player_multi_kills_max_order_by": { "attacker_steam_id": [ - 2016 + 2015 ], "kills": [ - 2016 + 2015 ], "match_id": [ - 2016 + 2015 ], "round": [ - 2016 + 2015 ], "__typename": [ - 75 + 74 ] }, "v_player_multi_kills_min_fields": { "attacker_steam_id": [ - 174 + 173 ], "kills": [ - 174 + 173 ], "match_id": [ - 3864 + 3863 ], "round": [ 38 ], "__typename": [ - 75 + 74 ] }, "v_player_multi_kills_min_order_by": { "attacker_steam_id": [ - 2016 + 2015 ], "kills": [ - 2016 + 2015 ], "match_id": [ - 2016 + 2015 ], "round": [ - 2016 + 2015 ], "__typename": [ - 75 + 74 ] }, "v_player_multi_kills_order_by": { "attacker_steam_id": [ - 2016 + 2015 ], "kills": [ - 2016 + 2015 ], "match_id": [ - 2016 + 2015 ], "round": [ - 2016 + 2015 ], "__typename": [ - 75 + 74 ] }, "v_player_multi_kills_select_column": {}, @@ -103291,21 +104188,21 @@ export default { 29 ], "__typename": [ - 75 + 74 ] }, "v_player_multi_kills_stddev_order_by": { "attacker_steam_id": [ - 2016 + 2015 ], "kills": [ - 2016 + 2015 ], "round": [ - 2016 + 2015 ], "__typename": [ - 75 + 74 ] }, "v_player_multi_kills_stddev_pop_fields": { @@ -103319,21 +104216,21 @@ export default { 29 ], "__typename": [ - 75 + 74 ] }, "v_player_multi_kills_stddev_pop_order_by": { "attacker_steam_id": [ - 2016 + 2015 ], "kills": [ - 2016 + 2015 ], "round": [ - 2016 + 2015 ], "__typename": [ - 75 + 74 ] }, "v_player_multi_kills_stddev_samp_fields": { @@ -103347,77 +104244,77 @@ export default { 29 ], "__typename": [ - 75 + 74 ] }, "v_player_multi_kills_stddev_samp_order_by": { "attacker_steam_id": [ - 2016 + 2015 ], "kills": [ - 2016 + 2015 ], "round": [ - 2016 + 2015 ], "__typename": [ - 75 + 74 ] }, "v_player_multi_kills_stream_cursor_input": { "initial_value": [ - 4326 + 4325 ], "ordering": [ - 229 + 228 ], "__typename": [ - 75 + 74 ] }, "v_player_multi_kills_stream_cursor_value_input": { "attacker_steam_id": [ - 174 + 173 ], "kills": [ - 174 + 173 ], "match_id": [ - 3864 + 3863 ], "round": [ 38 ], "__typename": [ - 75 + 74 ] }, "v_player_multi_kills_sum_fields": { "attacker_steam_id": [ - 174 + 173 ], "kills": [ - 174 + 173 ], "round": [ 38 ], "__typename": [ - 75 + 74 ] }, "v_player_multi_kills_sum_order_by": { "attacker_steam_id": [ - 2016 + 2015 ], "kills": [ - 2016 + 2015 ], "round": [ - 2016 + 2015 ], "__typename": [ - 75 + 74 ] }, "v_player_multi_kills_var_pop_fields": { @@ -103431,21 +104328,21 @@ export default { 29 ], "__typename": [ - 75 + 74 ] }, "v_player_multi_kills_var_pop_order_by": { "attacker_steam_id": [ - 2016 + 2015 ], "kills": [ - 2016 + 2015 ], "round": [ - 2016 + 2015 ], "__typename": [ - 75 + 74 ] }, "v_player_multi_kills_var_samp_fields": { @@ -103459,21 +104356,21 @@ export default { 29 ], "__typename": [ - 75 + 74 ] }, "v_player_multi_kills_var_samp_order_by": { "attacker_steam_id": [ - 2016 + 2015 ], "kills": [ - 2016 + 2015 ], "round": [ - 2016 + 2015 ], "__typename": [ - 75 + 74 ] }, "v_player_multi_kills_variance_fields": { @@ -103487,66 +104384,66 @@ export default { 29 ], "__typename": [ - 75 + 74 ] }, "v_player_multi_kills_variance_order_by": { "attacker_steam_id": [ - 2016 + 2015 ], "kills": [ - 2016 + 2015 ], "round": [ - 2016 + 2015 ], "__typename": [ - 75 + 74 ] }, "v_player_weapon_damage": { "damage": [ - 174 + 173 ], "hits": [ - 174 + 173 ], "player_steam_id": [ - 174 + 173 ], "source": [ - 75 + 74 ], "type": [ - 75 + 74 ], "with": [ - 75 + 74 ], "__typename": [ - 75 + 74 ] }, "v_player_weapon_damage_aggregate": { "aggregate": [ - 4337 + 4336 ], "nodes": [ - 4335 + 4334 ], "__typename": [ - 75 + 74 ] }, "v_player_weapon_damage_aggregate_fields": { "avg": [ - 4338 + 4337 ], "count": [ 38, { "columns": [ - 4343, + 4342, "[v_player_weapon_damage_select_column!]" ], "distinct": [ @@ -103555,34 +104452,34 @@ export default { } ], "max": [ - 4340 + 4339 ], "min": [ - 4341 + 4340 ], "stddev": [ - 4344 + 4343 ], "stddev_pop": [ - 4345 + 4344 ], "stddev_samp": [ - 4346 + 4345 ], "sum": [ - 4349 + 4348 ], "var_pop": [ - 4350 + 4349 ], "var_samp": [ - 4351 + 4350 ], "variance": [ - 4352 + 4351 ], "__typename": [ - 75 + 74 ] }, "v_player_weapon_damage_avg_fields": { @@ -103596,108 +104493,108 @@ export default { 29 ], "__typename": [ - 75 + 74 ] }, "v_player_weapon_damage_bool_exp": { "_and": [ - 4339 + 4338 ], "_not": [ - 4339 + 4338 ], "_or": [ - 4339 + 4338 ], "damage": [ - 176 + 175 ], "hits": [ - 176 + 175 ], "player_steam_id": [ - 176 + 175 ], "source": [ - 77 + 76 ], "type": [ - 77 + 76 ], "with": [ - 77 + 76 ], "__typename": [ - 75 + 74 ] }, "v_player_weapon_damage_max_fields": { "damage": [ - 174 + 173 ], "hits": [ - 174 + 173 ], "player_steam_id": [ - 174 + 173 ], "source": [ - 75 + 74 ], "type": [ - 75 + 74 ], "with": [ - 75 + 74 ], "__typename": [ - 75 + 74 ] }, "v_player_weapon_damage_min_fields": { "damage": [ - 174 + 173 ], "hits": [ - 174 + 173 ], "player_steam_id": [ - 174 + 173 ], "source": [ - 75 + 74 ], "type": [ - 75 + 74 ], "with": [ - 75 + 74 ], "__typename": [ - 75 + 74 ] }, "v_player_weapon_damage_order_by": { "damage": [ - 2016 + 2015 ], "hits": [ - 2016 + 2015 ], "player_steam_id": [ - 2016 + 2015 ], "source": [ - 2016 + 2015 ], "type": [ - 2016 + 2015 ], "with": [ - 2016 + 2015 ], "__typename": [ - 75 + 74 ] }, "v_player_weapon_damage_select_column": {}, @@ -103712,7 +104609,7 @@ export default { 29 ], "__typename": [ - 75 + 74 ] }, "v_player_weapon_damage_stddev_pop_fields": { @@ -103726,7 +104623,7 @@ export default { 29 ], "__typename": [ - 75 + 74 ] }, "v_player_weapon_damage_stddev_samp_fields": { @@ -103740,55 +104637,55 @@ export default { 29 ], "__typename": [ - 75 + 74 ] }, "v_player_weapon_damage_stream_cursor_input": { "initial_value": [ - 4348 + 4347 ], "ordering": [ - 229 + 228 ], "__typename": [ - 75 + 74 ] }, "v_player_weapon_damage_stream_cursor_value_input": { "damage": [ - 174 + 173 ], "hits": [ - 174 + 173 ], "player_steam_id": [ - 174 + 173 ], "source": [ - 75 + 74 ], "type": [ - 75 + 74 ], "with": [ - 75 + 74 ], "__typename": [ - 75 + 74 ] }, "v_player_weapon_damage_sum_fields": { "damage": [ - 174 + 173 ], "hits": [ - 174 + 173 ], "player_steam_id": [ - 174 + 173 ], "__typename": [ - 75 + 74 ] }, "v_player_weapon_damage_var_pop_fields": { @@ -103802,7 +104699,7 @@ export default { 29 ], "__typename": [ - 75 + 74 ] }, "v_player_weapon_damage_var_samp_fields": { @@ -103816,7 +104713,7 @@ export default { 29 ], "__typename": [ - 75 + 74 ] }, "v_player_weapon_damage_variance_fields": { @@ -103830,52 +104727,52 @@ export default { 29 ], "__typename": [ - 75 + 74 ] }, "v_player_weapon_kills": { "kill_count": [ - 174 + 173 ], "player_steam_id": [ - 174 + 173 ], "rounds": [ - 174 + 173 ], "source": [ - 75 + 74 ], "type": [ - 75 + 74 ], "with": [ - 75 + 74 ], "__typename": [ - 75 + 74 ] }, "v_player_weapon_kills_aggregate": { "aggregate": [ - 4355 + 4354 ], "nodes": [ - 4353 + 4352 ], "__typename": [ - 75 + 74 ] }, "v_player_weapon_kills_aggregate_fields": { "avg": [ - 4356 + 4355 ], "count": [ 38, { "columns": [ - 4361, + 4360, "[v_player_weapon_kills_select_column!]" ], "distinct": [ @@ -103884,34 +104781,34 @@ export default { } ], "max": [ - 4358 + 4357 ], "min": [ - 4359 + 4358 ], "stddev": [ - 4362 + 4361 ], "stddev_pop": [ - 4363 + 4362 ], "stddev_samp": [ - 4364 + 4363 ], "sum": [ - 4367 + 4366 ], "var_pop": [ - 4368 + 4367 ], "var_samp": [ - 4369 + 4368 ], "variance": [ - 4370 + 4369 ], "__typename": [ - 75 + 74 ] }, "v_player_weapon_kills_avg_fields": { @@ -103925,108 +104822,108 @@ export default { 29 ], "__typename": [ - 75 + 74 ] }, "v_player_weapon_kills_bool_exp": { "_and": [ - 4357 + 4356 ], "_not": [ - 4357 + 4356 ], "_or": [ - 4357 + 4356 ], "kill_count": [ - 176 + 175 ], "player_steam_id": [ - 176 + 175 ], "rounds": [ - 176 + 175 ], "source": [ - 77 + 76 ], "type": [ - 77 + 76 ], "with": [ - 77 + 76 ], "__typename": [ - 75 + 74 ] }, "v_player_weapon_kills_max_fields": { "kill_count": [ - 174 + 173 ], "player_steam_id": [ - 174 + 173 ], "rounds": [ - 174 + 173 ], "source": [ - 75 + 74 ], "type": [ - 75 + 74 ], "with": [ - 75 + 74 ], "__typename": [ - 75 + 74 ] }, "v_player_weapon_kills_min_fields": { "kill_count": [ - 174 + 173 ], "player_steam_id": [ - 174 + 173 ], "rounds": [ - 174 + 173 ], "source": [ - 75 + 74 ], "type": [ - 75 + 74 ], "with": [ - 75 + 74 ], "__typename": [ - 75 + 74 ] }, "v_player_weapon_kills_order_by": { "kill_count": [ - 2016 + 2015 ], "player_steam_id": [ - 2016 + 2015 ], "rounds": [ - 2016 + 2015 ], "source": [ - 2016 + 2015 ], "type": [ - 2016 + 2015 ], "with": [ - 2016 + 2015 ], "__typename": [ - 75 + 74 ] }, "v_player_weapon_kills_select_column": {}, @@ -104041,7 +104938,7 @@ export default { 29 ], "__typename": [ - 75 + 74 ] }, "v_player_weapon_kills_stddev_pop_fields": { @@ -104055,7 +104952,7 @@ export default { 29 ], "__typename": [ - 75 + 74 ] }, "v_player_weapon_kills_stddev_samp_fields": { @@ -104069,55 +104966,55 @@ export default { 29 ], "__typename": [ - 75 + 74 ] }, "v_player_weapon_kills_stream_cursor_input": { "initial_value": [ - 4366 + 4365 ], "ordering": [ - 229 + 228 ], "__typename": [ - 75 + 74 ] }, "v_player_weapon_kills_stream_cursor_value_input": { "kill_count": [ - 174 + 173 ], "player_steam_id": [ - 174 + 173 ], "rounds": [ - 174 + 173 ], "source": [ - 75 + 74 ], "type": [ - 75 + 74 ], "with": [ - 75 + 74 ], "__typename": [ - 75 + 74 ] }, "v_player_weapon_kills_sum_fields": { "kill_count": [ - 174 + 173 ], "player_steam_id": [ - 174 + 173 ], "rounds": [ - 174 + 173 ], "__typename": [ - 75 + 74 ] }, "v_player_weapon_kills_var_pop_fields": { @@ -104131,7 +105028,7 @@ export default { 29 ], "__typename": [ - 75 + 74 ] }, "v_player_weapon_kills_var_samp_fields": { @@ -104145,7 +105042,7 @@ export default { 29 ], "__typename": [ - 75 + 74 ] }, "v_player_weapon_kills_variance_fields": { @@ -104159,7 +105056,7 @@ export default { 29 ], "__typename": [ - 75 + 74 ] }, "v_pool_maps": { @@ -104167,110 +105064,110 @@ export default { 3 ], "id": [ - 3864 + 3863 ], "label": [ - 75 + 74 ], "map_pool": [ - 1330 + 1329 ], "map_pool_id": [ - 3864 + 3863 ], "name": [ - 75 + 74 ], "patch": [ - 75 + 74 ], "poster": [ - 75 + 74 ], "type": [ - 75 + 74 ], "workshop_map_id": [ - 75 + 74 ], "__typename": [ - 75 + 74 ] }, "v_pool_maps_aggregate": { "aggregate": [ - 4377 + 4376 ], "nodes": [ - 4371 + 4370 ], "__typename": [ - 75 + 74 ] }, "v_pool_maps_aggregate_bool_exp": { "bool_and": [ - 4374 + 4373 ], "bool_or": [ - 4375 + 4374 ], "count": [ - 4376 + 4375 ], "__typename": [ - 75 + 74 ] }, "v_pool_maps_aggregate_bool_exp_bool_and": { "arguments": [ - 4389 + 4388 ], "distinct": [ 3 ], "filter": [ - 4380 + 4379 ], "predicate": [ 4 ], "__typename": [ - 75 + 74 ] }, "v_pool_maps_aggregate_bool_exp_bool_or": { "arguments": [ - 4390 + 4389 ], "distinct": [ 3 ], "filter": [ - 4380 + 4379 ], "predicate": [ 4 ], "__typename": [ - 75 + 74 ] }, "v_pool_maps_aggregate_bool_exp_count": { "arguments": [ - 4388 + 4387 ], "distinct": [ 3 ], "filter": [ - 4380 + 4379 ], "predicate": [ 39 ], "__typename": [ - 75 + 74 ] }, "v_pool_maps_aggregate_fields": { @@ -104278,7 +105175,7 @@ export default { 38, { "columns": [ - 4388, + 4387, "[v_pool_maps_select_column!]" ], "distinct": [ @@ -104287,79 +105184,79 @@ export default { } ], "max": [ - 4382 + 4381 ], "min": [ - 4384 + 4383 ], "__typename": [ - 75 + 74 ] }, "v_pool_maps_aggregate_order_by": { "count": [ - 2016 + 2015 ], "max": [ - 4383 + 4382 ], "min": [ - 4385 + 4384 ], "__typename": [ - 75 + 74 ] }, "v_pool_maps_arr_rel_insert_input": { "data": [ - 4381 + 4380 ], "__typename": [ - 75 + 74 ] }, "v_pool_maps_bool_exp": { "_and": [ - 4380 + 4379 ], "_not": [ - 4380 + 4379 ], "_or": [ - 4380 + 4379 ], "active_pool": [ 4 ], "id": [ - 3866 + 3865 ], "label": [ - 77 + 76 ], "map_pool": [ - 1333 + 1332 ], "map_pool_id": [ - 3866 + 3865 ], "name": [ - 77 + 76 ], "patch": [ - 77 + 76 ], "poster": [ - 77 + 76 ], "type": [ - 77 + 76 ], "workshop_map_id": [ - 77 + 76 ], "__typename": [ - 75 + 74 ] }, "v_pool_maps_insert_input": { @@ -104367,150 +105264,150 @@ export default { 3 ], "id": [ - 3864 + 3863 ], "label": [ - 75 + 74 ], "map_pool": [ - 1339 + 1338 ], "map_pool_id": [ - 3864 + 3863 ], "name": [ - 75 + 74 ], "patch": [ - 75 + 74 ], "poster": [ - 75 + 74 ], "type": [ - 75 + 74 ], "workshop_map_id": [ - 75 + 74 ], "__typename": [ - 75 + 74 ] }, "v_pool_maps_max_fields": { "id": [ - 3864 + 3863 ], "label": [ - 75 + 74 ], "map_pool_id": [ - 3864 + 3863 ], "name": [ - 75 + 74 ], "patch": [ - 75 + 74 ], "poster": [ - 75 + 74 ], "type": [ - 75 + 74 ], "workshop_map_id": [ - 75 + 74 ], "__typename": [ - 75 + 74 ] }, "v_pool_maps_max_order_by": { "id": [ - 2016 + 2015 ], "label": [ - 2016 + 2015 ], "map_pool_id": [ - 2016 + 2015 ], "name": [ - 2016 + 2015 ], "patch": [ - 2016 + 2015 ], "poster": [ - 2016 + 2015 ], "type": [ - 2016 + 2015 ], "workshop_map_id": [ - 2016 + 2015 ], "__typename": [ - 75 + 74 ] }, "v_pool_maps_min_fields": { "id": [ - 3864 + 3863 ], "label": [ - 75 + 74 ], "map_pool_id": [ - 3864 + 3863 ], "name": [ - 75 + 74 ], "patch": [ - 75 + 74 ], "poster": [ - 75 + 74 ], "type": [ - 75 + 74 ], "workshop_map_id": [ - 75 + 74 ], "__typename": [ - 75 + 74 ] }, "v_pool_maps_min_order_by": { "id": [ - 2016 + 2015 ], "label": [ - 2016 + 2015 ], "map_pool_id": [ - 2016 + 2015 ], "name": [ - 2016 + 2015 ], "patch": [ - 2016 + 2015 ], "poster": [ - 2016 + 2015 ], "type": [ - 2016 + 2015 ], "workshop_map_id": [ - 2016 + 2015 ], "__typename": [ - 75 + 74 ] }, "v_pool_maps_mutation_response": { @@ -104518,45 +105415,45 @@ export default { 38 ], "returning": [ - 4371 + 4370 ], "__typename": [ - 75 + 74 ] }, "v_pool_maps_order_by": { "active_pool": [ - 2016 + 2015 ], "id": [ - 2016 + 2015 ], "label": [ - 2016 + 2015 ], "map_pool": [ - 1341 + 1340 ], "map_pool_id": [ - 2016 + 2015 ], "name": [ - 2016 + 2015 ], "patch": [ - 2016 + 2015 ], "poster": [ - 2016 + 2015 ], "type": [ - 2016 + 2015 ], "workshop_map_id": [ - 2016 + 2015 ], "__typename": [ - 75 + 74 ] }, "v_pool_maps_select_column": {}, @@ -104567,42 +105464,42 @@ export default { 3 ], "id": [ - 3864 + 3863 ], "label": [ - 75 + 74 ], "map_pool_id": [ - 3864 + 3863 ], "name": [ - 75 + 74 ], "patch": [ - 75 + 74 ], "poster": [ - 75 + 74 ], "type": [ - 75 + 74 ], "workshop_map_id": [ - 75 + 74 ], "__typename": [ - 75 + 74 ] }, "v_pool_maps_stream_cursor_input": { "initial_value": [ - 4393 + 4392 ], "ordering": [ - 229 + 228 ], "__typename": [ - 75 + 74 ] }, "v_pool_maps_stream_cursor_value_input": { @@ -104610,42 +105507,42 @@ export default { 3 ], "id": [ - 3864 + 3863 ], "label": [ - 75 + 74 ], "map_pool_id": [ - 3864 + 3863 ], "name": [ - 75 + 74 ], "patch": [ - 75 + 74 ], "poster": [ - 75 + 74 ], "type": [ - 75 + 74 ], "workshop_map_id": [ - 75 + 74 ], "__typename": [ - 75 + 74 ] }, "v_pool_maps_updates": { "_set": [ - 4391 + 4390 ], "where": [ - 4380 + 4379 ], "__typename": [ - 75 + 74 ] }, "v_steam_account_pool_status": { @@ -104662,29 +105559,29 @@ export default { 38 ], "__typename": [ - 75 + 74 ] }, "v_steam_account_pool_status_aggregate": { "aggregate": [ - 4397 + 4396 ], "nodes": [ - 4395 + 4394 ], "__typename": [ - 75 + 74 ] }, "v_steam_account_pool_status_aggregate_fields": { "avg": [ - 4398 + 4397 ], "count": [ 38, { "columns": [ - 4403, + 4402, "[v_steam_account_pool_status_select_column!]" ], "distinct": [ @@ -104693,34 +105590,34 @@ export default { } ], "max": [ - 4400 + 4399 ], "min": [ - 4401 + 4400 ], "stddev": [ - 4404 + 4403 ], "stddev_pop": [ - 4405 + 4404 ], "stddev_samp": [ - 4406 + 4405 ], "sum": [ - 4409 + 4408 ], "var_pop": [ - 4410 + 4409 ], "var_samp": [ - 4411 + 4410 ], "variance": [ - 4412 + 4411 ], "__typename": [ - 75 + 74 ] }, "v_steam_account_pool_status_avg_fields": { @@ -104737,18 +105634,18 @@ export default { 29 ], "__typename": [ - 75 + 74 ] }, "v_steam_account_pool_status_bool_exp": { "_and": [ - 4399 + 4398 ], "_not": [ - 4399 + 4398 ], "_or": [ - 4399 + 4398 ], "busy_accounts": [ 39 @@ -104763,7 +105660,7 @@ export default { 39 ], "__typename": [ - 75 + 74 ] }, "v_steam_account_pool_status_max_fields": { @@ -104780,7 +105677,7 @@ export default { 38 ], "__typename": [ - 75 + 74 ] }, "v_steam_account_pool_status_min_fields": { @@ -104797,24 +105694,24 @@ export default { 38 ], "__typename": [ - 75 + 74 ] }, "v_steam_account_pool_status_order_by": { "busy_accounts": [ - 2016 + 2015 ], "free_accounts": [ - 2016 + 2015 ], "id": [ - 2016 + 2015 ], "total_accounts": [ - 2016 + 2015 ], "__typename": [ - 75 + 74 ] }, "v_steam_account_pool_status_select_column": {}, @@ -104832,7 +105729,7 @@ export default { 29 ], "__typename": [ - 75 + 74 ] }, "v_steam_account_pool_status_stddev_pop_fields": { @@ -104849,7 +105746,7 @@ export default { 29 ], "__typename": [ - 75 + 74 ] }, "v_steam_account_pool_status_stddev_samp_fields": { @@ -104866,18 +105763,18 @@ export default { 29 ], "__typename": [ - 75 + 74 ] }, "v_steam_account_pool_status_stream_cursor_input": { "initial_value": [ - 4408 + 4407 ], "ordering": [ - 229 + 228 ], "__typename": [ - 75 + 74 ] }, "v_steam_account_pool_status_stream_cursor_value_input": { @@ -104894,7 +105791,7 @@ export default { 38 ], "__typename": [ - 75 + 74 ] }, "v_steam_account_pool_status_sum_fields": { @@ -104911,7 +105808,7 @@ export default { 38 ], "__typename": [ - 75 + 74 ] }, "v_steam_account_pool_status_var_pop_fields": { @@ -104928,7 +105825,7 @@ export default { 29 ], "__typename": [ - 75 + 74 ] }, "v_steam_account_pool_status_var_samp_fields": { @@ -104945,7 +105842,7 @@ export default { 29 ], "__typename": [ - 75 + 74 ] }, "v_steam_account_pool_status_variance_fields": { @@ -104962,7 +105859,7 @@ export default { 29 ], "__typename": [ - 75 + 74 ] }, "v_team_ranks": { @@ -104973,7 +105870,7 @@ export default { 38 ], "avg_faceit_level": [ - 1089 + 1088 ], "avg_premier": [ 38 @@ -104985,38 +105882,38 @@ export default { 38 ], "roster_size": [ - 174 + 173 ], "team": [ - 3424 + 3423 ], "team_id": [ - 3864 + 3863 ], "__typename": [ - 75 + 74 ] }, "v_team_ranks_aggregate": { "aggregate": [ - 4415 + 4414 ], "nodes": [ - 4413 + 4412 ], "__typename": [ - 75 + 74 ] }, "v_team_ranks_aggregate_fields": { "avg": [ - 4416 + 4415 ], "count": [ 38, { "columns": [ - 4423, + 4422, "[v_team_ranks_select_column!]" ], "distinct": [ @@ -105025,34 +105922,34 @@ export default { } ], "max": [ - 4419 + 4418 ], "min": [ - 4420 + 4419 ], "stddev": [ - 4424 + 4423 ], "stddev_pop": [ - 4425 + 4424 ], "stddev_samp": [ - 4426 + 4425 ], "sum": [ - 4429 + 4428 ], "var_pop": [ - 4430 + 4429 ], "var_samp": [ - 4431 + 4430 ], "variance": [ - 4432 + 4431 ], "__typename": [ - 75 + 74 ] }, "v_team_ranks_avg_fields": { @@ -105078,18 +105975,18 @@ export default { 29 ], "__typename": [ - 75 + 74 ] }, "v_team_ranks_bool_exp": { "_and": [ - 4417 + 4416 ], "_not": [ - 4417 + 4416 ], "_or": [ - 4417 + 4416 ], "avg_elo": [ 39 @@ -105098,7 +105995,7 @@ export default { 39 ], "avg_faceit_level": [ - 1090 + 1089 ], "avg_premier": [ 39 @@ -105110,16 +106007,16 @@ export default { 39 ], "roster_size": [ - 176 + 175 ], "team": [ - 3433 + 3432 ], "team_id": [ - 3866 + 3865 ], "__typename": [ - 75 + 74 ] }, "v_team_ranks_insert_input": { @@ -105130,7 +106027,7 @@ export default { 38 ], "avg_faceit_level": [ - 1089 + 1088 ], "avg_premier": [ 38 @@ -105142,16 +106039,16 @@ export default { 38 ], "roster_size": [ - 174 + 173 ], "team": [ - 3442 + 3441 ], "team_id": [ - 3864 + 3863 ], "__typename": [ - 75 + 74 ] }, "v_team_ranks_max_fields": { @@ -105162,7 +106059,7 @@ export default { 38 ], "avg_faceit_level": [ - 1089 + 1088 ], "avg_premier": [ 38 @@ -105174,13 +106071,13 @@ export default { 38 ], "roster_size": [ - 174 + 173 ], "team_id": [ - 3864 + 3863 ], "__typename": [ - 75 + 74 ] }, "v_team_ranks_min_fields": { @@ -105191,7 +106088,7 @@ export default { 38 ], "avg_faceit_level": [ - 1089 + 1088 ], "avg_premier": [ 38 @@ -105203,53 +106100,53 @@ export default { 38 ], "roster_size": [ - 174 + 173 ], "team_id": [ - 3864 + 3863 ], "__typename": [ - 75 + 74 ] }, "v_team_ranks_obj_rel_insert_input": { "data": [ - 4418 + 4417 ], "__typename": [ - 75 + 74 ] }, "v_team_ranks_order_by": { "avg_elo": [ - 2016 + 2015 ], "avg_faceit_elo": [ - 2016 + 2015 ], "avg_faceit_level": [ - 2016 + 2015 ], "avg_premier": [ - 2016 + 2015 ], "max_elo": [ - 2016 + 2015 ], "min_elo": [ - 2016 + 2015 ], "roster_size": [ - 2016 + 2015 ], "team": [ - 3444 + 3443 ], "team_id": [ - 2016 + 2015 ], "__typename": [ - 75 + 74 ] }, "v_team_ranks_select_column": {}, @@ -105276,7 +106173,7 @@ export default { 29 ], "__typename": [ - 75 + 74 ] }, "v_team_ranks_stddev_pop_fields": { @@ -105302,7 +106199,7 @@ export default { 29 ], "__typename": [ - 75 + 74 ] }, "v_team_ranks_stddev_samp_fields": { @@ -105328,18 +106225,18 @@ export default { 29 ], "__typename": [ - 75 + 74 ] }, "v_team_ranks_stream_cursor_input": { "initial_value": [ - 4428 + 4427 ], "ordering": [ - 229 + 228 ], "__typename": [ - 75 + 74 ] }, "v_team_ranks_stream_cursor_value_input": { @@ -105350,7 +106247,7 @@ export default { 38 ], "avg_faceit_level": [ - 1089 + 1088 ], "avg_premier": [ 38 @@ -105362,13 +106259,13 @@ export default { 38 ], "roster_size": [ - 174 + 173 ], "team_id": [ - 3864 + 3863 ], "__typename": [ - 75 + 74 ] }, "v_team_ranks_sum_fields": { @@ -105379,7 +106276,7 @@ export default { 38 ], "avg_faceit_level": [ - 1089 + 1088 ], "avg_premier": [ 38 @@ -105391,10 +106288,10 @@ export default { 38 ], "roster_size": [ - 174 + 173 ], "__typename": [ - 75 + 74 ] }, "v_team_ranks_var_pop_fields": { @@ -105420,7 +106317,7 @@ export default { 29 ], "__typename": [ - 75 + 74 ] }, "v_team_ranks_var_samp_fields": { @@ -105446,7 +106343,7 @@ export default { 29 ], "__typename": [ - 75 + 74 ] }, "v_team_ranks_variance_fields": { @@ -105472,52 +106369,52 @@ export default { 29 ], "__typename": [ - 75 + 74 ] }, "v_team_reputation": { "late_cancels": [ - 174 + 173 ], "no_shows": [ - 174 + 173 ], "reliability_pct": [ - 2014 + 2013 ], "scrims_completed": [ - 174 + 173 ], "team": [ - 3424 + 3423 ], "team_id": [ - 3864 + 3863 ], "__typename": [ - 75 + 74 ] }, "v_team_reputation_aggregate": { "aggregate": [ - 4435 + 4434 ], "nodes": [ - 4433 + 4432 ], "__typename": [ - 75 + 74 ] }, "v_team_reputation_aggregate_fields": { "avg": [ - 4436 + 4435 ], "count": [ 38, { "columns": [ - 4443, + 4442, "[v_team_reputation_select_column!]" ], "distinct": [ @@ -105526,34 +106423,34 @@ export default { } ], "max": [ - 4439 + 4438 ], "min": [ - 4440 + 4439 ], "stddev": [ - 4444 + 4443 ], "stddev_pop": [ - 4445 + 4444 ], "stddev_samp": [ - 4446 + 4445 ], "sum": [ - 4449 + 4448 ], "var_pop": [ - 4450 + 4449 ], "var_samp": [ - 4451 + 4450 ], "variance": [ - 4452 + 4451 ], "__typename": [ - 75 + 74 ] }, "v_team_reputation_avg_fields": { @@ -105570,133 +106467,133 @@ export default { 29 ], "__typename": [ - 75 + 74 ] }, "v_team_reputation_bool_exp": { "_and": [ - 4437 + 4436 ], "_not": [ - 4437 + 4436 ], "_or": [ - 4437 + 4436 ], "late_cancels": [ - 176 + 175 ], "no_shows": [ - 176 + 175 ], "reliability_pct": [ - 2015 + 2014 ], "scrims_completed": [ - 176 + 175 ], "team": [ - 3433 + 3432 ], "team_id": [ - 3866 + 3865 ], "__typename": [ - 75 + 74 ] }, "v_team_reputation_insert_input": { "late_cancels": [ - 174 + 173 ], "no_shows": [ - 174 + 173 ], "reliability_pct": [ - 2014 + 2013 ], "scrims_completed": [ - 174 + 173 ], "team": [ - 3442 + 3441 ], "team_id": [ - 3864 + 3863 ], "__typename": [ - 75 + 74 ] }, "v_team_reputation_max_fields": { "late_cancels": [ - 174 + 173 ], "no_shows": [ - 174 + 173 ], "reliability_pct": [ - 2014 + 2013 ], "scrims_completed": [ - 174 + 173 ], "team_id": [ - 3864 + 3863 ], "__typename": [ - 75 + 74 ] }, "v_team_reputation_min_fields": { "late_cancels": [ - 174 + 173 ], "no_shows": [ - 174 + 173 ], "reliability_pct": [ - 2014 + 2013 ], "scrims_completed": [ - 174 + 173 ], "team_id": [ - 3864 + 3863 ], "__typename": [ - 75 + 74 ] }, "v_team_reputation_obj_rel_insert_input": { "data": [ - 4438 + 4437 ], "__typename": [ - 75 + 74 ] }, "v_team_reputation_order_by": { "late_cancels": [ - 2016 + 2015 ], "no_shows": [ - 2016 + 2015 ], "reliability_pct": [ - 2016 + 2015 ], "scrims_completed": [ - 2016 + 2015 ], "team": [ - 3444 + 3443 ], "team_id": [ - 2016 + 2015 ], "__typename": [ - 75 + 74 ] }, "v_team_reputation_select_column": {}, @@ -105714,7 +106611,7 @@ export default { 29 ], "__typename": [ - 75 + 74 ] }, "v_team_reputation_stddev_pop_fields": { @@ -105731,7 +106628,7 @@ export default { 29 ], "__typename": [ - 75 + 74 ] }, "v_team_reputation_stddev_samp_fields": { @@ -105748,55 +106645,55 @@ export default { 29 ], "__typename": [ - 75 + 74 ] }, "v_team_reputation_stream_cursor_input": { "initial_value": [ - 4448 + 4447 ], "ordering": [ - 229 + 228 ], "__typename": [ - 75 + 74 ] }, "v_team_reputation_stream_cursor_value_input": { "late_cancels": [ - 174 + 173 ], "no_shows": [ - 174 + 173 ], "reliability_pct": [ - 2014 + 2013 ], "scrims_completed": [ - 174 + 173 ], "team_id": [ - 3864 + 3863 ], "__typename": [ - 75 + 74 ] }, "v_team_reputation_sum_fields": { "late_cancels": [ - 174 + 173 ], "no_shows": [ - 174 + 173 ], "reliability_pct": [ - 2014 + 2013 ], "scrims_completed": [ - 174 + 173 ], "__typename": [ - 75 + 74 ] }, "v_team_reputation_var_pop_fields": { @@ -105813,7 +106710,7 @@ export default { 29 ], "__typename": [ - 75 + 74 ] }, "v_team_reputation_var_samp_fields": { @@ -105830,7 +106727,7 @@ export default { 29 ], "__typename": [ - 75 + 74 ] }, "v_team_reputation_variance_fields": { @@ -105847,7 +106744,7 @@ export default { 29 ], "__typename": [ - 75 + 74 ] }, "v_team_stage_results": { @@ -105888,13 +106785,13 @@ export default { 38 ], "stage": [ - 3556 + 3555 ], "team": [ - 3689 + 3688 ], "team_kdr": [ - 1089 + 1088 ], "total_deaths": [ 38 @@ -105903,245 +106800,245 @@ export default { 38 ], "tournament_stage_id": [ - 3864 + 3863 ], "tournament_team_id": [ - 3864 + 3863 ], "wins": [ 38 ], "__typename": [ - 75 + 74 ] }, "v_team_stage_results_aggregate": { "aggregate": [ - 4467 + 4466 ], "nodes": [ - 4453 + 4452 ], "__typename": [ - 75 + 74 ] }, "v_team_stage_results_aggregate_bool_exp": { "avg": [ - 4456 + 4455 ], "corr": [ - 4457 + 4456 ], "count": [ - 4459 + 4458 ], "covar_samp": [ - 4460 + 4459 ], "max": [ - 4462 + 4461 ], "min": [ - 4463 + 4462 ], "stddev_samp": [ - 4464 + 4463 ], "sum": [ - 4465 + 4464 ], "var_samp": [ - 4466 + 4465 ], "__typename": [ - 75 + 74 ] }, "v_team_stage_results_aggregate_bool_exp_avg": { "arguments": [ - 4486 + 4485 ], "distinct": [ 3 ], "filter": [ - 4472 + 4471 ], "predicate": [ - 1090 + 1089 ], "__typename": [ - 75 + 74 ] }, "v_team_stage_results_aggregate_bool_exp_corr": { "arguments": [ - 4458 + 4457 ], "distinct": [ 3 ], "filter": [ - 4472 + 4471 ], "predicate": [ - 1090 + 1089 ], "__typename": [ - 75 + 74 ] }, "v_team_stage_results_aggregate_bool_exp_corr_arguments": { "X": [ - 4487 + 4486 ], "Y": [ - 4487 + 4486 ], "__typename": [ - 75 + 74 ] }, "v_team_stage_results_aggregate_bool_exp_count": { "arguments": [ - 4485 + 4484 ], "distinct": [ 3 ], "filter": [ - 4472 + 4471 ], "predicate": [ 39 ], "__typename": [ - 75 + 74 ] }, "v_team_stage_results_aggregate_bool_exp_covar_samp": { "arguments": [ - 4461 + 4460 ], "distinct": [ 3 ], "filter": [ - 4472 + 4471 ], "predicate": [ - 1090 + 1089 ], "__typename": [ - 75 + 74 ] }, "v_team_stage_results_aggregate_bool_exp_covar_samp_arguments": { "X": [ - 4488 + 4487 ], "Y": [ - 4488 + 4487 ], "__typename": [ - 75 + 74 ] }, "v_team_stage_results_aggregate_bool_exp_max": { "arguments": [ - 4489 + 4488 ], "distinct": [ 3 ], "filter": [ - 4472 + 4471 ], "predicate": [ - 1090 + 1089 ], "__typename": [ - 75 + 74 ] }, "v_team_stage_results_aggregate_bool_exp_min": { "arguments": [ - 4490 + 4489 ], "distinct": [ 3 ], "filter": [ - 4472 + 4471 ], "predicate": [ - 1090 + 1089 ], "__typename": [ - 75 + 74 ] }, "v_team_stage_results_aggregate_bool_exp_stddev_samp": { "arguments": [ - 4491 + 4490 ], "distinct": [ 3 ], "filter": [ - 4472 + 4471 ], "predicate": [ - 1090 + 1089 ], "__typename": [ - 75 + 74 ] }, "v_team_stage_results_aggregate_bool_exp_sum": { "arguments": [ - 4492 + 4491 ], "distinct": [ 3 ], "filter": [ - 4472 + 4471 ], "predicate": [ - 1090 + 1089 ], "__typename": [ - 75 + 74 ] }, "v_team_stage_results_aggregate_bool_exp_var_samp": { "arguments": [ - 4493 + 4492 ], "distinct": [ 3 ], "filter": [ - 4472 + 4471 ], "predicate": [ - 1090 + 1089 ], "__typename": [ - 75 + 74 ] }, "v_team_stage_results_aggregate_fields": { "avg": [ - 4470 + 4469 ], "count": [ 38, { "columns": [ - 4485, + 4484, "[v_team_stage_results_select_column!]" ], "distinct": [ @@ -106150,83 +107047,83 @@ export default { } ], "max": [ - 4476 + 4475 ], "min": [ - 4478 + 4477 ], "stddev": [ - 4495 + 4494 ], "stddev_pop": [ - 4497 + 4496 ], "stddev_samp": [ - 4499 + 4498 ], "sum": [ - 4503 + 4502 ], "var_pop": [ - 4507 + 4506 ], "var_samp": [ - 4509 + 4508 ], "variance": [ - 4511 + 4510 ], "__typename": [ - 75 + 74 ] }, "v_team_stage_results_aggregate_order_by": { "avg": [ - 4471 + 4470 ], "count": [ - 2016 + 2015 ], "max": [ - 4477 + 4476 ], "min": [ - 4479 + 4478 ], "stddev": [ - 4496 + 4495 ], "stddev_pop": [ - 4498 + 4497 ], "stddev_samp": [ - 4500 + 4499 ], "sum": [ - 4504 + 4503 ], "var_pop": [ - 4508 + 4507 ], "var_samp": [ - 4510 + 4509 ], "variance": [ - 4512 + 4511 ], "__typename": [ - 75 + 74 ] }, "v_team_stage_results_arr_rel_insert_input": { "data": [ - 4475 + 4474 ], "on_conflict": [ - 4482 + 4481 ], "__typename": [ - 75 + 74 ] }, "v_team_stage_results_avg_fields": { @@ -106279,71 +107176,71 @@ export default { 29 ], "__typename": [ - 75 + 74 ] }, "v_team_stage_results_avg_order_by": { "group_number": [ - 2016 + 2015 ], "head_to_head_match_wins": [ - 2016 + 2015 ], "head_to_head_rounds_won": [ - 2016 + 2015 ], "losses": [ - 2016 + 2015 ], "maps_lost": [ - 2016 + 2015 ], "maps_won": [ - 2016 + 2015 ], "matches_played": [ - 2016 + 2015 ], "matches_remaining": [ - 2016 + 2015 ], "placement": [ - 2016 + 2015 ], "rank": [ - 2016 + 2015 ], "rounds_lost": [ - 2016 + 2015 ], "rounds_won": [ - 2016 + 2015 ], "team_kdr": [ - 2016 + 2015 ], "total_deaths": [ - 2016 + 2015 ], "total_kills": [ - 2016 + 2015 ], "wins": [ - 2016 + 2015 ], "__typename": [ - 75 + 74 ] }, "v_team_stage_results_bool_exp": { "_and": [ - 4472 + 4471 ], "_not": [ - 4472 + 4471 ], "_or": [ - 4472 + 4471 ], "group_number": [ 39 @@ -106382,13 +107279,13 @@ export default { 39 ], "stage": [ - 3568 + 3567 ], "team": [ - 3698 + 3697 ], "team_kdr": [ - 1090 + 1089 ], "total_deaths": [ 39 @@ -106397,16 +107294,16 @@ export default { 39 ], "tournament_stage_id": [ - 3866 + 3865 ], "tournament_team_id": [ - 3866 + 3865 ], "wins": [ 39 ], "__typename": [ - 75 + 74 ] }, "v_team_stage_results_constraint": {}, @@ -106448,7 +107345,7 @@ export default { 38 ], "team_kdr": [ - 1089 + 1088 ], "total_deaths": [ 38 @@ -106460,7 +107357,7 @@ export default { 38 ], "__typename": [ - 75 + 74 ] }, "v_team_stage_results_insert_input": { @@ -106501,13 +107398,13 @@ export default { 38 ], "stage": [ - 3580 + 3579 ], "team": [ - 3707 + 3706 ], "team_kdr": [ - 1089 + 1088 ], "total_deaths": [ 38 @@ -106516,16 +107413,16 @@ export default { 38 ], "tournament_stage_id": [ - 3864 + 3863 ], "tournament_team_id": [ - 3864 + 3863 ], "wins": [ 38 ], "__typename": [ - 75 + 74 ] }, "v_team_stage_results_max_fields": { @@ -106566,7 +107463,7 @@ export default { 38 ], "team_kdr": [ - 1089 + 1088 ], "total_deaths": [ 38 @@ -106575,75 +107472,75 @@ export default { 38 ], "tournament_stage_id": [ - 3864 + 3863 ], "tournament_team_id": [ - 3864 + 3863 ], "wins": [ 38 ], "__typename": [ - 75 + 74 ] }, "v_team_stage_results_max_order_by": { "group_number": [ - 2016 + 2015 ], "head_to_head_match_wins": [ - 2016 + 2015 ], "head_to_head_rounds_won": [ - 2016 + 2015 ], "losses": [ - 2016 + 2015 ], "maps_lost": [ - 2016 + 2015 ], "maps_won": [ - 2016 + 2015 ], "matches_played": [ - 2016 + 2015 ], "matches_remaining": [ - 2016 + 2015 ], "placement": [ - 2016 + 2015 ], "rank": [ - 2016 + 2015 ], "rounds_lost": [ - 2016 + 2015 ], "rounds_won": [ - 2016 + 2015 ], "team_kdr": [ - 2016 + 2015 ], "total_deaths": [ - 2016 + 2015 ], "total_kills": [ - 2016 + 2015 ], "tournament_stage_id": [ - 2016 + 2015 ], "tournament_team_id": [ - 2016 + 2015 ], "wins": [ - 2016 + 2015 ], "__typename": [ - 75 + 74 ] }, "v_team_stage_results_min_fields": { @@ -106684,7 +107581,7 @@ export default { 38 ], "team_kdr": [ - 1089 + 1088 ], "total_deaths": [ 38 @@ -106693,75 +107590,75 @@ export default { 38 ], "tournament_stage_id": [ - 3864 + 3863 ], "tournament_team_id": [ - 3864 + 3863 ], "wins": [ 38 ], "__typename": [ - 75 + 74 ] }, "v_team_stage_results_min_order_by": { "group_number": [ - 2016 + 2015 ], "head_to_head_match_wins": [ - 2016 + 2015 ], "head_to_head_rounds_won": [ - 2016 + 2015 ], "losses": [ - 2016 + 2015 ], "maps_lost": [ - 2016 + 2015 ], "maps_won": [ - 2016 + 2015 ], "matches_played": [ - 2016 + 2015 ], "matches_remaining": [ - 2016 + 2015 ], "placement": [ - 2016 + 2015 ], "rank": [ - 2016 + 2015 ], "rounds_lost": [ - 2016 + 2015 ], "rounds_won": [ - 2016 + 2015 ], "team_kdr": [ - 2016 + 2015 ], "total_deaths": [ - 2016 + 2015 ], "total_kills": [ - 2016 + 2015 ], "tournament_stage_id": [ - 2016 + 2015 ], "tournament_team_id": [ - 2016 + 2015 ], "wins": [ - 2016 + 2015 ], "__typename": [ - 75 + 74 ] }, "v_team_stage_results_mutation_response": { @@ -106769,111 +107666,111 @@ export default { 38 ], "returning": [ - 4453 + 4452 ], "__typename": [ - 75 + 74 ] }, "v_team_stage_results_obj_rel_insert_input": { "data": [ - 4475 + 4474 ], "on_conflict": [ - 4482 + 4481 ], "__typename": [ - 75 + 74 ] }, "v_team_stage_results_on_conflict": { "constraint": [ - 4473 + 4472 ], "update_columns": [ - 4505 + 4504 ], "where": [ - 4472 + 4471 ], "__typename": [ - 75 + 74 ] }, "v_team_stage_results_order_by": { "group_number": [ - 2016 + 2015 ], "head_to_head_match_wins": [ - 2016 + 2015 ], "head_to_head_rounds_won": [ - 2016 + 2015 ], "losses": [ - 2016 + 2015 ], "maps_lost": [ - 2016 + 2015 ], "maps_won": [ - 2016 + 2015 ], "matches_played": [ - 2016 + 2015 ], "matches_remaining": [ - 2016 + 2015 ], "placement": [ - 2016 + 2015 ], "rank": [ - 2016 + 2015 ], "rounds_lost": [ - 2016 + 2015 ], "rounds_won": [ - 2016 + 2015 ], "stage": [ - 3582 + 3581 ], "team": [ - 3709 + 3708 ], "team_kdr": [ - 2016 + 2015 ], "total_deaths": [ - 2016 + 2015 ], "total_kills": [ - 2016 + 2015 ], "tournament_stage_id": [ - 2016 + 2015 ], "tournament_team_id": [ - 2016 + 2015 ], "wins": [ - 2016 + 2015 ], "__typename": [ - 75 + 74 ] }, "v_team_stage_results_pk_columns_input": { "tournament_stage_id": [ - 3864 + 3863 ], "tournament_team_id": [ - 3864 + 3863 ], "__typename": [ - 75 + 74 ] }, "v_team_stage_results_select_column": {}, @@ -106923,7 +107820,7 @@ export default { 38 ], "team_kdr": [ - 1089 + 1088 ], "total_deaths": [ 38 @@ -106932,16 +107829,16 @@ export default { 38 ], "tournament_stage_id": [ - 3864 + 3863 ], "tournament_team_id": [ - 3864 + 3863 ], "wins": [ 38 ], "__typename": [ - 75 + 74 ] }, "v_team_stage_results_stddev_fields": { @@ -106994,60 +107891,60 @@ export default { 29 ], "__typename": [ - 75 + 74 ] }, "v_team_stage_results_stddev_order_by": { "group_number": [ - 2016 + 2015 ], "head_to_head_match_wins": [ - 2016 + 2015 ], "head_to_head_rounds_won": [ - 2016 + 2015 ], "losses": [ - 2016 + 2015 ], "maps_lost": [ - 2016 + 2015 ], "maps_won": [ - 2016 + 2015 ], "matches_played": [ - 2016 + 2015 ], "matches_remaining": [ - 2016 + 2015 ], "placement": [ - 2016 + 2015 ], "rank": [ - 2016 + 2015 ], "rounds_lost": [ - 2016 + 2015 ], "rounds_won": [ - 2016 + 2015 ], "team_kdr": [ - 2016 + 2015 ], "total_deaths": [ - 2016 + 2015 ], "total_kills": [ - 2016 + 2015 ], "wins": [ - 2016 + 2015 ], "__typename": [ - 75 + 74 ] }, "v_team_stage_results_stddev_pop_fields": { @@ -107100,60 +107997,60 @@ export default { 29 ], "__typename": [ - 75 + 74 ] }, "v_team_stage_results_stddev_pop_order_by": { "group_number": [ - 2016 + 2015 ], "head_to_head_match_wins": [ - 2016 + 2015 ], "head_to_head_rounds_won": [ - 2016 + 2015 ], "losses": [ - 2016 + 2015 ], "maps_lost": [ - 2016 + 2015 ], "maps_won": [ - 2016 + 2015 ], "matches_played": [ - 2016 + 2015 ], "matches_remaining": [ - 2016 + 2015 ], "placement": [ - 2016 + 2015 ], "rank": [ - 2016 + 2015 ], "rounds_lost": [ - 2016 + 2015 ], "rounds_won": [ - 2016 + 2015 ], "team_kdr": [ - 2016 + 2015 ], "total_deaths": [ - 2016 + 2015 ], "total_kills": [ - 2016 + 2015 ], "wins": [ - 2016 + 2015 ], "__typename": [ - 75 + 74 ] }, "v_team_stage_results_stddev_samp_fields": { @@ -107206,71 +108103,71 @@ export default { 29 ], "__typename": [ - 75 + 74 ] }, "v_team_stage_results_stddev_samp_order_by": { "group_number": [ - 2016 + 2015 ], "head_to_head_match_wins": [ - 2016 + 2015 ], "head_to_head_rounds_won": [ - 2016 + 2015 ], "losses": [ - 2016 + 2015 ], "maps_lost": [ - 2016 + 2015 ], "maps_won": [ - 2016 + 2015 ], "matches_played": [ - 2016 + 2015 ], "matches_remaining": [ - 2016 + 2015 ], "placement": [ - 2016 + 2015 ], "rank": [ - 2016 + 2015 ], "rounds_lost": [ - 2016 + 2015 ], "rounds_won": [ - 2016 + 2015 ], "team_kdr": [ - 2016 + 2015 ], "total_deaths": [ - 2016 + 2015 ], "total_kills": [ - 2016 + 2015 ], "wins": [ - 2016 + 2015 ], "__typename": [ - 75 + 74 ] }, "v_team_stage_results_stream_cursor_input": { "initial_value": [ - 4502 + 4501 ], "ordering": [ - 229 + 228 ], "__typename": [ - 75 + 74 ] }, "v_team_stage_results_stream_cursor_value_input": { @@ -107311,7 +108208,7 @@ export default { 38 ], "team_kdr": [ - 1089 + 1088 ], "total_deaths": [ 38 @@ -107320,16 +108217,16 @@ export default { 38 ], "tournament_stage_id": [ - 3864 + 3863 ], "tournament_team_id": [ - 3864 + 3863 ], "wins": [ 38 ], "__typename": [ - 75 + 74 ] }, "v_team_stage_results_sum_fields": { @@ -107370,7 +108267,7 @@ export default { 38 ], "team_kdr": [ - 1089 + 1088 ], "total_deaths": [ 38 @@ -107382,75 +108279,75 @@ export default { 38 ], "__typename": [ - 75 + 74 ] }, "v_team_stage_results_sum_order_by": { "group_number": [ - 2016 + 2015 ], "head_to_head_match_wins": [ - 2016 + 2015 ], "head_to_head_rounds_won": [ - 2016 + 2015 ], "losses": [ - 2016 + 2015 ], "maps_lost": [ - 2016 + 2015 ], "maps_won": [ - 2016 + 2015 ], "matches_played": [ - 2016 + 2015 ], "matches_remaining": [ - 2016 + 2015 ], "placement": [ - 2016 + 2015 ], "rank": [ - 2016 + 2015 ], "rounds_lost": [ - 2016 + 2015 ], "rounds_won": [ - 2016 + 2015 ], "team_kdr": [ - 2016 + 2015 ], "total_deaths": [ - 2016 + 2015 ], "total_kills": [ - 2016 + 2015 ], "wins": [ - 2016 + 2015 ], "__typename": [ - 75 + 74 ] }, "v_team_stage_results_update_column": {}, "v_team_stage_results_updates": { "_inc": [ - 4474 + 4473 ], "_set": [ - 4494 + 4493 ], "where": [ - 4472 + 4471 ], "__typename": [ - 75 + 74 ] }, "v_team_stage_results_var_pop_fields": { @@ -107503,60 +108400,60 @@ export default { 29 ], "__typename": [ - 75 + 74 ] }, "v_team_stage_results_var_pop_order_by": { "group_number": [ - 2016 + 2015 ], "head_to_head_match_wins": [ - 2016 + 2015 ], "head_to_head_rounds_won": [ - 2016 + 2015 ], "losses": [ - 2016 + 2015 ], "maps_lost": [ - 2016 + 2015 ], "maps_won": [ - 2016 + 2015 ], "matches_played": [ - 2016 + 2015 ], "matches_remaining": [ - 2016 + 2015 ], "placement": [ - 2016 + 2015 ], "rank": [ - 2016 + 2015 ], "rounds_lost": [ - 2016 + 2015 ], "rounds_won": [ - 2016 + 2015 ], "team_kdr": [ - 2016 + 2015 ], "total_deaths": [ - 2016 + 2015 ], "total_kills": [ - 2016 + 2015 ], "wins": [ - 2016 + 2015 ], "__typename": [ - 75 + 74 ] }, "v_team_stage_results_var_samp_fields": { @@ -107609,60 +108506,60 @@ export default { 29 ], "__typename": [ - 75 + 74 ] }, "v_team_stage_results_var_samp_order_by": { "group_number": [ - 2016 + 2015 ], "head_to_head_match_wins": [ - 2016 + 2015 ], "head_to_head_rounds_won": [ - 2016 + 2015 ], "losses": [ - 2016 + 2015 ], "maps_lost": [ - 2016 + 2015 ], "maps_won": [ - 2016 + 2015 ], "matches_played": [ - 2016 + 2015 ], "matches_remaining": [ - 2016 + 2015 ], "placement": [ - 2016 + 2015 ], "rank": [ - 2016 + 2015 ], "rounds_lost": [ - 2016 + 2015 ], "rounds_won": [ - 2016 + 2015 ], "team_kdr": [ - 2016 + 2015 ], "total_deaths": [ - 2016 + 2015 ], "total_kills": [ - 2016 + 2015 ], "wins": [ - 2016 + 2015 ], "__typename": [ - 75 + 74 ] }, "v_team_stage_results_variance_fields": { @@ -107715,60 +108612,60 @@ export default { 29 ], "__typename": [ - 75 + 74 ] }, "v_team_stage_results_variance_order_by": { "group_number": [ - 2016 + 2015 ], "head_to_head_match_wins": [ - 2016 + 2015 ], "head_to_head_rounds_won": [ - 2016 + 2015 ], "losses": [ - 2016 + 2015 ], "maps_lost": [ - 2016 + 2015 ], "maps_won": [ - 2016 + 2015 ], "matches_played": [ - 2016 + 2015 ], "matches_remaining": [ - 2016 + 2015 ], "placement": [ - 2016 + 2015 ], "rank": [ - 2016 + 2015 ], "rounds_lost": [ - 2016 + 2015 ], "rounds_won": [ - 2016 + 2015 ], "team_kdr": [ - 2016 + 2015 ], "total_deaths": [ - 2016 + 2015 ], "total_kills": [ - 2016 + 2015 ], "wins": [ - 2016 + 2015 ], "__typename": [ - 75 + 74 ] }, "v_team_tournament_results": { @@ -107800,10 +108697,10 @@ export default { 38 ], "team": [ - 3689 + 3688 ], "team_kdr": [ - 1089 + 1088 ], "total_deaths": [ 38 @@ -107812,248 +108709,248 @@ export default { 38 ], "tournament": [ - 3818 + 3817 ], "tournament_id": [ - 3864 + 3863 ], "tournament_team_id": [ - 3864 + 3863 ], "wins": [ 38 ], "__typename": [ - 75 + 74 ] }, "v_team_tournament_results_aggregate": { "aggregate": [ - 4527 + 4526 ], "nodes": [ - 4513 + 4512 ], "__typename": [ - 75 + 74 ] }, "v_team_tournament_results_aggregate_bool_exp": { "avg": [ - 4516 + 4515 ], "corr": [ - 4517 + 4516 ], "count": [ - 4519 + 4518 ], "covar_samp": [ - 4520 + 4519 ], "max": [ - 4522 + 4521 ], "min": [ - 4523 + 4522 ], "stddev_samp": [ - 4524 + 4523 ], "sum": [ - 4525 + 4524 ], "var_samp": [ - 4526 + 4525 ], "__typename": [ - 75 + 74 ] }, "v_team_tournament_results_aggregate_bool_exp_avg": { "arguments": [ - 4540 + 4539 ], "distinct": [ 3 ], "filter": [ - 4532 + 4531 ], "predicate": [ - 1090 + 1089 ], "__typename": [ - 75 + 74 ] }, "v_team_tournament_results_aggregate_bool_exp_corr": { "arguments": [ - 4518 + 4517 ], "distinct": [ 3 ], "filter": [ - 4532 + 4531 ], "predicate": [ - 1090 + 1089 ], "__typename": [ - 75 + 74 ] }, "v_team_tournament_results_aggregate_bool_exp_corr_arguments": { "X": [ - 4541 + 4540 ], "Y": [ - 4541 + 4540 ], "__typename": [ - 75 + 74 ] }, "v_team_tournament_results_aggregate_bool_exp_count": { "arguments": [ - 4539 + 4538 ], "distinct": [ 3 ], "filter": [ - 4532 + 4531 ], "predicate": [ 39 ], "__typename": [ - 75 + 74 ] }, "v_team_tournament_results_aggregate_bool_exp_covar_samp": { "arguments": [ - 4521 + 4520 ], "distinct": [ 3 ], "filter": [ - 4532 + 4531 ], "predicate": [ - 1090 + 1089 ], "__typename": [ - 75 + 74 ] }, "v_team_tournament_results_aggregate_bool_exp_covar_samp_arguments": { "X": [ - 4542 + 4541 ], "Y": [ - 4542 + 4541 ], "__typename": [ - 75 + 74 ] }, "v_team_tournament_results_aggregate_bool_exp_max": { "arguments": [ - 4543 + 4542 ], "distinct": [ 3 ], "filter": [ - 4532 + 4531 ], "predicate": [ - 1090 + 1089 ], "__typename": [ - 75 + 74 ] }, "v_team_tournament_results_aggregate_bool_exp_min": { "arguments": [ - 4544 + 4543 ], "distinct": [ 3 ], "filter": [ - 4532 + 4531 ], "predicate": [ - 1090 + 1089 ], "__typename": [ - 75 + 74 ] }, "v_team_tournament_results_aggregate_bool_exp_stddev_samp": { "arguments": [ - 4545 + 4544 ], "distinct": [ 3 ], "filter": [ - 4532 + 4531 ], "predicate": [ - 1090 + 1089 ], "__typename": [ - 75 + 74 ] }, "v_team_tournament_results_aggregate_bool_exp_sum": { "arguments": [ - 4546 + 4545 ], "distinct": [ 3 ], "filter": [ - 4532 + 4531 ], "predicate": [ - 1090 + 1089 ], "__typename": [ - 75 + 74 ] }, "v_team_tournament_results_aggregate_bool_exp_var_samp": { "arguments": [ - 4547 + 4546 ], "distinct": [ 3 ], "filter": [ - 4532 + 4531 ], "predicate": [ - 1090 + 1089 ], "__typename": [ - 75 + 74 ] }, "v_team_tournament_results_aggregate_fields": { "avg": [ - 4530 + 4529 ], "count": [ 38, { "columns": [ - 4539, + 4538, "[v_team_tournament_results_select_column!]" ], "distinct": [ @@ -108062,80 +108959,80 @@ export default { } ], "max": [ - 4534 + 4533 ], "min": [ - 4536 + 4535 ], "stddev": [ - 4548 + 4547 ], "stddev_pop": [ - 4550 + 4549 ], "stddev_samp": [ - 4552 + 4551 ], "sum": [ - 4556 + 4555 ], "var_pop": [ - 4558 + 4557 ], "var_samp": [ - 4560 + 4559 ], "variance": [ - 4562 + 4561 ], "__typename": [ - 75 + 74 ] }, "v_team_tournament_results_aggregate_order_by": { "avg": [ - 4531 + 4530 ], "count": [ - 2016 + 2015 ], "max": [ - 4535 + 4534 ], "min": [ - 4537 + 4536 ], "stddev": [ - 4549 + 4548 ], "stddev_pop": [ - 4551 + 4550 ], "stddev_samp": [ - 4553 + 4552 ], "sum": [ - 4557 + 4556 ], "var_pop": [ - 4559 + 4558 ], "var_samp": [ - 4561 + 4560 ], "variance": [ - 4563 + 4562 ], "__typename": [ - 75 + 74 ] }, "v_team_tournament_results_arr_rel_insert_input": { "data": [ - 4533 + 4532 ], "__typename": [ - 75 + 74 ] }, "v_team_tournament_results_avg_fields": { @@ -108179,62 +109076,62 @@ export default { 29 ], "__typename": [ - 75 + 74 ] }, "v_team_tournament_results_avg_order_by": { "head_to_head_match_wins": [ - 2016 + 2015 ], "head_to_head_rounds_won": [ - 2016 + 2015 ], "losses": [ - 2016 + 2015 ], "maps_lost": [ - 2016 + 2015 ], "maps_won": [ - 2016 + 2015 ], "matches_played": [ - 2016 + 2015 ], "matches_remaining": [ - 2016 + 2015 ], "rounds_lost": [ - 2016 + 2015 ], "rounds_won": [ - 2016 + 2015 ], "team_kdr": [ - 2016 + 2015 ], "total_deaths": [ - 2016 + 2015 ], "total_kills": [ - 2016 + 2015 ], "wins": [ - 2016 + 2015 ], "__typename": [ - 75 + 74 ] }, "v_team_tournament_results_bool_exp": { "_and": [ - 4532 + 4531 ], "_not": [ - 4532 + 4531 ], "_or": [ - 4532 + 4531 ], "head_to_head_match_wins": [ 39 @@ -108264,10 +109161,10 @@ export default { 39 ], "team": [ - 3698 + 3697 ], "team_kdr": [ - 1090 + 1089 ], "total_deaths": [ 39 @@ -108276,19 +109173,19 @@ export default { 39 ], "tournament": [ - 3829 + 3828 ], "tournament_id": [ - 3866 + 3865 ], "tournament_team_id": [ - 3866 + 3865 ], "wins": [ 39 ], "__typename": [ - 75 + 74 ] }, "v_team_tournament_results_insert_input": { @@ -108320,10 +109217,10 @@ export default { 38 ], "team": [ - 3707 + 3706 ], "team_kdr": [ - 1089 + 1088 ], "total_deaths": [ 38 @@ -108332,19 +109229,19 @@ export default { 38 ], "tournament": [ - 3838 + 3837 ], "tournament_id": [ - 3864 + 3863 ], "tournament_team_id": [ - 3864 + 3863 ], "wins": [ 38 ], "__typename": [ - 75 + 74 ] }, "v_team_tournament_results_max_fields": { @@ -108376,7 +109273,7 @@ export default { 38 ], "team_kdr": [ - 1089 + 1088 ], "total_deaths": [ 38 @@ -108385,66 +109282,66 @@ export default { 38 ], "tournament_id": [ - 3864 + 3863 ], "tournament_team_id": [ - 3864 + 3863 ], "wins": [ 38 ], "__typename": [ - 75 + 74 ] }, "v_team_tournament_results_max_order_by": { "head_to_head_match_wins": [ - 2016 + 2015 ], "head_to_head_rounds_won": [ - 2016 + 2015 ], "losses": [ - 2016 + 2015 ], "maps_lost": [ - 2016 + 2015 ], "maps_won": [ - 2016 + 2015 ], "matches_played": [ - 2016 + 2015 ], "matches_remaining": [ - 2016 + 2015 ], "rounds_lost": [ - 2016 + 2015 ], "rounds_won": [ - 2016 + 2015 ], "team_kdr": [ - 2016 + 2015 ], "total_deaths": [ - 2016 + 2015 ], "total_kills": [ - 2016 + 2015 ], "tournament_id": [ - 2016 + 2015 ], "tournament_team_id": [ - 2016 + 2015 ], "wins": [ - 2016 + 2015 ], "__typename": [ - 75 + 74 ] }, "v_team_tournament_results_min_fields": { @@ -108476,7 +109373,7 @@ export default { 38 ], "team_kdr": [ - 1089 + 1088 ], "total_deaths": [ 38 @@ -108485,122 +109382,122 @@ export default { 38 ], "tournament_id": [ - 3864 + 3863 ], "tournament_team_id": [ - 3864 + 3863 ], "wins": [ 38 ], "__typename": [ - 75 + 74 ] }, "v_team_tournament_results_min_order_by": { "head_to_head_match_wins": [ - 2016 + 2015 ], "head_to_head_rounds_won": [ - 2016 + 2015 ], "losses": [ - 2016 + 2015 ], "maps_lost": [ - 2016 + 2015 ], "maps_won": [ - 2016 + 2015 ], "matches_played": [ - 2016 + 2015 ], "matches_remaining": [ - 2016 + 2015 ], "rounds_lost": [ - 2016 + 2015 ], "rounds_won": [ - 2016 + 2015 ], "team_kdr": [ - 2016 + 2015 ], "total_deaths": [ - 2016 + 2015 ], "total_kills": [ - 2016 + 2015 ], "tournament_id": [ - 2016 + 2015 ], "tournament_team_id": [ - 2016 + 2015 ], "wins": [ - 2016 + 2015 ], "__typename": [ - 75 + 74 ] }, "v_team_tournament_results_order_by": { "head_to_head_match_wins": [ - 2016 + 2015 ], "head_to_head_rounds_won": [ - 2016 + 2015 ], "losses": [ - 2016 + 2015 ], "maps_lost": [ - 2016 + 2015 ], "maps_won": [ - 2016 + 2015 ], "matches_played": [ - 2016 + 2015 ], "matches_remaining": [ - 2016 + 2015 ], "rounds_lost": [ - 2016 + 2015 ], "rounds_won": [ - 2016 + 2015 ], "team": [ - 3709 + 3708 ], "team_kdr": [ - 2016 + 2015 ], "total_deaths": [ - 2016 + 2015 ], "total_kills": [ - 2016 + 2015 ], "tournament": [ - 3840 + 3839 ], "tournament_id": [ - 2016 + 2015 ], "tournament_team_id": [ - 2016 + 2015 ], "wins": [ - 2016 + 2015 ], "__typename": [ - 75 + 74 ] }, "v_team_tournament_results_select_column": {}, @@ -108653,51 +109550,51 @@ export default { 29 ], "__typename": [ - 75 + 74 ] }, "v_team_tournament_results_stddev_order_by": { "head_to_head_match_wins": [ - 2016 + 2015 ], "head_to_head_rounds_won": [ - 2016 + 2015 ], "losses": [ - 2016 + 2015 ], "maps_lost": [ - 2016 + 2015 ], "maps_won": [ - 2016 + 2015 ], "matches_played": [ - 2016 + 2015 ], "matches_remaining": [ - 2016 + 2015 ], "rounds_lost": [ - 2016 + 2015 ], "rounds_won": [ - 2016 + 2015 ], "team_kdr": [ - 2016 + 2015 ], "total_deaths": [ - 2016 + 2015 ], "total_kills": [ - 2016 + 2015 ], "wins": [ - 2016 + 2015 ], "__typename": [ - 75 + 74 ] }, "v_team_tournament_results_stddev_pop_fields": { @@ -108741,51 +109638,51 @@ export default { 29 ], "__typename": [ - 75 + 74 ] }, "v_team_tournament_results_stddev_pop_order_by": { "head_to_head_match_wins": [ - 2016 + 2015 ], "head_to_head_rounds_won": [ - 2016 + 2015 ], "losses": [ - 2016 + 2015 ], "maps_lost": [ - 2016 + 2015 ], "maps_won": [ - 2016 + 2015 ], "matches_played": [ - 2016 + 2015 ], "matches_remaining": [ - 2016 + 2015 ], "rounds_lost": [ - 2016 + 2015 ], "rounds_won": [ - 2016 + 2015 ], "team_kdr": [ - 2016 + 2015 ], "total_deaths": [ - 2016 + 2015 ], "total_kills": [ - 2016 + 2015 ], "wins": [ - 2016 + 2015 ], "__typename": [ - 75 + 74 ] }, "v_team_tournament_results_stddev_samp_fields": { @@ -108829,62 +109726,62 @@ export default { 29 ], "__typename": [ - 75 + 74 ] }, "v_team_tournament_results_stddev_samp_order_by": { "head_to_head_match_wins": [ - 2016 + 2015 ], "head_to_head_rounds_won": [ - 2016 + 2015 ], "losses": [ - 2016 + 2015 ], "maps_lost": [ - 2016 + 2015 ], "maps_won": [ - 2016 + 2015 ], "matches_played": [ - 2016 + 2015 ], "matches_remaining": [ - 2016 + 2015 ], "rounds_lost": [ - 2016 + 2015 ], "rounds_won": [ - 2016 + 2015 ], "team_kdr": [ - 2016 + 2015 ], "total_deaths": [ - 2016 + 2015 ], "total_kills": [ - 2016 + 2015 ], "wins": [ - 2016 + 2015 ], "__typename": [ - 75 + 74 ] }, "v_team_tournament_results_stream_cursor_input": { "initial_value": [ - 4555 + 4554 ], "ordering": [ - 229 + 228 ], "__typename": [ - 75 + 74 ] }, "v_team_tournament_results_stream_cursor_value_input": { @@ -108916,7 +109813,7 @@ export default { 38 ], "team_kdr": [ - 1089 + 1088 ], "total_deaths": [ 38 @@ -108925,16 +109822,16 @@ export default { 38 ], "tournament_id": [ - 3864 + 3863 ], "tournament_team_id": [ - 3864 + 3863 ], "wins": [ 38 ], "__typename": [ - 75 + 74 ] }, "v_team_tournament_results_sum_fields": { @@ -108966,7 +109863,7 @@ export default { 38 ], "team_kdr": [ - 1089 + 1088 ], "total_deaths": [ 38 @@ -108978,51 +109875,51 @@ export default { 38 ], "__typename": [ - 75 + 74 ] }, "v_team_tournament_results_sum_order_by": { "head_to_head_match_wins": [ - 2016 + 2015 ], "head_to_head_rounds_won": [ - 2016 + 2015 ], "losses": [ - 2016 + 2015 ], "maps_lost": [ - 2016 + 2015 ], "maps_won": [ - 2016 + 2015 ], "matches_played": [ - 2016 + 2015 ], "matches_remaining": [ - 2016 + 2015 ], "rounds_lost": [ - 2016 + 2015 ], "rounds_won": [ - 2016 + 2015 ], "team_kdr": [ - 2016 + 2015 ], "total_deaths": [ - 2016 + 2015 ], "total_kills": [ - 2016 + 2015 ], "wins": [ - 2016 + 2015 ], "__typename": [ - 75 + 74 ] }, "v_team_tournament_results_var_pop_fields": { @@ -109066,51 +109963,51 @@ export default { 29 ], "__typename": [ - 75 + 74 ] }, "v_team_tournament_results_var_pop_order_by": { "head_to_head_match_wins": [ - 2016 + 2015 ], "head_to_head_rounds_won": [ - 2016 + 2015 ], "losses": [ - 2016 + 2015 ], "maps_lost": [ - 2016 + 2015 ], "maps_won": [ - 2016 + 2015 ], "matches_played": [ - 2016 + 2015 ], "matches_remaining": [ - 2016 + 2015 ], "rounds_lost": [ - 2016 + 2015 ], "rounds_won": [ - 2016 + 2015 ], "team_kdr": [ - 2016 + 2015 ], "total_deaths": [ - 2016 + 2015 ], "total_kills": [ - 2016 + 2015 ], "wins": [ - 2016 + 2015 ], "__typename": [ - 75 + 74 ] }, "v_team_tournament_results_var_samp_fields": { @@ -109154,51 +110051,51 @@ export default { 29 ], "__typename": [ - 75 + 74 ] }, "v_team_tournament_results_var_samp_order_by": { "head_to_head_match_wins": [ - 2016 + 2015 ], "head_to_head_rounds_won": [ - 2016 + 2015 ], "losses": [ - 2016 + 2015 ], "maps_lost": [ - 2016 + 2015 ], "maps_won": [ - 2016 + 2015 ], "matches_played": [ - 2016 + 2015 ], "matches_remaining": [ - 2016 + 2015 ], "rounds_lost": [ - 2016 + 2015 ], "rounds_won": [ - 2016 + 2015 ], "team_kdr": [ - 2016 + 2015 ], "total_deaths": [ - 2016 + 2015 ], "total_kills": [ - 2016 + 2015 ], "wins": [ - 2016 + 2015 ], "__typename": [ - 75 + 74 ] }, "v_team_tournament_results_variance_fields": { @@ -109242,51 +110139,51 @@ export default { 29 ], "__typename": [ - 75 + 74 ] }, "v_team_tournament_results_variance_order_by": { "head_to_head_match_wins": [ - 2016 + 2015 ], "head_to_head_rounds_won": [ - 2016 + 2015 ], "losses": [ - 2016 + 2015 ], "maps_lost": [ - 2016 + 2015 ], "maps_won": [ - 2016 + 2015 ], "matches_played": [ - 2016 + 2015 ], "matches_remaining": [ - 2016 + 2015 ], "rounds_lost": [ - 2016 + 2015 ], "rounds_won": [ - 2016 + 2015 ], "team_kdr": [ - 2016 + 2015 ], "total_deaths": [ - 2016 + 2015 ], "total_kills": [ - 2016 + 2015 ], "wins": [ - 2016 + 2015 ], "__typename": [ - 75 + 74 ] }, "v_tournament_player_stats": { @@ -109297,13 +110194,13 @@ export default { 38 ], "headshot_percentage": [ - 1089 + 1088 ], "headshots": [ 38 ], "kdr": [ - 1089 + 1088 ], "kills": [ 38 @@ -109312,248 +110209,248 @@ export default { 38 ], "player": [ - 2915 + 2914 ], "player_steam_id": [ - 174 + 173 ], "tournament": [ - 3818 + 3817 ], "tournament_id": [ - 3864 + 3863 ], "__typename": [ - 75 + 74 ] }, "v_tournament_player_stats_aggregate": { "aggregate": [ - 4578 + 4577 ], "nodes": [ - 4564 + 4563 ], "__typename": [ - 75 + 74 ] }, "v_tournament_player_stats_aggregate_bool_exp": { "avg": [ - 4567 + 4566 ], "corr": [ - 4568 + 4567 ], "count": [ - 4570 + 4569 ], "covar_samp": [ - 4571 + 4570 ], "max": [ - 4573 + 4572 ], "min": [ - 4574 + 4573 ], "stddev_samp": [ - 4575 + 4574 ], "sum": [ - 4576 + 4575 ], "var_samp": [ - 4577 + 4576 ], "__typename": [ - 75 + 74 ] }, "v_tournament_player_stats_aggregate_bool_exp_avg": { "arguments": [ - 4591 + 4590 ], "distinct": [ 3 ], "filter": [ - 4583 + 4582 ], "predicate": [ - 1090 + 1089 ], "__typename": [ - 75 + 74 ] }, "v_tournament_player_stats_aggregate_bool_exp_corr": { "arguments": [ - 4569 + 4568 ], "distinct": [ 3 ], "filter": [ - 4583 + 4582 ], "predicate": [ - 1090 + 1089 ], "__typename": [ - 75 + 74 ] }, "v_tournament_player_stats_aggregate_bool_exp_corr_arguments": { "X": [ - 4592 + 4591 ], "Y": [ - 4592 + 4591 ], "__typename": [ - 75 + 74 ] }, "v_tournament_player_stats_aggregate_bool_exp_count": { "arguments": [ - 4590 + 4589 ], "distinct": [ 3 ], "filter": [ - 4583 + 4582 ], "predicate": [ 39 ], "__typename": [ - 75 + 74 ] }, "v_tournament_player_stats_aggregate_bool_exp_covar_samp": { "arguments": [ - 4572 + 4571 ], "distinct": [ 3 ], "filter": [ - 4583 + 4582 ], "predicate": [ - 1090 + 1089 ], "__typename": [ - 75 + 74 ] }, "v_tournament_player_stats_aggregate_bool_exp_covar_samp_arguments": { "X": [ - 4593 + 4592 ], "Y": [ - 4593 + 4592 ], "__typename": [ - 75 + 74 ] }, "v_tournament_player_stats_aggregate_bool_exp_max": { "arguments": [ - 4594 + 4593 ], "distinct": [ 3 ], "filter": [ - 4583 + 4582 ], "predicate": [ - 1090 + 1089 ], "__typename": [ - 75 + 74 ] }, "v_tournament_player_stats_aggregate_bool_exp_min": { "arguments": [ - 4595 + 4594 ], "distinct": [ 3 ], "filter": [ - 4583 + 4582 ], "predicate": [ - 1090 + 1089 ], "__typename": [ - 75 + 74 ] }, "v_tournament_player_stats_aggregate_bool_exp_stddev_samp": { "arguments": [ - 4596 + 4595 ], "distinct": [ 3 ], "filter": [ - 4583 + 4582 ], "predicate": [ - 1090 + 1089 ], "__typename": [ - 75 + 74 ] }, "v_tournament_player_stats_aggregate_bool_exp_sum": { "arguments": [ - 4597 + 4596 ], "distinct": [ 3 ], "filter": [ - 4583 + 4582 ], "predicate": [ - 1090 + 1089 ], "__typename": [ - 75 + 74 ] }, "v_tournament_player_stats_aggregate_bool_exp_var_samp": { "arguments": [ - 4598 + 4597 ], "distinct": [ 3 ], "filter": [ - 4583 + 4582 ], "predicate": [ - 1090 + 1089 ], "__typename": [ - 75 + 74 ] }, "v_tournament_player_stats_aggregate_fields": { "avg": [ - 4581 + 4580 ], "count": [ 38, { "columns": [ - 4590, + 4589, "[v_tournament_player_stats_select_column!]" ], "distinct": [ @@ -109562,80 +110459,80 @@ export default { } ], "max": [ - 4585 + 4584 ], "min": [ - 4587 + 4586 ], "stddev": [ - 4599 + 4598 ], "stddev_pop": [ - 4601 + 4600 ], "stddev_samp": [ - 4603 + 4602 ], "sum": [ - 4607 + 4606 ], "var_pop": [ - 4609 + 4608 ], "var_samp": [ - 4611 + 4610 ], "variance": [ - 4613 + 4612 ], "__typename": [ - 75 + 74 ] }, "v_tournament_player_stats_aggregate_order_by": { "avg": [ - 4582 + 4581 ], "count": [ - 2016 + 2015 ], "max": [ - 4586 + 4585 ], "min": [ - 4588 + 4587 ], "stddev": [ - 4600 + 4599 ], "stddev_pop": [ - 4602 + 4601 ], "stddev_samp": [ - 4604 + 4603 ], "sum": [ - 4608 + 4607 ], "var_pop": [ - 4610 + 4609 ], "var_samp": [ - 4612 + 4611 ], "variance": [ - 4614 + 4613 ], "__typename": [ - 75 + 74 ] }, "v_tournament_player_stats_arr_rel_insert_input": { "data": [ - 4584 + 4583 ], "__typename": [ - 75 + 74 ] }, "v_tournament_player_stats_avg_fields": { @@ -109664,47 +110561,47 @@ export default { 29 ], "__typename": [ - 75 + 74 ] }, "v_tournament_player_stats_avg_order_by": { "assists": [ - 2016 + 2015 ], "deaths": [ - 2016 + 2015 ], "headshot_percentage": [ - 2016 + 2015 ], "headshots": [ - 2016 + 2015 ], "kdr": [ - 2016 + 2015 ], "kills": [ - 2016 + 2015 ], "matches_played": [ - 2016 + 2015 ], "player_steam_id": [ - 2016 + 2015 ], "__typename": [ - 75 + 74 ] }, "v_tournament_player_stats_bool_exp": { "_and": [ - 4583 + 4582 ], "_not": [ - 4583 + 4582 ], "_or": [ - 4583 + 4582 ], "assists": [ 39 @@ -109713,13 +110610,13 @@ export default { 39 ], "headshot_percentage": [ - 1090 + 1089 ], "headshots": [ 39 ], "kdr": [ - 1090 + 1089 ], "kills": [ 39 @@ -109728,19 +110625,19 @@ export default { 39 ], "player": [ - 2919 + 2918 ], "player_steam_id": [ - 176 + 175 ], "tournament": [ - 3829 + 3828 ], "tournament_id": [ - 3866 + 3865 ], "__typename": [ - 75 + 74 ] }, "v_tournament_player_stats_insert_input": { @@ -109751,13 +110648,13 @@ export default { 38 ], "headshot_percentage": [ - 1089 + 1088 ], "headshots": [ 38 ], "kdr": [ - 1089 + 1088 ], "kills": [ 38 @@ -109766,19 +110663,19 @@ export default { 38 ], "player": [ - 2926 + 2925 ], "player_steam_id": [ - 174 + 173 ], "tournament": [ - 3838 + 3837 ], "tournament_id": [ - 3864 + 3863 ], "__typename": [ - 75 + 74 ] }, "v_tournament_player_stats_max_fields": { @@ -109789,13 +110686,13 @@ export default { 38 ], "headshot_percentage": [ - 1089 + 1088 ], "headshots": [ 38 ], "kdr": [ - 1089 + 1088 ], "kills": [ 38 @@ -109804,45 +110701,45 @@ export default { 38 ], "player_steam_id": [ - 174 + 173 ], "tournament_id": [ - 3864 + 3863 ], "__typename": [ - 75 + 74 ] }, "v_tournament_player_stats_max_order_by": { "assists": [ - 2016 + 2015 ], "deaths": [ - 2016 + 2015 ], "headshot_percentage": [ - 2016 + 2015 ], "headshots": [ - 2016 + 2015 ], "kdr": [ - 2016 + 2015 ], "kills": [ - 2016 + 2015 ], "matches_played": [ - 2016 + 2015 ], "player_steam_id": [ - 2016 + 2015 ], "tournament_id": [ - 2016 + 2015 ], "__typename": [ - 75 + 74 ] }, "v_tournament_player_stats_min_fields": { @@ -109853,13 +110750,13 @@ export default { 38 ], "headshot_percentage": [ - 1089 + 1088 ], "headshots": [ 38 ], "kdr": [ - 1089 + 1088 ], "kills": [ 38 @@ -109868,83 +110765,83 @@ export default { 38 ], "player_steam_id": [ - 174 + 173 ], "tournament_id": [ - 3864 + 3863 ], "__typename": [ - 75 + 74 ] }, "v_tournament_player_stats_min_order_by": { "assists": [ - 2016 + 2015 ], "deaths": [ - 2016 + 2015 ], "headshot_percentage": [ - 2016 + 2015 ], "headshots": [ - 2016 + 2015 ], "kdr": [ - 2016 + 2015 ], "kills": [ - 2016 + 2015 ], "matches_played": [ - 2016 + 2015 ], "player_steam_id": [ - 2016 + 2015 ], "tournament_id": [ - 2016 + 2015 ], "__typename": [ - 75 + 74 ] }, "v_tournament_player_stats_order_by": { "assists": [ - 2016 + 2015 ], "deaths": [ - 2016 + 2015 ], "headshot_percentage": [ - 2016 + 2015 ], "headshots": [ - 2016 + 2015 ], "kdr": [ - 2016 + 2015 ], "kills": [ - 2016 + 2015 ], "matches_played": [ - 2016 + 2015 ], "player": [ - 2928 + 2927 ], "player_steam_id": [ - 2016 + 2015 ], "tournament": [ - 3840 + 3839 ], "tournament_id": [ - 2016 + 2015 ], "__typename": [ - 75 + 74 ] }, "v_tournament_player_stats_select_column": {}, @@ -109982,36 +110879,36 @@ export default { 29 ], "__typename": [ - 75 + 74 ] }, "v_tournament_player_stats_stddev_order_by": { "assists": [ - 2016 + 2015 ], "deaths": [ - 2016 + 2015 ], "headshot_percentage": [ - 2016 + 2015 ], "headshots": [ - 2016 + 2015 ], "kdr": [ - 2016 + 2015 ], "kills": [ - 2016 + 2015 ], "matches_played": [ - 2016 + 2015 ], "player_steam_id": [ - 2016 + 2015 ], "__typename": [ - 75 + 74 ] }, "v_tournament_player_stats_stddev_pop_fields": { @@ -110040,36 +110937,36 @@ export default { 29 ], "__typename": [ - 75 + 74 ] }, "v_tournament_player_stats_stddev_pop_order_by": { "assists": [ - 2016 + 2015 ], "deaths": [ - 2016 + 2015 ], "headshot_percentage": [ - 2016 + 2015 ], "headshots": [ - 2016 + 2015 ], "kdr": [ - 2016 + 2015 ], "kills": [ - 2016 + 2015 ], "matches_played": [ - 2016 + 2015 ], "player_steam_id": [ - 2016 + 2015 ], "__typename": [ - 75 + 74 ] }, "v_tournament_player_stats_stddev_samp_fields": { @@ -110098,47 +110995,47 @@ export default { 29 ], "__typename": [ - 75 + 74 ] }, "v_tournament_player_stats_stddev_samp_order_by": { "assists": [ - 2016 + 2015 ], "deaths": [ - 2016 + 2015 ], "headshot_percentage": [ - 2016 + 2015 ], "headshots": [ - 2016 + 2015 ], "kdr": [ - 2016 + 2015 ], "kills": [ - 2016 + 2015 ], "matches_played": [ - 2016 + 2015 ], "player_steam_id": [ - 2016 + 2015 ], "__typename": [ - 75 + 74 ] }, "v_tournament_player_stats_stream_cursor_input": { "initial_value": [ - 4606 + 4605 ], "ordering": [ - 229 + 228 ], "__typename": [ - 75 + 74 ] }, "v_tournament_player_stats_stream_cursor_value_input": { @@ -110149,13 +111046,13 @@ export default { 38 ], "headshot_percentage": [ - 1089 + 1088 ], "headshots": [ 38 ], "kdr": [ - 1089 + 1088 ], "kills": [ 38 @@ -110164,13 +111061,13 @@ export default { 38 ], "player_steam_id": [ - 174 + 173 ], "tournament_id": [ - 3864 + 3863 ], "__typename": [ - 75 + 74 ] }, "v_tournament_player_stats_sum_fields": { @@ -110181,13 +111078,13 @@ export default { 38 ], "headshot_percentage": [ - 1089 + 1088 ], "headshots": [ 38 ], "kdr": [ - 1089 + 1088 ], "kills": [ 38 @@ -110196,39 +111093,39 @@ export default { 38 ], "player_steam_id": [ - 174 + 173 ], "__typename": [ - 75 + 74 ] }, "v_tournament_player_stats_sum_order_by": { "assists": [ - 2016 + 2015 ], "deaths": [ - 2016 + 2015 ], "headshot_percentage": [ - 2016 + 2015 ], "headshots": [ - 2016 + 2015 ], "kdr": [ - 2016 + 2015 ], "kills": [ - 2016 + 2015 ], "matches_played": [ - 2016 + 2015 ], "player_steam_id": [ - 2016 + 2015 ], "__typename": [ - 75 + 74 ] }, "v_tournament_player_stats_var_pop_fields": { @@ -110257,36 +111154,36 @@ export default { 29 ], "__typename": [ - 75 + 74 ] }, "v_tournament_player_stats_var_pop_order_by": { "assists": [ - 2016 + 2015 ], "deaths": [ - 2016 + 2015 ], "headshot_percentage": [ - 2016 + 2015 ], "headshots": [ - 2016 + 2015 ], "kdr": [ - 2016 + 2015 ], "kills": [ - 2016 + 2015 ], "matches_played": [ - 2016 + 2015 ], "player_steam_id": [ - 2016 + 2015 ], "__typename": [ - 75 + 74 ] }, "v_tournament_player_stats_var_samp_fields": { @@ -110315,36 +111212,36 @@ export default { 29 ], "__typename": [ - 75 + 74 ] }, "v_tournament_player_stats_var_samp_order_by": { "assists": [ - 2016 + 2015 ], "deaths": [ - 2016 + 2015 ], "headshot_percentage": [ - 2016 + 2015 ], "headshots": [ - 2016 + 2015 ], "kdr": [ - 2016 + 2015 ], "kills": [ - 2016 + 2015 ], "matches_played": [ - 2016 + 2015 ], "player_steam_id": [ - 2016 + 2015 ], "__typename": [ - 75 + 74 ] }, "v_tournament_player_stats_variance_fields": { @@ -110373,44 +111270,44 @@ export default { 29 ], "__typename": [ - 75 + 74 ] }, "v_tournament_player_stats_variance_order_by": { "assists": [ - 2016 + 2015 ], "deaths": [ - 2016 + 2015 ], "headshot_percentage": [ - 2016 + 2015 ], "headshots": [ - 2016 + 2015 ], "kdr": [ - 2016 + 2015 ], "kills": [ - 2016 + 2015 ], "matches_played": [ - 2016 + 2015 ], "player_steam_id": [ - 2016 + 2015 ], "__typename": [ - 75 + 74 ] }, "Query": { "_map_pool": [ - 88, + 87, { "distinct_on": [ - 100, + 99, "[_map_pool_select_column!]" ], "limit": [ @@ -110420,19 +111317,19 @@ export default { 38 ], "order_by": [ - 98, + 97, "[_map_pool_order_by!]" ], "where": [ - 91 + 90 ] } ], "_map_pool_aggregate": [ - 89, + 88, { "distinct_on": [ - 100, + 99, "[_map_pool_select_column!]" ], "limit": [ @@ -110442,32 +111339,32 @@ export default { 38 ], "order_by": [ - 98, + 97, "[_map_pool_order_by!]" ], "where": [ - 91 + 90 ] } ], "_map_pool_by_pk": [ - 88, + 87, { "map_id": [ - 3864, + 3863, "uuid!" ], "map_pool_id": [ - 3864, + 3863, "uuid!" ] } ], "abandoned_matches": [ - 106, + 105, { "distinct_on": [ - 127, + 126, "[abandoned_matches_select_column!]" ], "limit": [ @@ -110477,19 +111374,19 @@ export default { 38 ], "order_by": [ - 125, + 124, "[abandoned_matches_order_by!]" ], "where": [ - 115 + 114 ] } ], "abandoned_matches_aggregate": [ - 107, + 106, { "distinct_on": [ - 127, + 126, "[abandoned_matches_select_column!]" ], "limit": [ @@ -110499,28 +111396,28 @@ export default { 38 ], "order_by": [ - 125, + 124, "[abandoned_matches_order_by!]" ], "where": [ - 115 + 114 ] } ], "abandoned_matches_by_pk": [ - 106, + 105, { "id": [ - 3864, + 3863, "uuid!" ] } ], "api_keys": [ - 147, + 146, { "distinct_on": [ - 161, + 160, "[api_keys_select_column!]" ], "limit": [ @@ -110530,19 +111427,19 @@ export default { 38 ], "order_by": [ - 159, + 158, "[api_keys_order_by!]" ], "where": [ - 151 + 150 ] } ], "api_keys_aggregate": [ - 148, + 147, { "distinct_on": [ - 161, + 160, "[api_keys_select_column!]" ], "limit": [ @@ -110552,28 +111449,28 @@ export default { 38 ], "order_by": [ - 159, + 158, "[api_keys_order_by!]" ], "where": [ - 151 + 150 ] } ], "api_keys_by_pk": [ - 147, + 146, { "id": [ - 3864, + 3863, "uuid!" ] } ], "clip_render_jobs": [ - 179, + 178, { "distinct_on": [ - 207, + 206, "[clip_render_jobs_select_column!]" ], "limit": [ @@ -110583,19 +111480,19 @@ export default { 38 ], "order_by": [ - 204, + 203, "[clip_render_jobs_order_by!]" ], "where": [ - 191 + 190 ] } ], "clip_render_jobs_aggregate": [ - 180, + 179, { "distinct_on": [ - 207, + 206, "[clip_render_jobs_select_column!]" ], "limit": [ @@ -110605,19 +111502,19 @@ export default { 38 ], "order_by": [ - 204, + 203, "[clip_render_jobs_order_by!]" ], "where": [ - 191 + 190 ] } ], "clip_render_jobs_by_pk": [ - 179, + 178, { "id": [ - 3864, + 3863, "uuid!" ] } @@ -110626,10 +111523,10 @@ export default { 17 ], "db_backups": [ - 230, + 229, { "distinct_on": [ - 244, + 243, "[db_backups_select_column!]" ], "limit": [ @@ -110639,19 +111536,19 @@ export default { 38 ], "order_by": [ - 242, + 241, "[db_backups_order_by!]" ], "where": [ - 234 + 233 ] } ], "db_backups_aggregate": [ - 231, + 230, { "distinct_on": [ - 244, + 243, "[db_backups_select_column!]" ], "limit": [ @@ -110661,28 +111558,28 @@ export default { 38 ], "order_by": [ - 242, + 241, "[db_backups_order_by!]" ], "where": [ - 234 + 233 ] } ], "db_backups_by_pk": [ - 230, + 229, { "id": [ - 3864, + 3863, "uuid!" ] } ], "draft_game_picks": [ - 257, + 256, { "distinct_on": [ - 280, + 279, "[draft_game_picks_select_column!]" ], "limit": [ @@ -110692,19 +111589,19 @@ export default { 38 ], "order_by": [ - 278, + 277, "[draft_game_picks_order_by!]" ], "where": [ - 268 + 267 ] } ], "draft_game_picks_aggregate": [ - 258, + 257, { "distinct_on": [ - 280, + 279, "[draft_game_picks_select_column!]" ], "limit": [ @@ -110714,28 +111611,28 @@ export default { 38 ], "order_by": [ - 278, + 277, "[draft_game_picks_order_by!]" ], "where": [ - 268 + 267 ] } ], "draft_game_picks_by_pk": [ - 257, + 256, { "id": [ - 3864, + 3863, "uuid!" ] } ], "draft_game_players": [ - 302, + 301, { "distinct_on": [ - 325, + 324, "[draft_game_players_select_column!]" ], "limit": [ @@ -110745,19 +111642,19 @@ export default { 38 ], "order_by": [ - 323, + 322, "[draft_game_players_order_by!]" ], "where": [ - 313 + 312 ] } ], "draft_game_players_aggregate": [ - 303, + 302, { "distinct_on": [ - 325, + 324, "[draft_game_players_select_column!]" ], "limit": [ @@ -110767,32 +111664,32 @@ export default { 38 ], "order_by": [ - 323, + 322, "[draft_game_players_order_by!]" ], "where": [ - 313 + 312 ] } ], "draft_game_players_by_pk": [ - 302, + 301, { "draft_game_id": [ - 3864, + 3863, "uuid!" ], "steam_id": [ - 174, + 173, "bigint!" ] } ], "draft_games": [ - 347, + 346, { "distinct_on": [ - 371, + 370, "[draft_games_select_column!]" ], "limit": [ @@ -110802,19 +111699,19 @@ export default { 38 ], "order_by": [ - 369, + 368, "[draft_games_order_by!]" ], "where": [ - 358 + 357 ] } ], "draft_games_aggregate": [ - 348, + 347, { "distinct_on": [ - 371, + 370, "[draft_games_select_column!]" ], "limit": [ @@ -110824,28 +111721,28 @@ export default { 38 ], "order_by": [ - 369, + 368, "[draft_games_order_by!]" ], "where": [ - 358 + 357 ] } ], "draft_games_by_pk": [ - 347, + 346, { "id": [ - 3864, + 3863, "uuid!" ] } ], "e_check_in_settings": [ - 393, + 392, { "distinct_on": [ - 407, + 406, "[e_check_in_settings_select_column!]" ], "limit": [ @@ -110855,19 +111752,19 @@ export default { 38 ], "order_by": [ - 405, + 404, "[e_check_in_settings_order_by!]" ], "where": [ - 396 + 395 ] } ], "e_check_in_settings_aggregate": [ - 394, + 393, { "distinct_on": [ - 407, + 406, "[e_check_in_settings_select_column!]" ], "limit": [ @@ -110877,28 +111774,28 @@ export default { 38 ], "order_by": [ - 405, + 404, "[e_check_in_settings_order_by!]" ], "where": [ - 396 + 395 ] } ], "e_check_in_settings_by_pk": [ - 393, + 392, { "value": [ - 75, + 74, "String!" ] } ], "e_draft_game_captain_selection": [ - 413, + 412, { "distinct_on": [ - 428, + 427, "[e_draft_game_captain_selection_select_column!]" ], "limit": [ @@ -110908,19 +111805,19 @@ export default { 38 ], "order_by": [ - 426, + 425, "[e_draft_game_captain_selection_order_by!]" ], "where": [ - 416 + 415 ] } ], "e_draft_game_captain_selection_aggregate": [ - 414, + 413, { "distinct_on": [ - 428, + 427, "[e_draft_game_captain_selection_select_column!]" ], "limit": [ @@ -110930,28 +111827,28 @@ export default { 38 ], "order_by": [ - 426, + 425, "[e_draft_game_captain_selection_order_by!]" ], "where": [ - 416 + 415 ] } ], "e_draft_game_captain_selection_by_pk": [ - 413, + 412, { "value": [ - 75, + 74, "String!" ] } ], "e_draft_game_draft_order": [ - 434, + 433, { "distinct_on": [ - 449, + 448, "[e_draft_game_draft_order_select_column!]" ], "limit": [ @@ -110961,19 +111858,19 @@ export default { 38 ], "order_by": [ - 447, + 446, "[e_draft_game_draft_order_order_by!]" ], "where": [ - 437 + 436 ] } ], "e_draft_game_draft_order_aggregate": [ - 435, + 434, { "distinct_on": [ - 449, + 448, "[e_draft_game_draft_order_select_column!]" ], "limit": [ @@ -110983,28 +111880,28 @@ export default { 38 ], "order_by": [ - 447, + 446, "[e_draft_game_draft_order_order_by!]" ], "where": [ - 437 + 436 ] } ], "e_draft_game_draft_order_by_pk": [ - 434, + 433, { "value": [ - 75, + 74, "String!" ] } ], "e_draft_game_mode": [ - 455, + 454, { "distinct_on": [ - 470, + 469, "[e_draft_game_mode_select_column!]" ], "limit": [ @@ -111014,19 +111911,19 @@ export default { 38 ], "order_by": [ - 468, + 467, "[e_draft_game_mode_order_by!]" ], "where": [ - 458 + 457 ] } ], "e_draft_game_mode_aggregate": [ - 456, + 455, { "distinct_on": [ - 470, + 469, "[e_draft_game_mode_select_column!]" ], "limit": [ @@ -111036,28 +111933,28 @@ export default { 38 ], "order_by": [ - 468, + 467, "[e_draft_game_mode_order_by!]" ], "where": [ - 458 + 457 ] } ], "e_draft_game_mode_by_pk": [ - 455, + 454, { "value": [ - 75, + 74, "String!" ] } ], "e_draft_game_player_status": [ - 476, + 475, { "distinct_on": [ - 491, + 490, "[e_draft_game_player_status_select_column!]" ], "limit": [ @@ -111067,19 +111964,19 @@ export default { 38 ], "order_by": [ - 489, + 488, "[e_draft_game_player_status_order_by!]" ], "where": [ - 479 + 478 ] } ], "e_draft_game_player_status_aggregate": [ - 477, + 476, { "distinct_on": [ - 491, + 490, "[e_draft_game_player_status_select_column!]" ], "limit": [ @@ -111089,28 +111986,28 @@ export default { 38 ], "order_by": [ - 489, + 488, "[e_draft_game_player_status_order_by!]" ], "where": [ - 479 + 478 ] } ], "e_draft_game_player_status_by_pk": [ - 476, + 475, { "value": [ - 75, + 74, "String!" ] } ], "e_draft_game_status": [ - 497, + 496, { "distinct_on": [ - 512, + 511, "[e_draft_game_status_select_column!]" ], "limit": [ @@ -111120,19 +112017,19 @@ export default { 38 ], "order_by": [ - 510, + 509, "[e_draft_game_status_order_by!]" ], "where": [ - 500 + 499 ] } ], "e_draft_game_status_aggregate": [ - 498, + 497, { "distinct_on": [ - 512, + 511, "[e_draft_game_status_select_column!]" ], "limit": [ @@ -111142,28 +112039,28 @@ export default { 38 ], "order_by": [ - 510, + 509, "[e_draft_game_status_order_by!]" ], "where": [ - 500 + 499 ] } ], "e_draft_game_status_by_pk": [ - 497, + 496, { "value": [ - 75, + 74, "String!" ] } ], "e_friend_status": [ - 518, + 517, { "distinct_on": [ - 533, + 532, "[e_friend_status_select_column!]" ], "limit": [ @@ -111173,19 +112070,19 @@ export default { 38 ], "order_by": [ - 531, + 530, "[e_friend_status_order_by!]" ], "where": [ - 521 + 520 ] } ], "e_friend_status_aggregate": [ - 519, + 518, { "distinct_on": [ - 533, + 532, "[e_friend_status_select_column!]" ], "limit": [ @@ -111195,28 +112092,28 @@ export default { 38 ], "order_by": [ - 531, + 530, "[e_friend_status_order_by!]" ], "where": [ - 521 + 520 ] } ], "e_friend_status_by_pk": [ - 518, + 517, { "value": [ - 75, + 74, "String!" ] } ], "e_game_cfg_types": [ - 539, + 538, { "distinct_on": [ - 553, + 552, "[e_game_cfg_types_select_column!]" ], "limit": [ @@ -111226,19 +112123,19 @@ export default { 38 ], "order_by": [ - 551, + 550, "[e_game_cfg_types_order_by!]" ], "where": [ - 542 + 541 ] } ], "e_game_cfg_types_aggregate": [ - 540, + 539, { "distinct_on": [ - 553, + 552, "[e_game_cfg_types_select_column!]" ], "limit": [ @@ -111248,28 +112145,28 @@ export default { 38 ], "order_by": [ - 551, + 550, "[e_game_cfg_types_order_by!]" ], "where": [ - 542 + 541 ] } ], "e_game_cfg_types_by_pk": [ - 539, + 538, { "value": [ - 75, + 74, "String!" ] } ], "e_game_server_node_statuses": [ - 559, + 558, { "distinct_on": [ - 574, + 573, "[e_game_server_node_statuses_select_column!]" ], "limit": [ @@ -111279,19 +112176,19 @@ export default { 38 ], "order_by": [ - 572, + 571, "[e_game_server_node_statuses_order_by!]" ], "where": [ - 562 + 561 ] } ], "e_game_server_node_statuses_aggregate": [ - 560, + 559, { "distinct_on": [ - 574, + 573, "[e_game_server_node_statuses_select_column!]" ], "limit": [ @@ -111301,28 +112198,28 @@ export default { 38 ], "order_by": [ - 572, + 571, "[e_game_server_node_statuses_order_by!]" ], "where": [ - 562 + 561 ] } ], "e_game_server_node_statuses_by_pk": [ - 559, + 558, { "value": [ - 75, + 74, "String!" ] } ], "e_lobby_access": [ - 580, + 579, { "distinct_on": [ - 595, + 594, "[e_lobby_access_select_column!]" ], "limit": [ @@ -111332,19 +112229,19 @@ export default { 38 ], "order_by": [ - 593, + 592, "[e_lobby_access_order_by!]" ], "where": [ - 583 + 582 ] } ], "e_lobby_access_aggregate": [ - 581, + 580, { "distinct_on": [ - 595, + 594, "[e_lobby_access_select_column!]" ], "limit": [ @@ -111354,28 +112251,28 @@ export default { 38 ], "order_by": [ - 593, + 592, "[e_lobby_access_order_by!]" ], "where": [ - 583 + 582 ] } ], "e_lobby_access_by_pk": [ - 580, + 579, { "value": [ - 75, + 74, "String!" ] } ], "e_lobby_player_status": [ - 601, + 600, { "distinct_on": [ - 615, + 614, "[e_lobby_player_status_select_column!]" ], "limit": [ @@ -111385,19 +112282,19 @@ export default { 38 ], "order_by": [ - 613, + 612, "[e_lobby_player_status_order_by!]" ], "where": [ - 604 + 603 ] } ], "e_lobby_player_status_aggregate": [ - 602, + 601, { "distinct_on": [ - 615, + 614, "[e_lobby_player_status_select_column!]" ], "limit": [ @@ -111407,28 +112304,28 @@ export default { 38 ], "order_by": [ - 613, + 612, "[e_lobby_player_status_order_by!]" ], "where": [ - 604 + 603 ] } ], "e_lobby_player_status_by_pk": [ - 601, + 600, { "value": [ - 75, + 74, "String!" ] } ], "e_map_pool_types": [ - 621, + 620, { "distinct_on": [ - 636, + 635, "[e_map_pool_types_select_column!]" ], "limit": [ @@ -111438,19 +112335,19 @@ export default { 38 ], "order_by": [ - 634, + 633, "[e_map_pool_types_order_by!]" ], "where": [ - 624 + 623 ] } ], "e_map_pool_types_aggregate": [ - 622, + 621, { "distinct_on": [ - 636, + 635, "[e_map_pool_types_select_column!]" ], "limit": [ @@ -111460,28 +112357,28 @@ export default { 38 ], "order_by": [ - 634, + 633, "[e_map_pool_types_order_by!]" ], "where": [ - 624 + 623 ] } ], "e_map_pool_types_by_pk": [ - 621, + 620, { "value": [ - 75, + 74, "String!" ] } ], "e_match_clip_visibility": [ - 642, + 641, { "distinct_on": [ - 656, + 655, "[e_match_clip_visibility_select_column!]" ], "limit": [ @@ -111491,19 +112388,19 @@ export default { 38 ], "order_by": [ - 654, + 653, "[e_match_clip_visibility_order_by!]" ], "where": [ - 645 + 644 ] } ], "e_match_clip_visibility_aggregate": [ - 643, + 642, { "distinct_on": [ - 656, + 655, "[e_match_clip_visibility_select_column!]" ], "limit": [ @@ -111513,28 +112410,28 @@ export default { 38 ], "order_by": [ - 654, + 653, "[e_match_clip_visibility_order_by!]" ], "where": [ - 645 + 644 ] } ], "e_match_clip_visibility_by_pk": [ - 642, + 641, { "value": [ - 75, + 74, "String!" ] } ], "e_match_map_status": [ - 662, + 661, { "distinct_on": [ - 677, + 676, "[e_match_map_status_select_column!]" ], "limit": [ @@ -111544,19 +112441,19 @@ export default { 38 ], "order_by": [ - 675, + 674, "[e_match_map_status_order_by!]" ], "where": [ - 665 + 664 ] } ], "e_match_map_status_aggregate": [ - 663, + 662, { "distinct_on": [ - 677, + 676, "[e_match_map_status_select_column!]" ], "limit": [ @@ -111566,28 +112463,28 @@ export default { 38 ], "order_by": [ - 675, + 674, "[e_match_map_status_order_by!]" ], "where": [ - 665 + 664 ] } ], "e_match_map_status_by_pk": [ - 662, + 661, { "value": [ - 75, + 74, "String!" ] } ], "e_match_mode": [ - 683, + 682, { "distinct_on": [ - 697, + 696, "[e_match_mode_select_column!]" ], "limit": [ @@ -111597,19 +112494,19 @@ export default { 38 ], "order_by": [ - 695, + 694, "[e_match_mode_order_by!]" ], "where": [ - 686 + 685 ] } ], "e_match_mode_aggregate": [ - 684, + 683, { "distinct_on": [ - 697, + 696, "[e_match_mode_select_column!]" ], "limit": [ @@ -111619,28 +112516,28 @@ export default { 38 ], "order_by": [ - 695, + 694, "[e_match_mode_order_by!]" ], "where": [ - 686 + 685 ] } ], "e_match_mode_by_pk": [ - 683, + 682, { "value": [ - 75, + 74, "String!" ] } ], "e_match_status": [ - 703, + 702, { "distinct_on": [ - 718, + 717, "[e_match_status_select_column!]" ], "limit": [ @@ -111650,19 +112547,19 @@ export default { 38 ], "order_by": [ - 716, + 715, "[e_match_status_order_by!]" ], "where": [ - 706 + 705 ] } ], "e_match_status_aggregate": [ - 704, + 703, { "distinct_on": [ - 718, + 717, "[e_match_status_select_column!]" ], "limit": [ @@ -111672,28 +112569,28 @@ export default { 38 ], "order_by": [ - 716, + 715, "[e_match_status_order_by!]" ], "where": [ - 706 + 705 ] } ], "e_match_status_by_pk": [ - 703, + 702, { "value": [ - 75, + 74, "String!" ] } ], "e_match_types": [ - 724, + 723, { "distinct_on": [ - 739, + 738, "[e_match_types_select_column!]" ], "limit": [ @@ -111703,19 +112600,19 @@ export default { 38 ], "order_by": [ - 737, + 736, "[e_match_types_order_by!]" ], "where": [ - 727 + 726 ] } ], "e_match_types_aggregate": [ - 725, + 724, { "distinct_on": [ - 739, + 738, "[e_match_types_select_column!]" ], "limit": [ @@ -111725,28 +112622,28 @@ export default { 38 ], "order_by": [ - 737, + 736, "[e_match_types_order_by!]" ], "where": [ - 727 + 726 ] } ], "e_match_types_by_pk": [ - 724, + 723, { "value": [ - 75, + 74, "String!" ] } ], "e_notification_types": [ - 745, + 744, { "distinct_on": [ - 759, + 758, "[e_notification_types_select_column!]" ], "limit": [ @@ -111756,19 +112653,19 @@ export default { 38 ], "order_by": [ - 757, + 756, "[e_notification_types_order_by!]" ], "where": [ - 748 + 747 ] } ], "e_notification_types_aggregate": [ - 746, + 745, { "distinct_on": [ - 759, + 758, "[e_notification_types_select_column!]" ], "limit": [ @@ -111778,28 +112675,28 @@ export default { 38 ], "order_by": [ - 757, + 756, "[e_notification_types_order_by!]" ], "where": [ - 748 + 747 ] } ], "e_notification_types_by_pk": [ - 745, + 744, { "value": [ - 75, + 74, "String!" ] } ], "e_objective_types": [ - 765, + 764, { "distinct_on": [ - 779, + 778, "[e_objective_types_select_column!]" ], "limit": [ @@ -111809,19 +112706,19 @@ export default { 38 ], "order_by": [ - 777, + 776, "[e_objective_types_order_by!]" ], "where": [ - 768 + 767 ] } ], "e_objective_types_aggregate": [ - 766, + 765, { "distinct_on": [ - 779, + 778, "[e_objective_types_select_column!]" ], "limit": [ @@ -111831,28 +112728,28 @@ export default { 38 ], "order_by": [ - 777, + 776, "[e_objective_types_order_by!]" ], "where": [ - 768 + 767 ] } ], "e_objective_types_by_pk": [ - 765, + 764, { "value": [ - 75, + 74, "String!" ] } ], "e_player_roles": [ - 785, + 784, { "distinct_on": [ - 799, + 798, "[e_player_roles_select_column!]" ], "limit": [ @@ -111862,19 +112759,19 @@ export default { 38 ], "order_by": [ - 797, + 796, "[e_player_roles_order_by!]" ], "where": [ - 788 + 787 ] } ], "e_player_roles_aggregate": [ - 786, + 785, { "distinct_on": [ - 799, + 798, "[e_player_roles_select_column!]" ], "limit": [ @@ -111884,28 +112781,28 @@ export default { 38 ], "order_by": [ - 797, + 796, "[e_player_roles_order_by!]" ], "where": [ - 788 + 787 ] } ], "e_player_roles_by_pk": [ - 785, + 784, { "value": [ - 75, + 74, "String!" ] } ], "e_ready_settings": [ - 805, + 804, { "distinct_on": [ - 819, + 818, "[e_ready_settings_select_column!]" ], "limit": [ @@ -111915,19 +112812,19 @@ export default { 38 ], "order_by": [ - 817, + 816, "[e_ready_settings_order_by!]" ], "where": [ - 808 + 807 ] } ], "e_ready_settings_aggregate": [ - 806, + 805, { "distinct_on": [ - 819, + 818, "[e_ready_settings_select_column!]" ], "limit": [ @@ -111937,28 +112834,28 @@ export default { 38 ], "order_by": [ - 817, + 816, "[e_ready_settings_order_by!]" ], "where": [ - 808 + 807 ] } ], "e_ready_settings_by_pk": [ - 805, + 804, { "value": [ - 75, + 74, "String!" ] } ], "e_sanction_types": [ - 825, + 824, { "distinct_on": [ - 840, + 839, "[e_sanction_types_select_column!]" ], "limit": [ @@ -111968,19 +112865,19 @@ export default { 38 ], "order_by": [ - 838, + 837, "[e_sanction_types_order_by!]" ], "where": [ - 828 + 827 ] } ], "e_sanction_types_aggregate": [ - 826, + 825, { "distinct_on": [ - 840, + 839, "[e_sanction_types_select_column!]" ], "limit": [ @@ -111990,28 +112887,28 @@ export default { 38 ], "order_by": [ - 838, + 837, "[e_sanction_types_order_by!]" ], "where": [ - 828 + 827 ] } ], "e_sanction_types_by_pk": [ - 825, + 824, { "value": [ - 75, + 74, "String!" ] } ], "e_scrim_request_statuses": [ - 846, + 845, { "distinct_on": [ - 860, + 859, "[e_scrim_request_statuses_select_column!]" ], "limit": [ @@ -112021,19 +112918,19 @@ export default { 38 ], "order_by": [ - 858, + 857, "[e_scrim_request_statuses_order_by!]" ], "where": [ - 849 + 848 ] } ], "e_scrim_request_statuses_aggregate": [ - 847, + 846, { "distinct_on": [ - 860, + 859, "[e_scrim_request_statuses_select_column!]" ], "limit": [ @@ -112043,28 +112940,28 @@ export default { 38 ], "order_by": [ - 858, + 857, "[e_scrim_request_statuses_order_by!]" ], "where": [ - 849 + 848 ] } ], "e_scrim_request_statuses_by_pk": [ - 846, + 845, { "value": [ - 75, + 74, "String!" ] } ], "e_server_types": [ - 866, + 865, { "distinct_on": [ - 880, + 879, "[e_server_types_select_column!]" ], "limit": [ @@ -112074,19 +112971,19 @@ export default { 38 ], "order_by": [ - 878, + 877, "[e_server_types_order_by!]" ], "where": [ - 869 + 868 ] } ], "e_server_types_aggregate": [ - 867, + 866, { "distinct_on": [ - 880, + 879, "[e_server_types_select_column!]" ], "limit": [ @@ -112096,28 +112993,28 @@ export default { 38 ], "order_by": [ - 878, + 877, "[e_server_types_order_by!]" ], "where": [ - 869 + 868 ] } ], "e_server_types_by_pk": [ - 866, + 865, { "value": [ - 75, + 74, "String!" ] } ], "e_sides": [ - 886, + 885, { "distinct_on": [ - 900, + 899, "[e_sides_select_column!]" ], "limit": [ @@ -112127,19 +113024,19 @@ export default { 38 ], "order_by": [ - 898, + 897, "[e_sides_order_by!]" ], "where": [ - 889 + 888 ] } ], "e_sides_aggregate": [ - 887, + 886, { "distinct_on": [ - 900, + 899, "[e_sides_select_column!]" ], "limit": [ @@ -112149,28 +113046,28 @@ export default { 38 ], "order_by": [ - 898, + 897, "[e_sides_order_by!]" ], "where": [ - 889 + 888 ] } ], "e_sides_by_pk": [ - 886, + 885, { "value": [ - 75, + 74, "String!" ] } ], "e_system_alert_types": [ - 906, + 905, { "distinct_on": [ - 920, + 919, "[e_system_alert_types_select_column!]" ], "limit": [ @@ -112180,19 +113077,19 @@ export default { 38 ], "order_by": [ - 918, + 917, "[e_system_alert_types_order_by!]" ], "where": [ - 909 + 908 ] } ], "e_system_alert_types_aggregate": [ - 907, + 906, { "distinct_on": [ - 920, + 919, "[e_system_alert_types_select_column!]" ], "limit": [ @@ -112202,28 +113099,28 @@ export default { 38 ], "order_by": [ - 918, + 917, "[e_system_alert_types_order_by!]" ], "where": [ - 909 + 908 ] } ], "e_system_alert_types_by_pk": [ - 906, + 905, { "value": [ - 75, + 74, "String!" ] } ], "e_team_roles": [ - 926, + 925, { "distinct_on": [ - 941, + 940, "[e_team_roles_select_column!]" ], "limit": [ @@ -112233,19 +113130,19 @@ export default { 38 ], "order_by": [ - 939, + 938, "[e_team_roles_order_by!]" ], "where": [ - 929 + 928 ] } ], "e_team_roles_aggregate": [ - 927, + 926, { "distinct_on": [ - 941, + 940, "[e_team_roles_select_column!]" ], "limit": [ @@ -112255,28 +113152,28 @@ export default { 38 ], "order_by": [ - 939, + 938, "[e_team_roles_order_by!]" ], "where": [ - 929 + 928 ] } ], "e_team_roles_by_pk": [ - 926, + 925, { "value": [ - 75, + 74, "String!" ] } ], "e_team_roster_statuses": [ - 947, + 946, { "distinct_on": [ - 961, + 960, "[e_team_roster_statuses_select_column!]" ], "limit": [ @@ -112286,19 +113183,19 @@ export default { 38 ], "order_by": [ - 959, + 958, "[e_team_roster_statuses_order_by!]" ], "where": [ - 950 + 949 ] } ], "e_team_roster_statuses_aggregate": [ - 948, + 947, { "distinct_on": [ - 961, + 960, "[e_team_roster_statuses_select_column!]" ], "limit": [ @@ -112308,28 +113205,28 @@ export default { 38 ], "order_by": [ - 959, + 958, "[e_team_roster_statuses_order_by!]" ], "where": [ - 950 + 949 ] } ], "e_team_roster_statuses_by_pk": [ - 947, + 946, { "value": [ - 75, + 74, "String!" ] } ], "e_timeout_settings": [ - 967, + 966, { "distinct_on": [ - 981, + 980, "[e_timeout_settings_select_column!]" ], "limit": [ @@ -112339,19 +113236,19 @@ export default { 38 ], "order_by": [ - 979, + 978, "[e_timeout_settings_order_by!]" ], "where": [ - 970 + 969 ] } ], "e_timeout_settings_aggregate": [ - 968, + 967, { "distinct_on": [ - 981, + 980, "[e_timeout_settings_select_column!]" ], "limit": [ @@ -112361,28 +113258,28 @@ export default { 38 ], "order_by": [ - 979, + 978, "[e_timeout_settings_order_by!]" ], "where": [ - 970 + 969 ] } ], "e_timeout_settings_by_pk": [ - 967, + 966, { "value": [ - 75, + 74, "String!" ] } ], "e_tournament_stage_types": [ - 987, + 986, { "distinct_on": [ - 1002, + 1001, "[e_tournament_stage_types_select_column!]" ], "limit": [ @@ -112392,19 +113289,19 @@ export default { 38 ], "order_by": [ - 1000, + 999, "[e_tournament_stage_types_order_by!]" ], "where": [ - 990 + 989 ] } ], "e_tournament_stage_types_aggregate": [ - 988, + 987, { "distinct_on": [ - 1002, + 1001, "[e_tournament_stage_types_select_column!]" ], "limit": [ @@ -112414,28 +113311,28 @@ export default { 38 ], "order_by": [ - 1000, + 999, "[e_tournament_stage_types_order_by!]" ], "where": [ - 990 + 989 ] } ], "e_tournament_stage_types_by_pk": [ - 987, + 986, { "value": [ - 75, + 74, "String!" ] } ], "e_tournament_status": [ - 1008, + 1007, { "distinct_on": [ - 1023, + 1022, "[e_tournament_status_select_column!]" ], "limit": [ @@ -112445,19 +113342,19 @@ export default { 38 ], "order_by": [ - 1021, + 1020, "[e_tournament_status_order_by!]" ], "where": [ - 1011 + 1010 ] } ], "e_tournament_status_aggregate": [ - 1009, + 1008, { "distinct_on": [ - 1023, + 1022, "[e_tournament_status_select_column!]" ], "limit": [ @@ -112467,28 +113364,28 @@ export default { 38 ], "order_by": [ - 1021, + 1020, "[e_tournament_status_order_by!]" ], "where": [ - 1011 + 1010 ] } ], "e_tournament_status_by_pk": [ - 1008, + 1007, { "value": [ - 75, + 74, "String!" ] } ], "e_utility_types": [ - 1029, + 1028, { "distinct_on": [ - 1043, + 1042, "[e_utility_types_select_column!]" ], "limit": [ @@ -112498,19 +113395,19 @@ export default { 38 ], "order_by": [ - 1041, + 1040, "[e_utility_types_order_by!]" ], "where": [ - 1032 + 1031 ] } ], "e_utility_types_aggregate": [ - 1030, + 1029, { "distinct_on": [ - 1043, + 1042, "[e_utility_types_select_column!]" ], "limit": [ @@ -112520,28 +113417,28 @@ export default { 38 ], "order_by": [ - 1041, + 1040, "[e_utility_types_order_by!]" ], "where": [ - 1032 + 1031 ] } ], "e_utility_types_by_pk": [ - 1029, + 1028, { "value": [ - 75, + 74, "String!" ] } ], "e_veto_pick_types": [ - 1049, + 1048, { "distinct_on": [ - 1063, + 1062, "[e_veto_pick_types_select_column!]" ], "limit": [ @@ -112551,19 +113448,19 @@ export default { 38 ], "order_by": [ - 1061, + 1060, "[e_veto_pick_types_order_by!]" ], "where": [ - 1052 + 1051 ] } ], "e_veto_pick_types_aggregate": [ - 1050, + 1049, { "distinct_on": [ - 1063, + 1062, "[e_veto_pick_types_select_column!]" ], "limit": [ @@ -112573,28 +113470,28 @@ export default { 38 ], "order_by": [ - 1061, + 1060, "[e_veto_pick_types_order_by!]" ], "where": [ - 1052 + 1051 ] } ], "e_veto_pick_types_by_pk": [ - 1049, + 1048, { "value": [ - 75, + 74, "String!" ] } ], "e_winning_reasons": [ - 1069, + 1068, { "distinct_on": [ - 1083, + 1082, "[e_winning_reasons_select_column!]" ], "limit": [ @@ -112604,19 +113501,19 @@ export default { 38 ], "order_by": [ - 1081, + 1080, "[e_winning_reasons_order_by!]" ], "where": [ - 1072 + 1071 ] } ], "e_winning_reasons_aggregate": [ - 1070, + 1069, { "distinct_on": [ - 1083, + 1082, "[e_winning_reasons_select_column!]" ], "limit": [ @@ -112626,28 +113523,28 @@ export default { 38 ], "order_by": [ - 1081, + 1080, "[e_winning_reasons_order_by!]" ], "where": [ - 1072 + 1071 ] } ], "e_winning_reasons_by_pk": [ - 1069, + 1068, { "value": [ - 75, + 74, "String!" ] } ], "friends": [ - 1091, + 1090, { "distinct_on": [ - 1105, + 1104, "[friends_select_column!]" ], "limit": [ @@ -112657,19 +113554,19 @@ export default { 38 ], "order_by": [ - 1103, + 1102, "[friends_order_by!]" ], "where": [ - 1095 + 1094 ] } ], "friends_aggregate": [ - 1092, + 1091, { "distinct_on": [ - 1105, + 1104, "[friends_select_column!]" ], "limit": [ @@ -112679,32 +113576,32 @@ export default { 38 ], "order_by": [ - 1103, + 1102, "[friends_order_by!]" ], "where": [ - 1095 + 1094 ] } ], "friends_by_pk": [ - 1091, + 1090, { "other_player_steam_id": [ - 174, + 173, "bigint!" ], "player_steam_id": [ - 174, + 173, "bigint!" ] } ], "game_server_nodes": [ - 1118, + 1117, { "distinct_on": [ - 1147, + 1146, "[game_server_nodes_select_column!]" ], "limit": [ @@ -112714,19 +113611,19 @@ export default { 38 ], "order_by": [ - 1144, + 1143, "[game_server_nodes_order_by!]" ], "where": [ - 1130 + 1129 ] } ], "game_server_nodes_aggregate": [ - 1119, + 1118, { "distinct_on": [ - 1147, + 1146, "[game_server_nodes_select_column!]" ], "limit": [ @@ -112736,28 +113633,28 @@ export default { 38 ], "order_by": [ - 1144, + 1143, "[game_server_nodes_order_by!]" ], "where": [ - 1130 + 1129 ] } ], "game_server_nodes_by_pk": [ - 1118, + 1117, { "id": [ - 75, + 74, "String!" ] } ], "game_versions": [ - 1169, + 1168, { "distinct_on": [ - 1189, + 1188, "[game_versions_select_column!]" ], "limit": [ @@ -112767,19 +113664,19 @@ export default { 38 ], "order_by": [ - 1186, + 1185, "[game_versions_order_by!]" ], "where": [ - 1174 + 1173 ] } ], "game_versions_aggregate": [ - 1170, + 1169, { "distinct_on": [ - 1189, + 1188, "[game_versions_select_column!]" ], "limit": [ @@ -112789,16 +113686,16 @@ export default { 38 ], "order_by": [ - 1186, + 1185, "[game_versions_order_by!]" ], "where": [ - 1174 + 1173 ] } ], "game_versions_by_pk": [ - 1169, + 1168, { "build_id": [ 38, @@ -112807,10 +113704,10 @@ export default { } ], "gamedata_signature_validations": [ - 1202, + 1201, { "distinct_on": [ - 1221, + 1220, "[gamedata_signature_validations_select_column!]" ], "limit": [ @@ -112820,19 +113717,19 @@ export default { 38 ], "order_by": [ - 1218, + 1217, "[gamedata_signature_validations_order_by!]" ], "where": [ - 1207 + 1206 ] } ], "gamedata_signature_validations_aggregate": [ - 1203, + 1202, { "distinct_on": [ - 1221, + 1220, "[gamedata_signature_validations_select_column!]" ], "limit": [ @@ -112842,19 +113739,19 @@ export default { 38 ], "order_by": [ - 1218, + 1217, "[gamedata_signature_validations_order_by!]" ], "where": [ - 1207 + 1206 ] } ], "gamedata_signature_validations_by_pk": [ - 1202, + 1201, { "id": [ - 3864, + 3863, "uuid!" ] } @@ -112881,7 +113778,7 @@ export default { 64, { "serverId": [ - 75, + 74, "String!" ] } @@ -112890,11 +113787,11 @@ export default { 34, { "match_map_id": [ - 3864, + 3863, "uuid!" ], "target_steam_id": [ - 75, + 74, "String!" ] } @@ -112903,7 +113800,7 @@ export default { 36, { "schemas": [ - 75, + 74, "[String!]" ] } @@ -112912,7 +113809,7 @@ export default { 37, { "schemas": [ - 75, + 74, "[String!]" ] } @@ -112921,7 +113818,7 @@ export default { 50, { "node": [ - 75, + 74, "String!" ] } @@ -112930,7 +113827,7 @@ export default { 56, { "queryid": [ - 75, + 74, "String!" ] } @@ -112939,50 +113836,50 @@ export default { 57 ], "getSchemas": [ - 75 + 74 ], "getServiceStats": [ 54 ], "getStorageStats": [ - 73, + 72, { "schemas": [ - 75, + 74, "[String!]" ] } ], "getTableIOStats": [ - 79, + 78, { "schemas": [ - 75, + 74, "[String!]" ] } ], "getTableStats": [ - 81, + 80, { "schemas": [ - 75, + 74, "[String!]" ] } ], "getTimescaleStats": [ - 85 + 84 ], "get_leaderboard": [ - 1243, + 1242, { "args": [ - 1234, + 1233, "get_leaderboard_args!" ], "distinct_on": [ - 1254, + 1253, "[leaderboard_entries_select_column!]" ], "limit": [ @@ -112992,23 +113889,23 @@ export default { 38 ], "order_by": [ - 1253, + 1252, "[leaderboard_entries_order_by!]" ], "where": [ - 1247 + 1246 ] } ], "get_leaderboard_aggregate": [ - 1244, + 1243, { "args": [ - 1234, + 1233, "get_leaderboard_args!" ], "distinct_on": [ - 1254, + 1253, "[leaderboard_entries_select_column!]" ], "limit": [ @@ -113018,23 +113915,23 @@ export default { 38 ], "order_by": [ - 1253, + 1252, "[leaderboard_entries_order_by!]" ], "where": [ - 1247 + 1246 ] } ], "get_player_leaderboard_rank": [ - 2457, + 2456, { "args": [ - 1235, + 1234, "get_player_leaderboard_rank_args!" ], "distinct_on": [ - 2468, + 2467, "[player_leaderboard_rank_select_column!]" ], "limit": [ @@ -113044,23 +113941,23 @@ export default { 38 ], "order_by": [ - 2467, + 2466, "[player_leaderboard_rank_order_by!]" ], "where": [ - 2461 + 2460 ] } ], "get_player_leaderboard_rank_aggregate": [ - 2458, + 2457, { "args": [ - 1235, + 1234, "get_player_leaderboard_rank_args!" ], "distinct_on": [ - 2468, + 2467, "[player_leaderboard_rank_select_column!]" ], "limit": [ @@ -113070,19 +113967,19 @@ export default { 38 ], "order_by": [ - 2467, + 2466, "[player_leaderboard_rank_order_by!]" ], "where": [ - 2461 + 2460 ] } ], "leaderboard_entries": [ - 1243, + 1242, { "distinct_on": [ - 1254, + 1253, "[leaderboard_entries_select_column!]" ], "limit": [ @@ -113092,19 +113989,19 @@ export default { 38 ], "order_by": [ - 1253, + 1252, "[leaderboard_entries_order_by!]" ], "where": [ - 1247 + 1246 ] } ], "leaderboard_entries_aggregate": [ - 1244, + 1243, { "distinct_on": [ - 1254, + 1253, "[leaderboard_entries_select_column!]" ], "limit": [ @@ -113114,11 +114011,11 @@ export default { 38 ], "order_by": [ - 1253, + 1252, "[leaderboard_entries_order_by!]" ], "where": [ - 1247 + 1246 ] } ], @@ -113126,22 +114023,22 @@ export default { 28, { "node_id": [ - 75, + 74, "String!" ], "path": [ - 75 + 74 ], "server_id": [ - 75 + 74 ] } ], "lobbies": [ - 1266, + 1265, { "distinct_on": [ - 1279, + 1278, "[lobbies_select_column!]" ], "limit": [ @@ -113151,19 +114048,19 @@ export default { 38 ], "order_by": [ - 1277, + 1276, "[lobbies_order_by!]" ], "where": [ - 1269 + 1268 ] } ], "lobbies_aggregate": [ - 1267, + 1266, { "distinct_on": [ - 1279, + 1278, "[lobbies_select_column!]" ], "limit": [ @@ -113173,28 +114070,28 @@ export default { 38 ], "order_by": [ - 1277, + 1276, "[lobbies_order_by!]" ], "where": [ - 1269 + 1268 ] } ], "lobbies_by_pk": [ - 1266, + 1265, { "id": [ - 3864, + 3863, "uuid!" ] } ], "lobby_players": [ - 1285, + 1284, { "distinct_on": [ - 1308, + 1307, "[lobby_players_select_column!]" ], "limit": [ @@ -113204,19 +114101,19 @@ export default { 38 ], "order_by": [ - 1306, + 1305, "[lobby_players_order_by!]" ], "where": [ - 1296 + 1295 ] } ], "lobby_players_aggregate": [ - 1286, + 1285, { "distinct_on": [ - 1308, + 1307, "[lobby_players_select_column!]" ], "limit": [ @@ -113226,32 +114123,32 @@ export default { 38 ], "order_by": [ - 1306, + 1305, "[lobby_players_order_by!]" ], "where": [ - 1296 + 1295 ] } ], "lobby_players_by_pk": [ - 1285, + 1284, { "lobby_id": [ - 3864, + 3863, "uuid!" ], "steam_id": [ - 174, + 173, "bigint!" ] } ], "map_pools": [ - 1330, + 1329, { "distinct_on": [ - 1343, + 1342, "[map_pools_select_column!]" ], "limit": [ @@ -113261,19 +114158,19 @@ export default { 38 ], "order_by": [ - 1341, + 1340, "[map_pools_order_by!]" ], "where": [ - 1333 + 1332 ] } ], "map_pools_aggregate": [ - 1331, + 1330, { "distinct_on": [ - 1343, + 1342, "[map_pools_select_column!]" ], "limit": [ @@ -113283,28 +114180,28 @@ export default { 38 ], "order_by": [ - 1341, + 1340, "[map_pools_order_by!]" ], "where": [ - 1333 + 1332 ] } ], "map_pools_by_pk": [ - 1330, + 1329, { "id": [ - 3864, + 3863, "uuid!" ] } ], "maps": [ - 1349, + 1348, { "distinct_on": [ - 1370, + 1369, "[maps_select_column!]" ], "limit": [ @@ -113314,19 +114211,19 @@ export default { 38 ], "order_by": [ - 1368, + 1367, "[maps_order_by!]" ], "where": [ - 1358 + 1357 ] } ], "maps_aggregate": [ - 1350, + 1349, { "distinct_on": [ - 1370, + 1369, "[maps_select_column!]" ], "limit": [ @@ -113336,28 +114233,28 @@ export default { 38 ], "order_by": [ - 1368, + 1367, "[maps_order_by!]" ], "where": [ - 1358 + 1357 ] } ], "maps_by_pk": [ - 1349, + 1348, { "id": [ - 3864, + 3863, "uuid!" ] } ], "match_clips": [ - 1378, + 1377, { "distinct_on": [ - 1400, + 1399, "[match_clips_select_column!]" ], "limit": [ @@ -113367,19 +114264,19 @@ export default { 38 ], "order_by": [ - 1398, + 1397, "[match_clips_order_by!]" ], "where": [ - 1387 + 1386 ] } ], "match_clips_aggregate": [ - 1379, + 1378, { "distinct_on": [ - 1400, + 1399, "[match_clips_select_column!]" ], "limit": [ @@ -113389,28 +114286,28 @@ export default { 38 ], "order_by": [ - 1398, + 1397, "[match_clips_order_by!]" ], "where": [ - 1387 + 1386 ] } ], "match_clips_by_pk": [ - 1378, + 1377, { "id": [ - 3864, + 3863, "uuid!" ] } ], "match_demo_sessions": [ - 1420, + 1419, { "distinct_on": [ - 1446, + 1445, "[match_demo_sessions_select_column!]" ], "limit": [ @@ -113420,19 +114317,19 @@ export default { 38 ], "order_by": [ - 1443, + 1442, "[match_demo_sessions_order_by!]" ], "where": [ - 1430 + 1429 ] } ], "match_demo_sessions_aggregate": [ - 1421, + 1420, { "distinct_on": [ - 1446, + 1445, "[match_demo_sessions_select_column!]" ], "limit": [ @@ -113442,28 +114339,28 @@ export default { 38 ], "order_by": [ - 1443, + 1442, "[match_demo_sessions_order_by!]" ], "where": [ - 1430 + 1429 ] } ], "match_demo_sessions_by_pk": [ - 1420, + 1419, { "id": [ - 3864, + 3863, "uuid!" ] } ], "match_lineup_players": [ - 1466, + 1465, { "distinct_on": [ - 1489, + 1488, "[match_lineup_players_select_column!]" ], "limit": [ @@ -113473,19 +114370,19 @@ export default { 38 ], "order_by": [ - 1487, + 1486, "[match_lineup_players_order_by!]" ], "where": [ - 1477 + 1476 ] } ], "match_lineup_players_aggregate": [ - 1467, + 1466, { "distinct_on": [ - 1489, + 1488, "[match_lineup_players_select_column!]" ], "limit": [ @@ -113495,28 +114392,28 @@ export default { 38 ], "order_by": [ - 1487, + 1486, "[match_lineup_players_order_by!]" ], "where": [ - 1477 + 1476 ] } ], "match_lineup_players_by_pk": [ - 1466, + 1465, { "id": [ - 3864, + 3863, "uuid!" ] } ], "match_lineups": [ - 1511, + 1510, { "distinct_on": [ - 1533, + 1532, "[match_lineups_select_column!]" ], "limit": [ @@ -113526,19 +114423,19 @@ export default { 38 ], "order_by": [ - 1531, + 1530, "[match_lineups_order_by!]" ], "where": [ - 1520 + 1519 ] } ], "match_lineups_aggregate": [ - 1512, + 1511, { "distinct_on": [ - 1533, + 1532, "[match_lineups_select_column!]" ], "limit": [ @@ -113548,28 +114445,28 @@ export default { 38 ], "order_by": [ - 1531, + 1530, "[match_lineups_order_by!]" ], "where": [ - 1520 + 1519 ] } ], "match_lineups_by_pk": [ - 1511, + 1510, { "id": [ - 3864, + 3863, "uuid!" ] } ], "match_map_demos": [ - 1553, + 1552, { "distinct_on": [ - 1582, + 1581, "[match_map_demos_select_column!]" ], "limit": [ @@ -113579,19 +114476,19 @@ export default { 38 ], "order_by": [ - 1579, + 1578, "[match_map_demos_order_by!]" ], "where": [ - 1565 + 1564 ] } ], "match_map_demos_aggregate": [ - 1554, + 1553, { "distinct_on": [ - 1582, + 1581, "[match_map_demos_select_column!]" ], "limit": [ @@ -113601,28 +114498,28 @@ export default { 38 ], "order_by": [ - 1579, + 1578, "[match_map_demos_order_by!]" ], "where": [ - 1565 + 1564 ] } ], "match_map_demos_by_pk": [ - 1553, + 1552, { "id": [ - 3864, + 3863, "uuid!" ] } ], "match_map_rounds": [ - 1604, + 1603, { "distinct_on": [ - 1625, + 1624, "[match_map_rounds_select_column!]" ], "limit": [ @@ -113632,19 +114529,19 @@ export default { 38 ], "order_by": [ - 1623, + 1622, "[match_map_rounds_order_by!]" ], "where": [ - 1613 + 1612 ] } ], "match_map_rounds_aggregate": [ - 1605, + 1604, { "distinct_on": [ - 1625, + 1624, "[match_map_rounds_select_column!]" ], "limit": [ @@ -113654,28 +114551,28 @@ export default { 38 ], "order_by": [ - 1623, + 1622, "[match_map_rounds_order_by!]" ], "where": [ - 1613 + 1612 ] } ], "match_map_rounds_by_pk": [ - 1604, + 1603, { "id": [ - 3864, + 3863, "uuid!" ] } ], "match_map_veto_picks": [ - 1645, + 1644, { "distinct_on": [ - 1663, + 1662, "[match_map_veto_picks_select_column!]" ], "limit": [ @@ -113685,19 +114582,19 @@ export default { 38 ], "order_by": [ - 1661, + 1660, "[match_map_veto_picks_order_by!]" ], "where": [ - 1652 + 1651 ] } ], "match_map_veto_picks_aggregate": [ - 1646, + 1645, { "distinct_on": [ - 1663, + 1662, "[match_map_veto_picks_select_column!]" ], "limit": [ @@ -113707,28 +114604,28 @@ export default { 38 ], "order_by": [ - 1661, + 1660, "[match_map_veto_picks_order_by!]" ], "where": [ - 1652 + 1651 ] } ], "match_map_veto_picks_by_pk": [ - 1645, + 1644, { "id": [ - 3864, + 3863, "uuid!" ] } ], "match_maps": [ - 1669, + 1668, { "distinct_on": [ - 1691, + 1690, "[match_maps_select_column!]" ], "limit": [ @@ -113738,19 +114635,19 @@ export default { 38 ], "order_by": [ - 1689, + 1688, "[match_maps_order_by!]" ], "where": [ - 1678 + 1677 ] } ], "match_maps_aggregate": [ - 1670, + 1669, { "distinct_on": [ - 1691, + 1690, "[match_maps_select_column!]" ], "limit": [ @@ -113760,28 +114657,28 @@ export default { 38 ], "order_by": [ - 1689, + 1688, "[match_maps_order_by!]" ], "where": [ - 1678 + 1677 ] } ], "match_maps_by_pk": [ - 1669, + 1668, { "id": [ - 3864, + 3863, "uuid!" ] } ], "match_options": [ - 1711, + 1710, { "distinct_on": [ - 1726, + 1725, "[match_options_select_column!]" ], "limit": [ @@ -113791,19 +114688,19 @@ export default { 38 ], "order_by": [ - 1724, + 1723, "[match_options_order_by!]" ], "where": [ - 1715 + 1714 ] } ], "match_options_aggregate": [ - 1712, + 1711, { "distinct_on": [ - 1726, + 1725, "[match_options_select_column!]" ], "limit": [ @@ -113813,28 +114710,28 @@ export default { 38 ], "order_by": [ - 1724, + 1723, "[match_options_order_by!]" ], "where": [ - 1715 + 1714 ] } ], "match_options_by_pk": [ - 1711, + 1710, { "id": [ - 3864, + 3863, "uuid!" ] } ], "match_region_veto_picks": [ - 1739, + 1738, { "distinct_on": [ - 1757, + 1756, "[match_region_veto_picks_select_column!]" ], "limit": [ @@ -113844,19 +114741,19 @@ export default { 38 ], "order_by": [ - 1755, + 1754, "[match_region_veto_picks_order_by!]" ], "where": [ - 1746 + 1745 ] } ], "match_region_veto_picks_aggregate": [ - 1740, + 1739, { "distinct_on": [ - 1757, + 1756, "[match_region_veto_picks_select_column!]" ], "limit": [ @@ -113866,28 +114763,28 @@ export default { 38 ], "order_by": [ - 1755, + 1754, "[match_region_veto_picks_order_by!]" ], "where": [ - 1746 + 1745 ] } ], "match_region_veto_picks_by_pk": [ - 1739, + 1738, { "id": [ - 3864, + 3863, "uuid!" ] } ], "match_streams": [ - 1763, + 1762, { "distinct_on": [ - 1791, + 1790, "[match_streams_select_column!]" ], "limit": [ @@ -113897,19 +114794,19 @@ export default { 38 ], "order_by": [ - 1788, + 1787, "[match_streams_order_by!]" ], "where": [ - 1775 + 1774 ] } ], "match_streams_aggregate": [ - 1764, + 1763, { "distinct_on": [ - 1791, + 1790, "[match_streams_select_column!]" ], "limit": [ @@ -113919,28 +114816,28 @@ export default { 38 ], "order_by": [ - 1788, + 1787, "[match_streams_order_by!]" ], "where": [ - 1775 + 1774 ] } ], "match_streams_by_pk": [ - 1763, + 1762, { "id": [ - 3864, + 3863, "uuid!" ] } ], "match_type_cfgs": [ - 1813, + 1812, { "distinct_on": [ - 1825, + 1824, "[match_type_cfgs_select_column!]" ], "limit": [ @@ -113950,19 +114847,19 @@ export default { 38 ], "order_by": [ - 1823, + 1822, "[match_type_cfgs_order_by!]" ], "where": [ - 1816 + 1815 ] } ], "match_type_cfgs_aggregate": [ - 1814, + 1813, { "distinct_on": [ - 1825, + 1824, "[match_type_cfgs_select_column!]" ], "limit": [ @@ -113972,28 +114869,28 @@ export default { 38 ], "order_by": [ - 1823, + 1822, "[match_type_cfgs_order_by!]" ], "where": [ - 1816 + 1815 ] } ], "match_type_cfgs_by_pk": [ - 1813, + 1812, { "type": [ - 544, + 543, "e_game_cfg_types_enum!" ] } ], "matches": [ - 1831, + 1830, { "distinct_on": [ - 1853, + 1852, "[matches_select_column!]" ], "limit": [ @@ -114003,19 +114900,19 @@ export default { 38 ], "order_by": [ - 1851, + 1850, "[matches_order_by!]" ], "where": [ - 1840 + 1839 ] } ], "matches_aggregate": [ - 1832, + 1831, { "distinct_on": [ - 1853, + 1852, "[matches_select_column!]" ], "limit": [ @@ -114025,19 +114922,19 @@ export default { 38 ], "order_by": [ - 1851, + 1850, "[matches_order_by!]" ], "where": [ - 1840 + 1839 ] } ], "matches_by_pk": [ - 1831, + 1830, { "id": [ - 3864, + 3863, "uuid!" ] } @@ -114046,10 +114943,10 @@ export default { 45 ], "migration_hashes_hashes": [ - 1873, + 1872, { "distinct_on": [ - 1885, + 1884, "[migration_hashes_hashes_select_column!]" ], "limit": [ @@ -114059,19 +114956,19 @@ export default { 38 ], "order_by": [ - 1883, + 1882, "[migration_hashes_hashes_order_by!]" ], "where": [ - 1876 + 1875 ] } ], "migration_hashes_hashes_aggregate": [ - 1874, + 1873, { "distinct_on": [ - 1885, + 1884, "[migration_hashes_hashes_select_column!]" ], "limit": [ @@ -114081,28 +114978,28 @@ export default { 38 ], "order_by": [ - 1883, + 1882, "[migration_hashes_hashes_order_by!]" ], "where": [ - 1876 + 1875 ] } ], "migration_hashes_hashes_by_pk": [ - 1873, + 1872, { "name": [ - 75, + 74, "String!" ] } ], "my_friends": [ - 1891, + 1890, { "distinct_on": [ - 1916, + 1915, "[my_friends_select_column!]" ], "limit": [ @@ -114112,19 +115009,19 @@ export default { 38 ], "order_by": [ - 1914, + 1913, "[my_friends_order_by!]" ], "where": [ - 1903 + 1902 ] } ], "my_friends_aggregate": [ - 1892, + 1891, { "distinct_on": [ - 1916, + 1915, "[my_friends_select_column!]" ], "limit": [ @@ -114134,11 +115031,11 @@ export default { 38 ], "order_by": [ - 1914, + 1913, "[my_friends_order_by!]" ], "where": [ - 1903 + 1902 ] } ], @@ -114146,7 +115043,7 @@ export default { 48, { "id": [ - 3864, + 3863, "uuid!" ] } @@ -114155,10 +115052,10 @@ export default { 48 ], "news_articles": [ - 1937, + 1936, { "distinct_on": [ - 1951, + 1950, "[news_articles_select_column!]" ], "limit": [ @@ -114168,19 +115065,19 @@ export default { 38 ], "order_by": [ - 1949, + 1948, "[news_articles_order_by!]" ], "where": [ - 1941 + 1940 ] } ], "news_articles_aggregate": [ - 1938, + 1937, { "distinct_on": [ - 1951, + 1950, "[news_articles_select_column!]" ], "limit": [ @@ -114190,28 +115087,28 @@ export default { 38 ], "order_by": [ - 1949, + 1948, "[news_articles_order_by!]" ], "where": [ - 1941 + 1940 ] } ], "news_articles_by_pk": [ - 1937, + 1936, { "id": [ - 3864, + 3863, "uuid!" ] } ], "notifications": [ - 1964, + 1963, { "distinct_on": [ - 1992, + 1991, "[notifications_select_column!]" ], "limit": [ @@ -114221,19 +115118,19 @@ export default { 38 ], "order_by": [ - 1989, + 1988, "[notifications_order_by!]" ], "where": [ - 1976 + 1975 ] } ], "notifications_aggregate": [ - 1965, + 1964, { "distinct_on": [ - 1992, + 1991, "[notifications_select_column!]" ], "limit": [ @@ -114243,28 +115140,28 @@ export default { 38 ], "order_by": [ - 1989, + 1988, "[notifications_order_by!]" ], "where": [ - 1976 + 1975 ] } ], "notifications_by_pk": [ - 1964, + 1963, { "id": [ - 3864, + 3863, "uuid!" ] } ], "pending_match_import_players": [ - 2017, + 2016, { "distinct_on": [ - 2038, + 2037, "[pending_match_import_players_select_column!]" ], "limit": [ @@ -114274,19 +115171,19 @@ export default { 38 ], "order_by": [ - 2036, + 2035, "[pending_match_import_players_order_by!]" ], "where": [ - 2026 + 2025 ] } ], "pending_match_import_players_aggregate": [ - 2018, + 2017, { "distinct_on": [ - 2038, + 2037, "[pending_match_import_players_select_column!]" ], "limit": [ @@ -114296,32 +115193,32 @@ export default { 38 ], "order_by": [ - 2036, + 2035, "[pending_match_import_players_order_by!]" ], "where": [ - 2026 + 2025 ] } ], "pending_match_import_players_by_pk": [ - 2017, + 2016, { "steam_id": [ - 174, + 173, "bigint!" ], "valve_match_id": [ - 2014, + 2013, "numeric!" ] } ], "pending_match_imports": [ - 2058, + 2057, { "distinct_on": [ - 2073, + 2072, "[pending_match_imports_select_column!]" ], "limit": [ @@ -114331,19 +115228,19 @@ export default { 38 ], "order_by": [ - 2071, + 2070, "[pending_match_imports_order_by!]" ], "where": [ - 2062 + 2061 ] } ], "pending_match_imports_aggregate": [ - 2059, + 2058, { "distinct_on": [ - 2073, + 2072, "[pending_match_imports_select_column!]" ], "limit": [ @@ -114353,28 +115250,28 @@ export default { 38 ], "order_by": [ - 2071, + 2070, "[pending_match_imports_order_by!]" ], "where": [ - 2062 + 2061 ] } ], "pending_match_imports_by_pk": [ - 2058, + 2057, { "valve_match_id": [ - 2014, + 2013, "numeric!" ] } ], "player_aim_stats_demo": [ - 2086, + 2085, { "distinct_on": [ - 2100, + 2099, "[player_aim_stats_demo_select_column!]" ], "limit": [ @@ -114384,19 +115281,19 @@ export default { 38 ], "order_by": [ - 2098, + 2097, "[player_aim_stats_demo_order_by!]" ], "where": [ - 2090 + 2089 ] } ], "player_aim_stats_demo_aggregate": [ - 2087, + 2086, { "distinct_on": [ - 2100, + 2099, "[player_aim_stats_demo_select_column!]" ], "limit": [ @@ -114406,32 +115303,32 @@ export default { 38 ], "order_by": [ - 2098, + 2097, "[player_aim_stats_demo_order_by!]" ], "where": [ - 2090 + 2089 ] } ], "player_aim_stats_demo_by_pk": [ - 2086, + 2085, { "attacker_steam_id": [ - 174, + 173, "bigint!" ], "match_map_id": [ - 3864, + 3863, "uuid!" ] } ], "player_aim_weapon_stats": [ - 2113, + 2112, { "distinct_on": [ - 2134, + 2133, "[player_aim_weapon_stats_select_column!]" ], "limit": [ @@ -114441,19 +115338,19 @@ export default { 38 ], "order_by": [ - 2132, + 2131, "[player_aim_weapon_stats_order_by!]" ], "where": [ - 2122 + 2121 ] } ], "player_aim_weapon_stats_aggregate": [ - 2114, + 2113, { "distinct_on": [ - 2134, + 2133, "[player_aim_weapon_stats_select_column!]" ], "limit": [ @@ -114463,36 +115360,36 @@ export default { 38 ], "order_by": [ - 2132, + 2131, "[player_aim_weapon_stats_order_by!]" ], "where": [ - 2122 + 2121 ] } ], "player_aim_weapon_stats_by_pk": [ - 2113, + 2112, { "match_map_id": [ - 3864, + 3863, "uuid!" ], "steam_id": [ - 174, + 173, "bigint!" ], "weapon_class": [ - 75, + 74, "String!" ] } ], "player_assists": [ - 2154, + 2153, { "distinct_on": [ - 2177, + 2176, "[player_assists_select_column!]" ], "limit": [ @@ -114502,19 +115399,19 @@ export default { 38 ], "order_by": [ - 2175, + 2174, "[player_assists_order_by!]" ], "where": [ - 2165 + 2164 ] } ], "player_assists_aggregate": [ - 2155, + 2154, { "distinct_on": [ - 2177, + 2176, "[player_assists_select_column!]" ], "limit": [ @@ -114524,40 +115421,40 @@ export default { 38 ], "order_by": [ - 2175, + 2174, "[player_assists_order_by!]" ], "where": [ - 2165 + 2164 ] } ], "player_assists_by_pk": [ - 2154, + 2153, { "attacked_steam_id": [ - 174, + 173, "bigint!" ], "attacker_steam_id": [ - 174, + 173, "bigint!" ], "match_map_id": [ - 3864, + 3863, "uuid!" ], "time": [ - 3467, + 3466, "timestamptz!" ] } ], "player_career_stats_v": [ - 2199, + 2198, { "distinct_on": [ - 2207, + 2206, "[player_career_stats_v_select_column!]" ], "limit": [ @@ -114567,19 +115464,19 @@ export default { 38 ], "order_by": [ - 2206, + 2205, "[player_career_stats_v_order_by!]" ], "where": [ - 2203 + 2202 ] } ], "player_career_stats_v_aggregate": [ - 2200, + 2199, { "distinct_on": [ - 2207, + 2206, "[player_career_stats_v_select_column!]" ], "limit": [ @@ -114589,19 +115486,19 @@ export default { 38 ], "order_by": [ - 2206, + 2205, "[player_career_stats_v_order_by!]" ], "where": [ - 2203 + 2202 ] } ], "player_damages": [ - 2217, + 2216, { "distinct_on": [ - 2238, + 2237, "[player_damages_select_column!]" ], "limit": [ @@ -114611,19 +115508,19 @@ export default { 38 ], "order_by": [ - 2236, + 2235, "[player_damages_order_by!]" ], "where": [ - 2226 + 2225 ] } ], "player_damages_aggregate": [ - 2218, + 2217, { "distinct_on": [ - 2238, + 2237, "[player_damages_select_column!]" ], "limit": [ @@ -114633,36 +115530,36 @@ export default { 38 ], "order_by": [ - 2236, + 2235, "[player_damages_order_by!]" ], "where": [ - 2226 + 2225 ] } ], "player_damages_by_pk": [ - 2217, + 2216, { "id": [ - 3864, + 3863, "uuid!" ], "match_map_id": [ - 3864, + 3863, "uuid!" ], "time": [ - 3467, + 3466, "timestamptz!" ] } ], "player_elo": [ - 2258, + 2257, { "distinct_on": [ - 2272, + 2271, "[player_elo_select_column!]" ], "limit": [ @@ -114672,19 +115569,19 @@ export default { 38 ], "order_by": [ - 2270, + 2269, "[player_elo_order_by!]" ], "where": [ - 2262 + 2261 ] } ], "player_elo_aggregate": [ - 2259, + 2258, { "distinct_on": [ - 2272, + 2271, "[player_elo_select_column!]" ], "limit": [ @@ -114694,36 +115591,36 @@ export default { 38 ], "order_by": [ - 2270, + 2269, "[player_elo_order_by!]" ], "where": [ - 2262 + 2261 ] } ], "player_elo_by_pk": [ - 2258, + 2257, { "match_id": [ - 3864, + 3863, "uuid!" ], "steam_id": [ - 174, + 173, "bigint!" ], "type": [ - 729, + 728, "e_match_types_enum!" ] } ], "player_faceit_rank_history": [ - 2285, + 2284, { "distinct_on": [ - 2306, + 2305, "[player_faceit_rank_history_select_column!]" ], "limit": [ @@ -114733,19 +115630,19 @@ export default { 38 ], "order_by": [ - 2304, + 2303, "[player_faceit_rank_history_order_by!]" ], "where": [ - 2294 + 2293 ] } ], "player_faceit_rank_history_aggregate": [ - 2286, + 2285, { "distinct_on": [ - 2306, + 2305, "[player_faceit_rank_history_select_column!]" ], "limit": [ @@ -114755,28 +115652,28 @@ export default { 38 ], "order_by": [ - 2304, + 2303, "[player_faceit_rank_history_order_by!]" ], "where": [ - 2294 + 2293 ] } ], "player_faceit_rank_history_by_pk": [ - 2285, + 2284, { "id": [ - 3864, + 3863, "uuid!" ] } ], "player_flashes": [ - 2326, + 2325, { "distinct_on": [ - 2349, + 2348, "[player_flashes_select_column!]" ], "limit": [ @@ -114786,19 +115683,19 @@ export default { 38 ], "order_by": [ - 2347, + 2346, "[player_flashes_order_by!]" ], "where": [ - 2337 + 2336 ] } ], "player_flashes_aggregate": [ - 2327, + 2326, { "distinct_on": [ - 2349, + 2348, "[player_flashes_select_column!]" ], "limit": [ @@ -114808,40 +115705,40 @@ export default { 38 ], "order_by": [ - 2347, + 2346, "[player_flashes_order_by!]" ], "where": [ - 2337 + 2336 ] } ], "player_flashes_by_pk": [ - 2326, + 2325, { "attacked_steam_id": [ - 174, + 173, "bigint!" ], "attacker_steam_id": [ - 174, + 173, "bigint!" ], "match_map_id": [ - 3864, + 3863, "uuid!" ], "time": [ - 3467, + 3466, "timestamptz!" ] } ], "player_kills": [ - 2371, + 2370, { "distinct_on": [ - 2435, + 2434, "[player_kills_select_column!]" ], "limit": [ @@ -114851,19 +115748,19 @@ export default { 38 ], "order_by": [ - 2433, + 2432, "[player_kills_order_by!]" ], "where": [ - 2382 + 2381 ] } ], "player_kills_aggregate": [ - 2372, + 2371, { "distinct_on": [ - 2435, + 2434, "[player_kills_select_column!]" ], "limit": [ @@ -114873,40 +115770,40 @@ export default { 38 ], "order_by": [ - 2433, + 2432, "[player_kills_order_by!]" ], "where": [ - 2382 + 2381 ] } ], "player_kills_by_pk": [ - 2371, + 2370, { "attacked_steam_id": [ - 174, + 173, "bigint!" ], "attacker_steam_id": [ - 174, + 173, "bigint!" ], "match_map_id": [ - 3864, + 3863, "uuid!" ], "time": [ - 3467, + 3466, "timestamptz!" ] } ], "player_kills_by_weapon": [ - 2383, + 2382, { "distinct_on": [ - 2404, + 2403, "[player_kills_by_weapon_select_column!]" ], "limit": [ @@ -114916,19 +115813,19 @@ export default { 38 ], "order_by": [ - 2402, + 2401, "[player_kills_by_weapon_order_by!]" ], "where": [ - 2392 + 2391 ] } ], "player_kills_by_weapon_aggregate": [ - 2384, + 2383, { "distinct_on": [ - 2404, + 2403, "[player_kills_by_weapon_select_column!]" ], "limit": [ @@ -114938,32 +115835,32 @@ export default { 38 ], "order_by": [ - 2402, + 2401, "[player_kills_by_weapon_order_by!]" ], "where": [ - 2392 + 2391 ] } ], "player_kills_by_weapon_by_pk": [ - 2383, + 2382, { "player_steam_id": [ - 174, + 173, "bigint!" ], "with": [ - 75, + 74, "String!" ] } ], "player_leaderboard_rank": [ - 2457, + 2456, { "distinct_on": [ - 2468, + 2467, "[player_leaderboard_rank_select_column!]" ], "limit": [ @@ -114973,19 +115870,19 @@ export default { 38 ], "order_by": [ - 2467, + 2466, "[player_leaderboard_rank_order_by!]" ], "where": [ - 2461 + 2460 ] } ], "player_leaderboard_rank_aggregate": [ - 2458, + 2457, { "distinct_on": [ - 2468, + 2467, "[player_leaderboard_rank_select_column!]" ], "limit": [ @@ -114995,19 +115892,19 @@ export default { 38 ], "order_by": [ - 2467, + 2466, "[player_leaderboard_rank_order_by!]" ], "where": [ - 2461 + 2460 ] } ], "player_match_map_stats": [ - 2480, + 2479, { "distinct_on": [ - 2501, + 2500, "[player_match_map_stats_select_column!]" ], "limit": [ @@ -115017,19 +115914,19 @@ export default { 38 ], "order_by": [ - 2499, + 2498, "[player_match_map_stats_order_by!]" ], "where": [ - 2489 + 2488 ] } ], "player_match_map_stats_aggregate": [ - 2481, + 2480, { "distinct_on": [ - 2501, + 2500, "[player_match_map_stats_select_column!]" ], "limit": [ @@ -115039,32 +115936,32 @@ export default { 38 ], "order_by": [ - 2499, + 2498, "[player_match_map_stats_order_by!]" ], "where": [ - 2489 + 2488 ] } ], "player_match_map_stats_by_pk": [ - 2480, + 2479, { "match_map_id": [ - 3864, + 3863, "uuid!" ], "steam_id": [ - 174, + 173, "bigint!" ] } ], "player_match_performance_v": [ - 2521, + 2520, { "distinct_on": [ - 2529, + 2528, "[player_match_performance_v_select_column!]" ], "limit": [ @@ -115074,19 +115971,19 @@ export default { 38 ], "order_by": [ - 2528, + 2527, "[player_match_performance_v_order_by!]" ], "where": [ - 2525 + 2524 ] } ], "player_match_performance_v_aggregate": [ - 2522, + 2521, { "distinct_on": [ - 2529, + 2528, "[player_match_performance_v_select_column!]" ], "limit": [ @@ -115096,19 +115993,19 @@ export default { 38 ], "order_by": [ - 2528, + 2527, "[player_match_performance_v_order_by!]" ], "where": [ - 2525 + 2524 ] } ], "player_match_stats_v": [ - 2539, + 2538, { "distinct_on": [ - 2555, + 2554, "[player_match_stats_v_select_column!]" ], "limit": [ @@ -115118,19 +116015,19 @@ export default { 38 ], "order_by": [ - 2554, + 2553, "[player_match_stats_v_order_by!]" ], "where": [ - 2548 + 2547 ] } ], "player_match_stats_v_aggregate": [ - 2540, + 2539, { "distinct_on": [ - 2555, + 2554, "[player_match_stats_v_select_column!]" ], "limit": [ @@ -115140,19 +116037,19 @@ export default { 38 ], "order_by": [ - 2554, + 2553, "[player_match_stats_v_order_by!]" ], "where": [ - 2548 + 2547 ] } ], "player_objectives": [ - 2572, + 2571, { "distinct_on": [ - 2593, + 2592, "[player_objectives_select_column!]" ], "limit": [ @@ -115162,19 +116059,19 @@ export default { 38 ], "order_by": [ - 2591, + 2590, "[player_objectives_order_by!]" ], "where": [ - 2581 + 2580 ] } ], "player_objectives_aggregate": [ - 2573, + 2572, { "distinct_on": [ - 2593, + 2592, "[player_objectives_select_column!]" ], "limit": [ @@ -115184,36 +116081,36 @@ export default { 38 ], "order_by": [ - 2591, + 2590, "[player_objectives_order_by!]" ], "where": [ - 2581 + 2580 ] } ], "player_objectives_by_pk": [ - 2572, + 2571, { "match_map_id": [ - 3864, + 3863, "uuid!" ], "player_steam_id": [ - 174, + 173, "bigint!" ], "time": [ - 3467, + 3466, "timestamptz!" ] } ], "player_performance_v": [ - 2613, + 2612, { "distinct_on": [ - 2621, + 2620, "[player_performance_v_select_column!]" ], "limit": [ @@ -115223,19 +116120,19 @@ export default { 38 ], "order_by": [ - 2620, + 2619, "[player_performance_v_order_by!]" ], "where": [ - 2617 + 2616 ] } ], "player_performance_v_aggregate": [ - 2614, + 2613, { "distinct_on": [ - 2621, + 2620, "[player_performance_v_select_column!]" ], "limit": [ @@ -115245,19 +116142,19 @@ export default { 38 ], "order_by": [ - 2620, + 2619, "[player_performance_v_order_by!]" ], "where": [ - 2617 + 2616 ] } ], "player_premier_rank_history": [ - 2631, + 2630, { "distinct_on": [ - 2652, + 2651, "[player_premier_rank_history_select_column!]" ], "limit": [ @@ -115267,19 +116164,19 @@ export default { 38 ], "order_by": [ - 2650, + 2649, "[player_premier_rank_history_order_by!]" ], "where": [ - 2640 + 2639 ] } ], "player_premier_rank_history_aggregate": [ - 2632, + 2631, { "distinct_on": [ - 2652, + 2651, "[player_premier_rank_history_select_column!]" ], "limit": [ @@ -115289,28 +116186,28 @@ export default { 38 ], "order_by": [ - 2650, + 2649, "[player_premier_rank_history_order_by!]" ], "where": [ - 2640 + 2639 ] } ], "player_premier_rank_history_by_pk": [ - 2631, + 2630, { "id": [ - 3864, + 3863, "uuid!" ] } ], "player_sanctions": [ - 2672, + 2671, { "distinct_on": [ - 2693, + 2692, "[player_sanctions_select_column!]" ], "limit": [ @@ -115320,19 +116217,19 @@ export default { 38 ], "order_by": [ - 2691, + 2690, "[player_sanctions_order_by!]" ], "where": [ - 2681 + 2680 ] } ], "player_sanctions_aggregate": [ - 2673, + 2672, { "distinct_on": [ - 2693, + 2692, "[player_sanctions_select_column!]" ], "limit": [ @@ -115342,32 +116239,32 @@ export default { 38 ], "order_by": [ - 2691, + 2690, "[player_sanctions_order_by!]" ], "where": [ - 2681 + 2680 ] } ], "player_sanctions_by_pk": [ - 2672, + 2671, { "created_at": [ - 3467, + 3466, "timestamptz!" ], "id": [ - 3864, + 3863, "uuid!" ] } ], "player_stats": [ - 2713, + 2712, { "distinct_on": [ - 2728, + 2727, "[player_stats_select_column!]" ], "limit": [ @@ -115377,19 +116274,19 @@ export default { 38 ], "order_by": [ - 2726, + 2725, "[player_stats_order_by!]" ], "where": [ - 2717 + 2716 ] } ], "player_stats_aggregate": [ - 2714, + 2713, { "distinct_on": [ - 2728, + 2727, "[player_stats_select_column!]" ], "limit": [ @@ -115399,28 +116296,28 @@ export default { 38 ], "order_by": [ - 2726, + 2725, "[player_stats_order_by!]" ], "where": [ - 2717 + 2716 ] } ], "player_stats_by_pk": [ - 2713, + 2712, { "player_steam_id": [ - 174, + 173, "bigint!" ] } ], "player_steam_bot_friend": [ - 2741, + 2740, { "distinct_on": [ - 2760, + 2759, "[player_steam_bot_friend_select_column!]" ], "limit": [ @@ -115430,19 +116327,19 @@ export default { 38 ], "order_by": [ - 2757, + 2756, "[player_steam_bot_friend_order_by!]" ], "where": [ - 2746 + 2745 ] } ], "player_steam_bot_friend_aggregate": [ - 2742, + 2741, { "distinct_on": [ - 2760, + 2759, "[player_steam_bot_friend_select_column!]" ], "limit": [ @@ -115452,28 +116349,28 @@ export default { 38 ], "order_by": [ - 2757, + 2756, "[player_steam_bot_friend_order_by!]" ], "where": [ - 2746 + 2745 ] } ], "player_steam_bot_friend_by_pk": [ - 2741, + 2740, { "steam_id": [ - 174, + 173, "bigint!" ] } ], "player_steam_match_auth": [ - 2773, + 2772, { "distinct_on": [ - 2787, + 2786, "[player_steam_match_auth_select_column!]" ], "limit": [ @@ -115483,19 +116380,19 @@ export default { 38 ], "order_by": [ - 2785, + 2784, "[player_steam_match_auth_order_by!]" ], "where": [ - 2777 + 2776 ] } ], "player_steam_match_auth_aggregate": [ - 2774, + 2773, { "distinct_on": [ - 2787, + 2786, "[player_steam_match_auth_select_column!]" ], "limit": [ @@ -115505,28 +116402,28 @@ export default { 38 ], "order_by": [ - 2785, + 2784, "[player_steam_match_auth_order_by!]" ], "where": [ - 2777 + 2776 ] } ], "player_steam_match_auth_by_pk": [ - 2773, + 2772, { "steam_id": [ - 174, + 173, "bigint!" ] } ], "player_unused_utility": [ - 2800, + 2799, { "distinct_on": [ - 2821, + 2820, "[player_unused_utility_select_column!]" ], "limit": [ @@ -115536,19 +116433,19 @@ export default { 38 ], "order_by": [ - 2819, + 2818, "[player_unused_utility_order_by!]" ], "where": [ - 2809 + 2808 ] } ], "player_unused_utility_aggregate": [ - 2801, + 2800, { "distinct_on": [ - 2821, + 2820, "[player_unused_utility_select_column!]" ], "limit": [ @@ -115558,32 +116455,32 @@ export default { 38 ], "order_by": [ - 2819, + 2818, "[player_unused_utility_order_by!]" ], "where": [ - 2809 + 2808 ] } ], "player_unused_utility_by_pk": [ - 2800, + 2799, { "match_map_id": [ - 3864, + 3863, "uuid!" ], "player_steam_id": [ - 174, + 173, "bigint!" ] } ], "player_utility": [ - 2841, + 2840, { "distinct_on": [ - 2862, + 2861, "[player_utility_select_column!]" ], "limit": [ @@ -115593,19 +116490,19 @@ export default { 38 ], "order_by": [ - 2860, + 2859, "[player_utility_order_by!]" ], "where": [ - 2850 + 2849 ] } ], "player_utility_aggregate": [ - 2842, + 2841, { "distinct_on": [ - 2862, + 2861, "[player_utility_select_column!]" ], "limit": [ @@ -115615,36 +116512,36 @@ export default { 38 ], "order_by": [ - 2860, + 2859, "[player_utility_order_by!]" ], "where": [ - 2850 + 2849 ] } ], "player_utility_by_pk": [ - 2841, + 2840, { "attacker_steam_id": [ - 174, + 173, "bigint!" ], "match_map_id": [ - 3864, + 3863, "uuid!" ], "time": [ - 3467, + 3466, "timestamptz!" ] } ], "player_weapon_stats_v": [ - 2882, + 2881, { "distinct_on": [ - 2898, + 2897, "[player_weapon_stats_v_select_column!]" ], "limit": [ @@ -115654,19 +116551,19 @@ export default { 38 ], "order_by": [ - 2897, + 2896, "[player_weapon_stats_v_order_by!]" ], "where": [ - 2891 + 2890 ] } ], "player_weapon_stats_v_aggregate": [ - 2883, + 2882, { "distinct_on": [ - 2898, + 2897, "[player_weapon_stats_v_select_column!]" ], "limit": [ @@ -115676,19 +116573,19 @@ export default { 38 ], "order_by": [ - 2897, + 2896, "[player_weapon_stats_v_order_by!]" ], "where": [ - 2891 + 2890 ] } ], "players": [ - 2915, + 2914, { "distinct_on": [ - 2930, + 2929, "[players_select_column!]" ], "limit": [ @@ -115698,19 +116595,19 @@ export default { 38 ], "order_by": [ - 2928, + 2927, "[players_order_by!]" ], "where": [ - 2919 + 2918 ] } ], "players_aggregate": [ - 2916, + 2915, { "distinct_on": [ - 2930, + 2929, "[players_select_column!]" ], "limit": [ @@ -115720,28 +116617,28 @@ export default { 38 ], "order_by": [ - 2928, + 2927, "[players_order_by!]" ], "where": [ - 2919 + 2918 ] } ], "players_by_pk": [ - 2915, + 2914, { "steam_id": [ - 174, + 173, "bigint!" ] } ], "plugin_versions": [ - 2943, + 2942, { "distinct_on": [ - 2957, + 2956, "[plugin_versions_select_column!]" ], "limit": [ @@ -115751,19 +116648,19 @@ export default { 38 ], "order_by": [ - 2955, + 2954, "[plugin_versions_order_by!]" ], "where": [ - 2947 + 2946 ] } ], "plugin_versions_aggregate": [ - 2944, + 2943, { "distinct_on": [ - 2957, + 2956, "[plugin_versions_select_column!]" ], "limit": [ @@ -115773,19 +116670,19 @@ export default { 38 ], "order_by": [ - 2955, + 2954, "[plugin_versions_order_by!]" ], "where": [ - 2947 + 2946 ] } ], "plugin_versions_by_pk": [ - 2943, + 2942, { "version": [ - 75, + 74, "String!" ] } @@ -115794,15 +116691,15 @@ export default { 26, { "file_path": [ - 75, + 74, "String!" ], "node_id": [ - 75, + 74, "String!" ], "server_id": [ - 75 + 74 ] } ], @@ -115810,16 +116707,16 @@ export default { 63, { "team_id": [ - 3864, + 3863, "uuid!" ] } ], "server_regions": [ - 2971, + 2970, { "distinct_on": [ - 2985, + 2984, "[server_regions_select_column!]" ], "limit": [ @@ -115829,19 +116726,19 @@ export default { 38 ], "order_by": [ - 2983, + 2982, "[server_regions_order_by!]" ], "where": [ - 2975 + 2974 ] } ], "server_regions_aggregate": [ - 2972, + 2971, { "distinct_on": [ - 2985, + 2984, "[server_regions_select_column!]" ], "limit": [ @@ -115851,28 +116748,28 @@ export default { 38 ], "order_by": [ - 2983, + 2982, "[server_regions_order_by!]" ], "where": [ - 2975 + 2974 ] } ], "server_regions_by_pk": [ - 2971, + 2970, { "value": [ - 75, + 74, "String!" ] } ], "servers": [ - 2998, + 2997, { "distinct_on": [ - 3022, + 3021, "[servers_select_column!]" ], "limit": [ @@ -115882,19 +116779,19 @@ export default { 38 ], "order_by": [ - 3020, + 3019, "[servers_order_by!]" ], "where": [ - 3009 + 3008 ] } ], "servers_aggregate": [ - 2999, + 2998, { "distinct_on": [ - 3022, + 3021, "[servers_select_column!]" ], "limit": [ @@ -115904,28 +116801,28 @@ export default { 38 ], "order_by": [ - 3020, + 3019, "[servers_order_by!]" ], "where": [ - 3009 + 3008 ] } ], "servers_by_pk": [ - 2998, + 2997, { "id": [ - 3864, + 3863, "uuid!" ] } ], "settings": [ - 3044, + 3043, { "distinct_on": [ - 3056, + 3055, "[settings_select_column!]" ], "limit": [ @@ -115935,19 +116832,19 @@ export default { 38 ], "order_by": [ - 3054, + 3053, "[settings_order_by!]" ], "where": [ - 3047 + 3046 ] } ], "settings_aggregate": [ - 3045, + 3044, { "distinct_on": [ - 3056, + 3055, "[settings_select_column!]" ], "limit": [ @@ -115957,19 +116854,19 @@ export default { 38 ], "order_by": [ - 3054, + 3053, "[settings_order_by!]" ], "where": [ - 3047 + 3046 ] } ], "settings_by_pk": [ - 3044, + 3043, { "name": [ - 75, + 74, "String!" ] } @@ -115978,10 +116875,10 @@ export default { 68 ], "steam_account_claims": [ - 3062, + 3061, { "distinct_on": [ - 3080, + 3079, "[steam_account_claims_select_column!]" ], "limit": [ @@ -115991,19 +116888,19 @@ export default { 38 ], "order_by": [ - 3078, + 3077, "[steam_account_claims_order_by!]" ], "where": [ - 3069 + 3068 ] } ], "steam_account_claims_aggregate": [ - 3063, + 3062, { "distinct_on": [ - 3080, + 3079, "[steam_account_claims_select_column!]" ], "limit": [ @@ -116013,28 +116910,28 @@ export default { 38 ], "order_by": [ - 3078, + 3077, "[steam_account_claims_order_by!]" ], "where": [ - 3069 + 3068 ] } ], "steam_account_claims_by_pk": [ - 3062, + 3061, { "id": [ - 3864, + 3863, "uuid!" ] } ], "steam_accounts": [ - 3086, + 3085, { "distinct_on": [ - 3101, + 3100, "[steam_accounts_select_column!]" ], "limit": [ @@ -116044,19 +116941,19 @@ export default { 38 ], "order_by": [ - 3099, + 3098, "[steam_accounts_order_by!]" ], "where": [ - 3090 + 3089 ] } ], "steam_accounts_aggregate": [ - 3087, + 3086, { "distinct_on": [ - 3101, + 3100, "[steam_accounts_select_column!]" ], "limit": [ @@ -116066,28 +116963,28 @@ export default { 38 ], "order_by": [ - 3099, + 3098, "[steam_accounts_order_by!]" ], "where": [ - 3090 + 3089 ] } ], "steam_accounts_by_pk": [ - 3086, + 3085, { "id": [ - 3864, + 3863, "uuid!" ] } ], "system_alerts": [ - 3114, + 3113, { "distinct_on": [ - 3128, + 3127, "[system_alerts_select_column!]" ], "limit": [ @@ -116097,19 +116994,19 @@ export default { 38 ], "order_by": [ - 3126, + 3125, "[system_alerts_order_by!]" ], "where": [ - 3118 + 3117 ] } ], "system_alerts_aggregate": [ - 3115, + 3114, { "distinct_on": [ - 3128, + 3127, "[system_alerts_select_column!]" ], "limit": [ @@ -116119,28 +117016,28 @@ export default { 38 ], "order_by": [ - 3126, + 3125, "[system_alerts_order_by!]" ], "where": [ - 3118 + 3117 ] } ], "system_alerts_by_pk": [ - 3114, + 3113, { "id": [ - 3864, + 3863, "uuid!" ] } ], "team_invites": [ - 3141, + 3140, { "distinct_on": [ - 3162, + 3161, "[team_invites_select_column!]" ], "limit": [ @@ -116150,19 +117047,19 @@ export default { 38 ], "order_by": [ - 3160, + 3159, "[team_invites_order_by!]" ], "where": [ - 3150 + 3149 ] } ], "team_invites_aggregate": [ - 3142, + 3141, { "distinct_on": [ - 3162, + 3161, "[team_invites_select_column!]" ], "limit": [ @@ -116172,28 +117069,28 @@ export default { 38 ], "order_by": [ - 3160, + 3159, "[team_invites_order_by!]" ], "where": [ - 3150 + 3149 ] } ], "team_invites_by_pk": [ - 3141, + 3140, { "id": [ - 3864, + 3863, "uuid!" ] } ], "team_roster": [ - 3182, + 3181, { "distinct_on": [ - 3205, + 3204, "[team_roster_select_column!]" ], "limit": [ @@ -116203,19 +117100,19 @@ export default { 38 ], "order_by": [ - 3203, + 3202, "[team_roster_order_by!]" ], "where": [ - 3193 + 3192 ] } ], "team_roster_aggregate": [ - 3183, + 3182, { "distinct_on": [ - 3205, + 3204, "[team_roster_select_column!]" ], "limit": [ @@ -116225,32 +117122,32 @@ export default { 38 ], "order_by": [ - 3203, + 3202, "[team_roster_order_by!]" ], "where": [ - 3193 + 3192 ] } ], "team_roster_by_pk": [ - 3182, + 3181, { "player_steam_id": [ - 174, + 173, "bigint!" ], "team_id": [ - 3864, + 3863, "uuid!" ] } ], "team_scrim_alerts": [ - 3227, + 3226, { "distinct_on": [ - 3241, + 3240, "[team_scrim_alerts_select_column!]" ], "limit": [ @@ -116260,19 +117157,19 @@ export default { 38 ], "order_by": [ - 3239, + 3238, "[team_scrim_alerts_order_by!]" ], "where": [ - 3231 + 3230 ] } ], "team_scrim_alerts_aggregate": [ - 3228, + 3227, { "distinct_on": [ - 3241, + 3240, "[team_scrim_alerts_select_column!]" ], "limit": [ @@ -116282,28 +117179,28 @@ export default { 38 ], "order_by": [ - 3239, + 3238, "[team_scrim_alerts_order_by!]" ], "where": [ - 3231 + 3230 ] } ], "team_scrim_alerts_by_pk": [ - 3227, + 3226, { "id": [ - 3864, + 3863, "uuid!" ] } ], "team_scrim_availability": [ - 3254, + 3253, { "distinct_on": [ - 3274, + 3273, "[team_scrim_availability_select_column!]" ], "limit": [ @@ -116313,19 +117210,19 @@ export default { 38 ], "order_by": [ - 3272, + 3271, "[team_scrim_availability_order_by!]" ], "where": [ - 3263 + 3262 ] } ], "team_scrim_availability_aggregate": [ - 3255, + 3254, { "distinct_on": [ - 3274, + 3273, "[team_scrim_availability_select_column!]" ], "limit": [ @@ -116335,28 +117232,28 @@ export default { 38 ], "order_by": [ - 3272, + 3271, "[team_scrim_availability_order_by!]" ], "where": [ - 3263 + 3262 ] } ], "team_scrim_availability_by_pk": [ - 3254, + 3253, { "id": [ - 3864, + 3863, "uuid!" ] } ], "team_scrim_request_proposals": [ - 3282, + 3281, { "distinct_on": [ - 3303, + 3302, "[team_scrim_request_proposals_select_column!]" ], "limit": [ @@ -116366,19 +117263,19 @@ export default { 38 ], "order_by": [ - 3301, + 3300, "[team_scrim_request_proposals_order_by!]" ], "where": [ - 3291 + 3290 ] } ], "team_scrim_request_proposals_aggregate": [ - 3283, + 3282, { "distinct_on": [ - 3303, + 3302, "[team_scrim_request_proposals_select_column!]" ], "limit": [ @@ -116388,28 +117285,28 @@ export default { 38 ], "order_by": [ - 3301, + 3300, "[team_scrim_request_proposals_order_by!]" ], "where": [ - 3291 + 3290 ] } ], "team_scrim_request_proposals_by_pk": [ - 3282, + 3281, { "id": [ - 3864, + 3863, "uuid!" ] } ], "team_scrim_requests": [ - 3323, + 3322, { "distinct_on": [ - 3347, + 3346, "[team_scrim_requests_select_column!]" ], "limit": [ @@ -116419,19 +117316,19 @@ export default { 38 ], "order_by": [ - 3345, + 3344, "[team_scrim_requests_order_by!]" ], "where": [ - 3334 + 3333 ] } ], "team_scrim_requests_aggregate": [ - 3324, + 3323, { "distinct_on": [ - 3347, + 3346, "[team_scrim_requests_select_column!]" ], "limit": [ @@ -116441,28 +117338,28 @@ export default { 38 ], "order_by": [ - 3345, + 3344, "[team_scrim_requests_order_by!]" ], "where": [ - 3334 + 3333 ] } ], "team_scrim_requests_by_pk": [ - 3323, + 3322, { "id": [ - 3864, + 3863, "uuid!" ] } ], "team_scrim_settings": [ - 3369, + 3368, { "distinct_on": [ - 3384, + 3383, "[team_scrim_settings_select_column!]" ], "limit": [ @@ -116472,19 +117369,19 @@ export default { 38 ], "order_by": [ - 3382, + 3381, "[team_scrim_settings_order_by!]" ], "where": [ - 3373 + 3372 ] } ], "team_scrim_settings_aggregate": [ - 3370, + 3369, { "distinct_on": [ - 3384, + 3383, "[team_scrim_settings_select_column!]" ], "limit": [ @@ -116494,28 +117391,28 @@ export default { 38 ], "order_by": [ - 3382, + 3381, "[team_scrim_settings_order_by!]" ], "where": [ - 3373 + 3372 ] } ], "team_scrim_settings_by_pk": [ - 3369, + 3368, { "id": [ - 3864, + 3863, "uuid!" ] } ], "team_suggestions": [ - 3397, + 3396, { "distinct_on": [ - 3411, + 3410, "[team_suggestions_select_column!]" ], "limit": [ @@ -116525,19 +117422,19 @@ export default { 38 ], "order_by": [ - 3409, + 3408, "[team_suggestions_order_by!]" ], "where": [ - 3401 + 3400 ] } ], "team_suggestions_aggregate": [ - 3398, + 3397, { "distinct_on": [ - 3411, + 3410, "[team_suggestions_select_column!]" ], "limit": [ @@ -116547,28 +117444,28 @@ export default { 38 ], "order_by": [ - 3409, + 3408, "[team_suggestions_order_by!]" ], "where": [ - 3401 + 3400 ] } ], "team_suggestions_by_pk": [ - 3397, + 3396, { "id": [ - 3864, + 3863, "uuid!" ] } ], "teams": [ - 3424, + 3423, { "distinct_on": [ - 3446, + 3445, "[teams_select_column!]" ], "limit": [ @@ -116578,19 +117475,19 @@ export default { 38 ], "order_by": [ - 3444, + 3443, "[teams_order_by!]" ], "where": [ - 3433 + 3432 ] } ], "teams_aggregate": [ - 3425, + 3424, { "distinct_on": [ - 3446, + 3445, "[teams_select_column!]" ], "limit": [ @@ -116600,31 +117497,31 @@ export default { 38 ], "order_by": [ - 3444, + 3443, "[teams_order_by!]" ], "where": [ - 3433 + 3432 ] } ], "teams_by_pk": [ - 3424, + 3423, { "id": [ - 3864, + 3863, "uuid!" ] } ], "telemetryStats": [ - 82 + 81 ], "tournament_brackets": [ - 3469, + 3468, { "distinct_on": [ - 3493, + 3492, "[tournament_brackets_select_column!]" ], "limit": [ @@ -116634,19 +117531,19 @@ export default { 38 ], "order_by": [ - 3491, + 3490, "[tournament_brackets_order_by!]" ], "where": [ - 3480 + 3479 ] } ], "tournament_brackets_aggregate": [ - 3470, + 3469, { "distinct_on": [ - 3493, + 3492, "[tournament_brackets_select_column!]" ], "limit": [ @@ -116656,28 +117553,28 @@ export default { 38 ], "order_by": [ - 3491, + 3490, "[tournament_brackets_order_by!]" ], "where": [ - 3480 + 3479 ] } ], "tournament_brackets_by_pk": [ - 3469, + 3468, { "id": [ - 3864, + 3863, "uuid!" ] } ], "tournament_organizers": [ - 3515, + 3514, { "distinct_on": [ - 3536, + 3535, "[tournament_organizers_select_column!]" ], "limit": [ @@ -116687,19 +117584,19 @@ export default { 38 ], "order_by": [ - 3534, + 3533, "[tournament_organizers_order_by!]" ], "where": [ - 3524 + 3523 ] } ], "tournament_organizers_aggregate": [ - 3516, + 3515, { "distinct_on": [ - 3536, + 3535, "[tournament_organizers_select_column!]" ], "limit": [ @@ -116709,32 +117606,32 @@ export default { 38 ], "order_by": [ - 3534, + 3533, "[tournament_organizers_order_by!]" ], "where": [ - 3524 + 3523 ] } ], "tournament_organizers_by_pk": [ - 3515, + 3514, { "steam_id": [ - 174, + 173, "bigint!" ], "tournament_id": [ - 3864, + 3863, "uuid!" ] } ], "tournament_stages": [ - 3556, + 3555, { "distinct_on": [ - 3585, + 3584, "[tournament_stages_select_column!]" ], "limit": [ @@ -116744,19 +117641,19 @@ export default { 38 ], "order_by": [ - 3582, + 3581, "[tournament_stages_order_by!]" ], "where": [ - 3568 + 3567 ] } ], "tournament_stages_aggregate": [ - 3557, + 3556, { "distinct_on": [ - 3585, + 3584, "[tournament_stages_select_column!]" ], "limit": [ @@ -116766,28 +117663,28 @@ export default { 38 ], "order_by": [ - 3582, + 3581, "[tournament_stages_order_by!]" ], "where": [ - 3568 + 3567 ] } ], "tournament_stages_by_pk": [ - 3556, + 3555, { "id": [ - 3864, + 3863, "uuid!" ] } ], "tournament_team_invites": [ - 3607, + 3606, { "distinct_on": [ - 3628, + 3627, "[tournament_team_invites_select_column!]" ], "limit": [ @@ -116797,19 +117694,19 @@ export default { 38 ], "order_by": [ - 3626, + 3625, "[tournament_team_invites_order_by!]" ], "where": [ - 3616 + 3615 ] } ], "tournament_team_invites_aggregate": [ - 3608, + 3607, { "distinct_on": [ - 3628, + 3627, "[tournament_team_invites_select_column!]" ], "limit": [ @@ -116819,28 +117716,28 @@ export default { 38 ], "order_by": [ - 3626, + 3625, "[tournament_team_invites_order_by!]" ], "where": [ - 3616 + 3615 ] } ], "tournament_team_invites_by_pk": [ - 3607, + 3606, { "id": [ - 3864, + 3863, "uuid!" ] } ], "tournament_team_roster": [ - 3648, + 3647, { "distinct_on": [ - 3669, + 3668, "[tournament_team_roster_select_column!]" ], "limit": [ @@ -116850,19 +117747,19 @@ export default { 38 ], "order_by": [ - 3667, + 3666, "[tournament_team_roster_order_by!]" ], "where": [ - 3657 + 3656 ] } ], "tournament_team_roster_aggregate": [ - 3649, + 3648, { "distinct_on": [ - 3669, + 3668, "[tournament_team_roster_select_column!]" ], "limit": [ @@ -116872,32 +117769,32 @@ export default { 38 ], "order_by": [ - 3667, + 3666, "[tournament_team_roster_order_by!]" ], "where": [ - 3657 + 3656 ] } ], "tournament_team_roster_by_pk": [ - 3648, + 3647, { "player_steam_id": [ - 174, + 173, "bigint!" ], "tournament_id": [ - 3864, + 3863, "uuid!" ] } ], "tournament_teams": [ - 3689, + 3688, { "distinct_on": [ - 3711, + 3710, "[tournament_teams_select_column!]" ], "limit": [ @@ -116907,19 +117804,19 @@ export default { 38 ], "order_by": [ - 3709, + 3708, "[tournament_teams_order_by!]" ], "where": [ - 3698 + 3697 ] } ], "tournament_teams_aggregate": [ - 3690, + 3689, { "distinct_on": [ - 3711, + 3710, "[tournament_teams_select_column!]" ], "limit": [ @@ -116929,28 +117826,28 @@ export default { 38 ], "order_by": [ - 3709, + 3708, "[tournament_teams_order_by!]" ], "where": [ - 3698 + 3697 ] } ], "tournament_teams_by_pk": [ - 3689, + 3688, { "id": [ - 3864, + 3863, "uuid!" ] } ], "tournament_trophies": [ - 3731, + 3730, { "distinct_on": [ - 3754, + 3753, "[tournament_trophies_select_column!]" ], "limit": [ @@ -116960,19 +117857,19 @@ export default { 38 ], "order_by": [ - 3752, + 3751, "[tournament_trophies_order_by!]" ], "where": [ - 3742 + 3741 ] } ], "tournament_trophies_aggregate": [ - 3732, + 3731, { "distinct_on": [ - 3754, + 3753, "[tournament_trophies_select_column!]" ], "limit": [ @@ -116982,28 +117879,28 @@ export default { 38 ], "order_by": [ - 3752, + 3751, "[tournament_trophies_order_by!]" ], "where": [ - 3742 + 3741 ] } ], "tournament_trophies_by_pk": [ - 3731, + 3730, { "id": [ - 3864, + 3863, "uuid!" ] } ], "tournament_trophy_configs": [ - 3776, + 3775, { "distinct_on": [ - 3798, + 3797, "[tournament_trophy_configs_select_column!]" ], "limit": [ @@ -117013,19 +117910,19 @@ export default { 38 ], "order_by": [ - 3796, + 3795, "[tournament_trophy_configs_order_by!]" ], "where": [ - 3785 + 3784 ] } ], "tournament_trophy_configs_aggregate": [ - 3777, + 3776, { "distinct_on": [ - 3798, + 3797, "[tournament_trophy_configs_select_column!]" ], "limit": [ @@ -117035,28 +117932,28 @@ export default { 38 ], "order_by": [ - 3796, + 3795, "[tournament_trophy_configs_order_by!]" ], "where": [ - 3785 + 3784 ] } ], "tournament_trophy_configs_by_pk": [ - 3776, + 3775, { "id": [ - 3864, + 3863, "uuid!" ] } ], "tournaments": [ - 3818, + 3817, { "distinct_on": [ - 3842, + 3841, "[tournaments_select_column!]" ], "limit": [ @@ -117066,19 +117963,19 @@ export default { 38 ], "order_by": [ - 3840, + 3839, "[tournaments_order_by!]" ], "where": [ - 3829 + 3828 ] } ], "tournaments_aggregate": [ - 3819, + 3818, { "distinct_on": [ - 3842, + 3841, "[tournaments_select_column!]" ], "limit": [ @@ -117088,28 +117985,28 @@ export default { 38 ], "order_by": [ - 3840, + 3839, "[tournaments_order_by!]" ], "where": [ - 3829 + 3828 ] } ], "tournaments_by_pk": [ - 3818, + 3817, { "id": [ - 3864, + 3863, "uuid!" ] } ], "v_gpu_pool_status": [ - 3867, + 3866, { "distinct_on": [ - 3875, + 3874, "[v_gpu_pool_status_select_column!]" ], "limit": [ @@ -117119,19 +118016,19 @@ export default { 38 ], "order_by": [ - 3874, + 3873, "[v_gpu_pool_status_order_by!]" ], "where": [ - 3871 + 3870 ] } ], "v_gpu_pool_status_aggregate": [ - 3868, + 3867, { "distinct_on": [ - 3875, + 3874, "[v_gpu_pool_status_select_column!]" ], "limit": [ @@ -117141,19 +118038,19 @@ export default { 38 ], "order_by": [ - 3874, + 3873, "[v_gpu_pool_status_order_by!]" ], "where": [ - 3871 + 3870 ] } ], "v_match_captains": [ - 3885, + 3884, { "distinct_on": [ - 3897, + 3896, "[v_match_captains_select_column!]" ], "limit": [ @@ -117163,19 +118060,19 @@ export default { 38 ], "order_by": [ - 3896, + 3895, "[v_match_captains_order_by!]" ], "where": [ - 3889 + 3888 ] } ], "v_match_captains_aggregate": [ - 3886, + 3885, { "distinct_on": [ - 3897, + 3896, "[v_match_captains_select_column!]" ], "limit": [ @@ -117185,19 +118082,19 @@ export default { 38 ], "order_by": [ - 3896, + 3895, "[v_match_captains_order_by!]" ], "where": [ - 3889 + 3888 ] } ], "v_match_clutches": [ - 3909, + 3908, { "distinct_on": [ - 3925, + 3924, "[v_match_clutches_select_column!]" ], "limit": [ @@ -117207,19 +118104,19 @@ export default { 38 ], "order_by": [ - 3924, + 3923, "[v_match_clutches_order_by!]" ], "where": [ - 3918 + 3917 ] } ], "v_match_clutches_aggregate": [ - 3910, + 3909, { "distinct_on": [ - 3925, + 3924, "[v_match_clutches_select_column!]" ], "limit": [ @@ -117229,19 +118126,19 @@ export default { 38 ], "order_by": [ - 3924, + 3923, "[v_match_clutches_order_by!]" ], "where": [ - 3918 + 3917 ] } ], "v_match_kill_pairs": [ - 3942, + 3941, { "distinct_on": [ - 3950, + 3949, "[v_match_kill_pairs_select_column!]" ], "limit": [ @@ -117251,19 +118148,19 @@ export default { 38 ], "order_by": [ - 3949, + 3948, "[v_match_kill_pairs_order_by!]" ], "where": [ - 3946 + 3945 ] } ], "v_match_kill_pairs_aggregate": [ - 3943, + 3942, { "distinct_on": [ - 3950, + 3949, "[v_match_kill_pairs_select_column!]" ], "limit": [ @@ -117273,19 +118170,19 @@ export default { 38 ], "order_by": [ - 3949, + 3948, "[v_match_kill_pairs_order_by!]" ], "where": [ - 3946 + 3945 ] } ], "v_match_lineup_buy_types": [ - 3960, + 3959, { "distinct_on": [ - 3968, + 3967, "[v_match_lineup_buy_types_select_column!]" ], "limit": [ @@ -117295,19 +118192,19 @@ export default { 38 ], "order_by": [ - 3967, + 3966, "[v_match_lineup_buy_types_order_by!]" ], "where": [ - 3964 + 3963 ] } ], "v_match_lineup_buy_types_aggregate": [ - 3961, + 3960, { "distinct_on": [ - 3968, + 3967, "[v_match_lineup_buy_types_select_column!]" ], "limit": [ @@ -117317,19 +118214,19 @@ export default { 38 ], "order_by": [ - 3967, + 3966, "[v_match_lineup_buy_types_order_by!]" ], "where": [ - 3964 + 3963 ] } ], "v_match_lineup_map_stats": [ - 3978, + 3977, { "distinct_on": [ - 3986, + 3985, "[v_match_lineup_map_stats_select_column!]" ], "limit": [ @@ -117339,19 +118236,19 @@ export default { 38 ], "order_by": [ - 3985, + 3984, "[v_match_lineup_map_stats_order_by!]" ], "where": [ - 3982 + 3981 ] } ], "v_match_lineup_map_stats_aggregate": [ - 3979, + 3978, { "distinct_on": [ - 3986, + 3985, "[v_match_lineup_map_stats_select_column!]" ], "limit": [ @@ -117361,19 +118258,19 @@ export default { 38 ], "order_by": [ - 3985, + 3984, "[v_match_lineup_map_stats_order_by!]" ], "where": [ - 3982 + 3981 ] } ], "v_match_map_backup_rounds": [ - 3996, + 3995, { "distinct_on": [ - 4007, + 4006, "[v_match_map_backup_rounds_select_column!]" ], "limit": [ @@ -117383,19 +118280,19 @@ export default { 38 ], "order_by": [ - 4006, + 4005, "[v_match_map_backup_rounds_order_by!]" ], "where": [ - 4000 + 3999 ] } ], "v_match_map_backup_rounds_aggregate": [ - 3997, + 3996, { "distinct_on": [ - 4007, + 4006, "[v_match_map_backup_rounds_select_column!]" ], "limit": [ @@ -117405,19 +118302,19 @@ export default { 38 ], "order_by": [ - 4006, + 4005, "[v_match_map_backup_rounds_order_by!]" ], "where": [ - 4000 + 3999 ] } ], "v_match_player_buy_types": [ - 4019, + 4018, { "distinct_on": [ - 4027, + 4026, "[v_match_player_buy_types_select_column!]" ], "limit": [ @@ -117427,19 +118324,19 @@ export default { 38 ], "order_by": [ - 4026, + 4025, "[v_match_player_buy_types_order_by!]" ], "where": [ - 4023 + 4022 ] } ], "v_match_player_buy_types_aggregate": [ - 4020, + 4019, { "distinct_on": [ - 4027, + 4026, "[v_match_player_buy_types_select_column!]" ], "limit": [ @@ -117449,19 +118346,19 @@ export default { 38 ], "order_by": [ - 4026, + 4025, "[v_match_player_buy_types_order_by!]" ], "where": [ - 4023 + 4022 ] } ], "v_match_player_opening_duels": [ - 4037, + 4036, { "distinct_on": [ - 4053, + 4052, "[v_match_player_opening_duels_select_column!]" ], "limit": [ @@ -117471,19 +118368,19 @@ export default { 38 ], "order_by": [ - 4052, + 4051, "[v_match_player_opening_duels_order_by!]" ], "where": [ - 4046 + 4045 ] } ], "v_match_player_opening_duels_aggregate": [ - 4038, + 4037, { "distinct_on": [ - 4053, + 4052, "[v_match_player_opening_duels_select_column!]" ], "limit": [ @@ -117493,19 +118390,19 @@ export default { 38 ], "order_by": [ - 4052, + 4051, "[v_match_player_opening_duels_order_by!]" ], "where": [ - 4046 + 4045 ] } ], "v_player_arch_nemesis": [ - 4070, + 4069, { "distinct_on": [ - 4078, + 4077, "[v_player_arch_nemesis_select_column!]" ], "limit": [ @@ -117515,19 +118412,19 @@ export default { 38 ], "order_by": [ - 4077, + 4076, "[v_player_arch_nemesis_order_by!]" ], "where": [ - 4074 + 4073 ] } ], "v_player_arch_nemesis_aggregate": [ - 4071, + 4070, { "distinct_on": [ - 4078, + 4077, "[v_player_arch_nemesis_select_column!]" ], "limit": [ @@ -117537,19 +118434,19 @@ export default { 38 ], "order_by": [ - 4077, + 4076, "[v_player_arch_nemesis_order_by!]" ], "where": [ - 4074 + 4073 ] } ], "v_player_damage": [ - 4088, + 4087, { "distinct_on": [ - 4096, + 4095, "[v_player_damage_select_column!]" ], "limit": [ @@ -117559,19 +118456,19 @@ export default { 38 ], "order_by": [ - 4095, + 4094, "[v_player_damage_order_by!]" ], "where": [ - 4092 + 4091 ] } ], "v_player_damage_aggregate": [ - 4089, + 4088, { "distinct_on": [ - 4096, + 4095, "[v_player_damage_select_column!]" ], "limit": [ @@ -117581,19 +118478,19 @@ export default { 38 ], "order_by": [ - 4095, + 4094, "[v_player_damage_order_by!]" ], "where": [ - 4092 + 4091 ] } ], "v_player_elo": [ - 4106, + 4105, { "distinct_on": [ - 4132, + 4131, "[v_player_elo_select_column!]" ], "limit": [ @@ -117603,19 +118500,19 @@ export default { 38 ], "order_by": [ - 4131, + 4130, "[v_player_elo_order_by!]" ], "where": [ - 4125 + 4124 ] } ], "v_player_elo_aggregate": [ - 4107, + 4106, { "distinct_on": [ - 4132, + 4131, "[v_player_elo_select_column!]" ], "limit": [ @@ -117625,19 +118522,19 @@ export default { 38 ], "order_by": [ - 4131, + 4130, "[v_player_elo_order_by!]" ], "where": [ - 4125 + 4124 ] } ], "v_player_map_losses": [ - 4157, + 4156, { "distinct_on": [ - 4165, + 4164, "[v_player_map_losses_select_column!]" ], "limit": [ @@ -117647,19 +118544,19 @@ export default { 38 ], "order_by": [ - 4164, + 4163, "[v_player_map_losses_order_by!]" ], "where": [ - 4161 + 4160 ] } ], "v_player_map_losses_aggregate": [ - 4158, + 4157, { "distinct_on": [ - 4165, + 4164, "[v_player_map_losses_select_column!]" ], "limit": [ @@ -117669,19 +118566,19 @@ export default { 38 ], "order_by": [ - 4164, + 4163, "[v_player_map_losses_order_by!]" ], "where": [ - 4161 + 4160 ] } ], "v_player_map_wins": [ - 4175, + 4174, { "distinct_on": [ - 4183, + 4182, "[v_player_map_wins_select_column!]" ], "limit": [ @@ -117691,19 +118588,19 @@ export default { 38 ], "order_by": [ - 4182, + 4181, "[v_player_map_wins_order_by!]" ], "where": [ - 4179 + 4178 ] } ], "v_player_map_wins_aggregate": [ - 4176, + 4175, { "distinct_on": [ - 4183, + 4182, "[v_player_map_wins_select_column!]" ], "limit": [ @@ -117713,19 +118610,19 @@ export default { 38 ], "order_by": [ - 4182, + 4181, "[v_player_map_wins_order_by!]" ], "where": [ - 4179 + 4178 ] } ], "v_player_match_head_to_head": [ - 4193, + 4192, { "distinct_on": [ - 4201, + 4200, "[v_player_match_head_to_head_select_column!]" ], "limit": [ @@ -117735,19 +118632,19 @@ export default { 38 ], "order_by": [ - 4200, + 4199, "[v_player_match_head_to_head_order_by!]" ], "where": [ - 4197 + 4196 ] } ], "v_player_match_head_to_head_aggregate": [ - 4194, + 4193, { "distinct_on": [ - 4201, + 4200, "[v_player_match_head_to_head_select_column!]" ], "limit": [ @@ -117757,19 +118654,19 @@ export default { 38 ], "order_by": [ - 4200, + 4199, "[v_player_match_head_to_head_order_by!]" ], "where": [ - 4197 + 4196 ] } ], "v_player_match_map_hltv": [ - 4211, + 4210, { "distinct_on": [ - 4229, + 4228, "[v_player_match_map_hltv_select_column!]" ], "limit": [ @@ -117779,19 +118676,19 @@ export default { 38 ], "order_by": [ - 4228, + 4227, "[v_player_match_map_hltv_order_by!]" ], "where": [ - 4220 + 4219 ] } ], "v_player_match_map_hltv_aggregate": [ - 4212, + 4211, { "distinct_on": [ - 4229, + 4228, "[v_player_match_map_hltv_select_column!]" ], "limit": [ @@ -117801,19 +118698,19 @@ export default { 38 ], "order_by": [ - 4228, + 4227, "[v_player_match_map_hltv_order_by!]" ], "where": [ - 4220 + 4219 ] } ], "v_player_match_map_roles": [ - 4248, + 4247, { "distinct_on": [ - 4256, + 4255, "[v_player_match_map_roles_select_column!]" ], "limit": [ @@ -117823,19 +118720,19 @@ export default { 38 ], "order_by": [ - 4255, + 4254, "[v_player_match_map_roles_order_by!]" ], "where": [ - 4252 + 4251 ] } ], "v_player_match_map_roles_aggregate": [ - 4249, + 4248, { "distinct_on": [ - 4256, + 4255, "[v_player_match_map_roles_select_column!]" ], "limit": [ @@ -117845,19 +118742,19 @@ export default { 38 ], "order_by": [ - 4255, + 4254, "[v_player_match_map_roles_order_by!]" ], "where": [ - 4252 + 4251 ] } ], "v_player_match_performance": [ - 4266, + 4265, { "distinct_on": [ - 4274, + 4273, "[v_player_match_performance_select_column!]" ], "limit": [ @@ -117867,19 +118764,19 @@ export default { 38 ], "order_by": [ - 4273, + 4272, "[v_player_match_performance_order_by!]" ], "where": [ - 4270 + 4269 ] } ], "v_player_match_performance_aggregate": [ - 4267, + 4266, { "distinct_on": [ - 4274, + 4273, "[v_player_match_performance_select_column!]" ], "limit": [ @@ -117889,19 +118786,19 @@ export default { 38 ], "order_by": [ - 4273, + 4272, "[v_player_match_performance_order_by!]" ], "where": [ - 4270 + 4269 ] } ], "v_player_match_rating": [ - 4284, + 4283, { "distinct_on": [ - 4292, + 4291, "[v_player_match_rating_select_column!]" ], "limit": [ @@ -117911,19 +118808,19 @@ export default { 38 ], "order_by": [ - 4291, + 4290, "[v_player_match_rating_order_by!]" ], "where": [ - 4288 + 4287 ] } ], "v_player_match_rating_aggregate": [ - 4285, + 4284, { "distinct_on": [ - 4292, + 4291, "[v_player_match_rating_select_column!]" ], "limit": [ @@ -117933,19 +118830,19 @@ export default { 38 ], "order_by": [ - 4291, + 4290, "[v_player_match_rating_order_by!]" ], "where": [ - 4288 + 4287 ] } ], "v_player_multi_kills": [ - 4302, + 4301, { "distinct_on": [ - 4318, + 4317, "[v_player_multi_kills_select_column!]" ], "limit": [ @@ -117955,19 +118852,19 @@ export default { 38 ], "order_by": [ - 4317, + 4316, "[v_player_multi_kills_order_by!]" ], "where": [ - 4311 + 4310 ] } ], "v_player_multi_kills_aggregate": [ - 4303, + 4302, { "distinct_on": [ - 4318, + 4317, "[v_player_multi_kills_select_column!]" ], "limit": [ @@ -117977,19 +118874,19 @@ export default { 38 ], "order_by": [ - 4317, + 4316, "[v_player_multi_kills_order_by!]" ], "where": [ - 4311 + 4310 ] } ], "v_player_weapon_damage": [ - 4335, + 4334, { "distinct_on": [ - 4343, + 4342, "[v_player_weapon_damage_select_column!]" ], "limit": [ @@ -117999,19 +118896,19 @@ export default { 38 ], "order_by": [ - 4342, + 4341, "[v_player_weapon_damage_order_by!]" ], "where": [ - 4339 + 4338 ] } ], "v_player_weapon_damage_aggregate": [ - 4336, + 4335, { "distinct_on": [ - 4343, + 4342, "[v_player_weapon_damage_select_column!]" ], "limit": [ @@ -118021,19 +118918,19 @@ export default { 38 ], "order_by": [ - 4342, + 4341, "[v_player_weapon_damage_order_by!]" ], "where": [ - 4339 + 4338 ] } ], "v_player_weapon_kills": [ - 4353, + 4352, { "distinct_on": [ - 4361, + 4360, "[v_player_weapon_kills_select_column!]" ], "limit": [ @@ -118043,19 +118940,19 @@ export default { 38 ], "order_by": [ - 4360, + 4359, "[v_player_weapon_kills_order_by!]" ], "where": [ - 4357 + 4356 ] } ], "v_player_weapon_kills_aggregate": [ - 4354, + 4353, { "distinct_on": [ - 4361, + 4360, "[v_player_weapon_kills_select_column!]" ], "limit": [ @@ -118065,19 +118962,19 @@ export default { 38 ], "order_by": [ - 4360, + 4359, "[v_player_weapon_kills_order_by!]" ], "where": [ - 4357 + 4356 ] } ], "v_pool_maps": [ - 4371, + 4370, { "distinct_on": [ - 4388, + 4387, "[v_pool_maps_select_column!]" ], "limit": [ @@ -118087,19 +118984,19 @@ export default { 38 ], "order_by": [ - 4387, + 4386, "[v_pool_maps_order_by!]" ], "where": [ - 4380 + 4379 ] } ], "v_pool_maps_aggregate": [ - 4372, + 4371, { "distinct_on": [ - 4388, + 4387, "[v_pool_maps_select_column!]" ], "limit": [ @@ -118109,19 +119006,19 @@ export default { 38 ], "order_by": [ - 4387, + 4386, "[v_pool_maps_order_by!]" ], "where": [ - 4380 + 4379 ] } ], "v_steam_account_pool_status": [ - 4395, + 4394, { "distinct_on": [ - 4403, + 4402, "[v_steam_account_pool_status_select_column!]" ], "limit": [ @@ -118131,19 +119028,19 @@ export default { 38 ], "order_by": [ - 4402, + 4401, "[v_steam_account_pool_status_order_by!]" ], "where": [ - 4399 + 4398 ] } ], "v_steam_account_pool_status_aggregate": [ - 4396, + 4395, { "distinct_on": [ - 4403, + 4402, "[v_steam_account_pool_status_select_column!]" ], "limit": [ @@ -118153,19 +119050,19 @@ export default { 38 ], "order_by": [ - 4402, + 4401, "[v_steam_account_pool_status_order_by!]" ], "where": [ - 4399 + 4398 ] } ], "v_team_ranks": [ - 4413, + 4412, { "distinct_on": [ - 4423, + 4422, "[v_team_ranks_select_column!]" ], "limit": [ @@ -118175,19 +119072,19 @@ export default { 38 ], "order_by": [ - 4422, + 4421, "[v_team_ranks_order_by!]" ], "where": [ - 4417 + 4416 ] } ], "v_team_ranks_aggregate": [ - 4414, + 4413, { "distinct_on": [ - 4423, + 4422, "[v_team_ranks_select_column!]" ], "limit": [ @@ -118197,19 +119094,19 @@ export default { 38 ], "order_by": [ - 4422, + 4421, "[v_team_ranks_order_by!]" ], "where": [ - 4417 + 4416 ] } ], "v_team_reputation": [ - 4433, + 4432, { "distinct_on": [ - 4443, + 4442, "[v_team_reputation_select_column!]" ], "limit": [ @@ -118219,19 +119116,19 @@ export default { 38 ], "order_by": [ - 4442, + 4441, "[v_team_reputation_order_by!]" ], "where": [ - 4437 + 4436 ] } ], "v_team_reputation_aggregate": [ - 4434, + 4433, { "distinct_on": [ - 4443, + 4442, "[v_team_reputation_select_column!]" ], "limit": [ @@ -118241,19 +119138,19 @@ export default { 38 ], "order_by": [ - 4442, + 4441, "[v_team_reputation_order_by!]" ], "where": [ - 4437 + 4436 ] } ], "v_team_stage_results": [ - 4453, + 4452, { "distinct_on": [ - 4485, + 4484, "[v_team_stage_results_select_column!]" ], "limit": [ @@ -118263,19 +119160,19 @@ export default { 38 ], "order_by": [ - 4483, + 4482, "[v_team_stage_results_order_by!]" ], "where": [ - 4472 + 4471 ] } ], "v_team_stage_results_aggregate": [ - 4454, + 4453, { "distinct_on": [ - 4485, + 4484, "[v_team_stage_results_select_column!]" ], "limit": [ @@ -118285,32 +119182,32 @@ export default { 38 ], "order_by": [ - 4483, + 4482, "[v_team_stage_results_order_by!]" ], "where": [ - 4472 + 4471 ] } ], "v_team_stage_results_by_pk": [ - 4453, + 4452, { "tournament_stage_id": [ - 3864, + 3863, "uuid!" ], "tournament_team_id": [ - 3864, + 3863, "uuid!" ] } ], "v_team_tournament_results": [ - 4513, + 4512, { "distinct_on": [ - 4539, + 4538, "[v_team_tournament_results_select_column!]" ], "limit": [ @@ -118320,19 +119217,19 @@ export default { 38 ], "order_by": [ - 4538, + 4537, "[v_team_tournament_results_order_by!]" ], "where": [ - 4532 + 4531 ] } ], "v_team_tournament_results_aggregate": [ - 4514, + 4513, { "distinct_on": [ - 4539, + 4538, "[v_team_tournament_results_select_column!]" ], "limit": [ @@ -118342,19 +119239,19 @@ export default { 38 ], "order_by": [ - 4538, + 4537, "[v_team_tournament_results_order_by!]" ], "where": [ - 4532 + 4531 ] } ], "v_tournament_player_stats": [ - 4564, + 4563, { "distinct_on": [ - 4590, + 4589, "[v_tournament_player_stats_select_column!]" ], "limit": [ @@ -118364,19 +119261,19 @@ export default { 38 ], "order_by": [ - 4589, + 4588, "[v_tournament_player_stats_order_by!]" ], "where": [ - 4583 + 4582 ] } ], "v_tournament_player_stats_aggregate": [ - 4565, + 4564, { "distinct_on": [ - 4590, + 4589, "[v_tournament_player_stats_select_column!]" ], "limit": [ @@ -118386,16 +119283,16 @@ export default { 38 ], "order_by": [ - 4589, + 4588, "[v_tournament_player_stats_order_by!]" ], "where": [ - 4583 + 4582 ] } ], "__typename": [ - 75 + 74 ] }, "Mutation": { @@ -118403,80 +119300,80 @@ export default { 55, { "match_id": [ - 3864, + 3863, "uuid!" ] } ], "ResetTournamentMatch": [ - 78, + 77, { "match_id": [ - 3864, + 3863, "uuid!" ], "reset_status": [ - 75 + 74 ], "scheduled_at": [ - 3467 + 3466 ], "winning_lineup_id": [ - 3864 + 3863 ] } ], "acceptInvite": [ - 78, + 77, { "invite_id": [ - 3864, + 3863, "uuid!" ], "type": [ - 75, + 74, "String!" ] } ], "addDraftPlayer": [ - 78, + 77, { "draftGameId": [ - 3864, + 3863, "uuid!" ], "steamId": [ - 75, + 74, "String!" ] } ], "addSteamPresenceBotAccount": [ - 78, + 77, { "bot_secret": [ - 75, + 74, "String!" ], "friend_capacity": [ 38 ], "username": [ - 75, + 74, "String!" ] } ], "approveNameChange": [ - 78, + 77, { "name": [ - 75, + 74, "String!" ], "steam_id": [ - 174, + 173, "bigint!" ] } @@ -118485,113 +119382,113 @@ export default { 70 ], "attachDemo": [ - 87 + 86 ], "bakeShaders": [ - 78, + 77, { "game_server_node_id": [ - 3864, + 3863, "uuid!" ] } ], "callForOrganizer": [ - 78, + 77, { "match_id": [ - 75, + 74, "String!" ] } ], "cancelBakeShaders": [ - 78, + 77, { "game_server_node_id": [ - 3864, + 3863, "uuid!" ] } ], "cancelClipRender": [ - 78, + 77, { "job_id": [ - 3864, + 3863, "uuid!" ] } ], "cancelClipRenderBatch": [ - 78, + 77, { "match_map_id": [ - 3864, + 3863, "uuid!" ] } ], "cancelMatch": [ - 78, + 77, { "match_id": [ - 3864, + 3863, "uuid!" ] } ], "cancelReparseAllDemos": [ - 78 + 77 ], "cancelScrimRequest": [ - 78, + 77, { "request_id": [ - 3864, + 3863, "uuid!" ] } ], "checkIntoMatch": [ - 78, + 77, { "match_id": [ - 3864, + 3863, "uuid!" ] } ], "clearClipRenderBatch": [ - 78, + 77, { "match_map_id": [ - 3864, + 3863, "uuid!" ] } ], "clearFinishedClipRenders": [ - 78 + 77 ], "clearPendingMatchImport": [ 53, { "valve_match_id": [ - 75, + 74, "String!" ] } ], "counterScrimRequest": [ - 78, + 77, { "proposed_scheduled_at": [ - 3467, + 3466, "timestamptz!" ], "request_id": [ - 3864, + 3863, "uuid!" ] } @@ -118600,7 +119497,7 @@ export default { 2, { "label": [ - 75, + 74, "String!" ] } @@ -118612,25 +119509,25 @@ export default { 38 ], "match_map_id": [ - 3864, + 3863, "uuid!" ], "preset": [ - 75, + 74, "String!" ], "resolution": [ - 75 + 74 ], "target_name": [ - 75 + 74 ], "target_steam_id": [ - 75, + 74, "String!" ], "title": [ - 75 + 74 ] } ], @@ -118644,10 +119541,10 @@ export default { } ], "createClips": [ - 78, + 77, { "match_id": [ - 3864, + 3863, "uuid!" ] } @@ -118656,7 +119553,7 @@ export default { 14, { "settings": [ - 1240, + 1239, "jsonb!" ] } @@ -118673,54 +119570,54 @@ export default { "ScheduledLineupInput!" ], "options": [ - 1240, + 1239, "jsonb!" ], "scheduled_at": [ - 75, + 74, "String!" ] } ], "createServerDirectory": [ - 78, + 77, { "dir_path": [ - 75, + 74, "String!" ], "node_id": [ - 75, + 74, "String!" ], "server_id": [ - 75 + 74 ] } ], "deleteClip": [ - 78, + 77, { "clip_id": [ - 3864, + 3863, "uuid!" ] } ], "deleteMatch": [ - 78, + 77, { "match_id": [ - 75, + 74, "String!" ] } ], "deleteNewsPost": [ - 78, + 77, { "id": [ - 3864, + 3863, "uuid!" ] } @@ -118729,851 +119626,851 @@ export default { 19, { "keys": [ - 75, + 74, "[String!]" ] } ], "deleteServerItem": [ - 78, + 77, { "node_id": [ - 75, + 74, "String!" ], "path": [ - 75, + 74, "String!" ], "server_id": [ - 75 + 74 ] } ], "deleteTournament": [ - 78, + 77, { "tournament_id": [ - 3864, + 3863, "uuid!" ] } ], "delete__map_pool": [ - 96, + 95, { "where": [ - 91, + 90, "_map_pool_bool_exp!" ] } ], "delete__map_pool_by_pk": [ - 88, + 87, { "map_id": [ - 3864, + 3863, "uuid!" ], "map_pool_id": [ - 3864, + 3863, "uuid!" ] } ], "delete_abandoned_matches": [ - 123, + 122, { "where": [ - 115, + 114, "abandoned_matches_bool_exp!" ] } ], "delete_abandoned_matches_by_pk": [ - 106, + 105, { "id": [ - 3864, + 3863, "uuid!" ] } ], "delete_api_keys": [ - 157, + 156, { "where": [ - 151, + 150, "api_keys_bool_exp!" ] } ], "delete_api_keys_by_pk": [ - 147, + 146, { "id": [ - 3864, + 3863, "uuid!" ] } ], "delete_clip_render_jobs": [ - 202, + 201, { "where": [ - 191, + 190, "clip_render_jobs_bool_exp!" ] } ], "delete_clip_render_jobs_by_pk": [ - 179, + 178, { "id": [ - 3864, + 3863, "uuid!" ] } ], "delete_db_backups": [ - 240, + 239, { "where": [ - 234, + 233, "db_backups_bool_exp!" ] } ], "delete_db_backups_by_pk": [ - 230, + 229, { "id": [ - 3864, + 3863, "uuid!" ] } ], "delete_draft_game_picks": [ - 276, + 275, { "where": [ - 268, + 267, "draft_game_picks_bool_exp!" ] } ], "delete_draft_game_picks_by_pk": [ - 257, + 256, { "id": [ - 3864, + 3863, "uuid!" ] } ], "delete_draft_game_players": [ - 321, + 320, { "where": [ - 313, + 312, "draft_game_players_bool_exp!" ] } ], "delete_draft_game_players_by_pk": [ - 302, + 301, { "draft_game_id": [ - 3864, + 3863, "uuid!" ], "steam_id": [ - 174, + 173, "bigint!" ] } ], "delete_draft_games": [ - 366, + 365, { "where": [ - 358, + 357, "draft_games_bool_exp!" ] } ], "delete_draft_games_by_pk": [ - 347, + 346, { "id": [ - 3864, + 3863, "uuid!" ] } ], "delete_e_check_in_settings": [ - 403, + 402, { "where": [ - 396, + 395, "e_check_in_settings_bool_exp!" ] } ], "delete_e_check_in_settings_by_pk": [ - 393, + 392, { "value": [ - 75, + 74, "String!" ] } ], "delete_e_draft_game_captain_selection": [ - 423, + 422, { "where": [ - 416, + 415, "e_draft_game_captain_selection_bool_exp!" ] } ], "delete_e_draft_game_captain_selection_by_pk": [ - 413, + 412, { "value": [ - 75, + 74, "String!" ] } ], "delete_e_draft_game_draft_order": [ - 444, + 443, { "where": [ - 437, + 436, "e_draft_game_draft_order_bool_exp!" ] } ], "delete_e_draft_game_draft_order_by_pk": [ - 434, + 433, { "value": [ - 75, + 74, "String!" ] } ], "delete_e_draft_game_mode": [ - 465, + 464, { "where": [ - 458, + 457, "e_draft_game_mode_bool_exp!" ] } ], "delete_e_draft_game_mode_by_pk": [ - 455, + 454, { "value": [ - 75, + 74, "String!" ] } ], "delete_e_draft_game_player_status": [ - 486, + 485, { "where": [ - 479, + 478, "e_draft_game_player_status_bool_exp!" ] } ], "delete_e_draft_game_player_status_by_pk": [ - 476, + 475, { "value": [ - 75, + 74, "String!" ] } ], "delete_e_draft_game_status": [ - 507, + 506, { "where": [ - 500, + 499, "e_draft_game_status_bool_exp!" ] } ], "delete_e_draft_game_status_by_pk": [ - 497, + 496, { "value": [ - 75, + 74, "String!" ] } ], "delete_e_friend_status": [ - 528, + 527, { "where": [ - 521, + 520, "e_friend_status_bool_exp!" ] } ], "delete_e_friend_status_by_pk": [ - 518, + 517, { "value": [ - 75, + 74, "String!" ] } ], "delete_e_game_cfg_types": [ - 549, + 548, { "where": [ - 542, + 541, "e_game_cfg_types_bool_exp!" ] } ], "delete_e_game_cfg_types_by_pk": [ - 539, + 538, { "value": [ - 75, + 74, "String!" ] } ], "delete_e_game_server_node_statuses": [ - 569, + 568, { "where": [ - 562, + 561, "e_game_server_node_statuses_bool_exp!" ] } ], "delete_e_game_server_node_statuses_by_pk": [ - 559, + 558, { "value": [ - 75, + 74, "String!" ] } ], "delete_e_lobby_access": [ - 590, + 589, { "where": [ - 583, + 582, "e_lobby_access_bool_exp!" ] } ], "delete_e_lobby_access_by_pk": [ - 580, + 579, { "value": [ - 75, + 74, "String!" ] } ], "delete_e_lobby_player_status": [ - 611, + 610, { "where": [ - 604, + 603, "e_lobby_player_status_bool_exp!" ] } ], "delete_e_lobby_player_status_by_pk": [ - 601, + 600, { "value": [ - 75, + 74, "String!" ] } ], "delete_e_map_pool_types": [ - 631, + 630, { "where": [ - 624, + 623, "e_map_pool_types_bool_exp!" ] } ], "delete_e_map_pool_types_by_pk": [ - 621, + 620, { "value": [ - 75, + 74, "String!" ] } ], "delete_e_match_clip_visibility": [ - 652, + 651, { "where": [ - 645, + 644, "e_match_clip_visibility_bool_exp!" ] } ], "delete_e_match_clip_visibility_by_pk": [ - 642, + 641, { "value": [ - 75, + 74, "String!" ] } ], "delete_e_match_map_status": [ - 672, + 671, { "where": [ - 665, + 664, "e_match_map_status_bool_exp!" ] } ], "delete_e_match_map_status_by_pk": [ - 662, + 661, { "value": [ - 75, + 74, "String!" ] } ], "delete_e_match_mode": [ - 693, + 692, { "where": [ - 686, + 685, "e_match_mode_bool_exp!" ] } ], "delete_e_match_mode_by_pk": [ - 683, + 682, { "value": [ - 75, + 74, "String!" ] } ], "delete_e_match_status": [ - 713, + 712, { "where": [ - 706, + 705, "e_match_status_bool_exp!" ] } ], "delete_e_match_status_by_pk": [ - 703, + 702, { "value": [ - 75, + 74, "String!" ] } ], "delete_e_match_types": [ - 734, + 733, { "where": [ - 727, + 726, "e_match_types_bool_exp!" ] } ], "delete_e_match_types_by_pk": [ - 724, + 723, { "value": [ - 75, + 74, "String!" ] } ], "delete_e_notification_types": [ - 755, + 754, { "where": [ - 748, + 747, "e_notification_types_bool_exp!" ] } ], "delete_e_notification_types_by_pk": [ - 745, + 744, { "value": [ - 75, + 74, "String!" ] } ], "delete_e_objective_types": [ - 775, + 774, { "where": [ - 768, + 767, "e_objective_types_bool_exp!" ] } ], "delete_e_objective_types_by_pk": [ - 765, + 764, { "value": [ - 75, + 74, "String!" ] } ], "delete_e_player_roles": [ - 795, + 794, { "where": [ - 788, + 787, "e_player_roles_bool_exp!" ] } ], "delete_e_player_roles_by_pk": [ - 785, + 784, { "value": [ - 75, + 74, "String!" ] } ], "delete_e_ready_settings": [ - 815, + 814, { "where": [ - 808, + 807, "e_ready_settings_bool_exp!" ] } ], "delete_e_ready_settings_by_pk": [ - 805, + 804, { "value": [ - 75, + 74, "String!" ] } ], "delete_e_sanction_types": [ - 835, + 834, { "where": [ - 828, + 827, "e_sanction_types_bool_exp!" ] } ], "delete_e_sanction_types_by_pk": [ - 825, + 824, { "value": [ - 75, + 74, "String!" ] } ], "delete_e_scrim_request_statuses": [ - 856, + 855, { "where": [ - 849, + 848, "e_scrim_request_statuses_bool_exp!" ] } ], "delete_e_scrim_request_statuses_by_pk": [ - 846, + 845, { "value": [ - 75, + 74, "String!" ] } ], "delete_e_server_types": [ - 876, + 875, { "where": [ - 869, + 868, "e_server_types_bool_exp!" ] } ], "delete_e_server_types_by_pk": [ - 866, + 865, { "value": [ - 75, + 74, "String!" ] } ], "delete_e_sides": [ - 896, + 895, { "where": [ - 889, + 888, "e_sides_bool_exp!" ] } ], "delete_e_sides_by_pk": [ - 886, + 885, { "value": [ - 75, + 74, "String!" ] } ], "delete_e_system_alert_types": [ - 916, + 915, { "where": [ - 909, + 908, "e_system_alert_types_bool_exp!" ] } ], "delete_e_system_alert_types_by_pk": [ - 906, + 905, { "value": [ - 75, + 74, "String!" ] } ], "delete_e_team_roles": [ - 936, + 935, { "where": [ - 929, + 928, "e_team_roles_bool_exp!" ] } ], "delete_e_team_roles_by_pk": [ - 926, + 925, { "value": [ - 75, + 74, "String!" ] } ], "delete_e_team_roster_statuses": [ - 957, + 956, { "where": [ - 950, + 949, "e_team_roster_statuses_bool_exp!" ] } ], "delete_e_team_roster_statuses_by_pk": [ - 947, + 946, { "value": [ - 75, + 74, "String!" ] } ], "delete_e_timeout_settings": [ - 977, + 976, { "where": [ - 970, + 969, "e_timeout_settings_bool_exp!" ] } ], "delete_e_timeout_settings_by_pk": [ - 967, + 966, { "value": [ - 75, + 74, "String!" ] } ], "delete_e_tournament_stage_types": [ - 997, + 996, { "where": [ - 990, + 989, "e_tournament_stage_types_bool_exp!" ] } ], "delete_e_tournament_stage_types_by_pk": [ - 987, + 986, { "value": [ - 75, + 74, "String!" ] } ], "delete_e_tournament_status": [ - 1018, + 1017, { "where": [ - 1011, + 1010, "e_tournament_status_bool_exp!" ] } ], "delete_e_tournament_status_by_pk": [ - 1008, + 1007, { "value": [ - 75, + 74, "String!" ] } ], "delete_e_utility_types": [ - 1039, + 1038, { "where": [ - 1032, + 1031, "e_utility_types_bool_exp!" ] } ], "delete_e_utility_types_by_pk": [ - 1029, + 1028, { "value": [ - 75, + 74, "String!" ] } ], "delete_e_veto_pick_types": [ - 1059, + 1058, { "where": [ - 1052, + 1051, "e_veto_pick_types_bool_exp!" ] } ], "delete_e_veto_pick_types_by_pk": [ - 1049, + 1048, { "value": [ - 75, + 74, "String!" ] } ], "delete_e_winning_reasons": [ - 1079, + 1078, { "where": [ - 1072, + 1071, "e_winning_reasons_bool_exp!" ] } ], "delete_e_winning_reasons_by_pk": [ - 1069, + 1068, { "value": [ - 75, + 74, "String!" ] } ], "delete_friends": [ - 1101, + 1100, { "where": [ - 1095, + 1094, "friends_bool_exp!" ] } ], "delete_friends_by_pk": [ - 1091, + 1090, { "other_player_steam_id": [ - 174, + 173, "bigint!" ], "player_steam_id": [ - 174, + 173, "bigint!" ] } ], "delete_game_server_nodes": [ - 1141, + 1140, { "where": [ - 1130, + 1129, "game_server_nodes_bool_exp!" ] } ], "delete_game_server_nodes_by_pk": [ - 1118, + 1117, { "id": [ - 75, + 74, "String!" ] } ], "delete_game_versions": [ - 1183, + 1182, { "where": [ - 1174, + 1173, "game_versions_bool_exp!" ] } ], "delete_game_versions_by_pk": [ - 1169, + 1168, { "build_id": [ 38, @@ -119582,1434 +120479,1434 @@ export default { } ], "delete_gamedata_signature_validations": [ - 1216, + 1215, { "where": [ - 1207, + 1206, "gamedata_signature_validations_bool_exp!" ] } ], "delete_gamedata_signature_validations_by_pk": [ - 1202, + 1201, { "id": [ - 3864, + 3863, "uuid!" ] } ], "delete_leaderboard_entries": [ - 1252, + 1251, { "where": [ - 1247, + 1246, "leaderboard_entries_bool_exp!" ] } ], "delete_lobbies": [ - 1274, + 1273, { "where": [ - 1269, + 1268, "lobbies_bool_exp!" ] } ], "delete_lobbies_by_pk": [ - 1266, + 1265, { "id": [ - 3864, + 3863, "uuid!" ] } ], "delete_lobby_players": [ - 1304, + 1303, { "where": [ - 1296, + 1295, "lobby_players_bool_exp!" ] } ], "delete_lobby_players_by_pk": [ - 1285, + 1284, { "lobby_id": [ - 3864, + 3863, "uuid!" ], "steam_id": [ - 174, + 173, "bigint!" ] } ], "delete_map_pools": [ - 1338, + 1337, { "where": [ - 1333, + 1332, "map_pools_bool_exp!" ] } ], "delete_map_pools_by_pk": [ - 1330, + 1329, { "id": [ - 3864, + 3863, "uuid!" ] } ], "delete_maps": [ - 1365, + 1364, { "where": [ - 1358, + 1357, "maps_bool_exp!" ] } ], "delete_maps_by_pk": [ - 1349, + 1348, { "id": [ - 3864, + 3863, "uuid!" ] } ], "delete_match_clips": [ - 1395, + 1394, { "where": [ - 1387, + 1386, "match_clips_bool_exp!" ] } ], "delete_match_clips_by_pk": [ - 1378, + 1377, { "id": [ - 3864, + 3863, "uuid!" ] } ], "delete_match_demo_sessions": [ - 1441, + 1440, { "where": [ - 1430, + 1429, "match_demo_sessions_bool_exp!" ] } ], "delete_match_demo_sessions_by_pk": [ - 1420, + 1419, { "id": [ - 3864, + 3863, "uuid!" ] } ], "delete_match_lineup_players": [ - 1485, + 1484, { "where": [ - 1477, + 1476, "match_lineup_players_bool_exp!" ] } ], "delete_match_lineup_players_by_pk": [ - 1466, + 1465, { "id": [ - 3864, + 3863, "uuid!" ] } ], "delete_match_lineups": [ - 1528, + 1527, { "where": [ - 1520, + 1519, "match_lineups_bool_exp!" ] } ], "delete_match_lineups_by_pk": [ - 1511, + 1510, { "id": [ - 3864, + 3863, "uuid!" ] } ], "delete_match_map_demos": [ - 1576, + 1575, { "where": [ - 1565, + 1564, "match_map_demos_bool_exp!" ] } ], "delete_match_map_demos_by_pk": [ - 1553, + 1552, { "id": [ - 3864, + 3863, "uuid!" ] } ], "delete_match_map_rounds": [ - 1621, + 1620, { "where": [ - 1613, + 1612, "match_map_rounds_bool_exp!" ] } ], "delete_match_map_rounds_by_pk": [ - 1604, + 1603, { "id": [ - 3864, + 3863, "uuid!" ] } ], "delete_match_map_veto_picks": [ - 1659, + 1658, { "where": [ - 1652, + 1651, "match_map_veto_picks_bool_exp!" ] } ], "delete_match_map_veto_picks_by_pk": [ - 1645, + 1644, { "id": [ - 3864, + 3863, "uuid!" ] } ], "delete_match_maps": [ - 1686, + 1685, { "where": [ - 1678, + 1677, "match_maps_bool_exp!" ] } ], "delete_match_maps_by_pk": [ - 1669, + 1668, { "id": [ - 3864, + 3863, "uuid!" ] } ], "delete_match_options": [ - 1721, + 1720, { "where": [ - 1715, + 1714, "match_options_bool_exp!" ] } ], "delete_match_options_by_pk": [ - 1711, + 1710, { "id": [ - 3864, + 3863, "uuid!" ] } ], "delete_match_region_veto_picks": [ - 1753, + 1752, { "where": [ - 1746, + 1745, "match_region_veto_picks_bool_exp!" ] } ], "delete_match_region_veto_picks_by_pk": [ - 1739, + 1738, { "id": [ - 3864, + 3863, "uuid!" ] } ], "delete_match_streams": [ - 1786, + 1785, { "where": [ - 1775, + 1774, "match_streams_bool_exp!" ] } ], "delete_match_streams_by_pk": [ - 1763, + 1762, { "id": [ - 3864, + 3863, "uuid!" ] } ], "delete_match_type_cfgs": [ - 1821, + 1820, { "where": [ - 1816, + 1815, "match_type_cfgs_bool_exp!" ] } ], "delete_match_type_cfgs_by_pk": [ - 1813, + 1812, { "type": [ - 544, + 543, "e_game_cfg_types_enum!" ] } ], "delete_matches": [ - 1848, + 1847, { "where": [ - 1840, + 1839, "matches_bool_exp!" ] } ], "delete_matches_by_pk": [ - 1831, + 1830, { "id": [ - 3864, + 3863, "uuid!" ] } ], "delete_migration_hashes_hashes": [ - 1881, + 1880, { "where": [ - 1876, + 1875, "migration_hashes_hashes_bool_exp!" ] } ], "delete_migration_hashes_hashes_by_pk": [ - 1873, + 1872, { "name": [ - 75, + 74, "String!" ] } ], "delete_my_friends": [ - 1913, + 1912, { "where": [ - 1903, + 1902, "my_friends_bool_exp!" ] } ], "delete_news_articles": [ - 1947, + 1946, { "where": [ - 1941, + 1940, "news_articles_bool_exp!" ] } ], "delete_news_articles_by_pk": [ - 1937, + 1936, { "id": [ - 3864, + 3863, "uuid!" ] } ], "delete_notifications": [ - 1987, + 1986, { "where": [ - 1976, + 1975, "notifications_bool_exp!" ] } ], "delete_notifications_by_pk": [ - 1964, + 1963, { "id": [ - 3864, + 3863, "uuid!" ] } ], "delete_pending_match_import_players": [ - 2034, + 2033, { "where": [ - 2026, + 2025, "pending_match_import_players_bool_exp!" ] } ], "delete_pending_match_import_players_by_pk": [ - 2017, + 2016, { "steam_id": [ - 174, + 173, "bigint!" ], "valve_match_id": [ - 2014, + 2013, "numeric!" ] } ], "delete_pending_match_imports": [ - 2068, + 2067, { "where": [ - 2062, + 2061, "pending_match_imports_bool_exp!" ] } ], "delete_pending_match_imports_by_pk": [ - 2058, + 2057, { "valve_match_id": [ - 2014, + 2013, "numeric!" ] } ], "delete_player_aim_stats_demo": [ - 2096, + 2095, { "where": [ - 2090, + 2089, "player_aim_stats_demo_bool_exp!" ] } ], "delete_player_aim_stats_demo_by_pk": [ - 2086, + 2085, { "attacker_steam_id": [ - 174, + 173, "bigint!" ], "match_map_id": [ - 3864, + 3863, "uuid!" ] } ], "delete_player_aim_weapon_stats": [ - 2130, + 2129, { "where": [ - 2122, + 2121, "player_aim_weapon_stats_bool_exp!" ] } ], "delete_player_aim_weapon_stats_by_pk": [ - 2113, + 2112, { "match_map_id": [ - 3864, + 3863, "uuid!" ], "steam_id": [ - 174, + 173, "bigint!" ], "weapon_class": [ - 75, + 74, "String!" ] } ], "delete_player_assists": [ - 2173, + 2172, { "where": [ - 2165, + 2164, "player_assists_bool_exp!" ] } ], "delete_player_assists_by_pk": [ - 2154, + 2153, { "attacked_steam_id": [ - 174, + 173, "bigint!" ], "attacker_steam_id": [ - 174, + 173, "bigint!" ], "match_map_id": [ - 3864, + 3863, "uuid!" ], "time": [ - 3467, + 3466, "timestamptz!" ] } ], "delete_player_damages": [ - 2234, + 2233, { "where": [ - 2226, + 2225, "player_damages_bool_exp!" ] } ], "delete_player_damages_by_pk": [ - 2217, + 2216, { "id": [ - 3864, + 3863, "uuid!" ], "match_map_id": [ - 3864, + 3863, "uuid!" ], "time": [ - 3467, + 3466, "timestamptz!" ] } ], "delete_player_elo": [ - 2268, + 2267, { "where": [ - 2262, + 2261, "player_elo_bool_exp!" ] } ], "delete_player_elo_by_pk": [ - 2258, + 2257, { "match_id": [ - 3864, + 3863, "uuid!" ], "steam_id": [ - 174, + 173, "bigint!" ], "type": [ - 729, + 728, "e_match_types_enum!" ] } ], "delete_player_faceit_rank_history": [ - 2302, + 2301, { "where": [ - 2294, + 2293, "player_faceit_rank_history_bool_exp!" ] } ], "delete_player_faceit_rank_history_by_pk": [ - 2285, + 2284, { "id": [ - 3864, + 3863, "uuid!" ] } ], "delete_player_flashes": [ - 2345, + 2344, { "where": [ - 2337, + 2336, "player_flashes_bool_exp!" ] } ], "delete_player_flashes_by_pk": [ - 2326, + 2325, { "attacked_steam_id": [ - 174, + 173, "bigint!" ], "attacker_steam_id": [ - 174, + 173, "bigint!" ], "match_map_id": [ - 3864, + 3863, "uuid!" ], "time": [ - 3467, + 3466, "timestamptz!" ] } ], "delete_player_kills": [ - 2431, + 2430, { "where": [ - 2382, + 2381, "player_kills_bool_exp!" ] } ], "delete_player_kills_by_pk": [ - 2371, + 2370, { "attacked_steam_id": [ - 174, + 173, "bigint!" ], "attacker_steam_id": [ - 174, + 173, "bigint!" ], "match_map_id": [ - 3864, + 3863, "uuid!" ], "time": [ - 3467, + 3466, "timestamptz!" ] } ], "delete_player_kills_by_weapon": [ - 2400, + 2399, { "where": [ - 2392, + 2391, "player_kills_by_weapon_bool_exp!" ] } ], "delete_player_kills_by_weapon_by_pk": [ - 2383, + 2382, { "player_steam_id": [ - 174, + 173, "bigint!" ], "with": [ - 75, + 74, "String!" ] } ], "delete_player_leaderboard_rank": [ - 2466, + 2465, { "where": [ - 2461, + 2460, "player_leaderboard_rank_bool_exp!" ] } ], "delete_player_match_map_stats": [ - 2497, + 2496, { "where": [ - 2489, + 2488, "player_match_map_stats_bool_exp!" ] } ], "delete_player_match_map_stats_by_pk": [ - 2480, + 2479, { "match_map_id": [ - 3864, + 3863, "uuid!" ], "steam_id": [ - 174, + 173, "bigint!" ] } ], "delete_player_objectives": [ - 2589, + 2588, { "where": [ - 2581, + 2580, "player_objectives_bool_exp!" ] } ], "delete_player_objectives_by_pk": [ - 2572, + 2571, { "match_map_id": [ - 3864, + 3863, "uuid!" ], "player_steam_id": [ - 174, + 173, "bigint!" ], "time": [ - 3467, + 3466, "timestamptz!" ] } ], "delete_player_premier_rank_history": [ - 2648, + 2647, { "where": [ - 2640, + 2639, "player_premier_rank_history_bool_exp!" ] } ], "delete_player_premier_rank_history_by_pk": [ - 2631, + 2630, { "id": [ - 3864, + 3863, "uuid!" ] } ], "delete_player_sanctions": [ - 2689, + 2688, { "where": [ - 2681, + 2680, "player_sanctions_bool_exp!" ] } ], "delete_player_sanctions_by_pk": [ - 2672, + 2671, { "created_at": [ - 3467, + 3466, "timestamptz!" ], "id": [ - 3864, + 3863, "uuid!" ] } ], "delete_player_stats": [ - 2723, + 2722, { "where": [ - 2717, + 2716, "player_stats_bool_exp!" ] } ], "delete_player_stats_by_pk": [ - 2713, + 2712, { "player_steam_id": [ - 174, + 173, "bigint!" ] } ], "delete_player_steam_bot_friend": [ - 2755, + 2754, { "where": [ - 2746, + 2745, "player_steam_bot_friend_bool_exp!" ] } ], "delete_player_steam_bot_friend_by_pk": [ - 2741, + 2740, { "steam_id": [ - 174, + 173, "bigint!" ] } ], "delete_player_steam_match_auth": [ - 2783, + 2782, { "where": [ - 2777, + 2776, "player_steam_match_auth_bool_exp!" ] } ], "delete_player_steam_match_auth_by_pk": [ - 2773, + 2772, { "steam_id": [ - 174, + 173, "bigint!" ] } ], "delete_player_unused_utility": [ - 2817, + 2816, { "where": [ - 2809, + 2808, "player_unused_utility_bool_exp!" ] } ], "delete_player_unused_utility_by_pk": [ - 2800, + 2799, { "match_map_id": [ - 3864, + 3863, "uuid!" ], "player_steam_id": [ - 174, + 173, "bigint!" ] } ], "delete_player_utility": [ - 2858, + 2857, { "where": [ - 2850, + 2849, "player_utility_bool_exp!" ] } ], "delete_player_utility_by_pk": [ - 2841, + 2840, { "attacker_steam_id": [ - 174, + 173, "bigint!" ], "match_map_id": [ - 3864, + 3863, "uuid!" ], "time": [ - 3467, + 3466, "timestamptz!" ] } ], "delete_players": [ - 2925, + 2924, { "where": [ - 2919, + 2918, "players_bool_exp!" ] } ], "delete_players_by_pk": [ - 2915, + 2914, { "steam_id": [ - 174, + 173, "bigint!" ] } ], "delete_plugin_versions": [ - 2953, + 2952, { "where": [ - 2947, + 2946, "plugin_versions_bool_exp!" ] } ], "delete_plugin_versions_by_pk": [ - 2943, + 2942, { "version": [ - 75, + 74, "String!" ] } ], "delete_server_regions": [ - 2980, + 2979, { "where": [ - 2975, + 2974, "server_regions_bool_exp!" ] } ], "delete_server_regions_by_pk": [ - 2971, + 2970, { "value": [ - 75, + 74, "String!" ] } ], "delete_servers": [ - 3017, + 3016, { "where": [ - 3009, + 3008, "servers_bool_exp!" ] } ], "delete_servers_by_pk": [ - 2998, + 2997, { "id": [ - 3864, + 3863, "uuid!" ] } ], "delete_settings": [ - 3052, + 3051, { "where": [ - 3047, + 3046, "settings_bool_exp!" ] } ], "delete_settings_by_pk": [ - 3044, + 3043, { "name": [ - 75, + 74, "String!" ] } ], "delete_steam_account_claims": [ - 3076, + 3075, { "where": [ - 3069, + 3068, "steam_account_claims_bool_exp!" ] } ], "delete_steam_account_claims_by_pk": [ - 3062, + 3061, { "id": [ - 3864, + 3863, "uuid!" ] } ], "delete_steam_accounts": [ - 3096, + 3095, { "where": [ - 3090, + 3089, "steam_accounts_bool_exp!" ] } ], "delete_steam_accounts_by_pk": [ - 3086, + 3085, { "id": [ - 3864, + 3863, "uuid!" ] } ], "delete_system_alerts": [ - 3124, + 3123, { "where": [ - 3118, + 3117, "system_alerts_bool_exp!" ] } ], "delete_system_alerts_by_pk": [ - 3114, + 3113, { "id": [ - 3864, + 3863, "uuid!" ] } ], "delete_team_invites": [ - 3158, + 3157, { "where": [ - 3150, + 3149, "team_invites_bool_exp!" ] } ], "delete_team_invites_by_pk": [ - 3141, + 3140, { "id": [ - 3864, + 3863, "uuid!" ] } ], "delete_team_roster": [ - 3201, + 3200, { "where": [ - 3193, + 3192, "team_roster_bool_exp!" ] } ], "delete_team_roster_by_pk": [ - 3182, + 3181, { "player_steam_id": [ - 174, + 173, "bigint!" ], "team_id": [ - 3864, + 3863, "uuid!" ] } ], "delete_team_scrim_alerts": [ - 3237, + 3236, { "where": [ - 3231, + 3230, "team_scrim_alerts_bool_exp!" ] } ], "delete_team_scrim_alerts_by_pk": [ - 3227, + 3226, { "id": [ - 3864, + 3863, "uuid!" ] } ], "delete_team_scrim_availability": [ - 3270, + 3269, { "where": [ - 3263, + 3262, "team_scrim_availability_bool_exp!" ] } ], "delete_team_scrim_availability_by_pk": [ - 3254, + 3253, { "id": [ - 3864, + 3863, "uuid!" ] } ], "delete_team_scrim_request_proposals": [ - 3299, + 3298, { "where": [ - 3291, + 3290, "team_scrim_request_proposals_bool_exp!" ] } ], "delete_team_scrim_request_proposals_by_pk": [ - 3282, + 3281, { "id": [ - 3864, + 3863, "uuid!" ] } ], "delete_team_scrim_requests": [ - 3342, + 3341, { "where": [ - 3334, + 3333, "team_scrim_requests_bool_exp!" ] } ], "delete_team_scrim_requests_by_pk": [ - 3323, + 3322, { "id": [ - 3864, + 3863, "uuid!" ] } ], "delete_team_scrim_settings": [ - 3379, + 3378, { "where": [ - 3373, + 3372, "team_scrim_settings_bool_exp!" ] } ], "delete_team_scrim_settings_by_pk": [ - 3369, + 3368, { "id": [ - 3864, + 3863, "uuid!" ] } ], "delete_team_suggestions": [ - 3407, + 3406, { "where": [ - 3401, + 3400, "team_suggestions_bool_exp!" ] } ], "delete_team_suggestions_by_pk": [ - 3397, + 3396, { "id": [ - 3864, + 3863, "uuid!" ] } ], "delete_teams": [ - 3441, + 3440, { "where": [ - 3433, + 3432, "teams_bool_exp!" ] } ], "delete_teams_by_pk": [ - 3424, + 3423, { "id": [ - 3864, + 3863, "uuid!" ] } ], "delete_tournament_brackets": [ - 3488, + 3487, { "where": [ - 3480, + 3479, "tournament_brackets_bool_exp!" ] } ], "delete_tournament_brackets_by_pk": [ - 3469, + 3468, { "id": [ - 3864, + 3863, "uuid!" ] } ], "delete_tournament_organizers": [ - 3532, + 3531, { "where": [ - 3524, + 3523, "tournament_organizers_bool_exp!" ] } ], "delete_tournament_organizers_by_pk": [ - 3515, + 3514, { "steam_id": [ - 174, + 173, "bigint!" ], "tournament_id": [ - 3864, + 3863, "uuid!" ] } ], "delete_tournament_stages": [ - 3579, + 3578, { "where": [ - 3568, + 3567, "tournament_stages_bool_exp!" ] } ], "delete_tournament_stages_by_pk": [ - 3556, + 3555, { "id": [ - 3864, + 3863, "uuid!" ] } ], "delete_tournament_team_invites": [ - 3624, + 3623, { "where": [ - 3616, + 3615, "tournament_team_invites_bool_exp!" ] } ], "delete_tournament_team_invites_by_pk": [ - 3607, + 3606, { "id": [ - 3864, + 3863, "uuid!" ] } ], "delete_tournament_team_roster": [ - 3665, + 3664, { "where": [ - 3657, + 3656, "tournament_team_roster_bool_exp!" ] } ], "delete_tournament_team_roster_by_pk": [ - 3648, + 3647, { "player_steam_id": [ - 174, + 173, "bigint!" ], "tournament_id": [ - 3864, + 3863, "uuid!" ] } ], "delete_tournament_teams": [ - 3706, + 3705, { "where": [ - 3698, + 3697, "tournament_teams_bool_exp!" ] } ], "delete_tournament_teams_by_pk": [ - 3689, + 3688, { "id": [ - 3864, + 3863, "uuid!" ] } ], "delete_tournament_trophies": [ - 3750, + 3749, { "where": [ - 3742, + 3741, "tournament_trophies_bool_exp!" ] } ], "delete_tournament_trophies_by_pk": [ - 3731, + 3730, { "id": [ - 3864, + 3863, "uuid!" ] } ], "delete_tournament_trophy_configs": [ - 3793, + 3792, { "where": [ - 3785, + 3784, "tournament_trophy_configs_bool_exp!" ] } ], "delete_tournament_trophy_configs_by_pk": [ - 3776, + 3775, { "id": [ - 3864, + 3863, "uuid!" ] } ], "delete_tournaments": [ - 3837, + 3836, { "where": [ - 3829, + 3828, "tournaments_bool_exp!" ] } ], "delete_tournaments_by_pk": [ - 3818, + 3817, { "id": [ - 3864, + 3863, "uuid!" ] } ], "delete_v_match_captains": [ - 3894, + 3893, { "where": [ - 3889, + 3888, "v_match_captains_bool_exp!" ] } ], "delete_v_match_map_backup_rounds": [ - 4005, + 4004, { "where": [ - 4000, + 3999, "v_match_map_backup_rounds_bool_exp!" ] } ], "delete_v_player_match_map_hltv": [ - 4227, + 4226, { "where": [ - 4220, + 4219, "v_player_match_map_hltv_bool_exp!" ] } ], "delete_v_pool_maps": [ - 4386, + 4385, { "where": [ - 4380, + 4379, "v_pool_maps_bool_exp!" ] } ], "delete_v_team_stage_results": [ - 4480, + 4479, { "where": [ - 4472, + 4471, "v_team_stage_results_bool_exp!" ] } ], "delete_v_team_stage_results_by_pk": [ - 4453, + 4452, { "tournament_stage_id": [ - 3864, + 3863, "uuid!" ], "tournament_team_id": [ - 3864, + 3863, "uuid!" ] } ], "denyInvite": [ - 78, + 77, { "invite_id": [ - 3864, + 3863, "uuid!" ], "type": [ - 75, + 74, "String!" ] } ], "forfeitMatch": [ - 78, + 77, { "match_id": [ - 3864, + 3863, "uuid!" ], "winning_lineup_id": [ - 3864, + 3863, "uuid!" ] } @@ -121018,7 +121915,7 @@ export default { 43, { "match_id": [ - 3864, + 3863, "uuid!" ] } @@ -121027,2864 +121924,2864 @@ export default { 31 ], "insert__map_pool": [ - 96, + 95, { "objects": [ - 93, + 92, "[_map_pool_insert_input!]!" ], "on_conflict": [ - 97 + 96 ] } ], "insert__map_pool_one": [ - 88, + 87, { "object": [ - 93, + 92, "_map_pool_insert_input!" ], "on_conflict": [ - 97 + 96 ] } ], "insert_abandoned_matches": [ - 123, + 122, { "objects": [ - 118, + 117, "[abandoned_matches_insert_input!]!" ], "on_conflict": [ - 124 + 123 ] } ], "insert_abandoned_matches_one": [ - 106, + 105, { "object": [ - 118, + 117, "abandoned_matches_insert_input!" ], "on_conflict": [ - 124 + 123 ] } ], "insert_api_keys": [ - 157, + 156, { "objects": [ - 154, + 153, "[api_keys_insert_input!]!" ], "on_conflict": [ - 158 + 157 ] } ], "insert_api_keys_one": [ - 147, + 146, { "object": [ - 154, + 153, "api_keys_insert_input!" ], "on_conflict": [ - 158 + 157 ] } ], "insert_clip_render_jobs": [ - 202, + 201, { "objects": [ - 197, + 196, "[clip_render_jobs_insert_input!]!" ], "on_conflict": [ - 203 + 202 ] } ], "insert_clip_render_jobs_one": [ - 179, + 178, { "object": [ - 197, + 196, "clip_render_jobs_insert_input!" ], "on_conflict": [ - 203 + 202 ] } ], "insert_db_backups": [ - 240, + 239, { "objects": [ - 237, + 236, "[db_backups_insert_input!]!" ], "on_conflict": [ - 241 + 240 ] } ], "insert_db_backups_one": [ - 230, + 229, { "object": [ - 237, + 236, "db_backups_insert_input!" ], "on_conflict": [ - 241 + 240 ] } ], "insert_draft_game_picks": [ - 276, + 275, { "objects": [ - 271, + 270, "[draft_game_picks_insert_input!]!" ], "on_conflict": [ - 277 + 276 ] } ], "insert_draft_game_picks_one": [ - 257, + 256, { "object": [ - 271, + 270, "draft_game_picks_insert_input!" ], "on_conflict": [ - 277 + 276 ] } ], "insert_draft_game_players": [ - 321, + 320, { "objects": [ - 316, + 315, "[draft_game_players_insert_input!]!" ], "on_conflict": [ - 322 + 321 ] } ], "insert_draft_game_players_one": [ - 302, + 301, { "object": [ - 316, + 315, "draft_game_players_insert_input!" ], "on_conflict": [ - 322 + 321 ] } ], "insert_draft_games": [ - 366, + 365, { "objects": [ - 361, + 360, "[draft_games_insert_input!]!" ], "on_conflict": [ - 368 + 367 ] } ], "insert_draft_games_one": [ - 347, + 346, { "object": [ - 361, + 360, "draft_games_insert_input!" ], "on_conflict": [ - 368 + 367 ] } ], "insert_e_check_in_settings": [ - 403, + 402, { "objects": [ - 400, + 399, "[e_check_in_settings_insert_input!]!" ], "on_conflict": [ - 404 + 403 ] } ], "insert_e_check_in_settings_one": [ - 393, + 392, { "object": [ - 400, + 399, "e_check_in_settings_insert_input!" ], "on_conflict": [ - 404 + 403 ] } ], "insert_e_draft_game_captain_selection": [ - 423, + 422, { "objects": [ - 420, + 419, "[e_draft_game_captain_selection_insert_input!]!" ], "on_conflict": [ - 425 + 424 ] } ], "insert_e_draft_game_captain_selection_one": [ - 413, + 412, { "object": [ - 420, + 419, "e_draft_game_captain_selection_insert_input!" ], "on_conflict": [ - 425 + 424 ] } ], "insert_e_draft_game_draft_order": [ - 444, + 443, { "objects": [ - 441, + 440, "[e_draft_game_draft_order_insert_input!]!" ], "on_conflict": [ - 446 + 445 ] } ], "insert_e_draft_game_draft_order_one": [ - 434, + 433, { "object": [ - 441, + 440, "e_draft_game_draft_order_insert_input!" ], "on_conflict": [ - 446 + 445 ] } ], "insert_e_draft_game_mode": [ - 465, + 464, { "objects": [ - 462, + 461, "[e_draft_game_mode_insert_input!]!" ], "on_conflict": [ - 467 + 466 ] } ], "insert_e_draft_game_mode_one": [ - 455, + 454, { "object": [ - 462, + 461, "e_draft_game_mode_insert_input!" ], "on_conflict": [ - 467 + 466 ] } ], "insert_e_draft_game_player_status": [ - 486, + 485, { "objects": [ - 483, + 482, "[e_draft_game_player_status_insert_input!]!" ], "on_conflict": [ - 488 + 487 ] } ], "insert_e_draft_game_player_status_one": [ - 476, + 475, { "object": [ - 483, + 482, "e_draft_game_player_status_insert_input!" ], "on_conflict": [ - 488 + 487 ] } ], "insert_e_draft_game_status": [ - 507, + 506, { "objects": [ - 504, + 503, "[e_draft_game_status_insert_input!]!" ], "on_conflict": [ - 509 + 508 ] } ], "insert_e_draft_game_status_one": [ - 497, + 496, { "object": [ - 504, + 503, "e_draft_game_status_insert_input!" ], "on_conflict": [ - 509 + 508 ] } ], "insert_e_friend_status": [ - 528, + 527, { "objects": [ - 525, + 524, "[e_friend_status_insert_input!]!" ], "on_conflict": [ - 530 + 529 ] } ], "insert_e_friend_status_one": [ - 518, + 517, { "object": [ - 525, + 524, "e_friend_status_insert_input!" ], "on_conflict": [ - 530 + 529 ] } ], "insert_e_game_cfg_types": [ - 549, + 548, { "objects": [ - 546, + 545, "[e_game_cfg_types_insert_input!]!" ], "on_conflict": [ - 550 + 549 ] } ], "insert_e_game_cfg_types_one": [ - 539, + 538, { "object": [ - 546, + 545, "e_game_cfg_types_insert_input!" ], "on_conflict": [ - 550 + 549 ] } ], "insert_e_game_server_node_statuses": [ - 569, + 568, { "objects": [ - 566, + 565, "[e_game_server_node_statuses_insert_input!]!" ], "on_conflict": [ - 571 + 570 ] } ], "insert_e_game_server_node_statuses_one": [ - 559, + 558, { "object": [ - 566, + 565, "e_game_server_node_statuses_insert_input!" ], "on_conflict": [ - 571 + 570 ] } ], "insert_e_lobby_access": [ - 590, + 589, { "objects": [ - 587, + 586, "[e_lobby_access_insert_input!]!" ], "on_conflict": [ - 592 + 591 ] } ], "insert_e_lobby_access_one": [ - 580, + 579, { "object": [ - 587, + 586, "e_lobby_access_insert_input!" ], "on_conflict": [ - 592 + 591 ] } ], "insert_e_lobby_player_status": [ - 611, + 610, { "objects": [ - 608, + 607, "[e_lobby_player_status_insert_input!]!" ], "on_conflict": [ - 612 + 611 ] } ], "insert_e_lobby_player_status_one": [ - 601, + 600, { "object": [ - 608, + 607, "e_lobby_player_status_insert_input!" ], "on_conflict": [ - 612 + 611 ] } ], "insert_e_map_pool_types": [ - 631, + 630, { "objects": [ - 628, + 627, "[e_map_pool_types_insert_input!]!" ], "on_conflict": [ - 633 + 632 ] } ], "insert_e_map_pool_types_one": [ - 621, + 620, { "object": [ - 628, + 627, "e_map_pool_types_insert_input!" ], "on_conflict": [ - 633 + 632 ] } ], "insert_e_match_clip_visibility": [ - 652, + 651, { "objects": [ - 649, + 648, "[e_match_clip_visibility_insert_input!]!" ], "on_conflict": [ - 653 + 652 ] } ], "insert_e_match_clip_visibility_one": [ - 642, + 641, { "object": [ - 649, + 648, "e_match_clip_visibility_insert_input!" ], "on_conflict": [ - 653 + 652 ] } ], "insert_e_match_map_status": [ - 672, + 671, { "objects": [ - 669, + 668, "[e_match_map_status_insert_input!]!" ], "on_conflict": [ - 674 + 673 ] } ], "insert_e_match_map_status_one": [ - 662, + 661, { "object": [ - 669, + 668, "e_match_map_status_insert_input!" ], "on_conflict": [ - 674 + 673 ] } ], "insert_e_match_mode": [ - 693, + 692, { "objects": [ - 690, + 689, "[e_match_mode_insert_input!]!" ], "on_conflict": [ - 694 + 693 ] } ], "insert_e_match_mode_one": [ - 683, + 682, { "object": [ - 690, + 689, "e_match_mode_insert_input!" ], "on_conflict": [ - 694 + 693 ] } ], "insert_e_match_status": [ - 713, + 712, { "objects": [ - 710, + 709, "[e_match_status_insert_input!]!" ], "on_conflict": [ - 715 + 714 ] } ], "insert_e_match_status_one": [ - 703, + 702, { "object": [ - 710, + 709, "e_match_status_insert_input!" ], "on_conflict": [ - 715 + 714 ] } ], "insert_e_match_types": [ - 734, + 733, { "objects": [ - 731, + 730, "[e_match_types_insert_input!]!" ], "on_conflict": [ - 736 + 735 ] } ], "insert_e_match_types_one": [ - 724, + 723, { "object": [ - 731, + 730, "e_match_types_insert_input!" ], "on_conflict": [ - 736 + 735 ] } ], "insert_e_notification_types": [ - 755, + 754, { "objects": [ - 752, + 751, "[e_notification_types_insert_input!]!" ], "on_conflict": [ - 756 + 755 ] } ], "insert_e_notification_types_one": [ - 745, + 744, { "object": [ - 752, + 751, "e_notification_types_insert_input!" ], "on_conflict": [ - 756 + 755 ] } ], "insert_e_objective_types": [ - 775, + 774, { "objects": [ - 772, + 771, "[e_objective_types_insert_input!]!" ], "on_conflict": [ - 776 + 775 ] } ], "insert_e_objective_types_one": [ - 765, + 764, { "object": [ - 772, + 771, "e_objective_types_insert_input!" ], "on_conflict": [ - 776 + 775 ] } ], "insert_e_player_roles": [ - 795, + 794, { "objects": [ - 792, + 791, "[e_player_roles_insert_input!]!" ], "on_conflict": [ - 796 + 795 ] } ], "insert_e_player_roles_one": [ - 785, + 784, { "object": [ - 792, + 791, "e_player_roles_insert_input!" ], "on_conflict": [ - 796 + 795 ] } ], "insert_e_ready_settings": [ - 815, + 814, { "objects": [ - 812, + 811, "[e_ready_settings_insert_input!]!" ], "on_conflict": [ - 816 + 815 ] } ], "insert_e_ready_settings_one": [ - 805, + 804, { "object": [ - 812, + 811, "e_ready_settings_insert_input!" ], "on_conflict": [ - 816 + 815 ] } ], "insert_e_sanction_types": [ - 835, + 834, { "objects": [ - 832, + 831, "[e_sanction_types_insert_input!]!" ], "on_conflict": [ - 837 + 836 ] } ], "insert_e_sanction_types_one": [ - 825, + 824, { "object": [ - 832, + 831, "e_sanction_types_insert_input!" ], "on_conflict": [ - 837 + 836 ] } ], "insert_e_scrim_request_statuses": [ - 856, + 855, { "objects": [ - 853, + 852, "[e_scrim_request_statuses_insert_input!]!" ], "on_conflict": [ - 857 + 856 ] } ], "insert_e_scrim_request_statuses_one": [ - 846, + 845, { "object": [ - 853, + 852, "e_scrim_request_statuses_insert_input!" ], "on_conflict": [ - 857 + 856 ] } ], "insert_e_server_types": [ - 876, + 875, { "objects": [ - 873, + 872, "[e_server_types_insert_input!]!" ], "on_conflict": [ - 877 + 876 ] } ], "insert_e_server_types_one": [ - 866, + 865, { "object": [ - 873, + 872, "e_server_types_insert_input!" ], "on_conflict": [ - 877 + 876 ] } ], "insert_e_sides": [ - 896, + 895, { "objects": [ - 893, + 892, "[e_sides_insert_input!]!" ], "on_conflict": [ - 897 + 896 ] } ], "insert_e_sides_one": [ - 886, + 885, { "object": [ - 893, + 892, "e_sides_insert_input!" ], "on_conflict": [ - 897 + 896 ] } ], "insert_e_system_alert_types": [ - 916, + 915, { "objects": [ - 913, + 912, "[e_system_alert_types_insert_input!]!" ], "on_conflict": [ - 917 + 916 ] } ], "insert_e_system_alert_types_one": [ - 906, + 905, { "object": [ - 913, + 912, "e_system_alert_types_insert_input!" ], "on_conflict": [ - 917 + 916 ] } ], "insert_e_team_roles": [ - 936, + 935, { "objects": [ - 933, + 932, "[e_team_roles_insert_input!]!" ], "on_conflict": [ - 938 + 937 ] } ], "insert_e_team_roles_one": [ - 926, + 925, { "object": [ - 933, + 932, "e_team_roles_insert_input!" ], "on_conflict": [ - 938 + 937 ] } ], "insert_e_team_roster_statuses": [ - 957, + 956, { "objects": [ - 954, + 953, "[e_team_roster_statuses_insert_input!]!" ], "on_conflict": [ - 958 + 957 ] } ], "insert_e_team_roster_statuses_one": [ - 947, + 946, { "object": [ - 954, + 953, "e_team_roster_statuses_insert_input!" ], "on_conflict": [ - 958 + 957 ] } ], "insert_e_timeout_settings": [ - 977, + 976, { "objects": [ - 974, + 973, "[e_timeout_settings_insert_input!]!" ], "on_conflict": [ - 978 + 977 ] } ], "insert_e_timeout_settings_one": [ - 967, + 966, { "object": [ - 974, + 973, "e_timeout_settings_insert_input!" ], "on_conflict": [ - 978 + 977 ] } ], "insert_e_tournament_stage_types": [ - 997, + 996, { "objects": [ - 994, + 993, "[e_tournament_stage_types_insert_input!]!" ], "on_conflict": [ - 999 + 998 ] } ], "insert_e_tournament_stage_types_one": [ - 987, + 986, { "object": [ - 994, + 993, "e_tournament_stage_types_insert_input!" ], "on_conflict": [ - 999 + 998 ] } ], "insert_e_tournament_status": [ - 1018, + 1017, { "objects": [ - 1015, + 1014, "[e_tournament_status_insert_input!]!" ], "on_conflict": [ - 1020 + 1019 ] } ], "insert_e_tournament_status_one": [ - 1008, + 1007, { "object": [ - 1015, + 1014, "e_tournament_status_insert_input!" ], "on_conflict": [ - 1020 + 1019 ] } ], "insert_e_utility_types": [ - 1039, + 1038, { "objects": [ - 1036, + 1035, "[e_utility_types_insert_input!]!" ], "on_conflict": [ - 1040 + 1039 ] } ], "insert_e_utility_types_one": [ - 1029, + 1028, { "object": [ - 1036, + 1035, "e_utility_types_insert_input!" ], "on_conflict": [ - 1040 + 1039 ] } ], "insert_e_veto_pick_types": [ - 1059, + 1058, { "objects": [ - 1056, + 1055, "[e_veto_pick_types_insert_input!]!" ], "on_conflict": [ - 1060 + 1059 ] } ], "insert_e_veto_pick_types_one": [ - 1049, + 1048, { "object": [ - 1056, + 1055, "e_veto_pick_types_insert_input!" ], "on_conflict": [ - 1060 + 1059 ] } ], "insert_e_winning_reasons": [ - 1079, + 1078, { "objects": [ - 1076, + 1075, "[e_winning_reasons_insert_input!]!" ], "on_conflict": [ - 1080 + 1079 ] } ], "insert_e_winning_reasons_one": [ - 1069, + 1068, { "object": [ - 1076, + 1075, "e_winning_reasons_insert_input!" ], "on_conflict": [ - 1080 + 1079 ] } ], "insert_friends": [ - 1101, + 1100, { "objects": [ - 1098, + 1097, "[friends_insert_input!]!" ], "on_conflict": [ - 1102 + 1101 ] } ], "insert_friends_one": [ - 1091, + 1090, { "object": [ - 1098, + 1097, "friends_insert_input!" ], "on_conflict": [ - 1102 + 1101 ] } ], "insert_game_server_nodes": [ - 1141, + 1140, { "objects": [ - 1136, + 1135, "[game_server_nodes_insert_input!]!" ], "on_conflict": [ - 1143 + 1142 ] } ], "insert_game_server_nodes_one": [ - 1118, + 1117, { "object": [ - 1136, + 1135, "game_server_nodes_insert_input!" ], "on_conflict": [ - 1143 + 1142 ] } ], "insert_game_versions": [ - 1183, + 1182, { "objects": [ - 1180, + 1179, "[game_versions_insert_input!]!" ], "on_conflict": [ - 1185 + 1184 ] } ], "insert_game_versions_one": [ - 1169, + 1168, { "object": [ - 1180, + 1179, "game_versions_insert_input!" ], "on_conflict": [ - 1185 + 1184 ] } ], "insert_gamedata_signature_validations": [ - 1216, + 1215, { "objects": [ - 1213, + 1212, "[gamedata_signature_validations_insert_input!]!" ], "on_conflict": [ - 1217 + 1216 ] } ], "insert_gamedata_signature_validations_one": [ - 1202, + 1201, { "object": [ - 1213, + 1212, "gamedata_signature_validations_insert_input!" ], "on_conflict": [ - 1217 + 1216 ] } ], "insert_leaderboard_entries": [ - 1252, + 1251, { "objects": [ - 1249, + 1248, "[leaderboard_entries_insert_input!]!" ] } ], "insert_leaderboard_entries_one": [ - 1243, + 1242, { "object": [ - 1249, + 1248, "leaderboard_entries_insert_input!" ] } ], "insert_lobbies": [ - 1274, + 1273, { "objects": [ - 1271, + 1270, "[lobbies_insert_input!]!" ], "on_conflict": [ - 1276 + 1275 ] } ], "insert_lobbies_one": [ - 1266, + 1265, { "object": [ - 1271, + 1270, "lobbies_insert_input!" ], "on_conflict": [ - 1276 + 1275 ] } ], "insert_lobby_players": [ - 1304, + 1303, { "objects": [ - 1299, + 1298, "[lobby_players_insert_input!]!" ], "on_conflict": [ - 1305 + 1304 ] } ], "insert_lobby_players_one": [ - 1285, + 1284, { "object": [ - 1299, + 1298, "lobby_players_insert_input!" ], "on_conflict": [ - 1305 + 1304 ] } ], "insert_map_pools": [ - 1338, + 1337, { "objects": [ - 1335, + 1334, "[map_pools_insert_input!]!" ], "on_conflict": [ - 1340 + 1339 ] } ], "insert_map_pools_one": [ - 1330, + 1329, { "object": [ - 1335, + 1334, "map_pools_insert_input!" ], "on_conflict": [ - 1340 + 1339 ] } ], "insert_maps": [ - 1365, + 1364, { "objects": [ - 1360, + 1359, "[maps_insert_input!]!" ], "on_conflict": [ - 1367 + 1366 ] } ], "insert_maps_one": [ - 1349, + 1348, { "object": [ - 1360, + 1359, "maps_insert_input!" ], "on_conflict": [ - 1367 + 1366 ] } ], "insert_match_clips": [ - 1395, + 1394, { "objects": [ - 1390, + 1389, "[match_clips_insert_input!]!" ], "on_conflict": [ - 1397 + 1396 ] } ], "insert_match_clips_one": [ - 1378, + 1377, { "object": [ - 1390, + 1389, "match_clips_insert_input!" ], "on_conflict": [ - 1397 + 1396 ] } ], "insert_match_demo_sessions": [ - 1441, + 1440, { "objects": [ - 1436, + 1435, "[match_demo_sessions_insert_input!]!" ], "on_conflict": [ - 1442 + 1441 ] } ], "insert_match_demo_sessions_one": [ - 1420, + 1419, { "object": [ - 1436, + 1435, "match_demo_sessions_insert_input!" ], "on_conflict": [ - 1442 + 1441 ] } ], "insert_match_lineup_players": [ - 1485, + 1484, { "objects": [ - 1480, + 1479, "[match_lineup_players_insert_input!]!" ], "on_conflict": [ - 1486 + 1485 ] } ], "insert_match_lineup_players_one": [ - 1466, + 1465, { "object": [ - 1480, + 1479, "match_lineup_players_insert_input!" ], "on_conflict": [ - 1486 + 1485 ] } ], "insert_match_lineups": [ - 1528, + 1527, { "objects": [ - 1523, + 1522, "[match_lineups_insert_input!]!" ], "on_conflict": [ - 1530 + 1529 ] } ], "insert_match_lineups_one": [ - 1511, + 1510, { "object": [ - 1523, + 1522, "match_lineups_insert_input!" ], "on_conflict": [ - 1530 + 1529 ] } ], "insert_match_map_demos": [ - 1576, + 1575, { "objects": [ - 1571, + 1570, "[match_map_demos_insert_input!]!" ], "on_conflict": [ - 1578 + 1577 ] } ], "insert_match_map_demos_one": [ - 1553, + 1552, { "object": [ - 1571, + 1570, "match_map_demos_insert_input!" ], "on_conflict": [ - 1578 + 1577 ] } ], "insert_match_map_rounds": [ - 1621, + 1620, { "objects": [ - 1616, + 1615, "[match_map_rounds_insert_input!]!" ], "on_conflict": [ - 1622 + 1621 ] } ], "insert_match_map_rounds_one": [ - 1604, + 1603, { "object": [ - 1616, + 1615, "match_map_rounds_insert_input!" ], "on_conflict": [ - 1622 + 1621 ] } ], "insert_match_map_veto_picks": [ - 1659, + 1658, { "objects": [ - 1654, + 1653, "[match_map_veto_picks_insert_input!]!" ], "on_conflict": [ - 1660 + 1659 ] } ], "insert_match_map_veto_picks_one": [ - 1645, + 1644, { "object": [ - 1654, + 1653, "match_map_veto_picks_insert_input!" ], "on_conflict": [ - 1660 + 1659 ] } ], "insert_match_maps": [ - 1686, + 1685, { "objects": [ - 1681, + 1680, "[match_maps_insert_input!]!" ], "on_conflict": [ - 1688 + 1687 ] } ], "insert_match_maps_one": [ - 1669, + 1668, { "object": [ - 1681, + 1680, "match_maps_insert_input!" ], "on_conflict": [ - 1688 + 1687 ] } ], "insert_match_options": [ - 1721, + 1720, { "objects": [ - 1718, + 1717, "[match_options_insert_input!]!" ], "on_conflict": [ - 1723 + 1722 ] } ], "insert_match_options_one": [ - 1711, + 1710, { "object": [ - 1718, + 1717, "match_options_insert_input!" ], "on_conflict": [ - 1723 + 1722 ] } ], "insert_match_region_veto_picks": [ - 1753, + 1752, { "objects": [ - 1748, + 1747, "[match_region_veto_picks_insert_input!]!" ], "on_conflict": [ - 1754 + 1753 ] } ], "insert_match_region_veto_picks_one": [ - 1739, + 1738, { "object": [ - 1748, + 1747, "match_region_veto_picks_insert_input!" ], "on_conflict": [ - 1754 + 1753 ] } ], "insert_match_streams": [ - 1786, + 1785, { "objects": [ - 1781, + 1780, "[match_streams_insert_input!]!" ], "on_conflict": [ - 1787 + 1786 ] } ], "insert_match_streams_one": [ - 1763, + 1762, { "object": [ - 1781, + 1780, "match_streams_insert_input!" ], "on_conflict": [ - 1787 + 1786 ] } ], "insert_match_type_cfgs": [ - 1821, + 1820, { "objects": [ - 1818, + 1817, "[match_type_cfgs_insert_input!]!" ], "on_conflict": [ - 1822 + 1821 ] } ], "insert_match_type_cfgs_one": [ - 1813, + 1812, { "object": [ - 1818, + 1817, "match_type_cfgs_insert_input!" ], "on_conflict": [ - 1822 + 1821 ] } ], "insert_matches": [ - 1848, + 1847, { "objects": [ - 1843, + 1842, "[matches_insert_input!]!" ], "on_conflict": [ - 1850 + 1849 ] } ], "insert_matches_one": [ - 1831, + 1830, { "object": [ - 1843, + 1842, "matches_insert_input!" ], "on_conflict": [ - 1850 + 1849 ] } ], "insert_migration_hashes_hashes": [ - 1881, + 1880, { "objects": [ - 1878, + 1877, "[migration_hashes_hashes_insert_input!]!" ], "on_conflict": [ - 1882 + 1881 ] } ], "insert_migration_hashes_hashes_one": [ - 1873, + 1872, { "object": [ - 1878, + 1877, "migration_hashes_hashes_insert_input!" ], "on_conflict": [ - 1882 + 1881 ] } ], "insert_my_friends": [ - 1913, + 1912, { "objects": [ - 1908, + 1907, "[my_friends_insert_input!]!" ] } ], "insert_my_friends_one": [ - 1891, + 1890, { "object": [ - 1908, + 1907, "my_friends_insert_input!" ] } ], "insert_news_articles": [ - 1947, + 1946, { "objects": [ - 1944, + 1943, "[news_articles_insert_input!]!" ], "on_conflict": [ - 1948 + 1947 ] } ], "insert_news_articles_one": [ - 1937, + 1936, { "object": [ - 1944, + 1943, "news_articles_insert_input!" ], "on_conflict": [ - 1948 + 1947 ] } ], "insert_notifications": [ - 1987, + 1986, { "objects": [ - 1982, + 1981, "[notifications_insert_input!]!" ], "on_conflict": [ - 1988 + 1987 ] } ], "insert_notifications_one": [ - 1964, + 1963, { "object": [ - 1982, + 1981, "notifications_insert_input!" ], "on_conflict": [ - 1988 + 1987 ] } ], "insert_pending_match_import_players": [ - 2034, + 2033, { "objects": [ - 2029, + 2028, "[pending_match_import_players_insert_input!]!" ], "on_conflict": [ - 2035 + 2034 ] } ], "insert_pending_match_import_players_one": [ - 2017, + 2016, { "object": [ - 2029, + 2028, "pending_match_import_players_insert_input!" ], "on_conflict": [ - 2035 + 2034 ] } ], "insert_pending_match_imports": [ - 2068, + 2067, { "objects": [ - 2065, + 2064, "[pending_match_imports_insert_input!]!" ], "on_conflict": [ - 2070 + 2069 ] } ], "insert_pending_match_imports_one": [ - 2058, + 2057, { "object": [ - 2065, + 2064, "pending_match_imports_insert_input!" ], "on_conflict": [ - 2070 + 2069 ] } ], "insert_player_aim_stats_demo": [ - 2096, + 2095, { "objects": [ - 2093, + 2092, "[player_aim_stats_demo_insert_input!]!" ], "on_conflict": [ - 2097 + 2096 ] } ], "insert_player_aim_stats_demo_one": [ - 2086, + 2085, { "object": [ - 2093, + 2092, "player_aim_stats_demo_insert_input!" ], "on_conflict": [ - 2097 + 2096 ] } ], "insert_player_aim_weapon_stats": [ - 2130, + 2129, { "objects": [ - 2125, + 2124, "[player_aim_weapon_stats_insert_input!]!" ], "on_conflict": [ - 2131 + 2130 ] } ], "insert_player_aim_weapon_stats_one": [ - 2113, + 2112, { "object": [ - 2125, + 2124, "player_aim_weapon_stats_insert_input!" ], "on_conflict": [ - 2131 + 2130 ] } ], "insert_player_assists": [ - 2173, + 2172, { "objects": [ - 2168, + 2167, "[player_assists_insert_input!]!" ], "on_conflict": [ - 2174 + 2173 ] } ], "insert_player_assists_one": [ - 2154, + 2153, { "object": [ - 2168, + 2167, "player_assists_insert_input!" ], "on_conflict": [ - 2174 + 2173 ] } ], "insert_player_damages": [ - 2234, + 2233, { "objects": [ - 2229, + 2228, "[player_damages_insert_input!]!" ], "on_conflict": [ - 2235 + 2234 ] } ], "insert_player_damages_one": [ - 2217, + 2216, { "object": [ - 2229, + 2228, "player_damages_insert_input!" ], "on_conflict": [ - 2235 + 2234 ] } ], "insert_player_elo": [ - 2268, + 2267, { "objects": [ - 2265, + 2264, "[player_elo_insert_input!]!" ], "on_conflict": [ - 2269 + 2268 ] } ], "insert_player_elo_one": [ - 2258, + 2257, { "object": [ - 2265, + 2264, "player_elo_insert_input!" ], "on_conflict": [ - 2269 + 2268 ] } ], "insert_player_faceit_rank_history": [ - 2302, + 2301, { "objects": [ - 2297, + 2296, "[player_faceit_rank_history_insert_input!]!" ], "on_conflict": [ - 2303 + 2302 ] } ], "insert_player_faceit_rank_history_one": [ - 2285, + 2284, { "object": [ - 2297, + 2296, "player_faceit_rank_history_insert_input!" ], "on_conflict": [ - 2303 + 2302 ] } ], "insert_player_flashes": [ - 2345, + 2344, { "objects": [ - 2340, + 2339, "[player_flashes_insert_input!]!" ], "on_conflict": [ - 2346 + 2345 ] } ], "insert_player_flashes_one": [ - 2326, + 2325, { "object": [ - 2340, + 2339, "player_flashes_insert_input!" ], "on_conflict": [ - 2346 + 2345 ] } ], "insert_player_kills": [ - 2431, + 2430, { "objects": [ - 2426, + 2425, "[player_kills_insert_input!]!" ], "on_conflict": [ - 2432 + 2431 ] } ], "insert_player_kills_by_weapon": [ - 2400, + 2399, { "objects": [ - 2395, + 2394, "[player_kills_by_weapon_insert_input!]!" ], "on_conflict": [ - 2401 + 2400 ] } ], "insert_player_kills_by_weapon_one": [ - 2383, + 2382, { "object": [ - 2395, + 2394, "player_kills_by_weapon_insert_input!" ], "on_conflict": [ - 2401 + 2400 ] } ], "insert_player_kills_one": [ - 2371, + 2370, { "object": [ - 2426, + 2425, "player_kills_insert_input!" ], "on_conflict": [ - 2432 + 2431 ] } ], "insert_player_leaderboard_rank": [ - 2466, + 2465, { "objects": [ - 2463, + 2462, "[player_leaderboard_rank_insert_input!]!" ] } ], "insert_player_leaderboard_rank_one": [ - 2457, + 2456, { "object": [ - 2463, + 2462, "player_leaderboard_rank_insert_input!" ] } ], "insert_player_match_map_stats": [ - 2497, + 2496, { "objects": [ - 2492, + 2491, "[player_match_map_stats_insert_input!]!" ], "on_conflict": [ - 2498 + 2497 ] } ], "insert_player_match_map_stats_one": [ - 2480, + 2479, { "object": [ - 2492, + 2491, "player_match_map_stats_insert_input!" ], "on_conflict": [ - 2498 + 2497 ] } ], "insert_player_objectives": [ - 2589, + 2588, { "objects": [ - 2584, + 2583, "[player_objectives_insert_input!]!" ], "on_conflict": [ - 2590 + 2589 ] } ], "insert_player_objectives_one": [ - 2572, + 2571, { "object": [ - 2584, + 2583, "player_objectives_insert_input!" ], "on_conflict": [ - 2590 + 2589 ] } ], "insert_player_premier_rank_history": [ - 2648, + 2647, { "objects": [ - 2643, + 2642, "[player_premier_rank_history_insert_input!]!" ], "on_conflict": [ - 2649 + 2648 ] } ], "insert_player_premier_rank_history_one": [ - 2631, + 2630, { "object": [ - 2643, + 2642, "player_premier_rank_history_insert_input!" ], "on_conflict": [ - 2649 + 2648 ] } ], "insert_player_sanctions": [ - 2689, + 2688, { "objects": [ - 2684, + 2683, "[player_sanctions_insert_input!]!" ], "on_conflict": [ - 2690 + 2689 ] } ], "insert_player_sanctions_one": [ - 2672, + 2671, { "object": [ - 2684, + 2683, "player_sanctions_insert_input!" ], "on_conflict": [ - 2690 + 2689 ] } ], "insert_player_stats": [ - 2723, + 2722, { "objects": [ - 2720, + 2719, "[player_stats_insert_input!]!" ], "on_conflict": [ - 2725 + 2724 ] } ], "insert_player_stats_one": [ - 2713, + 2712, { "object": [ - 2720, + 2719, "player_stats_insert_input!" ], "on_conflict": [ - 2725 + 2724 ] } ], "insert_player_steam_bot_friend": [ - 2755, + 2754, { "objects": [ - 2752, + 2751, "[player_steam_bot_friend_insert_input!]!" ], "on_conflict": [ - 2756 + 2755 ] } ], "insert_player_steam_bot_friend_one": [ - 2741, + 2740, { "object": [ - 2752, + 2751, "player_steam_bot_friend_insert_input!" ], "on_conflict": [ - 2756 + 2755 ] } ], "insert_player_steam_match_auth": [ - 2783, + 2782, { "objects": [ - 2780, + 2779, "[player_steam_match_auth_insert_input!]!" ], "on_conflict": [ - 2784 + 2783 ] } ], "insert_player_steam_match_auth_one": [ - 2773, + 2772, { "object": [ - 2780, + 2779, "player_steam_match_auth_insert_input!" ], "on_conflict": [ - 2784 + 2783 ] } ], "insert_player_unused_utility": [ - 2817, + 2816, { "objects": [ - 2812, + 2811, "[player_unused_utility_insert_input!]!" ], "on_conflict": [ - 2818 + 2817 ] } ], "insert_player_unused_utility_one": [ - 2800, + 2799, { "object": [ - 2812, + 2811, "player_unused_utility_insert_input!" ], "on_conflict": [ - 2818 + 2817 ] } ], "insert_player_utility": [ - 2858, + 2857, { "objects": [ - 2853, + 2852, "[player_utility_insert_input!]!" ], "on_conflict": [ - 2859 + 2858 ] } ], "insert_player_utility_one": [ - 2841, + 2840, { "object": [ - 2853, + 2852, "player_utility_insert_input!" ], "on_conflict": [ - 2859 + 2858 ] } ], "insert_players": [ - 2925, + 2924, { "objects": [ - 2922, + 2921, "[players_insert_input!]!" ], "on_conflict": [ - 2927 + 2926 ] } ], "insert_players_one": [ - 2915, + 2914, { "object": [ - 2922, + 2921, "players_insert_input!" ], "on_conflict": [ - 2927 + 2926 ] } ], "insert_plugin_versions": [ - 2953, + 2952, { "objects": [ - 2950, + 2949, "[plugin_versions_insert_input!]!" ], "on_conflict": [ - 2954 + 2953 ] } ], "insert_plugin_versions_one": [ - 2943, + 2942, { "object": [ - 2950, + 2949, "plugin_versions_insert_input!" ], "on_conflict": [ - 2954 + 2953 ] } ], "insert_server_regions": [ - 2980, + 2979, { "objects": [ - 2977, + 2976, "[server_regions_insert_input!]!" ], "on_conflict": [ - 2982 + 2981 ] } ], "insert_server_regions_one": [ - 2971, + 2970, { "object": [ - 2977, + 2976, "server_regions_insert_input!" ], "on_conflict": [ - 2982 + 2981 ] } ], "insert_servers": [ - 3017, + 3016, { "objects": [ - 3012, + 3011, "[servers_insert_input!]!" ], "on_conflict": [ - 3019 + 3018 ] } ], "insert_servers_one": [ - 2998, + 2997, { "object": [ - 3012, + 3011, "servers_insert_input!" ], "on_conflict": [ - 3019 + 3018 ] } ], "insert_settings": [ - 3052, + 3051, { "objects": [ - 3049, + 3048, "[settings_insert_input!]!" ], "on_conflict": [ - 3053 + 3052 ] } ], "insert_settings_one": [ - 3044, + 3043, { "object": [ - 3049, + 3048, "settings_insert_input!" ], "on_conflict": [ - 3053 + 3052 ] } ], "insert_steam_account_claims": [ - 3076, + 3075, { "objects": [ - 3071, + 3070, "[steam_account_claims_insert_input!]!" ], "on_conflict": [ - 3077 + 3076 ] } ], "insert_steam_account_claims_one": [ - 3062, + 3061, { "object": [ - 3071, + 3070, "steam_account_claims_insert_input!" ], "on_conflict": [ - 3077 + 3076 ] } ], "insert_steam_accounts": [ - 3096, + 3095, { "objects": [ - 3093, + 3092, "[steam_accounts_insert_input!]!" ], "on_conflict": [ - 3098 + 3097 ] } ], "insert_steam_accounts_one": [ - 3086, + 3085, { "object": [ - 3093, + 3092, "steam_accounts_insert_input!" ], "on_conflict": [ - 3098 + 3097 ] } ], "insert_system_alerts": [ - 3124, + 3123, { "objects": [ - 3121, + 3120, "[system_alerts_insert_input!]!" ], "on_conflict": [ - 3125 + 3124 ] } ], "insert_system_alerts_one": [ - 3114, + 3113, { "object": [ - 3121, + 3120, "system_alerts_insert_input!" ], "on_conflict": [ - 3125 + 3124 ] } ], "insert_team_invites": [ - 3158, + 3157, { "objects": [ - 3153, + 3152, "[team_invites_insert_input!]!" ], "on_conflict": [ - 3159 + 3158 ] } ], "insert_team_invites_one": [ - 3141, + 3140, { "object": [ - 3153, + 3152, "team_invites_insert_input!" ], "on_conflict": [ - 3159 + 3158 ] } ], "insert_team_roster": [ - 3201, + 3200, { "objects": [ - 3196, + 3195, "[team_roster_insert_input!]!" ], "on_conflict": [ - 3202 + 3201 ] } ], "insert_team_roster_one": [ - 3182, + 3181, { "object": [ - 3196, + 3195, "team_roster_insert_input!" ], "on_conflict": [ - 3202 + 3201 ] } ], "insert_team_scrim_alerts": [ - 3237, + 3236, { "objects": [ - 3234, + 3233, "[team_scrim_alerts_insert_input!]!" ], "on_conflict": [ - 3238 + 3237 ] } ], "insert_team_scrim_alerts_one": [ - 3227, + 3226, { "object": [ - 3234, + 3233, "team_scrim_alerts_insert_input!" ], "on_conflict": [ - 3238 + 3237 ] } ], "insert_team_scrim_availability": [ - 3270, + 3269, { "objects": [ - 3265, + 3264, "[team_scrim_availability_insert_input!]!" ], "on_conflict": [ - 3271 + 3270 ] } ], "insert_team_scrim_availability_one": [ - 3254, + 3253, { "object": [ - 3265, + 3264, "team_scrim_availability_insert_input!" ], "on_conflict": [ - 3271 + 3270 ] } ], "insert_team_scrim_request_proposals": [ - 3299, + 3298, { "objects": [ - 3294, + 3293, "[team_scrim_request_proposals_insert_input!]!" ], "on_conflict": [ - 3300 + 3299 ] } ], "insert_team_scrim_request_proposals_one": [ - 3282, + 3281, { "object": [ - 3294, + 3293, "team_scrim_request_proposals_insert_input!" ], "on_conflict": [ - 3300 + 3299 ] } ], "insert_team_scrim_requests": [ - 3342, + 3341, { "objects": [ - 3337, + 3336, "[team_scrim_requests_insert_input!]!" ], "on_conflict": [ - 3344 + 3343 ] } ], "insert_team_scrim_requests_one": [ - 3323, + 3322, { "object": [ - 3337, + 3336, "team_scrim_requests_insert_input!" ], "on_conflict": [ - 3344 + 3343 ] } ], "insert_team_scrim_settings": [ - 3379, + 3378, { "objects": [ - 3376, + 3375, "[team_scrim_settings_insert_input!]!" ], "on_conflict": [ - 3381 + 3380 ] } ], "insert_team_scrim_settings_one": [ - 3369, + 3368, { "object": [ - 3376, + 3375, "team_scrim_settings_insert_input!" ], "on_conflict": [ - 3381 + 3380 ] } ], "insert_team_suggestions": [ - 3407, + 3406, { "objects": [ - 3404, + 3403, "[team_suggestions_insert_input!]!" ], "on_conflict": [ - 3408 + 3407 ] } ], "insert_team_suggestions_one": [ - 3397, + 3396, { "object": [ - 3404, + 3403, "team_suggestions_insert_input!" ], "on_conflict": [ - 3408 + 3407 ] } ], "insert_teams": [ - 3441, + 3440, { "objects": [ - 3436, + 3435, "[teams_insert_input!]!" ], "on_conflict": [ - 3443 + 3442 ] } ], "insert_teams_one": [ - 3424, + 3423, { "object": [ - 3436, + 3435, "teams_insert_input!" ], "on_conflict": [ - 3443 + 3442 ] } ], "insert_tournament_brackets": [ - 3488, + 3487, { "objects": [ - 3483, + 3482, "[tournament_brackets_insert_input!]!" ], "on_conflict": [ - 3490 + 3489 ] } ], "insert_tournament_brackets_one": [ - 3469, + 3468, { "object": [ - 3483, + 3482, "tournament_brackets_insert_input!" ], "on_conflict": [ - 3490 + 3489 ] } ], "insert_tournament_organizers": [ - 3532, + 3531, { "objects": [ - 3527, + 3526, "[tournament_organizers_insert_input!]!" ], "on_conflict": [ - 3533 + 3532 ] } ], "insert_tournament_organizers_one": [ - 3515, + 3514, { "object": [ - 3527, + 3526, "tournament_organizers_insert_input!" ], "on_conflict": [ - 3533 + 3532 ] } ], "insert_tournament_stages": [ - 3579, + 3578, { "objects": [ - 3574, + 3573, "[tournament_stages_insert_input!]!" ], "on_conflict": [ - 3581 + 3580 ] } ], "insert_tournament_stages_one": [ - 3556, + 3555, { "object": [ - 3574, + 3573, "tournament_stages_insert_input!" ], "on_conflict": [ - 3581 + 3580 ] } ], "insert_tournament_team_invites": [ - 3624, + 3623, { "objects": [ - 3619, + 3618, "[tournament_team_invites_insert_input!]!" ], "on_conflict": [ - 3625 + 3624 ] } ], "insert_tournament_team_invites_one": [ - 3607, + 3606, { "object": [ - 3619, + 3618, "tournament_team_invites_insert_input!" ], "on_conflict": [ - 3625 + 3624 ] } ], "insert_tournament_team_roster": [ - 3665, + 3664, { "objects": [ - 3660, + 3659, "[tournament_team_roster_insert_input!]!" ], "on_conflict": [ - 3666 + 3665 ] } ], "insert_tournament_team_roster_one": [ - 3648, + 3647, { "object": [ - 3660, + 3659, "tournament_team_roster_insert_input!" ], "on_conflict": [ - 3666 + 3665 ] } ], "insert_tournament_teams": [ - 3706, + 3705, { "objects": [ - 3701, + 3700, "[tournament_teams_insert_input!]!" ], "on_conflict": [ - 3708 + 3707 ] } ], "insert_tournament_teams_one": [ - 3689, + 3688, { "object": [ - 3701, + 3700, "tournament_teams_insert_input!" ], "on_conflict": [ - 3708 + 3707 ] } ], "insert_tournament_trophies": [ - 3750, + 3749, { "objects": [ - 3745, + 3744, "[tournament_trophies_insert_input!]!" ], "on_conflict": [ - 3751 + 3750 ] } ], "insert_tournament_trophies_one": [ - 3731, + 3730, { "object": [ - 3745, + 3744, "tournament_trophies_insert_input!" ], "on_conflict": [ - 3751 + 3750 ] } ], "insert_tournament_trophy_configs": [ - 3793, + 3792, { "objects": [ - 3788, + 3787, "[tournament_trophy_configs_insert_input!]!" ], "on_conflict": [ - 3795 + 3794 ] } ], "insert_tournament_trophy_configs_one": [ - 3776, + 3775, { "object": [ - 3788, + 3787, "tournament_trophy_configs_insert_input!" ], "on_conflict": [ - 3795 + 3794 ] } ], "insert_tournaments": [ - 3837, + 3836, { "objects": [ - 3832, + 3831, "[tournaments_insert_input!]!" ], "on_conflict": [ - 3839 + 3838 ] } ], "insert_tournaments_one": [ - 3818, + 3817, { "object": [ - 3832, + 3831, "tournaments_insert_input!" ], "on_conflict": [ - 3839 + 3838 ] } ], "insert_v_match_captains": [ - 3894, + 3893, { "objects": [ - 3891, + 3890, "[v_match_captains_insert_input!]!" ] } ], "insert_v_match_captains_one": [ - 3885, + 3884, { "object": [ - 3891, + 3890, "v_match_captains_insert_input!" ] } ], "insert_v_match_map_backup_rounds": [ - 4005, + 4004, { "objects": [ - 4002, + 4001, "[v_match_map_backup_rounds_insert_input!]!" ] } ], "insert_v_match_map_backup_rounds_one": [ - 3996, + 3995, { "object": [ - 4002, + 4001, "v_match_map_backup_rounds_insert_input!" ] } ], "insert_v_player_match_map_hltv": [ - 4227, + 4226, { "objects": [ - 4222, + 4221, "[v_player_match_map_hltv_insert_input!]!" ] } ], "insert_v_player_match_map_hltv_one": [ - 4211, + 4210, { "object": [ - 4222, + 4221, "v_player_match_map_hltv_insert_input!" ] } ], "insert_v_pool_maps": [ - 4386, + 4385, { "objects": [ - 4381, + 4380, "[v_pool_maps_insert_input!]!" ] } ], "insert_v_pool_maps_one": [ - 4371, + 4370, { "object": [ - 4381, + 4380, "v_pool_maps_insert_input!" ] } ], "insert_v_team_stage_results": [ - 4480, + 4479, { "objects": [ - 4475, + 4474, "[v_team_stage_results_insert_input!]!" ], "on_conflict": [ - 4482 + 4481 ] } ], "insert_v_team_stage_results_one": [ - 4453, + 4452, { "object": [ - 4475, + 4474, "v_team_stage_results_insert_input!" ], "on_conflict": [ - 4482 + 4481 ] } ], "joinDraftGame": [ - 78, + 77, { "draftGameId": [ - 3864, + 3863, "uuid!" ], "inviteCode": [ - 75 + 74 ] } ], "joinDraftGameAsParty": [ - 78, + 77, { "draftGameId": [ - 3864, + 3863, "uuid!" ], "inviteCode": [ - 75 + 74 ] } ], @@ -123892,23 +124789,23 @@ export default { 40, { "reason": [ - 75 + 74 ], "serverId": [ - 75, + 74, "String!" ], "steam_id": [ - 75, + 74, "String!" ] } ], "leaveLineup": [ - 78, + 77, { "match_id": [ - 75, + 74, "String!" ] } @@ -123917,37 +124814,37 @@ export default { 66, { "auth_code": [ - 75, + 74, "String!" ], "share_code": [ - 75, + 74, "String!" ] } ], "loadFixtures": [ - 78 + 77 ], "logout": [ - 78 + 77 ], "moveServerItem": [ - 78, + 77, { "dest_path": [ - 75, + 74, "String!" ], "node_id": [ - 75, + 74, "String!" ], "server_id": [ - 75 + 74 ], "source_path": [ - 75, + 74, "String!" ] } @@ -123956,10 +124853,10 @@ export default { 52 ], "pauseClipRenderBatch": [ - 78, + 77, { "match_map_id": [ - 3864, + 3863, "uuid!" ] } @@ -123971,11 +124868,11 @@ export default { 22, { "draftGameId": [ - 3864, + 3863, "uuid!" ], "inviteCode": [ - 75 + 74 ] } ], @@ -123986,55 +124883,55 @@ export default { 38 ], "match_map_id": [ - 3864, + 3863, "uuid!" ], "preset": [ - 75, + 74, "String!" ], "resolution": [ - 75 + 74 ], "target_name": [ - 75 + 74 ], "target_steam_id": [ - 75, + 74, "String!" ], "title": [ - 75 + 74 ] } ], "randomizeTeams": [ - 78, + 77, { "match_id": [ - 3864, + 3863, "uuid!" ] } ], "rebootMatchServer": [ - 78, + 77, { "match_id": [ - 3864, + 3863, "uuid!" ] } ], "recalculate_tournament_trophies": [ - 3731, + 3730, { "args": [ - 2970, + 2969, "recalculate_tournament_trophies_args!" ], "distinct_on": [ - 3754, + 3753, "[tournament_trophies_select_column!]" ], "limit": [ @@ -124044,82 +124941,82 @@ export default { 38 ], "order_by": [ - 3752, + 3751, "[tournament_trophies_order_by!]" ], "where": [ - 3742 + 3741 ] } ], "reconnectLive": [ - 78, + 77, { "match_id": [ - 3864, + 3863, "uuid!" ] } ], "refreshAllPlayers": [ - 78 + 77 ], "refreshFaceitRank": [ - 78, + 77, { "steam_id": [ - 75, + 74, "String!" ] } ], "refreshLiveHud": [ - 78, + 77, { "match_id": [ - 3864, + 3863, "uuid!" ] } ], "registerName": [ - 78, + 77, { "name": [ - 75, + 74, "String!" ] } ], "removeFixtures": [ - 78 + 77 ], "removeSteamPresenceBotAccount": [ - 78, + 77, { "account_id": [ - 75, + 74, "String!" ] } ], "renameServerItem": [ - 78, + 77, { "new_path": [ - 75, + 74, "String!" ], "node_id": [ - 75, + 74, "String!" ], "old_path": [ - 75, + 74, "String!" ], "server_id": [ - 75 + 74 ] } ], @@ -124130,94 +125027,94 @@ export default { 59 ], "reparseDemo": [ - 78, + 77, { "match_map_id": [ - 3864, + 3863, "uuid!" ] } ], "reparseMatchDemos": [ - 78, + 77, { "match_id": [ - 3864, + 3863, "uuid!" ] } ], "requestNameChange": [ - 78, + 77, { "name": [ - 75, + 74, "String!" ], "steam_id": [ - 174, + 173, "bigint!" ] } ], "requeueClipRender": [ - 78, + 77, { "job_id": [ - 3864, + 3863, "uuid!" ] } ], "respondDraftInvite": [ - 78, + 77, { "accept": [ 3, "Boolean!" ], "draftGameId": [ - 3864, + 3863, "uuid!" ] } ], "respondToScrimRequest": [ - 78, + 77, { "accept": [ 3, "Boolean!" ], "request_id": [ - 3864, + 3863, "uuid!" ] } ], "restartService": [ - 78, + 77, { "service": [ - 75, + 74, "String!" ] } ], "resumeClipRenderBatch": [ - 78, + 77, { "match_map_id": [ - 3864, + 3863, "uuid!" ] } ], "retryClipRenderBatch": [ - 78, + 77, { "match_map_id": [ - 3864, + 3863, "uuid!" ], "only_failed": [ @@ -124229,7 +125126,7 @@ export default { 53, { "valve_match_id": [ - 75, + 74, "String!" ] } @@ -124241,17 +125138,17 @@ export default { 29 ], "reason": [ - 75 + 74 ], "serverId": [ - 75 + 74 ], "steam_id": [ - 75, + 74, "String!" ], "type": [ - 75, + 74, "String!" ] } @@ -124260,20 +125157,20 @@ export default { 48, { "content_markdown": [ - 75, + 74, "String!" ], "cover_image_url": [ - 75 + 74 ], "id": [ - 3864 + 3863 ], "teaser": [ - 75 + 74 ], "title": [ - 75, + 74, "String!" ] } @@ -124282,95 +125179,95 @@ export default { 61 ], "scanSteamBans": [ - 78 + 77 ], "scheduleMatch": [ - 78, + 77, { "match_id": [ - 3864, + 3863, "uuid!" ], "time": [ - 3467 + 3466 ] } ], "sendScrimRequest": [ - 78, + 77, { "best_of": [ 38 ], "from_team_id": [ - 3864, + 3863, "uuid!" ], "proposed_scheduled_at": [ - 3467, + 3466, "timestamptz!" ], "region": [ - 75 + 74 ], "to_team_id": [ - 3864, + 3863, "uuid!" ] } ], "setGameNodeSchedulingState": [ - 78, + 77, { "enabled": [ 3, "Boolean!" ], "game_server_node_id": [ - 75, + 74, "String!" ] } ], "setHudMode": [ - 78, + 77, { "match_id": [ - 3864, + 3863, "uuid!" ], "mode": [ - 75, + 74, "String!" ] } ], "setMapWinner": [ - 78, + 77, { "match_id": [ - 3864, + 3863, "uuid!" ], "match_map_id": [ - 3864, + 3863, "uuid!" ], "winning_lineup_id": [ - 3864, + 3863, "uuid!" ] } ], "setMatchWinner": [ - 78, + 77, { "match_id": [ - 3864, + 3863, "uuid!" ], "winning_lineup_id": [ - 3864, + 3863, "uuid!" ] } @@ -124379,11 +125276,11 @@ export default { 48, { "id": [ - 3864, + 3863, "uuid!" ], "status": [ - 75, + 74, "String!" ] } @@ -124392,45 +125289,45 @@ export default { 65 ], "skipShaders": [ - 78, + 77, { "match_id": [ - 3864, + 3863, "uuid!" ] } ], "specAutodirector": [ - 78, + 77, { "enabled": [ 3, "Boolean!" ], "match_id": [ - 3864, + 3863, "uuid!" ] } ], "specClick": [ - 78, + 77, { "button": [ - 75, + 74, "String!" ], "match_id": [ - 3864, + 3863, "uuid!" ] } ], "specHud": [ - 78, + 77, { "match_id": [ - 3864, + 3863, "uuid!" ], "visible": [ @@ -124440,41 +125337,41 @@ export default { } ], "specHudSides": [ - 78, + 77, { "match_id": [ - 3864, + 3863, "uuid!" ] } ], "specJump": [ - 78, + 77, { "match_id": [ - 3864, + 3863, "uuid!" ] } ], "specPlayer": [ - 78, + 77, { "accountid": [ 38, "Int!" ], "match_id": [ - 3864, + 3863, "uuid!" ] } ], "specScoreboard": [ - 78, + 77, { "match_id": [ - 3864, + 3863, "uuid!" ], "show": [ @@ -124484,10 +125381,10 @@ export default { } ], "specSlot": [ - 78, + 77, { "match_id": [ - 3864, + 3863, "uuid!" ], "slot": [ @@ -124497,4856 +125394,4856 @@ export default { } ], "specXray": [ - 78, + 77, { "enabled": [ 3, "Boolean!" ], "match_id": [ - 3864, + 3863, "uuid!" ] } ], "startLive": [ - 78, + 77, { "match_id": [ - 3864, + 3863, "uuid!" ], "mode": [ - 75, + 74, "String!" ] } ], "startMatch": [ - 78, + 77, { "match_id": [ - 3864, + 3863, "uuid!" ], "server_id": [ - 3864 + 3863 ] } ], "stopGpuSession": [ - 78, + 77, { "game_server_node_id": [ - 3864, + 3863, "uuid!" ] } ], "stopLive": [ - 78, + 77, { "match_id": [ - 3864, + 3863, "uuid!" ] } ], "stopWatchDemo": [ - 78, + 77, { "match_map_id": [ - 3864, + 3863, "uuid!" ] } ], "submitSteamPresenceSteamGuard": [ - 78, + 77, { "account_id": [ - 75, + 74, "String!" ], "code": [ - 75, + 74, "String!" ] } ], "swapLineups": [ - 78, + 77, { "match_id": [ - 3864, + 3863, "uuid!" ] } ], "switchLineup": [ - 78, + 77, { "match_id": [ - 75, + 74, "String!" ] } ], "switchLiveMatch": [ - 78, + 77, { "from_match_id": [ - 3864, + 3863, "uuid!" ], "mode": [ - 75, + 74, "String!" ], "to_match_id": [ - 3864, + 3863, "uuid!" ] } ], "syncSteamFriends": [ - 78 + 77 ], "testFaceitIntegration": [ 24 ], "testUpload": [ - 83 + 82 ], "unlinkDiscord": [ - 78 + 77 ], "unlinkSteamMatchHistory": [ - 78 + 77 ], "unsanctionServerPlayer": [ 60, { "serverId": [ - 75 + 74 ], "steam_id": [ - 75, + 74, "String!" ], "type": [ - 75, + 74, "String!" ] } ], "updateClip": [ - 78, + 77, { "clip_id": [ - 3864, + 3863, "uuid!" ], "target_steam_id": [ - 75 + 74 ], "title": [ - 75 + 74 ], "visibility": [ - 75 + 74 ] } ], "updateCs": [ - 78, + 77, { "game": [ - 75 + 74 ], "game_server_node_id": [ - 3864 + 3863 ] } ], "updateDraftGame": [ - 78, + 77, { "draftGameId": [ - 3864, + 3863, "uuid!" ], "settings": [ - 1240, + 1239, "jsonb!" ] } ], "updateServices": [ - 78 + 77 ], "update__map_pool": [ - 96, + 95, { "_set": [ - 101 + 100 ], "where": [ - 91, + 90, "_map_pool_bool_exp!" ] } ], "update__map_pool_by_pk": [ - 88, + 87, { "_set": [ - 101 + 100 ], "pk_columns": [ - 99, + 98, "_map_pool_pk_columns_input!" ] } ], "update__map_pool_many": [ - 96, + 95, { "updates": [ - 105, + 104, "[_map_pool_updates!]!" ] } ], "update_abandoned_matches": [ - 123, + 122, { "_inc": [ - 117 + 116 ], "_set": [ - 128 + 127 ], "where": [ - 115, + 114, "abandoned_matches_bool_exp!" ] } ], "update_abandoned_matches_by_pk": [ - 106, + 105, { "_inc": [ - 117 + 116 ], "_set": [ - 128 + 127 ], "pk_columns": [ - 126, + 125, "abandoned_matches_pk_columns_input!" ] } ], "update_abandoned_matches_many": [ - 123, + 122, { "updates": [ - 140, + 139, "[abandoned_matches_updates!]!" ] } ], "update_api_keys": [ - 157, + 156, { "_inc": [ - 153 + 152 ], "_set": [ - 162 + 161 ], "where": [ - 151, + 150, "api_keys_bool_exp!" ] } ], "update_api_keys_by_pk": [ - 147, + 146, { "_inc": [ - 153 + 152 ], "_set": [ - 162 + 161 ], "pk_columns": [ - 160, + 159, "api_keys_pk_columns_input!" ] } ], "update_api_keys_many": [ - 157, + 156, { "updates": [ - 170, + 169, "[api_keys_updates!]!" ] } ], "update_clip_render_jobs": [ - 202, + 201, { "_append": [ - 187 + 186 ], "_delete_at_path": [ - 193 + 192 ], "_delete_elem": [ - 194 + 193 ], "_delete_key": [ - 195 + 194 ], "_inc": [ - 196 + 195 ], "_prepend": [ - 206 + 205 ], "_set": [ - 210 + 209 ], "where": [ - 191, + 190, "clip_render_jobs_bool_exp!" ] } ], "update_clip_render_jobs_by_pk": [ - 179, + 178, { "_append": [ - 187 + 186 ], "_delete_at_path": [ - 193 + 192 ], "_delete_elem": [ - 194 + 193 ], "_delete_key": [ - 195 + 194 ], "_inc": [ - 196 + 195 ], "_prepend": [ - 206 + 205 ], "_set": [ - 210 + 209 ], "pk_columns": [ - 205, + 204, "clip_render_jobs_pk_columns_input!" ] } ], "update_clip_render_jobs_many": [ - 202, + 201, { "updates": [ - 222, + 221, "[clip_render_jobs_updates!]!" ] } ], "update_db_backups": [ - 240, + 239, { "_inc": [ - 236 + 235 ], "_set": [ - 245 + 244 ], "where": [ - 234, + 233, "db_backups_bool_exp!" ] } ], "update_db_backups_by_pk": [ - 230, + 229, { "_inc": [ - 236 + 235 ], "_set": [ - 245 + 244 ], "pk_columns": [ - 243, + 242, "db_backups_pk_columns_input!" ] } ], "update_db_backups_many": [ - 240, + 239, { "updates": [ - 253, + 252, "[db_backups_updates!]!" ] } ], "update_draft_game_picks": [ - 276, + 275, { "_inc": [ - 270 + 269 ], "_set": [ - 283 + 282 ], "where": [ - 268, + 267, "draft_game_picks_bool_exp!" ] } ], "update_draft_game_picks_by_pk": [ - 257, + 256, { "_inc": [ - 270 + 269 ], "_set": [ - 283 + 282 ], "pk_columns": [ - 279, + 278, "draft_game_picks_pk_columns_input!" ] } ], "update_draft_game_picks_many": [ - 276, + 275, { "updates": [ - 295, + 294, "[draft_game_picks_updates!]!" ] } ], "update_draft_game_players": [ - 321, + 320, { "_inc": [ - 315 + 314 ], "_set": [ - 328 + 327 ], "where": [ - 313, + 312, "draft_game_players_bool_exp!" ] } ], "update_draft_game_players_by_pk": [ - 302, + 301, { "_inc": [ - 315 + 314 ], "_set": [ - 328 + 327 ], "pk_columns": [ - 324, + 323, "draft_game_players_pk_columns_input!" ] } ], "update_draft_game_players_many": [ - 321, + 320, { "updates": [ - 340, + 339, "[draft_game_players_updates!]!" ] } ], "update_draft_games": [ - 366, + 365, { "_inc": [ - 360 + 359 ], "_set": [ - 374 + 373 ], "where": [ - 358, + 357, "draft_games_bool_exp!" ] } ], "update_draft_games_by_pk": [ - 347, + 346, { "_inc": [ - 360 + 359 ], "_set": [ - 374 + 373 ], "pk_columns": [ - 370, + 369, "draft_games_pk_columns_input!" ] } ], "update_draft_games_many": [ - 366, + 365, { "updates": [ - 386, + 385, "[draft_games_updates!]!" ] } ], "update_e_check_in_settings": [ - 403, + 402, { "_set": [ - 408 + 407 ], "where": [ - 396, + 395, "e_check_in_settings_bool_exp!" ] } ], "update_e_check_in_settings_by_pk": [ - 393, + 392, { "_set": [ - 408 + 407 ], "pk_columns": [ - 406, + 405, "e_check_in_settings_pk_columns_input!" ] } ], "update_e_check_in_settings_many": [ - 403, + 402, { "updates": [ - 412, + 411, "[e_check_in_settings_updates!]!" ] } ], "update_e_draft_game_captain_selection": [ - 423, + 422, { "_set": [ - 429 + 428 ], "where": [ - 416, + 415, "e_draft_game_captain_selection_bool_exp!" ] } ], "update_e_draft_game_captain_selection_by_pk": [ - 413, + 412, { "_set": [ - 429 + 428 ], "pk_columns": [ - 427, + 426, "e_draft_game_captain_selection_pk_columns_input!" ] } ], "update_e_draft_game_captain_selection_many": [ - 423, + 422, { "updates": [ - 433, + 432, "[e_draft_game_captain_selection_updates!]!" ] } ], "update_e_draft_game_draft_order": [ - 444, + 443, { "_set": [ - 450 + 449 ], "where": [ - 437, + 436, "e_draft_game_draft_order_bool_exp!" ] } ], "update_e_draft_game_draft_order_by_pk": [ - 434, + 433, { "_set": [ - 450 + 449 ], "pk_columns": [ - 448, + 447, "e_draft_game_draft_order_pk_columns_input!" ] } ], "update_e_draft_game_draft_order_many": [ - 444, + 443, { "updates": [ - 454, + 453, "[e_draft_game_draft_order_updates!]!" ] } ], "update_e_draft_game_mode": [ - 465, + 464, { "_set": [ - 471 + 470 ], "where": [ - 458, + 457, "e_draft_game_mode_bool_exp!" ] } ], "update_e_draft_game_mode_by_pk": [ - 455, + 454, { "_set": [ - 471 + 470 ], "pk_columns": [ - 469, + 468, "e_draft_game_mode_pk_columns_input!" ] } ], "update_e_draft_game_mode_many": [ - 465, + 464, { "updates": [ - 475, + 474, "[e_draft_game_mode_updates!]!" ] } ], "update_e_draft_game_player_status": [ - 486, + 485, { "_set": [ - 492 + 491 ], "where": [ - 479, + 478, "e_draft_game_player_status_bool_exp!" ] } ], "update_e_draft_game_player_status_by_pk": [ - 476, + 475, { "_set": [ - 492 + 491 ], "pk_columns": [ - 490, + 489, "e_draft_game_player_status_pk_columns_input!" ] } ], "update_e_draft_game_player_status_many": [ - 486, + 485, { "updates": [ - 496, + 495, "[e_draft_game_player_status_updates!]!" ] } ], "update_e_draft_game_status": [ - 507, + 506, { "_set": [ - 513 + 512 ], "where": [ - 500, + 499, "e_draft_game_status_bool_exp!" ] } ], "update_e_draft_game_status_by_pk": [ - 497, + 496, { "_set": [ - 513 + 512 ], "pk_columns": [ - 511, + 510, "e_draft_game_status_pk_columns_input!" ] } ], "update_e_draft_game_status_many": [ - 507, + 506, { "updates": [ - 517, + 516, "[e_draft_game_status_updates!]!" ] } ], "update_e_friend_status": [ - 528, + 527, { "_set": [ - 534 + 533 ], "where": [ - 521, + 520, "e_friend_status_bool_exp!" ] } ], "update_e_friend_status_by_pk": [ - 518, + 517, { "_set": [ - 534 + 533 ], "pk_columns": [ - 532, + 531, "e_friend_status_pk_columns_input!" ] } ], "update_e_friend_status_many": [ - 528, + 527, { "updates": [ - 538, + 537, "[e_friend_status_updates!]!" ] } ], "update_e_game_cfg_types": [ - 549, + 548, { "_set": [ - 554 + 553 ], "where": [ - 542, + 541, "e_game_cfg_types_bool_exp!" ] } ], "update_e_game_cfg_types_by_pk": [ - 539, + 538, { "_set": [ - 554 + 553 ], "pk_columns": [ - 552, + 551, "e_game_cfg_types_pk_columns_input!" ] } ], "update_e_game_cfg_types_many": [ - 549, + 548, { "updates": [ - 558, + 557, "[e_game_cfg_types_updates!]!" ] } ], "update_e_game_server_node_statuses": [ - 569, + 568, { "_set": [ - 575 + 574 ], "where": [ - 562, + 561, "e_game_server_node_statuses_bool_exp!" ] } ], "update_e_game_server_node_statuses_by_pk": [ - 559, + 558, { "_set": [ - 575 + 574 ], "pk_columns": [ - 573, + 572, "e_game_server_node_statuses_pk_columns_input!" ] } ], "update_e_game_server_node_statuses_many": [ - 569, + 568, { "updates": [ - 579, + 578, "[e_game_server_node_statuses_updates!]!" ] } ], "update_e_lobby_access": [ - 590, + 589, { "_set": [ - 596 + 595 ], "where": [ - 583, + 582, "e_lobby_access_bool_exp!" ] } ], "update_e_lobby_access_by_pk": [ - 580, + 579, { "_set": [ - 596 + 595 ], "pk_columns": [ - 594, + 593, "e_lobby_access_pk_columns_input!" ] } ], "update_e_lobby_access_many": [ - 590, + 589, { "updates": [ - 600, + 599, "[e_lobby_access_updates!]!" ] } ], "update_e_lobby_player_status": [ - 611, + 610, { "_set": [ - 616 + 615 ], "where": [ - 604, + 603, "e_lobby_player_status_bool_exp!" ] } ], "update_e_lobby_player_status_by_pk": [ - 601, + 600, { "_set": [ - 616 + 615 ], "pk_columns": [ - 614, + 613, "e_lobby_player_status_pk_columns_input!" ] } ], "update_e_lobby_player_status_many": [ - 611, + 610, { "updates": [ - 620, + 619, "[e_lobby_player_status_updates!]!" ] } ], "update_e_map_pool_types": [ - 631, + 630, { "_set": [ - 637 + 636 ], "where": [ - 624, + 623, "e_map_pool_types_bool_exp!" ] } ], "update_e_map_pool_types_by_pk": [ - 621, + 620, { "_set": [ - 637 + 636 ], "pk_columns": [ - 635, + 634, "e_map_pool_types_pk_columns_input!" ] } ], "update_e_map_pool_types_many": [ - 631, + 630, { "updates": [ - 641, + 640, "[e_map_pool_types_updates!]!" ] } ], "update_e_match_clip_visibility": [ - 652, + 651, { "_set": [ - 657 + 656 ], "where": [ - 645, + 644, "e_match_clip_visibility_bool_exp!" ] } ], "update_e_match_clip_visibility_by_pk": [ - 642, + 641, { "_set": [ - 657 + 656 ], "pk_columns": [ - 655, + 654, "e_match_clip_visibility_pk_columns_input!" ] } ], "update_e_match_clip_visibility_many": [ - 652, + 651, { "updates": [ - 661, + 660, "[e_match_clip_visibility_updates!]!" ] } ], "update_e_match_map_status": [ - 672, + 671, { "_set": [ - 678 + 677 ], "where": [ - 665, + 664, "e_match_map_status_bool_exp!" ] } ], "update_e_match_map_status_by_pk": [ - 662, + 661, { "_set": [ - 678 + 677 ], "pk_columns": [ - 676, + 675, "e_match_map_status_pk_columns_input!" ] } ], "update_e_match_map_status_many": [ - 672, + 671, { "updates": [ - 682, + 681, "[e_match_map_status_updates!]!" ] } ], "update_e_match_mode": [ - 693, + 692, { "_set": [ - 698 + 697 ], "where": [ - 686, + 685, "e_match_mode_bool_exp!" ] } ], "update_e_match_mode_by_pk": [ - 683, + 682, { "_set": [ - 698 + 697 ], "pk_columns": [ - 696, + 695, "e_match_mode_pk_columns_input!" ] } ], "update_e_match_mode_many": [ - 693, + 692, { "updates": [ - 702, + 701, "[e_match_mode_updates!]!" ] } ], "update_e_match_status": [ - 713, + 712, { "_set": [ - 719 + 718 ], "where": [ - 706, + 705, "e_match_status_bool_exp!" ] } ], "update_e_match_status_by_pk": [ - 703, + 702, { "_set": [ - 719 + 718 ], "pk_columns": [ - 717, + 716, "e_match_status_pk_columns_input!" ] } ], "update_e_match_status_many": [ - 713, + 712, { "updates": [ - 723, + 722, "[e_match_status_updates!]!" ] } ], "update_e_match_types": [ - 734, + 733, { "_set": [ - 740 + 739 ], "where": [ - 727, + 726, "e_match_types_bool_exp!" ] } ], "update_e_match_types_by_pk": [ - 724, + 723, { "_set": [ - 740 + 739 ], "pk_columns": [ - 738, + 737, "e_match_types_pk_columns_input!" ] } ], "update_e_match_types_many": [ - 734, + 733, { "updates": [ - 744, + 743, "[e_match_types_updates!]!" ] } ], "update_e_notification_types": [ - 755, + 754, { "_set": [ - 760 + 759 ], "where": [ - 748, + 747, "e_notification_types_bool_exp!" ] } ], "update_e_notification_types_by_pk": [ - 745, + 744, { "_set": [ - 760 + 759 ], "pk_columns": [ - 758, + 757, "e_notification_types_pk_columns_input!" ] } ], "update_e_notification_types_many": [ - 755, + 754, { "updates": [ - 764, + 763, "[e_notification_types_updates!]!" ] } ], "update_e_objective_types": [ - 775, + 774, { "_set": [ - 780 + 779 ], "where": [ - 768, + 767, "e_objective_types_bool_exp!" ] } ], "update_e_objective_types_by_pk": [ - 765, + 764, { "_set": [ - 780 + 779 ], "pk_columns": [ - 778, + 777, "e_objective_types_pk_columns_input!" ] } ], "update_e_objective_types_many": [ - 775, + 774, { "updates": [ - 784, + 783, "[e_objective_types_updates!]!" ] } ], "update_e_player_roles": [ - 795, + 794, { "_set": [ - 800 + 799 ], "where": [ - 788, + 787, "e_player_roles_bool_exp!" ] } ], "update_e_player_roles_by_pk": [ - 785, + 784, { "_set": [ - 800 + 799 ], "pk_columns": [ - 798, + 797, "e_player_roles_pk_columns_input!" ] } ], "update_e_player_roles_many": [ - 795, + 794, { "updates": [ - 804, + 803, "[e_player_roles_updates!]!" ] } ], "update_e_ready_settings": [ - 815, + 814, { "_set": [ - 820 + 819 ], "where": [ - 808, + 807, "e_ready_settings_bool_exp!" ] } ], "update_e_ready_settings_by_pk": [ - 805, + 804, { "_set": [ - 820 + 819 ], "pk_columns": [ - 818, + 817, "e_ready_settings_pk_columns_input!" ] } ], "update_e_ready_settings_many": [ - 815, + 814, { "updates": [ - 824, + 823, "[e_ready_settings_updates!]!" ] } ], "update_e_sanction_types": [ - 835, + 834, { "_set": [ - 841 + 840 ], "where": [ - 828, + 827, "e_sanction_types_bool_exp!" ] } ], "update_e_sanction_types_by_pk": [ - 825, + 824, { "_set": [ - 841 + 840 ], "pk_columns": [ - 839, + 838, "e_sanction_types_pk_columns_input!" ] } ], "update_e_sanction_types_many": [ - 835, + 834, { "updates": [ - 845, + 844, "[e_sanction_types_updates!]!" ] } ], "update_e_scrim_request_statuses": [ - 856, + 855, { "_set": [ - 861 + 860 ], "where": [ - 849, + 848, "e_scrim_request_statuses_bool_exp!" ] } ], "update_e_scrim_request_statuses_by_pk": [ - 846, + 845, { "_set": [ - 861 + 860 ], "pk_columns": [ - 859, + 858, "e_scrim_request_statuses_pk_columns_input!" ] } ], "update_e_scrim_request_statuses_many": [ - 856, + 855, { "updates": [ - 865, + 864, "[e_scrim_request_statuses_updates!]!" ] } ], "update_e_server_types": [ - 876, + 875, { "_set": [ - 881 + 880 ], "where": [ - 869, + 868, "e_server_types_bool_exp!" ] } ], "update_e_server_types_by_pk": [ - 866, + 865, { "_set": [ - 881 + 880 ], "pk_columns": [ - 879, + 878, "e_server_types_pk_columns_input!" ] } ], "update_e_server_types_many": [ - 876, + 875, { "updates": [ - 885, + 884, "[e_server_types_updates!]!" ] } ], "update_e_sides": [ - 896, + 895, { "_set": [ - 901 + 900 ], "where": [ - 889, + 888, "e_sides_bool_exp!" ] } ], "update_e_sides_by_pk": [ - 886, + 885, { "_set": [ - 901 + 900 ], "pk_columns": [ - 899, + 898, "e_sides_pk_columns_input!" ] } ], "update_e_sides_many": [ - 896, + 895, { "updates": [ - 905, + 904, "[e_sides_updates!]!" ] } ], "update_e_system_alert_types": [ - 916, + 915, { "_set": [ - 921 + 920 ], "where": [ - 909, + 908, "e_system_alert_types_bool_exp!" ] } ], "update_e_system_alert_types_by_pk": [ - 906, + 905, { "_set": [ - 921 + 920 ], "pk_columns": [ - 919, + 918, "e_system_alert_types_pk_columns_input!" ] } ], "update_e_system_alert_types_many": [ - 916, + 915, { "updates": [ - 925, + 924, "[e_system_alert_types_updates!]!" ] } ], "update_e_team_roles": [ - 936, + 935, { "_set": [ - 942 + 941 ], "where": [ - 929, + 928, "e_team_roles_bool_exp!" ] } ], "update_e_team_roles_by_pk": [ - 926, + 925, { "_set": [ - 942 + 941 ], "pk_columns": [ - 940, + 939, "e_team_roles_pk_columns_input!" ] } ], "update_e_team_roles_many": [ - 936, + 935, { "updates": [ - 946, + 945, "[e_team_roles_updates!]!" ] } ], "update_e_team_roster_statuses": [ - 957, + 956, { "_set": [ - 962 + 961 ], "where": [ - 950, + 949, "e_team_roster_statuses_bool_exp!" ] } ], "update_e_team_roster_statuses_by_pk": [ - 947, + 946, { "_set": [ - 962 + 961 ], "pk_columns": [ - 960, + 959, "e_team_roster_statuses_pk_columns_input!" ] } ], "update_e_team_roster_statuses_many": [ - 957, + 956, { "updates": [ - 966, + 965, "[e_team_roster_statuses_updates!]!" ] } ], "update_e_timeout_settings": [ - 977, + 976, { "_set": [ - 982 + 981 ], "where": [ - 970, + 969, "e_timeout_settings_bool_exp!" ] } ], "update_e_timeout_settings_by_pk": [ - 967, + 966, { "_set": [ - 982 + 981 ], "pk_columns": [ - 980, + 979, "e_timeout_settings_pk_columns_input!" ] } ], "update_e_timeout_settings_many": [ - 977, + 976, { "updates": [ - 986, + 985, "[e_timeout_settings_updates!]!" ] } ], "update_e_tournament_stage_types": [ - 997, + 996, { "_set": [ - 1003 + 1002 ], "where": [ - 990, + 989, "e_tournament_stage_types_bool_exp!" ] } ], "update_e_tournament_stage_types_by_pk": [ - 987, + 986, { "_set": [ - 1003 + 1002 ], "pk_columns": [ - 1001, + 1000, "e_tournament_stage_types_pk_columns_input!" ] } ], "update_e_tournament_stage_types_many": [ - 997, + 996, { "updates": [ - 1007, + 1006, "[e_tournament_stage_types_updates!]!" ] } ], "update_e_tournament_status": [ - 1018, + 1017, { "_set": [ - 1024 + 1023 ], "where": [ - 1011, + 1010, "e_tournament_status_bool_exp!" ] } ], "update_e_tournament_status_by_pk": [ - 1008, + 1007, { "_set": [ - 1024 + 1023 ], "pk_columns": [ - 1022, + 1021, "e_tournament_status_pk_columns_input!" ] } ], "update_e_tournament_status_many": [ - 1018, + 1017, { "updates": [ - 1028, + 1027, "[e_tournament_status_updates!]!" ] } ], "update_e_utility_types": [ - 1039, + 1038, { "_set": [ - 1044 + 1043 ], "where": [ - 1032, + 1031, "e_utility_types_bool_exp!" ] } ], "update_e_utility_types_by_pk": [ - 1029, + 1028, { "_set": [ - 1044 + 1043 ], "pk_columns": [ - 1042, + 1041, "e_utility_types_pk_columns_input!" ] } ], "update_e_utility_types_many": [ - 1039, + 1038, { "updates": [ - 1048, + 1047, "[e_utility_types_updates!]!" ] } ], "update_e_veto_pick_types": [ - 1059, + 1058, { "_set": [ - 1064 + 1063 ], "where": [ - 1052, + 1051, "e_veto_pick_types_bool_exp!" ] } ], "update_e_veto_pick_types_by_pk": [ - 1049, + 1048, { "_set": [ - 1064 + 1063 ], "pk_columns": [ - 1062, + 1061, "e_veto_pick_types_pk_columns_input!" ] } ], "update_e_veto_pick_types_many": [ - 1059, + 1058, { "updates": [ - 1068, + 1067, "[e_veto_pick_types_updates!]!" ] } ], "update_e_winning_reasons": [ - 1079, + 1078, { "_set": [ - 1084 + 1083 ], "where": [ - 1072, + 1071, "e_winning_reasons_bool_exp!" ] } ], "update_e_winning_reasons_by_pk": [ - 1069, + 1068, { "_set": [ - 1084 + 1083 ], "pk_columns": [ - 1082, + 1081, "e_winning_reasons_pk_columns_input!" ] } ], "update_e_winning_reasons_many": [ - 1079, + 1078, { "updates": [ - 1088, + 1087, "[e_winning_reasons_updates!]!" ] } ], "update_friends": [ - 1101, + 1100, { "_inc": [ - 1097 + 1096 ], "_set": [ - 1106 + 1105 ], "where": [ - 1095, + 1094, "friends_bool_exp!" ] } ], "update_friends_by_pk": [ - 1091, + 1090, { "_inc": [ - 1097 + 1096 ], "_set": [ - 1106 + 1105 ], "pk_columns": [ - 1104, + 1103, "friends_pk_columns_input!" ] } ], "update_friends_many": [ - 1101, + 1100, { "updates": [ - 1114, + 1113, "[friends_updates!]!" ] } ], "update_game_server_nodes": [ - 1141, + 1140, { "_append": [ - 1126 + 1125 ], "_delete_at_path": [ - 1132 + 1131 ], "_delete_elem": [ - 1133 + 1132 ], "_delete_key": [ - 1134 + 1133 ], "_inc": [ - 1135 + 1134 ], "_prepend": [ - 1146 + 1145 ], "_set": [ - 1150 + 1149 ], "where": [ - 1130, + 1129, "game_server_nodes_bool_exp!" ] } ], "update_game_server_nodes_by_pk": [ - 1118, + 1117, { "_append": [ - 1126 + 1125 ], "_delete_at_path": [ - 1132 + 1131 ], "_delete_elem": [ - 1133 + 1132 ], "_delete_key": [ - 1134 + 1133 ], "_inc": [ - 1135 + 1134 ], "_prepend": [ - 1146 + 1145 ], "_set": [ - 1150 + 1149 ], "pk_columns": [ - 1145, + 1144, "game_server_nodes_pk_columns_input!" ] } ], "update_game_server_nodes_many": [ - 1141, + 1140, { "updates": [ - 1162, + 1161, "[game_server_nodes_updates!]!" ] } ], "update_game_versions": [ - 1183, + 1182, { "_append": [ - 1172 + 1171 ], "_delete_at_path": [ - 1176 + 1175 ], "_delete_elem": [ - 1177 + 1176 ], "_delete_key": [ - 1178 + 1177 ], "_inc": [ - 1179 + 1178 ], "_prepend": [ - 1188 + 1187 ], "_set": [ - 1190 + 1189 ], "where": [ - 1174, + 1173, "game_versions_bool_exp!" ] } ], "update_game_versions_by_pk": [ - 1169, + 1168, { "_append": [ - 1172 + 1171 ], "_delete_at_path": [ - 1176 + 1175 ], "_delete_elem": [ - 1177 + 1176 ], "_delete_key": [ - 1178 + 1177 ], "_inc": [ - 1179 + 1178 ], "_prepend": [ - 1188 + 1187 ], "_set": [ - 1190 + 1189 ], "pk_columns": [ - 1187, + 1186, "game_versions_pk_columns_input!" ] } ], "update_game_versions_many": [ - 1183, + 1182, { "updates": [ - 1198, + 1197, "[game_versions_updates!]!" ] } ], "update_gamedata_signature_validations": [ - 1216, + 1215, { "_append": [ - 1205 + 1204 ], "_delete_at_path": [ - 1209 + 1208 ], "_delete_elem": [ - 1210 + 1209 ], "_delete_key": [ - 1211 + 1210 ], "_inc": [ - 1212 + 1211 ], "_prepend": [ - 1220 + 1219 ], "_set": [ - 1222 + 1221 ], "where": [ - 1207, + 1206, "gamedata_signature_validations_bool_exp!" ] } ], "update_gamedata_signature_validations_by_pk": [ - 1202, + 1201, { "_append": [ - 1205 + 1204 ], "_delete_at_path": [ - 1209 + 1208 ], "_delete_elem": [ - 1210 + 1209 ], "_delete_key": [ - 1211 + 1210 ], "_inc": [ - 1212 + 1211 ], "_prepend": [ - 1220 + 1219 ], "_set": [ - 1222 + 1221 ], "pk_columns": [ - 1219, + 1218, "gamedata_signature_validations_pk_columns_input!" ] } ], "update_gamedata_signature_validations_many": [ - 1216, + 1215, { "updates": [ - 1230, + 1229, "[gamedata_signature_validations_updates!]!" ] } ], "update_leaderboard_entries": [ - 1252, + 1251, { "_inc": [ - 1248 + 1247 ], "_set": [ - 1255 + 1254 ], "where": [ - 1247, + 1246, "leaderboard_entries_bool_exp!" ] } ], "update_leaderboard_entries_many": [ - 1252, + 1251, { "updates": [ - 1262, + 1261, "[leaderboard_entries_updates!]!" ] } ], "update_lobbies": [ - 1274, + 1273, { "_set": [ - 1280 + 1279 ], "where": [ - 1269, + 1268, "lobbies_bool_exp!" ] } ], "update_lobbies_by_pk": [ - 1266, + 1265, { "_set": [ - 1280 + 1279 ], "pk_columns": [ - 1278, + 1277, "lobbies_pk_columns_input!" ] } ], "update_lobbies_many": [ - 1274, + 1273, { "updates": [ - 1284, + 1283, "[lobbies_updates!]!" ] } ], "update_lobby_players": [ - 1304, + 1303, { "_inc": [ - 1298 + 1297 ], "_set": [ - 1311 + 1310 ], "where": [ - 1296, + 1295, "lobby_players_bool_exp!" ] } ], "update_lobby_players_by_pk": [ - 1285, + 1284, { "_inc": [ - 1298 + 1297 ], "_set": [ - 1311 + 1310 ], "pk_columns": [ - 1307, + 1306, "lobby_players_pk_columns_input!" ] } ], "update_lobby_players_many": [ - 1304, + 1303, { "updates": [ - 1323, + 1322, "[lobby_players_updates!]!" ] } ], "update_map_pools": [ - 1338, + 1337, { "_set": [ - 1344 + 1343 ], "where": [ - 1333, + 1332, "map_pools_bool_exp!" ] } ], "update_map_pools_by_pk": [ - 1330, + 1329, { "_set": [ - 1344 + 1343 ], "pk_columns": [ - 1342, + 1341, "map_pools_pk_columns_input!" ] } ], "update_map_pools_many": [ - 1338, + 1337, { "updates": [ - 1348, + 1347, "[map_pools_updates!]!" ] } ], "update_maps": [ - 1365, + 1364, { "_set": [ - 1373 + 1372 ], "where": [ - 1358, + 1357, "maps_bool_exp!" ] } ], "update_maps_by_pk": [ - 1349, + 1348, { "_set": [ - 1373 + 1372 ], "pk_columns": [ - 1369, + 1368, "maps_pk_columns_input!" ] } ], "update_maps_many": [ - 1365, + 1364, { "updates": [ - 1377, + 1376, "[maps_updates!]!" ] } ], "update_match_clips": [ - 1395, + 1394, { "_inc": [ - 1389 + 1388 ], "_set": [ - 1401 + 1400 ], "where": [ - 1387, + 1386, "match_clips_bool_exp!" ] } ], "update_match_clips_by_pk": [ - 1378, + 1377, { "_inc": [ - 1389 + 1388 ], "_set": [ - 1401 + 1400 ], "pk_columns": [ - 1399, + 1398, "match_clips_pk_columns_input!" ] } ], "update_match_clips_many": [ - 1395, + 1394, { "updates": [ - 1413, + 1412, "[match_clips_updates!]!" ] } ], "update_match_demo_sessions": [ - 1441, + 1440, { "_append": [ - 1426 + 1425 ], "_delete_at_path": [ - 1432 + 1431 ], "_delete_elem": [ - 1433 + 1432 ], "_delete_key": [ - 1434 + 1433 ], "_inc": [ - 1435 + 1434 ], "_prepend": [ - 1445 + 1444 ], "_set": [ - 1447 + 1446 ], "where": [ - 1430, + 1429, "match_demo_sessions_bool_exp!" ] } ], "update_match_demo_sessions_by_pk": [ - 1420, + 1419, { "_append": [ - 1426 + 1425 ], "_delete_at_path": [ - 1432 + 1431 ], "_delete_elem": [ - 1433 + 1432 ], "_delete_key": [ - 1434 + 1433 ], "_inc": [ - 1435 + 1434 ], "_prepend": [ - 1445 + 1444 ], "_set": [ - 1447 + 1446 ], "pk_columns": [ - 1444, + 1443, "match_demo_sessions_pk_columns_input!" ] } ], "update_match_demo_sessions_many": [ - 1441, + 1440, { "updates": [ - 1459, + 1458, "[match_demo_sessions_updates!]!" ] } ], "update_match_lineup_players": [ - 1485, + 1484, { "_inc": [ - 1479 + 1478 ], "_set": [ - 1492 + 1491 ], "where": [ - 1477, + 1476, "match_lineup_players_bool_exp!" ] } ], "update_match_lineup_players_by_pk": [ - 1466, + 1465, { "_inc": [ - 1479 + 1478 ], "_set": [ - 1492 + 1491 ], "pk_columns": [ - 1488, + 1487, "match_lineup_players_pk_columns_input!" ] } ], "update_match_lineup_players_many": [ - 1485, + 1484, { "updates": [ - 1504, + 1503, "[match_lineup_players_updates!]!" ] } ], "update_match_lineups": [ - 1528, + 1527, { "_inc": [ - 1522 + 1521 ], "_set": [ - 1534 + 1533 ], "where": [ - 1520, + 1519, "match_lineups_bool_exp!" ] } ], "update_match_lineups_by_pk": [ - 1511, + 1510, { "_inc": [ - 1522 + 1521 ], "_set": [ - 1534 + 1533 ], "pk_columns": [ - 1532, + 1531, "match_lineups_pk_columns_input!" ] } ], "update_match_lineups_many": [ - 1528, + 1527, { "updates": [ - 1546, + 1545, "[match_lineups_updates!]!" ] } ], "update_match_map_demos": [ - 1576, + 1575, { "_append": [ - 1561 + 1560 ], "_delete_at_path": [ - 1567 + 1566 ], "_delete_elem": [ - 1568 + 1567 ], "_delete_key": [ - 1569 + 1568 ], "_inc": [ - 1570 + 1569 ], "_prepend": [ - 1581 + 1580 ], "_set": [ - 1585 + 1584 ], "where": [ - 1565, + 1564, "match_map_demos_bool_exp!" ] } ], "update_match_map_demos_by_pk": [ - 1553, + 1552, { "_append": [ - 1561 + 1560 ], "_delete_at_path": [ - 1567 + 1566 ], "_delete_elem": [ - 1568 + 1567 ], "_delete_key": [ - 1569 + 1568 ], "_inc": [ - 1570 + 1569 ], "_prepend": [ - 1581 + 1580 ], "_set": [ - 1585 + 1584 ], "pk_columns": [ - 1580, + 1579, "match_map_demos_pk_columns_input!" ] } ], "update_match_map_demos_many": [ - 1576, + 1575, { "updates": [ - 1597, + 1596, "[match_map_demos_updates!]!" ] } ], "update_match_map_rounds": [ - 1621, + 1620, { "_inc": [ - 1615 + 1614 ], "_set": [ - 1626 + 1625 ], "where": [ - 1613, + 1612, "match_map_rounds_bool_exp!" ] } ], "update_match_map_rounds_by_pk": [ - 1604, + 1603, { "_inc": [ - 1615 + 1614 ], "_set": [ - 1626 + 1625 ], "pk_columns": [ - 1624, + 1623, "match_map_rounds_pk_columns_input!" ] } ], "update_match_map_rounds_many": [ - 1621, + 1620, { "updates": [ - 1638, + 1637, "[match_map_rounds_updates!]!" ] } ], "update_match_map_veto_picks": [ - 1659, + 1658, { "_set": [ - 1664 + 1663 ], "where": [ - 1652, + 1651, "match_map_veto_picks_bool_exp!" ] } ], "update_match_map_veto_picks_by_pk": [ - 1645, + 1644, { "_set": [ - 1664 + 1663 ], "pk_columns": [ - 1662, + 1661, "match_map_veto_picks_pk_columns_input!" ] } ], "update_match_map_veto_picks_many": [ - 1659, + 1658, { "updates": [ - 1668, + 1667, "[match_map_veto_picks_updates!]!" ] } ], "update_match_maps": [ - 1686, + 1685, { "_inc": [ - 1680 + 1679 ], "_set": [ - 1692 + 1691 ], "where": [ - 1678, + 1677, "match_maps_bool_exp!" ] } ], "update_match_maps_by_pk": [ - 1669, + 1668, { "_inc": [ - 1680 + 1679 ], "_set": [ - 1692 + 1691 ], "pk_columns": [ - 1690, + 1689, "match_maps_pk_columns_input!" ] } ], "update_match_maps_many": [ - 1686, + 1685, { "updates": [ - 1704, + 1703, "[match_maps_updates!]!" ] } ], "update_match_options": [ - 1721, + 1720, { "_inc": [ - 1717 + 1716 ], "_set": [ - 1727 + 1726 ], "where": [ - 1715, + 1714, "match_options_bool_exp!" ] } ], "update_match_options_by_pk": [ - 1711, + 1710, { "_inc": [ - 1717 + 1716 ], "_set": [ - 1727 + 1726 ], "pk_columns": [ - 1725, + 1724, "match_options_pk_columns_input!" ] } ], "update_match_options_many": [ - 1721, + 1720, { "updates": [ - 1735, + 1734, "[match_options_updates!]!" ] } ], "update_match_region_veto_picks": [ - 1753, + 1752, { "_set": [ - 1758 + 1757 ], "where": [ - 1746, + 1745, "match_region_veto_picks_bool_exp!" ] } ], "update_match_region_veto_picks_by_pk": [ - 1739, + 1738, { "_set": [ - 1758 + 1757 ], "pk_columns": [ - 1756, + 1755, "match_region_veto_picks_pk_columns_input!" ] } ], "update_match_region_veto_picks_many": [ - 1753, + 1752, { "updates": [ - 1762, + 1761, "[match_region_veto_picks_updates!]!" ] } ], "update_match_streams": [ - 1786, + 1785, { "_append": [ - 1771 + 1770 ], "_delete_at_path": [ - 1777 + 1776 ], "_delete_elem": [ - 1778 + 1777 ], "_delete_key": [ - 1779 + 1778 ], "_inc": [ - 1780 + 1779 ], "_prepend": [ - 1790 + 1789 ], "_set": [ - 1794 + 1793 ], "where": [ - 1775, + 1774, "match_streams_bool_exp!" ] } ], "update_match_streams_by_pk": [ - 1763, + 1762, { "_append": [ - 1771 + 1770 ], "_delete_at_path": [ - 1777 + 1776 ], "_delete_elem": [ - 1778 + 1777 ], "_delete_key": [ - 1779 + 1778 ], "_inc": [ - 1780 + 1779 ], "_prepend": [ - 1790 + 1789 ], "_set": [ - 1794 + 1793 ], "pk_columns": [ - 1789, + 1788, "match_streams_pk_columns_input!" ] } ], "update_match_streams_many": [ - 1786, + 1785, { "updates": [ - 1806, + 1805, "[match_streams_updates!]!" ] } ], "update_match_type_cfgs": [ - 1821, + 1820, { "_set": [ - 1826 + 1825 ], "where": [ - 1816, + 1815, "match_type_cfgs_bool_exp!" ] } ], "update_match_type_cfgs_by_pk": [ - 1813, + 1812, { "_set": [ - 1826 + 1825 ], "pk_columns": [ - 1824, + 1823, "match_type_cfgs_pk_columns_input!" ] } ], "update_match_type_cfgs_many": [ - 1821, + 1820, { "updates": [ - 1830, + 1829, "[match_type_cfgs_updates!]!" ] } ], "update_matches": [ - 1848, + 1847, { "_inc": [ - 1842 + 1841 ], "_set": [ - 1854 + 1853 ], "where": [ - 1840, + 1839, "matches_bool_exp!" ] } ], "update_matches_by_pk": [ - 1831, + 1830, { "_inc": [ - 1842 + 1841 ], "_set": [ - 1854 + 1853 ], "pk_columns": [ - 1852, + 1851, "matches_pk_columns_input!" ] } ], "update_matches_many": [ - 1848, + 1847, { "updates": [ - 1866, + 1865, "[matches_updates!]!" ] } ], "update_migration_hashes_hashes": [ - 1881, + 1880, { "_set": [ - 1886 + 1885 ], "where": [ - 1876, + 1875, "migration_hashes_hashes_bool_exp!" ] } ], "update_migration_hashes_hashes_by_pk": [ - 1873, + 1872, { "_set": [ - 1886 + 1885 ], "pk_columns": [ - 1884, + 1883, "migration_hashes_hashes_pk_columns_input!" ] } ], "update_migration_hashes_hashes_many": [ - 1881, + 1880, { "updates": [ - 1890, + 1889, "[migration_hashes_hashes_updates!]!" ] } ], "update_my_friends": [ - 1913, + 1912, { "_append": [ - 1899 + 1898 ], "_delete_at_path": [ - 1904 + 1903 ], "_delete_elem": [ - 1905 + 1904 ], "_delete_key": [ - 1906 + 1905 ], "_inc": [ - 1907 + 1906 ], "_prepend": [ - 1915 + 1914 ], "_set": [ - 1919 + 1918 ], "where": [ - 1903, + 1902, "my_friends_bool_exp!" ] } ], "update_my_friends_many": [ - 1913, + 1912, { "updates": [ - 1930, + 1929, "[my_friends_updates!]!" ] } ], "update_news_articles": [ - 1947, + 1946, { "_inc": [ - 1943 + 1942 ], "_set": [ - 1952 + 1951 ], "where": [ - 1941, + 1940, "news_articles_bool_exp!" ] } ], "update_news_articles_by_pk": [ - 1937, + 1936, { "_inc": [ - 1943 + 1942 ], "_set": [ - 1952 + 1951 ], "pk_columns": [ - 1950, + 1949, "news_articles_pk_columns_input!" ] } ], "update_news_articles_many": [ - 1947, + 1946, { "updates": [ - 1960, + 1959, "[news_articles_updates!]!" ] } ], "update_notifications": [ - 1987, + 1986, { "_append": [ - 1972 + 1971 ], "_delete_at_path": [ - 1978 + 1977 ], "_delete_elem": [ - 1979 + 1978 ], "_delete_key": [ - 1980 + 1979 ], "_inc": [ - 1981 + 1980 ], "_prepend": [ - 1991 + 1990 ], "_set": [ - 1995 + 1994 ], "where": [ - 1976, + 1975, "notifications_bool_exp!" ] } ], "update_notifications_by_pk": [ - 1964, + 1963, { "_append": [ - 1972 + 1971 ], "_delete_at_path": [ - 1978 + 1977 ], "_delete_elem": [ - 1979 + 1978 ], "_delete_key": [ - 1980 + 1979 ], "_inc": [ - 1981 + 1980 ], "_prepend": [ - 1991 + 1990 ], "_set": [ - 1995 + 1994 ], "pk_columns": [ - 1990, + 1989, "notifications_pk_columns_input!" ] } ], "update_notifications_many": [ - 1987, + 1986, { "updates": [ - 2007, + 2006, "[notifications_updates!]!" ] } ], "update_pending_match_import_players": [ - 2034, + 2033, { "_inc": [ - 2028 + 2027 ], "_set": [ - 2039 + 2038 ], "where": [ - 2026, + 2025, "pending_match_import_players_bool_exp!" ] } ], "update_pending_match_import_players_by_pk": [ - 2017, + 2016, { "_inc": [ - 2028 + 2027 ], "_set": [ - 2039 + 2038 ], "pk_columns": [ - 2037, + 2036, "pending_match_import_players_pk_columns_input!" ] } ], "update_pending_match_import_players_many": [ - 2034, + 2033, { "updates": [ - 2051, + 2050, "[pending_match_import_players_updates!]!" ] } ], "update_pending_match_imports": [ - 2068, + 2067, { "_inc": [ - 2064 + 2063 ], "_set": [ - 2074 + 2073 ], "where": [ - 2062, + 2061, "pending_match_imports_bool_exp!" ] } ], "update_pending_match_imports_by_pk": [ - 2058, + 2057, { "_inc": [ - 2064 + 2063 ], "_set": [ - 2074 + 2073 ], "pk_columns": [ - 2072, + 2071, "pending_match_imports_pk_columns_input!" ] } ], "update_pending_match_imports_many": [ - 2068, + 2067, { "updates": [ - 2082, + 2081, "[pending_match_imports_updates!]!" ] } ], "update_player_aim_stats_demo": [ - 2096, + 2095, { "_inc": [ - 2092 + 2091 ], "_set": [ - 2101 + 2100 ], "where": [ - 2090, + 2089, "player_aim_stats_demo_bool_exp!" ] } ], "update_player_aim_stats_demo_by_pk": [ - 2086, + 2085, { "_inc": [ - 2092 + 2091 ], "_set": [ - 2101 + 2100 ], "pk_columns": [ - 2099, + 2098, "player_aim_stats_demo_pk_columns_input!" ] } ], "update_player_aim_stats_demo_many": [ - 2096, + 2095, { "updates": [ - 2109, + 2108, "[player_aim_stats_demo_updates!]!" ] } ], "update_player_aim_weapon_stats": [ - 2130, + 2129, { "_inc": [ - 2124 + 2123 ], "_set": [ - 2135 + 2134 ], "where": [ - 2122, + 2121, "player_aim_weapon_stats_bool_exp!" ] } ], "update_player_aim_weapon_stats_by_pk": [ - 2113, + 2112, { "_inc": [ - 2124 + 2123 ], "_set": [ - 2135 + 2134 ], "pk_columns": [ - 2133, + 2132, "player_aim_weapon_stats_pk_columns_input!" ] } ], "update_player_aim_weapon_stats_many": [ - 2130, + 2129, { "updates": [ - 2147, + 2146, "[player_aim_weapon_stats_updates!]!" ] } ], "update_player_assists": [ - 2173, + 2172, { "_inc": [ - 2167 + 2166 ], "_set": [ - 2180 + 2179 ], "where": [ - 2165, + 2164, "player_assists_bool_exp!" ] } ], "update_player_assists_by_pk": [ - 2154, + 2153, { "_inc": [ - 2167 + 2166 ], "_set": [ - 2180 + 2179 ], "pk_columns": [ - 2176, + 2175, "player_assists_pk_columns_input!" ] } ], "update_player_assists_many": [ - 2173, + 2172, { "updates": [ - 2192, + 2191, "[player_assists_updates!]!" ] } ], "update_player_damages": [ - 2234, + 2233, { "_inc": [ - 2228 + 2227 ], "_set": [ - 2239 + 2238 ], "where": [ - 2226, + 2225, "player_damages_bool_exp!" ] } ], "update_player_damages_by_pk": [ - 2217, + 2216, { "_inc": [ - 2228 + 2227 ], "_set": [ - 2239 + 2238 ], "pk_columns": [ - 2237, + 2236, "player_damages_pk_columns_input!" ] } ], "update_player_damages_many": [ - 2234, + 2233, { "updates": [ - 2251, + 2250, "[player_damages_updates!]!" ] } ], "update_player_elo": [ - 2268, + 2267, { "_inc": [ - 2264 + 2263 ], "_set": [ - 2273 + 2272 ], "where": [ - 2262, + 2261, "player_elo_bool_exp!" ] } ], "update_player_elo_by_pk": [ - 2258, + 2257, { "_inc": [ - 2264 + 2263 ], "_set": [ - 2273 + 2272 ], "pk_columns": [ - 2271, + 2270, "player_elo_pk_columns_input!" ] } ], "update_player_elo_many": [ - 2268, + 2267, { "updates": [ - 2281, + 2280, "[player_elo_updates!]!" ] } ], "update_player_faceit_rank_history": [ - 2302, + 2301, { "_inc": [ - 2296 + 2295 ], "_set": [ - 2307 + 2306 ], "where": [ - 2294, + 2293, "player_faceit_rank_history_bool_exp!" ] } ], "update_player_faceit_rank_history_by_pk": [ - 2285, + 2284, { "_inc": [ - 2296 + 2295 ], "_set": [ - 2307 + 2306 ], "pk_columns": [ - 2305, + 2304, "player_faceit_rank_history_pk_columns_input!" ] } ], "update_player_faceit_rank_history_many": [ - 2302, + 2301, { "updates": [ - 2319, + 2318, "[player_faceit_rank_history_updates!]!" ] } ], "update_player_flashes": [ - 2345, + 2344, { "_inc": [ - 2339 + 2338 ], "_set": [ - 2352 + 2351 ], "where": [ - 2337, + 2336, "player_flashes_bool_exp!" ] } ], "update_player_flashes_by_pk": [ - 2326, + 2325, { "_inc": [ - 2339 + 2338 ], "_set": [ - 2352 + 2351 ], "pk_columns": [ - 2348, + 2347, "player_flashes_pk_columns_input!" ] } ], "update_player_flashes_many": [ - 2345, + 2344, { "updates": [ - 2364, + 2363, "[player_flashes_updates!]!" ] } ], "update_player_kills": [ - 2431, + 2430, { "_inc": [ - 2425 + 2424 ], "_set": [ - 2438 + 2437 ], "where": [ - 2382, + 2381, "player_kills_bool_exp!" ] } ], "update_player_kills_by_pk": [ - 2371, + 2370, { "_inc": [ - 2425 + 2424 ], "_set": [ - 2438 + 2437 ], "pk_columns": [ - 2434, + 2433, "player_kills_pk_columns_input!" ] } ], "update_player_kills_by_weapon": [ - 2400, + 2399, { "_inc": [ - 2394 + 2393 ], "_set": [ - 2405 + 2404 ], "where": [ - 2392, + 2391, "player_kills_by_weapon_bool_exp!" ] } ], "update_player_kills_by_weapon_by_pk": [ - 2383, + 2382, { "_inc": [ - 2394 + 2393 ], "_set": [ - 2405 + 2404 ], "pk_columns": [ - 2403, + 2402, "player_kills_by_weapon_pk_columns_input!" ] } ], "update_player_kills_by_weapon_many": [ - 2400, + 2399, { "updates": [ - 2417, + 2416, "[player_kills_by_weapon_updates!]!" ] } ], "update_player_kills_many": [ - 2431, + 2430, { "updates": [ - 2450, + 2449, "[player_kills_updates!]!" ] } ], "update_player_leaderboard_rank": [ - 2466, + 2465, { "_inc": [ - 2462 + 2461 ], "_set": [ - 2469 + 2468 ], "where": [ - 2461, + 2460, "player_leaderboard_rank_bool_exp!" ] } ], "update_player_leaderboard_rank_many": [ - 2466, + 2465, { "updates": [ - 2476, + 2475, "[player_leaderboard_rank_updates!]!" ] } ], "update_player_match_map_stats": [ - 2497, + 2496, { "_inc": [ - 2491 + 2490 ], "_set": [ - 2502 + 2501 ], "where": [ - 2489, + 2488, "player_match_map_stats_bool_exp!" ] } ], "update_player_match_map_stats_by_pk": [ - 2480, + 2479, { "_inc": [ - 2491 + 2490 ], "_set": [ - 2502 + 2501 ], "pk_columns": [ - 2500, + 2499, "player_match_map_stats_pk_columns_input!" ] } ], "update_player_match_map_stats_many": [ - 2497, + 2496, { "updates": [ - 2514, + 2513, "[player_match_map_stats_updates!]!" ] } ], "update_player_objectives": [ - 2589, + 2588, { "_inc": [ - 2583 + 2582 ], "_set": [ - 2594 + 2593 ], "where": [ - 2581, + 2580, "player_objectives_bool_exp!" ] } ], "update_player_objectives_by_pk": [ - 2572, + 2571, { "_inc": [ - 2583 + 2582 ], "_set": [ - 2594 + 2593 ], "pk_columns": [ - 2592, + 2591, "player_objectives_pk_columns_input!" ] } ], "update_player_objectives_many": [ - 2589, + 2588, { "updates": [ - 2606, + 2605, "[player_objectives_updates!]!" ] } ], "update_player_premier_rank_history": [ - 2648, + 2647, { "_inc": [ - 2642 + 2641 ], "_set": [ - 2653 + 2652 ], "where": [ - 2640, + 2639, "player_premier_rank_history_bool_exp!" ] } ], "update_player_premier_rank_history_by_pk": [ - 2631, + 2630, { "_inc": [ - 2642 + 2641 ], "_set": [ - 2653 + 2652 ], "pk_columns": [ - 2651, + 2650, "player_premier_rank_history_pk_columns_input!" ] } ], "update_player_premier_rank_history_many": [ - 2648, + 2647, { "updates": [ - 2665, + 2664, "[player_premier_rank_history_updates!]!" ] } ], "update_player_sanctions": [ - 2689, + 2688, { "_inc": [ - 2683 + 2682 ], "_set": [ - 2694 + 2693 ], "where": [ - 2681, + 2680, "player_sanctions_bool_exp!" ] } ], "update_player_sanctions_by_pk": [ - 2672, + 2671, { "_inc": [ - 2683 + 2682 ], "_set": [ - 2694 + 2693 ], "pk_columns": [ - 2692, + 2691, "player_sanctions_pk_columns_input!" ] } ], "update_player_sanctions_many": [ - 2689, + 2688, { "updates": [ - 2706, + 2705, "[player_sanctions_updates!]!" ] } ], "update_player_stats": [ - 2723, + 2722, { "_inc": [ - 2719 + 2718 ], "_set": [ - 2729 + 2728 ], "where": [ - 2717, + 2716, "player_stats_bool_exp!" ] } ], "update_player_stats_by_pk": [ - 2713, + 2712, { "_inc": [ - 2719 + 2718 ], "_set": [ - 2729 + 2728 ], "pk_columns": [ - 2727, + 2726, "player_stats_pk_columns_input!" ] } ], "update_player_stats_many": [ - 2723, + 2722, { "updates": [ - 2737, + 2736, "[player_stats_updates!]!" ] } ], "update_player_steam_bot_friend": [ - 2755, + 2754, { "_append": [ - 2744 + 2743 ], "_delete_at_path": [ - 2748 + 2747 ], "_delete_elem": [ - 2749 + 2748 ], "_delete_key": [ - 2750 + 2749 ], "_inc": [ - 2751 + 2750 ], "_prepend": [ - 2759 + 2758 ], "_set": [ - 2761 + 2760 ], "where": [ - 2746, + 2745, "player_steam_bot_friend_bool_exp!" ] } ], "update_player_steam_bot_friend_by_pk": [ - 2741, + 2740, { "_append": [ - 2744 + 2743 ], "_delete_at_path": [ - 2748 + 2747 ], "_delete_elem": [ - 2749 + 2748 ], "_delete_key": [ - 2750 + 2749 ], "_inc": [ - 2751 + 2750 ], "_prepend": [ - 2759 + 2758 ], "_set": [ - 2761 + 2760 ], "pk_columns": [ - 2758, + 2757, "player_steam_bot_friend_pk_columns_input!" ] } ], "update_player_steam_bot_friend_many": [ - 2755, + 2754, { "updates": [ - 2769, + 2768, "[player_steam_bot_friend_updates!]!" ] } ], "update_player_steam_match_auth": [ - 2783, + 2782, { "_inc": [ - 2779 + 2778 ], "_set": [ - 2788 + 2787 ], "where": [ - 2777, + 2776, "player_steam_match_auth_bool_exp!" ] } ], "update_player_steam_match_auth_by_pk": [ - 2773, + 2772, { "_inc": [ - 2779 + 2778 ], "_set": [ - 2788 + 2787 ], "pk_columns": [ - 2786, + 2785, "player_steam_match_auth_pk_columns_input!" ] } ], "update_player_steam_match_auth_many": [ - 2783, + 2782, { "updates": [ - 2796, + 2795, "[player_steam_match_auth_updates!]!" ] } ], "update_player_unused_utility": [ - 2817, + 2816, { "_inc": [ - 2811 + 2810 ], "_set": [ - 2822 + 2821 ], "where": [ - 2809, + 2808, "player_unused_utility_bool_exp!" ] } ], "update_player_unused_utility_by_pk": [ - 2800, + 2799, { "_inc": [ - 2811 + 2810 ], "_set": [ - 2822 + 2821 ], "pk_columns": [ - 2820, + 2819, "player_unused_utility_pk_columns_input!" ] } ], "update_player_unused_utility_many": [ - 2817, + 2816, { "updates": [ - 2834, + 2833, "[player_unused_utility_updates!]!" ] } ], "update_player_utility": [ - 2858, + 2857, { "_inc": [ - 2852 + 2851 ], "_set": [ - 2863 + 2862 ], "where": [ - 2850, + 2849, "player_utility_bool_exp!" ] } ], "update_player_utility_by_pk": [ - 2841, + 2840, { "_inc": [ - 2852 + 2851 ], "_set": [ - 2863 + 2862 ], "pk_columns": [ - 2861, + 2860, "player_utility_pk_columns_input!" ] } ], "update_player_utility_many": [ - 2858, + 2857, { "updates": [ - 2875, + 2874, "[player_utility_updates!]!" ] } ], "update_players": [ - 2925, + 2924, { "_inc": [ - 2921 + 2920 ], "_set": [ - 2931 + 2930 ], "where": [ - 2919, + 2918, "players_bool_exp!" ] } ], "update_players_by_pk": [ - 2915, + 2914, { "_inc": [ - 2921 + 2920 ], "_set": [ - 2931 + 2930 ], "pk_columns": [ - 2929, + 2928, "players_pk_columns_input!" ] } ], "update_players_many": [ - 2925, + 2924, { "updates": [ - 2939, + 2938, "[players_updates!]!" ] } ], "update_plugin_versions": [ - 2953, + 2952, { "_inc": [ - 2949 + 2948 ], "_set": [ - 2958 + 2957 ], "where": [ - 2947, + 2946, "plugin_versions_bool_exp!" ] } ], "update_plugin_versions_by_pk": [ - 2943, + 2942, { "_inc": [ - 2949 + 2948 ], "_set": [ - 2958 + 2957 ], "pk_columns": [ - 2956, + 2955, "plugin_versions_pk_columns_input!" ] } ], "update_plugin_versions_many": [ - 2953, + 2952, { "updates": [ - 2966, + 2965, "[plugin_versions_updates!]!" ] } ], "update_server_regions": [ - 2980, + 2979, { "_set": [ - 2986 + 2985 ], "where": [ - 2975, + 2974, "server_regions_bool_exp!" ] } ], "update_server_regions_by_pk": [ - 2971, + 2970, { "_set": [ - 2986 + 2985 ], "pk_columns": [ - 2984, + 2983, "server_regions_pk_columns_input!" ] } ], "update_server_regions_many": [ - 2980, + 2979, { "updates": [ - 2994, + 2993, "[server_regions_updates!]!" ] } ], "update_servers": [ - 3017, + 3016, { "_inc": [ - 3011 + 3010 ], "_set": [ - 3025 + 3024 ], "where": [ - 3009, + 3008, "servers_bool_exp!" ] } ], "update_servers_by_pk": [ - 2998, + 2997, { "_inc": [ - 3011 + 3010 ], "_set": [ - 3025 + 3024 ], "pk_columns": [ - 3021, + 3020, "servers_pk_columns_input!" ] } ], "update_servers_many": [ - 3017, + 3016, { "updates": [ - 3037, + 3036, "[servers_updates!]!" ] } ], "update_settings": [ - 3052, + 3051, { "_set": [ - 3057 + 3056 ], "where": [ - 3047, + 3046, "settings_bool_exp!" ] } ], "update_settings_by_pk": [ - 3044, + 3043, { "_set": [ - 3057 + 3056 ], "pk_columns": [ - 3055, + 3054, "settings_pk_columns_input!" ] } ], "update_settings_many": [ - 3052, + 3051, { "updates": [ - 3061, + 3060, "[settings_updates!]!" ] } ], "update_steam_account_claims": [ - 3076, + 3075, { "_set": [ - 3081 + 3080 ], "where": [ - 3069, + 3068, "steam_account_claims_bool_exp!" ] } ], "update_steam_account_claims_by_pk": [ - 3062, + 3061, { "_set": [ - 3081 + 3080 ], "pk_columns": [ - 3079, + 3078, "steam_account_claims_pk_columns_input!" ] } ], "update_steam_account_claims_many": [ - 3076, + 3075, { "updates": [ - 3085, + 3084, "[steam_account_claims_updates!]!" ] } ], "update_steam_accounts": [ - 3096, + 3095, { "_inc": [ - 3092 + 3091 ], "_set": [ - 3102 + 3101 ], "where": [ - 3090, + 3089, "steam_accounts_bool_exp!" ] } ], "update_steam_accounts_by_pk": [ - 3086, + 3085, { "_inc": [ - 3092 + 3091 ], "_set": [ - 3102 + 3101 ], "pk_columns": [ - 3100, + 3099, "steam_accounts_pk_columns_input!" ] } ], "update_steam_accounts_many": [ - 3096, + 3095, { "updates": [ - 3110, + 3109, "[steam_accounts_updates!]!" ] } ], "update_system_alerts": [ - 3124, + 3123, { "_inc": [ - 3120 + 3119 ], "_set": [ - 3129 + 3128 ], "where": [ - 3118, + 3117, "system_alerts_bool_exp!" ] } ], "update_system_alerts_by_pk": [ - 3114, + 3113, { "_inc": [ - 3120 + 3119 ], "_set": [ - 3129 + 3128 ], "pk_columns": [ - 3127, + 3126, "system_alerts_pk_columns_input!" ] } ], "update_system_alerts_many": [ - 3124, + 3123, { "updates": [ - 3137, + 3136, "[system_alerts_updates!]!" ] } ], "update_team_invites": [ - 3158, + 3157, { "_inc": [ - 3152 + 3151 ], "_set": [ - 3163 + 3162 ], "where": [ - 3150, + 3149, "team_invites_bool_exp!" ] } ], "update_team_invites_by_pk": [ - 3141, + 3140, { "_inc": [ - 3152 + 3151 ], "_set": [ - 3163 + 3162 ], "pk_columns": [ - 3161, + 3160, "team_invites_pk_columns_input!" ] } ], "update_team_invites_many": [ - 3158, + 3157, { "updates": [ - 3175, + 3174, "[team_invites_updates!]!" ] } ], "update_team_roster": [ - 3201, + 3200, { "_inc": [ - 3195 + 3194 ], "_set": [ - 3208 + 3207 ], "where": [ - 3193, + 3192, "team_roster_bool_exp!" ] } ], "update_team_roster_by_pk": [ - 3182, + 3181, { "_inc": [ - 3195 + 3194 ], "_set": [ - 3208 + 3207 ], "pk_columns": [ - 3204, + 3203, "team_roster_pk_columns_input!" ] } ], "update_team_roster_many": [ - 3201, + 3200, { "updates": [ - 3220, + 3219, "[team_roster_updates!]!" ] } ], "update_team_scrim_alerts": [ - 3237, + 3236, { "_inc": [ - 3233 + 3232 ], "_set": [ - 3242 + 3241 ], "where": [ - 3231, + 3230, "team_scrim_alerts_bool_exp!" ] } ], "update_team_scrim_alerts_by_pk": [ - 3227, + 3226, { "_inc": [ - 3233 + 3232 ], "_set": [ - 3242 + 3241 ], "pk_columns": [ - 3240, + 3239, "team_scrim_alerts_pk_columns_input!" ] } ], "update_team_scrim_alerts_many": [ - 3237, + 3236, { "updates": [ - 3250, + 3249, "[team_scrim_alerts_updates!]!" ] } ], "update_team_scrim_availability": [ - 3270, + 3269, { "_set": [ - 3277 + 3276 ], "where": [ - 3263, + 3262, "team_scrim_availability_bool_exp!" ] } ], "update_team_scrim_availability_by_pk": [ - 3254, + 3253, { "_set": [ - 3277 + 3276 ], "pk_columns": [ - 3273, + 3272, "team_scrim_availability_pk_columns_input!" ] } ], "update_team_scrim_availability_many": [ - 3270, + 3269, { "updates": [ - 3281, + 3280, "[team_scrim_availability_updates!]!" ] } ], "update_team_scrim_request_proposals": [ - 3299, + 3298, { "_inc": [ - 3293 + 3292 ], "_set": [ - 3304 + 3303 ], "where": [ - 3291, + 3290, "team_scrim_request_proposals_bool_exp!" ] } ], "update_team_scrim_request_proposals_by_pk": [ - 3282, + 3281, { "_inc": [ - 3293 + 3292 ], "_set": [ - 3304 + 3303 ], "pk_columns": [ - 3302, + 3301, "team_scrim_request_proposals_pk_columns_input!" ] } ], "update_team_scrim_request_proposals_many": [ - 3299, + 3298, { "updates": [ - 3316, + 3315, "[team_scrim_request_proposals_updates!]!" ] } ], "update_team_scrim_requests": [ - 3342, + 3341, { "_inc": [ - 3336 + 3335 ], "_set": [ - 3350 + 3349 ], "where": [ - 3334, + 3333, "team_scrim_requests_bool_exp!" ] } ], "update_team_scrim_requests_by_pk": [ - 3323, + 3322, { "_inc": [ - 3336 + 3335 ], "_set": [ - 3350 + 3349 ], "pk_columns": [ - 3346, + 3345, "team_scrim_requests_pk_columns_input!" ] } ], "update_team_scrim_requests_many": [ - 3342, + 3341, { "updates": [ - 3362, + 3361, "[team_scrim_requests_updates!]!" ] } ], "update_team_scrim_settings": [ - 3379, + 3378, { "_inc": [ - 3375 + 3374 ], "_set": [ - 3385 + 3384 ], "where": [ - 3373, + 3372, "team_scrim_settings_bool_exp!" ] } ], "update_team_scrim_settings_by_pk": [ - 3369, + 3368, { "_inc": [ - 3375 + 3374 ], "_set": [ - 3385 + 3384 ], "pk_columns": [ - 3383, + 3382, "team_scrim_settings_pk_columns_input!" ] } ], "update_team_scrim_settings_many": [ - 3379, + 3378, { "updates": [ - 3393, + 3392, "[team_scrim_settings_updates!]!" ] } ], "update_team_suggestions": [ - 3407, + 3406, { "_inc": [ - 3403 + 3402 ], "_set": [ - 3412 + 3411 ], "where": [ - 3401, + 3400, "team_suggestions_bool_exp!" ] } ], "update_team_suggestions_by_pk": [ - 3397, + 3396, { "_inc": [ - 3403 + 3402 ], "_set": [ - 3412 + 3411 ], "pk_columns": [ - 3410, + 3409, "team_suggestions_pk_columns_input!" ] } ], "update_team_suggestions_many": [ - 3407, + 3406, { "updates": [ - 3420, + 3419, "[team_suggestions_updates!]!" ] } ], "update_teams": [ - 3441, + 3440, { "_inc": [ - 3435 + 3434 ], "_set": [ - 3447 + 3446 ], "where": [ - 3433, + 3432, "teams_bool_exp!" ] } ], "update_teams_by_pk": [ - 3424, + 3423, { "_inc": [ - 3435 + 3434 ], "_set": [ - 3447 + 3446 ], "pk_columns": [ - 3445, + 3444, "teams_pk_columns_input!" ] } ], "update_teams_many": [ - 3441, + 3440, { "updates": [ - 3459, + 3458, "[teams_updates!]!" ] } ], "update_tournament_brackets": [ - 3488, + 3487, { "_inc": [ - 3482 + 3481 ], "_set": [ - 3496 + 3495 ], "where": [ - 3480, + 3479, "tournament_brackets_bool_exp!" ] } ], "update_tournament_brackets_by_pk": [ - 3469, + 3468, { "_inc": [ - 3482 + 3481 ], "_set": [ - 3496 + 3495 ], "pk_columns": [ - 3492, + 3491, "tournament_brackets_pk_columns_input!" ] } ], "update_tournament_brackets_many": [ - 3488, + 3487, { "updates": [ - 3508, + 3507, "[tournament_brackets_updates!]!" ] } ], "update_tournament_organizers": [ - 3532, + 3531, { "_inc": [ - 3526 + 3525 ], "_set": [ - 3537 + 3536 ], "where": [ - 3524, + 3523, "tournament_organizers_bool_exp!" ] } ], "update_tournament_organizers_by_pk": [ - 3515, + 3514, { "_inc": [ - 3526 + 3525 ], "_set": [ - 3537 + 3536 ], "pk_columns": [ - 3535, + 3534, "tournament_organizers_pk_columns_input!" ] } ], "update_tournament_organizers_many": [ - 3532, + 3531, { "updates": [ - 3549, + 3548, "[tournament_organizers_updates!]!" ] } ], "update_tournament_stages": [ - 3579, + 3578, { "_append": [ - 3564 + 3563 ], "_delete_at_path": [ - 3570 + 3569 ], "_delete_elem": [ - 3571 + 3570 ], "_delete_key": [ - 3572 + 3571 ], "_inc": [ - 3573 + 3572 ], "_prepend": [ - 3584 + 3583 ], "_set": [ - 3588 + 3587 ], "where": [ - 3568, + 3567, "tournament_stages_bool_exp!" ] } ], "update_tournament_stages_by_pk": [ - 3556, + 3555, { "_append": [ - 3564 + 3563 ], "_delete_at_path": [ - 3570 + 3569 ], "_delete_elem": [ - 3571 + 3570 ], "_delete_key": [ - 3572 + 3571 ], "_inc": [ - 3573 + 3572 ], "_prepend": [ - 3584 + 3583 ], "_set": [ - 3588 + 3587 ], "pk_columns": [ - 3583, + 3582, "tournament_stages_pk_columns_input!" ] } ], "update_tournament_stages_many": [ - 3579, + 3578, { "updates": [ - 3600, + 3599, "[tournament_stages_updates!]!" ] } ], "update_tournament_team_invites": [ - 3624, + 3623, { "_inc": [ - 3618 + 3617 ], "_set": [ - 3629 + 3628 ], "where": [ - 3616, + 3615, "tournament_team_invites_bool_exp!" ] } ], "update_tournament_team_invites_by_pk": [ - 3607, + 3606, { "_inc": [ - 3618 + 3617 ], "_set": [ - 3629 + 3628 ], "pk_columns": [ - 3627, + 3626, "tournament_team_invites_pk_columns_input!" ] } ], "update_tournament_team_invites_many": [ - 3624, + 3623, { "updates": [ - 3641, + 3640, "[tournament_team_invites_updates!]!" ] } ], "update_tournament_team_roster": [ - 3665, + 3664, { "_inc": [ - 3659 + 3658 ], "_set": [ - 3670 + 3669 ], "where": [ - 3657, + 3656, "tournament_team_roster_bool_exp!" ] } ], "update_tournament_team_roster_by_pk": [ - 3648, + 3647, { "_inc": [ - 3659 + 3658 ], "_set": [ - 3670 + 3669 ], "pk_columns": [ - 3668, + 3667, "tournament_team_roster_pk_columns_input!" ] } ], "update_tournament_team_roster_many": [ - 3665, + 3664, { "updates": [ - 3682, + 3681, "[tournament_team_roster_updates!]!" ] } ], "update_tournament_teams": [ - 3706, + 3705, { "_inc": [ - 3700 + 3699 ], "_set": [ - 3712 + 3711 ], "where": [ - 3698, + 3697, "tournament_teams_bool_exp!" ] } ], "update_tournament_teams_by_pk": [ - 3689, + 3688, { "_inc": [ - 3700 + 3699 ], "_set": [ - 3712 + 3711 ], "pk_columns": [ - 3710, + 3709, "tournament_teams_pk_columns_input!" ] } ], "update_tournament_teams_many": [ - 3706, + 3705, { "updates": [ - 3724, + 3723, "[tournament_teams_updates!]!" ] } ], "update_tournament_trophies": [ - 3750, + 3749, { "_inc": [ - 3744 + 3743 ], "_set": [ - 3757 + 3756 ], "where": [ - 3742, + 3741, "tournament_trophies_bool_exp!" ] } ], "update_tournament_trophies_by_pk": [ - 3731, + 3730, { "_inc": [ - 3744 + 3743 ], "_set": [ - 3757 + 3756 ], "pk_columns": [ - 3753, + 3752, "tournament_trophies_pk_columns_input!" ] } ], "update_tournament_trophies_many": [ - 3750, + 3749, { "updates": [ - 3769, + 3768, "[tournament_trophies_updates!]!" ] } ], "update_tournament_trophy_configs": [ - 3793, + 3792, { "_inc": [ - 3787 + 3786 ], "_set": [ - 3799 + 3798 ], "where": [ - 3785, + 3784, "tournament_trophy_configs_bool_exp!" ] } ], "update_tournament_trophy_configs_by_pk": [ - 3776, + 3775, { "_inc": [ - 3787 + 3786 ], "_set": [ - 3799 + 3798 ], "pk_columns": [ - 3797, + 3796, "tournament_trophy_configs_pk_columns_input!" ] } ], "update_tournament_trophy_configs_many": [ - 3793, + 3792, { "updates": [ - 3811, + 3810, "[tournament_trophy_configs_updates!]!" ] } ], "update_tournaments": [ - 3837, + 3836, { "_inc": [ - 3831 + 3830 ], "_set": [ - 3845 + 3844 ], "where": [ - 3829, + 3828, "tournaments_bool_exp!" ] } ], "update_tournaments_by_pk": [ - 3818, + 3817, { "_inc": [ - 3831 + 3830 ], "_set": [ - 3845 + 3844 ], "pk_columns": [ - 3841, + 3840, "tournaments_pk_columns_input!" ] } ], "update_tournaments_many": [ - 3837, + 3836, { "updates": [ - 3857, + 3856, "[tournaments_updates!]!" ] } ], "update_v_match_captains": [ - 3894, + 3893, { "_inc": [ - 3890 + 3889 ], "_set": [ - 3898 + 3897 ], "where": [ - 3889, + 3888, "v_match_captains_bool_exp!" ] } ], "update_v_match_captains_many": [ - 3894, + 3893, { "updates": [ - 3905, + 3904, "[v_match_captains_updates!]!" ] } ], "update_v_match_map_backup_rounds": [ - 4005, + 4004, { "_inc": [ - 4001 + 4000 ], "_set": [ - 4008 + 4007 ], "where": [ - 4000, + 3999, "v_match_map_backup_rounds_bool_exp!" ] } ], "update_v_match_map_backup_rounds_many": [ - 4005, + 4004, { "updates": [ - 4015, + 4014, "[v_match_map_backup_rounds_updates!]!" ] } ], "update_v_player_match_map_hltv": [ - 4227, + 4226, { "_inc": [ - 4221 + 4220 ], "_set": [ - 4230 + 4229 ], "where": [ - 4220, + 4219, "v_player_match_map_hltv_bool_exp!" ] } ], "update_v_player_match_map_hltv_many": [ - 4227, + 4226, { "updates": [ - 4241, + 4240, "[v_player_match_map_hltv_updates!]!" ] } ], "update_v_pool_maps": [ - 4386, + 4385, { "_set": [ - 4391 + 4390 ], "where": [ - 4380, + 4379, "v_pool_maps_bool_exp!" ] } ], "update_v_pool_maps_many": [ - 4386, + 4385, { "updates": [ - 4394, + 4393, "[v_pool_maps_updates!]!" ] } ], "update_v_team_stage_results": [ - 4480, + 4479, { "_inc": [ - 4474 + 4473 ], "_set": [ - 4494 + 4493 ], "where": [ - 4472, + 4471, "v_team_stage_results_bool_exp!" ] } ], "update_v_team_stage_results_by_pk": [ - 4453, + 4452, { "_inc": [ - 4474 + 4473 ], "_set": [ - 4494 + 4493 ], "pk_columns": [ - 4484, + 4483, "v_team_stage_results_pk_columns_input!" ] } ], "update_v_team_stage_results_many": [ - 4480, + 4479, { "updates": [ - 4506, + 4505, "[v_team_stage_results_updates!]!" ] } ], "validateGamedata": [ - 78, + 77, { "game_server_node_id": [ - 3864, + 3863, "uuid!" ] } ], "watchDemo": [ - 87, + 86, { "match_map_demo_id": [ - 3864 + 3863 ], "match_map_id": [ - 3864, + 3863, "uuid!" ] } ], "writeServerFile": [ - 78, + 77, { "content": [ - 75, + 74, "String!" ], "file_path": [ - 75, + 74, "String!" ], "node_id": [ - 75, + 74, "String!" ], "server_id": [ - 75 + 74 ] } ], "__typename": [ - 75 + 74 ] }, "Subscription": { "_map_pool": [ - 88, + 87, { "distinct_on": [ - 100, + 99, "[_map_pool_select_column!]" ], "limit": [ @@ -129356,19 +130253,19 @@ export default { 38 ], "order_by": [ - 98, + 97, "[_map_pool_order_by!]" ], "where": [ - 91 + 90 ] } ], "_map_pool_aggregate": [ - 89, + 88, { "distinct_on": [ - 100, + 99, "[_map_pool_select_column!]" ], "limit": [ @@ -129378,48 +130275,48 @@ export default { 38 ], "order_by": [ - 98, + 97, "[_map_pool_order_by!]" ], "where": [ - 91 + 90 ] } ], "_map_pool_by_pk": [ - 88, + 87, { "map_id": [ - 3864, + 3863, "uuid!" ], "map_pool_id": [ - 3864, + 3863, "uuid!" ] } ], "_map_pool_stream": [ - 88, + 87, { "batch_size": [ 38, "Int!" ], "cursor": [ - 102, + 101, "[_map_pool_stream_cursor_input]!" ], "where": [ - 91 + 90 ] } ], "abandoned_matches": [ - 106, + 105, { "distinct_on": [ - 127, + 126, "[abandoned_matches_select_column!]" ], "limit": [ @@ -129429,19 +130326,19 @@ export default { 38 ], "order_by": [ - 125, + 124, "[abandoned_matches_order_by!]" ], "where": [ - 115 + 114 ] } ], "abandoned_matches_aggregate": [ - 107, + 106, { "distinct_on": [ - 127, + 126, "[abandoned_matches_select_column!]" ], "limit": [ @@ -129451,44 +130348,44 @@ export default { 38 ], "order_by": [ - 125, + 124, "[abandoned_matches_order_by!]" ], "where": [ - 115 + 114 ] } ], "abandoned_matches_by_pk": [ - 106, + 105, { "id": [ - 3864, + 3863, "uuid!" ] } ], "abandoned_matches_stream": [ - 106, + 105, { "batch_size": [ 38, "Int!" ], "cursor": [ - 135, + 134, "[abandoned_matches_stream_cursor_input]!" ], "where": [ - 115 + 114 ] } ], "api_keys": [ - 147, + 146, { "distinct_on": [ - 161, + 160, "[api_keys_select_column!]" ], "limit": [ @@ -129498,19 +130395,19 @@ export default { 38 ], "order_by": [ - 159, + 158, "[api_keys_order_by!]" ], "where": [ - 151 + 150 ] } ], "api_keys_aggregate": [ - 148, + 147, { "distinct_on": [ - 161, + 160, "[api_keys_select_column!]" ], "limit": [ @@ -129520,44 +130417,44 @@ export default { 38 ], "order_by": [ - 159, + 158, "[api_keys_order_by!]" ], "where": [ - 151 + 150 ] } ], "api_keys_by_pk": [ - 147, + 146, { "id": [ - 3864, + 3863, "uuid!" ] } ], "api_keys_stream": [ - 147, + 146, { "batch_size": [ 38, "Int!" ], "cursor": [ - 166, + 165, "[api_keys_stream_cursor_input]!" ], "where": [ - 151 + 150 ] } ], "clip_render_jobs": [ - 179, + 178, { "distinct_on": [ - 207, + 206, "[clip_render_jobs_select_column!]" ], "limit": [ @@ -129567,19 +130464,19 @@ export default { 38 ], "order_by": [ - 204, + 203, "[clip_render_jobs_order_by!]" ], "where": [ - 191 + 190 ] } ], "clip_render_jobs_aggregate": [ - 180, + 179, { "distinct_on": [ - 207, + 206, "[clip_render_jobs_select_column!]" ], "limit": [ @@ -129589,44 +130486,44 @@ export default { 38 ], "order_by": [ - 204, + 203, "[clip_render_jobs_order_by!]" ], "where": [ - 191 + 190 ] } ], "clip_render_jobs_by_pk": [ - 179, + 178, { "id": [ - 3864, + 3863, "uuid!" ] } ], "clip_render_jobs_stream": [ - 179, + 178, { "batch_size": [ 38, "Int!" ], "cursor": [ - 217, + 216, "[clip_render_jobs_stream_cursor_input]!" ], "where": [ - 191 + 190 ] } ], "db_backups": [ - 230, + 229, { "distinct_on": [ - 244, + 243, "[db_backups_select_column!]" ], "limit": [ @@ -129636,19 +130533,19 @@ export default { 38 ], "order_by": [ - 242, + 241, "[db_backups_order_by!]" ], "where": [ - 234 + 233 ] } ], "db_backups_aggregate": [ - 231, + 230, { "distinct_on": [ - 244, + 243, "[db_backups_select_column!]" ], "limit": [ @@ -129658,44 +130555,44 @@ export default { 38 ], "order_by": [ - 242, + 241, "[db_backups_order_by!]" ], "where": [ - 234 + 233 ] } ], "db_backups_by_pk": [ - 230, + 229, { "id": [ - 3864, + 3863, "uuid!" ] } ], "db_backups_stream": [ - 230, + 229, { "batch_size": [ 38, "Int!" ], "cursor": [ - 249, + 248, "[db_backups_stream_cursor_input]!" ], "where": [ - 234 + 233 ] } ], "draft_game_picks": [ - 257, + 256, { "distinct_on": [ - 280, + 279, "[draft_game_picks_select_column!]" ], "limit": [ @@ -129705,19 +130602,19 @@ export default { 38 ], "order_by": [ - 278, + 277, "[draft_game_picks_order_by!]" ], "where": [ - 268 + 267 ] } ], "draft_game_picks_aggregate": [ - 258, + 257, { "distinct_on": [ - 280, + 279, "[draft_game_picks_select_column!]" ], "limit": [ @@ -129727,44 +130624,44 @@ export default { 38 ], "order_by": [ - 278, + 277, "[draft_game_picks_order_by!]" ], "where": [ - 268 + 267 ] } ], "draft_game_picks_by_pk": [ - 257, + 256, { "id": [ - 3864, + 3863, "uuid!" ] } ], "draft_game_picks_stream": [ - 257, + 256, { "batch_size": [ 38, "Int!" ], "cursor": [ - 290, + 289, "[draft_game_picks_stream_cursor_input]!" ], "where": [ - 268 + 267 ] } ], "draft_game_players": [ - 302, + 301, { "distinct_on": [ - 325, + 324, "[draft_game_players_select_column!]" ], "limit": [ @@ -129774,19 +130671,19 @@ export default { 38 ], "order_by": [ - 323, + 322, "[draft_game_players_order_by!]" ], "where": [ - 313 + 312 ] } ], "draft_game_players_aggregate": [ - 303, + 302, { "distinct_on": [ - 325, + 324, "[draft_game_players_select_column!]" ], "limit": [ @@ -129796,48 +130693,48 @@ export default { 38 ], "order_by": [ - 323, + 322, "[draft_game_players_order_by!]" ], "where": [ - 313 + 312 ] } ], "draft_game_players_by_pk": [ - 302, + 301, { "draft_game_id": [ - 3864, + 3863, "uuid!" ], "steam_id": [ - 174, + 173, "bigint!" ] } ], "draft_game_players_stream": [ - 302, + 301, { "batch_size": [ 38, "Int!" ], "cursor": [ - 335, + 334, "[draft_game_players_stream_cursor_input]!" ], "where": [ - 313 + 312 ] } ], "draft_games": [ - 347, + 346, { "distinct_on": [ - 371, + 370, "[draft_games_select_column!]" ], "limit": [ @@ -129847,19 +130744,19 @@ export default { 38 ], "order_by": [ - 369, + 368, "[draft_games_order_by!]" ], "where": [ - 358 + 357 ] } ], "draft_games_aggregate": [ - 348, + 347, { "distinct_on": [ - 371, + 370, "[draft_games_select_column!]" ], "limit": [ @@ -129869,44 +130766,44 @@ export default { 38 ], "order_by": [ - 369, + 368, "[draft_games_order_by!]" ], "where": [ - 358 + 357 ] } ], "draft_games_by_pk": [ - 347, + 346, { "id": [ - 3864, + 3863, "uuid!" ] } ], "draft_games_stream": [ - 347, + 346, { "batch_size": [ 38, "Int!" ], "cursor": [ - 381, + 380, "[draft_games_stream_cursor_input]!" ], "where": [ - 358 + 357 ] } ], "e_check_in_settings": [ - 393, + 392, { "distinct_on": [ - 407, + 406, "[e_check_in_settings_select_column!]" ], "limit": [ @@ -129916,19 +130813,19 @@ export default { 38 ], "order_by": [ - 405, + 404, "[e_check_in_settings_order_by!]" ], "where": [ - 396 + 395 ] } ], "e_check_in_settings_aggregate": [ - 394, + 393, { "distinct_on": [ - 407, + 406, "[e_check_in_settings_select_column!]" ], "limit": [ @@ -129938,44 +130835,44 @@ export default { 38 ], "order_by": [ - 405, + 404, "[e_check_in_settings_order_by!]" ], "where": [ - 396 + 395 ] } ], "e_check_in_settings_by_pk": [ - 393, + 392, { "value": [ - 75, + 74, "String!" ] } ], "e_check_in_settings_stream": [ - 393, + 392, { "batch_size": [ 38, "Int!" ], "cursor": [ - 409, + 408, "[e_check_in_settings_stream_cursor_input]!" ], "where": [ - 396 + 395 ] } ], "e_draft_game_captain_selection": [ - 413, + 412, { "distinct_on": [ - 428, + 427, "[e_draft_game_captain_selection_select_column!]" ], "limit": [ @@ -129985,19 +130882,19 @@ export default { 38 ], "order_by": [ - 426, + 425, "[e_draft_game_captain_selection_order_by!]" ], "where": [ - 416 + 415 ] } ], "e_draft_game_captain_selection_aggregate": [ - 414, + 413, { "distinct_on": [ - 428, + 427, "[e_draft_game_captain_selection_select_column!]" ], "limit": [ @@ -130007,44 +130904,44 @@ export default { 38 ], "order_by": [ - 426, + 425, "[e_draft_game_captain_selection_order_by!]" ], "where": [ - 416 + 415 ] } ], "e_draft_game_captain_selection_by_pk": [ - 413, + 412, { "value": [ - 75, + 74, "String!" ] } ], "e_draft_game_captain_selection_stream": [ - 413, + 412, { "batch_size": [ 38, "Int!" ], "cursor": [ - 430, + 429, "[e_draft_game_captain_selection_stream_cursor_input]!" ], "where": [ - 416 + 415 ] } ], "e_draft_game_draft_order": [ - 434, + 433, { "distinct_on": [ - 449, + 448, "[e_draft_game_draft_order_select_column!]" ], "limit": [ @@ -130054,19 +130951,19 @@ export default { 38 ], "order_by": [ - 447, + 446, "[e_draft_game_draft_order_order_by!]" ], "where": [ - 437 + 436 ] } ], "e_draft_game_draft_order_aggregate": [ - 435, + 434, { "distinct_on": [ - 449, + 448, "[e_draft_game_draft_order_select_column!]" ], "limit": [ @@ -130076,44 +130973,44 @@ export default { 38 ], "order_by": [ - 447, + 446, "[e_draft_game_draft_order_order_by!]" ], "where": [ - 437 + 436 ] } ], "e_draft_game_draft_order_by_pk": [ - 434, + 433, { "value": [ - 75, + 74, "String!" ] } ], "e_draft_game_draft_order_stream": [ - 434, + 433, { "batch_size": [ 38, "Int!" ], "cursor": [ - 451, + 450, "[e_draft_game_draft_order_stream_cursor_input]!" ], "where": [ - 437 + 436 ] } ], "e_draft_game_mode": [ - 455, + 454, { "distinct_on": [ - 470, + 469, "[e_draft_game_mode_select_column!]" ], "limit": [ @@ -130123,19 +131020,19 @@ export default { 38 ], "order_by": [ - 468, + 467, "[e_draft_game_mode_order_by!]" ], "where": [ - 458 + 457 ] } ], "e_draft_game_mode_aggregate": [ - 456, + 455, { "distinct_on": [ - 470, + 469, "[e_draft_game_mode_select_column!]" ], "limit": [ @@ -130145,44 +131042,44 @@ export default { 38 ], "order_by": [ - 468, + 467, "[e_draft_game_mode_order_by!]" ], "where": [ - 458 + 457 ] } ], "e_draft_game_mode_by_pk": [ - 455, + 454, { "value": [ - 75, + 74, "String!" ] } ], "e_draft_game_mode_stream": [ - 455, + 454, { "batch_size": [ 38, "Int!" ], "cursor": [ - 472, + 471, "[e_draft_game_mode_stream_cursor_input]!" ], "where": [ - 458 + 457 ] } ], "e_draft_game_player_status": [ - 476, + 475, { "distinct_on": [ - 491, + 490, "[e_draft_game_player_status_select_column!]" ], "limit": [ @@ -130192,19 +131089,19 @@ export default { 38 ], "order_by": [ - 489, + 488, "[e_draft_game_player_status_order_by!]" ], "where": [ - 479 + 478 ] } ], "e_draft_game_player_status_aggregate": [ - 477, + 476, { "distinct_on": [ - 491, + 490, "[e_draft_game_player_status_select_column!]" ], "limit": [ @@ -130214,44 +131111,44 @@ export default { 38 ], "order_by": [ - 489, + 488, "[e_draft_game_player_status_order_by!]" ], "where": [ - 479 + 478 ] } ], "e_draft_game_player_status_by_pk": [ - 476, + 475, { "value": [ - 75, + 74, "String!" ] } ], "e_draft_game_player_status_stream": [ - 476, + 475, { "batch_size": [ 38, "Int!" ], "cursor": [ - 493, + 492, "[e_draft_game_player_status_stream_cursor_input]!" ], "where": [ - 479 + 478 ] } ], "e_draft_game_status": [ - 497, + 496, { "distinct_on": [ - 512, + 511, "[e_draft_game_status_select_column!]" ], "limit": [ @@ -130261,19 +131158,19 @@ export default { 38 ], "order_by": [ - 510, + 509, "[e_draft_game_status_order_by!]" ], "where": [ - 500 + 499 ] } ], "e_draft_game_status_aggregate": [ - 498, + 497, { "distinct_on": [ - 512, + 511, "[e_draft_game_status_select_column!]" ], "limit": [ @@ -130283,44 +131180,44 @@ export default { 38 ], "order_by": [ - 510, + 509, "[e_draft_game_status_order_by!]" ], "where": [ - 500 + 499 ] } ], "e_draft_game_status_by_pk": [ - 497, + 496, { "value": [ - 75, + 74, "String!" ] } ], "e_draft_game_status_stream": [ - 497, + 496, { "batch_size": [ 38, "Int!" ], "cursor": [ - 514, + 513, "[e_draft_game_status_stream_cursor_input]!" ], "where": [ - 500 + 499 ] } ], "e_friend_status": [ - 518, + 517, { "distinct_on": [ - 533, + 532, "[e_friend_status_select_column!]" ], "limit": [ @@ -130330,19 +131227,19 @@ export default { 38 ], "order_by": [ - 531, + 530, "[e_friend_status_order_by!]" ], "where": [ - 521 + 520 ] } ], "e_friend_status_aggregate": [ - 519, + 518, { "distinct_on": [ - 533, + 532, "[e_friend_status_select_column!]" ], "limit": [ @@ -130352,44 +131249,44 @@ export default { 38 ], "order_by": [ - 531, + 530, "[e_friend_status_order_by!]" ], "where": [ - 521 + 520 ] } ], "e_friend_status_by_pk": [ - 518, + 517, { "value": [ - 75, + 74, "String!" ] } ], "e_friend_status_stream": [ - 518, + 517, { "batch_size": [ 38, "Int!" ], "cursor": [ - 535, + 534, "[e_friend_status_stream_cursor_input]!" ], "where": [ - 521 + 520 ] } ], "e_game_cfg_types": [ - 539, + 538, { "distinct_on": [ - 553, + 552, "[e_game_cfg_types_select_column!]" ], "limit": [ @@ -130399,19 +131296,19 @@ export default { 38 ], "order_by": [ - 551, + 550, "[e_game_cfg_types_order_by!]" ], "where": [ - 542 + 541 ] } ], "e_game_cfg_types_aggregate": [ - 540, + 539, { "distinct_on": [ - 553, + 552, "[e_game_cfg_types_select_column!]" ], "limit": [ @@ -130421,44 +131318,44 @@ export default { 38 ], "order_by": [ - 551, + 550, "[e_game_cfg_types_order_by!]" ], "where": [ - 542 + 541 ] } ], "e_game_cfg_types_by_pk": [ - 539, + 538, { "value": [ - 75, + 74, "String!" ] } ], "e_game_cfg_types_stream": [ - 539, + 538, { "batch_size": [ 38, "Int!" ], "cursor": [ - 555, + 554, "[e_game_cfg_types_stream_cursor_input]!" ], "where": [ - 542 + 541 ] } ], "e_game_server_node_statuses": [ - 559, + 558, { "distinct_on": [ - 574, + 573, "[e_game_server_node_statuses_select_column!]" ], "limit": [ @@ -130468,19 +131365,19 @@ export default { 38 ], "order_by": [ - 572, + 571, "[e_game_server_node_statuses_order_by!]" ], "where": [ - 562 + 561 ] } ], "e_game_server_node_statuses_aggregate": [ - 560, + 559, { "distinct_on": [ - 574, + 573, "[e_game_server_node_statuses_select_column!]" ], "limit": [ @@ -130490,44 +131387,44 @@ export default { 38 ], "order_by": [ - 572, + 571, "[e_game_server_node_statuses_order_by!]" ], "where": [ - 562 + 561 ] } ], "e_game_server_node_statuses_by_pk": [ - 559, + 558, { "value": [ - 75, + 74, "String!" ] } ], "e_game_server_node_statuses_stream": [ - 559, + 558, { "batch_size": [ 38, "Int!" ], "cursor": [ - 576, + 575, "[e_game_server_node_statuses_stream_cursor_input]!" ], "where": [ - 562 + 561 ] } ], "e_lobby_access": [ - 580, + 579, { "distinct_on": [ - 595, + 594, "[e_lobby_access_select_column!]" ], "limit": [ @@ -130537,19 +131434,19 @@ export default { 38 ], "order_by": [ - 593, + 592, "[e_lobby_access_order_by!]" ], "where": [ - 583 + 582 ] } ], "e_lobby_access_aggregate": [ - 581, + 580, { "distinct_on": [ - 595, + 594, "[e_lobby_access_select_column!]" ], "limit": [ @@ -130559,44 +131456,44 @@ export default { 38 ], "order_by": [ - 593, + 592, "[e_lobby_access_order_by!]" ], "where": [ - 583 + 582 ] } ], "e_lobby_access_by_pk": [ - 580, + 579, { "value": [ - 75, + 74, "String!" ] } ], "e_lobby_access_stream": [ - 580, + 579, { "batch_size": [ 38, "Int!" ], "cursor": [ - 597, + 596, "[e_lobby_access_stream_cursor_input]!" ], "where": [ - 583 + 582 ] } ], "e_lobby_player_status": [ - 601, + 600, { "distinct_on": [ - 615, + 614, "[e_lobby_player_status_select_column!]" ], "limit": [ @@ -130606,19 +131503,19 @@ export default { 38 ], "order_by": [ - 613, + 612, "[e_lobby_player_status_order_by!]" ], "where": [ - 604 + 603 ] } ], "e_lobby_player_status_aggregate": [ - 602, + 601, { "distinct_on": [ - 615, + 614, "[e_lobby_player_status_select_column!]" ], "limit": [ @@ -130628,44 +131525,44 @@ export default { 38 ], "order_by": [ - 613, + 612, "[e_lobby_player_status_order_by!]" ], "where": [ - 604 + 603 ] } ], "e_lobby_player_status_by_pk": [ - 601, + 600, { "value": [ - 75, + 74, "String!" ] } ], "e_lobby_player_status_stream": [ - 601, + 600, { "batch_size": [ 38, "Int!" ], "cursor": [ - 617, + 616, "[e_lobby_player_status_stream_cursor_input]!" ], "where": [ - 604 + 603 ] } ], "e_map_pool_types": [ - 621, + 620, { "distinct_on": [ - 636, + 635, "[e_map_pool_types_select_column!]" ], "limit": [ @@ -130675,19 +131572,19 @@ export default { 38 ], "order_by": [ - 634, + 633, "[e_map_pool_types_order_by!]" ], "where": [ - 624 + 623 ] } ], "e_map_pool_types_aggregate": [ - 622, + 621, { "distinct_on": [ - 636, + 635, "[e_map_pool_types_select_column!]" ], "limit": [ @@ -130697,44 +131594,44 @@ export default { 38 ], "order_by": [ - 634, + 633, "[e_map_pool_types_order_by!]" ], "where": [ - 624 + 623 ] } ], "e_map_pool_types_by_pk": [ - 621, + 620, { "value": [ - 75, + 74, "String!" ] } ], "e_map_pool_types_stream": [ - 621, + 620, { "batch_size": [ 38, "Int!" ], "cursor": [ - 638, + 637, "[e_map_pool_types_stream_cursor_input]!" ], "where": [ - 624 + 623 ] } ], "e_match_clip_visibility": [ - 642, + 641, { "distinct_on": [ - 656, + 655, "[e_match_clip_visibility_select_column!]" ], "limit": [ @@ -130744,19 +131641,19 @@ export default { 38 ], "order_by": [ - 654, + 653, "[e_match_clip_visibility_order_by!]" ], "where": [ - 645 + 644 ] } ], "e_match_clip_visibility_aggregate": [ - 643, + 642, { "distinct_on": [ - 656, + 655, "[e_match_clip_visibility_select_column!]" ], "limit": [ @@ -130766,44 +131663,44 @@ export default { 38 ], "order_by": [ - 654, + 653, "[e_match_clip_visibility_order_by!]" ], "where": [ - 645 + 644 ] } ], "e_match_clip_visibility_by_pk": [ - 642, + 641, { "value": [ - 75, + 74, "String!" ] } ], "e_match_clip_visibility_stream": [ - 642, + 641, { "batch_size": [ 38, "Int!" ], "cursor": [ - 658, + 657, "[e_match_clip_visibility_stream_cursor_input]!" ], "where": [ - 645 + 644 ] } ], "e_match_map_status": [ - 662, + 661, { "distinct_on": [ - 677, + 676, "[e_match_map_status_select_column!]" ], "limit": [ @@ -130813,19 +131710,19 @@ export default { 38 ], "order_by": [ - 675, + 674, "[e_match_map_status_order_by!]" ], "where": [ - 665 + 664 ] } ], "e_match_map_status_aggregate": [ - 663, + 662, { "distinct_on": [ - 677, + 676, "[e_match_map_status_select_column!]" ], "limit": [ @@ -130835,44 +131732,44 @@ export default { 38 ], "order_by": [ - 675, + 674, "[e_match_map_status_order_by!]" ], "where": [ - 665 + 664 ] } ], "e_match_map_status_by_pk": [ - 662, + 661, { "value": [ - 75, + 74, "String!" ] } ], "e_match_map_status_stream": [ - 662, + 661, { "batch_size": [ 38, "Int!" ], "cursor": [ - 679, + 678, "[e_match_map_status_stream_cursor_input]!" ], "where": [ - 665 + 664 ] } ], "e_match_mode": [ - 683, + 682, { "distinct_on": [ - 697, + 696, "[e_match_mode_select_column!]" ], "limit": [ @@ -130882,19 +131779,19 @@ export default { 38 ], "order_by": [ - 695, + 694, "[e_match_mode_order_by!]" ], "where": [ - 686 + 685 ] } ], "e_match_mode_aggregate": [ - 684, + 683, { "distinct_on": [ - 697, + 696, "[e_match_mode_select_column!]" ], "limit": [ @@ -130904,44 +131801,44 @@ export default { 38 ], "order_by": [ - 695, + 694, "[e_match_mode_order_by!]" ], "where": [ - 686 + 685 ] } ], "e_match_mode_by_pk": [ - 683, + 682, { "value": [ - 75, + 74, "String!" ] } ], "e_match_mode_stream": [ - 683, + 682, { "batch_size": [ 38, "Int!" ], "cursor": [ - 699, + 698, "[e_match_mode_stream_cursor_input]!" ], "where": [ - 686 + 685 ] } ], "e_match_status": [ - 703, + 702, { "distinct_on": [ - 718, + 717, "[e_match_status_select_column!]" ], "limit": [ @@ -130951,19 +131848,19 @@ export default { 38 ], "order_by": [ - 716, + 715, "[e_match_status_order_by!]" ], "where": [ - 706 + 705 ] } ], "e_match_status_aggregate": [ - 704, + 703, { "distinct_on": [ - 718, + 717, "[e_match_status_select_column!]" ], "limit": [ @@ -130973,44 +131870,44 @@ export default { 38 ], "order_by": [ - 716, + 715, "[e_match_status_order_by!]" ], "where": [ - 706 + 705 ] } ], "e_match_status_by_pk": [ - 703, + 702, { "value": [ - 75, + 74, "String!" ] } ], "e_match_status_stream": [ - 703, + 702, { "batch_size": [ 38, "Int!" ], "cursor": [ - 720, + 719, "[e_match_status_stream_cursor_input]!" ], "where": [ - 706 + 705 ] } ], "e_match_types": [ - 724, + 723, { "distinct_on": [ - 739, + 738, "[e_match_types_select_column!]" ], "limit": [ @@ -131020,19 +131917,19 @@ export default { 38 ], "order_by": [ - 737, + 736, "[e_match_types_order_by!]" ], "where": [ - 727 + 726 ] } ], "e_match_types_aggregate": [ - 725, + 724, { "distinct_on": [ - 739, + 738, "[e_match_types_select_column!]" ], "limit": [ @@ -131042,44 +131939,44 @@ export default { 38 ], "order_by": [ - 737, + 736, "[e_match_types_order_by!]" ], "where": [ - 727 + 726 ] } ], "e_match_types_by_pk": [ - 724, + 723, { "value": [ - 75, + 74, "String!" ] } ], "e_match_types_stream": [ - 724, + 723, { "batch_size": [ 38, "Int!" ], "cursor": [ - 741, + 740, "[e_match_types_stream_cursor_input]!" ], "where": [ - 727 + 726 ] } ], "e_notification_types": [ - 745, + 744, { "distinct_on": [ - 759, + 758, "[e_notification_types_select_column!]" ], "limit": [ @@ -131089,19 +131986,19 @@ export default { 38 ], "order_by": [ - 757, + 756, "[e_notification_types_order_by!]" ], "where": [ - 748 + 747 ] } ], "e_notification_types_aggregate": [ - 746, + 745, { "distinct_on": [ - 759, + 758, "[e_notification_types_select_column!]" ], "limit": [ @@ -131111,44 +132008,44 @@ export default { 38 ], "order_by": [ - 757, + 756, "[e_notification_types_order_by!]" ], "where": [ - 748 + 747 ] } ], "e_notification_types_by_pk": [ - 745, + 744, { "value": [ - 75, + 74, "String!" ] } ], "e_notification_types_stream": [ - 745, + 744, { "batch_size": [ 38, "Int!" ], "cursor": [ - 761, + 760, "[e_notification_types_stream_cursor_input]!" ], "where": [ - 748 + 747 ] } ], "e_objective_types": [ - 765, + 764, { "distinct_on": [ - 779, + 778, "[e_objective_types_select_column!]" ], "limit": [ @@ -131158,19 +132055,19 @@ export default { 38 ], "order_by": [ - 777, + 776, "[e_objective_types_order_by!]" ], "where": [ - 768 + 767 ] } ], "e_objective_types_aggregate": [ - 766, + 765, { "distinct_on": [ - 779, + 778, "[e_objective_types_select_column!]" ], "limit": [ @@ -131180,44 +132077,44 @@ export default { 38 ], "order_by": [ - 777, + 776, "[e_objective_types_order_by!]" ], "where": [ - 768 + 767 ] } ], "e_objective_types_by_pk": [ - 765, + 764, { "value": [ - 75, + 74, "String!" ] } ], "e_objective_types_stream": [ - 765, + 764, { "batch_size": [ 38, "Int!" ], "cursor": [ - 781, + 780, "[e_objective_types_stream_cursor_input]!" ], "where": [ - 768 + 767 ] } ], "e_player_roles": [ - 785, + 784, { "distinct_on": [ - 799, + 798, "[e_player_roles_select_column!]" ], "limit": [ @@ -131227,19 +132124,19 @@ export default { 38 ], "order_by": [ - 797, + 796, "[e_player_roles_order_by!]" ], "where": [ - 788 + 787 ] } ], "e_player_roles_aggregate": [ - 786, + 785, { "distinct_on": [ - 799, + 798, "[e_player_roles_select_column!]" ], "limit": [ @@ -131249,44 +132146,44 @@ export default { 38 ], "order_by": [ - 797, + 796, "[e_player_roles_order_by!]" ], "where": [ - 788 + 787 ] } ], "e_player_roles_by_pk": [ - 785, + 784, { "value": [ - 75, + 74, "String!" ] } ], "e_player_roles_stream": [ - 785, + 784, { "batch_size": [ 38, "Int!" ], "cursor": [ - 801, + 800, "[e_player_roles_stream_cursor_input]!" ], "where": [ - 788 + 787 ] } ], "e_ready_settings": [ - 805, + 804, { "distinct_on": [ - 819, + 818, "[e_ready_settings_select_column!]" ], "limit": [ @@ -131296,19 +132193,19 @@ export default { 38 ], "order_by": [ - 817, + 816, "[e_ready_settings_order_by!]" ], "where": [ - 808 + 807 ] } ], "e_ready_settings_aggregate": [ - 806, + 805, { "distinct_on": [ - 819, + 818, "[e_ready_settings_select_column!]" ], "limit": [ @@ -131318,44 +132215,44 @@ export default { 38 ], "order_by": [ - 817, + 816, "[e_ready_settings_order_by!]" ], "where": [ - 808 + 807 ] } ], "e_ready_settings_by_pk": [ - 805, + 804, { "value": [ - 75, + 74, "String!" ] } ], "e_ready_settings_stream": [ - 805, + 804, { "batch_size": [ 38, "Int!" ], "cursor": [ - 821, + 820, "[e_ready_settings_stream_cursor_input]!" ], "where": [ - 808 + 807 ] } ], "e_sanction_types": [ - 825, + 824, { "distinct_on": [ - 840, + 839, "[e_sanction_types_select_column!]" ], "limit": [ @@ -131365,19 +132262,19 @@ export default { 38 ], "order_by": [ - 838, + 837, "[e_sanction_types_order_by!]" ], "where": [ - 828 + 827 ] } ], "e_sanction_types_aggregate": [ - 826, + 825, { "distinct_on": [ - 840, + 839, "[e_sanction_types_select_column!]" ], "limit": [ @@ -131387,44 +132284,44 @@ export default { 38 ], "order_by": [ - 838, + 837, "[e_sanction_types_order_by!]" ], "where": [ - 828 + 827 ] } ], "e_sanction_types_by_pk": [ - 825, + 824, { "value": [ - 75, + 74, "String!" ] } ], "e_sanction_types_stream": [ - 825, + 824, { "batch_size": [ 38, "Int!" ], "cursor": [ - 842, + 841, "[e_sanction_types_stream_cursor_input]!" ], "where": [ - 828 + 827 ] } ], "e_scrim_request_statuses": [ - 846, + 845, { "distinct_on": [ - 860, + 859, "[e_scrim_request_statuses_select_column!]" ], "limit": [ @@ -131434,19 +132331,19 @@ export default { 38 ], "order_by": [ - 858, + 857, "[e_scrim_request_statuses_order_by!]" ], "where": [ - 849 + 848 ] } ], "e_scrim_request_statuses_aggregate": [ - 847, + 846, { "distinct_on": [ - 860, + 859, "[e_scrim_request_statuses_select_column!]" ], "limit": [ @@ -131456,44 +132353,44 @@ export default { 38 ], "order_by": [ - 858, + 857, "[e_scrim_request_statuses_order_by!]" ], "where": [ - 849 + 848 ] } ], "e_scrim_request_statuses_by_pk": [ - 846, + 845, { "value": [ - 75, + 74, "String!" ] } ], "e_scrim_request_statuses_stream": [ - 846, + 845, { "batch_size": [ 38, "Int!" ], "cursor": [ - 862, + 861, "[e_scrim_request_statuses_stream_cursor_input]!" ], "where": [ - 849 + 848 ] } ], "e_server_types": [ - 866, + 865, { "distinct_on": [ - 880, + 879, "[e_server_types_select_column!]" ], "limit": [ @@ -131503,19 +132400,19 @@ export default { 38 ], "order_by": [ - 878, + 877, "[e_server_types_order_by!]" ], "where": [ - 869 + 868 ] } ], "e_server_types_aggregate": [ - 867, + 866, { "distinct_on": [ - 880, + 879, "[e_server_types_select_column!]" ], "limit": [ @@ -131525,44 +132422,44 @@ export default { 38 ], "order_by": [ - 878, + 877, "[e_server_types_order_by!]" ], "where": [ - 869 + 868 ] } ], "e_server_types_by_pk": [ - 866, + 865, { "value": [ - 75, + 74, "String!" ] } ], "e_server_types_stream": [ - 866, + 865, { "batch_size": [ 38, "Int!" ], "cursor": [ - 882, + 881, "[e_server_types_stream_cursor_input]!" ], "where": [ - 869 + 868 ] } ], "e_sides": [ - 886, + 885, { "distinct_on": [ - 900, + 899, "[e_sides_select_column!]" ], "limit": [ @@ -131572,19 +132469,19 @@ export default { 38 ], "order_by": [ - 898, + 897, "[e_sides_order_by!]" ], "where": [ - 889 + 888 ] } ], "e_sides_aggregate": [ - 887, + 886, { "distinct_on": [ - 900, + 899, "[e_sides_select_column!]" ], "limit": [ @@ -131594,44 +132491,44 @@ export default { 38 ], "order_by": [ - 898, + 897, "[e_sides_order_by!]" ], "where": [ - 889 + 888 ] } ], "e_sides_by_pk": [ - 886, + 885, { "value": [ - 75, + 74, "String!" ] } ], "e_sides_stream": [ - 886, + 885, { "batch_size": [ 38, "Int!" ], "cursor": [ - 902, + 901, "[e_sides_stream_cursor_input]!" ], "where": [ - 889 + 888 ] } ], "e_system_alert_types": [ - 906, + 905, { "distinct_on": [ - 920, + 919, "[e_system_alert_types_select_column!]" ], "limit": [ @@ -131641,19 +132538,19 @@ export default { 38 ], "order_by": [ - 918, + 917, "[e_system_alert_types_order_by!]" ], "where": [ - 909 + 908 ] } ], "e_system_alert_types_aggregate": [ - 907, + 906, { "distinct_on": [ - 920, + 919, "[e_system_alert_types_select_column!]" ], "limit": [ @@ -131663,44 +132560,44 @@ export default { 38 ], "order_by": [ - 918, + 917, "[e_system_alert_types_order_by!]" ], "where": [ - 909 + 908 ] } ], "e_system_alert_types_by_pk": [ - 906, + 905, { "value": [ - 75, + 74, "String!" ] } ], "e_system_alert_types_stream": [ - 906, + 905, { "batch_size": [ 38, "Int!" ], "cursor": [ - 922, + 921, "[e_system_alert_types_stream_cursor_input]!" ], "where": [ - 909 + 908 ] } ], "e_team_roles": [ - 926, + 925, { "distinct_on": [ - 941, + 940, "[e_team_roles_select_column!]" ], "limit": [ @@ -131710,19 +132607,19 @@ export default { 38 ], "order_by": [ - 939, + 938, "[e_team_roles_order_by!]" ], "where": [ - 929 + 928 ] } ], "e_team_roles_aggregate": [ - 927, + 926, { "distinct_on": [ - 941, + 940, "[e_team_roles_select_column!]" ], "limit": [ @@ -131732,44 +132629,44 @@ export default { 38 ], "order_by": [ - 939, + 938, "[e_team_roles_order_by!]" ], "where": [ - 929 + 928 ] } ], "e_team_roles_by_pk": [ - 926, + 925, { "value": [ - 75, + 74, "String!" ] } ], "e_team_roles_stream": [ - 926, + 925, { "batch_size": [ 38, "Int!" ], "cursor": [ - 943, + 942, "[e_team_roles_stream_cursor_input]!" ], "where": [ - 929 + 928 ] } ], "e_team_roster_statuses": [ - 947, + 946, { "distinct_on": [ - 961, + 960, "[e_team_roster_statuses_select_column!]" ], "limit": [ @@ -131779,19 +132676,19 @@ export default { 38 ], "order_by": [ - 959, + 958, "[e_team_roster_statuses_order_by!]" ], "where": [ - 950 + 949 ] } ], "e_team_roster_statuses_aggregate": [ - 948, + 947, { "distinct_on": [ - 961, + 960, "[e_team_roster_statuses_select_column!]" ], "limit": [ @@ -131801,44 +132698,44 @@ export default { 38 ], "order_by": [ - 959, + 958, "[e_team_roster_statuses_order_by!]" ], "where": [ - 950 + 949 ] } ], "e_team_roster_statuses_by_pk": [ - 947, + 946, { "value": [ - 75, + 74, "String!" ] } ], "e_team_roster_statuses_stream": [ - 947, + 946, { "batch_size": [ 38, "Int!" ], "cursor": [ - 963, + 962, "[e_team_roster_statuses_stream_cursor_input]!" ], "where": [ - 950 + 949 ] } ], "e_timeout_settings": [ - 967, + 966, { "distinct_on": [ - 981, + 980, "[e_timeout_settings_select_column!]" ], "limit": [ @@ -131848,19 +132745,19 @@ export default { 38 ], "order_by": [ - 979, + 978, "[e_timeout_settings_order_by!]" ], "where": [ - 970 + 969 ] } ], "e_timeout_settings_aggregate": [ - 968, + 967, { "distinct_on": [ - 981, + 980, "[e_timeout_settings_select_column!]" ], "limit": [ @@ -131870,44 +132767,44 @@ export default { 38 ], "order_by": [ - 979, + 978, "[e_timeout_settings_order_by!]" ], "where": [ - 970 + 969 ] } ], "e_timeout_settings_by_pk": [ - 967, + 966, { "value": [ - 75, + 74, "String!" ] } ], "e_timeout_settings_stream": [ - 967, + 966, { "batch_size": [ 38, "Int!" ], "cursor": [ - 983, + 982, "[e_timeout_settings_stream_cursor_input]!" ], "where": [ - 970 + 969 ] } ], "e_tournament_stage_types": [ - 987, + 986, { "distinct_on": [ - 1002, + 1001, "[e_tournament_stage_types_select_column!]" ], "limit": [ @@ -131917,19 +132814,19 @@ export default { 38 ], "order_by": [ - 1000, + 999, "[e_tournament_stage_types_order_by!]" ], "where": [ - 990 + 989 ] } ], "e_tournament_stage_types_aggregate": [ - 988, + 987, { "distinct_on": [ - 1002, + 1001, "[e_tournament_stage_types_select_column!]" ], "limit": [ @@ -131939,44 +132836,44 @@ export default { 38 ], "order_by": [ - 1000, + 999, "[e_tournament_stage_types_order_by!]" ], "where": [ - 990 + 989 ] } ], "e_tournament_stage_types_by_pk": [ - 987, + 986, { "value": [ - 75, + 74, "String!" ] } ], "e_tournament_stage_types_stream": [ - 987, + 986, { "batch_size": [ 38, "Int!" ], "cursor": [ - 1004, + 1003, "[e_tournament_stage_types_stream_cursor_input]!" ], "where": [ - 990 + 989 ] } ], "e_tournament_status": [ - 1008, + 1007, { "distinct_on": [ - 1023, + 1022, "[e_tournament_status_select_column!]" ], "limit": [ @@ -131986,19 +132883,19 @@ export default { 38 ], "order_by": [ - 1021, + 1020, "[e_tournament_status_order_by!]" ], "where": [ - 1011 + 1010 ] } ], "e_tournament_status_aggregate": [ - 1009, + 1008, { "distinct_on": [ - 1023, + 1022, "[e_tournament_status_select_column!]" ], "limit": [ @@ -132008,44 +132905,44 @@ export default { 38 ], "order_by": [ - 1021, + 1020, "[e_tournament_status_order_by!]" ], "where": [ - 1011 + 1010 ] } ], "e_tournament_status_by_pk": [ - 1008, + 1007, { "value": [ - 75, + 74, "String!" ] } ], "e_tournament_status_stream": [ - 1008, + 1007, { "batch_size": [ 38, "Int!" ], "cursor": [ - 1025, + 1024, "[e_tournament_status_stream_cursor_input]!" ], "where": [ - 1011 + 1010 ] } ], "e_utility_types": [ - 1029, + 1028, { "distinct_on": [ - 1043, + 1042, "[e_utility_types_select_column!]" ], "limit": [ @@ -132055,19 +132952,19 @@ export default { 38 ], "order_by": [ - 1041, + 1040, "[e_utility_types_order_by!]" ], "where": [ - 1032 + 1031 ] } ], "e_utility_types_aggregate": [ - 1030, + 1029, { "distinct_on": [ - 1043, + 1042, "[e_utility_types_select_column!]" ], "limit": [ @@ -132077,44 +132974,44 @@ export default { 38 ], "order_by": [ - 1041, + 1040, "[e_utility_types_order_by!]" ], "where": [ - 1032 + 1031 ] } ], "e_utility_types_by_pk": [ - 1029, + 1028, { "value": [ - 75, + 74, "String!" ] } ], "e_utility_types_stream": [ - 1029, + 1028, { "batch_size": [ 38, "Int!" ], "cursor": [ - 1045, + 1044, "[e_utility_types_stream_cursor_input]!" ], "where": [ - 1032 + 1031 ] } ], "e_veto_pick_types": [ - 1049, + 1048, { "distinct_on": [ - 1063, + 1062, "[e_veto_pick_types_select_column!]" ], "limit": [ @@ -132124,19 +133021,19 @@ export default { 38 ], "order_by": [ - 1061, + 1060, "[e_veto_pick_types_order_by!]" ], "where": [ - 1052 + 1051 ] } ], "e_veto_pick_types_aggregate": [ - 1050, + 1049, { "distinct_on": [ - 1063, + 1062, "[e_veto_pick_types_select_column!]" ], "limit": [ @@ -132146,44 +133043,44 @@ export default { 38 ], "order_by": [ - 1061, + 1060, "[e_veto_pick_types_order_by!]" ], "where": [ - 1052 + 1051 ] } ], "e_veto_pick_types_by_pk": [ - 1049, + 1048, { "value": [ - 75, + 74, "String!" ] } ], "e_veto_pick_types_stream": [ - 1049, + 1048, { "batch_size": [ 38, "Int!" ], "cursor": [ - 1065, + 1064, "[e_veto_pick_types_stream_cursor_input]!" ], "where": [ - 1052 + 1051 ] } ], "e_winning_reasons": [ - 1069, + 1068, { "distinct_on": [ - 1083, + 1082, "[e_winning_reasons_select_column!]" ], "limit": [ @@ -132193,19 +133090,19 @@ export default { 38 ], "order_by": [ - 1081, + 1080, "[e_winning_reasons_order_by!]" ], "where": [ - 1072 + 1071 ] } ], "e_winning_reasons_aggregate": [ - 1070, + 1069, { "distinct_on": [ - 1083, + 1082, "[e_winning_reasons_select_column!]" ], "limit": [ @@ -132215,44 +133112,44 @@ export default { 38 ], "order_by": [ - 1081, + 1080, "[e_winning_reasons_order_by!]" ], "where": [ - 1072 + 1071 ] } ], "e_winning_reasons_by_pk": [ - 1069, + 1068, { "value": [ - 75, + 74, "String!" ] } ], "e_winning_reasons_stream": [ - 1069, + 1068, { "batch_size": [ 38, "Int!" ], "cursor": [ - 1085, + 1084, "[e_winning_reasons_stream_cursor_input]!" ], "where": [ - 1072 + 1071 ] } ], "friends": [ - 1091, + 1090, { "distinct_on": [ - 1105, + 1104, "[friends_select_column!]" ], "limit": [ @@ -132262,19 +133159,19 @@ export default { 38 ], "order_by": [ - 1103, + 1102, "[friends_order_by!]" ], "where": [ - 1095 + 1094 ] } ], "friends_aggregate": [ - 1092, + 1091, { "distinct_on": [ - 1105, + 1104, "[friends_select_column!]" ], "limit": [ @@ -132284,48 +133181,48 @@ export default { 38 ], "order_by": [ - 1103, + 1102, "[friends_order_by!]" ], "where": [ - 1095 + 1094 ] } ], "friends_by_pk": [ - 1091, + 1090, { "other_player_steam_id": [ - 174, + 173, "bigint!" ], "player_steam_id": [ - 174, + 173, "bigint!" ] } ], "friends_stream": [ - 1091, + 1090, { "batch_size": [ 38, "Int!" ], "cursor": [ - 1110, + 1109, "[friends_stream_cursor_input]!" ], "where": [ - 1095 + 1094 ] } ], "game_server_nodes": [ - 1118, + 1117, { "distinct_on": [ - 1147, + 1146, "[game_server_nodes_select_column!]" ], "limit": [ @@ -132335,19 +133232,19 @@ export default { 38 ], "order_by": [ - 1144, + 1143, "[game_server_nodes_order_by!]" ], "where": [ - 1130 + 1129 ] } ], "game_server_nodes_aggregate": [ - 1119, + 1118, { "distinct_on": [ - 1147, + 1146, "[game_server_nodes_select_column!]" ], "limit": [ @@ -132357,44 +133254,44 @@ export default { 38 ], "order_by": [ - 1144, + 1143, "[game_server_nodes_order_by!]" ], "where": [ - 1130 + 1129 ] } ], "game_server_nodes_by_pk": [ - 1118, + 1117, { "id": [ - 75, + 74, "String!" ] } ], "game_server_nodes_stream": [ - 1118, + 1117, { "batch_size": [ 38, "Int!" ], "cursor": [ - 1157, + 1156, "[game_server_nodes_stream_cursor_input]!" ], "where": [ - 1130 + 1129 ] } ], "game_versions": [ - 1169, + 1168, { "distinct_on": [ - 1189, + 1188, "[game_versions_select_column!]" ], "limit": [ @@ -132404,19 +133301,19 @@ export default { 38 ], "order_by": [ - 1186, + 1185, "[game_versions_order_by!]" ], "where": [ - 1174 + 1173 ] } ], "game_versions_aggregate": [ - 1170, + 1169, { "distinct_on": [ - 1189, + 1188, "[game_versions_select_column!]" ], "limit": [ @@ -132426,16 +133323,16 @@ export default { 38 ], "order_by": [ - 1186, + 1185, "[game_versions_order_by!]" ], "where": [ - 1174 + 1173 ] } ], "game_versions_by_pk": [ - 1169, + 1168, { "build_id": [ 38, @@ -132444,26 +133341,26 @@ export default { } ], "game_versions_stream": [ - 1169, + 1168, { "batch_size": [ 38, "Int!" ], "cursor": [ - 1194, + 1193, "[game_versions_stream_cursor_input]!" ], "where": [ - 1174 + 1173 ] } ], "gamedata_signature_validations": [ - 1202, + 1201, { "distinct_on": [ - 1221, + 1220, "[gamedata_signature_validations_select_column!]" ], "limit": [ @@ -132473,19 +133370,19 @@ export default { 38 ], "order_by": [ - 1218, + 1217, "[gamedata_signature_validations_order_by!]" ], "where": [ - 1207 + 1206 ] } ], "gamedata_signature_validations_aggregate": [ - 1203, + 1202, { "distinct_on": [ - 1221, + 1220, "[gamedata_signature_validations_select_column!]" ], "limit": [ @@ -132495,48 +133392,48 @@ export default { 38 ], "order_by": [ - 1218, + 1217, "[gamedata_signature_validations_order_by!]" ], "where": [ - 1207 + 1206 ] } ], "gamedata_signature_validations_by_pk": [ - 1202, + 1201, { "id": [ - 3864, + 3863, "uuid!" ] } ], "gamedata_signature_validations_stream": [ - 1202, + 1201, { "batch_size": [ 38, "Int!" ], "cursor": [ - 1226, + 1225, "[gamedata_signature_validations_stream_cursor_input]!" ], "where": [ - 1207 + 1206 ] } ], "get_leaderboard": [ - 1243, + 1242, { "args": [ - 1234, + 1233, "get_leaderboard_args!" ], "distinct_on": [ - 1254, + 1253, "[leaderboard_entries_select_column!]" ], "limit": [ @@ -132546,23 +133443,23 @@ export default { 38 ], "order_by": [ - 1253, + 1252, "[leaderboard_entries_order_by!]" ], "where": [ - 1247 + 1246 ] } ], "get_leaderboard_aggregate": [ - 1244, + 1243, { "args": [ - 1234, + 1233, "get_leaderboard_args!" ], "distinct_on": [ - 1254, + 1253, "[leaderboard_entries_select_column!]" ], "limit": [ @@ -132572,23 +133469,23 @@ export default { 38 ], "order_by": [ - 1253, + 1252, "[leaderboard_entries_order_by!]" ], "where": [ - 1247 + 1246 ] } ], "get_player_leaderboard_rank": [ - 2457, + 2456, { "args": [ - 1235, + 1234, "get_player_leaderboard_rank_args!" ], "distinct_on": [ - 2468, + 2467, "[player_leaderboard_rank_select_column!]" ], "limit": [ @@ -132598,23 +133495,23 @@ export default { 38 ], "order_by": [ - 2467, + 2466, "[player_leaderboard_rank_order_by!]" ], "where": [ - 2461 + 2460 ] } ], "get_player_leaderboard_rank_aggregate": [ - 2458, + 2457, { "args": [ - 1235, + 1234, "get_player_leaderboard_rank_args!" ], "distinct_on": [ - 2468, + 2467, "[player_leaderboard_rank_select_column!]" ], "limit": [ @@ -132624,19 +133521,19 @@ export default { 38 ], "order_by": [ - 2467, + 2466, "[player_leaderboard_rank_order_by!]" ], "where": [ - 2461 + 2460 ] } ], "leaderboard_entries": [ - 1243, + 1242, { "distinct_on": [ - 1254, + 1253, "[leaderboard_entries_select_column!]" ], "limit": [ @@ -132646,19 +133543,19 @@ export default { 38 ], "order_by": [ - 1253, + 1252, "[leaderboard_entries_order_by!]" ], "where": [ - 1247 + 1246 ] } ], "leaderboard_entries_aggregate": [ - 1244, + 1243, { "distinct_on": [ - 1254, + 1253, "[leaderboard_entries_select_column!]" ], "limit": [ @@ -132668,35 +133565,35 @@ export default { 38 ], "order_by": [ - 1253, + 1252, "[leaderboard_entries_order_by!]" ], "where": [ - 1247 + 1246 ] } ], "leaderboard_entries_stream": [ - 1243, + 1242, { "batch_size": [ 38, "Int!" ], "cursor": [ - 1259, + 1258, "[leaderboard_entries_stream_cursor_input]!" ], "where": [ - 1247 + 1246 ] } ], "lobbies": [ - 1266, + 1265, { "distinct_on": [ - 1279, + 1278, "[lobbies_select_column!]" ], "limit": [ @@ -132706,19 +133603,19 @@ export default { 38 ], "order_by": [ - 1277, + 1276, "[lobbies_order_by!]" ], "where": [ - 1269 + 1268 ] } ], "lobbies_aggregate": [ - 1267, + 1266, { "distinct_on": [ - 1279, + 1278, "[lobbies_select_column!]" ], "limit": [ @@ -132728,44 +133625,44 @@ export default { 38 ], "order_by": [ - 1277, + 1276, "[lobbies_order_by!]" ], "where": [ - 1269 + 1268 ] } ], "lobbies_by_pk": [ - 1266, + 1265, { "id": [ - 3864, + 3863, "uuid!" ] } ], "lobbies_stream": [ - 1266, + 1265, { "batch_size": [ 38, "Int!" ], "cursor": [ - 1281, + 1280, "[lobbies_stream_cursor_input]!" ], "where": [ - 1269 + 1268 ] } ], "lobby_players": [ - 1285, + 1284, { "distinct_on": [ - 1308, + 1307, "[lobby_players_select_column!]" ], "limit": [ @@ -132775,19 +133672,19 @@ export default { 38 ], "order_by": [ - 1306, + 1305, "[lobby_players_order_by!]" ], "where": [ - 1296 + 1295 ] } ], "lobby_players_aggregate": [ - 1286, + 1285, { "distinct_on": [ - 1308, + 1307, "[lobby_players_select_column!]" ], "limit": [ @@ -132797,48 +133694,48 @@ export default { 38 ], "order_by": [ - 1306, + 1305, "[lobby_players_order_by!]" ], "where": [ - 1296 + 1295 ] } ], "lobby_players_by_pk": [ - 1285, + 1284, { "lobby_id": [ - 3864, + 3863, "uuid!" ], "steam_id": [ - 174, + 173, "bigint!" ] } ], "lobby_players_stream": [ - 1285, + 1284, { "batch_size": [ 38, "Int!" ], "cursor": [ - 1318, + 1317, "[lobby_players_stream_cursor_input]!" ], "where": [ - 1296 + 1295 ] } ], "map_pools": [ - 1330, + 1329, { "distinct_on": [ - 1343, + 1342, "[map_pools_select_column!]" ], "limit": [ @@ -132848,19 +133745,19 @@ export default { 38 ], "order_by": [ - 1341, + 1340, "[map_pools_order_by!]" ], "where": [ - 1333 + 1332 ] } ], "map_pools_aggregate": [ - 1331, + 1330, { "distinct_on": [ - 1343, + 1342, "[map_pools_select_column!]" ], "limit": [ @@ -132870,44 +133767,44 @@ export default { 38 ], "order_by": [ - 1341, + 1340, "[map_pools_order_by!]" ], "where": [ - 1333 + 1332 ] } ], "map_pools_by_pk": [ - 1330, + 1329, { "id": [ - 3864, + 3863, "uuid!" ] } ], "map_pools_stream": [ - 1330, + 1329, { "batch_size": [ 38, "Int!" ], "cursor": [ - 1345, + 1344, "[map_pools_stream_cursor_input]!" ], "where": [ - 1333 + 1332 ] } ], "maps": [ - 1349, + 1348, { "distinct_on": [ - 1370, + 1369, "[maps_select_column!]" ], "limit": [ @@ -132917,19 +133814,19 @@ export default { 38 ], "order_by": [ - 1368, + 1367, "[maps_order_by!]" ], "where": [ - 1358 + 1357 ] } ], "maps_aggregate": [ - 1350, + 1349, { "distinct_on": [ - 1370, + 1369, "[maps_select_column!]" ], "limit": [ @@ -132939,44 +133836,44 @@ export default { 38 ], "order_by": [ - 1368, + 1367, "[maps_order_by!]" ], "where": [ - 1358 + 1357 ] } ], "maps_by_pk": [ - 1349, + 1348, { "id": [ - 3864, + 3863, "uuid!" ] } ], "maps_stream": [ - 1349, + 1348, { "batch_size": [ 38, "Int!" ], "cursor": [ - 1374, + 1373, "[maps_stream_cursor_input]!" ], "where": [ - 1358 + 1357 ] } ], "match_clips": [ - 1378, + 1377, { "distinct_on": [ - 1400, + 1399, "[match_clips_select_column!]" ], "limit": [ @@ -132986,19 +133883,19 @@ export default { 38 ], "order_by": [ - 1398, + 1397, "[match_clips_order_by!]" ], "where": [ - 1387 + 1386 ] } ], "match_clips_aggregate": [ - 1379, + 1378, { "distinct_on": [ - 1400, + 1399, "[match_clips_select_column!]" ], "limit": [ @@ -133008,44 +133905,44 @@ export default { 38 ], "order_by": [ - 1398, + 1397, "[match_clips_order_by!]" ], "where": [ - 1387 + 1386 ] } ], "match_clips_by_pk": [ - 1378, + 1377, { "id": [ - 3864, + 3863, "uuid!" ] } ], "match_clips_stream": [ - 1378, + 1377, { "batch_size": [ 38, "Int!" ], "cursor": [ - 1408, + 1407, "[match_clips_stream_cursor_input]!" ], "where": [ - 1387 + 1386 ] } ], "match_demo_sessions": [ - 1420, + 1419, { "distinct_on": [ - 1446, + 1445, "[match_demo_sessions_select_column!]" ], "limit": [ @@ -133055,19 +133952,19 @@ export default { 38 ], "order_by": [ - 1443, + 1442, "[match_demo_sessions_order_by!]" ], "where": [ - 1430 + 1429 ] } ], "match_demo_sessions_aggregate": [ - 1421, + 1420, { "distinct_on": [ - 1446, + 1445, "[match_demo_sessions_select_column!]" ], "limit": [ @@ -133077,44 +133974,44 @@ export default { 38 ], "order_by": [ - 1443, + 1442, "[match_demo_sessions_order_by!]" ], "where": [ - 1430 + 1429 ] } ], "match_demo_sessions_by_pk": [ - 1420, + 1419, { "id": [ - 3864, + 3863, "uuid!" ] } ], "match_demo_sessions_stream": [ - 1420, + 1419, { "batch_size": [ 38, "Int!" ], "cursor": [ - 1454, + 1453, "[match_demo_sessions_stream_cursor_input]!" ], "where": [ - 1430 + 1429 ] } ], "match_lineup_players": [ - 1466, + 1465, { "distinct_on": [ - 1489, + 1488, "[match_lineup_players_select_column!]" ], "limit": [ @@ -133124,19 +134021,19 @@ export default { 38 ], "order_by": [ - 1487, + 1486, "[match_lineup_players_order_by!]" ], "where": [ - 1477 + 1476 ] } ], "match_lineup_players_aggregate": [ - 1467, + 1466, { "distinct_on": [ - 1489, + 1488, "[match_lineup_players_select_column!]" ], "limit": [ @@ -133146,44 +134043,44 @@ export default { 38 ], "order_by": [ - 1487, + 1486, "[match_lineup_players_order_by!]" ], "where": [ - 1477 + 1476 ] } ], "match_lineup_players_by_pk": [ - 1466, + 1465, { "id": [ - 3864, + 3863, "uuid!" ] } ], "match_lineup_players_stream": [ - 1466, + 1465, { "batch_size": [ 38, "Int!" ], "cursor": [ - 1499, + 1498, "[match_lineup_players_stream_cursor_input]!" ], "where": [ - 1477 + 1476 ] } ], "match_lineups": [ - 1511, + 1510, { "distinct_on": [ - 1533, + 1532, "[match_lineups_select_column!]" ], "limit": [ @@ -133193,19 +134090,19 @@ export default { 38 ], "order_by": [ - 1531, + 1530, "[match_lineups_order_by!]" ], "where": [ - 1520 + 1519 ] } ], "match_lineups_aggregate": [ - 1512, + 1511, { "distinct_on": [ - 1533, + 1532, "[match_lineups_select_column!]" ], "limit": [ @@ -133215,44 +134112,44 @@ export default { 38 ], "order_by": [ - 1531, + 1530, "[match_lineups_order_by!]" ], "where": [ - 1520 + 1519 ] } ], "match_lineups_by_pk": [ - 1511, + 1510, { "id": [ - 3864, + 3863, "uuid!" ] } ], "match_lineups_stream": [ - 1511, + 1510, { "batch_size": [ 38, "Int!" ], "cursor": [ - 1541, + 1540, "[match_lineups_stream_cursor_input]!" ], "where": [ - 1520 + 1519 ] } ], "match_map_demos": [ - 1553, + 1552, { "distinct_on": [ - 1582, + 1581, "[match_map_demos_select_column!]" ], "limit": [ @@ -133262,19 +134159,19 @@ export default { 38 ], "order_by": [ - 1579, + 1578, "[match_map_demos_order_by!]" ], "where": [ - 1565 + 1564 ] } ], "match_map_demos_aggregate": [ - 1554, + 1553, { "distinct_on": [ - 1582, + 1581, "[match_map_demos_select_column!]" ], "limit": [ @@ -133284,44 +134181,44 @@ export default { 38 ], "order_by": [ - 1579, + 1578, "[match_map_demos_order_by!]" ], "where": [ - 1565 + 1564 ] } ], "match_map_demos_by_pk": [ - 1553, + 1552, { "id": [ - 3864, + 3863, "uuid!" ] } ], "match_map_demos_stream": [ - 1553, + 1552, { "batch_size": [ 38, "Int!" ], "cursor": [ - 1592, + 1591, "[match_map_demos_stream_cursor_input]!" ], "where": [ - 1565 + 1564 ] } ], "match_map_rounds": [ - 1604, + 1603, { "distinct_on": [ - 1625, + 1624, "[match_map_rounds_select_column!]" ], "limit": [ @@ -133331,19 +134228,19 @@ export default { 38 ], "order_by": [ - 1623, + 1622, "[match_map_rounds_order_by!]" ], "where": [ - 1613 + 1612 ] } ], "match_map_rounds_aggregate": [ - 1605, + 1604, { "distinct_on": [ - 1625, + 1624, "[match_map_rounds_select_column!]" ], "limit": [ @@ -133353,44 +134250,44 @@ export default { 38 ], "order_by": [ - 1623, + 1622, "[match_map_rounds_order_by!]" ], "where": [ - 1613 + 1612 ] } ], "match_map_rounds_by_pk": [ - 1604, + 1603, { "id": [ - 3864, + 3863, "uuid!" ] } ], "match_map_rounds_stream": [ - 1604, + 1603, { "batch_size": [ 38, "Int!" ], "cursor": [ - 1633, + 1632, "[match_map_rounds_stream_cursor_input]!" ], "where": [ - 1613 + 1612 ] } ], "match_map_veto_picks": [ - 1645, + 1644, { "distinct_on": [ - 1663, + 1662, "[match_map_veto_picks_select_column!]" ], "limit": [ @@ -133400,19 +134297,19 @@ export default { 38 ], "order_by": [ - 1661, + 1660, "[match_map_veto_picks_order_by!]" ], "where": [ - 1652 + 1651 ] } ], "match_map_veto_picks_aggregate": [ - 1646, + 1645, { "distinct_on": [ - 1663, + 1662, "[match_map_veto_picks_select_column!]" ], "limit": [ @@ -133422,44 +134319,44 @@ export default { 38 ], "order_by": [ - 1661, + 1660, "[match_map_veto_picks_order_by!]" ], "where": [ - 1652 + 1651 ] } ], "match_map_veto_picks_by_pk": [ - 1645, + 1644, { "id": [ - 3864, + 3863, "uuid!" ] } ], "match_map_veto_picks_stream": [ - 1645, + 1644, { "batch_size": [ 38, "Int!" ], "cursor": [ - 1665, + 1664, "[match_map_veto_picks_stream_cursor_input]!" ], "where": [ - 1652 + 1651 ] } ], "match_maps": [ - 1669, + 1668, { "distinct_on": [ - 1691, + 1690, "[match_maps_select_column!]" ], "limit": [ @@ -133469,19 +134366,19 @@ export default { 38 ], "order_by": [ - 1689, + 1688, "[match_maps_order_by!]" ], "where": [ - 1678 + 1677 ] } ], "match_maps_aggregate": [ - 1670, + 1669, { "distinct_on": [ - 1691, + 1690, "[match_maps_select_column!]" ], "limit": [ @@ -133491,44 +134388,44 @@ export default { 38 ], "order_by": [ - 1689, + 1688, "[match_maps_order_by!]" ], "where": [ - 1678 + 1677 ] } ], "match_maps_by_pk": [ - 1669, + 1668, { "id": [ - 3864, + 3863, "uuid!" ] } ], "match_maps_stream": [ - 1669, + 1668, { "batch_size": [ 38, "Int!" ], "cursor": [ - 1699, + 1698, "[match_maps_stream_cursor_input]!" ], "where": [ - 1678 + 1677 ] } ], "match_options": [ - 1711, + 1710, { "distinct_on": [ - 1726, + 1725, "[match_options_select_column!]" ], "limit": [ @@ -133538,19 +134435,19 @@ export default { 38 ], "order_by": [ - 1724, + 1723, "[match_options_order_by!]" ], "where": [ - 1715 + 1714 ] } ], "match_options_aggregate": [ - 1712, + 1711, { "distinct_on": [ - 1726, + 1725, "[match_options_select_column!]" ], "limit": [ @@ -133560,44 +134457,44 @@ export default { 38 ], "order_by": [ - 1724, + 1723, "[match_options_order_by!]" ], "where": [ - 1715 + 1714 ] } ], "match_options_by_pk": [ - 1711, + 1710, { "id": [ - 3864, + 3863, "uuid!" ] } ], "match_options_stream": [ - 1711, + 1710, { "batch_size": [ 38, "Int!" ], "cursor": [ - 1731, + 1730, "[match_options_stream_cursor_input]!" ], "where": [ - 1715 + 1714 ] } ], "match_region_veto_picks": [ - 1739, + 1738, { "distinct_on": [ - 1757, + 1756, "[match_region_veto_picks_select_column!]" ], "limit": [ @@ -133607,19 +134504,19 @@ export default { 38 ], "order_by": [ - 1755, + 1754, "[match_region_veto_picks_order_by!]" ], "where": [ - 1746 + 1745 ] } ], "match_region_veto_picks_aggregate": [ - 1740, + 1739, { "distinct_on": [ - 1757, + 1756, "[match_region_veto_picks_select_column!]" ], "limit": [ @@ -133629,44 +134526,44 @@ export default { 38 ], "order_by": [ - 1755, + 1754, "[match_region_veto_picks_order_by!]" ], "where": [ - 1746 + 1745 ] } ], "match_region_veto_picks_by_pk": [ - 1739, + 1738, { "id": [ - 3864, + 3863, "uuid!" ] } ], "match_region_veto_picks_stream": [ - 1739, + 1738, { "batch_size": [ 38, "Int!" ], "cursor": [ - 1759, + 1758, "[match_region_veto_picks_stream_cursor_input]!" ], "where": [ - 1746 + 1745 ] } ], "match_streams": [ - 1763, + 1762, { "distinct_on": [ - 1791, + 1790, "[match_streams_select_column!]" ], "limit": [ @@ -133676,19 +134573,19 @@ export default { 38 ], "order_by": [ - 1788, + 1787, "[match_streams_order_by!]" ], "where": [ - 1775 + 1774 ] } ], "match_streams_aggregate": [ - 1764, + 1763, { "distinct_on": [ - 1791, + 1790, "[match_streams_select_column!]" ], "limit": [ @@ -133698,44 +134595,44 @@ export default { 38 ], "order_by": [ - 1788, + 1787, "[match_streams_order_by!]" ], "where": [ - 1775 + 1774 ] } ], "match_streams_by_pk": [ - 1763, + 1762, { "id": [ - 3864, + 3863, "uuid!" ] } ], "match_streams_stream": [ - 1763, + 1762, { "batch_size": [ 38, "Int!" ], "cursor": [ - 1801, + 1800, "[match_streams_stream_cursor_input]!" ], "where": [ - 1775 + 1774 ] } ], "match_type_cfgs": [ - 1813, + 1812, { "distinct_on": [ - 1825, + 1824, "[match_type_cfgs_select_column!]" ], "limit": [ @@ -133745,19 +134642,19 @@ export default { 38 ], "order_by": [ - 1823, + 1822, "[match_type_cfgs_order_by!]" ], "where": [ - 1816 + 1815 ] } ], "match_type_cfgs_aggregate": [ - 1814, + 1813, { "distinct_on": [ - 1825, + 1824, "[match_type_cfgs_select_column!]" ], "limit": [ @@ -133767,44 +134664,44 @@ export default { 38 ], "order_by": [ - 1823, + 1822, "[match_type_cfgs_order_by!]" ], "where": [ - 1816 + 1815 ] } ], "match_type_cfgs_by_pk": [ - 1813, + 1812, { "type": [ - 544, + 543, "e_game_cfg_types_enum!" ] } ], "match_type_cfgs_stream": [ - 1813, + 1812, { "batch_size": [ 38, "Int!" ], "cursor": [ - 1827, + 1826, "[match_type_cfgs_stream_cursor_input]!" ], "where": [ - 1816 + 1815 ] } ], "matches": [ - 1831, + 1830, { "distinct_on": [ - 1853, + 1852, "[matches_select_column!]" ], "limit": [ @@ -133814,19 +134711,19 @@ export default { 38 ], "order_by": [ - 1851, + 1850, "[matches_order_by!]" ], "where": [ - 1840 + 1839 ] } ], "matches_aggregate": [ - 1832, + 1831, { "distinct_on": [ - 1853, + 1852, "[matches_select_column!]" ], "limit": [ @@ -133836,44 +134733,44 @@ export default { 38 ], "order_by": [ - 1851, + 1850, "[matches_order_by!]" ], "where": [ - 1840 + 1839 ] } ], "matches_by_pk": [ - 1831, + 1830, { "id": [ - 3864, + 3863, "uuid!" ] } ], "matches_stream": [ - 1831, + 1830, { "batch_size": [ 38, "Int!" ], "cursor": [ - 1861, + 1860, "[matches_stream_cursor_input]!" ], "where": [ - 1840 + 1839 ] } ], "migration_hashes_hashes": [ - 1873, + 1872, { "distinct_on": [ - 1885, + 1884, "[migration_hashes_hashes_select_column!]" ], "limit": [ @@ -133883,19 +134780,19 @@ export default { 38 ], "order_by": [ - 1883, + 1882, "[migration_hashes_hashes_order_by!]" ], "where": [ - 1876 + 1875 ] } ], "migration_hashes_hashes_aggregate": [ - 1874, + 1873, { "distinct_on": [ - 1885, + 1884, "[migration_hashes_hashes_select_column!]" ], "limit": [ @@ -133905,44 +134802,44 @@ export default { 38 ], "order_by": [ - 1883, + 1882, "[migration_hashes_hashes_order_by!]" ], "where": [ - 1876 + 1875 ] } ], "migration_hashes_hashes_by_pk": [ - 1873, + 1872, { "name": [ - 75, + 74, "String!" ] } ], "migration_hashes_hashes_stream": [ - 1873, + 1872, { "batch_size": [ 38, "Int!" ], "cursor": [ - 1887, + 1886, "[migration_hashes_hashes_stream_cursor_input]!" ], "where": [ - 1876 + 1875 ] } ], "my_friends": [ - 1891, + 1890, { "distinct_on": [ - 1916, + 1915, "[my_friends_select_column!]" ], "limit": [ @@ -133952,19 +134849,19 @@ export default { 38 ], "order_by": [ - 1914, + 1913, "[my_friends_order_by!]" ], "where": [ - 1903 + 1902 ] } ], "my_friends_aggregate": [ - 1892, + 1891, { "distinct_on": [ - 1916, + 1915, "[my_friends_select_column!]" ], "limit": [ @@ -133974,35 +134871,35 @@ export default { 38 ], "order_by": [ - 1914, + 1913, "[my_friends_order_by!]" ], "where": [ - 1903 + 1902 ] } ], "my_friends_stream": [ - 1891, + 1890, { "batch_size": [ 38, "Int!" ], "cursor": [ - 1926, + 1925, "[my_friends_stream_cursor_input]!" ], "where": [ - 1903 + 1902 ] } ], "news_articles": [ - 1937, + 1936, { "distinct_on": [ - 1951, + 1950, "[news_articles_select_column!]" ], "limit": [ @@ -134012,19 +134909,19 @@ export default { 38 ], "order_by": [ - 1949, + 1948, "[news_articles_order_by!]" ], "where": [ - 1941 + 1940 ] } ], "news_articles_aggregate": [ - 1938, + 1937, { "distinct_on": [ - 1951, + 1950, "[news_articles_select_column!]" ], "limit": [ @@ -134034,44 +134931,44 @@ export default { 38 ], "order_by": [ - 1949, + 1948, "[news_articles_order_by!]" ], "where": [ - 1941 + 1940 ] } ], "news_articles_by_pk": [ - 1937, + 1936, { "id": [ - 3864, + 3863, "uuid!" ] } ], "news_articles_stream": [ - 1937, + 1936, { "batch_size": [ 38, "Int!" ], "cursor": [ - 1956, + 1955, "[news_articles_stream_cursor_input]!" ], "where": [ - 1941 + 1940 ] } ], "notifications": [ - 1964, + 1963, { "distinct_on": [ - 1992, + 1991, "[notifications_select_column!]" ], "limit": [ @@ -134081,19 +134978,19 @@ export default { 38 ], "order_by": [ - 1989, + 1988, "[notifications_order_by!]" ], "where": [ - 1976 + 1975 ] } ], "notifications_aggregate": [ - 1965, + 1964, { "distinct_on": [ - 1992, + 1991, "[notifications_select_column!]" ], "limit": [ @@ -134103,44 +135000,44 @@ export default { 38 ], "order_by": [ - 1989, + 1988, "[notifications_order_by!]" ], "where": [ - 1976 + 1975 ] } ], "notifications_by_pk": [ - 1964, + 1963, { "id": [ - 3864, + 3863, "uuid!" ] } ], "notifications_stream": [ - 1964, + 1963, { "batch_size": [ 38, "Int!" ], "cursor": [ - 2002, + 2001, "[notifications_stream_cursor_input]!" ], "where": [ - 1976 + 1975 ] } ], "pending_match_import_players": [ - 2017, + 2016, { "distinct_on": [ - 2038, + 2037, "[pending_match_import_players_select_column!]" ], "limit": [ @@ -134150,19 +135047,19 @@ export default { 38 ], "order_by": [ - 2036, + 2035, "[pending_match_import_players_order_by!]" ], "where": [ - 2026 + 2025 ] } ], "pending_match_import_players_aggregate": [ - 2018, + 2017, { "distinct_on": [ - 2038, + 2037, "[pending_match_import_players_select_column!]" ], "limit": [ @@ -134172,48 +135069,48 @@ export default { 38 ], "order_by": [ - 2036, + 2035, "[pending_match_import_players_order_by!]" ], "where": [ - 2026 + 2025 ] } ], "pending_match_import_players_by_pk": [ - 2017, + 2016, { "steam_id": [ - 174, + 173, "bigint!" ], "valve_match_id": [ - 2014, + 2013, "numeric!" ] } ], "pending_match_import_players_stream": [ - 2017, + 2016, { "batch_size": [ 38, "Int!" ], "cursor": [ - 2046, + 2045, "[pending_match_import_players_stream_cursor_input]!" ], "where": [ - 2026 + 2025 ] } ], "pending_match_imports": [ - 2058, + 2057, { "distinct_on": [ - 2073, + 2072, "[pending_match_imports_select_column!]" ], "limit": [ @@ -134223,19 +135120,19 @@ export default { 38 ], "order_by": [ - 2071, + 2070, "[pending_match_imports_order_by!]" ], "where": [ - 2062 + 2061 ] } ], "pending_match_imports_aggregate": [ - 2059, + 2058, { "distinct_on": [ - 2073, + 2072, "[pending_match_imports_select_column!]" ], "limit": [ @@ -134245,44 +135142,44 @@ export default { 38 ], "order_by": [ - 2071, + 2070, "[pending_match_imports_order_by!]" ], "where": [ - 2062 + 2061 ] } ], "pending_match_imports_by_pk": [ - 2058, + 2057, { "valve_match_id": [ - 2014, + 2013, "numeric!" ] } ], "pending_match_imports_stream": [ - 2058, + 2057, { "batch_size": [ 38, "Int!" ], "cursor": [ - 2078, + 2077, "[pending_match_imports_stream_cursor_input]!" ], "where": [ - 2062 + 2061 ] } ], "player_aim_stats_demo": [ - 2086, + 2085, { "distinct_on": [ - 2100, + 2099, "[player_aim_stats_demo_select_column!]" ], "limit": [ @@ -134292,19 +135189,19 @@ export default { 38 ], "order_by": [ - 2098, + 2097, "[player_aim_stats_demo_order_by!]" ], "where": [ - 2090 + 2089 ] } ], "player_aim_stats_demo_aggregate": [ - 2087, + 2086, { "distinct_on": [ - 2100, + 2099, "[player_aim_stats_demo_select_column!]" ], "limit": [ @@ -134314,48 +135211,48 @@ export default { 38 ], "order_by": [ - 2098, + 2097, "[player_aim_stats_demo_order_by!]" ], "where": [ - 2090 + 2089 ] } ], "player_aim_stats_demo_by_pk": [ - 2086, + 2085, { "attacker_steam_id": [ - 174, + 173, "bigint!" ], "match_map_id": [ - 3864, + 3863, "uuid!" ] } ], "player_aim_stats_demo_stream": [ - 2086, + 2085, { "batch_size": [ 38, "Int!" ], "cursor": [ - 2105, + 2104, "[player_aim_stats_demo_stream_cursor_input]!" ], "where": [ - 2090 + 2089 ] } ], "player_aim_weapon_stats": [ - 2113, + 2112, { "distinct_on": [ - 2134, + 2133, "[player_aim_weapon_stats_select_column!]" ], "limit": [ @@ -134365,19 +135262,19 @@ export default { 38 ], "order_by": [ - 2132, + 2131, "[player_aim_weapon_stats_order_by!]" ], "where": [ - 2122 + 2121 ] } ], "player_aim_weapon_stats_aggregate": [ - 2114, + 2113, { "distinct_on": [ - 2134, + 2133, "[player_aim_weapon_stats_select_column!]" ], "limit": [ @@ -134387,52 +135284,52 @@ export default { 38 ], "order_by": [ - 2132, + 2131, "[player_aim_weapon_stats_order_by!]" ], "where": [ - 2122 + 2121 ] } ], "player_aim_weapon_stats_by_pk": [ - 2113, + 2112, { "match_map_id": [ - 3864, + 3863, "uuid!" ], "steam_id": [ - 174, + 173, "bigint!" ], "weapon_class": [ - 75, + 74, "String!" ] } ], "player_aim_weapon_stats_stream": [ - 2113, + 2112, { "batch_size": [ 38, "Int!" ], "cursor": [ - 2142, + 2141, "[player_aim_weapon_stats_stream_cursor_input]!" ], "where": [ - 2122 + 2121 ] } ], "player_assists": [ - 2154, + 2153, { "distinct_on": [ - 2177, + 2176, "[player_assists_select_column!]" ], "limit": [ @@ -134442,19 +135339,19 @@ export default { 38 ], "order_by": [ - 2175, + 2174, "[player_assists_order_by!]" ], "where": [ - 2165 + 2164 ] } ], "player_assists_aggregate": [ - 2155, + 2154, { "distinct_on": [ - 2177, + 2176, "[player_assists_select_column!]" ], "limit": [ @@ -134464,56 +135361,56 @@ export default { 38 ], "order_by": [ - 2175, + 2174, "[player_assists_order_by!]" ], "where": [ - 2165 + 2164 ] } ], "player_assists_by_pk": [ - 2154, + 2153, { "attacked_steam_id": [ - 174, + 173, "bigint!" ], "attacker_steam_id": [ - 174, + 173, "bigint!" ], "match_map_id": [ - 3864, + 3863, "uuid!" ], "time": [ - 3467, + 3466, "timestamptz!" ] } ], "player_assists_stream": [ - 2154, + 2153, { "batch_size": [ 38, "Int!" ], "cursor": [ - 2187, + 2186, "[player_assists_stream_cursor_input]!" ], "where": [ - 2165 + 2164 ] } ], "player_career_stats_v": [ - 2199, + 2198, { "distinct_on": [ - 2207, + 2206, "[player_career_stats_v_select_column!]" ], "limit": [ @@ -134523,19 +135420,19 @@ export default { 38 ], "order_by": [ - 2206, + 2205, "[player_career_stats_v_order_by!]" ], "where": [ - 2203 + 2202 ] } ], "player_career_stats_v_aggregate": [ - 2200, + 2199, { "distinct_on": [ - 2207, + 2206, "[player_career_stats_v_select_column!]" ], "limit": [ @@ -134545,35 +135442,35 @@ export default { 38 ], "order_by": [ - 2206, + 2205, "[player_career_stats_v_order_by!]" ], "where": [ - 2203 + 2202 ] } ], "player_career_stats_v_stream": [ - 2199, + 2198, { "batch_size": [ 38, "Int!" ], "cursor": [ - 2211, + 2210, "[player_career_stats_v_stream_cursor_input]!" ], "where": [ - 2203 + 2202 ] } ], "player_damages": [ - 2217, + 2216, { "distinct_on": [ - 2238, + 2237, "[player_damages_select_column!]" ], "limit": [ @@ -134583,19 +135480,19 @@ export default { 38 ], "order_by": [ - 2236, + 2235, "[player_damages_order_by!]" ], "where": [ - 2226 + 2225 ] } ], "player_damages_aggregate": [ - 2218, + 2217, { "distinct_on": [ - 2238, + 2237, "[player_damages_select_column!]" ], "limit": [ @@ -134605,52 +135502,52 @@ export default { 38 ], "order_by": [ - 2236, + 2235, "[player_damages_order_by!]" ], "where": [ - 2226 + 2225 ] } ], "player_damages_by_pk": [ - 2217, + 2216, { "id": [ - 3864, + 3863, "uuid!" ], "match_map_id": [ - 3864, + 3863, "uuid!" ], "time": [ - 3467, + 3466, "timestamptz!" ] } ], "player_damages_stream": [ - 2217, + 2216, { "batch_size": [ 38, "Int!" ], "cursor": [ - 2246, + 2245, "[player_damages_stream_cursor_input]!" ], "where": [ - 2226 + 2225 ] } ], "player_elo": [ - 2258, + 2257, { "distinct_on": [ - 2272, + 2271, "[player_elo_select_column!]" ], "limit": [ @@ -134660,19 +135557,19 @@ export default { 38 ], "order_by": [ - 2270, + 2269, "[player_elo_order_by!]" ], "where": [ - 2262 + 2261 ] } ], "player_elo_aggregate": [ - 2259, + 2258, { "distinct_on": [ - 2272, + 2271, "[player_elo_select_column!]" ], "limit": [ @@ -134682,52 +135579,52 @@ export default { 38 ], "order_by": [ - 2270, + 2269, "[player_elo_order_by!]" ], "where": [ - 2262 + 2261 ] } ], "player_elo_by_pk": [ - 2258, + 2257, { "match_id": [ - 3864, + 3863, "uuid!" ], "steam_id": [ - 174, + 173, "bigint!" ], "type": [ - 729, + 728, "e_match_types_enum!" ] } ], "player_elo_stream": [ - 2258, + 2257, { "batch_size": [ 38, "Int!" ], "cursor": [ - 2277, + 2276, "[player_elo_stream_cursor_input]!" ], "where": [ - 2262 + 2261 ] } ], "player_faceit_rank_history": [ - 2285, + 2284, { "distinct_on": [ - 2306, + 2305, "[player_faceit_rank_history_select_column!]" ], "limit": [ @@ -134737,19 +135634,19 @@ export default { 38 ], "order_by": [ - 2304, + 2303, "[player_faceit_rank_history_order_by!]" ], "where": [ - 2294 + 2293 ] } ], "player_faceit_rank_history_aggregate": [ - 2286, + 2285, { "distinct_on": [ - 2306, + 2305, "[player_faceit_rank_history_select_column!]" ], "limit": [ @@ -134759,44 +135656,44 @@ export default { 38 ], "order_by": [ - 2304, + 2303, "[player_faceit_rank_history_order_by!]" ], "where": [ - 2294 + 2293 ] } ], "player_faceit_rank_history_by_pk": [ - 2285, + 2284, { "id": [ - 3864, + 3863, "uuid!" ] } ], "player_faceit_rank_history_stream": [ - 2285, + 2284, { "batch_size": [ 38, "Int!" ], "cursor": [ - 2314, + 2313, "[player_faceit_rank_history_stream_cursor_input]!" ], "where": [ - 2294 + 2293 ] } ], "player_flashes": [ - 2326, + 2325, { "distinct_on": [ - 2349, + 2348, "[player_flashes_select_column!]" ], "limit": [ @@ -134806,19 +135703,19 @@ export default { 38 ], "order_by": [ - 2347, + 2346, "[player_flashes_order_by!]" ], "where": [ - 2337 + 2336 ] } ], "player_flashes_aggregate": [ - 2327, + 2326, { "distinct_on": [ - 2349, + 2348, "[player_flashes_select_column!]" ], "limit": [ @@ -134828,56 +135725,56 @@ export default { 38 ], "order_by": [ - 2347, + 2346, "[player_flashes_order_by!]" ], "where": [ - 2337 + 2336 ] } ], "player_flashes_by_pk": [ - 2326, + 2325, { "attacked_steam_id": [ - 174, + 173, "bigint!" ], "attacker_steam_id": [ - 174, + 173, "bigint!" ], "match_map_id": [ - 3864, + 3863, "uuid!" ], "time": [ - 3467, + 3466, "timestamptz!" ] } ], "player_flashes_stream": [ - 2326, + 2325, { "batch_size": [ 38, "Int!" ], "cursor": [ - 2359, + 2358, "[player_flashes_stream_cursor_input]!" ], "where": [ - 2337 + 2336 ] } ], "player_kills": [ - 2371, + 2370, { "distinct_on": [ - 2435, + 2434, "[player_kills_select_column!]" ], "limit": [ @@ -134887,19 +135784,19 @@ export default { 38 ], "order_by": [ - 2433, + 2432, "[player_kills_order_by!]" ], "where": [ - 2382 + 2381 ] } ], "player_kills_aggregate": [ - 2372, + 2371, { "distinct_on": [ - 2435, + 2434, "[player_kills_select_column!]" ], "limit": [ @@ -134909,40 +135806,40 @@ export default { 38 ], "order_by": [ - 2433, + 2432, "[player_kills_order_by!]" ], "where": [ - 2382 + 2381 ] } ], "player_kills_by_pk": [ - 2371, + 2370, { "attacked_steam_id": [ - 174, + 173, "bigint!" ], "attacker_steam_id": [ - 174, + 173, "bigint!" ], "match_map_id": [ - 3864, + 3863, "uuid!" ], "time": [ - 3467, + 3466, "timestamptz!" ] } ], "player_kills_by_weapon": [ - 2383, + 2382, { "distinct_on": [ - 2404, + 2403, "[player_kills_by_weapon_select_column!]" ], "limit": [ @@ -134952,19 +135849,19 @@ export default { 38 ], "order_by": [ - 2402, + 2401, "[player_kills_by_weapon_order_by!]" ], "where": [ - 2392 + 2391 ] } ], "player_kills_by_weapon_aggregate": [ - 2384, + 2383, { "distinct_on": [ - 2404, + 2403, "[player_kills_by_weapon_select_column!]" ], "limit": [ @@ -134974,64 +135871,64 @@ export default { 38 ], "order_by": [ - 2402, + 2401, "[player_kills_by_weapon_order_by!]" ], "where": [ - 2392 + 2391 ] } ], "player_kills_by_weapon_by_pk": [ - 2383, + 2382, { "player_steam_id": [ - 174, + 173, "bigint!" ], "with": [ - 75, + 74, "String!" ] } ], "player_kills_by_weapon_stream": [ - 2383, + 2382, { "batch_size": [ 38, "Int!" ], "cursor": [ - 2412, + 2411, "[player_kills_by_weapon_stream_cursor_input]!" ], "where": [ - 2392 + 2391 ] } ], "player_kills_stream": [ - 2371, + 2370, { "batch_size": [ 38, "Int!" ], "cursor": [ - 2445, + 2444, "[player_kills_stream_cursor_input]!" ], "where": [ - 2382 + 2381 ] } ], "player_leaderboard_rank": [ - 2457, + 2456, { "distinct_on": [ - 2468, + 2467, "[player_leaderboard_rank_select_column!]" ], "limit": [ @@ -135041,19 +135938,19 @@ export default { 38 ], "order_by": [ - 2467, + 2466, "[player_leaderboard_rank_order_by!]" ], "where": [ - 2461 + 2460 ] } ], "player_leaderboard_rank_aggregate": [ - 2458, + 2457, { "distinct_on": [ - 2468, + 2467, "[player_leaderboard_rank_select_column!]" ], "limit": [ @@ -135063,35 +135960,35 @@ export default { 38 ], "order_by": [ - 2467, + 2466, "[player_leaderboard_rank_order_by!]" ], "where": [ - 2461 + 2460 ] } ], "player_leaderboard_rank_stream": [ - 2457, + 2456, { "batch_size": [ 38, "Int!" ], "cursor": [ - 2473, + 2472, "[player_leaderboard_rank_stream_cursor_input]!" ], "where": [ - 2461 + 2460 ] } ], "player_match_map_stats": [ - 2480, + 2479, { "distinct_on": [ - 2501, + 2500, "[player_match_map_stats_select_column!]" ], "limit": [ @@ -135101,19 +135998,19 @@ export default { 38 ], "order_by": [ - 2499, + 2498, "[player_match_map_stats_order_by!]" ], "where": [ - 2489 + 2488 ] } ], "player_match_map_stats_aggregate": [ - 2481, + 2480, { "distinct_on": [ - 2501, + 2500, "[player_match_map_stats_select_column!]" ], "limit": [ @@ -135123,48 +136020,48 @@ export default { 38 ], "order_by": [ - 2499, + 2498, "[player_match_map_stats_order_by!]" ], "where": [ - 2489 + 2488 ] } ], "player_match_map_stats_by_pk": [ - 2480, + 2479, { "match_map_id": [ - 3864, + 3863, "uuid!" ], "steam_id": [ - 174, + 173, "bigint!" ] } ], "player_match_map_stats_stream": [ - 2480, + 2479, { "batch_size": [ 38, "Int!" ], "cursor": [ - 2509, + 2508, "[player_match_map_stats_stream_cursor_input]!" ], "where": [ - 2489 + 2488 ] } ], "player_match_performance_v": [ - 2521, + 2520, { "distinct_on": [ - 2529, + 2528, "[player_match_performance_v_select_column!]" ], "limit": [ @@ -135174,19 +136071,19 @@ export default { 38 ], "order_by": [ - 2528, + 2527, "[player_match_performance_v_order_by!]" ], "where": [ - 2525 + 2524 ] } ], "player_match_performance_v_aggregate": [ - 2522, + 2521, { "distinct_on": [ - 2529, + 2528, "[player_match_performance_v_select_column!]" ], "limit": [ @@ -135196,35 +136093,35 @@ export default { 38 ], "order_by": [ - 2528, + 2527, "[player_match_performance_v_order_by!]" ], "where": [ - 2525 + 2524 ] } ], "player_match_performance_v_stream": [ - 2521, + 2520, { "batch_size": [ 38, "Int!" ], "cursor": [ - 2533, + 2532, "[player_match_performance_v_stream_cursor_input]!" ], "where": [ - 2525 + 2524 ] } ], "player_match_stats_v": [ - 2539, + 2538, { "distinct_on": [ - 2555, + 2554, "[player_match_stats_v_select_column!]" ], "limit": [ @@ -135234,19 +136131,19 @@ export default { 38 ], "order_by": [ - 2554, + 2553, "[player_match_stats_v_order_by!]" ], "where": [ - 2548 + 2547 ] } ], "player_match_stats_v_aggregate": [ - 2540, + 2539, { "distinct_on": [ - 2555, + 2554, "[player_match_stats_v_select_column!]" ], "limit": [ @@ -135256,35 +136153,35 @@ export default { 38 ], "order_by": [ - 2554, + 2553, "[player_match_stats_v_order_by!]" ], "where": [ - 2548 + 2547 ] } ], "player_match_stats_v_stream": [ - 2539, + 2538, { "batch_size": [ 38, "Int!" ], "cursor": [ - 2562, + 2561, "[player_match_stats_v_stream_cursor_input]!" ], "where": [ - 2548 + 2547 ] } ], "player_objectives": [ - 2572, + 2571, { "distinct_on": [ - 2593, + 2592, "[player_objectives_select_column!]" ], "limit": [ @@ -135294,19 +136191,19 @@ export default { 38 ], "order_by": [ - 2591, + 2590, "[player_objectives_order_by!]" ], "where": [ - 2581 + 2580 ] } ], "player_objectives_aggregate": [ - 2573, + 2572, { "distinct_on": [ - 2593, + 2592, "[player_objectives_select_column!]" ], "limit": [ @@ -135316,52 +136213,52 @@ export default { 38 ], "order_by": [ - 2591, + 2590, "[player_objectives_order_by!]" ], "where": [ - 2581 + 2580 ] } ], "player_objectives_by_pk": [ - 2572, + 2571, { "match_map_id": [ - 3864, + 3863, "uuid!" ], "player_steam_id": [ - 174, + 173, "bigint!" ], "time": [ - 3467, + 3466, "timestamptz!" ] } ], "player_objectives_stream": [ - 2572, + 2571, { "batch_size": [ 38, "Int!" ], "cursor": [ - 2601, + 2600, "[player_objectives_stream_cursor_input]!" ], "where": [ - 2581 + 2580 ] } ], "player_performance_v": [ - 2613, + 2612, { "distinct_on": [ - 2621, + 2620, "[player_performance_v_select_column!]" ], "limit": [ @@ -135371,19 +136268,19 @@ export default { 38 ], "order_by": [ - 2620, + 2619, "[player_performance_v_order_by!]" ], "where": [ - 2617 + 2616 ] } ], "player_performance_v_aggregate": [ - 2614, + 2613, { "distinct_on": [ - 2621, + 2620, "[player_performance_v_select_column!]" ], "limit": [ @@ -135393,35 +136290,35 @@ export default { 38 ], "order_by": [ - 2620, + 2619, "[player_performance_v_order_by!]" ], "where": [ - 2617 + 2616 ] } ], "player_performance_v_stream": [ - 2613, + 2612, { "batch_size": [ 38, "Int!" ], "cursor": [ - 2625, + 2624, "[player_performance_v_stream_cursor_input]!" ], "where": [ - 2617 + 2616 ] } ], "player_premier_rank_history": [ - 2631, + 2630, { "distinct_on": [ - 2652, + 2651, "[player_premier_rank_history_select_column!]" ], "limit": [ @@ -135431,19 +136328,19 @@ export default { 38 ], "order_by": [ - 2650, + 2649, "[player_premier_rank_history_order_by!]" ], "where": [ - 2640 + 2639 ] } ], "player_premier_rank_history_aggregate": [ - 2632, + 2631, { "distinct_on": [ - 2652, + 2651, "[player_premier_rank_history_select_column!]" ], "limit": [ @@ -135453,44 +136350,44 @@ export default { 38 ], "order_by": [ - 2650, + 2649, "[player_premier_rank_history_order_by!]" ], "where": [ - 2640 + 2639 ] } ], "player_premier_rank_history_by_pk": [ - 2631, + 2630, { "id": [ - 3864, + 3863, "uuid!" ] } ], "player_premier_rank_history_stream": [ - 2631, + 2630, { "batch_size": [ 38, "Int!" ], "cursor": [ - 2660, + 2659, "[player_premier_rank_history_stream_cursor_input]!" ], "where": [ - 2640 + 2639 ] } ], "player_sanctions": [ - 2672, + 2671, { "distinct_on": [ - 2693, + 2692, "[player_sanctions_select_column!]" ], "limit": [ @@ -135500,19 +136397,19 @@ export default { 38 ], "order_by": [ - 2691, + 2690, "[player_sanctions_order_by!]" ], "where": [ - 2681 + 2680 ] } ], "player_sanctions_aggregate": [ - 2673, + 2672, { "distinct_on": [ - 2693, + 2692, "[player_sanctions_select_column!]" ], "limit": [ @@ -135522,48 +136419,48 @@ export default { 38 ], "order_by": [ - 2691, + 2690, "[player_sanctions_order_by!]" ], "where": [ - 2681 + 2680 ] } ], "player_sanctions_by_pk": [ - 2672, + 2671, { "created_at": [ - 3467, + 3466, "timestamptz!" ], "id": [ - 3864, + 3863, "uuid!" ] } ], "player_sanctions_stream": [ - 2672, + 2671, { "batch_size": [ 38, "Int!" ], "cursor": [ - 2701, + 2700, "[player_sanctions_stream_cursor_input]!" ], "where": [ - 2681 + 2680 ] } ], "player_stats": [ - 2713, + 2712, { "distinct_on": [ - 2728, + 2727, "[player_stats_select_column!]" ], "limit": [ @@ -135573,19 +136470,19 @@ export default { 38 ], "order_by": [ - 2726, + 2725, "[player_stats_order_by!]" ], "where": [ - 2717 + 2716 ] } ], "player_stats_aggregate": [ - 2714, + 2713, { "distinct_on": [ - 2728, + 2727, "[player_stats_select_column!]" ], "limit": [ @@ -135595,44 +136492,44 @@ export default { 38 ], "order_by": [ - 2726, + 2725, "[player_stats_order_by!]" ], "where": [ - 2717 + 2716 ] } ], "player_stats_by_pk": [ - 2713, + 2712, { "player_steam_id": [ - 174, + 173, "bigint!" ] } ], "player_stats_stream": [ - 2713, + 2712, { "batch_size": [ 38, "Int!" ], "cursor": [ - 2733, + 2732, "[player_stats_stream_cursor_input]!" ], "where": [ - 2717 + 2716 ] } ], "player_steam_bot_friend": [ - 2741, + 2740, { "distinct_on": [ - 2760, + 2759, "[player_steam_bot_friend_select_column!]" ], "limit": [ @@ -135642,19 +136539,19 @@ export default { 38 ], "order_by": [ - 2757, + 2756, "[player_steam_bot_friend_order_by!]" ], "where": [ - 2746 + 2745 ] } ], "player_steam_bot_friend_aggregate": [ - 2742, + 2741, { "distinct_on": [ - 2760, + 2759, "[player_steam_bot_friend_select_column!]" ], "limit": [ @@ -135664,44 +136561,44 @@ export default { 38 ], "order_by": [ - 2757, + 2756, "[player_steam_bot_friend_order_by!]" ], "where": [ - 2746 + 2745 ] } ], "player_steam_bot_friend_by_pk": [ - 2741, + 2740, { "steam_id": [ - 174, + 173, "bigint!" ] } ], "player_steam_bot_friend_stream": [ - 2741, + 2740, { "batch_size": [ 38, "Int!" ], "cursor": [ - 2765, + 2764, "[player_steam_bot_friend_stream_cursor_input]!" ], "where": [ - 2746 + 2745 ] } ], "player_steam_match_auth": [ - 2773, + 2772, { "distinct_on": [ - 2787, + 2786, "[player_steam_match_auth_select_column!]" ], "limit": [ @@ -135711,19 +136608,19 @@ export default { 38 ], "order_by": [ - 2785, + 2784, "[player_steam_match_auth_order_by!]" ], "where": [ - 2777 + 2776 ] } ], "player_steam_match_auth_aggregate": [ - 2774, + 2773, { "distinct_on": [ - 2787, + 2786, "[player_steam_match_auth_select_column!]" ], "limit": [ @@ -135733,44 +136630,44 @@ export default { 38 ], "order_by": [ - 2785, + 2784, "[player_steam_match_auth_order_by!]" ], "where": [ - 2777 + 2776 ] } ], "player_steam_match_auth_by_pk": [ - 2773, + 2772, { "steam_id": [ - 174, + 173, "bigint!" ] } ], "player_steam_match_auth_stream": [ - 2773, + 2772, { "batch_size": [ 38, "Int!" ], "cursor": [ - 2792, + 2791, "[player_steam_match_auth_stream_cursor_input]!" ], "where": [ - 2777 + 2776 ] } ], "player_unused_utility": [ - 2800, + 2799, { "distinct_on": [ - 2821, + 2820, "[player_unused_utility_select_column!]" ], "limit": [ @@ -135780,19 +136677,19 @@ export default { 38 ], "order_by": [ - 2819, + 2818, "[player_unused_utility_order_by!]" ], "where": [ - 2809 + 2808 ] } ], "player_unused_utility_aggregate": [ - 2801, + 2800, { "distinct_on": [ - 2821, + 2820, "[player_unused_utility_select_column!]" ], "limit": [ @@ -135802,48 +136699,48 @@ export default { 38 ], "order_by": [ - 2819, + 2818, "[player_unused_utility_order_by!]" ], "where": [ - 2809 + 2808 ] } ], "player_unused_utility_by_pk": [ - 2800, + 2799, { "match_map_id": [ - 3864, + 3863, "uuid!" ], "player_steam_id": [ - 174, + 173, "bigint!" ] } ], "player_unused_utility_stream": [ - 2800, + 2799, { "batch_size": [ 38, "Int!" ], "cursor": [ - 2829, + 2828, "[player_unused_utility_stream_cursor_input]!" ], "where": [ - 2809 + 2808 ] } ], "player_utility": [ - 2841, + 2840, { "distinct_on": [ - 2862, + 2861, "[player_utility_select_column!]" ], "limit": [ @@ -135853,19 +136750,19 @@ export default { 38 ], "order_by": [ - 2860, + 2859, "[player_utility_order_by!]" ], "where": [ - 2850 + 2849 ] } ], "player_utility_aggregate": [ - 2842, + 2841, { "distinct_on": [ - 2862, + 2861, "[player_utility_select_column!]" ], "limit": [ @@ -135875,52 +136772,52 @@ export default { 38 ], "order_by": [ - 2860, + 2859, "[player_utility_order_by!]" ], "where": [ - 2850 + 2849 ] } ], "player_utility_by_pk": [ - 2841, + 2840, { "attacker_steam_id": [ - 174, + 173, "bigint!" ], "match_map_id": [ - 3864, + 3863, "uuid!" ], "time": [ - 3467, + 3466, "timestamptz!" ] } ], "player_utility_stream": [ - 2841, + 2840, { "batch_size": [ 38, "Int!" ], "cursor": [ - 2870, + 2869, "[player_utility_stream_cursor_input]!" ], "where": [ - 2850 + 2849 ] } ], "player_weapon_stats_v": [ - 2882, + 2881, { "distinct_on": [ - 2898, + 2897, "[player_weapon_stats_v_select_column!]" ], "limit": [ @@ -135930,19 +136827,19 @@ export default { 38 ], "order_by": [ - 2897, + 2896, "[player_weapon_stats_v_order_by!]" ], "where": [ - 2891 + 2890 ] } ], "player_weapon_stats_v_aggregate": [ - 2883, + 2882, { "distinct_on": [ - 2898, + 2897, "[player_weapon_stats_v_select_column!]" ], "limit": [ @@ -135952,35 +136849,35 @@ export default { 38 ], "order_by": [ - 2897, + 2896, "[player_weapon_stats_v_order_by!]" ], "where": [ - 2891 + 2890 ] } ], "player_weapon_stats_v_stream": [ - 2882, + 2881, { "batch_size": [ 38, "Int!" ], "cursor": [ - 2905, + 2904, "[player_weapon_stats_v_stream_cursor_input]!" ], "where": [ - 2891 + 2890 ] } ], "players": [ - 2915, + 2914, { "distinct_on": [ - 2930, + 2929, "[players_select_column!]" ], "limit": [ @@ -135990,19 +136887,19 @@ export default { 38 ], "order_by": [ - 2928, + 2927, "[players_order_by!]" ], "where": [ - 2919 + 2918 ] } ], "players_aggregate": [ - 2916, + 2915, { "distinct_on": [ - 2930, + 2929, "[players_select_column!]" ], "limit": [ @@ -136012,44 +136909,44 @@ export default { 38 ], "order_by": [ - 2928, + 2927, "[players_order_by!]" ], "where": [ - 2919 + 2918 ] } ], "players_by_pk": [ - 2915, + 2914, { "steam_id": [ - 174, + 173, "bigint!" ] } ], "players_stream": [ - 2915, + 2914, { "batch_size": [ 38, "Int!" ], "cursor": [ - 2935, + 2934, "[players_stream_cursor_input]!" ], "where": [ - 2919 + 2918 ] } ], "plugin_versions": [ - 2943, + 2942, { "distinct_on": [ - 2957, + 2956, "[plugin_versions_select_column!]" ], "limit": [ @@ -136059,19 +136956,19 @@ export default { 38 ], "order_by": [ - 2955, + 2954, "[plugin_versions_order_by!]" ], "where": [ - 2947 + 2946 ] } ], "plugin_versions_aggregate": [ - 2944, + 2943, { "distinct_on": [ - 2957, + 2956, "[plugin_versions_select_column!]" ], "limit": [ @@ -136081,44 +136978,44 @@ export default { 38 ], "order_by": [ - 2955, + 2954, "[plugin_versions_order_by!]" ], "where": [ - 2947 + 2946 ] } ], "plugin_versions_by_pk": [ - 2943, + 2942, { "version": [ - 75, + 74, "String!" ] } ], "plugin_versions_stream": [ - 2943, + 2942, { "batch_size": [ 38, "Int!" ], "cursor": [ - 2962, + 2961, "[plugin_versions_stream_cursor_input]!" ], "where": [ - 2947 + 2946 ] } ], "server_regions": [ - 2971, + 2970, { "distinct_on": [ - 2985, + 2984, "[server_regions_select_column!]" ], "limit": [ @@ -136128,19 +137025,19 @@ export default { 38 ], "order_by": [ - 2983, + 2982, "[server_regions_order_by!]" ], "where": [ - 2975 + 2974 ] } ], "server_regions_aggregate": [ - 2972, + 2971, { "distinct_on": [ - 2985, + 2984, "[server_regions_select_column!]" ], "limit": [ @@ -136150,44 +137047,44 @@ export default { 38 ], "order_by": [ - 2983, + 2982, "[server_regions_order_by!]" ], "where": [ - 2975 + 2974 ] } ], "server_regions_by_pk": [ - 2971, + 2970, { "value": [ - 75, + 74, "String!" ] } ], "server_regions_stream": [ - 2971, + 2970, { "batch_size": [ 38, "Int!" ], "cursor": [ - 2990, + 2989, "[server_regions_stream_cursor_input]!" ], "where": [ - 2975 + 2974 ] } ], "servers": [ - 2998, + 2997, { "distinct_on": [ - 3022, + 3021, "[servers_select_column!]" ], "limit": [ @@ -136197,19 +137094,19 @@ export default { 38 ], "order_by": [ - 3020, + 3019, "[servers_order_by!]" ], "where": [ - 3009 + 3008 ] } ], "servers_aggregate": [ - 2999, + 2998, { "distinct_on": [ - 3022, + 3021, "[servers_select_column!]" ], "limit": [ @@ -136219,44 +137116,44 @@ export default { 38 ], "order_by": [ - 3020, + 3019, "[servers_order_by!]" ], "where": [ - 3009 + 3008 ] } ], "servers_by_pk": [ - 2998, + 2997, { "id": [ - 3864, + 3863, "uuid!" ] } ], "servers_stream": [ - 2998, + 2997, { "batch_size": [ 38, "Int!" ], "cursor": [ - 3032, + 3031, "[servers_stream_cursor_input]!" ], "where": [ - 3009 + 3008 ] } ], "settings": [ - 3044, + 3043, { "distinct_on": [ - 3056, + 3055, "[settings_select_column!]" ], "limit": [ @@ -136266,19 +137163,19 @@ export default { 38 ], "order_by": [ - 3054, + 3053, "[settings_order_by!]" ], "where": [ - 3047 + 3046 ] } ], "settings_aggregate": [ - 3045, + 3044, { "distinct_on": [ - 3056, + 3055, "[settings_select_column!]" ], "limit": [ @@ -136288,44 +137185,44 @@ export default { 38 ], "order_by": [ - 3054, + 3053, "[settings_order_by!]" ], "where": [ - 3047 + 3046 ] } ], "settings_by_pk": [ - 3044, + 3043, { "name": [ - 75, + 74, "String!" ] } ], "settings_stream": [ - 3044, + 3043, { "batch_size": [ 38, "Int!" ], "cursor": [ - 3058, + 3057, "[settings_stream_cursor_input]!" ], "where": [ - 3047 + 3046 ] } ], "steam_account_claims": [ - 3062, + 3061, { "distinct_on": [ - 3080, + 3079, "[steam_account_claims_select_column!]" ], "limit": [ @@ -136335,19 +137232,19 @@ export default { 38 ], "order_by": [ - 3078, + 3077, "[steam_account_claims_order_by!]" ], "where": [ - 3069 + 3068 ] } ], "steam_account_claims_aggregate": [ - 3063, + 3062, { "distinct_on": [ - 3080, + 3079, "[steam_account_claims_select_column!]" ], "limit": [ @@ -136357,44 +137254,44 @@ export default { 38 ], "order_by": [ - 3078, + 3077, "[steam_account_claims_order_by!]" ], "where": [ - 3069 + 3068 ] } ], "steam_account_claims_by_pk": [ - 3062, + 3061, { "id": [ - 3864, + 3863, "uuid!" ] } ], "steam_account_claims_stream": [ - 3062, + 3061, { "batch_size": [ 38, "Int!" ], "cursor": [ - 3082, + 3081, "[steam_account_claims_stream_cursor_input]!" ], "where": [ - 3069 + 3068 ] } ], "steam_accounts": [ - 3086, + 3085, { "distinct_on": [ - 3101, + 3100, "[steam_accounts_select_column!]" ], "limit": [ @@ -136404,19 +137301,19 @@ export default { 38 ], "order_by": [ - 3099, + 3098, "[steam_accounts_order_by!]" ], "where": [ - 3090 + 3089 ] } ], "steam_accounts_aggregate": [ - 3087, + 3086, { "distinct_on": [ - 3101, + 3100, "[steam_accounts_select_column!]" ], "limit": [ @@ -136426,44 +137323,44 @@ export default { 38 ], "order_by": [ - 3099, + 3098, "[steam_accounts_order_by!]" ], "where": [ - 3090 + 3089 ] } ], "steam_accounts_by_pk": [ - 3086, + 3085, { "id": [ - 3864, + 3863, "uuid!" ] } ], "steam_accounts_stream": [ - 3086, + 3085, { "batch_size": [ 38, "Int!" ], "cursor": [ - 3106, + 3105, "[steam_accounts_stream_cursor_input]!" ], "where": [ - 3090 + 3089 ] } ], "system_alerts": [ - 3114, + 3113, { "distinct_on": [ - 3128, + 3127, "[system_alerts_select_column!]" ], "limit": [ @@ -136473,19 +137370,19 @@ export default { 38 ], "order_by": [ - 3126, + 3125, "[system_alerts_order_by!]" ], "where": [ - 3118 + 3117 ] } ], "system_alerts_aggregate": [ - 3115, + 3114, { "distinct_on": [ - 3128, + 3127, "[system_alerts_select_column!]" ], "limit": [ @@ -136495,44 +137392,44 @@ export default { 38 ], "order_by": [ - 3126, + 3125, "[system_alerts_order_by!]" ], "where": [ - 3118 + 3117 ] } ], "system_alerts_by_pk": [ - 3114, + 3113, { "id": [ - 3864, + 3863, "uuid!" ] } ], "system_alerts_stream": [ - 3114, + 3113, { "batch_size": [ 38, "Int!" ], "cursor": [ - 3133, + 3132, "[system_alerts_stream_cursor_input]!" ], "where": [ - 3118 + 3117 ] } ], "team_invites": [ - 3141, + 3140, { "distinct_on": [ - 3162, + 3161, "[team_invites_select_column!]" ], "limit": [ @@ -136542,19 +137439,19 @@ export default { 38 ], "order_by": [ - 3160, + 3159, "[team_invites_order_by!]" ], "where": [ - 3150 + 3149 ] } ], "team_invites_aggregate": [ - 3142, + 3141, { "distinct_on": [ - 3162, + 3161, "[team_invites_select_column!]" ], "limit": [ @@ -136564,44 +137461,44 @@ export default { 38 ], "order_by": [ - 3160, + 3159, "[team_invites_order_by!]" ], "where": [ - 3150 + 3149 ] } ], "team_invites_by_pk": [ - 3141, + 3140, { "id": [ - 3864, + 3863, "uuid!" ] } ], "team_invites_stream": [ - 3141, + 3140, { "batch_size": [ 38, "Int!" ], "cursor": [ - 3170, + 3169, "[team_invites_stream_cursor_input]!" ], "where": [ - 3150 + 3149 ] } ], "team_roster": [ - 3182, + 3181, { "distinct_on": [ - 3205, + 3204, "[team_roster_select_column!]" ], "limit": [ @@ -136611,19 +137508,19 @@ export default { 38 ], "order_by": [ - 3203, + 3202, "[team_roster_order_by!]" ], "where": [ - 3193 + 3192 ] } ], "team_roster_aggregate": [ - 3183, + 3182, { "distinct_on": [ - 3205, + 3204, "[team_roster_select_column!]" ], "limit": [ @@ -136633,48 +137530,48 @@ export default { 38 ], "order_by": [ - 3203, + 3202, "[team_roster_order_by!]" ], "where": [ - 3193 + 3192 ] } ], "team_roster_by_pk": [ - 3182, + 3181, { "player_steam_id": [ - 174, + 173, "bigint!" ], "team_id": [ - 3864, + 3863, "uuid!" ] } ], "team_roster_stream": [ - 3182, + 3181, { "batch_size": [ 38, "Int!" ], "cursor": [ - 3215, + 3214, "[team_roster_stream_cursor_input]!" ], "where": [ - 3193 + 3192 ] } ], "team_scrim_alerts": [ - 3227, + 3226, { "distinct_on": [ - 3241, + 3240, "[team_scrim_alerts_select_column!]" ], "limit": [ @@ -136684,19 +137581,19 @@ export default { 38 ], "order_by": [ - 3239, + 3238, "[team_scrim_alerts_order_by!]" ], "where": [ - 3231 + 3230 ] } ], "team_scrim_alerts_aggregate": [ - 3228, + 3227, { "distinct_on": [ - 3241, + 3240, "[team_scrim_alerts_select_column!]" ], "limit": [ @@ -136706,44 +137603,44 @@ export default { 38 ], "order_by": [ - 3239, + 3238, "[team_scrim_alerts_order_by!]" ], "where": [ - 3231 + 3230 ] } ], "team_scrim_alerts_by_pk": [ - 3227, + 3226, { "id": [ - 3864, + 3863, "uuid!" ] } ], "team_scrim_alerts_stream": [ - 3227, + 3226, { "batch_size": [ 38, "Int!" ], "cursor": [ - 3246, + 3245, "[team_scrim_alerts_stream_cursor_input]!" ], "where": [ - 3231 + 3230 ] } ], "team_scrim_availability": [ - 3254, + 3253, { "distinct_on": [ - 3274, + 3273, "[team_scrim_availability_select_column!]" ], "limit": [ @@ -136753,19 +137650,19 @@ export default { 38 ], "order_by": [ - 3272, + 3271, "[team_scrim_availability_order_by!]" ], "where": [ - 3263 + 3262 ] } ], "team_scrim_availability_aggregate": [ - 3255, + 3254, { "distinct_on": [ - 3274, + 3273, "[team_scrim_availability_select_column!]" ], "limit": [ @@ -136775,44 +137672,44 @@ export default { 38 ], "order_by": [ - 3272, + 3271, "[team_scrim_availability_order_by!]" ], "where": [ - 3263 + 3262 ] } ], "team_scrim_availability_by_pk": [ - 3254, + 3253, { "id": [ - 3864, + 3863, "uuid!" ] } ], "team_scrim_availability_stream": [ - 3254, + 3253, { "batch_size": [ 38, "Int!" ], "cursor": [ - 3278, + 3277, "[team_scrim_availability_stream_cursor_input]!" ], "where": [ - 3263 + 3262 ] } ], "team_scrim_request_proposals": [ - 3282, + 3281, { "distinct_on": [ - 3303, + 3302, "[team_scrim_request_proposals_select_column!]" ], "limit": [ @@ -136822,19 +137719,19 @@ export default { 38 ], "order_by": [ - 3301, + 3300, "[team_scrim_request_proposals_order_by!]" ], "where": [ - 3291 + 3290 ] } ], "team_scrim_request_proposals_aggregate": [ - 3283, + 3282, { "distinct_on": [ - 3303, + 3302, "[team_scrim_request_proposals_select_column!]" ], "limit": [ @@ -136844,44 +137741,44 @@ export default { 38 ], "order_by": [ - 3301, + 3300, "[team_scrim_request_proposals_order_by!]" ], "where": [ - 3291 + 3290 ] } ], "team_scrim_request_proposals_by_pk": [ - 3282, + 3281, { "id": [ - 3864, + 3863, "uuid!" ] } ], "team_scrim_request_proposals_stream": [ - 3282, + 3281, { "batch_size": [ 38, "Int!" ], "cursor": [ - 3311, + 3310, "[team_scrim_request_proposals_stream_cursor_input]!" ], "where": [ - 3291 + 3290 ] } ], "team_scrim_requests": [ - 3323, + 3322, { "distinct_on": [ - 3347, + 3346, "[team_scrim_requests_select_column!]" ], "limit": [ @@ -136891,19 +137788,19 @@ export default { 38 ], "order_by": [ - 3345, + 3344, "[team_scrim_requests_order_by!]" ], "where": [ - 3334 + 3333 ] } ], "team_scrim_requests_aggregate": [ - 3324, + 3323, { "distinct_on": [ - 3347, + 3346, "[team_scrim_requests_select_column!]" ], "limit": [ @@ -136913,44 +137810,44 @@ export default { 38 ], "order_by": [ - 3345, + 3344, "[team_scrim_requests_order_by!]" ], "where": [ - 3334 + 3333 ] } ], "team_scrim_requests_by_pk": [ - 3323, + 3322, { "id": [ - 3864, + 3863, "uuid!" ] } ], "team_scrim_requests_stream": [ - 3323, + 3322, { "batch_size": [ 38, "Int!" ], "cursor": [ - 3357, + 3356, "[team_scrim_requests_stream_cursor_input]!" ], "where": [ - 3334 + 3333 ] } ], "team_scrim_settings": [ - 3369, + 3368, { "distinct_on": [ - 3384, + 3383, "[team_scrim_settings_select_column!]" ], "limit": [ @@ -136960,19 +137857,19 @@ export default { 38 ], "order_by": [ - 3382, + 3381, "[team_scrim_settings_order_by!]" ], "where": [ - 3373 + 3372 ] } ], "team_scrim_settings_aggregate": [ - 3370, + 3369, { "distinct_on": [ - 3384, + 3383, "[team_scrim_settings_select_column!]" ], "limit": [ @@ -136982,44 +137879,44 @@ export default { 38 ], "order_by": [ - 3382, + 3381, "[team_scrim_settings_order_by!]" ], "where": [ - 3373 + 3372 ] } ], "team_scrim_settings_by_pk": [ - 3369, + 3368, { "id": [ - 3864, + 3863, "uuid!" ] } ], "team_scrim_settings_stream": [ - 3369, + 3368, { "batch_size": [ 38, "Int!" ], "cursor": [ - 3389, + 3388, "[team_scrim_settings_stream_cursor_input]!" ], "where": [ - 3373 + 3372 ] } ], "team_suggestions": [ - 3397, + 3396, { "distinct_on": [ - 3411, + 3410, "[team_suggestions_select_column!]" ], "limit": [ @@ -137029,19 +137926,19 @@ export default { 38 ], "order_by": [ - 3409, + 3408, "[team_suggestions_order_by!]" ], "where": [ - 3401 + 3400 ] } ], "team_suggestions_aggregate": [ - 3398, + 3397, { "distinct_on": [ - 3411, + 3410, "[team_suggestions_select_column!]" ], "limit": [ @@ -137051,44 +137948,44 @@ export default { 38 ], "order_by": [ - 3409, + 3408, "[team_suggestions_order_by!]" ], "where": [ - 3401 + 3400 ] } ], "team_suggestions_by_pk": [ - 3397, + 3396, { "id": [ - 3864, + 3863, "uuid!" ] } ], "team_suggestions_stream": [ - 3397, + 3396, { "batch_size": [ 38, "Int!" ], "cursor": [ - 3416, + 3415, "[team_suggestions_stream_cursor_input]!" ], "where": [ - 3401 + 3400 ] } ], "teams": [ - 3424, + 3423, { "distinct_on": [ - 3446, + 3445, "[teams_select_column!]" ], "limit": [ @@ -137098,19 +137995,19 @@ export default { 38 ], "order_by": [ - 3444, + 3443, "[teams_order_by!]" ], "where": [ - 3433 + 3432 ] } ], "teams_aggregate": [ - 3425, + 3424, { "distinct_on": [ - 3446, + 3445, "[teams_select_column!]" ], "limit": [ @@ -137120,44 +138017,44 @@ export default { 38 ], "order_by": [ - 3444, + 3443, "[teams_order_by!]" ], "where": [ - 3433 + 3432 ] } ], "teams_by_pk": [ - 3424, + 3423, { "id": [ - 3864, + 3863, "uuid!" ] } ], "teams_stream": [ - 3424, + 3423, { "batch_size": [ 38, "Int!" ], "cursor": [ - 3454, + 3453, "[teams_stream_cursor_input]!" ], "where": [ - 3433 + 3432 ] } ], "tournament_brackets": [ - 3469, + 3468, { "distinct_on": [ - 3493, + 3492, "[tournament_brackets_select_column!]" ], "limit": [ @@ -137167,19 +138064,19 @@ export default { 38 ], "order_by": [ - 3491, + 3490, "[tournament_brackets_order_by!]" ], "where": [ - 3480 + 3479 ] } ], "tournament_brackets_aggregate": [ - 3470, + 3469, { "distinct_on": [ - 3493, + 3492, "[tournament_brackets_select_column!]" ], "limit": [ @@ -137189,44 +138086,44 @@ export default { 38 ], "order_by": [ - 3491, + 3490, "[tournament_brackets_order_by!]" ], "where": [ - 3480 + 3479 ] } ], "tournament_brackets_by_pk": [ - 3469, + 3468, { "id": [ - 3864, + 3863, "uuid!" ] } ], "tournament_brackets_stream": [ - 3469, + 3468, { "batch_size": [ 38, "Int!" ], "cursor": [ - 3503, + 3502, "[tournament_brackets_stream_cursor_input]!" ], "where": [ - 3480 + 3479 ] } ], "tournament_organizers": [ - 3515, + 3514, { "distinct_on": [ - 3536, + 3535, "[tournament_organizers_select_column!]" ], "limit": [ @@ -137236,19 +138133,19 @@ export default { 38 ], "order_by": [ - 3534, + 3533, "[tournament_organizers_order_by!]" ], "where": [ - 3524 + 3523 ] } ], "tournament_organizers_aggregate": [ - 3516, + 3515, { "distinct_on": [ - 3536, + 3535, "[tournament_organizers_select_column!]" ], "limit": [ @@ -137258,48 +138155,48 @@ export default { 38 ], "order_by": [ - 3534, + 3533, "[tournament_organizers_order_by!]" ], "where": [ - 3524 + 3523 ] } ], "tournament_organizers_by_pk": [ - 3515, + 3514, { "steam_id": [ - 174, + 173, "bigint!" ], "tournament_id": [ - 3864, + 3863, "uuid!" ] } ], "tournament_organizers_stream": [ - 3515, + 3514, { "batch_size": [ 38, "Int!" ], "cursor": [ - 3544, + 3543, "[tournament_organizers_stream_cursor_input]!" ], "where": [ - 3524 + 3523 ] } ], "tournament_stages": [ - 3556, + 3555, { "distinct_on": [ - 3585, + 3584, "[tournament_stages_select_column!]" ], "limit": [ @@ -137309,19 +138206,19 @@ export default { 38 ], "order_by": [ - 3582, + 3581, "[tournament_stages_order_by!]" ], "where": [ - 3568 + 3567 ] } ], "tournament_stages_aggregate": [ - 3557, + 3556, { "distinct_on": [ - 3585, + 3584, "[tournament_stages_select_column!]" ], "limit": [ @@ -137331,44 +138228,44 @@ export default { 38 ], "order_by": [ - 3582, + 3581, "[tournament_stages_order_by!]" ], "where": [ - 3568 + 3567 ] } ], "tournament_stages_by_pk": [ - 3556, + 3555, { "id": [ - 3864, + 3863, "uuid!" ] } ], "tournament_stages_stream": [ - 3556, + 3555, { "batch_size": [ 38, "Int!" ], "cursor": [ - 3595, + 3594, "[tournament_stages_stream_cursor_input]!" ], "where": [ - 3568 + 3567 ] } ], "tournament_team_invites": [ - 3607, + 3606, { "distinct_on": [ - 3628, + 3627, "[tournament_team_invites_select_column!]" ], "limit": [ @@ -137378,19 +138275,19 @@ export default { 38 ], "order_by": [ - 3626, + 3625, "[tournament_team_invites_order_by!]" ], "where": [ - 3616 + 3615 ] } ], "tournament_team_invites_aggregate": [ - 3608, + 3607, { "distinct_on": [ - 3628, + 3627, "[tournament_team_invites_select_column!]" ], "limit": [ @@ -137400,44 +138297,44 @@ export default { 38 ], "order_by": [ - 3626, + 3625, "[tournament_team_invites_order_by!]" ], "where": [ - 3616 + 3615 ] } ], "tournament_team_invites_by_pk": [ - 3607, + 3606, { "id": [ - 3864, + 3863, "uuid!" ] } ], "tournament_team_invites_stream": [ - 3607, + 3606, { "batch_size": [ 38, "Int!" ], "cursor": [ - 3636, + 3635, "[tournament_team_invites_stream_cursor_input]!" ], "where": [ - 3616 + 3615 ] } ], "tournament_team_roster": [ - 3648, + 3647, { "distinct_on": [ - 3669, + 3668, "[tournament_team_roster_select_column!]" ], "limit": [ @@ -137447,19 +138344,19 @@ export default { 38 ], "order_by": [ - 3667, + 3666, "[tournament_team_roster_order_by!]" ], "where": [ - 3657 + 3656 ] } ], "tournament_team_roster_aggregate": [ - 3649, + 3648, { "distinct_on": [ - 3669, + 3668, "[tournament_team_roster_select_column!]" ], "limit": [ @@ -137469,48 +138366,48 @@ export default { 38 ], "order_by": [ - 3667, + 3666, "[tournament_team_roster_order_by!]" ], "where": [ - 3657 + 3656 ] } ], "tournament_team_roster_by_pk": [ - 3648, + 3647, { "player_steam_id": [ - 174, + 173, "bigint!" ], "tournament_id": [ - 3864, + 3863, "uuid!" ] } ], "tournament_team_roster_stream": [ - 3648, + 3647, { "batch_size": [ 38, "Int!" ], "cursor": [ - 3677, + 3676, "[tournament_team_roster_stream_cursor_input]!" ], "where": [ - 3657 + 3656 ] } ], "tournament_teams": [ - 3689, + 3688, { "distinct_on": [ - 3711, + 3710, "[tournament_teams_select_column!]" ], "limit": [ @@ -137520,19 +138417,19 @@ export default { 38 ], "order_by": [ - 3709, + 3708, "[tournament_teams_order_by!]" ], "where": [ - 3698 + 3697 ] } ], "tournament_teams_aggregate": [ - 3690, + 3689, { "distinct_on": [ - 3711, + 3710, "[tournament_teams_select_column!]" ], "limit": [ @@ -137542,44 +138439,44 @@ export default { 38 ], "order_by": [ - 3709, + 3708, "[tournament_teams_order_by!]" ], "where": [ - 3698 + 3697 ] } ], "tournament_teams_by_pk": [ - 3689, + 3688, { "id": [ - 3864, + 3863, "uuid!" ] } ], "tournament_teams_stream": [ - 3689, + 3688, { "batch_size": [ 38, "Int!" ], "cursor": [ - 3719, + 3718, "[tournament_teams_stream_cursor_input]!" ], "where": [ - 3698 + 3697 ] } ], "tournament_trophies": [ - 3731, + 3730, { "distinct_on": [ - 3754, + 3753, "[tournament_trophies_select_column!]" ], "limit": [ @@ -137589,19 +138486,19 @@ export default { 38 ], "order_by": [ - 3752, + 3751, "[tournament_trophies_order_by!]" ], "where": [ - 3742 + 3741 ] } ], "tournament_trophies_aggregate": [ - 3732, + 3731, { "distinct_on": [ - 3754, + 3753, "[tournament_trophies_select_column!]" ], "limit": [ @@ -137611,44 +138508,44 @@ export default { 38 ], "order_by": [ - 3752, + 3751, "[tournament_trophies_order_by!]" ], "where": [ - 3742 + 3741 ] } ], "tournament_trophies_by_pk": [ - 3731, + 3730, { "id": [ - 3864, + 3863, "uuid!" ] } ], "tournament_trophies_stream": [ - 3731, + 3730, { "batch_size": [ 38, "Int!" ], "cursor": [ - 3764, + 3763, "[tournament_trophies_stream_cursor_input]!" ], "where": [ - 3742 + 3741 ] } ], "tournament_trophy_configs": [ - 3776, + 3775, { "distinct_on": [ - 3798, + 3797, "[tournament_trophy_configs_select_column!]" ], "limit": [ @@ -137658,19 +138555,19 @@ export default { 38 ], "order_by": [ - 3796, + 3795, "[tournament_trophy_configs_order_by!]" ], "where": [ - 3785 + 3784 ] } ], "tournament_trophy_configs_aggregate": [ - 3777, + 3776, { "distinct_on": [ - 3798, + 3797, "[tournament_trophy_configs_select_column!]" ], "limit": [ @@ -137680,44 +138577,44 @@ export default { 38 ], "order_by": [ - 3796, + 3795, "[tournament_trophy_configs_order_by!]" ], "where": [ - 3785 + 3784 ] } ], "tournament_trophy_configs_by_pk": [ - 3776, + 3775, { "id": [ - 3864, + 3863, "uuid!" ] } ], "tournament_trophy_configs_stream": [ - 3776, + 3775, { "batch_size": [ 38, "Int!" ], "cursor": [ - 3806, + 3805, "[tournament_trophy_configs_stream_cursor_input]!" ], "where": [ - 3785 + 3784 ] } ], "tournaments": [ - 3818, + 3817, { "distinct_on": [ - 3842, + 3841, "[tournaments_select_column!]" ], "limit": [ @@ -137727,19 +138624,19 @@ export default { 38 ], "order_by": [ - 3840, + 3839, "[tournaments_order_by!]" ], "where": [ - 3829 + 3828 ] } ], "tournaments_aggregate": [ - 3819, + 3818, { "distinct_on": [ - 3842, + 3841, "[tournaments_select_column!]" ], "limit": [ @@ -137749,44 +138646,44 @@ export default { 38 ], "order_by": [ - 3840, + 3839, "[tournaments_order_by!]" ], "where": [ - 3829 + 3828 ] } ], "tournaments_by_pk": [ - 3818, + 3817, { "id": [ - 3864, + 3863, "uuid!" ] } ], "tournaments_stream": [ - 3818, + 3817, { "batch_size": [ 38, "Int!" ], "cursor": [ - 3852, + 3851, "[tournaments_stream_cursor_input]!" ], "where": [ - 3829 + 3828 ] } ], "v_gpu_pool_status": [ - 3867, + 3866, { "distinct_on": [ - 3875, + 3874, "[v_gpu_pool_status_select_column!]" ], "limit": [ @@ -137796,19 +138693,19 @@ export default { 38 ], "order_by": [ - 3874, + 3873, "[v_gpu_pool_status_order_by!]" ], "where": [ - 3871 + 3870 ] } ], "v_gpu_pool_status_aggregate": [ - 3868, + 3867, { "distinct_on": [ - 3875, + 3874, "[v_gpu_pool_status_select_column!]" ], "limit": [ @@ -137818,35 +138715,35 @@ export default { 38 ], "order_by": [ - 3874, + 3873, "[v_gpu_pool_status_order_by!]" ], "where": [ - 3871 + 3870 ] } ], "v_gpu_pool_status_stream": [ - 3867, + 3866, { "batch_size": [ 38, "Int!" ], "cursor": [ - 3879, + 3878, "[v_gpu_pool_status_stream_cursor_input]!" ], "where": [ - 3871 + 3870 ] } ], "v_match_captains": [ - 3885, + 3884, { "distinct_on": [ - 3897, + 3896, "[v_match_captains_select_column!]" ], "limit": [ @@ -137856,19 +138753,19 @@ export default { 38 ], "order_by": [ - 3896, + 3895, "[v_match_captains_order_by!]" ], "where": [ - 3889 + 3888 ] } ], "v_match_captains_aggregate": [ - 3886, + 3885, { "distinct_on": [ - 3897, + 3896, "[v_match_captains_select_column!]" ], "limit": [ @@ -137878,35 +138775,35 @@ export default { 38 ], "order_by": [ - 3896, + 3895, "[v_match_captains_order_by!]" ], "where": [ - 3889 + 3888 ] } ], "v_match_captains_stream": [ - 3885, + 3884, { "batch_size": [ 38, "Int!" ], "cursor": [ - 3902, + 3901, "[v_match_captains_stream_cursor_input]!" ], "where": [ - 3889 + 3888 ] } ], "v_match_clutches": [ - 3909, + 3908, { "distinct_on": [ - 3925, + 3924, "[v_match_clutches_select_column!]" ], "limit": [ @@ -137916,19 +138813,19 @@ export default { 38 ], "order_by": [ - 3924, + 3923, "[v_match_clutches_order_by!]" ], "where": [ - 3918 + 3917 ] } ], "v_match_clutches_aggregate": [ - 3910, + 3909, { "distinct_on": [ - 3925, + 3924, "[v_match_clutches_select_column!]" ], "limit": [ @@ -137938,35 +138835,35 @@ export default { 38 ], "order_by": [ - 3924, + 3923, "[v_match_clutches_order_by!]" ], "where": [ - 3918 + 3917 ] } ], "v_match_clutches_stream": [ - 3909, + 3908, { "batch_size": [ 38, "Int!" ], "cursor": [ - 3932, + 3931, "[v_match_clutches_stream_cursor_input]!" ], "where": [ - 3918 + 3917 ] } ], "v_match_kill_pairs": [ - 3942, + 3941, { "distinct_on": [ - 3950, + 3949, "[v_match_kill_pairs_select_column!]" ], "limit": [ @@ -137976,19 +138873,19 @@ export default { 38 ], "order_by": [ - 3949, + 3948, "[v_match_kill_pairs_order_by!]" ], "where": [ - 3946 + 3945 ] } ], "v_match_kill_pairs_aggregate": [ - 3943, + 3942, { "distinct_on": [ - 3950, + 3949, "[v_match_kill_pairs_select_column!]" ], "limit": [ @@ -137998,35 +138895,35 @@ export default { 38 ], "order_by": [ - 3949, + 3948, "[v_match_kill_pairs_order_by!]" ], "where": [ - 3946 + 3945 ] } ], "v_match_kill_pairs_stream": [ - 3942, + 3941, { "batch_size": [ 38, "Int!" ], "cursor": [ - 3954, + 3953, "[v_match_kill_pairs_stream_cursor_input]!" ], "where": [ - 3946 + 3945 ] } ], "v_match_lineup_buy_types": [ - 3960, + 3959, { "distinct_on": [ - 3968, + 3967, "[v_match_lineup_buy_types_select_column!]" ], "limit": [ @@ -138036,19 +138933,19 @@ export default { 38 ], "order_by": [ - 3967, + 3966, "[v_match_lineup_buy_types_order_by!]" ], "where": [ - 3964 + 3963 ] } ], "v_match_lineup_buy_types_aggregate": [ - 3961, + 3960, { "distinct_on": [ - 3968, + 3967, "[v_match_lineup_buy_types_select_column!]" ], "limit": [ @@ -138058,35 +138955,35 @@ export default { 38 ], "order_by": [ - 3967, + 3966, "[v_match_lineup_buy_types_order_by!]" ], "where": [ - 3964 + 3963 ] } ], "v_match_lineup_buy_types_stream": [ - 3960, + 3959, { "batch_size": [ 38, "Int!" ], "cursor": [ - 3972, + 3971, "[v_match_lineup_buy_types_stream_cursor_input]!" ], "where": [ - 3964 + 3963 ] } ], "v_match_lineup_map_stats": [ - 3978, + 3977, { "distinct_on": [ - 3986, + 3985, "[v_match_lineup_map_stats_select_column!]" ], "limit": [ @@ -138096,19 +138993,19 @@ export default { 38 ], "order_by": [ - 3985, + 3984, "[v_match_lineup_map_stats_order_by!]" ], "where": [ - 3982 + 3981 ] } ], "v_match_lineup_map_stats_aggregate": [ - 3979, + 3978, { "distinct_on": [ - 3986, + 3985, "[v_match_lineup_map_stats_select_column!]" ], "limit": [ @@ -138118,35 +139015,35 @@ export default { 38 ], "order_by": [ - 3985, + 3984, "[v_match_lineup_map_stats_order_by!]" ], "where": [ - 3982 + 3981 ] } ], "v_match_lineup_map_stats_stream": [ - 3978, + 3977, { "batch_size": [ 38, "Int!" ], "cursor": [ - 3990, + 3989, "[v_match_lineup_map_stats_stream_cursor_input]!" ], "where": [ - 3982 + 3981 ] } ], "v_match_map_backup_rounds": [ - 3996, + 3995, { "distinct_on": [ - 4007, + 4006, "[v_match_map_backup_rounds_select_column!]" ], "limit": [ @@ -138156,19 +139053,19 @@ export default { 38 ], "order_by": [ - 4006, + 4005, "[v_match_map_backup_rounds_order_by!]" ], "where": [ - 4000 + 3999 ] } ], "v_match_map_backup_rounds_aggregate": [ - 3997, + 3996, { "distinct_on": [ - 4007, + 4006, "[v_match_map_backup_rounds_select_column!]" ], "limit": [ @@ -138178,35 +139075,35 @@ export default { 38 ], "order_by": [ - 4006, + 4005, "[v_match_map_backup_rounds_order_by!]" ], "where": [ - 4000 + 3999 ] } ], "v_match_map_backup_rounds_stream": [ - 3996, + 3995, { "batch_size": [ 38, "Int!" ], "cursor": [ - 4012, + 4011, "[v_match_map_backup_rounds_stream_cursor_input]!" ], "where": [ - 4000 + 3999 ] } ], "v_match_player_buy_types": [ - 4019, + 4018, { "distinct_on": [ - 4027, + 4026, "[v_match_player_buy_types_select_column!]" ], "limit": [ @@ -138216,19 +139113,19 @@ export default { 38 ], "order_by": [ - 4026, + 4025, "[v_match_player_buy_types_order_by!]" ], "where": [ - 4023 + 4022 ] } ], "v_match_player_buy_types_aggregate": [ - 4020, + 4019, { "distinct_on": [ - 4027, + 4026, "[v_match_player_buy_types_select_column!]" ], "limit": [ @@ -138238,35 +139135,35 @@ export default { 38 ], "order_by": [ - 4026, + 4025, "[v_match_player_buy_types_order_by!]" ], "where": [ - 4023 + 4022 ] } ], "v_match_player_buy_types_stream": [ - 4019, + 4018, { "batch_size": [ 38, "Int!" ], "cursor": [ - 4031, + 4030, "[v_match_player_buy_types_stream_cursor_input]!" ], "where": [ - 4023 + 4022 ] } ], "v_match_player_opening_duels": [ - 4037, + 4036, { "distinct_on": [ - 4053, + 4052, "[v_match_player_opening_duels_select_column!]" ], "limit": [ @@ -138276,19 +139173,19 @@ export default { 38 ], "order_by": [ - 4052, + 4051, "[v_match_player_opening_duels_order_by!]" ], "where": [ - 4046 + 4045 ] } ], "v_match_player_opening_duels_aggregate": [ - 4038, + 4037, { "distinct_on": [ - 4053, + 4052, "[v_match_player_opening_duels_select_column!]" ], "limit": [ @@ -138298,35 +139195,35 @@ export default { 38 ], "order_by": [ - 4052, + 4051, "[v_match_player_opening_duels_order_by!]" ], "where": [ - 4046 + 4045 ] } ], "v_match_player_opening_duels_stream": [ - 4037, + 4036, { "batch_size": [ 38, "Int!" ], "cursor": [ - 4060, + 4059, "[v_match_player_opening_duels_stream_cursor_input]!" ], "where": [ - 4046 + 4045 ] } ], "v_player_arch_nemesis": [ - 4070, + 4069, { "distinct_on": [ - 4078, + 4077, "[v_player_arch_nemesis_select_column!]" ], "limit": [ @@ -138336,19 +139233,19 @@ export default { 38 ], "order_by": [ - 4077, + 4076, "[v_player_arch_nemesis_order_by!]" ], "where": [ - 4074 + 4073 ] } ], "v_player_arch_nemesis_aggregate": [ - 4071, + 4070, { "distinct_on": [ - 4078, + 4077, "[v_player_arch_nemesis_select_column!]" ], "limit": [ @@ -138358,35 +139255,35 @@ export default { 38 ], "order_by": [ - 4077, + 4076, "[v_player_arch_nemesis_order_by!]" ], "where": [ - 4074 + 4073 ] } ], "v_player_arch_nemesis_stream": [ - 4070, + 4069, { "batch_size": [ 38, "Int!" ], "cursor": [ - 4082, + 4081, "[v_player_arch_nemesis_stream_cursor_input]!" ], "where": [ - 4074 + 4073 ] } ], "v_player_damage": [ - 4088, + 4087, { "distinct_on": [ - 4096, + 4095, "[v_player_damage_select_column!]" ], "limit": [ @@ -138396,19 +139293,19 @@ export default { 38 ], "order_by": [ - 4095, + 4094, "[v_player_damage_order_by!]" ], "where": [ - 4092 + 4091 ] } ], "v_player_damage_aggregate": [ - 4089, + 4088, { "distinct_on": [ - 4096, + 4095, "[v_player_damage_select_column!]" ], "limit": [ @@ -138418,35 +139315,35 @@ export default { 38 ], "order_by": [ - 4095, + 4094, "[v_player_damage_order_by!]" ], "where": [ - 4092 + 4091 ] } ], "v_player_damage_stream": [ - 4088, + 4087, { "batch_size": [ 38, "Int!" ], "cursor": [ - 4100, + 4099, "[v_player_damage_stream_cursor_input]!" ], "where": [ - 4092 + 4091 ] } ], "v_player_elo": [ - 4106, + 4105, { "distinct_on": [ - 4132, + 4131, "[v_player_elo_select_column!]" ], "limit": [ @@ -138456,19 +139353,19 @@ export default { 38 ], "order_by": [ - 4131, + 4130, "[v_player_elo_order_by!]" ], "where": [ - 4125 + 4124 ] } ], "v_player_elo_aggregate": [ - 4107, + 4106, { "distinct_on": [ - 4132, + 4131, "[v_player_elo_select_column!]" ], "limit": [ @@ -138478,35 +139375,35 @@ export default { 38 ], "order_by": [ - 4131, + 4130, "[v_player_elo_order_by!]" ], "where": [ - 4125 + 4124 ] } ], "v_player_elo_stream": [ - 4106, + 4105, { "batch_size": [ 38, "Int!" ], "cursor": [ - 4147, + 4146, "[v_player_elo_stream_cursor_input]!" ], "where": [ - 4125 + 4124 ] } ], "v_player_map_losses": [ - 4157, + 4156, { "distinct_on": [ - 4165, + 4164, "[v_player_map_losses_select_column!]" ], "limit": [ @@ -138516,19 +139413,19 @@ export default { 38 ], "order_by": [ - 4164, + 4163, "[v_player_map_losses_order_by!]" ], "where": [ - 4161 + 4160 ] } ], "v_player_map_losses_aggregate": [ - 4158, + 4157, { "distinct_on": [ - 4165, + 4164, "[v_player_map_losses_select_column!]" ], "limit": [ @@ -138538,35 +139435,35 @@ export default { 38 ], "order_by": [ - 4164, + 4163, "[v_player_map_losses_order_by!]" ], "where": [ - 4161 + 4160 ] } ], "v_player_map_losses_stream": [ - 4157, + 4156, { "batch_size": [ 38, "Int!" ], "cursor": [ - 4169, + 4168, "[v_player_map_losses_stream_cursor_input]!" ], "where": [ - 4161 + 4160 ] } ], "v_player_map_wins": [ - 4175, + 4174, { "distinct_on": [ - 4183, + 4182, "[v_player_map_wins_select_column!]" ], "limit": [ @@ -138576,19 +139473,19 @@ export default { 38 ], "order_by": [ - 4182, + 4181, "[v_player_map_wins_order_by!]" ], "where": [ - 4179 + 4178 ] } ], "v_player_map_wins_aggregate": [ - 4176, + 4175, { "distinct_on": [ - 4183, + 4182, "[v_player_map_wins_select_column!]" ], "limit": [ @@ -138598,35 +139495,35 @@ export default { 38 ], "order_by": [ - 4182, + 4181, "[v_player_map_wins_order_by!]" ], "where": [ - 4179 + 4178 ] } ], "v_player_map_wins_stream": [ - 4175, + 4174, { "batch_size": [ 38, "Int!" ], "cursor": [ - 4187, + 4186, "[v_player_map_wins_stream_cursor_input]!" ], "where": [ - 4179 + 4178 ] } ], "v_player_match_head_to_head": [ - 4193, + 4192, { "distinct_on": [ - 4201, + 4200, "[v_player_match_head_to_head_select_column!]" ], "limit": [ @@ -138636,19 +139533,19 @@ export default { 38 ], "order_by": [ - 4200, + 4199, "[v_player_match_head_to_head_order_by!]" ], "where": [ - 4197 + 4196 ] } ], "v_player_match_head_to_head_aggregate": [ - 4194, + 4193, { "distinct_on": [ - 4201, + 4200, "[v_player_match_head_to_head_select_column!]" ], "limit": [ @@ -138658,35 +139555,35 @@ export default { 38 ], "order_by": [ - 4200, + 4199, "[v_player_match_head_to_head_order_by!]" ], "where": [ - 4197 + 4196 ] } ], "v_player_match_head_to_head_stream": [ - 4193, + 4192, { "batch_size": [ 38, "Int!" ], "cursor": [ - 4205, + 4204, "[v_player_match_head_to_head_stream_cursor_input]!" ], "where": [ - 4197 + 4196 ] } ], "v_player_match_map_hltv": [ - 4211, + 4210, { "distinct_on": [ - 4229, + 4228, "[v_player_match_map_hltv_select_column!]" ], "limit": [ @@ -138696,19 +139593,19 @@ export default { 38 ], "order_by": [ - 4228, + 4227, "[v_player_match_map_hltv_order_by!]" ], "where": [ - 4220 + 4219 ] } ], "v_player_match_map_hltv_aggregate": [ - 4212, + 4211, { "distinct_on": [ - 4229, + 4228, "[v_player_match_map_hltv_select_column!]" ], "limit": [ @@ -138718,35 +139615,35 @@ export default { 38 ], "order_by": [ - 4228, + 4227, "[v_player_match_map_hltv_order_by!]" ], "where": [ - 4220 + 4219 ] } ], "v_player_match_map_hltv_stream": [ - 4211, + 4210, { "batch_size": [ 38, "Int!" ], "cursor": [ - 4237, + 4236, "[v_player_match_map_hltv_stream_cursor_input]!" ], "where": [ - 4220 + 4219 ] } ], "v_player_match_map_roles": [ - 4248, + 4247, { "distinct_on": [ - 4256, + 4255, "[v_player_match_map_roles_select_column!]" ], "limit": [ @@ -138756,19 +139653,19 @@ export default { 38 ], "order_by": [ - 4255, + 4254, "[v_player_match_map_roles_order_by!]" ], "where": [ - 4252 + 4251 ] } ], "v_player_match_map_roles_aggregate": [ - 4249, + 4248, { "distinct_on": [ - 4256, + 4255, "[v_player_match_map_roles_select_column!]" ], "limit": [ @@ -138778,35 +139675,35 @@ export default { 38 ], "order_by": [ - 4255, + 4254, "[v_player_match_map_roles_order_by!]" ], "where": [ - 4252 + 4251 ] } ], "v_player_match_map_roles_stream": [ - 4248, + 4247, { "batch_size": [ 38, "Int!" ], "cursor": [ - 4260, + 4259, "[v_player_match_map_roles_stream_cursor_input]!" ], "where": [ - 4252 + 4251 ] } ], "v_player_match_performance": [ - 4266, + 4265, { "distinct_on": [ - 4274, + 4273, "[v_player_match_performance_select_column!]" ], "limit": [ @@ -138816,19 +139713,19 @@ export default { 38 ], "order_by": [ - 4273, + 4272, "[v_player_match_performance_order_by!]" ], "where": [ - 4270 + 4269 ] } ], "v_player_match_performance_aggregate": [ - 4267, + 4266, { "distinct_on": [ - 4274, + 4273, "[v_player_match_performance_select_column!]" ], "limit": [ @@ -138838,35 +139735,35 @@ export default { 38 ], "order_by": [ - 4273, + 4272, "[v_player_match_performance_order_by!]" ], "where": [ - 4270 + 4269 ] } ], "v_player_match_performance_stream": [ - 4266, + 4265, { "batch_size": [ 38, "Int!" ], "cursor": [ - 4278, + 4277, "[v_player_match_performance_stream_cursor_input]!" ], "where": [ - 4270 + 4269 ] } ], "v_player_match_rating": [ - 4284, + 4283, { "distinct_on": [ - 4292, + 4291, "[v_player_match_rating_select_column!]" ], "limit": [ @@ -138876,19 +139773,19 @@ export default { 38 ], "order_by": [ - 4291, + 4290, "[v_player_match_rating_order_by!]" ], "where": [ - 4288 + 4287 ] } ], "v_player_match_rating_aggregate": [ - 4285, + 4284, { "distinct_on": [ - 4292, + 4291, "[v_player_match_rating_select_column!]" ], "limit": [ @@ -138898,35 +139795,35 @@ export default { 38 ], "order_by": [ - 4291, + 4290, "[v_player_match_rating_order_by!]" ], "where": [ - 4288 + 4287 ] } ], "v_player_match_rating_stream": [ - 4284, + 4283, { "batch_size": [ 38, "Int!" ], "cursor": [ - 4296, + 4295, "[v_player_match_rating_stream_cursor_input]!" ], "where": [ - 4288 + 4287 ] } ], "v_player_multi_kills": [ - 4302, + 4301, { "distinct_on": [ - 4318, + 4317, "[v_player_multi_kills_select_column!]" ], "limit": [ @@ -138936,19 +139833,19 @@ export default { 38 ], "order_by": [ - 4317, + 4316, "[v_player_multi_kills_order_by!]" ], "where": [ - 4311 + 4310 ] } ], "v_player_multi_kills_aggregate": [ - 4303, + 4302, { "distinct_on": [ - 4318, + 4317, "[v_player_multi_kills_select_column!]" ], "limit": [ @@ -138958,35 +139855,35 @@ export default { 38 ], "order_by": [ - 4317, + 4316, "[v_player_multi_kills_order_by!]" ], "where": [ - 4311 + 4310 ] } ], "v_player_multi_kills_stream": [ - 4302, + 4301, { "batch_size": [ 38, "Int!" ], "cursor": [ - 4325, + 4324, "[v_player_multi_kills_stream_cursor_input]!" ], "where": [ - 4311 + 4310 ] } ], "v_player_weapon_damage": [ - 4335, + 4334, { "distinct_on": [ - 4343, + 4342, "[v_player_weapon_damage_select_column!]" ], "limit": [ @@ -138996,19 +139893,19 @@ export default { 38 ], "order_by": [ - 4342, + 4341, "[v_player_weapon_damage_order_by!]" ], "where": [ - 4339 + 4338 ] } ], "v_player_weapon_damage_aggregate": [ - 4336, + 4335, { "distinct_on": [ - 4343, + 4342, "[v_player_weapon_damage_select_column!]" ], "limit": [ @@ -139018,35 +139915,35 @@ export default { 38 ], "order_by": [ - 4342, + 4341, "[v_player_weapon_damage_order_by!]" ], "where": [ - 4339 + 4338 ] } ], "v_player_weapon_damage_stream": [ - 4335, + 4334, { "batch_size": [ 38, "Int!" ], "cursor": [ - 4347, + 4346, "[v_player_weapon_damage_stream_cursor_input]!" ], "where": [ - 4339 + 4338 ] } ], "v_player_weapon_kills": [ - 4353, + 4352, { "distinct_on": [ - 4361, + 4360, "[v_player_weapon_kills_select_column!]" ], "limit": [ @@ -139056,19 +139953,19 @@ export default { 38 ], "order_by": [ - 4360, + 4359, "[v_player_weapon_kills_order_by!]" ], "where": [ - 4357 + 4356 ] } ], "v_player_weapon_kills_aggregate": [ - 4354, + 4353, { "distinct_on": [ - 4361, + 4360, "[v_player_weapon_kills_select_column!]" ], "limit": [ @@ -139078,35 +139975,35 @@ export default { 38 ], "order_by": [ - 4360, + 4359, "[v_player_weapon_kills_order_by!]" ], "where": [ - 4357 + 4356 ] } ], "v_player_weapon_kills_stream": [ - 4353, + 4352, { "batch_size": [ 38, "Int!" ], "cursor": [ - 4365, + 4364, "[v_player_weapon_kills_stream_cursor_input]!" ], "where": [ - 4357 + 4356 ] } ], "v_pool_maps": [ - 4371, + 4370, { "distinct_on": [ - 4388, + 4387, "[v_pool_maps_select_column!]" ], "limit": [ @@ -139116,19 +140013,19 @@ export default { 38 ], "order_by": [ - 4387, + 4386, "[v_pool_maps_order_by!]" ], "where": [ - 4380 + 4379 ] } ], "v_pool_maps_aggregate": [ - 4372, + 4371, { "distinct_on": [ - 4388, + 4387, "[v_pool_maps_select_column!]" ], "limit": [ @@ -139138,35 +140035,35 @@ export default { 38 ], "order_by": [ - 4387, + 4386, "[v_pool_maps_order_by!]" ], "where": [ - 4380 + 4379 ] } ], "v_pool_maps_stream": [ - 4371, + 4370, { "batch_size": [ 38, "Int!" ], "cursor": [ - 4392, + 4391, "[v_pool_maps_stream_cursor_input]!" ], "where": [ - 4380 + 4379 ] } ], "v_steam_account_pool_status": [ - 4395, + 4394, { "distinct_on": [ - 4403, + 4402, "[v_steam_account_pool_status_select_column!]" ], "limit": [ @@ -139176,19 +140073,19 @@ export default { 38 ], "order_by": [ - 4402, + 4401, "[v_steam_account_pool_status_order_by!]" ], "where": [ - 4399 + 4398 ] } ], "v_steam_account_pool_status_aggregate": [ - 4396, + 4395, { "distinct_on": [ - 4403, + 4402, "[v_steam_account_pool_status_select_column!]" ], "limit": [ @@ -139198,35 +140095,35 @@ export default { 38 ], "order_by": [ - 4402, + 4401, "[v_steam_account_pool_status_order_by!]" ], "where": [ - 4399 + 4398 ] } ], "v_steam_account_pool_status_stream": [ - 4395, + 4394, { "batch_size": [ 38, "Int!" ], "cursor": [ - 4407, + 4406, "[v_steam_account_pool_status_stream_cursor_input]!" ], "where": [ - 4399 + 4398 ] } ], "v_team_ranks": [ - 4413, + 4412, { "distinct_on": [ - 4423, + 4422, "[v_team_ranks_select_column!]" ], "limit": [ @@ -139236,19 +140133,19 @@ export default { 38 ], "order_by": [ - 4422, + 4421, "[v_team_ranks_order_by!]" ], "where": [ - 4417 + 4416 ] } ], "v_team_ranks_aggregate": [ - 4414, + 4413, { "distinct_on": [ - 4423, + 4422, "[v_team_ranks_select_column!]" ], "limit": [ @@ -139258,35 +140155,35 @@ export default { 38 ], "order_by": [ - 4422, + 4421, "[v_team_ranks_order_by!]" ], "where": [ - 4417 + 4416 ] } ], "v_team_ranks_stream": [ - 4413, + 4412, { "batch_size": [ 38, "Int!" ], "cursor": [ - 4427, + 4426, "[v_team_ranks_stream_cursor_input]!" ], "where": [ - 4417 + 4416 ] } ], "v_team_reputation": [ - 4433, + 4432, { "distinct_on": [ - 4443, + 4442, "[v_team_reputation_select_column!]" ], "limit": [ @@ -139296,19 +140193,19 @@ export default { 38 ], "order_by": [ - 4442, + 4441, "[v_team_reputation_order_by!]" ], "where": [ - 4437 + 4436 ] } ], "v_team_reputation_aggregate": [ - 4434, + 4433, { "distinct_on": [ - 4443, + 4442, "[v_team_reputation_select_column!]" ], "limit": [ @@ -139318,35 +140215,35 @@ export default { 38 ], "order_by": [ - 4442, + 4441, "[v_team_reputation_order_by!]" ], "where": [ - 4437 + 4436 ] } ], "v_team_reputation_stream": [ - 4433, + 4432, { "batch_size": [ 38, "Int!" ], "cursor": [ - 4447, + 4446, "[v_team_reputation_stream_cursor_input]!" ], "where": [ - 4437 + 4436 ] } ], "v_team_stage_results": [ - 4453, + 4452, { "distinct_on": [ - 4485, + 4484, "[v_team_stage_results_select_column!]" ], "limit": [ @@ -139356,19 +140253,19 @@ export default { 38 ], "order_by": [ - 4483, + 4482, "[v_team_stage_results_order_by!]" ], "where": [ - 4472 + 4471 ] } ], "v_team_stage_results_aggregate": [ - 4454, + 4453, { "distinct_on": [ - 4485, + 4484, "[v_team_stage_results_select_column!]" ], "limit": [ @@ -139378,48 +140275,48 @@ export default { 38 ], "order_by": [ - 4483, + 4482, "[v_team_stage_results_order_by!]" ], "where": [ - 4472 + 4471 ] } ], "v_team_stage_results_by_pk": [ - 4453, + 4452, { "tournament_stage_id": [ - 3864, + 3863, "uuid!" ], "tournament_team_id": [ - 3864, + 3863, "uuid!" ] } ], "v_team_stage_results_stream": [ - 4453, + 4452, { "batch_size": [ 38, "Int!" ], "cursor": [ - 4501, + 4500, "[v_team_stage_results_stream_cursor_input]!" ], "where": [ - 4472 + 4471 ] } ], "v_team_tournament_results": [ - 4513, + 4512, { "distinct_on": [ - 4539, + 4538, "[v_team_tournament_results_select_column!]" ], "limit": [ @@ -139429,19 +140326,19 @@ export default { 38 ], "order_by": [ - 4538, + 4537, "[v_team_tournament_results_order_by!]" ], "where": [ - 4532 + 4531 ] } ], "v_team_tournament_results_aggregate": [ - 4514, + 4513, { "distinct_on": [ - 4539, + 4538, "[v_team_tournament_results_select_column!]" ], "limit": [ @@ -139451,35 +140348,35 @@ export default { 38 ], "order_by": [ - 4538, + 4537, "[v_team_tournament_results_order_by!]" ], "where": [ - 4532 + 4531 ] } ], "v_team_tournament_results_stream": [ - 4513, + 4512, { "batch_size": [ 38, "Int!" ], "cursor": [ - 4554, + 4553, "[v_team_tournament_results_stream_cursor_input]!" ], "where": [ - 4532 + 4531 ] } ], "v_tournament_player_stats": [ - 4564, + 4563, { "distinct_on": [ - 4590, + 4589, "[v_tournament_player_stats_select_column!]" ], "limit": [ @@ -139489,19 +140386,19 @@ export default { 38 ], "order_by": [ - 4589, + 4588, "[v_tournament_player_stats_order_by!]" ], "where": [ - 4583 + 4582 ] } ], "v_tournament_player_stats_aggregate": [ - 4565, + 4564, { "distinct_on": [ - 4590, + 4589, "[v_tournament_player_stats_select_column!]" ], "limit": [ @@ -139511,32 +140408,32 @@ export default { 38 ], "order_by": [ - 4589, + 4588, "[v_tournament_player_stats_order_by!]" ], "where": [ - 4583 + 4582 ] } ], "v_tournament_player_stats_stream": [ - 4564, + 4563, { "batch_size": [ 38, "Int!" ], "cursor": [ - 4605, + 4604, "[v_tournament_player_stats_stream_cursor_input]!" ], "where": [ - 4583 + 4582 ] } ], "__typename": [ - 75 + 74 ] } } diff --git a/hasura/metadata/databases/default/tables/public_v_my_friends.yaml b/hasura/metadata/databases/default/tables/public_v_my_friends.yaml index f3378131..758038f6 100644 --- a/hasura/metadata/databases/default/tables/public_v_my_friends.yaml +++ b/hasura/metadata/databases/default/tables/public_v_my_friends.yaml @@ -39,6 +39,8 @@ select_permissions: - role - status - steam_id + - last_presence_state + - presence_updated_at filter: friend_steam_id: _eq: X-Hasura-User-Id diff --git a/hasura/metadata/databases/default/tables/tables.yaml b/hasura/metadata/databases/default/tables/tables.yaml index 30df3eae..37c6fb57 100644 --- a/hasura/metadata/databases/default/tables/tables.yaml +++ b/hasura/metadata/databases/default/tables/tables.yaml @@ -89,7 +89,6 @@ - "!include public_player_stats.yaml" - "!include public_player_steam_bot_friend.yaml" - "!include public_player_steam_match_auth.yaml" -- "!include public_steam_presence_events.yaml" - "!include public_player_unused_utility.yaml" - "!include public_player_utility.yaml" - "!include public_players.yaml" diff --git a/hasura/views/v_my_friends.sql b/hasura/views/v_my_friends.sql index f83b9d83..f32d6303 100644 --- a/hasura/views/v_my_friends.sql +++ b/hasura/views/v_my_friends.sql @@ -26,9 +26,13 @@ SELECT DISTINCT ON (p.steam_id, fr.friend_steam_id) fr.status, fr.friend_steam_id, fr.invited_by_steam_id, - get_player_elo(p) AS elo + get_player_elo(p) AS elo, + pbf.last_presence_state, + pbf.updated_at AS presence_updated_at FROM friend_relationships fr -JOIN players p ON p.steam_id = fr.player_steam_id; +JOIN players p ON p.steam_id = fr.player_steam_id +LEFT JOIN player_steam_bot_friend pbf + ON pbf.steam_id = p.steam_id AND pbf.status = 'friends'; CREATE OR REPLACE FUNCTION public.ti_v_my_friends() RETURNS trigger LANGUAGE plpgsql diff --git a/src/postgres/jobs/ReindexTables.ts b/src/postgres/jobs/ReindexTables.ts index 68a2e86c..3fa150eb 100644 --- a/src/postgres/jobs/ReindexTables.ts +++ b/src/postgres/jobs/ReindexTables.ts @@ -26,8 +26,12 @@ export class ReindexTables extends WorkerHost { const start = Date.now(); await this.postgres.query(`REINDEX TABLE CONCURRENTLY ${job.data.table}`); + await this.postgres.query(`VACUUM (ANALYZE) ${job.data.table}`); - this.logger.log(`Reindexed ${job.data.table}`, `${Date.now() - start}ms`); + this.logger.log( + `Reindexed + vacuumed ${job.data.table}`, + `${Date.now() - start}ms`, + ); return; } diff --git a/src/steam-presence/presence.spec.ts b/src/steam-presence/presence.spec.ts index 04d09860..d06a06c6 100644 --- a/src/steam-presence/presence.spec.ts +++ b/src/steam-presence/presence.spec.ts @@ -12,6 +12,8 @@ describe("parseCs2Presence", () => { inMatch: false, mode: null, map: null, + score: null, + display: null, }); }); @@ -47,9 +49,33 @@ describe("parseCs2Presence", () => { inMatch: true, mode: "premier", map: "de_mirage", + score: "5:3", + display: null, }); }); + it("captures Steam's localized display string (e.g. deathmatch)", () => { + const state = parseCs2Presence({ + gameid: "730", + display: "Deathmatch - Dust II", + }); + expect(state.inCs2).toBe(true); + expect(state.display).toBe("Deathmatch - Dust II"); + }); + + it("normalizes a spaced score", () => { + const state = parseCs2Presence({ + gameid: 730, + richPresence: { + "game:state": "game", + "game:mode": "competitive", + "game:map": "de_dust2", + "game:score": "12 : 9", + }, + }); + expect(state.score).toBe("12:9"); + }); + it("detects an active competitive match", () => { const state = parseCs2Presence({ gameid: "730", @@ -136,6 +162,8 @@ describe("isMatchEndTransition", () => { inMatch: true, mode: "premier", map: "de_mirage", + score: "5:3", + display: null, }; const menu: Cs2PresenceState = { inCs2: true, @@ -143,6 +171,8 @@ describe("isMatchEndTransition", () => { inMatch: false, mode: null, map: null, + score: null, + display: null, }; const offline: Cs2PresenceState = { inCs2: false, @@ -150,6 +180,8 @@ describe("isMatchEndTransition", () => { inMatch: false, mode: null, map: null, + score: null, + display: null, }; it("fires when a match ends back to menu", () => { diff --git a/src/steam-presence/presence.ts b/src/steam-presence/presence.ts index 35b5f6a0..d8a68744 100644 --- a/src/steam-presence/presence.ts +++ b/src/steam-presence/presence.ts @@ -23,6 +23,11 @@ export type Cs2PresenceState = { // survival, "" for custom servers). null when unknown. mode: string | null; map: string | null; + // Current map score, e.g. "5:3" (from `game:score`). null when not in a game. + score: string | null; + // Steam's own localized friends-list string, e.g. "Deathmatch - Dust II". + // The most reliable label — mirrors exactly what Steam shows. null if absent. + display: string | null; }; type RawRichPresence = @@ -36,6 +41,8 @@ export type PresenceInput = { gameid?: string | number | null; // Rich presence as either the steam-user array form ([{key,value}]) or a map. richPresence?: RawRichPresence; + // Steam's localized display string, if available. + display?: string | null; }; function normalizeRichPresence(rp: RawRichPresence): Record { @@ -74,9 +81,19 @@ function looksInGame(state: string | undefined, display: string | undefined): bo } export function parseCs2Presence(input: PresenceInput): Cs2PresenceState { - const inCs2 = input.gameid != null && String(input.gameid) === String(CS2_APP_ID); - const rp = normalizeRichPresence(input.richPresence); + + // CS2 always publishes rich presence while running (at least steam_display + // = #display_Menu in the menu). requestRichPresence(730, …) returns these keys + // only for users actually in CS2, so their presence means in-CS2 — even when + // the persona gameid isn't available (requestRichPresence carries no gameid). + const hasCs2Keys = Object.keys(rp).some( + (k) => k === "steam_display" || k === "status" || k.startsWith("game:"), + ); + const inCs2 = + hasCs2Keys || + (input.gameid != null && String(input.gameid) === String(CS2_APP_ID)); + const mode = rp["game:mode"]?.toLowerCase() ?? null; const rawMap = rp["game:map"] ?? null; const map = rawMap ? rawMap.replace(/^mg_/, "") : null; @@ -89,7 +106,13 @@ export function parseCs2Presence(input: PresenceInput): Cs2PresenceState { // Narrow: only the matchmaking modes whose demos we import via share codes. const inMatch = inGame && mode != null && MATCHMAKING_MODES.has(mode); - return { inCs2, inGame, inMatch, mode, map }; + // "5 : 3" / "5:3" -> "5:3". Only meaningful while in a game. + const rawScore = rp["game:score"] ?? null; + const score = inGame && rawScore ? rawScore.replace(/\s+/g, "") : null; + + const display = input.display?.trim() || null; + + return { inCs2, inGame, inMatch, mode, map, score, display }; } // Whether a state change should trigger an immediate match-history poll for the diff --git a/src/steam-presence/steam-presence.service.ts b/src/steam-presence/steam-presence.service.ts index a8bc1ef4..0a159de6 100644 --- a/src/steam-presence/steam-presence.service.ts +++ b/src/steam-presence/steam-presence.service.ts @@ -22,13 +22,6 @@ import { parseCs2Presence, } from "./presence"; -// Subset of the persona object delivered by the steam-user `user` event. CS2 -// reports the running app via `gameid` and live match state via `rich_presence`. -type SteamPersona = { - gameid?: string | number | null; - rich_presence?: Array<{ key?: string; value?: string }>; -}; - type FriendsAccount = { id: string; username: string; @@ -64,8 +57,9 @@ const STATE_PREFIX = "steam-presence:state:"; // Per-account "this account is logged in right now" marker (TTL-refreshed by the // owning pod), so the admin view can show live online status across pods. const ONLINE_PREFIX = "steam-presence:online:"; -// Cap on rows kept in the steam_presence_events feed table. -const EVENTS_MAX = 500; +// Delay before polling match history after a match ends, so Valve has time to +// publish the demo + share code. +const IMPORT_DELAY_MS = 60_000; // Admin kill-switch. Absent/anything-but-'false' => enabled (always-on default). // 'public.' prefix matches the settings convention (guest-readable, like // public.external_matches_enabled). @@ -232,7 +226,8 @@ export class SteamPresenceService } } - // Refresh the online heartbeat for accounts that are logged on here. + // Refresh the online heartbeat for accounts we run. Presence itself is + // push-based via the steam-user `user` event — no polling. for (const accountId of this.connected) { await this.redis .set(ONLINE_PREFIX + accountId, this.instanceId, "EX", LOCK_TTL_SECONDS) @@ -293,9 +288,8 @@ export class SteamPresenceService "EX", GUARD_TTL_SECONDS, ); - void this.recordEvent( - "bot_steamguard", - `${account.username} needs a Steam Guard ${type} code${lastCodeWrong ? " (previous code was wrong)" : ""}`, + this.logger.log( + `steam-presence ${account.username} needs a Steam Guard ${type} code${lastCodeWrong ? " (previous code was wrong)" : ""}`, ); }, ); @@ -313,7 +307,6 @@ export class SteamPresenceService void this.redis .set(ONLINE_PREFIX + account.id, this.instanceId, "EX", LOCK_TTL_SECONDS) .catch(() => {}); - void this.recordEvent("bot_online", `${account.username} online as ${steamId}`); if (steamId) { void this.postgres .query( @@ -330,7 +323,6 @@ export class SteamPresenceService this.logger.error( `steam-presence ${account.username} error: ${err.message}`, ); - void this.recordEvent("bot_error", `${account.username}: ${err.message}`); if (err.message.toLowerCase().includes("invalidpassword")) { void this.cache.put(REFRESH_TOKEN_PREFIX + account.id, ""); } @@ -370,9 +362,31 @@ export class SteamPresenceService }, ); - client.on("user", (sid: { getSteamID64(): string }, persona: SteamPersona) => { - void this.handlePresence(sid.getSteamID64(), persona); - }); + // Push-based presence: Steam sends a `user` event whenever a friend's + // persona/rich-presence changes (login, launch CS2, join a match, score + // update, quit) — no polling. The friend persona carries gameid + rich + // presence, which is what Steam's own friends list renders from. + client.on( + "user", + ( + sid: { getSteamID64?: () => string }, + persona: { + gameid?: string | number | null; + rich_presence?: + | Record + | Array<{ key?: string; value?: string }>; + rich_presence_string?: string; + }, + ) => { + const id = sid?.getSteamID64?.() ?? String(sid); + void this.handlePresenceState(id, { + gameid: persona?.gameid ?? null, + richPresence: persona?.rich_presence ?? {}, + // Steam's own friends-list string, e.g. "In Lobby - Deathmatch". + display: persona?.rich_presence_string ?? null, + }); + }, + ); void this.logOn(client, account); } @@ -485,66 +499,61 @@ export class SteamPresenceService updated_at = now()`, [steamId, accountId, botSteamId ?? null], ); - await this.recordEvent("friend_added", `friend established ${steamId}`); // Backfill matches played before they added the bot. await this.enqueuePoll(steamId); } // ---- presence -> poll trigger ------------------------------------------ - private async handlePresence( + private async handlePresenceState( steamId: string, - persona: SteamPersona, + input: { + gameid?: string | number | null; + richPresence: Record | Array<{ key?: string; value?: string }>; + display?: string | null; + }, ): Promise { const current = parseCs2Presence({ - gameid: persona?.gameid, - richPresence: persona?.rich_presence, + gameid: input.gameid, + richPresence: input.richPresence, + display: input.display, }); const stateKey = STATE_PREFIX + steamId; const previous = (await this.cache.get(stateKey)) as Cs2PresenceState | null; + + // Only write when something actually changed. The push `user` event fires + // often; writing every time would churn Postgres dead tuples for no reason + // (we only ever keep the latest state, never history). + if (previous && JSON.stringify(previous) === JSON.stringify(current)) { + return; + } await this.cache.put(stateKey, current, PRESENCE_STATE_TTL_SECONDS); - // Mirror onto the friend row (if any) so the user can see their own live - // status — "as the bot sees you" — on their settings page. No-op for - // non-friended steamids. RETURNING tells us whether this is a watched user. - const updated = await this.postgres - .query>( + // Mirror the latest onto the friend row (single-row UPDATE, un-indexed jsonb + // → HOT update). No-op for non-friended steamids. + await this.postgres + .query( `UPDATE public.player_steam_bot_friend SET last_presence_state = $1::jsonb, updated_at = now() - WHERE steam_id = $2::bigint - RETURNING steam_id`, + WHERE steam_id = $2::bigint`, [JSON.stringify(current), steamId], ) - .catch(() => [] as Array<{ steam_id: string }>); - - // Surface presence changes for watched users in the live activity feed — - // useful for verifying detection across every game state (DM, casual, - // custom/5stack, MM). Only on a real change to avoid heartbeat spam. - if ( - updated.length > 0 && - SteamPresenceService.summarize(previous) !== - SteamPresenceService.summarize(current) - ) { - void this.recordEvent( - "presence", - `${steamId} ${SteamPresenceService.summarize(current)}`, - ); - } + .catch(() => {}); + // Import trigger: they just finished a Competitive/Premier/Wingman match + // (deathmatch / arms race never set inMatch, so they never trigger imports). + // Delay the poll so Valve has time to publish the demo + share code. if (isMatchEndTransition(previous, current)) { this.logger.log( - `steam-presence match-end for ${steamId} (mode=${previous?.mode}) -> polling`, - ); - await this.recordEvent( - "match_end", - `${steamId} finished a ${previous?.mode ?? "match"} -> poll`, + `steam-presence import trigger: ${steamId} finished ${previous?.mode ?? "match"} ` + + `— scheduling match-history poll in ${IMPORT_DELAY_MS / 1000}s`, ); - await this.enqueuePoll(steamId); + await this.enqueuePoll(steamId, IMPORT_DELAY_MS); } } - private async enqueuePoll(steamId: string): Promise { + private async enqueuePoll(steamId: string, delayMs = 0): Promise { // Same jobId as the on-login poll so a pending poll isn't duplicated; the // per-user 10-minute cooldown in pollForUser absorbs extra triggers. await this.pollQueue @@ -553,6 +562,7 @@ export class SteamPresenceService { steamId }, { jobId: `poll-steam-match-history.${steamId}`, + delay: delayMs, removeOnComplete: true, removeOnFail: true, }, @@ -564,20 +574,8 @@ export class SteamPresenceService }); } - // Short human description of a presence state for the activity feed. - private static summarize(state: Cs2PresenceState | null): string { - if (!state || !state.inCs2) { - return "offline"; - } - if (state.inGame) { - const where = state.map ? ` on ${state.map}` : ""; - return state.mode - ? `playing ${state.mode}${where}` - : `in a custom match${where}`; - } - return "in menu"; - } - + // Short human description of a presence state (unused since the activity feed + // was removed; kept minimal for potential debug reuse). // ---- onboarding / assignment ------------------------------------------- // Assign (or return the already-assigned) friends-role bot for a user, so the @@ -751,9 +749,7 @@ export class SteamPresenceService this.logger.warn( `steam-presence chat send failed to ${payload.steamId}: ${err.message}`, ); - return; } - void this.recordEvent("chat_sent", `messaged ${payload.steamId}`); }); } @@ -786,32 +782,10 @@ export class SteamPresenceService } this.pendingGuards.delete(payload.accountId); callback(payload.code.trim()); - void this.recordEvent("steamguard_submitted", "Steam Guard code submitted"); + this.logger.log("steam-presence Steam Guard code submitted"); } - // ---- admin / debug ----------------------------------------------------- - - private async recordEvent(type: string, message: string): Promise { - try { - // Inserted into a table so the admin dashboard can subscribe over - // websockets (Hasura subscription) rather than poll. - await this.postgres.query( - `INSERT INTO public.steam_presence_events (type, message) VALUES ($1, $2)`, - [type, message], - ); - // Keep the feed bounded. - await this.postgres.query( - `DELETE FROM public.steam_presence_events - WHERE id IN ( - SELECT id FROM public.steam_presence_events - ORDER BY created_at DESC OFFSET $1 - )`, - [EVENTS_MAX], - ); - } catch { - // best effort — the debug feed is not critical - } - } + // ---- admin ------------------------------------------------------------- // Snapshot for the admin dashboard: pool totals, per-bot rows (with live // cross-pod online state from Redis), and the recent-events feed. @@ -909,7 +883,6 @@ export class SteamPresenceService if (!id) { throw new Error("a steam account with that username already exists"); } - await this.recordEvent("bot_added", `added bot account ${username}`); return { id }; } diff --git a/src/types/steam-user.d.ts b/src/types/steam-user.d.ts index 6563d9cb..eaa6d685 100644 --- a/src/types/steam-user.d.ts +++ b/src/types/steam-user.d.ts @@ -36,6 +36,40 @@ declare module "steam-user" { steamIds: string[], callback: (err: Error | null, levels: Record) => void, ): void; + requestRichPresence( + appId: number, + steamIds: string[], + callback: ( + err: Error | null, + response: { + users: Record< + string, + { + rich_presence?: + | Record + | Array<{ key?: string; value?: string }>; + localized_string?: string; + rich_presence_string?: string; + } + >; + }, + ) => void, + ): void; + getPersonas( + steamIds: string[], + callback: ( + err: Error | null, + personas: Record< + string, + { + gameid?: string | number | null; + rich_presence?: + | Record + | Array<{ key?: string; value?: string }>; + } + >, + ) => void, + ): void; sendToGC( appId: number, msgType: number, From 6e86fb649a1b5880233edc018b508243cf8a8c94 Mon Sep 17 00:00:00 2001 From: Luke Policinski Date: Tue, 30 Jun 2026 21:23:06 -0400 Subject: [PATCH 3/5] feature: bot presence --- .../tables/public_steam_presence_events.yaml | 14 -------------- 1 file changed, 14 deletions(-) delete mode 100644 hasura/metadata/databases/default/tables/public_steam_presence_events.yaml diff --git a/hasura/metadata/databases/default/tables/public_steam_presence_events.yaml b/hasura/metadata/databases/default/tables/public_steam_presence_events.yaml deleted file mode 100644 index a408806e..00000000 --- a/hasura/metadata/databases/default/tables/public_steam_presence_events.yaml +++ /dev/null @@ -1,14 +0,0 @@ -table: - name: steam_presence_events - schema: public -select_permissions: - - role: administrator - permission: - columns: - - id - - type - - message - - created_at - filter: {} - allow_aggregations: true - comment: "" From c61c905780d2efefee64141719ccef17a44c111b Mon Sep 17 00:00:00 2001 From: Luke Policinski Date: Tue, 30 Jun 2026 21:35:27 -0400 Subject: [PATCH 4/5] feature: bot presence --- src/steam-presence/steam-presence.service.ts | 14 ++++---------- 1 file changed, 4 insertions(+), 10 deletions(-) diff --git a/src/steam-presence/steam-presence.service.ts b/src/steam-presence/steam-presence.service.ts index 0a159de6..2df9b807 100644 --- a/src/steam-presence/steam-presence.service.ts +++ b/src/steam-presence/steam-presence.service.ts @@ -522,16 +522,13 @@ export class SteamPresenceService const stateKey = STATE_PREFIX + steamId; const previous = (await this.cache.get(stateKey)) as Cs2PresenceState | null; - // Only write when something actually changed. The push `user` event fires - // often; writing every time would churn Postgres dead tuples for no reason - // (we only ever keep the latest state, never history). + // Skip no-op writes: the push `user` event fires often, but we only keep the + // latest state, so writing unchanged state just churns Postgres dead tuples. if (previous && JSON.stringify(previous) === JSON.stringify(current)) { return; } await this.cache.put(stateKey, current, PRESENCE_STATE_TTL_SECONDS); - // Mirror the latest onto the friend row (single-row UPDATE, un-indexed jsonb - // → HOT update). No-op for non-friended steamids. await this.postgres .query( `UPDATE public.player_steam_bot_friend @@ -541,9 +538,8 @@ export class SteamPresenceService ) .catch(() => {}); - // Import trigger: they just finished a Competitive/Premier/Wingman match - // (deathmatch / arms race never set inMatch, so they never trigger imports). - // Delay the poll so Valve has time to publish the demo + share code. + // Only matchmaking matches (comp/premier/wingman) set inMatch, so deathmatch + // and arms race never reach here. Delay so Valve can publish the demo first. if (isMatchEndTransition(previous, current)) { this.logger.log( `steam-presence import trigger: ${steamId} finished ${previous?.mode ?? "match"} ` + @@ -574,8 +570,6 @@ export class SteamPresenceService }); } - // Short human description of a presence state (unused since the activity feed - // was removed; kept minimal for potential debug reuse). // ---- onboarding / assignment ------------------------------------------- // Assign (or return the already-assigned) friends-role bot for a user, so the From 9ba355bf8fc4d5e134e226efb06c7755d35075e1 Mon Sep 17 00:00:00 2001 From: Luke Policinski Date: Tue, 30 Jun 2026 21:53:13 -0400 Subject: [PATCH 5/5] wip --- src/steam-presence/presence.ts | 7 +- src/steam-presence/steam-presence.service.ts | 99 ++++++++++++-------- src/types/steam-user.d.ts | 34 ------- 3 files changed, 65 insertions(+), 75 deletions(-) diff --git a/src/steam-presence/presence.ts b/src/steam-presence/presence.ts index d8a68744..89448908 100644 --- a/src/steam-presence/presence.ts +++ b/src/steam-presence/presence.ts @@ -83,10 +83,9 @@ function looksInGame(state: string | undefined, display: string | undefined): bo export function parseCs2Presence(input: PresenceInput): Cs2PresenceState { const rp = normalizeRichPresence(input.richPresence); - // CS2 always publishes rich presence while running (at least steam_display - // = #display_Menu in the menu). requestRichPresence(730, …) returns these keys - // only for users actually in CS2, so their presence means in-CS2 — even when - // the persona gameid isn't available (requestRichPresence carries no gameid). + // CS2 publishes rich presence while running (at least steam_display + // = #display_Menu in the menu), so any CS2 key means in-CS2 — a useful + // fallback when the persona gameid isn't set on the push event. const hasCs2Keys = Object.keys(rp).some( (k) => k === "steam_display" || k === "status" || k.startsWith("game:"), ); diff --git a/src/steam-presence/steam-presence.service.ts b/src/steam-presence/steam-presence.service.ts index 2df9b807..df71ae2f 100644 --- a/src/steam-presence/steam-presence.service.ts +++ b/src/steam-presence/steam-presence.service.ts @@ -60,6 +60,11 @@ const ONLINE_PREFIX = "steam-presence:online:"; // Delay before polling match history after a match ends, so Valve has time to // publish the demo + share code. const IMPORT_DELAY_MS = 60_000; +// Exponential backoff between reconnect attempts after a login error, so a bot +// with bad credentials (or that Steam has rate-limited) isn't retried every tick +// — which would make Steam lock it harder. +const LOGIN_BACKOFF_BASE_MS = 30_000; +const LOGIN_BACKOFF_MAX_MS = 30 * 60_000; // Admin kill-switch. Absent/anything-but-'false' => enabled (always-on default). // 'public.' prefix matches the settings convention (guest-readable, like // public.external_matches_enabled). @@ -114,6 +119,11 @@ export class SteamPresenceService // Pending Steam Guard callbacks, keyed by accountId. Only the owning pod has // these (they're in-memory closures from steam-user's `steamGuard` event). private readonly pendingGuards = new Map void>(); + // accountId -> reconnect backoff after a login error (per-pod, in-memory). + private readonly loginBackoff = new Map< + string, + { until: number; attempts: number } + >(); constructor( private readonly logger: Logger, @@ -222,6 +232,12 @@ export class SteamPresenceService this.owned.add(account.id); if (!this.clients.has(account.id)) { + // Respect the reconnect backoff so a failing login isn't retried every + // tick. We keep the lock while waiting so no other pod grabs it. + const backoff = this.loginBackoff.get(account.id); + if (backoff && backoff.until > Date.now()) { + continue; + } this.connectAccount(account); } } @@ -301,7 +317,8 @@ export class SteamPresenceService ); client.setPersona(SteamUser.EPersonaState.Online); this.connected.add(account.id); - // Login succeeded — clear any pending Steam Guard prompt. + // Login succeeded — clear the reconnect backoff and any pending prompt. + this.loginBackoff.delete(account.id); this.pendingGuards.delete(account.id); void this.redis.del(GUARD_PREFIX + account.id).catch(() => {}); void this.redis @@ -326,7 +343,18 @@ export class SteamPresenceService if (err.message.toLowerCase().includes("invalidpassword")) { void this.cache.put(REFRESH_TOKEN_PREFIX + account.id, ""); } - // Drop the client but keep the lock; the next tick reconnects. + // Back off before the next reconnect (exponential, capped) so a persistent + // auth failure or Steam rate-limit isn't hammered every tick. + const attempts = (this.loginBackoff.get(account.id)?.attempts ?? 0) + 1; + const delay = Math.min( + LOGIN_BACKOFF_MAX_MS, + LOGIN_BACKOFF_BASE_MS * 2 ** (attempts - 1), + ); + this.loginBackoff.set(account.id, { until: Date.now() + delay, attempts }); + this.logger.warn( + `steam-presence ${account.username} reconnect backoff ${Math.round(delay / 1000)}s (attempt ${attempts})`, + ); + // Drop the client but keep the lock; a later tick reconnects after backoff. if (this.clients.get(account.id) === client) { this.clients.delete(account.id); this.connected.delete(account.id); @@ -414,6 +442,7 @@ export class SteamPresenceService this.clients.delete(accountId); this.connected.delete(accountId); this.pendingGuards.delete(accountId); + this.loginBackoff.delete(accountId); await this.redis?.del(ONLINE_PREFIX + accountId).catch(() => {}); await this.redis?.del(GUARD_PREFIX + accountId).catch(() => {}); if (client) { @@ -645,10 +674,11 @@ export class SteamPresenceService // ---- Phase 3: match-imported messaging --------------------------------- - // Called (fire-and-forget) after a Valve match is imported. Sends an in-app - // notification to every registered player in the match, and a Steam chat - // message to those who added a bot — routed via Redis to the pod that owns - // that bot's connection. + // Called (fire-and-forget) after a Valve match is imported. Only messages + // players who opted in by adding a bot as a friend (status = 'friends'), and + // only about their own performance — never other participants. Each gets an + // in-app notification plus a Steam chat message routed via Redis to the pod + // that owns their bot's connection. public async notifyMatchImported(notice: MatchImportedNotice): Promise { if (notice.players.length === 0 || !(await this.isEnabled())) { return; @@ -662,54 +692,49 @@ export class SteamPresenceService const safeType = NotificationsService.escapeHtml(notice.matchType); const safeUrl = NotificationsService.escapeHtml(url); - // In-app: only for registered 5stack players. - const registered = await this.postgres.query>( - `SELECT steam_id::text FROM public.players WHERE steam_id = ANY($1::bigint[])`, + // Only players who added a bot as a friend and were verified. + const friends = await this.postgres.query< + Array<{ steam_id: string; bot_steam_account_id: string | null }> + >( + `SELECT steam_id::text, bot_steam_account_id::text + FROM public.player_steam_bot_friend + WHERE steam_id = ANY($1::bigint[]) + AND status = 'friends'`, [steamIds], ); - const registeredSet = new Set(registered.map((r) => r.steam_id)); - for (const player of notice.players) { - if (!registeredSet.has(player.steamId)) { + if (friends.length === 0) { + return; + } + const byPlayer = new Map(notice.players.map((p) => [p.steamId, p])); + + for (const friend of friends) { + const stats = byPlayer.get(friend.steam_id); + if (!stats) { continue; } + const message = `Your ${safeType} match on ${safeMap} was imported — ` + - `you went ${player.kills}/${player.deaths}. ` + + `you went ${stats.kills}/${stats.deaths}. ` + `View it on 5stack.`; await this.postgres .query( `INSERT INTO public.notifications (title, message, steam_id, role, type, entity_id) VALUES ('Match Imported', $1, $2::bigint, 'user', 'MatchImported', $3)`, - [message, player.steamId, notice.matchId], + [message, friend.steam_id, notice.matchId], ) .catch((err) => this.logger.warn( - `steam-presence in-app notify failed for ${player.steamId}: ${(err as Error).message}`, + `steam-presence in-app notify failed for ${friend.steam_id}: ${(err as Error).message}`, ), ); - } - // Steam chat: only for players who added a bot. - const friends = await this.postgres.query< - Array<{ steam_id: string; bot_steam_account_id: string }> - >( - `SELECT steam_id::text, bot_steam_account_id::text - FROM public.player_steam_bot_friend - WHERE steam_id = ANY($1::bigint[]) - AND status = 'friends' - AND bot_steam_account_id IS NOT NULL`, - [steamIds], - ); - if (friends.length === 0) { - return; - } - const byPlayer = new Map(notice.players.map((p) => [p.steamId, p])); - for (const friend of friends) { - const stats = byPlayer.get(friend.steam_id); + if (!friend.bot_steam_account_id) { + continue; + } const text = `Your ${notice.matchType} match on ${mapLabel} was imported to 5stack` + - (stats ? ` — you went ${stats.kills}/${stats.deaths}.` : ".") + - ` ${url}`; + ` — you went ${stats.kills}/${stats.deaths}. ${url}`; await this.redis .publish( CHAT_CHANNEL, @@ -781,8 +806,8 @@ export class SteamPresenceService // ---- admin ------------------------------------------------------------- - // Snapshot for the admin dashboard: pool totals, per-bot rows (with live - // cross-pod online state from Redis), and the recent-events feed. + // Snapshot for the admin dashboard: pool totals + per-bot rows, with live + // cross-pod online / Steam Guard state read from Redis. public async getAdminStatus(): Promise { const enabled = await this.isEnabled(); diff --git a/src/types/steam-user.d.ts b/src/types/steam-user.d.ts index eaa6d685..6563d9cb 100644 --- a/src/types/steam-user.d.ts +++ b/src/types/steam-user.d.ts @@ -36,40 +36,6 @@ declare module "steam-user" { steamIds: string[], callback: (err: Error | null, levels: Record) => void, ): void; - requestRichPresence( - appId: number, - steamIds: string[], - callback: ( - err: Error | null, - response: { - users: Record< - string, - { - rich_presence?: - | Record - | Array<{ key?: string; value?: string }>; - localized_string?: string; - rich_presence_string?: string; - } - >; - }, - ) => void, - ): void; - getPersonas( - steamIds: string[], - callback: ( - err: Error | null, - personas: Record< - string, - { - gameid?: string | number | null; - rich_presence?: - | Record - | Array<{ key?: string; value?: string }>; - } - >, - ) => void, - ): void; sendToGC( appId: number, msgType: number,