diff --git a/generated/schema.graphql b/generated/schema.graphql index e90c6b76..a8006d6d 100644 --- a/generated/schema.graphql +++ b/generated/schema.graphql @@ -540,6 +540,41 @@ type SteamMatchHistoryPollOutput { success: Boolean! } +type SteamPresenceAdminStatusOutput { + bots: [SteamPresenceBot!]! + enabled: Boolean! + pool: SteamPresencePool! +} + +type SteamPresenceBot { + assigned: Int! + capacity: Int! + guardLastWrong: Boolean! + guardType: String + id: String! + needs2fa: Boolean! + online: Boolean! + steamId: String + steamLevel: Int + username: String! + watching: Int! +} + +type SteamPresenceBotAssignment { + addUrl: String + enabled: Boolean! + status: String + steamId: String +} + +type SteamPresencePool { + bots: Int! + capacity: Int! + online: Int! + pending: Int! + watching: Int! +} + type StorageStats { summary: StorageSummary! tables: [TableSizeInfo!]! @@ -24496,8 +24531,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 +25718,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 +28013,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 +28831,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 +28925,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 +31907,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 +32275,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 +32289,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! @@ -32963,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 } """ @@ -33055,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 } """ @@ -33066,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 } """ @@ -33090,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 } """ @@ -33110,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!] } """ @@ -33117,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 } """ @@ -33124,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 } """ @@ -33142,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""" @@ -33162,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 } """ @@ -33181,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""" @@ -33198,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 } """ @@ -33217,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 } """ @@ -33245,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 } """ @@ -33278,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 @@ -33302,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 } """ @@ -33321,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 } """ @@ -33329,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 } """ @@ -33338,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 } """ @@ -33416,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 { @@ -33480,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 } """ @@ -48440,6 +48961,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 +57959,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 +58390,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 +62172,16 @@ 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! + steam_level: Int + steamid64: bigint updated_at: timestamptz! username: String! } @@ -61263,9 +62198,24 @@ 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 + steam_level: Float + steamid64: Float } """ @@ -61278,10 +62228,14 @@ 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 + steam_level: Int_comparison_exp + steamid64: bigint_comparison_exp updated_at: timestamptz_comparison_exp username: String_comparison_exp } @@ -61301,16 +62255,29 @@ 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 + steam_level: 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 + steam_level: Int + steamid64: bigint updated_at: timestamptz username: String } @@ -61318,9 +62285,13 @@ 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 + steam_level: Int + steamid64: bigint updated_at: timestamptz username: String } @@ -61328,9 +62299,13 @@ 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 + steam_level: Int + steamid64: bigint updated_at: timestamptz username: String } @@ -61369,10 +62344,14 @@ 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 + steam_level: order_by + steamid64: order_by updated_at: order_by username: order_by } @@ -61389,6 +62368,9 @@ enum steam_accounts_select_column { """column name""" created_at + """column name""" + friend_capacity + """column name""" id @@ -61398,6 +62380,15 @@ enum steam_accounts_select_column { """column name""" password + """column name""" + role + + """column name""" + steam_level + + """column name""" + steamid64 + """column name""" updated_at @@ -61410,13 +62401,38 @@ 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 + steam_level: Int + steamid64: bigint updated_at: timestamptz username: String } +"""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 +} + """ Streaming cursor of the table "steam_accounts" """ @@ -61431,13 +62447,24 @@ 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 + steam_level: Int + steamid64: bigint updated_at: timestamptz username: String } +"""aggregate sum on columns""" +type steam_accounts_sum_fields { + friend_capacity: Int + steam_level: Int + steamid64: bigint +} + """ update columns of table "steam_accounts" """ @@ -61445,6 +62472,9 @@ enum steam_accounts_update_column { """column name""" created_at + """column name""" + friend_capacity + """column name""" id @@ -61454,6 +62484,15 @@ enum steam_accounts_update_column { """column name""" password + """column name""" + role + + """column name""" + steam_level + + """column name""" + steamid64 + """column name""" updated_at @@ -61462,6 +62501,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 +62511,27 @@ input steam_accounts_updates { where: steam_accounts_bool_exp! } +"""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 +} + type subscription_root { """ fetch data from the table: "_map_pool" @@ -66646,6 +67709,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..1ede2158 100644 --- a/generated/schema.ts +++ b/generated/schema.ts @@ -516,6 +516,45 @@ export interface SteamMatchHistoryPollOutput { __typename: 'SteamMatchHistoryPollOutput' } +export interface SteamPresenceAdminStatusOutput { + bots: SteamPresenceBot[] + enabled: Scalars['Boolean'] + 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) + steamLevel: (Scalars['Int'] | 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 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 +8126,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 +8515,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 +8992,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 +9166,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 +9227,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 +9749,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" */ @@ -9905,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' } @@ -9950,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' } @@ -9962,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' } @@ -9981,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' } @@ -10006,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' } @@ -16139,6 +16299,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 +18422,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 +18484,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 +19288,15 @@ 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'] + steam_level: (Scalars['Int'] | null) + steamid64: (Scalars['bigint'] | null) updated_at: Scalars['timestamptz'] username: Scalars['String'] __typename: 'steam_accounts' @@ -18988,13 +19313,30 @@ 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) + steam_level: (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 +19344,13 @@ 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) + steam_level: (Scalars['Int'] | null) + steamid64: (Scalars['bigint'] | null) updated_at: (Scalars['timestamptz'] | null) username: (Scalars['String'] | null) __typename: 'steam_accounts_max_fields' @@ -19014,9 +19360,13 @@ 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) + steam_level: (Scalars['Int'] | null) + steamid64: (Scalars['bigint'] | null) updated_at: (Scalars['timestamptz'] | null) username: (Scalars['String'] | null) __typename: 'steam_accounts_min_fields' @@ -19034,11 +19384,74 @@ 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' | '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' +} + + +/** 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' +} + + +/** 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' +} + + +/** 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' | 'id' | 'last_node_id' | 'password' | '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' +} + + +/** 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' +} + + +/** 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' +} export interface subscription_root { /** fetch data from the table: "_map_pool" */ @@ -19747,6 +20160,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 +29579,49 @@ export interface SteamMatchHistoryPollOutputGenqlSelection{ __scalar?: boolean | number } +export interface SteamPresenceAdminStatusOutputGenqlSelection{ + bots?: SteamPresenceBotGenqlSelection + enabled?: boolean | number + 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 + steamLevel?: 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 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 +42503,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 +43062,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 +44277,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 +44727,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 +44788,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 +46320,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 +46510,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" */ @@ -46432,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 } @@ -46493,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" */ @@ -46502,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 */ @@ -46543,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 */ @@ -46567,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" */ @@ -46598,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" */ @@ -46660,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 */ @@ -46697,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" */ @@ -54668,6 +55301,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 +60567,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 +60829,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 +62946,15 @@ 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 + steam_level?: boolean | number + steamid64?: boolean | number updated_at?: boolean | number username?: boolean | number __typename?: boolean | number @@ -62073,28 +62973,54 @@ 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 + steam_level?: 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),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),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),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),steam_level?: (Scalars['Int'] | 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 + steam_level?: boolean | number + steamid64?: boolean | number updated_at?: boolean | number username?: boolean | number __typename?: boolean | number @@ -62105,9 +63031,13 @@ 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 + steam_level?: boolean | number + steamid64?: boolean | number updated_at?: boolean | number username?: boolean | number __typename?: boolean | number @@ -62137,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),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),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 */ @@ -62145,7 +63075,37 @@ 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),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 +} + + +/** 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 +} + + +/** 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 +} /** Streaming cursor of the table "steam_accounts" */ @@ -62157,14 +63117,56 @@ 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),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 +} 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 + steam_level?: 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 + steam_level?: 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 + steam_level?: 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 +66236,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 +80629,38 @@ 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 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 +88013,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 +89141,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 +89173,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"') @@ -94880,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 = { @@ -95810,6 +97077,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 +97406,26 @@ 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, + steam_level: 'steam_level' 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, + 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 9d2fcca9..6e55b0b0 100644 --- a/generated/types.ts +++ b/generated/types.ts @@ -3,539 +3,542 @@ export default { 3, 29, 38, - 70, - 87, - 95, + 74, + 91, 99, - 111, - 122, - 134, - 147, - 156, - 164, - 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, + 103, + 115, + 126, + 138, + 151, + 160, + 168, + 173, + 176, + 191, + 206, + 207, + 208, + 220, + 228, + 234, + 243, + 251, + 268, + 279, + 280, + 281, + 293, + 313, + 324, + 325, + 326, + 338, + 358, + 370, + 371, + 372, + 384, + 396, + 397, 406, - 412, - 413, - 423, + 410, + 416, + 417, 427, - 433, - 434, - 444, + 431, + 437, + 438, 448, - 454, - 455, - 465, + 452, + 458, + 459, 469, - 475, - 476, - 486, + 473, + 479, + 480, 490, - 496, - 497, - 507, + 494, + 500, + 501, 511, - 517, - 518, - 528, + 515, + 521, + 522, 532, - 538, - 539, - 548, + 536, + 542, + 543, 552, - 558, - 559, - 569, + 556, + 562, + 563, 573, - 579, - 580, - 590, + 577, + 583, + 584, 594, - 600, - 601, - 610, + 598, + 604, + 605, 614, - 620, - 621, - 631, + 618, + 624, + 625, 635, - 641, - 642, - 651, + 639, + 645, + 646, 655, - 661, - 662, - 672, + 659, + 665, + 666, 676, - 682, - 683, - 692, + 680, + 686, + 687, 696, - 702, - 703, - 713, + 700, + 706, + 707, 717, - 723, - 724, - 734, + 721, + 727, + 728, 738, - 744, - 745, - 754, + 742, + 748, + 749, 758, - 764, - 765, - 774, + 762, + 768, + 769, 778, - 784, - 785, - 794, + 782, + 788, + 789, 798, - 804, - 805, - 814, + 802, + 808, + 809, 818, - 824, - 825, - 835, + 822, + 828, + 829, 839, - 845, - 846, - 855, + 843, + 849, + 850, 859, - 865, - 866, - 875, + 863, + 869, + 870, 879, - 885, - 886, - 895, + 883, + 889, + 890, 899, - 905, - 906, - 915, + 903, + 909, + 910, 919, - 925, - 926, - 936, + 923, + 929, + 930, 940, - 946, - 947, - 956, + 944, + 950, + 951, 960, - 966, - 967, - 976, + 964, + 970, + 971, 980, - 986, - 987, - 997, + 984, + 990, + 991, 1001, - 1007, - 1008, - 1018, + 1005, + 1011, + 1012, 1022, - 1028, - 1029, - 1038, + 1026, + 1032, + 1033, 1042, - 1048, - 1049, - 1058, + 1046, + 1052, + 1053, 1062, - 1068, - 1069, - 1078, + 1066, + 1072, + 1073, 1082, - 1084, - 1091, - 1100, - 1108, - 1126, - 1142, - 1143, - 1144, - 1156, - 1170, - 1184, - 1192, - 1203, - 1216, - 1224, - 1231, - 1233, + 1086, + 1088, + 1095, + 1104, + 1112, + 1130, + 1146, + 1147, + 1148, + 1160, + 1174, + 1188, + 1196, + 1207, + 1220, + 1228, 1235, - 1249, - 1265, - 1274, + 1237, + 1239, + 1253, + 1269, 1278, - 1292, - 1303, - 1304, - 1305, - 1317, - 1329, - 1338, + 1282, + 1296, + 1307, + 1308, + 1309, + 1321, + 1333, 1342, - 1354, - 1365, - 1366, - 1367, + 1346, + 1358, + 1369, + 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, + 1375, + 1387, + 1399, + 1411, + 1430, + 1445, + 1457, + 1477, + 1488, + 1489, + 1490, + 1502, + 1520, + 1532, + 1544, + 1565, + 1581, + 1582, + 1583, + 1595, + 1613, + 1624, + 1636, + 1652, 1662, - 1674, - 1686, - 1698, - 1711, - 1721, - 1729, - 1742, - 1752, + 1666, + 1678, + 1690, + 1702, + 1715, + 1725, + 1733, + 1746, 1756, - 1771, - 1786, - 1787, - 1788, - 1800, - 1812, - 1820, + 1760, + 1775, + 1790, + 1791, + 1792, + 1804, + 1816, 1824, - 1836, - 1848, - 1860, - 1872, - 1880, + 1828, + 1840, + 1852, + 1864, + 1876, 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, + 1888, + 1915, + 1916, + 1917, + 1941, + 1950, + 1958, + 1976, + 1991, + 1992, + 1993, + 2005, + 2013, + 2015, + 2026, + 2037, + 2049, + 2062, + 2072, + 2080, + 2090, + 2099, + 2107, + 2122, + 2133, + 2145, + 2165, + 2176, + 2177, + 2178, + 2190, + 2206, + 2226, + 2237, + 2249, + 2262, + 2271, + 2279, + 2294, + 2305, + 2317, + 2337, + 2348, + 2349, + 2350, + 2362, + 2392, + 2403, + 2415, + 2423, + 2434, + 2435, + 2436, + 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, - 2883, - 2893, - 2901, - 2911, - 2920, - 2928, - 2939, - 2948, + 2873, + 2897, + 2919, + 2929, + 2937, + 2947, 2956, - 2973, - 2985, - 2986, - 2987, - 2999, - 3011, - 3019, + 2964, + 2975, + 2984, + 2992, + 3009, + 3021, + 3022, 3023, - 3033, - 3043, + 3035, 3047, - 3053, - 3062, - 3066, - 3073, - 3082, + 3055, + 3059, + 3069, + 3079, + 3083, 3090, - 3105, - 3116, - 3128, - 3148, - 3159, - 3160, + 3100, + 3108, + 3118, + 3127, + 3135, + 3150, 3161, 3173, - 3186, - 3195, - 3203, + 3193, + 3204, + 3205, + 3206, 3218, - 3228, - 3229, - 3230, - 3234, - 3246, - 3257, - 3269, - 3289, - 3301, + 3231, + 3240, + 3248, + 3263, + 3273, + 3274, + 3275, + 3279, + 3291, 3302, - 3303, - 3315, - 3328, - 3338, + 3314, + 3334, 3346, - 3356, - 3365, + 3347, + 3348, + 3360, 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, + 3383, + 3391, + 3401, + 3410, + 3418, + 3433, + 3445, + 3457, + 3465, + 3466, + 3480, + 3492, + 3493, + 3494, + 3506, + 3524, + 3535, + 3547, + 3568, + 3584, + 3585, + 3586, + 3598, + 3616, + 3627, + 3639, + 3657, + 3668, + 3680, + 3698, 3710, 3722, - 3740, - 3752, - 3764, - 3784, - 3796, + 3742, + 3753, + 3754, + 3755, + 3767, + 3785, 3797, - 3798, - 3810, - 3818, + 3809, 3829, - 3851, - 3879, - 3904, - 3922, - 3940, - 3961, - 3981, - 4007, - 4032, - 4050, - 4086, - 4087, - 4088, - 4089, - 4090, - 4091, - 4092, - 4093, - 4094, - 4119, + 3841, + 3842, + 3843, + 3855, + 3863, + 3874, + 3896, + 3924, + 3949, + 3967, + 3985, + 4006, + 4026, + 4052, + 4077, + 4095, + 4131, + 4132, + 4133, + 4134, + 4135, + 4136, 4137, - 4155, - 4183, - 4210, + 4138, + 4139, + 4164, + 4182, + 4200, 4228, - 4246, - 4272, - 4297, - 4315, + 4255, + 4273, + 4291, + 4317, 4342, - 4343, - 4344, - 4357, - 4377, - 4397, - 4427, - 4439, - 4440, - 4441, + 4360, + 4387, + 4388, + 4389, + 4402, + 4422, 4442, - 4443, - 4444, - 4445, - 4446, - 4447, - 4459, - 4493, - 4494, - 4495, - 4496, - 4497, - 4498, - 4499, - 4500, - 4501, + 4472, + 4484, + 4485, + 4486, + 4487, + 4488, + 4489, + 4490, + 4491, + 4492, + 4504, + 4538, + 4539, + 4540, + 4541, + 4542, + 4543, 4544, 4545, 4546, - 4547, - 4548, - 4549, - 4550, - 4551, - 4552 + 4589, + 4590, + 4591, + 4592, + 4593, + 4594, + 4595, + 4596, + 4597 ], "types": { "ActiveConnection": { "application_name": [ - 70 + 74 ], "client_addr": [ - 70 + 74 ], "pid": [ 38 ], "query": [ - 70 + 74 ], "query_start": [ - 3420 + 3465 ], "state": [ - 70 + 74 ], "usename": [ - 70 + 74 ], "__typename": [ - 70 + 74 ] }, "ActiveQuery": { "application_name": [ - 70 + 74 ], "client_addr": [ - 70 + 74 ], "duration_seconds": [ 29 @@ -544,33 +547,33 @@ export default { 38 ], "query": [ - 70 + 74 ], "query_start": [ - 3420 + 3465 ], "state": [ - 70 + 74 ], "usename": [ - 70 + 74 ], "wait_event": [ - 70 + 74 ], "wait_event_type": [ - 70 + 74 ], "__typename": [ - 70 + 74 ] }, "ApiKeyResponse": { "key": [ - 70 + 74 ], "__typename": [ - 70 + 74 ] }, "Boolean": {}, @@ -603,7 +606,7 @@ export default { 3 ], "__typename": [ - 70 + 74 ] }, "ClipAudioInput": { @@ -617,27 +620,27 @@ export default { 38 ], "track_url": [ - 70 + 74 ], "volume": [ 29 ], "__typename": [ - 70 + 74 ] }, "ClipOutputInput": { "format": [ - 70 + 74 ], "fps": [ 38 ], "resolution": [ - 70 + 74 ], "__typename": [ - 70 + 74 ] }, "ClipOverlayInput": { @@ -645,16 +648,16 @@ export default { 38 ], "payload": [ - 1235 + 1239 ], "start_ms": [ 38 ], "type": [ - 70 + 74 ], "__typename": [ - 70 + 74 ] }, "ClipSegmentInput": { @@ -662,13 +665,13 @@ export default { 38 ], "pov_steam_id": [ - 70 + 74 ], "start_tick": [ 38 ], "__typename": [ - 70 + 74 ] }, "ClipSpecInput": { @@ -676,10 +679,10 @@ export default { 5 ], "destination": [ - 70 + 74 ], "match_map_id": [ - 3818 + 3863 ], "output": [ 6 @@ -691,10 +694,10 @@ export default { 8 ], "title": [ - 70 + 74 ], "__typename": [ - 70 + 74 ] }, "ConnectionByState": { @@ -702,16 +705,16 @@ export default { 38 ], "state": [ - 70 + 74 ], "wait_event_type": [ - 70 + 74 ], "waiting_count": [ 38 ], "__typename": [ - 70 + 74 ] }, "ConnectionStats": { @@ -734,51 +737,51 @@ export default { 38 ], "__typename": [ - 70 + 74 ] }, "CpuStat": { "time": [ - 3420 + 3465 ], "total": [ - 169 + 173 ], "used": [ - 169 + 173 ], "window": [ 29 ], "__typename": [ - 70 + 74 ] }, "CreateClipRenderOutput": { "job_id": [ - 3818 + 3863 ], "success": [ 3 ], "__typename": [ - 70 + 74 ] }, "CreateDraftGameOutput": { "draftGameId": [ - 3818 + 3863 ], "__typename": [ - 70 + 74 ] }, "CreateScheduledMatchOutput": { "matchId": [ - 3818 + 3863 ], "__typename": [ - 70 + 74 ] }, "DatabaseStats": { @@ -795,7 +798,7 @@ export default { 38 ], "datname": [ - 70 + 74 ], "deadlocks": [ 38 @@ -825,7 +828,7 @@ export default { 38 ], "__typename": [ - 70 + 74 ] }, "DbStats": { @@ -848,10 +851,10 @@ export default { 29 ], "query": [ - 70 + 74 ], "queryid": [ - 70 + 74 ], "shared_blks_hit": [ 38 @@ -866,24 +869,24 @@ export default { 38 ], "__typename": [ - 70 + 74 ] }, "DedicatedSeverInfo": { "id": [ - 70 + 74 ], "lastPing": [ - 70 + 74 ], "map": [ - 70 + 74 ], "players": [ 38 ], "__typename": [ - 70 + 74 ] }, "DeleteOrphansOutput": { @@ -900,30 +903,30 @@ export default { 3 ], "__typename": [ - 70 + 74 ] }, "DiskStat": { "available": [ - 70 + 74 ], "filesystem": [ - 70 + 74 ], "mountpoint": [ - 70 + 74 ], "size": [ - 70 + 74 ], "used": [ - 70 + 74 ], "usedPercent": [ - 70 + 74 ], "__typename": [ - 70 + 74 ] }, "DiskStats": { @@ -931,10 +934,10 @@ export default { 20 ], "time": [ - 3420 + 3465 ], "__typename": [ - 70 + 74 ] }, "DraftGamePreviewOutput": { @@ -942,25 +945,25 @@ export default { 38 ], "access": [ - 70 + 74 ], "capacity": [ 38 ], "host_avatar_url": [ - 70 + 74 ], "host_name": [ - 70 + 74 ], "host_steam_id": [ - 70 + 74 ], "id": [ - 3818 + 3863 ], "mode": [ - 70 + 74 ], "players": [ 23 @@ -969,30 +972,30 @@ export default { 3 ], "status": [ - 70 + 74 ], "type": [ - 70 + 74 ], "__typename": [ - 70 + 74 ] }, "DraftGamePreviewPlayer": { "avatar_url": [ - 70 + 74 ], "name": [ - 70 + 74 ], "status": [ - 70 + 74 ], "steam_id": [ - 70 + 74 ], "__typename": [ - 70 + 74 ] }, "FaceitTestOutput": { @@ -1003,32 +1006,32 @@ export default { 25 ], "__typename": [ - 70 + 74 ] }, "FaceitTestResult": { "detail": [ - 70 + 74 ], "ok": [ 3 ], "__typename": [ - 70 + 74 ] }, "FileContentResponse": { "content": [ - 70 + 74 ], "path": [ - 70 + 74 ], "size": [ - 169 + 173 ], "__typename": [ - 70 + 74 ] }, "FileItem": { @@ -1036,33 +1039,33 @@ export default { 3 ], "modified": [ - 3420 + 3465 ], "name": [ - 70 + 74 ], "path": [ - 70 + 74 ], "size": [ - 169 + 173 ], "type": [ - 70 + 74 ], "__typename": [ - 70 + 74 ] }, "FileListResponse": { "currentPath": [ - 70 + 74 ], "items": [ 27 ], "__typename": [ - 70 + 74 ] }, "Float": {}, @@ -1095,18 +1098,18 @@ export default { 29 ], "__typename": [ - 70 + 74 ] }, "GetTestUploadResponse": { "error": [ - 70 + 74 ], "link": [ - 70 + 74 ], "__typename": [ - 70 + 74 ] }, "GpuDeviceStat": { @@ -1120,7 +1123,7 @@ export default { 38 ], "name": [ - 70 + 74 ], "power_w": [ 38 @@ -1132,7 +1135,7 @@ export default { 38 ], "__typename": [ - 70 + 74 ] }, "GpuStats": { @@ -1140,10 +1143,10 @@ export default { 32 ], "time": [ - 3420 + 3465 ], "__typename": [ - 70 + 74 ] }, "HighlightPresetAvailability": { @@ -1163,7 +1166,7 @@ export default { 3 ], "__typename": [ - 70 + 74 ] }, "HypertableInfo": { @@ -1171,13 +1174,13 @@ export default { 3 ], "hypertable_name": [ - 70 + 74 ], "num_chunks": [ 38 ], "__typename": [ - 70 + 74 ] }, "IndexIOStat": { @@ -1188,16 +1191,16 @@ export default { 38 ], "indexname": [ - 70 + 74 ], "schemaname": [ - 70 + 74 ], "tablename": [ - 70 + 74 ], "__typename": [ - 70 + 74 ] }, "IndexStat": { @@ -1214,19 +1217,19 @@ export default { 38 ], "indexname": [ - 70 + 74 ], "schemaname": [ - 70 + 74 ], "table_size": [ 38 ], "tablename": [ - 70 + 74 ], "__typename": [ - 70 + 74 ] }, "Int": {}, @@ -1259,7 +1262,7 @@ export default { 38 ], "__typename": [ - 70 + 74 ] }, "KickResult": { @@ -1267,45 +1270,45 @@ export default { 3 ], "message": [ - 70 + 74 ], "__typename": [ - 70 + 74 ] }, "LiveSpecGsi": { "map_name": [ - 70 + 74 ], "map_phase": [ - 70 + 74 ], "round_number": [ 38 ], "round_phase": [ - 70 + 74 ], "spec_slots": [ 42 ], "spectated_steam_id": [ - 70 + 74 ], "team_ct_name": [ - 70 + 74 ], "team_ct_score": [ 38 ], "team_t_name": [ - 70 + 74 ], "team_t_score": [ 38 ], "__typename": [ - 70 + 74 ] }, "LiveSpecSlot": { @@ -1316,19 +1319,19 @@ export default { 38 ], "name": [ - 70 + 74 ], "slot": [ 38 ], "steam_id": [ - 70 + 74 ], "team": [ - 70 + 74 ], "__typename": [ - 70 + 74 ] }, "LiveStreamSpecState": { @@ -1336,7 +1339,7 @@ export default { 41 ], "__typename": [ - 70 + 74 ] }, "LockInfo": { @@ -1344,71 +1347,71 @@ export default { 3 ], "locktype": [ - 70 + 74 ], "mode": [ - 70 + 74 ], "pid": [ 38 ], "query": [ - 70 + 74 ], "relation": [ - 70 + 74 ], "usename": [ - 70 + 74 ], "__typename": [ - 70 + 74 ] }, "MeResponse": { "avatar_url": [ - 70 + 74 ], "country": [ - 70 + 74 ], "discord_id": [ - 70 + 74 ], "language": [ - 70 + 74 ], "name": [ - 70 + 74 ], "player": [ - 2878 + 2914 ], "profile_url": [ - 70 + 74 ], "role": [ - 70 + 74 ], "steam_id": [ - 70 + 74 ], "__typename": [ - 70 + 74 ] }, "MemoryStat": { "time": [ - 3420 + 3465 ], "total": [ - 169 + 173 ], "used": [ - 169 + 173 ], "__typename": [ - 70 + 74 ] }, "NetworkStats": { @@ -1416,65 +1419,65 @@ export default { 49 ], "time": [ - 3420 + 3465 ], "__typename": [ - 70 + 74 ] }, "NewsPost": { "author_steam_id": [ - 70 + 74 ], "content_markdown": [ - 70 + 74 ], "cover_image_url": [ - 70 + 74 ], "created_at": [ - 70 + 74 ], "id": [ - 3818 + 3863 ], "published_at": [ - 70 + 74 ], "slug": [ - 70 + 74 ], "status": [ - 70 + 74 ], "teaser": [ - 70 + 74 ], "title": [ - 70 + 74 ], "updated_at": [ - 70 + 74 ], "view_count": [ - 169 + 173 ], "__typename": [ - 70 + 74 ] }, "NicStat": { "name": [ - 70 + 74 ], "rx": [ - 169 + 173 ], "tx": [ - 169 + 173 ], "__typename": [ - 70 + 74 ] }, "NodeStats": { @@ -1494,26 +1497,26 @@ export default { 47 ], "node": [ - 70 + 74 ], "__typename": [ - 70 + 74 ] }, "OrphanObject": { "key": [ - 70 + 74 ], "size": [ 29 ], "__typename": [ - 70 + 74 ] }, "OrphanScanResultOutput": { "bucket": [ - 70 + 74 ], "clip_bytes": [ 29 @@ -1546,7 +1549,7 @@ export default { 38 ], "scanned_at": [ - 70 + 74 ], "scanning": [ 3 @@ -1564,18 +1567,18 @@ export default { 38 ], "__typename": [ - 70 + 74 ] }, "PendingMatchImportActionOutput": { "error": [ - 70 + 74 ], "success": [ 3 ], "__typename": [ - 70 + 74 ] }, "PodStats": { @@ -1586,38 +1589,38 @@ export default { 46 ], "name": [ - 70 + 74 ], "node": [ - 70 + 74 ], "__typename": [ - 70 + 74 ] }, "PreviewTournamentMatchResetOutput": { "impacts": [ - 81 + 85 ], "__typename": [ - 70 + 74 ] }, "QueryDetail": { "explain_plan": [ - 70 + 74 ], "query": [ - 70 + 74 ], "queryid": [ - 70 + 74 ], "stats": [ 57 ], "__typename": [ - 70 + 74 ] }, "QueryStat": { @@ -1643,10 +1646,10 @@ export default { 29 ], "query": [ - 70 + 74 ], "queryid": [ - 70 + 74 ], "shared_blks_hit": [ 38 @@ -1667,7 +1670,7 @@ export default { 38 ], "__typename": [ - 70 + 74 ] }, "ReparseAllStartedOutput": { @@ -1678,7 +1681,7 @@ export default { 3 ], "__typename": [ - 70 + 74 ] }, "ReparseAllStatusOutput": { @@ -1689,25 +1692,25 @@ export default { 38 ], "current_demo_id": [ - 70 + 74 ], "failed": [ 38 ], "finished_at": [ - 70 + 74 ], "running": [ 3 ], "started_at": [ - 70 + 74 ], "total": [ 38 ], "__typename": [ - 70 + 74 ] }, "SanctionResult": { @@ -1715,13 +1718,13 @@ export default { 3 ], "id": [ - 70 + 74 ], "message": [ - 70 + 74 ], "__typename": [ - 70 + 74 ] }, "ScanStartedOutput": { @@ -1732,59 +1735,59 @@ export default { 3 ], "__typename": [ - 70 + 74 ] }, "ScheduledLineupInput": { "steam_ids": [ - 70 + 74 ], "team_id": [ - 70 + 74 ], "__typename": [ - 70 + 74 ] }, "ScrimCalendarOutput": { "url": [ - 70 + 74 ], "__typename": [ - 70 + 74 ] }, "ServerPlayer": { "name": [ - 70 + 74 ], "steam_id": [ - 70 + 74 ], "__typename": [ - 70 + 74 ] }, "SetupGameServeOutput": { "gameServerId": [ - 70 + 74 ], "link": [ - 70 + 74 ], "__typename": [ - 70 + 74 ] }, "SteamMatchHistoryLinkOutput": { "error": [ - 70 + 74 ], "success": [ 3 ], "__typename": [ - 70 + 74 ] }, "SteamMatchHistoryPollOutput": { @@ -1792,24 +1795,113 @@ export default { 38 ], "error": [ - 70 + 74 ], "success": [ 3 ], "__typename": [ - 70 + 74 + ] + }, + "SteamPresenceAdminStatusOutput": { + "bots": [ + 69 + ], + "enabled": [ + 3 + ], + "pool": [ + 71 + ], + "__typename": [ + 74 + ] + }, + "SteamPresenceBot": { + "assigned": [ + 38 + ], + "capacity": [ + 38 + ], + "guardLastWrong": [ + 3 + ], + "guardType": [ + 74 + ], + "id": [ + 74 + ], + "needs2fa": [ + 3 + ], + "online": [ + 3 + ], + "steamId": [ + 74 + ], + "steamLevel": [ + 38 + ], + "username": [ + 74 + ], + "watching": [ + 38 + ], + "__typename": [ + 74 + ] + }, + "SteamPresenceBotAssignment": { + "addUrl": [ + 74 + ], + "enabled": [ + 3 + ], + "status": [ + 74 + ], + "steamId": [ + 74 + ], + "__typename": [ + 74 + ] + }, + "SteamPresencePool": { + "bots": [ + 38 + ], + "capacity": [ + 38 + ], + "online": [ + 38 + ], + "pending": [ + 38 + ], + "watching": [ + 38 + ], + "__typename": [ + 74 ] }, "StorageStats": { "summary": [ - 69 + 73 ], "tables": [ - 75 + 79 ], "__typename": [ - 70 + 74 ] }, "StorageSummary": { @@ -1826,108 +1918,108 @@ export default { 29 ], "__typename": [ - 70 + 74 ] }, "String": {}, "String_array_comparison_exp": { "_contained_in": [ - 70 + 74 ], "_contains": [ - 70 + 74 ], "_eq": [ - 70 + 74 ], "_gt": [ - 70 + 74 ], "_gte": [ - 70 + 74 ], "_in": [ - 70 + 74 ], "_is_null": [ 3 ], "_lt": [ - 70 + 74 ], "_lte": [ - 70 + 74 ], "_neq": [ - 70 + 74 ], "_nin": [ - 70 + 74 ], "__typename": [ - 70 + 74 ] }, "String_comparison_exp": { "_eq": [ - 70 + 74 ], "_gt": [ - 70 + 74 ], "_gte": [ - 70 + 74 ], "_ilike": [ - 70 + 74 ], "_in": [ - 70 + 74 ], "_iregex": [ - 70 + 74 ], "_is_null": [ 3 ], "_like": [ - 70 + 74 ], "_lt": [ - 70 + 74 ], "_lte": [ - 70 + 74 ], "_neq": [ - 70 + 74 ], "_nilike": [ - 70 + 74 ], "_nin": [ - 70 + 74 ], "_niregex": [ - 70 + 74 ], "_nlike": [ - 70 + 74 ], "_nregex": [ - 70 + 74 ], "_nsimilar": [ - 70 + 74 ], "_regex": [ - 70 + 74 ], "_similar": [ - 70 + 74 ], "__typename": [ - 70 + 74 ] }, "SuccessOutput": { @@ -1935,7 +2027,7 @@ export default { 3 ], "__typename": [ - 70 + 74 ] }, "TableIOStat": { @@ -1955,13 +2047,13 @@ export default { 38 ], "relname": [ - 70 + 74 ], "schemaname": [ - 70 + 74 ], "__typename": [ - 70 + 74 ] }, "TableSizeInfo": { @@ -1978,19 +2070,19 @@ export default { 38 ], "schemaname": [ - 70 + 74 ], "table_size": [ 29 ], "tablename": [ - 70 + 74 ], "total_size": [ 29 ], "__typename": [ - 70 + 74 ] }, "TableStat": { @@ -2001,16 +2093,16 @@ export default { 38 ], "last_analyze": [ - 3420 + 3465 ], "last_autoanalyze": [ - 3420 + 3465 ], "last_autovacuum": [ - 3420 + 3465 ], "last_vacuum": [ - 3420 + 3465 ], "n_dead_tup": [ 38 @@ -2031,10 +2123,10 @@ export default { 38 ], "relname": [ - 70 + 74 ], "schemaname": [ - 70 + 74 ], "seq_scan": [ 38 @@ -2043,7 +2135,7 @@ export default { 38 ], "__typename": [ - 70 + 74 ] }, "TelemetryStats": { @@ -2051,35 +2143,35 @@ export default { 38 ], "__typename": [ - 70 + 74 ] }, "TestUploadResponse": { "error": [ - 70 + 74 ], "__typename": [ - 70 + 74 ] }, "TimescaleJob": { "hypertable_name": [ - 70 + 74 ], "job_id": [ 38 ], "job_type": [ - 70 + 74 ], "last_run_status": [ - 70 + 74 ], "next_start": [ - 3420 + 3465 ], "__typename": [ - 70 + 74 ] }, "TimescaleStats": { @@ -2090,15 +2182,15 @@ export default { 35 ], "jobs": [ - 79 + 83 ], "__typename": [ - 70 + 74 ] }, "TournamentMatchResetImpact": { "bracket_id": [ - 3818 + 3863 ], "depth": [ 38 @@ -2107,67 +2199,67 @@ export default { 3 ], "match_id": [ - 3818 + 3863 ], "match_number": [ 38 ], "match_status": [ - 70 + 74 ], "path": [ - 70 + 74 ], "round": [ 38 ], "stage_type": [ - 70 + 74 ], "will_delete_match": [ 3 ], "__typename": [ - 70 + 74 ] }, "WatchDemoOutput": { "match_map_id": [ - 70 + 74 ], "session_id": [ - 70 + 74 ], "stream_url": [ - 70 + 74 ], "success": [ 3 ], "__typename": [ - 70 + 74 ] }, "_map_pool": { "map_id": [ - 3818 + 3863 ], "map_pool_id": [ - 3818 + 3863 ], "__typename": [ - 70 + 74 ] }, "_map_pool_aggregate": { "aggregate": [ - 85 + 89 ], "nodes": [ - 83 + 87 ], "__typename": [ - 70 + 74 ] }, "_map_pool_aggregate_fields": { @@ -2175,7 +2267,7 @@ export default { 38, { "columns": [ - 95, + 99, "[_map_pool_select_column!]" ], "distinct": [ @@ -2184,67 +2276,67 @@ export default { } ], "max": [ - 89 + 93 ], "min": [ - 90 + 94 ], "__typename": [ - 70 + 74 ] }, "_map_pool_bool_exp": { "_and": [ - 86 + 90 ], "_not": [ - 86 + 90 ], "_or": [ - 86 + 90 ], "map_id": [ - 3820 + 3865 ], "map_pool_id": [ - 3820 + 3865 ], "__typename": [ - 70 + 74 ] }, "_map_pool_constraint": {}, "_map_pool_insert_input": { "map_id": [ - 3818 + 3863 ], "map_pool_id": [ - 3818 + 3863 ], "__typename": [ - 70 + 74 ] }, "_map_pool_max_fields": { "map_id": [ - 3818 + 3863 ], "map_pool_id": [ - 3818 + 3863 ], "__typename": [ - 70 + 74 ] }, "_map_pool_min_fields": { "map_id": [ - 3818 + 3863 ], "map_pool_id": [ - 3818 + 3863 ], "__typename": [ - 70 + 74 ] }, "_map_pool_mutation_response": { @@ -2252,153 +2344,153 @@ export default { 38 ], "returning": [ - 83 + 87 ], "__typename": [ - 70 + 74 ] }, "_map_pool_on_conflict": { "constraint": [ - 87 + 91 ], "update_columns": [ - 99 + 103 ], "where": [ - 86 + 90 ], "__typename": [ - 70 + 74 ] }, "_map_pool_order_by": { "map_id": [ - 2011 + 2015 ], "map_pool_id": [ - 2011 + 2015 ], "__typename": [ - 70 + 74 ] }, "_map_pool_pk_columns_input": { "map_id": [ - 3818 + 3863 ], "map_pool_id": [ - 3818 + 3863 ], "__typename": [ - 70 + 74 ] }, "_map_pool_select_column": {}, "_map_pool_set_input": { "map_id": [ - 3818 + 3863 ], "map_pool_id": [ - 3818 + 3863 ], "__typename": [ - 70 + 74 ] }, "_map_pool_stream_cursor_input": { "initial_value": [ - 98 + 102 ], "ordering": [ - 224 + 228 ], "__typename": [ - 70 + 74 ] }, "_map_pool_stream_cursor_value_input": { "map_id": [ - 3818 + 3863 ], "map_pool_id": [ - 3818 + 3863 ], "__typename": [ - 70 + 74 ] }, "_map_pool_update_column": {}, "_map_pool_updates": { "_set": [ - 96 + 100 ], "where": [ - 86 + 90 ], "__typename": [ - 70 + 74 ] }, "abandoned_matches": { "abandoned_at": [ - 3421 + 3466 ], "id": [ - 3818 + 3863 ], "steam_id": [ - 169 + 173 ], "__typename": [ - 70 + 74 ] }, "abandoned_matches_aggregate": { "aggregate": [ - 105 + 109 ], "nodes": [ - 101 + 105 ], "__typename": [ - 70 + 74 ] }, "abandoned_matches_aggregate_bool_exp": { "count": [ - 104 + 108 ], "__typename": [ - 70 + 74 ] }, "abandoned_matches_aggregate_bool_exp_count": { "arguments": [ - 122 + 126 ], "distinct": [ 3 ], "filter": [ - 110 + 114 ], "predicate": [ 39 ], "__typename": [ - 70 + 74 ] }, "abandoned_matches_aggregate_fields": { "avg": [ - 108 + 112 ], "count": [ 38, { "columns": [ - 122, + 126, "[abandoned_matches_select_column!]" ], "distinct": [ @@ -2407,83 +2499,83 @@ export default { } ], "max": [ - 114 + 118 ], "min": [ - 116 + 120 ], "stddev": [ - 124 + 128 ], "stddev_pop": [ - 126 + 130 ], "stddev_samp": [ - 128 + 132 ], "sum": [ - 132 + 136 ], "var_pop": [ - 136 + 140 ], "var_samp": [ - 138 + 142 ], "variance": [ - 140 + 144 ], "__typename": [ - 70 + 74 ] }, "abandoned_matches_aggregate_order_by": { "avg": [ - 109 + 113 ], "count": [ - 2011 + 2015 ], "max": [ - 115 + 119 ], "min": [ - 117 + 121 ], "stddev": [ - 125 + 129 ], "stddev_pop": [ - 127 + 131 ], "stddev_samp": [ - 129 + 133 ], "sum": [ - 133 + 137 ], "var_pop": [ - 137 + 141 ], "var_samp": [ - 139 + 143 ], "variance": [ - 141 + 145 ], "__typename": [ - 70 + 74 ] }, "abandoned_matches_arr_rel_insert_input": { "data": [ - 113 + 117 ], "on_conflict": [ - 119 + 123 ], "__typename": [ - 70 + 74 ] }, "abandoned_matches_avg_fields": { @@ -2491,117 +2583,117 @@ export default { 29 ], "__typename": [ - 70 + 74 ] }, "abandoned_matches_avg_order_by": { "steam_id": [ - 2011 + 2015 ], "__typename": [ - 70 + 74 ] }, "abandoned_matches_bool_exp": { "_and": [ - 110 + 114 ], "_not": [ - 110 + 114 ], "_or": [ - 110 + 114 ], "abandoned_at": [ - 3422 + 3467 ], "id": [ - 3820 + 3865 ], "steam_id": [ - 171 + 175 ], "__typename": [ - 70 + 74 ] }, "abandoned_matches_constraint": {}, "abandoned_matches_inc_input": { "steam_id": [ - 169 + 173 ], "__typename": [ - 70 + 74 ] }, "abandoned_matches_insert_input": { "abandoned_at": [ - 3421 + 3466 ], "id": [ - 3818 + 3863 ], "steam_id": [ - 169 + 173 ], "__typename": [ - 70 + 74 ] }, "abandoned_matches_max_fields": { "abandoned_at": [ - 3421 + 3466 ], "id": [ - 3818 + 3863 ], "steam_id": [ - 169 + 173 ], "__typename": [ - 70 + 74 ] }, "abandoned_matches_max_order_by": { "abandoned_at": [ - 2011 + 2015 ], "id": [ - 2011 + 2015 ], "steam_id": [ - 2011 + 2015 ], "__typename": [ - 70 + 74 ] }, "abandoned_matches_min_fields": { "abandoned_at": [ - 3421 + 3466 ], "id": [ - 3818 + 3863 ], "steam_id": [ - 169 + 173 ], "__typename": [ - 70 + 74 ] }, "abandoned_matches_min_order_by": { "abandoned_at": [ - 2011 + 2015 ], "id": [ - 2011 + 2015 ], "steam_id": [ - 2011 + 2015 ], "__typename": [ - 70 + 74 ] }, "abandoned_matches_mutation_response": { @@ -2609,61 +2701,61 @@ export default { 38 ], "returning": [ - 101 + 105 ], "__typename": [ - 70 + 74 ] }, "abandoned_matches_on_conflict": { "constraint": [ - 111 + 115 ], "update_columns": [ - 134 + 138 ], "where": [ - 110 + 114 ], "__typename": [ - 70 + 74 ] }, "abandoned_matches_order_by": { "abandoned_at": [ - 2011 + 2015 ], "id": [ - 2011 + 2015 ], "steam_id": [ - 2011 + 2015 ], "__typename": [ - 70 + 74 ] }, "abandoned_matches_pk_columns_input": { "id": [ - 3818 + 3863 ], "__typename": [ - 70 + 74 ] }, "abandoned_matches_select_column": {}, "abandoned_matches_set_input": { "abandoned_at": [ - 3421 + 3466 ], "id": [ - 3818 + 3863 ], "steam_id": [ - 169 + 173 ], "__typename": [ - 70 + 74 ] }, "abandoned_matches_stddev_fields": { @@ -2671,15 +2763,15 @@ export default { 29 ], "__typename": [ - 70 + 74 ] }, "abandoned_matches_stddev_order_by": { "steam_id": [ - 2011 + 2015 ], "__typename": [ - 70 + 74 ] }, "abandoned_matches_stddev_pop_fields": { @@ -2687,15 +2779,15 @@ export default { 29 ], "__typename": [ - 70 + 74 ] }, "abandoned_matches_stddev_pop_order_by": { "steam_id": [ - 2011 + 2015 ], "__typename": [ - 70 + 74 ] }, "abandoned_matches_stddev_samp_fields": { @@ -2703,71 +2795,71 @@ export default { 29 ], "__typename": [ - 70 + 74 ] }, "abandoned_matches_stddev_samp_order_by": { "steam_id": [ - 2011 + 2015 ], "__typename": [ - 70 + 74 ] }, "abandoned_matches_stream_cursor_input": { "initial_value": [ - 131 + 135 ], "ordering": [ - 224 + 228 ], "__typename": [ - 70 + 74 ] }, "abandoned_matches_stream_cursor_value_input": { "abandoned_at": [ - 3421 + 3466 ], "id": [ - 3818 + 3863 ], "steam_id": [ - 169 + 173 ], "__typename": [ - 70 + 74 ] }, "abandoned_matches_sum_fields": { "steam_id": [ - 169 + 173 ], "__typename": [ - 70 + 74 ] }, "abandoned_matches_sum_order_by": { "steam_id": [ - 2011 + 2015 ], "__typename": [ - 70 + 74 ] }, "abandoned_matches_update_column": {}, "abandoned_matches_updates": { "_inc": [ - 112 + 116 ], "_set": [ - 123 + 127 ], "where": [ - 110 + 114 ], "__typename": [ - 70 + 74 ] }, "abandoned_matches_var_pop_fields": { @@ -2775,15 +2867,15 @@ export default { 29 ], "__typename": [ - 70 + 74 ] }, "abandoned_matches_var_pop_order_by": { "steam_id": [ - 2011 + 2015 ], "__typename": [ - 70 + 74 ] }, "abandoned_matches_var_samp_fields": { @@ -2791,15 +2883,15 @@ export default { 29 ], "__typename": [ - 70 + 74 ] }, "abandoned_matches_var_samp_order_by": { "steam_id": [ - 2011 + 2015 ], "__typename": [ - 70 + 74 ] }, "abandoned_matches_variance_fields": { @@ -2807,57 +2899,57 @@ export default { 29 ], "__typename": [ - 70 + 74 ] }, "abandoned_matches_variance_order_by": { "steam_id": [ - 2011 + 2015 ], "__typename": [ - 70 + 74 ] }, "api_keys": { "created_at": [ - 3421 + 3466 ], "id": [ - 3818 + 3863 ], "label": [ - 70 + 74 ], "last_used_at": [ - 3421 + 3466 ], "steam_id": [ - 169 + 173 ], "__typename": [ - 70 + 74 ] }, "api_keys_aggregate": { "aggregate": [ - 144 + 148 ], "nodes": [ - 142 + 146 ], "__typename": [ - 70 + 74 ] }, "api_keys_aggregate_fields": { "avg": [ - 145 + 149 ], "count": [ 38, { "columns": [ - 156, + 160, "[api_keys_select_column!]" ], "distinct": [ @@ -2866,34 +2958,34 @@ export default { } ], "max": [ - 150 + 154 ], "min": [ - 151 + 155 ], "stddev": [ - 158 + 162 ], "stddev_pop": [ - 159 + 163 ], "stddev_samp": [ - 160 + 164 ], "sum": [ - 163 + 167 ], "var_pop": [ - 166 + 170 ], "var_samp": [ - 167 + 171 ], "variance": [ - 168 + 172 ], "__typename": [ - 70 + 74 ] }, "api_keys_avg_fields": { @@ -2901,105 +2993,105 @@ export default { 29 ], "__typename": [ - 70 + 74 ] }, "api_keys_bool_exp": { "_and": [ - 146 + 150 ], "_not": [ - 146 + 150 ], "_or": [ - 146 + 150 ], "created_at": [ - 3422 + 3467 ], "id": [ - 3820 + 3865 ], "label": [ - 72 + 76 ], "last_used_at": [ - 3422 + 3467 ], "steam_id": [ - 171 + 175 ], "__typename": [ - 70 + 74 ] }, "api_keys_constraint": {}, "api_keys_inc_input": { "steam_id": [ - 169 + 173 ], "__typename": [ - 70 + 74 ] }, "api_keys_insert_input": { "created_at": [ - 3421 + 3466 ], "id": [ - 3818 + 3863 ], "label": [ - 70 + 74 ], "last_used_at": [ - 3421 + 3466 ], "steam_id": [ - 169 + 173 ], "__typename": [ - 70 + 74 ] }, "api_keys_max_fields": { "created_at": [ - 3421 + 3466 ], "id": [ - 3818 + 3863 ], "label": [ - 70 + 74 ], "last_used_at": [ - 3421 + 3466 ], "steam_id": [ - 169 + 173 ], "__typename": [ - 70 + 74 ] }, "api_keys_min_fields": { "created_at": [ - 3421 + 3466 ], "id": [ - 3818 + 3863 ], "label": [ - 70 + 74 ], "last_used_at": [ - 3421 + 3466 ], "steam_id": [ - 169 + 173 ], "__typename": [ - 70 + 74 ] }, "api_keys_mutation_response": { @@ -3007,73 +3099,73 @@ export default { 38 ], "returning": [ - 142 + 146 ], "__typename": [ - 70 + 74 ] }, "api_keys_on_conflict": { "constraint": [ - 147 + 151 ], "update_columns": [ - 164 + 168 ], "where": [ - 146 + 150 ], "__typename": [ - 70 + 74 ] }, "api_keys_order_by": { "created_at": [ - 2011 + 2015 ], "id": [ - 2011 + 2015 ], "label": [ - 2011 + 2015 ], "last_used_at": [ - 2011 + 2015 ], "steam_id": [ - 2011 + 2015 ], "__typename": [ - 70 + 74 ] }, "api_keys_pk_columns_input": { "id": [ - 3818 + 3863 ], "__typename": [ - 70 + 74 ] }, "api_keys_select_column": {}, "api_keys_set_input": { "created_at": [ - 3421 + 3466 ], "id": [ - 3818 + 3863 ], "label": [ - 70 + 74 ], "last_used_at": [ - 3421 + 3466 ], "steam_id": [ - 169 + 173 ], "__typename": [ - 70 + 74 ] }, "api_keys_stddev_fields": { @@ -3081,7 +3173,7 @@ export default { 29 ], "__typename": [ - 70 + 74 ] }, "api_keys_stddev_pop_fields": { @@ -3089,7 +3181,7 @@ export default { 29 ], "__typename": [ - 70 + 74 ] }, "api_keys_stddev_samp_fields": { @@ -3097,61 +3189,61 @@ export default { 29 ], "__typename": [ - 70 + 74 ] }, "api_keys_stream_cursor_input": { "initial_value": [ - 162 + 166 ], "ordering": [ - 224 + 228 ], "__typename": [ - 70 + 74 ] }, "api_keys_stream_cursor_value_input": { "created_at": [ - 3421 + 3466 ], "id": [ - 3818 + 3863 ], "label": [ - 70 + 74 ], "last_used_at": [ - 3421 + 3466 ], "steam_id": [ - 169 + 173 ], "__typename": [ - 70 + 74 ] }, "api_keys_sum_fields": { "steam_id": [ - 169 + 173 ], "__typename": [ - 70 + 74 ] }, "api_keys_update_column": {}, "api_keys_updates": { "_inc": [ - 148 + 152 ], "_set": [ - 157 + 161 ], "where": [ - 146 + 150 ], "__typename": [ - 70 + 74 ] }, "api_keys_var_pop_fields": { @@ -3159,7 +3251,7 @@ export default { 29 ], "__typename": [ - 70 + 74 ] }, "api_keys_var_samp_fields": { @@ -3167,7 +3259,7 @@ export default { 29 ], "__typename": [ - 70 + 74 ] }, "api_keys_variance_fields": { @@ -3175,279 +3267,279 @@ export default { 29 ], "__typename": [ - 70 + 74 ] }, "bigint": {}, "bigint_array_comparison_exp": { "_contained_in": [ - 169 + 173 ], "_contains": [ - 169 + 173 ], "_eq": [ - 169 + 173 ], "_gt": [ - 169 + 173 ], "_gte": [ - 169 + 173 ], "_in": [ - 169 + 173 ], "_is_null": [ 3 ], "_lt": [ - 169 + 173 ], "_lte": [ - 169 + 173 ], "_neq": [ - 169 + 173 ], "_nin": [ - 169 + 173 ], "__typename": [ - 70 + 74 ] }, "bigint_comparison_exp": { "_eq": [ - 169 + 173 ], "_gt": [ - 169 + 173 ], "_gte": [ - 169 + 173 ], "_in": [ - 169 + 173 ], "_is_null": [ 3 ], "_lt": [ - 169 + 173 ], "_lte": [ - 169 + 173 ], "_neq": [ - 169 + 173 ], "_nin": [ - 169 + 173 ], "__typename": [ - 70 + 74 ] }, "bytea": {}, "bytea_comparison_exp": { "_eq": [ - 172 + 176 ], "_gt": [ - 172 + 176 ], "_gte": [ - 172 + 176 ], "_in": [ - 172 + 176 ], "_is_null": [ 3 ], "_lt": [ - 172 + 176 ], "_lte": [ - 172 + 176 ], "_neq": [ - 172 + 176 ], "_nin": [ - 172 + 176 ], "__typename": [ - 70 + 74 ] }, "clip_render_jobs": { "clip": [ - 1373 + 1377 ], "clip_id": [ - 3818 + 3863 ], "created_at": [ - 3421 + 3466 ], "error_message": [ - 70 + 74 ], "game_server_node": [ - 1113 + 1117 ], "game_server_node_id": [ - 70 + 74 ], "id": [ - 3818 + 3863 ], "k8s_job_name": [ - 70 + 74 ], "last_status_at": [ - 3421 + 3466 ], "match_map": [ - 1664 + 1668 ], "match_map_demo": [ - 1548 + 1552 ], "match_map_demo_id": [ - 3818 + 3863 ], "match_map_id": [ - 3818 + 3863 ], "paused": [ 3 ], "progress": [ - 2009 + 2013 ], "session_token": [ - 70 + 74 ], "sort_index": [ 38 ], "spec": [ - 1235, + 1239, { "path": [ - 70 + 74 ] } ], "status": [ - 70 + 74 ], "status_history": [ - 1235, + 1239, { "path": [ - 70 + 74 ] } ], "user": [ - 2878 + 2914 ], "user_steam_id": [ - 169 + 173 ], "__typename": [ - 70 + 74 ] }, "clip_render_jobs_aggregate": { "aggregate": [ - 180 + 184 ], "nodes": [ - 174 + 178 ], "__typename": [ - 70 + 74 ] }, "clip_render_jobs_aggregate_bool_exp": { "bool_and": [ - 177 + 181 ], "bool_or": [ - 178 + 182 ], "count": [ - 179 + 183 ], "__typename": [ - 70 + 74 ] }, "clip_render_jobs_aggregate_bool_exp_bool_and": { "arguments": [ - 203 + 207 ], "distinct": [ 3 ], "filter": [ - 186 + 190 ], "predicate": [ 4 ], "__typename": [ - 70 + 74 ] }, "clip_render_jobs_aggregate_bool_exp_bool_or": { "arguments": [ - 204 + 208 ], "distinct": [ 3 ], "filter": [ - 186 + 190 ], "predicate": [ 4 ], "__typename": [ - 70 + 74 ] }, "clip_render_jobs_aggregate_bool_exp_count": { "arguments": [ - 202 + 206 ], "distinct": [ 3 ], "filter": [ - 186 + 190 ], "predicate": [ 39 ], "__typename": [ - 70 + 74 ] }, "clip_render_jobs_aggregate_fields": { "avg": [ - 184 + 188 ], "count": [ 38, { "columns": [ - 202, + 206, "[clip_render_jobs_select_column!]" ], "distinct": [ @@ -3456,94 +3548,94 @@ export default { } ], "max": [ - 193 + 197 ], "min": [ - 195 + 199 ], "stddev": [ - 206 + 210 ], "stddev_pop": [ - 208 + 212 ], "stddev_samp": [ - 210 + 214 ], "sum": [ - 214 + 218 ], "var_pop": [ - 218 + 222 ], "var_samp": [ - 220 + 224 ], "variance": [ - 222 + 226 ], "__typename": [ - 70 + 74 ] }, "clip_render_jobs_aggregate_order_by": { "avg": [ - 185 + 189 ], "count": [ - 2011 + 2015 ], "max": [ - 194 + 198 ], "min": [ - 196 + 200 ], "stddev": [ - 207 + 211 ], "stddev_pop": [ - 209 + 213 ], "stddev_samp": [ - 211 + 215 ], "sum": [ - 215 + 219 ], "var_pop": [ - 219 + 223 ], "var_samp": [ - 221 + 225 ], "variance": [ - 223 + 227 ], "__typename": [ - 70 + 74 ] }, "clip_render_jobs_append_input": { "spec": [ - 1235 + 1239 ], "status_history": [ - 1235 + 1239 ], "__typename": [ - 70 + 74 ] }, "clip_render_jobs_arr_rel_insert_input": { "data": [ - 192 + 196 ], "on_conflict": [ - 198 + 202 ], "__typename": [ - 70 + 74 ] }, "clip_render_jobs_avg_fields": { @@ -3557,113 +3649,113 @@ export default { 29 ], "__typename": [ - 70 + 74 ] }, "clip_render_jobs_avg_order_by": { "progress": [ - 2011 + 2015 ], "sort_index": [ - 2011 + 2015 ], "user_steam_id": [ - 2011 + 2015 ], "__typename": [ - 70 + 74 ] }, "clip_render_jobs_bool_exp": { "_and": [ - 186 + 190 ], "_not": [ - 186 + 190 ], "_or": [ - 186 + 190 ], "clip": [ - 1382 + 1386 ], "clip_id": [ - 3820 + 3865 ], "created_at": [ - 3422 + 3467 ], "error_message": [ - 72 + 76 ], "game_server_node": [ - 1125 + 1129 ], "game_server_node_id": [ - 72 + 76 ], "id": [ - 3820 + 3865 ], "k8s_job_name": [ - 72 + 76 ], "last_status_at": [ - 3422 + 3467 ], "match_map": [ - 1673 + 1677 ], "match_map_demo": [ - 1560 + 1564 ], "match_map_demo_id": [ - 3820 + 3865 ], "match_map_id": [ - 3820 + 3865 ], "paused": [ 4 ], "progress": [ - 2010 + 2014 ], "session_token": [ - 72 + 76 ], "sort_index": [ 39 ], "spec": [ - 1237 + 1241 ], "status": [ - 72 + 76 ], "status_history": [ - 1237 + 1241 ], "user": [ - 2882 + 2918 ], "user_steam_id": [ - 171 + 175 ], "__typename": [ - 70 + 74 ] }, "clip_render_jobs_constraint": {}, "clip_render_jobs_delete_at_path_input": { "spec": [ - 70 + 74 ], "status_history": [ - 70 + 74 ], "__typename": [ - 70 + 74 ] }, "clip_render_jobs_delete_elem_input": { @@ -3674,291 +3766,291 @@ export default { 38 ], "__typename": [ - 70 + 74 ] }, "clip_render_jobs_delete_key_input": { "spec": [ - 70 + 74 ], "status_history": [ - 70 + 74 ], "__typename": [ - 70 + 74 ] }, "clip_render_jobs_inc_input": { "progress": [ - 2009 + 2013 ], "sort_index": [ 38 ], "user_steam_id": [ - 169 + 173 ], "__typename": [ - 70 + 74 ] }, "clip_render_jobs_insert_input": { "clip": [ - 1391 + 1395 ], "clip_id": [ - 3818 + 3863 ], "created_at": [ - 3421 + 3466 ], "error_message": [ - 70 + 74 ], "game_server_node": [ - 1137 + 1141 ], "game_server_node_id": [ - 70 + 74 ], "id": [ - 3818 + 3863 ], "k8s_job_name": [ - 70 + 74 ], "last_status_at": [ - 3421 + 3466 ], "match_map": [ - 1682 + 1686 ], "match_map_demo": [ - 1572 + 1576 ], "match_map_demo_id": [ - 3818 + 3863 ], "match_map_id": [ - 3818 + 3863 ], "paused": [ 3 ], "progress": [ - 2009 + 2013 ], "session_token": [ - 70 + 74 ], "sort_index": [ 38 ], "spec": [ - 1235 + 1239 ], "status": [ - 70 + 74 ], "status_history": [ - 1235 + 1239 ], "user": [ - 2889 + 2925 ], "user_steam_id": [ - 169 + 173 ], "__typename": [ - 70 + 74 ] }, "clip_render_jobs_max_fields": { "clip_id": [ - 3818 + 3863 ], "created_at": [ - 3421 + 3466 ], "error_message": [ - 70 + 74 ], "game_server_node_id": [ - 70 + 74 ], "id": [ - 3818 + 3863 ], "k8s_job_name": [ - 70 + 74 ], "last_status_at": [ - 3421 + 3466 ], "match_map_demo_id": [ - 3818 + 3863 ], "match_map_id": [ - 3818 + 3863 ], "progress": [ - 2009 + 2013 ], "session_token": [ - 70 + 74 ], "sort_index": [ 38 ], "status": [ - 70 + 74 ], "user_steam_id": [ - 169 + 173 ], "__typename": [ - 70 + 74 ] }, "clip_render_jobs_max_order_by": { "clip_id": [ - 2011 + 2015 ], "created_at": [ - 2011 + 2015 ], "error_message": [ - 2011 + 2015 ], "game_server_node_id": [ - 2011 + 2015 ], "id": [ - 2011 + 2015 ], "k8s_job_name": [ - 2011 + 2015 ], "last_status_at": [ - 2011 + 2015 ], "match_map_demo_id": [ - 2011 + 2015 ], "match_map_id": [ - 2011 + 2015 ], "progress": [ - 2011 + 2015 ], "session_token": [ - 2011 + 2015 ], "sort_index": [ - 2011 + 2015 ], "status": [ - 2011 + 2015 ], "user_steam_id": [ - 2011 + 2015 ], "__typename": [ - 70 + 74 ] }, "clip_render_jobs_min_fields": { "clip_id": [ - 3818 + 3863 ], "created_at": [ - 3421 + 3466 ], "error_message": [ - 70 + 74 ], "game_server_node_id": [ - 70 + 74 ], "id": [ - 3818 + 3863 ], "k8s_job_name": [ - 70 + 74 ], "last_status_at": [ - 3421 + 3466 ], "match_map_demo_id": [ - 3818 + 3863 ], "match_map_id": [ - 3818 + 3863 ], "progress": [ - 2009 + 2013 ], "session_token": [ - 70 + 74 ], "sort_index": [ 38 ], "status": [ - 70 + 74 ], "user_steam_id": [ - 169 + 173 ], "__typename": [ - 70 + 74 ] }, "clip_render_jobs_min_order_by": { "clip_id": [ - 2011 + 2015 ], "created_at": [ - 2011 + 2015 ], "error_message": [ - 2011 + 2015 ], "game_server_node_id": [ - 2011 + 2015 ], "id": [ - 2011 + 2015 ], "k8s_job_name": [ - 2011 + 2015 ], "last_status_at": [ - 2011 + 2015 ], "match_map_demo_id": [ - 2011 + 2015 ], "match_map_id": [ - 2011 + 2015 ], "progress": [ - 2011 + 2015 ], "session_token": [ - 2011 + 2015 ], "sort_index": [ - 2011 + 2015 ], "status": [ - 2011 + 2015 ], "user_steam_id": [ - 2011 + 2015 ], "__typename": [ - 70 + 74 ] }, "clip_render_jobs_mutation_response": { @@ -3966,114 +4058,114 @@ export default { 38 ], "returning": [ - 174 + 178 ], "__typename": [ - 70 + 74 ] }, "clip_render_jobs_on_conflict": { "constraint": [ - 187 + 191 ], "update_columns": [ - 216 + 220 ], "where": [ - 186 + 190 ], "__typename": [ - 70 + 74 ] }, "clip_render_jobs_order_by": { "clip": [ - 1393 + 1397 ], "clip_id": [ - 2011 + 2015 ], "created_at": [ - 2011 + 2015 ], "error_message": [ - 2011 + 2015 ], "game_server_node": [ - 1139 + 1143 ], "game_server_node_id": [ - 2011 + 2015 ], "id": [ - 2011 + 2015 ], "k8s_job_name": [ - 2011 + 2015 ], "last_status_at": [ - 2011 + 2015 ], "match_map": [ - 1684 + 1688 ], "match_map_demo": [ - 1574 + 1578 ], "match_map_demo_id": [ - 2011 + 2015 ], "match_map_id": [ - 2011 + 2015 ], "paused": [ - 2011 + 2015 ], "progress": [ - 2011 + 2015 ], "session_token": [ - 2011 + 2015 ], "sort_index": [ - 2011 + 2015 ], "spec": [ - 2011 + 2015 ], "status": [ - 2011 + 2015 ], "status_history": [ - 2011 + 2015 ], "user": [ - 2891 + 2927 ], "user_steam_id": [ - 2011 + 2015 ], "__typename": [ - 70 + 74 ] }, "clip_render_jobs_pk_columns_input": { "id": [ - 3818 + 3863 ], "__typename": [ - 70 + 74 ] }, "clip_render_jobs_prepend_input": { "spec": [ - 1235 + 1239 ], "status_history": [ - 1235 + 1239 ], "__typename": [ - 70 + 74 ] }, "clip_render_jobs_select_column": {}, @@ -4081,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": [ - 3818 + 3863 ], "created_at": [ - 3421 + 3466 ], "error_message": [ - 70 + 74 ], "game_server_node_id": [ - 70 + 74 ], "id": [ - 3818 + 3863 ], "k8s_job_name": [ - 70 + 74 ], "last_status_at": [ - 3421 + 3466 ], "match_map_demo_id": [ - 3818 + 3863 ], "match_map_id": [ - 3818 + 3863 ], "paused": [ 3 ], "progress": [ - 2009 + 2013 ], "session_token": [ - 70 + 74 ], "sort_index": [ 38 ], "spec": [ - 1235 + 1239 ], "status": [ - 70 + 74 ], "status_history": [ - 1235 + 1239 ], "user_steam_id": [ - 169 + 173 ], "__typename": [ - 70 + 74 ] }, "clip_render_jobs_stddev_fields": { @@ -4146,21 +4238,21 @@ export default { 29 ], "__typename": [ - 70 + 74 ] }, "clip_render_jobs_stddev_order_by": { "progress": [ - 2011 + 2015 ], "sort_index": [ - 2011 + 2015 ], "user_steam_id": [ - 2011 + 2015 ], "__typename": [ - 70 + 74 ] }, "clip_render_jobs_stddev_pop_fields": { @@ -4174,21 +4266,21 @@ export default { 29 ], "__typename": [ - 70 + 74 ] }, "clip_render_jobs_stddev_pop_order_by": { "progress": [ - 2011 + 2015 ], "sort_index": [ - 2011 + 2015 ], "user_steam_id": [ - 2011 + 2015 ], "__typename": [ - 70 + 74 ] }, "clip_render_jobs_stddev_samp_fields": { @@ -4202,146 +4294,146 @@ export default { 29 ], "__typename": [ - 70 + 74 ] }, "clip_render_jobs_stddev_samp_order_by": { "progress": [ - 2011 + 2015 ], "sort_index": [ - 2011 + 2015 ], "user_steam_id": [ - 2011 + 2015 ], "__typename": [ - 70 + 74 ] }, "clip_render_jobs_stream_cursor_input": { "initial_value": [ - 213 + 217 ], "ordering": [ - 224 + 228 ], "__typename": [ - 70 + 74 ] }, "clip_render_jobs_stream_cursor_value_input": { "clip_id": [ - 3818 + 3863 ], "created_at": [ - 3421 + 3466 ], "error_message": [ - 70 + 74 ], "game_server_node_id": [ - 70 + 74 ], "id": [ - 3818 + 3863 ], "k8s_job_name": [ - 70 + 74 ], "last_status_at": [ - 3421 + 3466 ], "match_map_demo_id": [ - 3818 + 3863 ], "match_map_id": [ - 3818 + 3863 ], "paused": [ 3 ], "progress": [ - 2009 + 2013 ], "session_token": [ - 70 + 74 ], "sort_index": [ 38 ], "spec": [ - 1235 + 1239 ], "status": [ - 70 + 74 ], "status_history": [ - 1235 + 1239 ], "user_steam_id": [ - 169 + 173 ], "__typename": [ - 70 + 74 ] }, "clip_render_jobs_sum_fields": { "progress": [ - 2009 + 2013 ], "sort_index": [ 38 ], "user_steam_id": [ - 169 + 173 ], "__typename": [ - 70 + 74 ] }, "clip_render_jobs_sum_order_by": { "progress": [ - 2011 + 2015 ], "sort_index": [ - 2011 + 2015 ], "user_steam_id": [ - 2011 + 2015 ], "__typename": [ - 70 + 74 ] }, "clip_render_jobs_update_column": {}, "clip_render_jobs_updates": { "_append": [ - 182 + 186 ], "_delete_at_path": [ - 188 + 192 ], "_delete_elem": [ - 189 + 193 ], "_delete_key": [ - 190 + 194 ], "_inc": [ - 191 + 195 ], "_prepend": [ - 201 + 205 ], "_set": [ - 205 + 209 ], "where": [ - 186 + 190 ], "__typename": [ - 70 + 74 ] }, "clip_render_jobs_var_pop_fields": { @@ -4355,21 +4447,21 @@ export default { 29 ], "__typename": [ - 70 + 74 ] }, "clip_render_jobs_var_pop_order_by": { "progress": [ - 2011 + 2015 ], "sort_index": [ - 2011 + 2015 ], "user_steam_id": [ - 2011 + 2015 ], "__typename": [ - 70 + 74 ] }, "clip_render_jobs_var_samp_fields": { @@ -4383,21 +4475,21 @@ export default { 29 ], "__typename": [ - 70 + 74 ] }, "clip_render_jobs_var_samp_order_by": { "progress": [ - 2011 + 2015 ], "sort_index": [ - 2011 + 2015 ], "user_steam_id": [ - 2011 + 2015 ], "__typename": [ - 70 + 74 ] }, "clip_render_jobs_variance_fields": { @@ -4411,61 +4503,61 @@ export default { 29 ], "__typename": [ - 70 + 74 ] }, "clip_render_jobs_variance_order_by": { "progress": [ - 2011 + 2015 ], "sort_index": [ - 2011 + 2015 ], "user_steam_id": [ - 2011 + 2015 ], "__typename": [ - 70 + 74 ] }, "cursor_ordering": {}, "db_backups": { "created_at": [ - 3421 + 3466 ], "id": [ - 3818 + 3863 ], "name": [ - 70 + 74 ], "size": [ 38 ], "__typename": [ - 70 + 74 ] }, "db_backups_aggregate": { "aggregate": [ - 227 + 231 ], "nodes": [ - 225 + 229 ], "__typename": [ - 70 + 74 ] }, "db_backups_aggregate_fields": { "avg": [ - 228 + 232 ], "count": [ 38, { "columns": [ - 239, + 243, "[db_backups_select_column!]" ], "distinct": [ @@ -4474,34 +4566,34 @@ export default { } ], "max": [ - 233 + 237 ], "min": [ - 234 + 238 ], "stddev": [ - 241 + 245 ], "stddev_pop": [ - 242 + 246 ], "stddev_samp": [ - 243 + 247 ], "sum": [ - 246 + 250 ], "var_pop": [ - 249 + 253 ], "var_samp": [ - 250 + 254 ], "variance": [ - 251 + 255 ], "__typename": [ - 70 + 74 ] }, "db_backups_avg_fields": { @@ -4509,33 +4601,33 @@ export default { 29 ], "__typename": [ - 70 + 74 ] }, "db_backups_bool_exp": { "_and": [ - 229 + 233 ], "_not": [ - 229 + 233 ], "_or": [ - 229 + 233 ], "created_at": [ - 3422 + 3467 ], "id": [ - 3820 + 3865 ], "name": [ - 72 + 76 ], "size": [ 39 ], "__typename": [ - 70 + 74 ] }, "db_backups_constraint": {}, @@ -4544,58 +4636,58 @@ export default { 38 ], "__typename": [ - 70 + 74 ] }, "db_backups_insert_input": { "created_at": [ - 3421 + 3466 ], "id": [ - 3818 + 3863 ], "name": [ - 70 + 74 ], "size": [ 38 ], "__typename": [ - 70 + 74 ] }, "db_backups_max_fields": { "created_at": [ - 3421 + 3466 ], "id": [ - 3818 + 3863 ], "name": [ - 70 + 74 ], "size": [ 38 ], "__typename": [ - 70 + 74 ] }, "db_backups_min_fields": { "created_at": [ - 3421 + 3466 ], "id": [ - 3818 + 3863 ], "name": [ - 70 + 74 ], "size": [ 38 ], "__typename": [ - 70 + 74 ] }, "db_backups_mutation_response": { @@ -4603,67 +4695,67 @@ export default { 38 ], "returning": [ - 225 + 229 ], "__typename": [ - 70 + 74 ] }, "db_backups_on_conflict": { "constraint": [ - 230 + 234 ], "update_columns": [ - 247 + 251 ], "where": [ - 229 + 233 ], "__typename": [ - 70 + 74 ] }, "db_backups_order_by": { "created_at": [ - 2011 + 2015 ], "id": [ - 2011 + 2015 ], "name": [ - 2011 + 2015 ], "size": [ - 2011 + 2015 ], "__typename": [ - 70 + 74 ] }, "db_backups_pk_columns_input": { "id": [ - 3818 + 3863 ], "__typename": [ - 70 + 74 ] }, "db_backups_select_column": {}, "db_backups_set_input": { "created_at": [ - 3421 + 3466 ], "id": [ - 3818 + 3863 ], "name": [ - 70 + 74 ], "size": [ 38 ], "__typename": [ - 70 + 74 ] }, "db_backups_stddev_fields": { @@ -4671,7 +4763,7 @@ export default { 29 ], "__typename": [ - 70 + 74 ] }, "db_backups_stddev_pop_fields": { @@ -4679,7 +4771,7 @@ export default { 29 ], "__typename": [ - 70 + 74 ] }, "db_backups_stddev_samp_fields": { @@ -4687,35 +4779,35 @@ export default { 29 ], "__typename": [ - 70 + 74 ] }, "db_backups_stream_cursor_input": { "initial_value": [ - 245 + 249 ], "ordering": [ - 224 + 228 ], "__typename": [ - 70 + 74 ] }, "db_backups_stream_cursor_value_input": { "created_at": [ - 3421 + 3466 ], "id": [ - 3818 + 3863 ], "name": [ - 70 + 74 ], "size": [ 38 ], "__typename": [ - 70 + 74 ] }, "db_backups_sum_fields": { @@ -4723,22 +4815,22 @@ export default { 38 ], "__typename": [ - 70 + 74 ] }, "db_backups_update_column": {}, "db_backups_updates": { "_inc": [ - 231 + 235 ], "_set": [ - 240 + 244 ], "where": [ - 229 + 233 ], "__typename": [ - 70 + 74 ] }, "db_backups_var_pop_fields": { @@ -4746,7 +4838,7 @@ export default { 29 ], "__typename": [ - 70 + 74 ] }, "db_backups_var_samp_fields": { @@ -4754,7 +4846,7 @@ export default { 29 ], "__typename": [ - 70 + 74 ] }, "db_backups_variance_fields": { @@ -4762,7 +4854,7 @@ export default { 29 ], "__typename": [ - 70 + 74 ] }, "draft_game_picks": { @@ -4770,22 +4862,22 @@ export default { 3 ], "captain": [ - 2878 + 2914 ], "captain_steam_id": [ - 169 + 173 ], "created_at": [ - 3421 + 3466 ], "draft_game": [ - 342 + 346 ], "draft_game_id": [ - 3818 + 3863 ], "id": [ - 3818 + 3863 ], "is_organizer": [ 3 @@ -4794,100 +4886,100 @@ export default { 38 ], "picked": [ - 2878 + 2914 ], "picked_steam_id": [ - 169 + 173 ], "__typename": [ - 70 + 74 ] }, "draft_game_picks_aggregate": { "aggregate": [ - 258 + 262 ], "nodes": [ - 252 + 256 ], "__typename": [ - 70 + 74 ] }, "draft_game_picks_aggregate_bool_exp": { "bool_and": [ - 255 + 259 ], "bool_or": [ - 256 + 260 ], "count": [ - 257 + 261 ], "__typename": [ - 70 + 74 ] }, "draft_game_picks_aggregate_bool_exp_bool_and": { "arguments": [ - 276 + 280 ], "distinct": [ 3 ], "filter": [ - 263 + 267 ], "predicate": [ 4 ], "__typename": [ - 70 + 74 ] }, "draft_game_picks_aggregate_bool_exp_bool_or": { "arguments": [ - 277 + 281 ], "distinct": [ 3 ], "filter": [ - 263 + 267 ], "predicate": [ 4 ], "__typename": [ - 70 + 74 ] }, "draft_game_picks_aggregate_bool_exp_count": { "arguments": [ - 275 + 279 ], "distinct": [ 3 ], "filter": [ - 263 + 267 ], "predicate": [ 39 ], "__typename": [ - 70 + 74 ] }, "draft_game_picks_aggregate_fields": { "avg": [ - 261 + 265 ], "count": [ 38, { "columns": [ - 275, + 279, "[draft_game_picks_select_column!]" ], "distinct": [ @@ -4896,83 +4988,83 @@ export default { } ], "max": [ - 267 + 271 ], "min": [ - 269 + 273 ], "stddev": [ - 279 + 283 ], "stddev_pop": [ - 281 + 285 ], "stddev_samp": [ - 283 + 287 ], "sum": [ - 287 + 291 ], "var_pop": [ - 291 + 295 ], "var_samp": [ - 293 + 297 ], "variance": [ - 295 + 299 ], "__typename": [ - 70 + 74 ] }, "draft_game_picks_aggregate_order_by": { "avg": [ - 262 + 266 ], "count": [ - 2011 + 2015 ], "max": [ - 268 + 272 ], "min": [ - 270 + 274 ], "stddev": [ - 280 + 284 ], "stddev_pop": [ - 282 + 286 ], "stddev_samp": [ - 284 + 288 ], "sum": [ - 288 + 292 ], "var_pop": [ - 292 + 296 ], "var_samp": [ - 294 + 298 ], "variance": [ - 296 + 300 ], "__typename": [ - 70 + 74 ] }, "draft_game_picks_arr_rel_insert_input": { "data": [ - 266 + 270 ], "on_conflict": [ - 272 + 276 ], "__typename": [ - 70 + 74 ] }, "draft_game_picks_avg_fields": { @@ -4986,53 +5078,53 @@ export default { 29 ], "__typename": [ - 70 + 74 ] }, "draft_game_picks_avg_order_by": { "captain_steam_id": [ - 2011 + 2015 ], "lineup": [ - 2011 + 2015 ], "picked_steam_id": [ - 2011 + 2015 ], "__typename": [ - 70 + 74 ] }, "draft_game_picks_bool_exp": { "_and": [ - 263 + 267 ], "_not": [ - 263 + 267 ], "_or": [ - 263 + 267 ], "auto_picked": [ 4 ], "captain": [ - 2882 + 2918 ], "captain_steam_id": [ - 171 + 175 ], "created_at": [ - 3422 + 3467 ], "draft_game": [ - 353 + 357 ], "draft_game_id": [ - 3820 + 3865 ], "id": [ - 3820 + 3865 ], "is_organizer": [ 4 @@ -5041,28 +5133,28 @@ export default { 39 ], "picked": [ - 2882 + 2918 ], "picked_steam_id": [ - 171 + 175 ], "__typename": [ - 70 + 74 ] }, "draft_game_picks_constraint": {}, "draft_game_picks_inc_input": { "captain_steam_id": [ - 169 + 173 ], "lineup": [ 38 ], "picked_steam_id": [ - 169 + 173 ], "__typename": [ - 70 + 74 ] }, "draft_game_picks_insert_input": { @@ -5070,126 +5162,126 @@ export default { 3 ], "captain": [ - 2889 + 2925 ], "captain_steam_id": [ - 169 + 173 ], "created_at": [ - 3421 + 3466 ], "draft_game": [ - 362 + 366 ], "draft_game_id": [ - 3818 + 3863 ], "id": [ - 3818 + 3863 ], "lineup": [ 38 ], "picked": [ - 2889 + 2925 ], "picked_steam_id": [ - 169 + 173 ], "__typename": [ - 70 + 74 ] }, "draft_game_picks_max_fields": { "captain_steam_id": [ - 169 + 173 ], "created_at": [ - 3421 + 3466 ], "draft_game_id": [ - 3818 + 3863 ], "id": [ - 3818 + 3863 ], "lineup": [ 38 ], "picked_steam_id": [ - 169 + 173 ], "__typename": [ - 70 + 74 ] }, "draft_game_picks_max_order_by": { "captain_steam_id": [ - 2011 + 2015 ], "created_at": [ - 2011 + 2015 ], "draft_game_id": [ - 2011 + 2015 ], "id": [ - 2011 + 2015 ], "lineup": [ - 2011 + 2015 ], "picked_steam_id": [ - 2011 + 2015 ], "__typename": [ - 70 + 74 ] }, "draft_game_picks_min_fields": { "captain_steam_id": [ - 169 + 173 ], "created_at": [ - 3421 + 3466 ], "draft_game_id": [ - 3818 + 3863 ], "id": [ - 3818 + 3863 ], "lineup": [ 38 ], "picked_steam_id": [ - 169 + 173 ], "__typename": [ - 70 + 74 ] }, "draft_game_picks_min_order_by": { "captain_steam_id": [ - 2011 + 2015 ], "created_at": [ - 2011 + 2015 ], "draft_game_id": [ - 2011 + 2015 ], "id": [ - 2011 + 2015 ], "lineup": [ - 2011 + 2015 ], "picked_steam_id": [ - 2011 + 2015 ], "__typename": [ - 70 + 74 ] }, "draft_game_picks_mutation_response": { @@ -5197,70 +5289,70 @@ export default { 38 ], "returning": [ - 252 + 256 ], "__typename": [ - 70 + 74 ] }, "draft_game_picks_on_conflict": { "constraint": [ - 264 + 268 ], "update_columns": [ - 289 + 293 ], "where": [ - 263 + 267 ], "__typename": [ - 70 + 74 ] }, "draft_game_picks_order_by": { "auto_picked": [ - 2011 + 2015 ], "captain": [ - 2891 + 2927 ], "captain_steam_id": [ - 2011 + 2015 ], "created_at": [ - 2011 + 2015 ], "draft_game": [ - 364 + 368 ], "draft_game_id": [ - 2011 + 2015 ], "id": [ - 2011 + 2015 ], "is_organizer": [ - 2011 + 2015 ], "lineup": [ - 2011 + 2015 ], "picked": [ - 2891 + 2927 ], "picked_steam_id": [ - 2011 + 2015 ], "__typename": [ - 70 + 74 ] }, "draft_game_picks_pk_columns_input": { "id": [ - 3818 + 3863 ], "__typename": [ - 70 + 74 ] }, "draft_game_picks_select_column": {}, @@ -5271,25 +5363,25 @@ export default { 3 ], "captain_steam_id": [ - 169 + 173 ], "created_at": [ - 3421 + 3466 ], "draft_game_id": [ - 3818 + 3863 ], "id": [ - 3818 + 3863 ], "lineup": [ 38 ], "picked_steam_id": [ - 169 + 173 ], "__typename": [ - 70 + 74 ] }, "draft_game_picks_stddev_fields": { @@ -5303,21 +5395,21 @@ export default { 29 ], "__typename": [ - 70 + 74 ] }, "draft_game_picks_stddev_order_by": { "captain_steam_id": [ - 2011 + 2015 ], "lineup": [ - 2011 + 2015 ], "picked_steam_id": [ - 2011 + 2015 ], "__typename": [ - 70 + 74 ] }, "draft_game_picks_stddev_pop_fields": { @@ -5331,21 +5423,21 @@ export default { 29 ], "__typename": [ - 70 + 74 ] }, "draft_game_picks_stddev_pop_order_by": { "captain_steam_id": [ - 2011 + 2015 ], "lineup": [ - 2011 + 2015 ], "picked_steam_id": [ - 2011 + 2015 ], "__typename": [ - 70 + 74 ] }, "draft_game_picks_stddev_samp_fields": { @@ -5359,32 +5451,32 @@ export default { 29 ], "__typename": [ - 70 + 74 ] }, "draft_game_picks_stddev_samp_order_by": { "captain_steam_id": [ - 2011 + 2015 ], "lineup": [ - 2011 + 2015 ], "picked_steam_id": [ - 2011 + 2015 ], "__typename": [ - 70 + 74 ] }, "draft_game_picks_stream_cursor_input": { "initial_value": [ - 286 + 290 ], "ordering": [ - 224 + 228 ], "__typename": [ - 70 + 74 ] }, "draft_game_picks_stream_cursor_value_input": { @@ -5392,68 +5484,68 @@ export default { 3 ], "captain_steam_id": [ - 169 + 173 ], "created_at": [ - 3421 + 3466 ], "draft_game_id": [ - 3818 + 3863 ], "id": [ - 3818 + 3863 ], "lineup": [ 38 ], "picked_steam_id": [ - 169 + 173 ], "__typename": [ - 70 + 74 ] }, "draft_game_picks_sum_fields": { "captain_steam_id": [ - 169 + 173 ], "lineup": [ 38 ], "picked_steam_id": [ - 169 + 173 ], "__typename": [ - 70 + 74 ] }, "draft_game_picks_sum_order_by": { "captain_steam_id": [ - 2011 + 2015 ], "lineup": [ - 2011 + 2015 ], "picked_steam_id": [ - 2011 + 2015 ], "__typename": [ - 70 + 74 ] }, "draft_game_picks_update_column": {}, "draft_game_picks_updates": { "_inc": [ - 265 + 269 ], "_set": [ - 278 + 282 ], "where": [ - 263 + 267 ], "__typename": [ - 70 + 74 ] }, "draft_game_picks_var_pop_fields": { @@ -5467,21 +5559,21 @@ export default { 29 ], "__typename": [ - 70 + 74 ] }, "draft_game_picks_var_pop_order_by": { "captain_steam_id": [ - 2011 + 2015 ], "lineup": [ - 2011 + 2015 ], "picked_steam_id": [ - 2011 + 2015 ], "__typename": [ - 70 + 74 ] }, "draft_game_picks_var_samp_fields": { @@ -5495,21 +5587,21 @@ export default { 29 ], "__typename": [ - 70 + 74 ] }, "draft_game_picks_var_samp_order_by": { "captain_steam_id": [ - 2011 + 2015 ], "lineup": [ - 2011 + 2015 ], "picked_steam_id": [ - 2011 + 2015 ], "__typename": [ - 70 + 74 ] }, "draft_game_picks_variance_fields": { @@ -5523,32 +5615,32 @@ export default { 29 ], "__typename": [ - 70 + 74 ] }, "draft_game_picks_variance_order_by": { "captain_steam_id": [ - 2011 + 2015 ], "lineup": [ - 2011 + 2015 ], "picked_steam_id": [ - 2011 + 2015 ], "__typename": [ - 70 + 74 ] }, "draft_game_players": { "draft_game": [ - 342 + 346 ], "draft_game_id": [ - 3818 + 3863 ], "e_draft_game_player_status": [ - 471 + 475 ], "elo_snapshot": [ 38 @@ -5560,7 +5652,7 @@ export default { 3 ], "joined_at": [ - 3421 + 3466 ], "lineup": [ 38 @@ -5569,103 +5661,103 @@ export default { 38 ], "player": [ - 2878 + 2914 ], "status": [ - 476 + 480 ], "steam_id": [ - 169 + 173 ], "__typename": [ - 70 + 74 ] }, "draft_game_players_aggregate": { "aggregate": [ - 303 + 307 ], "nodes": [ - 297 + 301 ], "__typename": [ - 70 + 74 ] }, "draft_game_players_aggregate_bool_exp": { "bool_and": [ - 300 + 304 ], "bool_or": [ - 301 + 305 ], "count": [ - 302 + 306 ], "__typename": [ - 70 + 74 ] }, "draft_game_players_aggregate_bool_exp_bool_and": { "arguments": [ - 321 + 325 ], "distinct": [ 3 ], "filter": [ - 308 + 312 ], "predicate": [ 4 ], "__typename": [ - 70 + 74 ] }, "draft_game_players_aggregate_bool_exp_bool_or": { "arguments": [ - 322 + 326 ], "distinct": [ 3 ], "filter": [ - 308 + 312 ], "predicate": [ 4 ], "__typename": [ - 70 + 74 ] }, "draft_game_players_aggregate_bool_exp_count": { "arguments": [ - 320 + 324 ], "distinct": [ 3 ], "filter": [ - 308 + 312 ], "predicate": [ 39 ], "__typename": [ - 70 + 74 ] }, "draft_game_players_aggregate_fields": { "avg": [ - 306 + 310 ], "count": [ 38, { "columns": [ - 320, + 324, "[draft_game_players_select_column!]" ], "distinct": [ @@ -5674,83 +5766,83 @@ export default { } ], "max": [ - 312 + 316 ], "min": [ - 314 + 318 ], "stddev": [ - 324 + 328 ], "stddev_pop": [ - 326 + 330 ], "stddev_samp": [ - 328 + 332 ], "sum": [ - 332 + 336 ], "var_pop": [ - 336 + 340 ], "var_samp": [ - 338 + 342 ], "variance": [ - 340 + 344 ], "__typename": [ - 70 + 74 ] }, "draft_game_players_aggregate_order_by": { "avg": [ - 307 + 311 ], "count": [ - 2011 + 2015 ], "max": [ - 313 + 317 ], "min": [ - 315 + 319 ], "stddev": [ - 325 + 329 ], "stddev_pop": [ - 327 + 331 ], "stddev_samp": [ - 329 + 333 ], "sum": [ - 333 + 337 ], "var_pop": [ - 337 + 341 ], "var_samp": [ - 339 + 343 ], "variance": [ - 341 + 345 ], "__typename": [ - 70 + 74 ] }, "draft_game_players_arr_rel_insert_input": { "data": [ - 311 + 315 ], "on_conflict": [ - 317 + 321 ], "__typename": [ - 70 + 74 ] }, "draft_game_players_avg_fields": { @@ -5767,44 +5859,44 @@ export default { 29 ], "__typename": [ - 70 + 74 ] }, "draft_game_players_avg_order_by": { "elo_snapshot": [ - 2011 + 2015 ], "lineup": [ - 2011 + 2015 ], "pick_order": [ - 2011 + 2015 ], "steam_id": [ - 2011 + 2015 ], "__typename": [ - 70 + 74 ] }, "draft_game_players_bool_exp": { "_and": [ - 308 + 312 ], "_not": [ - 308 + 312 ], "_or": [ - 308 + 312 ], "draft_game": [ - 353 + 357 ], "draft_game_id": [ - 3820 + 3865 ], "e_draft_game_player_status": [ - 474 + 478 ], "elo_snapshot": [ 39 @@ -5816,7 +5908,7 @@ export default { 4 ], "joined_at": [ - 3422 + 3467 ], "lineup": [ 39 @@ -5825,16 +5917,16 @@ export default { 39 ], "player": [ - 2882 + 2918 ], "status": [ - 477 + 481 ], "steam_id": [ - 171 + 175 ], "__typename": [ - 70 + 74 ] }, "draft_game_players_constraint": {}, @@ -5849,21 +5941,21 @@ export default { 38 ], "steam_id": [ - 169 + 173 ], "__typename": [ - 70 + 74 ] }, "draft_game_players_insert_input": { "draft_game": [ - 362 + 366 ], "draft_game_id": [ - 3818 + 3863 ], "e_draft_game_player_status": [ - 482 + 486 ], "elo_snapshot": [ 38 @@ -5872,7 +5964,7 @@ export default { 3 ], "joined_at": [ - 3421 + 3466 ], "lineup": [ 38 @@ -5881,27 +5973,27 @@ export default { 38 ], "player": [ - 2889 + 2925 ], "status": [ - 476 + 480 ], "steam_id": [ - 169 + 173 ], "__typename": [ - 70 + 74 ] }, "draft_game_players_max_fields": { "draft_game_id": [ - 3818 + 3863 ], "elo_snapshot": [ 38 ], "joined_at": [ - 3421 + 3466 ], "lineup": [ 38 @@ -5910,44 +6002,44 @@ export default { 38 ], "steam_id": [ - 169 + 173 ], "__typename": [ - 70 + 74 ] }, "draft_game_players_max_order_by": { "draft_game_id": [ - 2011 + 2015 ], "elo_snapshot": [ - 2011 + 2015 ], "joined_at": [ - 2011 + 2015 ], "lineup": [ - 2011 + 2015 ], "pick_order": [ - 2011 + 2015 ], "steam_id": [ - 2011 + 2015 ], "__typename": [ - 70 + 74 ] }, "draft_game_players_min_fields": { "draft_game_id": [ - 3818 + 3863 ], "elo_snapshot": [ 38 ], "joined_at": [ - 3421 + 3466 ], "lineup": [ 38 @@ -5956,33 +6048,33 @@ export default { 38 ], "steam_id": [ - 169 + 173 ], "__typename": [ - 70 + 74 ] }, "draft_game_players_min_order_by": { "draft_game_id": [ - 2011 + 2015 ], "elo_snapshot": [ - 2011 + 2015 ], "joined_at": [ - 2011 + 2015 ], "lineup": [ - 2011 + 2015 ], "pick_order": [ - 2011 + 2015 ], "steam_id": [ - 2011 + 2015 ], "__typename": [ - 70 + 74 ] }, "draft_game_players_mutation_response": { @@ -5990,76 +6082,76 @@ export default { 38 ], "returning": [ - 297 + 301 ], "__typename": [ - 70 + 74 ] }, "draft_game_players_on_conflict": { "constraint": [ - 309 + 313 ], "update_columns": [ - 334 + 338 ], "where": [ - 308 + 312 ], "__typename": [ - 70 + 74 ] }, "draft_game_players_order_by": { "draft_game": [ - 364 + 368 ], "draft_game_id": [ - 2011 + 2015 ], "e_draft_game_player_status": [ - 484 + 488 ], "elo_snapshot": [ - 2011 + 2015 ], "is_captain": [ - 2011 + 2015 ], "is_organizer": [ - 2011 + 2015 ], "joined_at": [ - 2011 + 2015 ], "lineup": [ - 2011 + 2015 ], "pick_order": [ - 2011 + 2015 ], "player": [ - 2891 + 2927 ], "status": [ - 2011 + 2015 ], "steam_id": [ - 2011 + 2015 ], "__typename": [ - 70 + 74 ] }, "draft_game_players_pk_columns_input": { "draft_game_id": [ - 3818 + 3863 ], "steam_id": [ - 169 + 173 ], "__typename": [ - 70 + 74 ] }, "draft_game_players_select_column": {}, @@ -6067,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": [ - 3818 + 3863 ], "elo_snapshot": [ 38 @@ -6076,7 +6168,7 @@ export default { 3 ], "joined_at": [ - 3421 + 3466 ], "lineup": [ 38 @@ -6085,13 +6177,13 @@ export default { 38 ], "status": [ - 476 + 480 ], "steam_id": [ - 169 + 173 ], "__typename": [ - 70 + 74 ] }, "draft_game_players_stddev_fields": { @@ -6108,24 +6200,24 @@ export default { 29 ], "__typename": [ - 70 + 74 ] }, "draft_game_players_stddev_order_by": { "elo_snapshot": [ - 2011 + 2015 ], "lineup": [ - 2011 + 2015 ], "pick_order": [ - 2011 + 2015 ], "steam_id": [ - 2011 + 2015 ], "__typename": [ - 70 + 74 ] }, "draft_game_players_stddev_pop_fields": { @@ -6142,24 +6234,24 @@ export default { 29 ], "__typename": [ - 70 + 74 ] }, "draft_game_players_stddev_pop_order_by": { "elo_snapshot": [ - 2011 + 2015 ], "lineup": [ - 2011 + 2015 ], "pick_order": [ - 2011 + 2015 ], "steam_id": [ - 2011 + 2015 ], "__typename": [ - 70 + 74 ] }, "draft_game_players_stddev_samp_fields": { @@ -6176,40 +6268,40 @@ export default { 29 ], "__typename": [ - 70 + 74 ] }, "draft_game_players_stddev_samp_order_by": { "elo_snapshot": [ - 2011 + 2015 ], "lineup": [ - 2011 + 2015 ], "pick_order": [ - 2011 + 2015 ], "steam_id": [ - 2011 + 2015 ], "__typename": [ - 70 + 74 ] }, "draft_game_players_stream_cursor_input": { "initial_value": [ - 331 + 335 ], "ordering": [ - 224 + 228 ], "__typename": [ - 70 + 74 ] }, "draft_game_players_stream_cursor_value_input": { "draft_game_id": [ - 3818 + 3863 ], "elo_snapshot": [ 38 @@ -6218,7 +6310,7 @@ export default { 3 ], "joined_at": [ - 3421 + 3466 ], "lineup": [ 38 @@ -6227,13 +6319,13 @@ export default { 38 ], "status": [ - 476 + 480 ], "steam_id": [ - 169 + 173 ], "__typename": [ - 70 + 74 ] }, "draft_game_players_sum_fields": { @@ -6247,42 +6339,42 @@ export default { 38 ], "steam_id": [ - 169 + 173 ], "__typename": [ - 70 + 74 ] }, "draft_game_players_sum_order_by": { "elo_snapshot": [ - 2011 + 2015 ], "lineup": [ - 2011 + 2015 ], "pick_order": [ - 2011 + 2015 ], "steam_id": [ - 2011 + 2015 ], "__typename": [ - 70 + 74 ] }, "draft_game_players_update_column": {}, "draft_game_players_updates": { "_inc": [ - 310 + 314 ], "_set": [ - 323 + 327 ], "where": [ - 308 + 312 ], "__typename": [ - 70 + 74 ] }, "draft_game_players_var_pop_fields": { @@ -6299,24 +6391,24 @@ export default { 29 ], "__typename": [ - 70 + 74 ] }, "draft_game_players_var_pop_order_by": { "elo_snapshot": [ - 2011 + 2015 ], "lineup": [ - 2011 + 2015 ], "pick_order": [ - 2011 + 2015 ], "steam_id": [ - 2011 + 2015 ], "__typename": [ - 70 + 74 ] }, "draft_game_players_var_samp_fields": { @@ -6333,24 +6425,24 @@ export default { 29 ], "__typename": [ - 70 + 74 ] }, "draft_game_players_var_samp_order_by": { "elo_snapshot": [ - 2011 + 2015 ], "lineup": [ - 2011 + 2015 ], "pick_order": [ - 2011 + 2015 ], "steam_id": [ - 2011 + 2015 ], "__typename": [ - 70 + 74 ] }, "draft_game_players_variance_fields": { @@ -6367,95 +6459,95 @@ export default { 29 ], "__typename": [ - 70 + 74 ] }, "draft_game_players_variance_order_by": { "elo_snapshot": [ - 2011 + 2015 ], "lineup": [ - 2011 + 2015 ], "pick_order": [ - 2011 + 2015 ], "steam_id": [ - 2011 + 2015 ], "__typename": [ - 70 + 74 ] }, "draft_games": { "access": [ - 580 + 584 ], "capacity": [ 38 ], "captain_selection": [ - 413 + 417 ], "created_at": [ - 3421 + 3466 ], "current_pick_lineup": [ 38 ], "draft_order": [ - 434 + 438 ], "e_draft_game_captain_selection": [ - 408 + 412 ], "e_draft_game_draft_order": [ - 429 + 433 ], "e_draft_game_mode": [ - 450 + 454 ], "e_draft_game_status": [ - 492 + 496 ], "e_lobby_access": [ - 575 + 579 ], "expires_at": [ - 3421 + 3466 ], "host": [ - 2878 + 2914 ], "host_steam_id": [ - 169 + 173 ], "id": [ - 3818 + 3863 ], "inner_squad": [ 3 ], "invite_code": [ - 3818 + 3863 ], "is_organizer": [ 3 ], "map_pool": [ - 1325 + 1329 ], "map_pool_id": [ - 3818 + 3863 ], "match": [ - 1826 + 1830 ], "match_id": [ - 3818 + 3863 ], "match_options_id": [ - 3818 + 3863 ], "max_elo": [ 38 @@ -6464,19 +6556,19 @@ export default { 38 ], "mode": [ - 455 + 459 ], "options": [ - 1706 + 1710 ], "pick_deadline": [ - 3421 + 3466 ], "picks": [ - 252, + 256, { "distinct_on": [ - 275, + 279, "[draft_game_picks_select_column!]" ], "limit": [ @@ -6486,19 +6578,19 @@ export default { 38 ], "order_by": [ - 273, + 277, "[draft_game_picks_order_by!]" ], "where": [ - 263 + 267 ] } ], "picks_aggregate": [ - 253, + 257, { "distinct_on": [ - 275, + 279, "[draft_game_picks_select_column!]" ], "limit": [ @@ -6508,19 +6600,19 @@ export default { 38 ], "order_by": [ - 273, + 277, "[draft_game_picks_order_by!]" ], "where": [ - 263 + 267 ] } ], "players": [ - 297, + 301, { "distinct_on": [ - 320, + 324, "[draft_game_players_select_column!]" ], "limit": [ @@ -6530,19 +6622,19 @@ export default { 38 ], "order_by": [ - 318, + 322, "[draft_game_players_order_by!]" ], "where": [ - 308 + 312 ] } ], "players_aggregate": [ - 298, + 302, { "distinct_on": [ - 320, + 324, "[draft_game_players_select_column!]" ], "limit": [ @@ -6552,133 +6644,133 @@ export default { 38 ], "order_by": [ - 318, + 322, "[draft_game_players_order_by!]" ], "where": [ - 308 + 312 ] } ], "regions": [ - 70 + 74 ], "require_approval": [ 3 ], "scheduled_at": [ - 3421 + 3466 ], "status": [ - 497 + 501 ], "team_1": [ - 3378 + 3423 ], "team_1_id": [ - 3818 + 3863 ], "team_2": [ - 3378 + 3423 ], "team_2_id": [ - 3818 + 3863 ], "type": [ - 724 + 728 ], "updated_at": [ - 3421 + 3466 ], "__typename": [ - 70 + 74 ] }, "draft_games_aggregate": { "aggregate": [ - 348 + 352 ], "nodes": [ - 342 + 346 ], "__typename": [ - 70 + 74 ] }, "draft_games_aggregate_bool_exp": { "bool_and": [ - 345 + 349 ], "bool_or": [ - 346 + 350 ], "count": [ - 347 + 351 ], "__typename": [ - 70 + 74 ] }, "draft_games_aggregate_bool_exp_bool_and": { "arguments": [ - 367 + 371 ], "distinct": [ 3 ], "filter": [ - 353 + 357 ], "predicate": [ 4 ], "__typename": [ - 70 + 74 ] }, "draft_games_aggregate_bool_exp_bool_or": { "arguments": [ - 368 + 372 ], "distinct": [ 3 ], "filter": [ - 353 + 357 ], "predicate": [ 4 ], "__typename": [ - 70 + 74 ] }, "draft_games_aggregate_bool_exp_count": { "arguments": [ - 366 + 370 ], "distinct": [ 3 ], "filter": [ - 353 + 357 ], "predicate": [ 39 ], "__typename": [ - 70 + 74 ] }, "draft_games_aggregate_fields": { "avg": [ - 351 + 355 ], "count": [ 38, { "columns": [ - 366, + 370, "[draft_games_select_column!]" ], "distinct": [ @@ -6687,83 +6779,83 @@ export default { } ], "max": [ - 357 + 361 ], "min": [ - 359 + 363 ], "stddev": [ - 370 + 374 ], "stddev_pop": [ - 372 + 376 ], "stddev_samp": [ - 374 + 378 ], "sum": [ - 378 + 382 ], "var_pop": [ - 382 + 386 ], "var_samp": [ - 384 + 388 ], "variance": [ - 386 + 390 ], "__typename": [ - 70 + 74 ] }, "draft_games_aggregate_order_by": { "avg": [ - 352 + 356 ], "count": [ - 2011 + 2015 ], "max": [ - 358 + 362 ], "min": [ - 360 + 364 ], "stddev": [ - 371 + 375 ], "stddev_pop": [ - 373 + 377 ], "stddev_samp": [ - 375 + 379 ], "sum": [ - 379 + 383 ], "var_pop": [ - 383 + 387 ], "var_samp": [ - 385 + 389 ], "variance": [ - 387 + 391 ], "__typename": [ - 70 + 74 ] }, "draft_games_arr_rel_insert_input": { "data": [ - 356 + 360 ], "on_conflict": [ - 363 + 367 ], "__typename": [ - 70 + 74 ] }, "draft_games_avg_fields": { @@ -6783,107 +6875,107 @@ export default { 29 ], "__typename": [ - 70 + 74 ] }, "draft_games_avg_order_by": { "capacity": [ - 2011 + 2015 ], "current_pick_lineup": [ - 2011 + 2015 ], "host_steam_id": [ - 2011 + 2015 ], "max_elo": [ - 2011 + 2015 ], "min_elo": [ - 2011 + 2015 ], "__typename": [ - 70 + 74 ] }, "draft_games_bool_exp": { "_and": [ - 353 + 357 ], "_not": [ - 353 + 357 ], "_or": [ - 353 + 357 ], "access": [ - 581 + 585 ], "capacity": [ 39 ], "captain_selection": [ - 414 + 418 ], "created_at": [ - 3422 + 3467 ], "current_pick_lineup": [ 39 ], "draft_order": [ - 435 + 439 ], "e_draft_game_captain_selection": [ - 411 + 415 ], "e_draft_game_draft_order": [ - 432 + 436 ], "e_draft_game_mode": [ - 453 + 457 ], "e_draft_game_status": [ - 495 + 499 ], "e_lobby_access": [ - 578 + 582 ], "expires_at": [ - 3422 + 3467 ], "host": [ - 2882 + 2918 ], "host_steam_id": [ - 171 + 175 ], "id": [ - 3820 + 3865 ], "inner_squad": [ 4 ], "invite_code": [ - 3820 + 3865 ], "is_organizer": [ 4 ], "map_pool": [ - 1328 + 1332 ], "map_pool_id": [ - 3820 + 3865 ], "match": [ - 1835 + 1839 ], "match_id": [ - 3820 + 3865 ], "match_options_id": [ - 3820 + 3865 ], "max_elo": [ 39 @@ -6892,58 +6984,58 @@ export default { 39 ], "mode": [ - 456 + 460 ], "options": [ - 1710 + 1714 ], "pick_deadline": [ - 3422 + 3467 ], "picks": [ - 263 + 267 ], "picks_aggregate": [ - 254 + 258 ], "players": [ - 308 + 312 ], "players_aggregate": [ - 299 + 303 ], "regions": [ - 71 + 75 ], "require_approval": [ 4 ], "scheduled_at": [ - 3422 + 3467 ], "status": [ - 498 + 502 ], "team_1": [ - 3387 + 3432 ], "team_1_id": [ - 3820 + 3865 ], "team_2": [ - 3387 + 3432 ], "team_2_id": [ - 3820 + 3865 ], "type": [ - 725 + 729 ], "updated_at": [ - 3422 + 3467 ], "__typename": [ - 70 + 74 ] }, "draft_games_constraint": {}, @@ -6955,7 +7047,7 @@ export default { 38 ], "host_steam_id": [ - 169 + 173 ], "max_elo": [ 38 @@ -6964,75 +7056,75 @@ export default { 38 ], "__typename": [ - 70 + 74 ] }, "draft_games_insert_input": { "access": [ - 580 + 584 ], "capacity": [ 38 ], "captain_selection": [ - 413 + 417 ], "created_at": [ - 3421 + 3466 ], "current_pick_lineup": [ 38 ], "draft_order": [ - 434 + 438 ], "e_draft_game_captain_selection": [ - 419 + 423 ], "e_draft_game_draft_order": [ - 440 + 444 ], "e_draft_game_mode": [ - 461 + 465 ], "e_draft_game_status": [ - 503 + 507 ], "e_lobby_access": [ - 586 + 590 ], "expires_at": [ - 3421 + 3466 ], "host": [ - 2889 + 2925 ], "host_steam_id": [ - 169 + 173 ], "id": [ - 3818 + 3863 ], "inner_squad": [ 3 ], "invite_code": [ - 3818 + 3863 ], "map_pool": [ - 1334 + 1338 ], "map_pool_id": [ - 3818 + 3863 ], "match": [ - 1844 + 1848 ], "match_id": [ - 3818 + 3863 ], "match_options_id": [ - 3818 + 3863 ], "max_elo": [ 38 @@ -7041,52 +7133,52 @@ export default { 38 ], "mode": [ - 455 + 459 ], "options": [ - 1717 + 1721 ], "pick_deadline": [ - 3421 + 3466 ], "picks": [ - 260 + 264 ], "players": [ - 305 + 309 ], "regions": [ - 70 + 74 ], "require_approval": [ 3 ], "scheduled_at": [ - 3421 + 3466 ], "status": [ - 497 + 501 ], "team_1": [ - 3396 + 3441 ], "team_1_id": [ - 3818 + 3863 ], "team_2": [ - 3396 + 3441 ], "team_2_id": [ - 3818 + 3863 ], "type": [ - 724 + 728 ], "updated_at": [ - 3421 + 3466 ], "__typename": [ - 70 + 74 ] }, "draft_games_max_fields": { @@ -7094,31 +7186,31 @@ export default { 38 ], "created_at": [ - 3421 + 3466 ], "current_pick_lineup": [ 38 ], "expires_at": [ - 3421 + 3466 ], "host_steam_id": [ - 169 + 173 ], "id": [ - 3818 + 3863 ], "invite_code": [ - 3818 + 3863 ], "map_pool_id": [ - 3818 + 3863 ], "match_id": [ - 3818 + 3863 ], "match_options_id": [ - 3818 + 3863 ], "max_elo": [ 38 @@ -7127,84 +7219,84 @@ export default { 38 ], "pick_deadline": [ - 3421 + 3466 ], "regions": [ - 70 + 74 ], "scheduled_at": [ - 3421 + 3466 ], "team_1_id": [ - 3818 + 3863 ], "team_2_id": [ - 3818 + 3863 ], "updated_at": [ - 3421 + 3466 ], "__typename": [ - 70 + 74 ] }, "draft_games_max_order_by": { "capacity": [ - 2011 + 2015 ], "created_at": [ - 2011 + 2015 ], "current_pick_lineup": [ - 2011 + 2015 ], "expires_at": [ - 2011 + 2015 ], "host_steam_id": [ - 2011 + 2015 ], "id": [ - 2011 + 2015 ], "invite_code": [ - 2011 + 2015 ], "map_pool_id": [ - 2011 + 2015 ], "match_id": [ - 2011 + 2015 ], "match_options_id": [ - 2011 + 2015 ], "max_elo": [ - 2011 + 2015 ], "min_elo": [ - 2011 + 2015 ], "pick_deadline": [ - 2011 + 2015 ], "regions": [ - 2011 + 2015 ], "scheduled_at": [ - 2011 + 2015 ], "team_1_id": [ - 2011 + 2015 ], "team_2_id": [ - 2011 + 2015 ], "updated_at": [ - 2011 + 2015 ], "__typename": [ - 70 + 74 ] }, "draft_games_min_fields": { @@ -7212,31 +7304,31 @@ export default { 38 ], "created_at": [ - 3421 + 3466 ], "current_pick_lineup": [ 38 ], "expires_at": [ - 3421 + 3466 ], "host_steam_id": [ - 169 + 173 ], "id": [ - 3818 + 3863 ], "invite_code": [ - 3818 + 3863 ], "map_pool_id": [ - 3818 + 3863 ], "match_id": [ - 3818 + 3863 ], "match_options_id": [ - 3818 + 3863 ], "max_elo": [ 38 @@ -7245,84 +7337,84 @@ export default { 38 ], "pick_deadline": [ - 3421 + 3466 ], "regions": [ - 70 + 74 ], "scheduled_at": [ - 3421 + 3466 ], "team_1_id": [ - 3818 + 3863 ], "team_2_id": [ - 3818 + 3863 ], "updated_at": [ - 3421 + 3466 ], "__typename": [ - 70 + 74 ] }, "draft_games_min_order_by": { "capacity": [ - 2011 + 2015 ], "created_at": [ - 2011 + 2015 ], "current_pick_lineup": [ - 2011 + 2015 ], "expires_at": [ - 2011 + 2015 ], "host_steam_id": [ - 2011 + 2015 ], "id": [ - 2011 + 2015 ], "invite_code": [ - 2011 + 2015 ], "map_pool_id": [ - 2011 + 2015 ], "match_id": [ - 2011 + 2015 ], "match_options_id": [ - 2011 + 2015 ], "max_elo": [ - 2011 + 2015 ], "min_elo": [ - 2011 + 2015 ], "pick_deadline": [ - 2011 + 2015 ], "regions": [ - 2011 + 2015 ], "scheduled_at": [ - 2011 + 2015 ], "team_1_id": [ - 2011 + 2015 ], "team_2_id": [ - 2011 + 2015 ], "updated_at": [ - 2011 + 2015 ], "__typename": [ - 70 + 74 ] }, "draft_games_mutation_response": { @@ -7330,168 +7422,168 @@ export default { 38 ], "returning": [ - 342 + 346 ], "__typename": [ - 70 + 74 ] }, "draft_games_obj_rel_insert_input": { "data": [ - 356 + 360 ], "on_conflict": [ - 363 + 367 ], "__typename": [ - 70 + 74 ] }, "draft_games_on_conflict": { "constraint": [ - 354 + 358 ], "update_columns": [ - 380 + 384 ], "where": [ - 353 + 357 ], "__typename": [ - 70 + 74 ] }, "draft_games_order_by": { "access": [ - 2011 + 2015 ], "capacity": [ - 2011 + 2015 ], "captain_selection": [ - 2011 + 2015 ], "created_at": [ - 2011 + 2015 ], "current_pick_lineup": [ - 2011 + 2015 ], "draft_order": [ - 2011 + 2015 ], "e_draft_game_captain_selection": [ - 421 + 425 ], "e_draft_game_draft_order": [ - 442 + 446 ], "e_draft_game_mode": [ - 463 + 467 ], "e_draft_game_status": [ - 505 + 509 ], "e_lobby_access": [ - 588 + 592 ], "expires_at": [ - 2011 + 2015 ], "host": [ - 2891 + 2927 ], "host_steam_id": [ - 2011 + 2015 ], "id": [ - 2011 + 2015 ], "inner_squad": [ - 2011 + 2015 ], "invite_code": [ - 2011 + 2015 ], "is_organizer": [ - 2011 + 2015 ], "map_pool": [ - 1336 + 1340 ], "map_pool_id": [ - 2011 + 2015 ], "match": [ - 1846 + 1850 ], "match_id": [ - 2011 + 2015 ], "match_options_id": [ - 2011 + 2015 ], "max_elo": [ - 2011 + 2015 ], "min_elo": [ - 2011 + 2015 ], "mode": [ - 2011 + 2015 ], "options": [ - 1719 + 1723 ], "pick_deadline": [ - 2011 + 2015 ], "picks_aggregate": [ - 259 + 263 ], "players_aggregate": [ - 304 + 308 ], "regions": [ - 2011 + 2015 ], "require_approval": [ - 2011 + 2015 ], "scheduled_at": [ - 2011 + 2015 ], "status": [ - 2011 + 2015 ], "team_1": [ - 3398 + 3443 ], "team_1_id": [ - 2011 + 2015 ], "team_2": [ - 3398 + 3443 ], "team_2_id": [ - 2011 + 2015 ], "type": [ - 2011 + 2015 ], "updated_at": [ - 2011 + 2015 ], "__typename": [ - 70 + 74 ] }, "draft_games_pk_columns_input": { "id": [ - 3818 + 3863 ], "__typename": [ - 70 + 74 ] }, "draft_games_select_column": {}, @@ -7499,46 +7591,46 @@ export default { "draft_games_select_column_draft_games_aggregate_bool_exp_bool_or_arguments_columns": {}, "draft_games_set_input": { "access": [ - 580 + 584 ], "capacity": [ 38 ], "captain_selection": [ - 413 + 417 ], "created_at": [ - 3421 + 3466 ], "current_pick_lineup": [ 38 ], "draft_order": [ - 434 + 438 ], "expires_at": [ - 3421 + 3466 ], "host_steam_id": [ - 169 + 173 ], "id": [ - 3818 + 3863 ], "inner_squad": [ 3 ], "invite_code": [ - 3818 + 3863 ], "map_pool_id": [ - 3818 + 3863 ], "match_id": [ - 3818 + 3863 ], "match_options_id": [ - 3818 + 3863 ], "max_elo": [ 38 @@ -7547,37 +7639,37 @@ export default { 38 ], "mode": [ - 455 + 459 ], "pick_deadline": [ - 3421 + 3466 ], "regions": [ - 70 + 74 ], "require_approval": [ 3 ], "scheduled_at": [ - 3421 + 3466 ], "status": [ - 497 + 501 ], "team_1_id": [ - 3818 + 3863 ], "team_2_id": [ - 3818 + 3863 ], "type": [ - 724 + 728 ], "updated_at": [ - 3421 + 3466 ], "__typename": [ - 70 + 74 ] }, "draft_games_stddev_fields": { @@ -7597,27 +7689,27 @@ export default { 29 ], "__typename": [ - 70 + 74 ] }, "draft_games_stddev_order_by": { "capacity": [ - 2011 + 2015 ], "current_pick_lineup": [ - 2011 + 2015 ], "host_steam_id": [ - 2011 + 2015 ], "max_elo": [ - 2011 + 2015 ], "min_elo": [ - 2011 + 2015 ], "__typename": [ - 70 + 74 ] }, "draft_games_stddev_pop_fields": { @@ -7637,27 +7729,27 @@ export default { 29 ], "__typename": [ - 70 + 74 ] }, "draft_games_stddev_pop_order_by": { "capacity": [ - 2011 + 2015 ], "current_pick_lineup": [ - 2011 + 2015 ], "host_steam_id": [ - 2011 + 2015 ], "max_elo": [ - 2011 + 2015 ], "min_elo": [ - 2011 + 2015 ], "__typename": [ - 70 + 74 ] }, "draft_games_stddev_samp_fields": { @@ -7677,82 +7769,82 @@ export default { 29 ], "__typename": [ - 70 + 74 ] }, "draft_games_stddev_samp_order_by": { "capacity": [ - 2011 + 2015 ], "current_pick_lineup": [ - 2011 + 2015 ], "host_steam_id": [ - 2011 + 2015 ], "max_elo": [ - 2011 + 2015 ], "min_elo": [ - 2011 + 2015 ], "__typename": [ - 70 + 74 ] }, "draft_games_stream_cursor_input": { "initial_value": [ - 377 + 381 ], "ordering": [ - 224 + 228 ], "__typename": [ - 70 + 74 ] }, "draft_games_stream_cursor_value_input": { "access": [ - 580 + 584 ], "capacity": [ 38 ], "captain_selection": [ - 413 + 417 ], "created_at": [ - 3421 + 3466 ], "current_pick_lineup": [ 38 ], "draft_order": [ - 434 + 438 ], "expires_at": [ - 3421 + 3466 ], "host_steam_id": [ - 169 + 173 ], "id": [ - 3818 + 3863 ], "inner_squad": [ 3 ], "invite_code": [ - 3818 + 3863 ], "map_pool_id": [ - 3818 + 3863 ], "match_id": [ - 3818 + 3863 ], "match_options_id": [ - 3818 + 3863 ], "max_elo": [ 38 @@ -7761,37 +7853,37 @@ export default { 38 ], "mode": [ - 455 + 459 ], "pick_deadline": [ - 3421 + 3466 ], "regions": [ - 70 + 74 ], "require_approval": [ 3 ], "scheduled_at": [ - 3421 + 3466 ], "status": [ - 497 + 501 ], "team_1_id": [ - 3818 + 3863 ], "team_2_id": [ - 3818 + 3863 ], "type": [ - 724 + 728 ], "updated_at": [ - 3421 + 3466 ], "__typename": [ - 70 + 74 ] }, "draft_games_sum_fields": { @@ -7802,7 +7894,7 @@ export default { 38 ], "host_steam_id": [ - 169 + 173 ], "max_elo": [ 38 @@ -7811,42 +7903,42 @@ export default { 38 ], "__typename": [ - 70 + 74 ] }, "draft_games_sum_order_by": { "capacity": [ - 2011 + 2015 ], "current_pick_lineup": [ - 2011 + 2015 ], "host_steam_id": [ - 2011 + 2015 ], "max_elo": [ - 2011 + 2015 ], "min_elo": [ - 2011 + 2015 ], "__typename": [ - 70 + 74 ] }, "draft_games_update_column": {}, "draft_games_updates": { "_inc": [ - 355 + 359 ], "_set": [ - 369 + 373 ], "where": [ - 353 + 357 ], "__typename": [ - 70 + 74 ] }, "draft_games_var_pop_fields": { @@ -7866,27 +7958,27 @@ export default { 29 ], "__typename": [ - 70 + 74 ] }, "draft_games_var_pop_order_by": { "capacity": [ - 2011 + 2015 ], "current_pick_lineup": [ - 2011 + 2015 ], "host_steam_id": [ - 2011 + 2015 ], "max_elo": [ - 2011 + 2015 ], "min_elo": [ - 2011 + 2015 ], "__typename": [ - 70 + 74 ] }, "draft_games_var_samp_fields": { @@ -7906,27 +7998,27 @@ export default { 29 ], "__typename": [ - 70 + 74 ] }, "draft_games_var_samp_order_by": { "capacity": [ - 2011 + 2015 ], "current_pick_lineup": [ - 2011 + 2015 ], "host_steam_id": [ - 2011 + 2015 ], "max_elo": [ - 2011 + 2015 ], "min_elo": [ - 2011 + 2015 ], "__typename": [ - 70 + 74 ] }, "draft_games_variance_fields": { @@ -7946,49 +8038,49 @@ export default { 29 ], "__typename": [ - 70 + 74 ] }, "draft_games_variance_order_by": { "capacity": [ - 2011 + 2015 ], "current_pick_lineup": [ - 2011 + 2015 ], "host_steam_id": [ - 2011 + 2015 ], "max_elo": [ - 2011 + 2015 ], "min_elo": [ - 2011 + 2015 ], "__typename": [ - 70 + 74 ] }, "e_check_in_settings": { "description": [ - 70 + 74 ], "value": [ - 70 + 74 ], "__typename": [ - 70 + 74 ] }, "e_check_in_settings_aggregate": { "aggregate": [ - 390 + 394 ], "nodes": [ - 388 + 392 ], "__typename": [ - 70 + 74 ] }, "e_check_in_settings_aggregate_fields": { @@ -7996,7 +8088,7 @@ export default { 38, { "columns": [ - 402, + 406, "[e_check_in_settings_select_column!]" ], "distinct": [ @@ -8005,88 +8097,88 @@ export default { } ], "max": [ - 396 + 400 ], "min": [ - 397 + 401 ], "__typename": [ - 70 + 74 ] }, "e_check_in_settings_bool_exp": { "_and": [ - 391 + 395 ], "_not": [ - 391 + 395 ], "_or": [ - 391 + 395 ], "description": [ - 72 + 76 ], "value": [ - 72 + 76 ], "__typename": [ - 70 + 74 ] }, "e_check_in_settings_constraint": {}, "e_check_in_settings_enum": {}, "e_check_in_settings_enum_comparison_exp": { "_eq": [ - 393 + 397 ], "_in": [ - 393 + 397 ], "_is_null": [ 3 ], "_neq": [ - 393 + 397 ], "_nin": [ - 393 + 397 ], "__typename": [ - 70 + 74 ] }, "e_check_in_settings_insert_input": { "description": [ - 70 + 74 ], "value": [ - 70 + 74 ], "__typename": [ - 70 + 74 ] }, "e_check_in_settings_max_fields": { "description": [ - 70 + 74 ], "value": [ - 70 + 74 ], "__typename": [ - 70 + 74 ] }, "e_check_in_settings_min_fields": { "description": [ - 70 + 74 ], "value": [ - 70 + 74 ], "__typename": [ - 70 + 74 ] }, "e_check_in_settings_mutation_response": { @@ -8094,111 +8186,111 @@ export default { 38 ], "returning": [ - 388 + 392 ], "__typename": [ - 70 + 74 ] }, "e_check_in_settings_on_conflict": { "constraint": [ - 392 + 396 ], "update_columns": [ - 406 + 410 ], "where": [ - 391 + 395 ], "__typename": [ - 70 + 74 ] }, "e_check_in_settings_order_by": { "description": [ - 2011 + 2015 ], "value": [ - 2011 + 2015 ], "__typename": [ - 70 + 74 ] }, "e_check_in_settings_pk_columns_input": { "value": [ - 70 + 74 ], "__typename": [ - 70 + 74 ] }, "e_check_in_settings_select_column": {}, "e_check_in_settings_set_input": { "description": [ - 70 + 74 ], "value": [ - 70 + 74 ], "__typename": [ - 70 + 74 ] }, "e_check_in_settings_stream_cursor_input": { "initial_value": [ - 405 + 409 ], "ordering": [ - 224 + 228 ], "__typename": [ - 70 + 74 ] }, "e_check_in_settings_stream_cursor_value_input": { "description": [ - 70 + 74 ], "value": [ - 70 + 74 ], "__typename": [ - 70 + 74 ] }, "e_check_in_settings_update_column": {}, "e_check_in_settings_updates": { "_set": [ - 403 + 407 ], "where": [ - 391 + 395 ], "__typename": [ - 70 + 74 ] }, "e_draft_game_captain_selection": { "description": [ - 70 + 74 ], "value": [ - 70 + 74 ], "__typename": [ - 70 + 74 ] }, "e_draft_game_captain_selection_aggregate": { "aggregate": [ - 410 + 414 ], "nodes": [ - 408 + 412 ], "__typename": [ - 70 + 74 ] }, "e_draft_game_captain_selection_aggregate_fields": { @@ -8206,7 +8298,7 @@ export default { 38, { "columns": [ - 423, + 427, "[e_draft_game_captain_selection_select_column!]" ], "distinct": [ @@ -8215,88 +8307,88 @@ export default { } ], "max": [ - 416 + 420 ], "min": [ - 417 + 421 ], "__typename": [ - 70 + 74 ] }, "e_draft_game_captain_selection_bool_exp": { "_and": [ - 411 + 415 ], "_not": [ - 411 + 415 ], "_or": [ - 411 + 415 ], "description": [ - 72 + 76 ], "value": [ - 72 + 76 ], "__typename": [ - 70 + 74 ] }, "e_draft_game_captain_selection_constraint": {}, "e_draft_game_captain_selection_enum": {}, "e_draft_game_captain_selection_enum_comparison_exp": { "_eq": [ - 413 + 417 ], "_in": [ - 413 + 417 ], "_is_null": [ 3 ], "_neq": [ - 413 + 417 ], "_nin": [ - 413 + 417 ], "__typename": [ - 70 + 74 ] }, "e_draft_game_captain_selection_insert_input": { "description": [ - 70 + 74 ], "value": [ - 70 + 74 ], "__typename": [ - 70 + 74 ] }, "e_draft_game_captain_selection_max_fields": { "description": [ - 70 + 74 ], "value": [ - 70 + 74 ], "__typename": [ - 70 + 74 ] }, "e_draft_game_captain_selection_min_fields": { "description": [ - 70 + 74 ], "value": [ - 70 + 74 ], "__typename": [ - 70 + 74 ] }, "e_draft_game_captain_selection_mutation_response": { @@ -8304,122 +8396,122 @@ export default { 38 ], "returning": [ - 408 + 412 ], "__typename": [ - 70 + 74 ] }, "e_draft_game_captain_selection_obj_rel_insert_input": { "data": [ - 415 + 419 ], "on_conflict": [ - 420 + 424 ], "__typename": [ - 70 + 74 ] }, "e_draft_game_captain_selection_on_conflict": { "constraint": [ - 412 + 416 ], "update_columns": [ - 427 + 431 ], "where": [ - 411 + 415 ], "__typename": [ - 70 + 74 ] }, "e_draft_game_captain_selection_order_by": { "description": [ - 2011 + 2015 ], "value": [ - 2011 + 2015 ], "__typename": [ - 70 + 74 ] }, "e_draft_game_captain_selection_pk_columns_input": { "value": [ - 70 + 74 ], "__typename": [ - 70 + 74 ] }, "e_draft_game_captain_selection_select_column": {}, "e_draft_game_captain_selection_set_input": { "description": [ - 70 + 74 ], "value": [ - 70 + 74 ], "__typename": [ - 70 + 74 ] }, "e_draft_game_captain_selection_stream_cursor_input": { "initial_value": [ - 426 + 430 ], "ordering": [ - 224 + 228 ], "__typename": [ - 70 + 74 ] }, "e_draft_game_captain_selection_stream_cursor_value_input": { "description": [ - 70 + 74 ], "value": [ - 70 + 74 ], "__typename": [ - 70 + 74 ] }, "e_draft_game_captain_selection_update_column": {}, "e_draft_game_captain_selection_updates": { "_set": [ - 424 + 428 ], "where": [ - 411 + 415 ], "__typename": [ - 70 + 74 ] }, "e_draft_game_draft_order": { "description": [ - 70 + 74 ], "value": [ - 70 + 74 ], "__typename": [ - 70 + 74 ] }, "e_draft_game_draft_order_aggregate": { "aggregate": [ - 431 + 435 ], "nodes": [ - 429 + 433 ], "__typename": [ - 70 + 74 ] }, "e_draft_game_draft_order_aggregate_fields": { @@ -8427,7 +8519,7 @@ export default { 38, { "columns": [ - 444, + 448, "[e_draft_game_draft_order_select_column!]" ], "distinct": [ @@ -8436,88 +8528,88 @@ export default { } ], "max": [ - 437 + 441 ], "min": [ - 438 + 442 ], "__typename": [ - 70 + 74 ] }, "e_draft_game_draft_order_bool_exp": { "_and": [ - 432 + 436 ], "_not": [ - 432 + 436 ], "_or": [ - 432 + 436 ], "description": [ - 72 + 76 ], "value": [ - 72 + 76 ], "__typename": [ - 70 + 74 ] }, "e_draft_game_draft_order_constraint": {}, "e_draft_game_draft_order_enum": {}, "e_draft_game_draft_order_enum_comparison_exp": { "_eq": [ - 434 + 438 ], "_in": [ - 434 + 438 ], "_is_null": [ 3 ], "_neq": [ - 434 + 438 ], "_nin": [ - 434 + 438 ], "__typename": [ - 70 + 74 ] }, "e_draft_game_draft_order_insert_input": { "description": [ - 70 + 74 ], "value": [ - 70 + 74 ], "__typename": [ - 70 + 74 ] }, "e_draft_game_draft_order_max_fields": { "description": [ - 70 + 74 ], "value": [ - 70 + 74 ], "__typename": [ - 70 + 74 ] }, "e_draft_game_draft_order_min_fields": { "description": [ - 70 + 74 ], "value": [ - 70 + 74 ], "__typename": [ - 70 + 74 ] }, "e_draft_game_draft_order_mutation_response": { @@ -8525,122 +8617,122 @@ export default { 38 ], "returning": [ - 429 + 433 ], "__typename": [ - 70 + 74 ] }, "e_draft_game_draft_order_obj_rel_insert_input": { "data": [ - 436 + 440 ], "on_conflict": [ - 441 + 445 ], "__typename": [ - 70 + 74 ] }, "e_draft_game_draft_order_on_conflict": { "constraint": [ - 433 + 437 ], "update_columns": [ - 448 + 452 ], "where": [ - 432 + 436 ], "__typename": [ - 70 + 74 ] }, "e_draft_game_draft_order_order_by": { "description": [ - 2011 + 2015 ], "value": [ - 2011 + 2015 ], "__typename": [ - 70 + 74 ] }, "e_draft_game_draft_order_pk_columns_input": { "value": [ - 70 + 74 ], "__typename": [ - 70 + 74 ] }, "e_draft_game_draft_order_select_column": {}, "e_draft_game_draft_order_set_input": { "description": [ - 70 + 74 ], "value": [ - 70 + 74 ], "__typename": [ - 70 + 74 ] }, "e_draft_game_draft_order_stream_cursor_input": { "initial_value": [ - 447 + 451 ], "ordering": [ - 224 + 228 ], "__typename": [ - 70 + 74 ] }, "e_draft_game_draft_order_stream_cursor_value_input": { "description": [ - 70 + 74 ], "value": [ - 70 + 74 ], "__typename": [ - 70 + 74 ] }, "e_draft_game_draft_order_update_column": {}, "e_draft_game_draft_order_updates": { "_set": [ - 445 + 449 ], "where": [ - 432 + 436 ], "__typename": [ - 70 + 74 ] }, "e_draft_game_mode": { "description": [ - 70 + 74 ], "value": [ - 70 + 74 ], "__typename": [ - 70 + 74 ] }, "e_draft_game_mode_aggregate": { "aggregate": [ - 452 + 456 ], "nodes": [ - 450 + 454 ], "__typename": [ - 70 + 74 ] }, "e_draft_game_mode_aggregate_fields": { @@ -8648,7 +8740,7 @@ export default { 38, { "columns": [ - 465, + 469, "[e_draft_game_mode_select_column!]" ], "distinct": [ @@ -8657,88 +8749,88 @@ export default { } ], "max": [ - 458 + 462 ], "min": [ - 459 + 463 ], "__typename": [ - 70 + 74 ] }, "e_draft_game_mode_bool_exp": { "_and": [ - 453 + 457 ], "_not": [ - 453 + 457 ], "_or": [ - 453 + 457 ], "description": [ - 72 + 76 ], "value": [ - 72 + 76 ], "__typename": [ - 70 + 74 ] }, "e_draft_game_mode_constraint": {}, "e_draft_game_mode_enum": {}, "e_draft_game_mode_enum_comparison_exp": { "_eq": [ - 455 + 459 ], "_in": [ - 455 + 459 ], "_is_null": [ 3 ], "_neq": [ - 455 + 459 ], "_nin": [ - 455 + 459 ], "__typename": [ - 70 + 74 ] }, "e_draft_game_mode_insert_input": { "description": [ - 70 + 74 ], "value": [ - 70 + 74 ], "__typename": [ - 70 + 74 ] }, "e_draft_game_mode_max_fields": { "description": [ - 70 + 74 ], "value": [ - 70 + 74 ], "__typename": [ - 70 + 74 ] }, "e_draft_game_mode_min_fields": { "description": [ - 70 + 74 ], "value": [ - 70 + 74 ], "__typename": [ - 70 + 74 ] }, "e_draft_game_mode_mutation_response": { @@ -8746,122 +8838,122 @@ export default { 38 ], "returning": [ - 450 + 454 ], "__typename": [ - 70 + 74 ] }, "e_draft_game_mode_obj_rel_insert_input": { "data": [ - 457 + 461 ], "on_conflict": [ - 462 + 466 ], "__typename": [ - 70 + 74 ] }, "e_draft_game_mode_on_conflict": { "constraint": [ - 454 + 458 ], "update_columns": [ - 469 + 473 ], "where": [ - 453 + 457 ], "__typename": [ - 70 + 74 ] }, "e_draft_game_mode_order_by": { "description": [ - 2011 + 2015 ], "value": [ - 2011 + 2015 ], "__typename": [ - 70 + 74 ] }, "e_draft_game_mode_pk_columns_input": { "value": [ - 70 + 74 ], "__typename": [ - 70 + 74 ] }, "e_draft_game_mode_select_column": {}, "e_draft_game_mode_set_input": { "description": [ - 70 + 74 ], "value": [ - 70 + 74 ], "__typename": [ - 70 + 74 ] }, "e_draft_game_mode_stream_cursor_input": { "initial_value": [ - 468 + 472 ], "ordering": [ - 224 + 228 ], "__typename": [ - 70 + 74 ] }, "e_draft_game_mode_stream_cursor_value_input": { "description": [ - 70 + 74 ], "value": [ - 70 + 74 ], "__typename": [ - 70 + 74 ] }, "e_draft_game_mode_update_column": {}, "e_draft_game_mode_updates": { "_set": [ - 466 + 470 ], "where": [ - 453 + 457 ], "__typename": [ - 70 + 74 ] }, "e_draft_game_player_status": { "description": [ - 70 + 74 ], "value": [ - 70 + 74 ], "__typename": [ - 70 + 74 ] }, "e_draft_game_player_status_aggregate": { "aggregate": [ - 473 + 477 ], "nodes": [ - 471 + 475 ], "__typename": [ - 70 + 74 ] }, "e_draft_game_player_status_aggregate_fields": { @@ -8869,7 +8961,7 @@ export default { 38, { "columns": [ - 486, + 490, "[e_draft_game_player_status_select_column!]" ], "distinct": [ @@ -8878,88 +8970,88 @@ export default { } ], "max": [ - 479 + 483 ], "min": [ - 480 + 484 ], "__typename": [ - 70 + 74 ] }, "e_draft_game_player_status_bool_exp": { "_and": [ - 474 + 478 ], "_not": [ - 474 + 478 ], "_or": [ - 474 + 478 ], "description": [ - 72 + 76 ], "value": [ - 72 + 76 ], "__typename": [ - 70 + 74 ] }, "e_draft_game_player_status_constraint": {}, "e_draft_game_player_status_enum": {}, "e_draft_game_player_status_enum_comparison_exp": { "_eq": [ - 476 + 480 ], "_in": [ - 476 + 480 ], "_is_null": [ 3 ], "_neq": [ - 476 + 480 ], "_nin": [ - 476 + 480 ], "__typename": [ - 70 + 74 ] }, "e_draft_game_player_status_insert_input": { "description": [ - 70 + 74 ], "value": [ - 70 + 74 ], "__typename": [ - 70 + 74 ] }, "e_draft_game_player_status_max_fields": { "description": [ - 70 + 74 ], "value": [ - 70 + 74 ], "__typename": [ - 70 + 74 ] }, "e_draft_game_player_status_min_fields": { "description": [ - 70 + 74 ], "value": [ - 70 + 74 ], "__typename": [ - 70 + 74 ] }, "e_draft_game_player_status_mutation_response": { @@ -8967,122 +9059,122 @@ export default { 38 ], "returning": [ - 471 + 475 ], "__typename": [ - 70 + 74 ] }, "e_draft_game_player_status_obj_rel_insert_input": { "data": [ - 478 + 482 ], "on_conflict": [ - 483 + 487 ], "__typename": [ - 70 + 74 ] }, "e_draft_game_player_status_on_conflict": { "constraint": [ - 475 + 479 ], "update_columns": [ - 490 + 494 ], "where": [ - 474 + 478 ], "__typename": [ - 70 + 74 ] }, "e_draft_game_player_status_order_by": { "description": [ - 2011 + 2015 ], "value": [ - 2011 + 2015 ], "__typename": [ - 70 + 74 ] }, "e_draft_game_player_status_pk_columns_input": { "value": [ - 70 + 74 ], "__typename": [ - 70 + 74 ] }, "e_draft_game_player_status_select_column": {}, "e_draft_game_player_status_set_input": { "description": [ - 70 + 74 ], "value": [ - 70 + 74 ], "__typename": [ - 70 + 74 ] }, "e_draft_game_player_status_stream_cursor_input": { "initial_value": [ - 489 + 493 ], "ordering": [ - 224 + 228 ], "__typename": [ - 70 + 74 ] }, "e_draft_game_player_status_stream_cursor_value_input": { "description": [ - 70 + 74 ], "value": [ - 70 + 74 ], "__typename": [ - 70 + 74 ] }, "e_draft_game_player_status_update_column": {}, "e_draft_game_player_status_updates": { "_set": [ - 487 + 491 ], "where": [ - 474 + 478 ], "__typename": [ - 70 + 74 ] }, "e_draft_game_status": { "description": [ - 70 + 74 ], "value": [ - 70 + 74 ], "__typename": [ - 70 + 74 ] }, "e_draft_game_status_aggregate": { "aggregate": [ - 494 + 498 ], "nodes": [ - 492 + 496 ], "__typename": [ - 70 + 74 ] }, "e_draft_game_status_aggregate_fields": { @@ -9090,7 +9182,7 @@ export default { 38, { "columns": [ - 507, + 511, "[e_draft_game_status_select_column!]" ], "distinct": [ @@ -9099,88 +9191,88 @@ export default { } ], "max": [ - 500 + 504 ], "min": [ - 501 + 505 ], "__typename": [ - 70 + 74 ] }, "e_draft_game_status_bool_exp": { "_and": [ - 495 + 499 ], "_not": [ - 495 + 499 ], "_or": [ - 495 + 499 ], "description": [ - 72 + 76 ], "value": [ - 72 + 76 ], "__typename": [ - 70 + 74 ] }, "e_draft_game_status_constraint": {}, "e_draft_game_status_enum": {}, "e_draft_game_status_enum_comparison_exp": { "_eq": [ - 497 + 501 ], "_in": [ - 497 + 501 ], "_is_null": [ 3 ], "_neq": [ - 497 + 501 ], "_nin": [ - 497 + 501 ], "__typename": [ - 70 + 74 ] }, "e_draft_game_status_insert_input": { "description": [ - 70 + 74 ], "value": [ - 70 + 74 ], "__typename": [ - 70 + 74 ] }, "e_draft_game_status_max_fields": { "description": [ - 70 + 74 ], "value": [ - 70 + 74 ], "__typename": [ - 70 + 74 ] }, "e_draft_game_status_min_fields": { "description": [ - 70 + 74 ], "value": [ - 70 + 74 ], "__typename": [ - 70 + 74 ] }, "e_draft_game_status_mutation_response": { @@ -9188,122 +9280,122 @@ export default { 38 ], "returning": [ - 492 + 496 ], "__typename": [ - 70 + 74 ] }, "e_draft_game_status_obj_rel_insert_input": { "data": [ - 499 + 503 ], "on_conflict": [ - 504 + 508 ], "__typename": [ - 70 + 74 ] }, "e_draft_game_status_on_conflict": { "constraint": [ - 496 + 500 ], "update_columns": [ - 511 + 515 ], "where": [ - 495 + 499 ], "__typename": [ - 70 + 74 ] }, "e_draft_game_status_order_by": { "description": [ - 2011 + 2015 ], "value": [ - 2011 + 2015 ], "__typename": [ - 70 + 74 ] }, "e_draft_game_status_pk_columns_input": { "value": [ - 70 + 74 ], "__typename": [ - 70 + 74 ] }, "e_draft_game_status_select_column": {}, "e_draft_game_status_set_input": { "description": [ - 70 + 74 ], "value": [ - 70 + 74 ], "__typename": [ - 70 + 74 ] }, "e_draft_game_status_stream_cursor_input": { "initial_value": [ - 510 + 514 ], "ordering": [ - 224 + 228 ], "__typename": [ - 70 + 74 ] }, "e_draft_game_status_stream_cursor_value_input": { "description": [ - 70 + 74 ], "value": [ - 70 + 74 ], "__typename": [ - 70 + 74 ] }, "e_draft_game_status_update_column": {}, "e_draft_game_status_updates": { "_set": [ - 508 + 512 ], "where": [ - 495 + 499 ], "__typename": [ - 70 + 74 ] }, "e_friend_status": { "description": [ - 70 + 74 ], "value": [ - 70 + 74 ], "__typename": [ - 70 + 74 ] }, "e_friend_status_aggregate": { "aggregate": [ - 515 + 519 ], "nodes": [ - 513 + 517 ], "__typename": [ - 70 + 74 ] }, "e_friend_status_aggregate_fields": { @@ -9311,7 +9403,7 @@ export default { 38, { "columns": [ - 528, + 532, "[e_friend_status_select_column!]" ], "distinct": [ @@ -9320,88 +9412,88 @@ export default { } ], "max": [ - 521 + 525 ], "min": [ - 522 + 526 ], "__typename": [ - 70 + 74 ] }, "e_friend_status_bool_exp": { "_and": [ - 516 + 520 ], "_not": [ - 516 + 520 ], "_or": [ - 516 + 520 ], "description": [ - 72 + 76 ], "value": [ - 72 + 76 ], "__typename": [ - 70 + 74 ] }, "e_friend_status_constraint": {}, "e_friend_status_enum": {}, "e_friend_status_enum_comparison_exp": { "_eq": [ - 518 + 522 ], "_in": [ - 518 + 522 ], "_is_null": [ 3 ], "_neq": [ - 518 + 522 ], "_nin": [ - 518 + 522 ], "__typename": [ - 70 + 74 ] }, "e_friend_status_insert_input": { "description": [ - 70 + 74 ], "value": [ - 70 + 74 ], "__typename": [ - 70 + 74 ] }, "e_friend_status_max_fields": { "description": [ - 70 + 74 ], "value": [ - 70 + 74 ], "__typename": [ - 70 + 74 ] }, "e_friend_status_min_fields": { "description": [ - 70 + 74 ], "value": [ - 70 + 74 ], "__typename": [ - 70 + 74 ] }, "e_friend_status_mutation_response": { @@ -9409,122 +9501,122 @@ export default { 38 ], "returning": [ - 513 + 517 ], "__typename": [ - 70 + 74 ] }, "e_friend_status_obj_rel_insert_input": { "data": [ - 520 + 524 ], "on_conflict": [ - 525 + 529 ], "__typename": [ - 70 + 74 ] }, "e_friend_status_on_conflict": { "constraint": [ - 517 + 521 ], "update_columns": [ - 532 + 536 ], "where": [ - 516 + 520 ], "__typename": [ - 70 + 74 ] }, "e_friend_status_order_by": { "description": [ - 2011 + 2015 ], "value": [ - 2011 + 2015 ], "__typename": [ - 70 + 74 ] }, "e_friend_status_pk_columns_input": { "value": [ - 70 + 74 ], "__typename": [ - 70 + 74 ] }, "e_friend_status_select_column": {}, "e_friend_status_set_input": { "description": [ - 70 + 74 ], "value": [ - 70 + 74 ], "__typename": [ - 70 + 74 ] }, "e_friend_status_stream_cursor_input": { "initial_value": [ - 531 + 535 ], "ordering": [ - 224 + 228 ], "__typename": [ - 70 + 74 ] }, "e_friend_status_stream_cursor_value_input": { "description": [ - 70 + 74 ], "value": [ - 70 + 74 ], "__typename": [ - 70 + 74 ] }, "e_friend_status_update_column": {}, "e_friend_status_updates": { "_set": [ - 529 + 533 ], "where": [ - 516 + 520 ], "__typename": [ - 70 + 74 ] }, "e_game_cfg_types": { "description": [ - 70 + 74 ], "value": [ - 70 + 74 ], "__typename": [ - 70 + 74 ] }, "e_game_cfg_types_aggregate": { "aggregate": [ - 536 + 540 ], "nodes": [ - 534 + 538 ], "__typename": [ - 70 + 74 ] }, "e_game_cfg_types_aggregate_fields": { @@ -9532,7 +9624,7 @@ export default { 38, { "columns": [ - 548, + 552, "[e_game_cfg_types_select_column!]" ], "distinct": [ @@ -9541,88 +9633,88 @@ export default { } ], "max": [ - 542 + 546 ], "min": [ - 543 + 547 ], "__typename": [ - 70 + 74 ] }, "e_game_cfg_types_bool_exp": { "_and": [ - 537 + 541 ], "_not": [ - 537 + 541 ], "_or": [ - 537 + 541 ], "description": [ - 72 + 76 ], "value": [ - 72 + 76 ], "__typename": [ - 70 + 74 ] }, "e_game_cfg_types_constraint": {}, "e_game_cfg_types_enum": {}, "e_game_cfg_types_enum_comparison_exp": { "_eq": [ - 539 + 543 ], "_in": [ - 539 + 543 ], "_is_null": [ 3 ], "_neq": [ - 539 + 543 ], "_nin": [ - 539 + 543 ], "__typename": [ - 70 + 74 ] }, "e_game_cfg_types_insert_input": { "description": [ - 70 + 74 ], "value": [ - 70 + 74 ], "__typename": [ - 70 + 74 ] }, "e_game_cfg_types_max_fields": { "description": [ - 70 + 74 ], "value": [ - 70 + 74 ], "__typename": [ - 70 + 74 ] }, "e_game_cfg_types_min_fields": { "description": [ - 70 + 74 ], "value": [ - 70 + 74 ], "__typename": [ - 70 + 74 ] }, "e_game_cfg_types_mutation_response": { @@ -9630,111 +9722,111 @@ export default { 38 ], "returning": [ - 534 + 538 ], "__typename": [ - 70 + 74 ] }, "e_game_cfg_types_on_conflict": { "constraint": [ - 538 + 542 ], "update_columns": [ - 552 + 556 ], "where": [ - 537 + 541 ], "__typename": [ - 70 + 74 ] }, "e_game_cfg_types_order_by": { "description": [ - 2011 + 2015 ], "value": [ - 2011 + 2015 ], "__typename": [ - 70 + 74 ] }, "e_game_cfg_types_pk_columns_input": { "value": [ - 70 + 74 ], "__typename": [ - 70 + 74 ] }, "e_game_cfg_types_select_column": {}, "e_game_cfg_types_set_input": { "description": [ - 70 + 74 ], "value": [ - 70 + 74 ], "__typename": [ - 70 + 74 ] }, "e_game_cfg_types_stream_cursor_input": { "initial_value": [ - 551 + 555 ], "ordering": [ - 224 + 228 ], "__typename": [ - 70 + 74 ] }, "e_game_cfg_types_stream_cursor_value_input": { "description": [ - 70 + 74 ], "value": [ - 70 + 74 ], "__typename": [ - 70 + 74 ] }, "e_game_cfg_types_update_column": {}, "e_game_cfg_types_updates": { "_set": [ - 549 + 553 ], "where": [ - 537 + 541 ], "__typename": [ - 70 + 74 ] }, "e_game_server_node_statuses": { "description": [ - 70 + 74 ], "value": [ - 70 + 74 ], "__typename": [ - 70 + 74 ] }, "e_game_server_node_statuses_aggregate": { "aggregate": [ - 556 + 560 ], "nodes": [ - 554 + 558 ], "__typename": [ - 70 + 74 ] }, "e_game_server_node_statuses_aggregate_fields": { @@ -9742,7 +9834,7 @@ export default { 38, { "columns": [ - 569, + 573, "[e_game_server_node_statuses_select_column!]" ], "distinct": [ @@ -9751,88 +9843,88 @@ export default { } ], "max": [ - 562 + 566 ], "min": [ - 563 + 567 ], "__typename": [ - 70 + 74 ] }, "e_game_server_node_statuses_bool_exp": { "_and": [ - 557 + 561 ], "_not": [ - 557 + 561 ], "_or": [ - 557 + 561 ], "description": [ - 72 + 76 ], "value": [ - 72 + 76 ], "__typename": [ - 70 + 74 ] }, "e_game_server_node_statuses_constraint": {}, "e_game_server_node_statuses_enum": {}, "e_game_server_node_statuses_enum_comparison_exp": { "_eq": [ - 559 + 563 ], "_in": [ - 559 + 563 ], "_is_null": [ 3 ], "_neq": [ - 559 + 563 ], "_nin": [ - 559 + 563 ], "__typename": [ - 70 + 74 ] }, "e_game_server_node_statuses_insert_input": { "description": [ - 70 + 74 ], "value": [ - 70 + 74 ], "__typename": [ - 70 + 74 ] }, "e_game_server_node_statuses_max_fields": { "description": [ - 70 + 74 ], "value": [ - 70 + 74 ], "__typename": [ - 70 + 74 ] }, "e_game_server_node_statuses_min_fields": { "description": [ - 70 + 74 ], "value": [ - 70 + 74 ], "__typename": [ - 70 + 74 ] }, "e_game_server_node_statuses_mutation_response": { @@ -9840,122 +9932,122 @@ export default { 38 ], "returning": [ - 554 + 558 ], "__typename": [ - 70 + 74 ] }, "e_game_server_node_statuses_obj_rel_insert_input": { "data": [ - 561 + 565 ], "on_conflict": [ - 566 + 570 ], "__typename": [ - 70 + 74 ] }, "e_game_server_node_statuses_on_conflict": { "constraint": [ - 558 + 562 ], "update_columns": [ - 573 + 577 ], "where": [ - 557 + 561 ], "__typename": [ - 70 + 74 ] }, "e_game_server_node_statuses_order_by": { "description": [ - 2011 + 2015 ], "value": [ - 2011 + 2015 ], "__typename": [ - 70 + 74 ] }, "e_game_server_node_statuses_pk_columns_input": { "value": [ - 70 + 74 ], "__typename": [ - 70 + 74 ] }, "e_game_server_node_statuses_select_column": {}, "e_game_server_node_statuses_set_input": { "description": [ - 70 + 74 ], "value": [ - 70 + 74 ], "__typename": [ - 70 + 74 ] }, "e_game_server_node_statuses_stream_cursor_input": { "initial_value": [ - 572 + 576 ], "ordering": [ - 224 + 228 ], "__typename": [ - 70 + 74 ] }, "e_game_server_node_statuses_stream_cursor_value_input": { "description": [ - 70 + 74 ], "value": [ - 70 + 74 ], "__typename": [ - 70 + 74 ] }, "e_game_server_node_statuses_update_column": {}, "e_game_server_node_statuses_updates": { "_set": [ - 570 + 574 ], "where": [ - 557 + 561 ], "__typename": [ - 70 + 74 ] }, "e_lobby_access": { "description": [ - 70 + 74 ], "value": [ - 70 + 74 ], "__typename": [ - 70 + 74 ] }, "e_lobby_access_aggregate": { "aggregate": [ - 577 + 581 ], "nodes": [ - 575 + 579 ], "__typename": [ - 70 + 74 ] }, "e_lobby_access_aggregate_fields": { @@ -9963,7 +10055,7 @@ export default { 38, { "columns": [ - 590, + 594, "[e_lobby_access_select_column!]" ], "distinct": [ @@ -9972,88 +10064,88 @@ export default { } ], "max": [ - 583 + 587 ], "min": [ - 584 + 588 ], "__typename": [ - 70 + 74 ] }, "e_lobby_access_bool_exp": { "_and": [ - 578 + 582 ], "_not": [ - 578 + 582 ], "_or": [ - 578 + 582 ], "description": [ - 72 + 76 ], "value": [ - 72 + 76 ], "__typename": [ - 70 + 74 ] }, "e_lobby_access_constraint": {}, "e_lobby_access_enum": {}, "e_lobby_access_enum_comparison_exp": { "_eq": [ - 580 + 584 ], "_in": [ - 580 + 584 ], "_is_null": [ 3 ], "_neq": [ - 580 + 584 ], "_nin": [ - 580 + 584 ], "__typename": [ - 70 + 74 ] }, "e_lobby_access_insert_input": { "description": [ - 70 + 74 ], "value": [ - 70 + 74 ], "__typename": [ - 70 + 74 ] }, "e_lobby_access_max_fields": { "description": [ - 70 + 74 ], "value": [ - 70 + 74 ], "__typename": [ - 70 + 74 ] }, "e_lobby_access_min_fields": { "description": [ - 70 + 74 ], "value": [ - 70 + 74 ], "__typename": [ - 70 + 74 ] }, "e_lobby_access_mutation_response": { @@ -10061,122 +10153,122 @@ export default { 38 ], "returning": [ - 575 + 579 ], "__typename": [ - 70 + 74 ] }, "e_lobby_access_obj_rel_insert_input": { "data": [ - 582 + 586 ], "on_conflict": [ - 587 + 591 ], "__typename": [ - 70 + 74 ] }, "e_lobby_access_on_conflict": { "constraint": [ - 579 + 583 ], "update_columns": [ - 594 + 598 ], "where": [ - 578 + 582 ], "__typename": [ - 70 + 74 ] }, "e_lobby_access_order_by": { "description": [ - 2011 + 2015 ], "value": [ - 2011 + 2015 ], "__typename": [ - 70 + 74 ] }, "e_lobby_access_pk_columns_input": { "value": [ - 70 + 74 ], "__typename": [ - 70 + 74 ] }, "e_lobby_access_select_column": {}, "e_lobby_access_set_input": { "description": [ - 70 + 74 ], "value": [ - 70 + 74 ], "__typename": [ - 70 + 74 ] }, "e_lobby_access_stream_cursor_input": { "initial_value": [ - 593 + 597 ], "ordering": [ - 224 + 228 ], "__typename": [ - 70 + 74 ] }, "e_lobby_access_stream_cursor_value_input": { "description": [ - 70 + 74 ], "value": [ - 70 + 74 ], "__typename": [ - 70 + 74 ] }, "e_lobby_access_update_column": {}, "e_lobby_access_updates": { "_set": [ - 591 + 595 ], "where": [ - 578 + 582 ], "__typename": [ - 70 + 74 ] }, "e_lobby_player_status": { "description": [ - 70 + 74 ], "value": [ - 70 + 74 ], "__typename": [ - 70 + 74 ] }, "e_lobby_player_status_aggregate": { "aggregate": [ - 598 + 602 ], "nodes": [ - 596 + 600 ], "__typename": [ - 70 + 74 ] }, "e_lobby_player_status_aggregate_fields": { @@ -10184,7 +10276,7 @@ export default { 38, { "columns": [ - 610, + 614, "[e_lobby_player_status_select_column!]" ], "distinct": [ @@ -10193,88 +10285,88 @@ export default { } ], "max": [ - 604 + 608 ], "min": [ - 605 + 609 ], "__typename": [ - 70 + 74 ] }, "e_lobby_player_status_bool_exp": { "_and": [ - 599 + 603 ], "_not": [ - 599 + 603 ], "_or": [ - 599 + 603 ], "description": [ - 72 + 76 ], "value": [ - 72 + 76 ], "__typename": [ - 70 + 74 ] }, "e_lobby_player_status_constraint": {}, "e_lobby_player_status_enum": {}, "e_lobby_player_status_enum_comparison_exp": { "_eq": [ - 601 + 605 ], "_in": [ - 601 + 605 ], "_is_null": [ 3 ], "_neq": [ - 601 + 605 ], "_nin": [ - 601 + 605 ], "__typename": [ - 70 + 74 ] }, "e_lobby_player_status_insert_input": { "description": [ - 70 + 74 ], "value": [ - 70 + 74 ], "__typename": [ - 70 + 74 ] }, "e_lobby_player_status_max_fields": { "description": [ - 70 + 74 ], "value": [ - 70 + 74 ], "__typename": [ - 70 + 74 ] }, "e_lobby_player_status_min_fields": { "description": [ - 70 + 74 ], "value": [ - 70 + 74 ], "__typename": [ - 70 + 74 ] }, "e_lobby_player_status_mutation_response": { @@ -10282,111 +10374,111 @@ export default { 38 ], "returning": [ - 596 + 600 ], "__typename": [ - 70 + 74 ] }, "e_lobby_player_status_on_conflict": { "constraint": [ - 600 + 604 ], "update_columns": [ - 614 + 618 ], "where": [ - 599 + 603 ], "__typename": [ - 70 + 74 ] }, "e_lobby_player_status_order_by": { "description": [ - 2011 + 2015 ], "value": [ - 2011 + 2015 ], "__typename": [ - 70 + 74 ] }, "e_lobby_player_status_pk_columns_input": { "value": [ - 70 + 74 ], "__typename": [ - 70 + 74 ] }, "e_lobby_player_status_select_column": {}, "e_lobby_player_status_set_input": { "description": [ - 70 + 74 ], "value": [ - 70 + 74 ], "__typename": [ - 70 + 74 ] }, "e_lobby_player_status_stream_cursor_input": { "initial_value": [ - 613 + 617 ], "ordering": [ - 224 + 228 ], "__typename": [ - 70 + 74 ] }, "e_lobby_player_status_stream_cursor_value_input": { "description": [ - 70 + 74 ], "value": [ - 70 + 74 ], "__typename": [ - 70 + 74 ] }, "e_lobby_player_status_update_column": {}, "e_lobby_player_status_updates": { "_set": [ - 611 + 615 ], "where": [ - 599 + 603 ], "__typename": [ - 70 + 74 ] }, "e_map_pool_types": { "description": [ - 70 + 74 ], "value": [ - 70 + 74 ], "__typename": [ - 70 + 74 ] }, "e_map_pool_types_aggregate": { "aggregate": [ - 618 + 622 ], "nodes": [ - 616 + 620 ], "__typename": [ - 70 + 74 ] }, "e_map_pool_types_aggregate_fields": { @@ -10394,7 +10486,7 @@ export default { 38, { "columns": [ - 631, + 635, "[e_map_pool_types_select_column!]" ], "distinct": [ @@ -10403,88 +10495,88 @@ export default { } ], "max": [ - 624 + 628 ], "min": [ - 625 + 629 ], "__typename": [ - 70 + 74 ] }, "e_map_pool_types_bool_exp": { "_and": [ - 619 + 623 ], "_not": [ - 619 + 623 ], "_or": [ - 619 + 623 ], "description": [ - 72 + 76 ], "value": [ - 72 + 76 ], "__typename": [ - 70 + 74 ] }, "e_map_pool_types_constraint": {}, "e_map_pool_types_enum": {}, "e_map_pool_types_enum_comparison_exp": { "_eq": [ - 621 + 625 ], "_in": [ - 621 + 625 ], "_is_null": [ 3 ], "_neq": [ - 621 + 625 ], "_nin": [ - 621 + 625 ], "__typename": [ - 70 + 74 ] }, "e_map_pool_types_insert_input": { "description": [ - 70 + 74 ], "value": [ - 70 + 74 ], "__typename": [ - 70 + 74 ] }, "e_map_pool_types_max_fields": { "description": [ - 70 + 74 ], "value": [ - 70 + 74 ], "__typename": [ - 70 + 74 ] }, "e_map_pool_types_min_fields": { "description": [ - 70 + 74 ], "value": [ - 70 + 74 ], "__typename": [ - 70 + 74 ] }, "e_map_pool_types_mutation_response": { @@ -10492,111 +10584,111 @@ export default { 38 ], "returning": [ - 616 + 620 ], "__typename": [ - 70 + 74 ] }, "e_map_pool_types_obj_rel_insert_input": { "data": [ - 623 + 627 ], "on_conflict": [ - 628 + 632 ], "__typename": [ - 70 + 74 ] }, "e_map_pool_types_on_conflict": { "constraint": [ - 620 + 624 ], "update_columns": [ - 635 + 639 ], "where": [ - 619 + 623 ], "__typename": [ - 70 + 74 ] }, "e_map_pool_types_order_by": { "description": [ - 2011 + 2015 ], "value": [ - 2011 + 2015 ], "__typename": [ - 70 + 74 ] }, "e_map_pool_types_pk_columns_input": { "value": [ - 70 + 74 ], "__typename": [ - 70 + 74 ] }, "e_map_pool_types_select_column": {}, "e_map_pool_types_set_input": { "description": [ - 70 + 74 ], "value": [ - 70 + 74 ], "__typename": [ - 70 + 74 ] }, "e_map_pool_types_stream_cursor_input": { "initial_value": [ - 634 + 638 ], "ordering": [ - 224 + 228 ], "__typename": [ - 70 + 74 ] }, "e_map_pool_types_stream_cursor_value_input": { "description": [ - 70 + 74 ], "value": [ - 70 + 74 ], "__typename": [ - 70 + 74 ] }, "e_map_pool_types_update_column": {}, "e_map_pool_types_updates": { "_set": [ - 632 + 636 ], "where": [ - 619 + 623 ], "__typename": [ - 70 + 74 ] }, "e_match_clip_visibility": { "description": [ - 70 + 74 ], "match_clips": [ - 1373, + 1377, { "distinct_on": [ - 1395, + 1399, "[match_clips_select_column!]" ], "limit": [ @@ -10606,19 +10698,19 @@ export default { 38 ], "order_by": [ - 1393, + 1397, "[match_clips_order_by!]" ], "where": [ - 1382 + 1386 ] } ], "match_clips_aggregate": [ - 1374, + 1378, { "distinct_on": [ - 1395, + 1399, "[match_clips_select_column!]" ], "limit": [ @@ -10628,30 +10720,30 @@ export default { 38 ], "order_by": [ - 1393, + 1397, "[match_clips_order_by!]" ], "where": [ - 1382 + 1386 ] } ], "value": [ - 70 + 74 ], "__typename": [ - 70 + 74 ] }, "e_match_clip_visibility_aggregate": { "aggregate": [ - 639 + 643 ], "nodes": [ - 637 + 641 ], "__typename": [ - 70 + 74 ] }, "e_match_clip_visibility_aggregate_fields": { @@ -10659,7 +10751,7 @@ export default { 38, { "columns": [ - 651, + 655, "[e_match_clip_visibility_select_column!]" ], "distinct": [ @@ -10668,97 +10760,97 @@ export default { } ], "max": [ - 645 + 649 ], "min": [ - 646 + 650 ], "__typename": [ - 70 + 74 ] }, "e_match_clip_visibility_bool_exp": { "_and": [ - 640 + 644 ], "_not": [ - 640 + 644 ], "_or": [ - 640 + 644 ], "description": [ - 72 + 76 ], "match_clips": [ - 1382 + 1386 ], "match_clips_aggregate": [ - 1375 + 1379 ], "value": [ - 72 + 76 ], "__typename": [ - 70 + 74 ] }, "e_match_clip_visibility_constraint": {}, "e_match_clip_visibility_enum": {}, "e_match_clip_visibility_enum_comparison_exp": { "_eq": [ - 642 + 646 ], "_in": [ - 642 + 646 ], "_is_null": [ 3 ], "_neq": [ - 642 + 646 ], "_nin": [ - 642 + 646 ], "__typename": [ - 70 + 74 ] }, "e_match_clip_visibility_insert_input": { "description": [ - 70 + 74 ], "match_clips": [ - 1379 + 1383 ], "value": [ - 70 + 74 ], "__typename": [ - 70 + 74 ] }, "e_match_clip_visibility_max_fields": { "description": [ - 70 + 74 ], "value": [ - 70 + 74 ], "__typename": [ - 70 + 74 ] }, "e_match_clip_visibility_min_fields": { "description": [ - 70 + 74 ], "value": [ - 70 + 74 ], "__typename": [ - 70 + 74 ] }, "e_match_clip_visibility_mutation_response": { @@ -10766,103 +10858,103 @@ export default { 38 ], "returning": [ - 637 + 641 ], "__typename": [ - 70 + 74 ] }, "e_match_clip_visibility_on_conflict": { "constraint": [ - 641 + 645 ], "update_columns": [ - 655 + 659 ], "where": [ - 640 + 644 ], "__typename": [ - 70 + 74 ] }, "e_match_clip_visibility_order_by": { "description": [ - 2011 + 2015 ], "match_clips_aggregate": [ - 1378 + 1382 ], "value": [ - 2011 + 2015 ], "__typename": [ - 70 + 74 ] }, "e_match_clip_visibility_pk_columns_input": { "value": [ - 70 + 74 ], "__typename": [ - 70 + 74 ] }, "e_match_clip_visibility_select_column": {}, "e_match_clip_visibility_set_input": { "description": [ - 70 + 74 ], "value": [ - 70 + 74 ], "__typename": [ - 70 + 74 ] }, "e_match_clip_visibility_stream_cursor_input": { "initial_value": [ - 654 + 658 ], "ordering": [ - 224 + 228 ], "__typename": [ - 70 + 74 ] }, "e_match_clip_visibility_stream_cursor_value_input": { "description": [ - 70 + 74 ], "value": [ - 70 + 74 ], "__typename": [ - 70 + 74 ] }, "e_match_clip_visibility_update_column": {}, "e_match_clip_visibility_updates": { "_set": [ - 652 + 656 ], "where": [ - 640 + 644 ], "__typename": [ - 70 + 74 ] }, "e_match_map_status": { "description": [ - 70 + 74 ], "match_maps": [ - 1664, + 1668, { "distinct_on": [ - 1686, + 1690, "[match_maps_select_column!]" ], "limit": [ @@ -10872,19 +10964,19 @@ export default { 38 ], "order_by": [ - 1684, + 1688, "[match_maps_order_by!]" ], "where": [ - 1673 + 1677 ] } ], "match_maps_aggregate": [ - 1665, + 1669, { "distinct_on": [ - 1686, + 1690, "[match_maps_select_column!]" ], "limit": [ @@ -10894,30 +10986,30 @@ export default { 38 ], "order_by": [ - 1684, + 1688, "[match_maps_order_by!]" ], "where": [ - 1673 + 1677 ] } ], "value": [ - 70 + 74 ], "__typename": [ - 70 + 74 ] }, "e_match_map_status_aggregate": { "aggregate": [ - 659 + 663 ], "nodes": [ - 657 + 661 ], "__typename": [ - 70 + 74 ] }, "e_match_map_status_aggregate_fields": { @@ -10925,7 +11017,7 @@ export default { 38, { "columns": [ - 672, + 676, "[e_match_map_status_select_column!]" ], "distinct": [ @@ -10934,97 +11026,97 @@ export default { } ], "max": [ - 665 + 669 ], "min": [ - 666 + 670 ], "__typename": [ - 70 + 74 ] }, "e_match_map_status_bool_exp": { "_and": [ - 660 + 664 ], "_not": [ - 660 + 664 ], "_or": [ - 660 + 664 ], "description": [ - 72 + 76 ], "match_maps": [ - 1673 + 1677 ], "match_maps_aggregate": [ - 1666 + 1670 ], "value": [ - 72 + 76 ], "__typename": [ - 70 + 74 ] }, "e_match_map_status_constraint": {}, "e_match_map_status_enum": {}, "e_match_map_status_enum_comparison_exp": { "_eq": [ - 662 + 666 ], "_in": [ - 662 + 666 ], "_is_null": [ 3 ], "_neq": [ - 662 + 666 ], "_nin": [ - 662 + 666 ], "__typename": [ - 70 + 74 ] }, "e_match_map_status_insert_input": { "description": [ - 70 + 74 ], "match_maps": [ - 1670 + 1674 ], "value": [ - 70 + 74 ], "__typename": [ - 70 + 74 ] }, "e_match_map_status_max_fields": { "description": [ - 70 + 74 ], "value": [ - 70 + 74 ], "__typename": [ - 70 + 74 ] }, "e_match_map_status_min_fields": { "description": [ - 70 + 74 ], "value": [ - 70 + 74 ], "__typename": [ - 70 + 74 ] }, "e_match_map_status_mutation_response": { @@ -11032,125 +11124,125 @@ export default { 38 ], "returning": [ - 657 + 661 ], "__typename": [ - 70 + 74 ] }, "e_match_map_status_obj_rel_insert_input": { "data": [ - 664 + 668 ], "on_conflict": [ - 669 + 673 ], "__typename": [ - 70 + 74 ] }, "e_match_map_status_on_conflict": { "constraint": [ - 661 + 665 ], "update_columns": [ - 676 + 680 ], "where": [ - 660 + 664 ], "__typename": [ - 70 + 74 ] }, "e_match_map_status_order_by": { "description": [ - 2011 + 2015 ], "match_maps_aggregate": [ - 1669 + 1673 ], "value": [ - 2011 + 2015 ], "__typename": [ - 70 + 74 ] }, "e_match_map_status_pk_columns_input": { "value": [ - 70 + 74 ], "__typename": [ - 70 + 74 ] }, "e_match_map_status_select_column": {}, "e_match_map_status_set_input": { "description": [ - 70 + 74 ], "value": [ - 70 + 74 ], "__typename": [ - 70 + 74 ] }, "e_match_map_status_stream_cursor_input": { "initial_value": [ - 675 + 679 ], "ordering": [ - 224 + 228 ], "__typename": [ - 70 + 74 ] }, "e_match_map_status_stream_cursor_value_input": { "description": [ - 70 + 74 ], "value": [ - 70 + 74 ], "__typename": [ - 70 + 74 ] }, "e_match_map_status_update_column": {}, "e_match_map_status_updates": { "_set": [ - 673 + 677 ], "where": [ - 660 + 664 ], "__typename": [ - 70 + 74 ] }, "e_match_mode": { "description": [ - 70 + 74 ], "value": [ - 70 + 74 ], "__typename": [ - 70 + 74 ] }, "e_match_mode_aggregate": { "aggregate": [ - 680 + 684 ], "nodes": [ - 678 + 682 ], "__typename": [ - 70 + 74 ] }, "e_match_mode_aggregate_fields": { @@ -11158,7 +11250,7 @@ export default { 38, { "columns": [ - 692, + 696, "[e_match_mode_select_column!]" ], "distinct": [ @@ -11167,88 +11259,88 @@ export default { } ], "max": [ - 686 + 690 ], "min": [ - 687 + 691 ], "__typename": [ - 70 + 74 ] }, "e_match_mode_bool_exp": { "_and": [ - 681 + 685 ], "_not": [ - 681 + 685 ], "_or": [ - 681 + 685 ], "description": [ - 72 + 76 ], "value": [ - 72 + 76 ], "__typename": [ - 70 + 74 ] }, "e_match_mode_constraint": {}, "e_match_mode_enum": {}, "e_match_mode_enum_comparison_exp": { "_eq": [ - 683 + 687 ], "_in": [ - 683 + 687 ], "_is_null": [ 3 ], "_neq": [ - 683 + 687 ], "_nin": [ - 683 + 687 ], "__typename": [ - 70 + 74 ] }, "e_match_mode_insert_input": { "description": [ - 70 + 74 ], "value": [ - 70 + 74 ], "__typename": [ - 70 + 74 ] }, "e_match_mode_max_fields": { "description": [ - 70 + 74 ], "value": [ - 70 + 74 ], "__typename": [ - 70 + 74 ] }, "e_match_mode_min_fields": { "description": [ - 70 + 74 ], "value": [ - 70 + 74 ], "__typename": [ - 70 + 74 ] }, "e_match_mode_mutation_response": { @@ -11256,100 +11348,100 @@ export default { 38 ], "returning": [ - 678 + 682 ], "__typename": [ - 70 + 74 ] }, "e_match_mode_on_conflict": { "constraint": [ - 682 + 686 ], "update_columns": [ - 696 + 700 ], "where": [ - 681 + 685 ], "__typename": [ - 70 + 74 ] }, "e_match_mode_order_by": { "description": [ - 2011 + 2015 ], "value": [ - 2011 + 2015 ], "__typename": [ - 70 + 74 ] }, "e_match_mode_pk_columns_input": { "value": [ - 70 + 74 ], "__typename": [ - 70 + 74 ] }, "e_match_mode_select_column": {}, "e_match_mode_set_input": { "description": [ - 70 + 74 ], "value": [ - 70 + 74 ], "__typename": [ - 70 + 74 ] }, "e_match_mode_stream_cursor_input": { "initial_value": [ - 695 + 699 ], "ordering": [ - 224 + 228 ], "__typename": [ - 70 + 74 ] }, "e_match_mode_stream_cursor_value_input": { "description": [ - 70 + 74 ], "value": [ - 70 + 74 ], "__typename": [ - 70 + 74 ] }, "e_match_mode_update_column": {}, "e_match_mode_updates": { "_set": [ - 693 + 697 ], "where": [ - 681 + 685 ], "__typename": [ - 70 + 74 ] }, "e_match_status": { "description": [ - 70 + 74 ], "matches": [ - 1826, + 1830, { "distinct_on": [ - 1848, + 1852, "[matches_select_column!]" ], "limit": [ @@ -11359,19 +11451,19 @@ export default { 38 ], "order_by": [ - 1846, + 1850, "[matches_order_by!]" ], "where": [ - 1835 + 1839 ] } ], "matches_aggregate": [ - 1827, + 1831, { "distinct_on": [ - 1848, + 1852, "[matches_select_column!]" ], "limit": [ @@ -11381,30 +11473,30 @@ export default { 38 ], "order_by": [ - 1846, + 1850, "[matches_order_by!]" ], "where": [ - 1835 + 1839 ] } ], "value": [ - 70 + 74 ], "__typename": [ - 70 + 74 ] }, "e_match_status_aggregate": { "aggregate": [ - 700 + 704 ], "nodes": [ - 698 + 702 ], "__typename": [ - 70 + 74 ] }, "e_match_status_aggregate_fields": { @@ -11412,7 +11504,7 @@ export default { 38, { "columns": [ - 713, + 717, "[e_match_status_select_column!]" ], "distinct": [ @@ -11421,97 +11513,97 @@ export default { } ], "max": [ - 706 + 710 ], "min": [ - 707 + 711 ], "__typename": [ - 70 + 74 ] }, "e_match_status_bool_exp": { "_and": [ - 701 + 705 ], "_not": [ - 701 + 705 ], "_or": [ - 701 + 705 ], "description": [ - 72 + 76 ], "matches": [ - 1835 + 1839 ], "matches_aggregate": [ - 1828 + 1832 ], "value": [ - 72 + 76 ], "__typename": [ - 70 + 74 ] }, "e_match_status_constraint": {}, "e_match_status_enum": {}, "e_match_status_enum_comparison_exp": { "_eq": [ - 703 + 707 ], "_in": [ - 703 + 707 ], "_is_null": [ 3 ], "_neq": [ - 703 + 707 ], "_nin": [ - 703 + 707 ], "__typename": [ - 70 + 74 ] }, "e_match_status_insert_input": { "description": [ - 70 + 74 ], "matches": [ - 1832 + 1836 ], "value": [ - 70 + 74 ], "__typename": [ - 70 + 74 ] }, "e_match_status_max_fields": { "description": [ - 70 + 74 ], "value": [ - 70 + 74 ], "__typename": [ - 70 + 74 ] }, "e_match_status_min_fields": { "description": [ - 70 + 74 ], "value": [ - 70 + 74 ], "__typename": [ - 70 + 74 ] }, "e_match_status_mutation_response": { @@ -11519,114 +11611,114 @@ export default { 38 ], "returning": [ - 698 + 702 ], "__typename": [ - 70 + 74 ] }, "e_match_status_obj_rel_insert_input": { "data": [ - 705 + 709 ], "on_conflict": [ - 710 + 714 ], "__typename": [ - 70 + 74 ] }, "e_match_status_on_conflict": { "constraint": [ - 702 + 706 ], "update_columns": [ - 717 + 721 ], "where": [ - 701 + 705 ], "__typename": [ - 70 + 74 ] }, "e_match_status_order_by": { "description": [ - 2011 + 2015 ], "matches_aggregate": [ - 1831 + 1835 ], "value": [ - 2011 + 2015 ], "__typename": [ - 70 + 74 ] }, "e_match_status_pk_columns_input": { "value": [ - 70 + 74 ], "__typename": [ - 70 + 74 ] }, "e_match_status_select_column": {}, "e_match_status_set_input": { "description": [ - 70 + 74 ], "value": [ - 70 + 74 ], "__typename": [ - 70 + 74 ] }, "e_match_status_stream_cursor_input": { "initial_value": [ - 716 + 720 ], "ordering": [ - 224 + 228 ], "__typename": [ - 70 + 74 ] }, "e_match_status_stream_cursor_value_input": { "description": [ - 70 + 74 ], "value": [ - 70 + 74 ], "__typename": [ - 70 + 74 ] }, "e_match_status_update_column": {}, "e_match_status_updates": { "_set": [ - 714 + 718 ], "where": [ - 701 + 705 ], "__typename": [ - 70 + 74 ] }, "e_match_types": { "description": [ - 70 + 74 ], "maps": [ - 1344, + 1348, { "distinct_on": [ - 1365, + 1369, "[maps_select_column!]" ], "limit": [ @@ -11636,19 +11728,19 @@ export default { 38 ], "order_by": [ - 1363, + 1367, "[maps_order_by!]" ], "where": [ - 1353 + 1357 ] } ], "maps_aggregate": [ - 1345, + 1349, { "distinct_on": [ - 1365, + 1369, "[maps_select_column!]" ], "limit": [ @@ -11658,30 +11750,30 @@ export default { 38 ], "order_by": [ - 1363, + 1367, "[maps_order_by!]" ], "where": [ - 1353 + 1357 ] } ], "value": [ - 70 + 74 ], "__typename": [ - 70 + 74 ] }, "e_match_types_aggregate": { "aggregate": [ - 721 + 725 ], "nodes": [ - 719 + 723 ], "__typename": [ - 70 + 74 ] }, "e_match_types_aggregate_fields": { @@ -11689,7 +11781,7 @@ export default { 38, { "columns": [ - 734, + 738, "[e_match_types_select_column!]" ], "distinct": [ @@ -11698,97 +11790,97 @@ export default { } ], "max": [ - 727 + 731 ], "min": [ - 728 + 732 ], "__typename": [ - 70 + 74 ] }, "e_match_types_bool_exp": { "_and": [ - 722 + 726 ], "_not": [ - 722 + 726 ], "_or": [ - 722 + 726 ], "description": [ - 72 + 76 ], "maps": [ - 1353 + 1357 ], "maps_aggregate": [ - 1346 + 1350 ], "value": [ - 72 + 76 ], "__typename": [ - 70 + 74 ] }, "e_match_types_constraint": {}, "e_match_types_enum": {}, "e_match_types_enum_comparison_exp": { "_eq": [ - 724 + 728 ], "_in": [ - 724 + 728 ], "_is_null": [ 3 ], "_neq": [ - 724 + 728 ], "_nin": [ - 724 + 728 ], "__typename": [ - 70 + 74 ] }, "e_match_types_insert_input": { "description": [ - 70 + 74 ], "maps": [ - 1352 + 1356 ], "value": [ - 70 + 74 ], "__typename": [ - 70 + 74 ] }, "e_match_types_max_fields": { "description": [ - 70 + 74 ], "value": [ - 70 + 74 ], "__typename": [ - 70 + 74 ] }, "e_match_types_min_fields": { "description": [ - 70 + 74 ], "value": [ - 70 + 74 ], "__typename": [ - 70 + 74 ] }, "e_match_types_mutation_response": { @@ -11796,125 +11888,125 @@ export default { 38 ], "returning": [ - 719 + 723 ], "__typename": [ - 70 + 74 ] }, "e_match_types_obj_rel_insert_input": { "data": [ - 726 + 730 ], "on_conflict": [ - 731 + 735 ], "__typename": [ - 70 + 74 ] }, "e_match_types_on_conflict": { "constraint": [ - 723 + 727 ], "update_columns": [ - 738 + 742 ], "where": [ - 722 + 726 ], "__typename": [ - 70 + 74 ] }, "e_match_types_order_by": { "description": [ - 2011 + 2015 ], "maps_aggregate": [ - 1351 + 1355 ], "value": [ - 2011 + 2015 ], "__typename": [ - 70 + 74 ] }, "e_match_types_pk_columns_input": { "value": [ - 70 + 74 ], "__typename": [ - 70 + 74 ] }, "e_match_types_select_column": {}, "e_match_types_set_input": { "description": [ - 70 + 74 ], "value": [ - 70 + 74 ], "__typename": [ - 70 + 74 ] }, "e_match_types_stream_cursor_input": { "initial_value": [ - 737 + 741 ], "ordering": [ - 224 + 228 ], "__typename": [ - 70 + 74 ] }, "e_match_types_stream_cursor_value_input": { "description": [ - 70 + 74 ], "value": [ - 70 + 74 ], "__typename": [ - 70 + 74 ] }, "e_match_types_update_column": {}, "e_match_types_updates": { "_set": [ - 735 + 739 ], "where": [ - 722 + 726 ], "__typename": [ - 70 + 74 ] }, "e_notification_types": { "description": [ - 70 + 74 ], "value": [ - 70 + 74 ], "__typename": [ - 70 + 74 ] }, "e_notification_types_aggregate": { "aggregate": [ - 742 + 746 ], "nodes": [ - 740 + 744 ], "__typename": [ - 70 + 74 ] }, "e_notification_types_aggregate_fields": { @@ -11922,7 +12014,7 @@ export default { 38, { "columns": [ - 754, + 758, "[e_notification_types_select_column!]" ], "distinct": [ @@ -11931,88 +12023,88 @@ export default { } ], "max": [ - 748 + 752 ], "min": [ - 749 + 753 ], "__typename": [ - 70 + 74 ] }, "e_notification_types_bool_exp": { "_and": [ - 743 + 747 ], "_not": [ - 743 + 747 ], "_or": [ - 743 + 747 ], "description": [ - 72 + 76 ], "value": [ - 72 + 76 ], "__typename": [ - 70 + 74 ] }, "e_notification_types_constraint": {}, "e_notification_types_enum": {}, "e_notification_types_enum_comparison_exp": { "_eq": [ - 745 + 749 ], "_in": [ - 745 + 749 ], "_is_null": [ 3 ], "_neq": [ - 745 + 749 ], "_nin": [ - 745 + 749 ], "__typename": [ - 70 + 74 ] }, "e_notification_types_insert_input": { "description": [ - 70 + 74 ], "value": [ - 70 + 74 ], "__typename": [ - 70 + 74 ] }, "e_notification_types_max_fields": { "description": [ - 70 + 74 ], "value": [ - 70 + 74 ], "__typename": [ - 70 + 74 ] }, "e_notification_types_min_fields": { "description": [ - 70 + 74 ], "value": [ - 70 + 74 ], "__typename": [ - 70 + 74 ] }, "e_notification_types_mutation_response": { @@ -12020,100 +12112,100 @@ export default { 38 ], "returning": [ - 740 + 744 ], "__typename": [ - 70 + 74 ] }, "e_notification_types_on_conflict": { "constraint": [ - 744 + 748 ], "update_columns": [ - 758 + 762 ], "where": [ - 743 + 747 ], "__typename": [ - 70 + 74 ] }, "e_notification_types_order_by": { "description": [ - 2011 + 2015 ], "value": [ - 2011 + 2015 ], "__typename": [ - 70 + 74 ] }, "e_notification_types_pk_columns_input": { "value": [ - 70 + 74 ], "__typename": [ - 70 + 74 ] }, "e_notification_types_select_column": {}, "e_notification_types_set_input": { "description": [ - 70 + 74 ], "value": [ - 70 + 74 ], "__typename": [ - 70 + 74 ] }, "e_notification_types_stream_cursor_input": { "initial_value": [ - 757 + 761 ], "ordering": [ - 224 + 228 ], "__typename": [ - 70 + 74 ] }, "e_notification_types_stream_cursor_value_input": { "description": [ - 70 + 74 ], "value": [ - 70 + 74 ], "__typename": [ - 70 + 74 ] }, "e_notification_types_update_column": {}, "e_notification_types_updates": { "_set": [ - 755 + 759 ], "where": [ - 743 + 747 ], "__typename": [ - 70 + 74 ] }, "e_objective_types": { "description": [ - 70 + 74 ], "player_objectives": [ - 2567, + 2571, { "distinct_on": [ - 2588, + 2592, "[player_objectives_select_column!]" ], "limit": [ @@ -12123,19 +12215,19 @@ export default { 38 ], "order_by": [ - 2586, + 2590, "[player_objectives_order_by!]" ], "where": [ - 2576 + 2580 ] } ], "player_objectives_aggregate": [ - 2568, + 2572, { "distinct_on": [ - 2588, + 2592, "[player_objectives_select_column!]" ], "limit": [ @@ -12145,30 +12237,30 @@ export default { 38 ], "order_by": [ - 2586, + 2590, "[player_objectives_order_by!]" ], "where": [ - 2576 + 2580 ] } ], "value": [ - 70 + 74 ], "__typename": [ - 70 + 74 ] }, "e_objective_types_aggregate": { "aggregate": [ - 762 + 766 ], "nodes": [ - 760 + 764 ], "__typename": [ - 70 + 74 ] }, "e_objective_types_aggregate_fields": { @@ -12176,7 +12268,7 @@ export default { 38, { "columns": [ - 774, + 778, "[e_objective_types_select_column!]" ], "distinct": [ @@ -12185,97 +12277,97 @@ export default { } ], "max": [ - 768 + 772 ], "min": [ - 769 + 773 ], "__typename": [ - 70 + 74 ] }, "e_objective_types_bool_exp": { "_and": [ - 763 + 767 ], "_not": [ - 763 + 767 ], "_or": [ - 763 + 767 ], "description": [ - 72 + 76 ], "player_objectives": [ - 2576 + 2580 ], "player_objectives_aggregate": [ - 2569 + 2573 ], "value": [ - 72 + 76 ], "__typename": [ - 70 + 74 ] }, "e_objective_types_constraint": {}, "e_objective_types_enum": {}, "e_objective_types_enum_comparison_exp": { "_eq": [ - 765 + 769 ], "_in": [ - 765 + 769 ], "_is_null": [ 3 ], "_neq": [ - 765 + 769 ], "_nin": [ - 765 + 769 ], "__typename": [ - 70 + 74 ] }, "e_objective_types_insert_input": { "description": [ - 70 + 74 ], "player_objectives": [ - 2573 + 2577 ], "value": [ - 70 + 74 ], "__typename": [ - 70 + 74 ] }, "e_objective_types_max_fields": { "description": [ - 70 + 74 ], "value": [ - 70 + 74 ], "__typename": [ - 70 + 74 ] }, "e_objective_types_min_fields": { "description": [ - 70 + 74 ], "value": [ - 70 + 74 ], "__typename": [ - 70 + 74 ] }, "e_objective_types_mutation_response": { @@ -12283,114 +12375,114 @@ export default { 38 ], "returning": [ - 760 + 764 ], "__typename": [ - 70 + 74 ] }, "e_objective_types_on_conflict": { "constraint": [ - 764 + 768 ], "update_columns": [ - 778 + 782 ], "where": [ - 763 + 767 ], "__typename": [ - 70 + 74 ] }, "e_objective_types_order_by": { "description": [ - 2011 + 2015 ], "player_objectives_aggregate": [ - 2572 + 2576 ], "value": [ - 2011 + 2015 ], "__typename": [ - 70 + 74 ] }, "e_objective_types_pk_columns_input": { "value": [ - 70 + 74 ], "__typename": [ - 70 + 74 ] }, "e_objective_types_select_column": {}, "e_objective_types_set_input": { "description": [ - 70 + 74 ], "value": [ - 70 + 74 ], "__typename": [ - 70 + 74 ] }, "e_objective_types_stream_cursor_input": { "initial_value": [ - 777 + 781 ], "ordering": [ - 224 + 228 ], "__typename": [ - 70 + 74 ] }, "e_objective_types_stream_cursor_value_input": { "description": [ - 70 + 74 ], "value": [ - 70 + 74 ], "__typename": [ - 70 + 74 ] }, "e_objective_types_update_column": {}, "e_objective_types_updates": { "_set": [ - 775 + 779 ], "where": [ - 763 + 767 ], "__typename": [ - 70 + 74 ] }, "e_player_roles": { "description": [ - 70 + 74 ], "value": [ - 70 + 74 ], "__typename": [ - 70 + 74 ] }, "e_player_roles_aggregate": { "aggregate": [ - 782 + 786 ], "nodes": [ - 780 + 784 ], "__typename": [ - 70 + 74 ] }, "e_player_roles_aggregate_fields": { @@ -12398,7 +12490,7 @@ export default { 38, { "columns": [ - 794, + 798, "[e_player_roles_select_column!]" ], "distinct": [ @@ -12407,88 +12499,88 @@ export default { } ], "max": [ - 788 + 792 ], "min": [ - 789 + 793 ], "__typename": [ - 70 + 74 ] }, "e_player_roles_bool_exp": { "_and": [ - 783 + 787 ], "_not": [ - 783 + 787 ], "_or": [ - 783 + 787 ], "description": [ - 72 + 76 ], "value": [ - 72 + 76 ], "__typename": [ - 70 + 74 ] }, "e_player_roles_constraint": {}, "e_player_roles_enum": {}, "e_player_roles_enum_comparison_exp": { "_eq": [ - 785 + 789 ], "_in": [ - 785 + 789 ], "_is_null": [ 3 ], "_neq": [ - 785 + 789 ], "_nin": [ - 785 + 789 ], "__typename": [ - 70 + 74 ] }, "e_player_roles_insert_input": { "description": [ - 70 + 74 ], "value": [ - 70 + 74 ], "__typename": [ - 70 + 74 ] }, "e_player_roles_max_fields": { "description": [ - 70 + 74 ], "value": [ - 70 + 74 ], "__typename": [ - 70 + 74 ] }, "e_player_roles_min_fields": { "description": [ - 70 + 74 ], "value": [ - 70 + 74 ], "__typename": [ - 70 + 74 ] }, "e_player_roles_mutation_response": { @@ -12496,111 +12588,111 @@ export default { 38 ], "returning": [ - 780 + 784 ], "__typename": [ - 70 + 74 ] }, "e_player_roles_on_conflict": { "constraint": [ - 784 + 788 ], "update_columns": [ - 798 + 802 ], "where": [ - 783 + 787 ], "__typename": [ - 70 + 74 ] }, "e_player_roles_order_by": { "description": [ - 2011 + 2015 ], "value": [ - 2011 + 2015 ], "__typename": [ - 70 + 74 ] }, "e_player_roles_pk_columns_input": { "value": [ - 70 + 74 ], "__typename": [ - 70 + 74 ] }, "e_player_roles_select_column": {}, "e_player_roles_set_input": { "description": [ - 70 + 74 ], "value": [ - 70 + 74 ], "__typename": [ - 70 + 74 ] }, "e_player_roles_stream_cursor_input": { "initial_value": [ - 797 + 801 ], "ordering": [ - 224 + 228 ], "__typename": [ - 70 + 74 ] }, "e_player_roles_stream_cursor_value_input": { "description": [ - 70 + 74 ], "value": [ - 70 + 74 ], "__typename": [ - 70 + 74 ] }, "e_player_roles_update_column": {}, "e_player_roles_updates": { "_set": [ - 795 + 799 ], "where": [ - 783 + 787 ], "__typename": [ - 70 + 74 ] }, "e_ready_settings": { "description": [ - 70 + 74 ], "value": [ - 70 + 74 ], "__typename": [ - 70 + 74 ] }, "e_ready_settings_aggregate": { "aggregate": [ - 802 + 806 ], "nodes": [ - 800 + 804 ], "__typename": [ - 70 + 74 ] }, "e_ready_settings_aggregate_fields": { @@ -12608,7 +12700,7 @@ export default { 38, { "columns": [ - 814, + 818, "[e_ready_settings_select_column!]" ], "distinct": [ @@ -12617,88 +12709,88 @@ export default { } ], "max": [ - 808 + 812 ], "min": [ - 809 + 813 ], "__typename": [ - 70 + 74 ] }, "e_ready_settings_bool_exp": { "_and": [ - 803 + 807 ], "_not": [ - 803 + 807 ], "_or": [ - 803 + 807 ], "description": [ - 72 + 76 ], "value": [ - 72 + 76 ], "__typename": [ - 70 + 74 ] }, "e_ready_settings_constraint": {}, "e_ready_settings_enum": {}, "e_ready_settings_enum_comparison_exp": { "_eq": [ - 805 + 809 ], "_in": [ - 805 + 809 ], "_is_null": [ 3 ], "_neq": [ - 805 + 809 ], "_nin": [ - 805 + 809 ], "__typename": [ - 70 + 74 ] }, "e_ready_settings_insert_input": { "description": [ - 70 + 74 ], "value": [ - 70 + 74 ], "__typename": [ - 70 + 74 ] }, "e_ready_settings_max_fields": { "description": [ - 70 + 74 ], "value": [ - 70 + 74 ], "__typename": [ - 70 + 74 ] }, "e_ready_settings_min_fields": { "description": [ - 70 + 74 ], "value": [ - 70 + 74 ], "__typename": [ - 70 + 74 ] }, "e_ready_settings_mutation_response": { @@ -12706,111 +12798,111 @@ export default { 38 ], "returning": [ - 800 + 804 ], "__typename": [ - 70 + 74 ] }, "e_ready_settings_on_conflict": { "constraint": [ - 804 + 808 ], "update_columns": [ - 818 + 822 ], "where": [ - 803 + 807 ], "__typename": [ - 70 + 74 ] }, "e_ready_settings_order_by": { "description": [ - 2011 + 2015 ], "value": [ - 2011 + 2015 ], "__typename": [ - 70 + 74 ] }, "e_ready_settings_pk_columns_input": { "value": [ - 70 + 74 ], "__typename": [ - 70 + 74 ] }, "e_ready_settings_select_column": {}, "e_ready_settings_set_input": { "description": [ - 70 + 74 ], "value": [ - 70 + 74 ], "__typename": [ - 70 + 74 ] }, "e_ready_settings_stream_cursor_input": { "initial_value": [ - 817 + 821 ], "ordering": [ - 224 + 228 ], "__typename": [ - 70 + 74 ] }, "e_ready_settings_stream_cursor_value_input": { "description": [ - 70 + 74 ], "value": [ - 70 + 74 ], "__typename": [ - 70 + 74 ] }, "e_ready_settings_update_column": {}, "e_ready_settings_updates": { "_set": [ - 815 + 819 ], "where": [ - 803 + 807 ], "__typename": [ - 70 + 74 ] }, "e_sanction_types": { "description": [ - 70 + 74 ], "value": [ - 70 + 74 ], "__typename": [ - 70 + 74 ] }, "e_sanction_types_aggregate": { "aggregate": [ - 822 + 826 ], "nodes": [ - 820 + 824 ], "__typename": [ - 70 + 74 ] }, "e_sanction_types_aggregate_fields": { @@ -12818,7 +12910,7 @@ export default { 38, { "columns": [ - 835, + 839, "[e_sanction_types_select_column!]" ], "distinct": [ @@ -12827,88 +12919,88 @@ export default { } ], "max": [ - 828 + 832 ], "min": [ - 829 + 833 ], "__typename": [ - 70 + 74 ] }, "e_sanction_types_bool_exp": { "_and": [ - 823 + 827 ], "_not": [ - 823 + 827 ], "_or": [ - 823 + 827 ], "description": [ - 72 + 76 ], "value": [ - 72 + 76 ], "__typename": [ - 70 + 74 ] }, "e_sanction_types_constraint": {}, "e_sanction_types_enum": {}, "e_sanction_types_enum_comparison_exp": { "_eq": [ - 825 + 829 ], "_in": [ - 825 + 829 ], "_is_null": [ 3 ], "_neq": [ - 825 + 829 ], "_nin": [ - 825 + 829 ], "__typename": [ - 70 + 74 ] }, "e_sanction_types_insert_input": { "description": [ - 70 + 74 ], "value": [ - 70 + 74 ], "__typename": [ - 70 + 74 ] }, "e_sanction_types_max_fields": { "description": [ - 70 + 74 ], "value": [ - 70 + 74 ], "__typename": [ - 70 + 74 ] }, "e_sanction_types_min_fields": { "description": [ - 70 + 74 ], "value": [ - 70 + 74 ], "__typename": [ - 70 + 74 ] }, "e_sanction_types_mutation_response": { @@ -12916,111 +13008,111 @@ export default { 38 ], "returning": [ - 820 + 824 ], "__typename": [ - 70 + 74 ] }, "e_sanction_types_obj_rel_insert_input": { "data": [ - 827 + 831 ], "on_conflict": [ - 832 + 836 ], "__typename": [ - 70 + 74 ] }, "e_sanction_types_on_conflict": { "constraint": [ - 824 + 828 ], "update_columns": [ - 839 + 843 ], "where": [ - 823 + 827 ], "__typename": [ - 70 + 74 ] }, "e_sanction_types_order_by": { "description": [ - 2011 + 2015 ], "value": [ - 2011 + 2015 ], "__typename": [ - 70 + 74 ] }, "e_sanction_types_pk_columns_input": { "value": [ - 70 + 74 ], "__typename": [ - 70 + 74 ] }, "e_sanction_types_select_column": {}, "e_sanction_types_set_input": { "description": [ - 70 + 74 ], "value": [ - 70 + 74 ], "__typename": [ - 70 + 74 ] }, "e_sanction_types_stream_cursor_input": { "initial_value": [ - 838 + 842 ], "ordering": [ - 224 + 228 ], "__typename": [ - 70 + 74 ] }, "e_sanction_types_stream_cursor_value_input": { "description": [ - 70 + 74 ], "value": [ - 70 + 74 ], "__typename": [ - 70 + 74 ] }, "e_sanction_types_update_column": {}, "e_sanction_types_updates": { "_set": [ - 836 + 840 ], "where": [ - 823 + 827 ], "__typename": [ - 70 + 74 ] }, "e_scrim_request_statuses": { "description": [ - 70 + 74 ], "scrim_requests": [ - 3277, + 3322, { "distinct_on": [ - 3301, + 3346, "[team_scrim_requests_select_column!]" ], "limit": [ @@ -13030,19 +13122,19 @@ export default { 38 ], "order_by": [ - 3299, + 3344, "[team_scrim_requests_order_by!]" ], "where": [ - 3288 + 3333 ] } ], "scrim_requests_aggregate": [ - 3278, + 3323, { "distinct_on": [ - 3301, + 3346, "[team_scrim_requests_select_column!]" ], "limit": [ @@ -13052,30 +13144,30 @@ export default { 38 ], "order_by": [ - 3299, + 3344, "[team_scrim_requests_order_by!]" ], "where": [ - 3288 + 3333 ] } ], "value": [ - 70 + 74 ], "__typename": [ - 70 + 74 ] }, "e_scrim_request_statuses_aggregate": { "aggregate": [ - 843 + 847 ], "nodes": [ - 841 + 845 ], "__typename": [ - 70 + 74 ] }, "e_scrim_request_statuses_aggregate_fields": { @@ -13083,7 +13175,7 @@ export default { 38, { "columns": [ - 855, + 859, "[e_scrim_request_statuses_select_column!]" ], "distinct": [ @@ -13092,97 +13184,97 @@ export default { } ], "max": [ - 849 + 853 ], "min": [ - 850 + 854 ], "__typename": [ - 70 + 74 ] }, "e_scrim_request_statuses_bool_exp": { "_and": [ - 844 + 848 ], "_not": [ - 844 + 848 ], "_or": [ - 844 + 848 ], "description": [ - 72 + 76 ], "scrim_requests": [ - 3288 + 3333 ], "scrim_requests_aggregate": [ - 3279 + 3324 ], "value": [ - 72 + 76 ], "__typename": [ - 70 + 74 ] }, "e_scrim_request_statuses_constraint": {}, "e_scrim_request_statuses_enum": {}, "e_scrim_request_statuses_enum_comparison_exp": { "_eq": [ - 846 + 850 ], "_in": [ - 846 + 850 ], "_is_null": [ 3 ], "_neq": [ - 846 + 850 ], "_nin": [ - 846 + 850 ], "__typename": [ - 70 + 74 ] }, "e_scrim_request_statuses_insert_input": { "description": [ - 70 + 74 ], "scrim_requests": [ - 3285 + 3330 ], "value": [ - 70 + 74 ], "__typename": [ - 70 + 74 ] }, "e_scrim_request_statuses_max_fields": { "description": [ - 70 + 74 ], "value": [ - 70 + 74 ], "__typename": [ - 70 + 74 ] }, "e_scrim_request_statuses_min_fields": { "description": [ - 70 + 74 ], "value": [ - 70 + 74 ], "__typename": [ - 70 + 74 ] }, "e_scrim_request_statuses_mutation_response": { @@ -13190,103 +13282,103 @@ export default { 38 ], "returning": [ - 841 + 845 ], "__typename": [ - 70 + 74 ] }, "e_scrim_request_statuses_on_conflict": { "constraint": [ - 845 + 849 ], "update_columns": [ - 859 + 863 ], "where": [ - 844 + 848 ], "__typename": [ - 70 + 74 ] }, "e_scrim_request_statuses_order_by": { "description": [ - 2011 + 2015 ], "scrim_requests_aggregate": [ - 3284 + 3329 ], "value": [ - 2011 + 2015 ], "__typename": [ - 70 + 74 ] }, "e_scrim_request_statuses_pk_columns_input": { "value": [ - 70 + 74 ], "__typename": [ - 70 + 74 ] }, "e_scrim_request_statuses_select_column": {}, "e_scrim_request_statuses_set_input": { "description": [ - 70 + 74 ], "value": [ - 70 + 74 ], "__typename": [ - 70 + 74 ] }, "e_scrim_request_statuses_stream_cursor_input": { "initial_value": [ - 858 + 862 ], "ordering": [ - 224 + 228 ], "__typename": [ - 70 + 74 ] }, "e_scrim_request_statuses_stream_cursor_value_input": { "description": [ - 70 + 74 ], "value": [ - 70 + 74 ], "__typename": [ - 70 + 74 ] }, "e_scrim_request_statuses_update_column": {}, "e_scrim_request_statuses_updates": { "_set": [ - 856 + 860 ], "where": [ - 844 + 848 ], "__typename": [ - 70 + 74 ] }, "e_server_types": { "description": [ - 70 + 74 ], "servers": [ - 2961, + 2997, { "distinct_on": [ - 2985, + 3021, "[servers_select_column!]" ], "limit": [ @@ -13296,19 +13388,19 @@ export default { 38 ], "order_by": [ - 2983, + 3019, "[servers_order_by!]" ], "where": [ - 2972 + 3008 ] } ], "servers_aggregate": [ - 2962, + 2998, { "distinct_on": [ - 2985, + 3021, "[servers_select_column!]" ], "limit": [ @@ -13318,30 +13410,30 @@ export default { 38 ], "order_by": [ - 2983, + 3019, "[servers_order_by!]" ], "where": [ - 2972 + 3008 ] } ], "value": [ - 70 + 74 ], "__typename": [ - 70 + 74 ] }, "e_server_types_aggregate": { "aggregate": [ - 863 + 867 ], "nodes": [ - 861 + 865 ], "__typename": [ - 70 + 74 ] }, "e_server_types_aggregate_fields": { @@ -13349,7 +13441,7 @@ export default { 38, { "columns": [ - 875, + 879, "[e_server_types_select_column!]" ], "distinct": [ @@ -13358,97 +13450,97 @@ export default { } ], "max": [ - 869 + 873 ], "min": [ - 870 + 874 ], "__typename": [ - 70 + 74 ] }, "e_server_types_bool_exp": { "_and": [ - 864 + 868 ], "_not": [ - 864 + 868 ], "_or": [ - 864 + 868 ], "description": [ - 72 + 76 ], "servers": [ - 2972 + 3008 ], "servers_aggregate": [ - 2963 + 2999 ], "value": [ - 72 + 76 ], "__typename": [ - 70 + 74 ] }, "e_server_types_constraint": {}, "e_server_types_enum": {}, "e_server_types_enum_comparison_exp": { "_eq": [ - 866 + 870 ], "_in": [ - 866 + 870 ], "_is_null": [ 3 ], "_neq": [ - 866 + 870 ], "_nin": [ - 866 + 870 ], "__typename": [ - 70 + 74 ] }, "e_server_types_insert_input": { "description": [ - 70 + 74 ], "servers": [ - 2969 + 3005 ], "value": [ - 70 + 74 ], "__typename": [ - 70 + 74 ] }, "e_server_types_max_fields": { "description": [ - 70 + 74 ], "value": [ - 70 + 74 ], "__typename": [ - 70 + 74 ] }, "e_server_types_min_fields": { "description": [ - 70 + 74 ], "value": [ - 70 + 74 ], "__typename": [ - 70 + 74 ] }, "e_server_types_mutation_response": { @@ -13456,103 +13548,103 @@ export default { 38 ], "returning": [ - 861 + 865 ], "__typename": [ - 70 + 74 ] }, "e_server_types_on_conflict": { "constraint": [ - 865 + 869 ], "update_columns": [ - 879 + 883 ], "where": [ - 864 + 868 ], "__typename": [ - 70 + 74 ] }, "e_server_types_order_by": { "description": [ - 2011 + 2015 ], "servers_aggregate": [ - 2968 + 3004 ], "value": [ - 2011 + 2015 ], "__typename": [ - 70 + 74 ] }, "e_server_types_pk_columns_input": { "value": [ - 70 + 74 ], "__typename": [ - 70 + 74 ] }, "e_server_types_select_column": {}, "e_server_types_set_input": { "description": [ - 70 + 74 ], "value": [ - 70 + 74 ], "__typename": [ - 70 + 74 ] }, "e_server_types_stream_cursor_input": { "initial_value": [ - 878 + 882 ], "ordering": [ - 224 + 228 ], "__typename": [ - 70 + 74 ] }, "e_server_types_stream_cursor_value_input": { "description": [ - 70 + 74 ], "value": [ - 70 + 74 ], "__typename": [ - 70 + 74 ] }, "e_server_types_update_column": {}, "e_server_types_updates": { "_set": [ - 876 + 880 ], "where": [ - 864 + 868 ], "__typename": [ - 70 + 74 ] }, "e_sides": { "description": [ - 70 + 74 ], "match_map_lineup_1": [ - 1664, + 1668, { "distinct_on": [ - 1686, + 1690, "[match_maps_select_column!]" ], "limit": [ @@ -13562,19 +13654,19 @@ export default { 38 ], "order_by": [ - 1684, + 1688, "[match_maps_order_by!]" ], "where": [ - 1673 + 1677 ] } ], "match_map_lineup_1_aggregate": [ - 1665, + 1669, { "distinct_on": [ - 1686, + 1690, "[match_maps_select_column!]" ], "limit": [ @@ -13584,19 +13676,19 @@ export default { 38 ], "order_by": [ - 1684, + 1688, "[match_maps_order_by!]" ], "where": [ - 1673 + 1677 ] } ], "match_map_lineup_2": [ - 1664, + 1668, { "distinct_on": [ - 1686, + 1690, "[match_maps_select_column!]" ], "limit": [ @@ -13606,19 +13698,19 @@ export default { 38 ], "order_by": [ - 1684, + 1688, "[match_maps_order_by!]" ], "where": [ - 1673 + 1677 ] } ], "match_map_lineup_2_aggregate": [ - 1665, + 1669, { "distinct_on": [ - 1686, + 1690, "[match_maps_select_column!]" ], "limit": [ @@ -13628,30 +13720,30 @@ export default { 38 ], "order_by": [ - 1684, + 1688, "[match_maps_order_by!]" ], "where": [ - 1673 + 1677 ] } ], "value": [ - 70 + 74 ], "__typename": [ - 70 + 74 ] }, "e_sides_aggregate": { "aggregate": [ - 883 + 887 ], "nodes": [ - 881 + 885 ], "__typename": [ - 70 + 74 ] }, "e_sides_aggregate_fields": { @@ -13659,7 +13751,7 @@ export default { 38, { "columns": [ - 895, + 899, "[e_sides_select_column!]" ], "distinct": [ @@ -13668,106 +13760,106 @@ export default { } ], "max": [ - 889 + 893 ], "min": [ - 890 + 894 ], "__typename": [ - 70 + 74 ] }, "e_sides_bool_exp": { "_and": [ - 884 + 888 ], "_not": [ - 884 + 888 ], "_or": [ - 884 + 888 ], "description": [ - 72 + 76 ], "match_map_lineup_1": [ - 1673 + 1677 ], "match_map_lineup_1_aggregate": [ - 1666 + 1670 ], "match_map_lineup_2": [ - 1673 + 1677 ], "match_map_lineup_2_aggregate": [ - 1666 + 1670 ], "value": [ - 72 + 76 ], "__typename": [ - 70 + 74 ] }, "e_sides_constraint": {}, "e_sides_enum": {}, "e_sides_enum_comparison_exp": { "_eq": [ - 886 + 890 ], "_in": [ - 886 + 890 ], "_is_null": [ 3 ], "_neq": [ - 886 + 890 ], "_nin": [ - 886 + 890 ], "__typename": [ - 70 + 74 ] }, "e_sides_insert_input": { "description": [ - 70 + 74 ], "match_map_lineup_1": [ - 1670 + 1674 ], "match_map_lineup_2": [ - 1670 + 1674 ], "value": [ - 70 + 74 ], "__typename": [ - 70 + 74 ] }, "e_sides_max_fields": { "description": [ - 70 + 74 ], "value": [ - 70 + 74 ], "__typename": [ - 70 + 74 ] }, "e_sides_min_fields": { "description": [ - 70 + 74 ], "value": [ - 70 + 74 ], "__typename": [ - 70 + 74 ] }, "e_sides_mutation_response": { @@ -13775,117 +13867,117 @@ export default { 38 ], "returning": [ - 881 + 885 ], "__typename": [ - 70 + 74 ] }, "e_sides_on_conflict": { "constraint": [ - 885 + 889 ], "update_columns": [ - 899 + 903 ], "where": [ - 884 + 888 ], "__typename": [ - 70 + 74 ] }, "e_sides_order_by": { "description": [ - 2011 + 2015 ], "match_map_lineup_1_aggregate": [ - 1669 + 1673 ], "match_map_lineup_2_aggregate": [ - 1669 + 1673 ], "value": [ - 2011 + 2015 ], "__typename": [ - 70 + 74 ] }, "e_sides_pk_columns_input": { "value": [ - 70 + 74 ], "__typename": [ - 70 + 74 ] }, "e_sides_select_column": {}, "e_sides_set_input": { "description": [ - 70 + 74 ], "value": [ - 70 + 74 ], "__typename": [ - 70 + 74 ] }, "e_sides_stream_cursor_input": { "initial_value": [ - 898 + 902 ], "ordering": [ - 224 + 228 ], "__typename": [ - 70 + 74 ] }, "e_sides_stream_cursor_value_input": { "description": [ - 70 + 74 ], "value": [ - 70 + 74 ], "__typename": [ - 70 + 74 ] }, "e_sides_update_column": {}, "e_sides_updates": { "_set": [ - 896 + 900 ], "where": [ - 884 + 888 ], "__typename": [ - 70 + 74 ] }, "e_system_alert_types": { "description": [ - 70 + 74 ], "value": [ - 70 + 74 ], "__typename": [ - 70 + 74 ] }, "e_system_alert_types_aggregate": { "aggregate": [ - 903 + 907 ], "nodes": [ - 901 + 905 ], "__typename": [ - 70 + 74 ] }, "e_system_alert_types_aggregate_fields": { @@ -13893,7 +13985,7 @@ export default { 38, { "columns": [ - 915, + 919, "[e_system_alert_types_select_column!]" ], "distinct": [ @@ -13902,88 +13994,88 @@ export default { } ], "max": [ - 909 + 913 ], "min": [ - 910 + 914 ], "__typename": [ - 70 + 74 ] }, "e_system_alert_types_bool_exp": { "_and": [ - 904 + 908 ], "_not": [ - 904 + 908 ], "_or": [ - 904 + 908 ], "description": [ - 72 + 76 ], "value": [ - 72 + 76 ], "__typename": [ - 70 + 74 ] }, "e_system_alert_types_constraint": {}, "e_system_alert_types_enum": {}, "e_system_alert_types_enum_comparison_exp": { "_eq": [ - 906 + 910 ], "_in": [ - 906 + 910 ], "_is_null": [ 3 ], "_neq": [ - 906 + 910 ], "_nin": [ - 906 + 910 ], "__typename": [ - 70 + 74 ] }, "e_system_alert_types_insert_input": { "description": [ - 70 + 74 ], "value": [ - 70 + 74 ], "__typename": [ - 70 + 74 ] }, "e_system_alert_types_max_fields": { "description": [ - 70 + 74 ], "value": [ - 70 + 74 ], "__typename": [ - 70 + 74 ] }, "e_system_alert_types_min_fields": { "description": [ - 70 + 74 ], "value": [ - 70 + 74 ], "__typename": [ - 70 + 74 ] }, "e_system_alert_types_mutation_response": { @@ -13991,100 +14083,100 @@ export default { 38 ], "returning": [ - 901 + 905 ], "__typename": [ - 70 + 74 ] }, "e_system_alert_types_on_conflict": { "constraint": [ - 905 + 909 ], "update_columns": [ - 919 + 923 ], "where": [ - 904 + 908 ], "__typename": [ - 70 + 74 ] }, "e_system_alert_types_order_by": { "description": [ - 2011 + 2015 ], "value": [ - 2011 + 2015 ], "__typename": [ - 70 + 74 ] }, "e_system_alert_types_pk_columns_input": { "value": [ - 70 + 74 ], "__typename": [ - 70 + 74 ] }, "e_system_alert_types_select_column": {}, "e_system_alert_types_set_input": { "description": [ - 70 + 74 ], "value": [ - 70 + 74 ], "__typename": [ - 70 + 74 ] }, "e_system_alert_types_stream_cursor_input": { "initial_value": [ - 918 + 922 ], "ordering": [ - 224 + 228 ], "__typename": [ - 70 + 74 ] }, "e_system_alert_types_stream_cursor_value_input": { "description": [ - 70 + 74 ], "value": [ - 70 + 74 ], "__typename": [ - 70 + 74 ] }, "e_system_alert_types_update_column": {}, "e_system_alert_types_updates": { "_set": [ - 916 + 920 ], "where": [ - 904 + 908 ], "__typename": [ - 70 + 74 ] }, "e_team_roles": { "description": [ - 70 + 74 ], "team_rosters": [ - 3136, + 3181, { "distinct_on": [ - 3159, + 3204, "[team_roster_select_column!]" ], "limit": [ @@ -14094,19 +14186,19 @@ export default { 38 ], "order_by": [ - 3157, + 3202, "[team_roster_order_by!]" ], "where": [ - 3147 + 3192 ] } ], "team_rosters_aggregate": [ - 3137, + 3182, { "distinct_on": [ - 3159, + 3204, "[team_roster_select_column!]" ], "limit": [ @@ -14116,19 +14208,19 @@ export default { 38 ], "order_by": [ - 3157, + 3202, "[team_roster_order_by!]" ], "where": [ - 3147 + 3192 ] } ], "tournament_team_rosters": [ - 3602, + 3647, { "distinct_on": [ - 3623, + 3668, "[tournament_team_roster_select_column!]" ], "limit": [ @@ -14138,19 +14230,19 @@ export default { 38 ], "order_by": [ - 3621, + 3666, "[tournament_team_roster_order_by!]" ], "where": [ - 3611 + 3656 ] } ], "tournament_team_rosters_aggregate": [ - 3603, + 3648, { "distinct_on": [ - 3623, + 3668, "[tournament_team_roster_select_column!]" ], "limit": [ @@ -14160,30 +14252,30 @@ export default { 38 ], "order_by": [ - 3621, + 3666, "[tournament_team_roster_order_by!]" ], "where": [ - 3611 + 3656 ] } ], "value": [ - 70 + 74 ], "__typename": [ - 70 + 74 ] }, "e_team_roles_aggregate": { "aggregate": [ - 923 + 927 ], "nodes": [ - 921 + 925 ], "__typename": [ - 70 + 74 ] }, "e_team_roles_aggregate_fields": { @@ -14191,7 +14283,7 @@ export default { 38, { "columns": [ - 936, + 940, "[e_team_roles_select_column!]" ], "distinct": [ @@ -14200,106 +14292,106 @@ export default { } ], "max": [ - 929 + 933 ], "min": [ - 930 + 934 ], "__typename": [ - 70 + 74 ] }, "e_team_roles_bool_exp": { "_and": [ - 924 + 928 ], "_not": [ - 924 + 928 ], "_or": [ - 924 + 928 ], "description": [ - 72 + 76 ], "team_rosters": [ - 3147 + 3192 ], "team_rosters_aggregate": [ - 3138 + 3183 ], "tournament_team_rosters": [ - 3611 + 3656 ], "tournament_team_rosters_aggregate": [ - 3604 + 3649 ], "value": [ - 72 + 76 ], "__typename": [ - 70 + 74 ] }, "e_team_roles_constraint": {}, "e_team_roles_enum": {}, "e_team_roles_enum_comparison_exp": { "_eq": [ - 926 + 930 ], "_in": [ - 926 + 930 ], "_is_null": [ 3 ], "_neq": [ - 926 + 930 ], "_nin": [ - 926 + 930 ], "__typename": [ - 70 + 74 ] }, "e_team_roles_insert_input": { "description": [ - 70 + 74 ], "team_rosters": [ - 3144 + 3189 ], "tournament_team_rosters": [ - 3608 + 3653 ], "value": [ - 70 + 74 ], "__typename": [ - 70 + 74 ] }, "e_team_roles_max_fields": { "description": [ - 70 + 74 ], "value": [ - 70 + 74 ], "__typename": [ - 70 + 74 ] }, "e_team_roles_min_fields": { "description": [ - 70 + 74 ], "value": [ - 70 + 74 ], "__typename": [ - 70 + 74 ] }, "e_team_roles_mutation_response": { @@ -14307,128 +14399,128 @@ export default { 38 ], "returning": [ - 921 + 925 ], "__typename": [ - 70 + 74 ] }, "e_team_roles_obj_rel_insert_input": { "data": [ - 928 + 932 ], "on_conflict": [ - 933 + 937 ], "__typename": [ - 70 + 74 ] }, "e_team_roles_on_conflict": { "constraint": [ - 925 + 929 ], "update_columns": [ - 940 + 944 ], "where": [ - 924 + 928 ], "__typename": [ - 70 + 74 ] }, "e_team_roles_order_by": { "description": [ - 2011 + 2015 ], "team_rosters_aggregate": [ - 3143 + 3188 ], "tournament_team_rosters_aggregate": [ - 3607 + 3652 ], "value": [ - 2011 + 2015 ], "__typename": [ - 70 + 74 ] }, "e_team_roles_pk_columns_input": { "value": [ - 70 + 74 ], "__typename": [ - 70 + 74 ] }, "e_team_roles_select_column": {}, "e_team_roles_set_input": { "description": [ - 70 + 74 ], "value": [ - 70 + 74 ], "__typename": [ - 70 + 74 ] }, "e_team_roles_stream_cursor_input": { "initial_value": [ - 939 + 943 ], "ordering": [ - 224 + 228 ], "__typename": [ - 70 + 74 ] }, "e_team_roles_stream_cursor_value_input": { "description": [ - 70 + 74 ], "value": [ - 70 + 74 ], "__typename": [ - 70 + 74 ] }, "e_team_roles_update_column": {}, "e_team_roles_updates": { "_set": [ - 937 + 941 ], "where": [ - 924 + 928 ], "__typename": [ - 70 + 74 ] }, "e_team_roster_statuses": { "description": [ - 70 + 74 ], "value": [ - 70 + 74 ], "__typename": [ - 70 + 74 ] }, "e_team_roster_statuses_aggregate": { "aggregate": [ - 944 + 948 ], "nodes": [ - 942 + 946 ], "__typename": [ - 70 + 74 ] }, "e_team_roster_statuses_aggregate_fields": { @@ -14436,7 +14528,7 @@ export default { 38, { "columns": [ - 956, + 960, "[e_team_roster_statuses_select_column!]" ], "distinct": [ @@ -14445,88 +14537,88 @@ export default { } ], "max": [ - 950 + 954 ], "min": [ - 951 + 955 ], "__typename": [ - 70 + 74 ] }, "e_team_roster_statuses_bool_exp": { "_and": [ - 945 + 949 ], "_not": [ - 945 + 949 ], "_or": [ - 945 + 949 ], "description": [ - 72 + 76 ], "value": [ - 72 + 76 ], "__typename": [ - 70 + 74 ] }, "e_team_roster_statuses_constraint": {}, "e_team_roster_statuses_enum": {}, "e_team_roster_statuses_enum_comparison_exp": { "_eq": [ - 947 + 951 ], "_in": [ - 947 + 951 ], "_is_null": [ 3 ], "_neq": [ - 947 + 951 ], "_nin": [ - 947 + 951 ], "__typename": [ - 70 + 74 ] }, "e_team_roster_statuses_insert_input": { "description": [ - 70 + 74 ], "value": [ - 70 + 74 ], "__typename": [ - 70 + 74 ] }, "e_team_roster_statuses_max_fields": { "description": [ - 70 + 74 ], "value": [ - 70 + 74 ], "__typename": [ - 70 + 74 ] }, "e_team_roster_statuses_min_fields": { "description": [ - 70 + 74 ], "value": [ - 70 + 74 ], "__typename": [ - 70 + 74 ] }, "e_team_roster_statuses_mutation_response": { @@ -14534,111 +14626,111 @@ export default { 38 ], "returning": [ - 942 + 946 ], "__typename": [ - 70 + 74 ] }, "e_team_roster_statuses_on_conflict": { "constraint": [ - 946 + 950 ], "update_columns": [ - 960 + 964 ], "where": [ - 945 + 949 ], "__typename": [ - 70 + 74 ] }, "e_team_roster_statuses_order_by": { "description": [ - 2011 + 2015 ], "value": [ - 2011 + 2015 ], "__typename": [ - 70 + 74 ] }, "e_team_roster_statuses_pk_columns_input": { "value": [ - 70 + 74 ], "__typename": [ - 70 + 74 ] }, "e_team_roster_statuses_select_column": {}, "e_team_roster_statuses_set_input": { "description": [ - 70 + 74 ], "value": [ - 70 + 74 ], "__typename": [ - 70 + 74 ] }, "e_team_roster_statuses_stream_cursor_input": { "initial_value": [ - 959 + 963 ], "ordering": [ - 224 + 228 ], "__typename": [ - 70 + 74 ] }, "e_team_roster_statuses_stream_cursor_value_input": { "description": [ - 70 + 74 ], "value": [ - 70 + 74 ], "__typename": [ - 70 + 74 ] }, "e_team_roster_statuses_update_column": {}, "e_team_roster_statuses_updates": { "_set": [ - 957 + 961 ], "where": [ - 945 + 949 ], "__typename": [ - 70 + 74 ] }, "e_timeout_settings": { "description": [ - 70 + 74 ], "value": [ - 70 + 74 ], "__typename": [ - 70 + 74 ] }, "e_timeout_settings_aggregate": { "aggregate": [ - 964 + 968 ], "nodes": [ - 962 + 966 ], "__typename": [ - 70 + 74 ] }, "e_timeout_settings_aggregate_fields": { @@ -14646,7 +14738,7 @@ export default { 38, { "columns": [ - 976, + 980, "[e_timeout_settings_select_column!]" ], "distinct": [ @@ -14655,88 +14747,88 @@ export default { } ], "max": [ - 970 + 974 ], "min": [ - 971 + 975 ], "__typename": [ - 70 + 74 ] }, "e_timeout_settings_bool_exp": { "_and": [ - 965 + 969 ], "_not": [ - 965 + 969 ], "_or": [ - 965 + 969 ], "description": [ - 72 + 76 ], "value": [ - 72 + 76 ], "__typename": [ - 70 + 74 ] }, "e_timeout_settings_constraint": {}, "e_timeout_settings_enum": {}, "e_timeout_settings_enum_comparison_exp": { "_eq": [ - 967 + 971 ], "_in": [ - 967 + 971 ], "_is_null": [ 3 ], "_neq": [ - 967 + 971 ], "_nin": [ - 967 + 971 ], "__typename": [ - 70 + 74 ] }, "e_timeout_settings_insert_input": { "description": [ - 70 + 74 ], "value": [ - 70 + 74 ], "__typename": [ - 70 + 74 ] }, "e_timeout_settings_max_fields": { "description": [ - 70 + 74 ], "value": [ - 70 + 74 ], "__typename": [ - 70 + 74 ] }, "e_timeout_settings_min_fields": { "description": [ - 70 + 74 ], "value": [ - 70 + 74 ], "__typename": [ - 70 + 74 ] }, "e_timeout_settings_mutation_response": { @@ -14744,100 +14836,100 @@ export default { 38 ], "returning": [ - 962 + 966 ], "__typename": [ - 70 + 74 ] }, "e_timeout_settings_on_conflict": { "constraint": [ - 966 + 970 ], "update_columns": [ - 980 + 984 ], "where": [ - 965 + 969 ], "__typename": [ - 70 + 74 ] }, "e_timeout_settings_order_by": { "description": [ - 2011 + 2015 ], "value": [ - 2011 + 2015 ], "__typename": [ - 70 + 74 ] }, "e_timeout_settings_pk_columns_input": { "value": [ - 70 + 74 ], "__typename": [ - 70 + 74 ] }, "e_timeout_settings_select_column": {}, "e_timeout_settings_set_input": { "description": [ - 70 + 74 ], "value": [ - 70 + 74 ], "__typename": [ - 70 + 74 ] }, "e_timeout_settings_stream_cursor_input": { "initial_value": [ - 979 + 983 ], "ordering": [ - 224 + 228 ], "__typename": [ - 70 + 74 ] }, "e_timeout_settings_stream_cursor_value_input": { "description": [ - 70 + 74 ], "value": [ - 70 + 74 ], "__typename": [ - 70 + 74 ] }, "e_timeout_settings_update_column": {}, "e_timeout_settings_updates": { "_set": [ - 977 + 981 ], "where": [ - 965 + 969 ], "__typename": [ - 70 + 74 ] }, "e_tournament_stage_types": { "description": [ - 70 + 74 ], "tournament_stages": [ - 3510, + 3555, { "distinct_on": [ - 3539, + 3584, "[tournament_stages_select_column!]" ], "limit": [ @@ -14847,19 +14939,19 @@ export default { 38 ], "order_by": [ - 3536, + 3581, "[tournament_stages_order_by!]" ], "where": [ - 3522 + 3567 ] } ], "tournament_stages_aggregate": [ - 3511, + 3556, { "distinct_on": [ - 3539, + 3584, "[tournament_stages_select_column!]" ], "limit": [ @@ -14869,30 +14961,30 @@ export default { 38 ], "order_by": [ - 3536, + 3581, "[tournament_stages_order_by!]" ], "where": [ - 3522 + 3567 ] } ], "value": [ - 70 + 74 ], "__typename": [ - 70 + 74 ] }, "e_tournament_stage_types_aggregate": { "aggregate": [ - 984 + 988 ], "nodes": [ - 982 + 986 ], "__typename": [ - 70 + 74 ] }, "e_tournament_stage_types_aggregate_fields": { @@ -14900,7 +14992,7 @@ export default { 38, { "columns": [ - 997, + 1001, "[e_tournament_stage_types_select_column!]" ], "distinct": [ @@ -14909,97 +15001,97 @@ export default { } ], "max": [ - 990 + 994 ], "min": [ - 991 + 995 ], "__typename": [ - 70 + 74 ] }, "e_tournament_stage_types_bool_exp": { "_and": [ - 985 + 989 ], "_not": [ - 985 + 989 ], "_or": [ - 985 + 989 ], "description": [ - 72 + 76 ], "tournament_stages": [ - 3522 + 3567 ], "tournament_stages_aggregate": [ - 3512 + 3557 ], "value": [ - 72 + 76 ], "__typename": [ - 70 + 74 ] }, "e_tournament_stage_types_constraint": {}, "e_tournament_stage_types_enum": {}, "e_tournament_stage_types_enum_comparison_exp": { "_eq": [ - 987 + 991 ], "_in": [ - 987 + 991 ], "_is_null": [ 3 ], "_neq": [ - 987 + 991 ], "_nin": [ - 987 + 991 ], "__typename": [ - 70 + 74 ] }, "e_tournament_stage_types_insert_input": { "description": [ - 70 + 74 ], "tournament_stages": [ - 3519 + 3564 ], "value": [ - 70 + 74 ], "__typename": [ - 70 + 74 ] }, "e_tournament_stage_types_max_fields": { "description": [ - 70 + 74 ], "value": [ - 70 + 74 ], "__typename": [ - 70 + 74 ] }, "e_tournament_stage_types_min_fields": { "description": [ - 70 + 74 ], "value": [ - 70 + 74 ], "__typename": [ - 70 + 74 ] }, "e_tournament_stage_types_mutation_response": { @@ -15007,114 +15099,114 @@ export default { 38 ], "returning": [ - 982 + 986 ], "__typename": [ - 70 + 74 ] }, "e_tournament_stage_types_obj_rel_insert_input": { "data": [ - 989 + 993 ], "on_conflict": [ - 994 + 998 ], "__typename": [ - 70 + 74 ] }, "e_tournament_stage_types_on_conflict": { "constraint": [ - 986 + 990 ], "update_columns": [ - 1001 + 1005 ], "where": [ - 985 + 989 ], "__typename": [ - 70 + 74 ] }, "e_tournament_stage_types_order_by": { "description": [ - 2011 + 2015 ], "tournament_stages_aggregate": [ - 3517 + 3562 ], "value": [ - 2011 + 2015 ], "__typename": [ - 70 + 74 ] }, "e_tournament_stage_types_pk_columns_input": { "value": [ - 70 + 74 ], "__typename": [ - 70 + 74 ] }, "e_tournament_stage_types_select_column": {}, "e_tournament_stage_types_set_input": { "description": [ - 70 + 74 ], "value": [ - 70 + 74 ], "__typename": [ - 70 + 74 ] }, "e_tournament_stage_types_stream_cursor_input": { "initial_value": [ - 1000 + 1004 ], "ordering": [ - 224 + 228 ], "__typename": [ - 70 + 74 ] }, "e_tournament_stage_types_stream_cursor_value_input": { "description": [ - 70 + 74 ], "value": [ - 70 + 74 ], "__typename": [ - 70 + 74 ] }, "e_tournament_stage_types_update_column": {}, "e_tournament_stage_types_updates": { "_set": [ - 998 + 1002 ], "where": [ - 985 + 989 ], "__typename": [ - 70 + 74 ] }, "e_tournament_status": { "description": [ - 70 + 74 ], "tournaments": [ - 3772, + 3817, { "distinct_on": [ - 3796, + 3841, "[tournaments_select_column!]" ], "limit": [ @@ -15124,19 +15216,19 @@ export default { 38 ], "order_by": [ - 3794, + 3839, "[tournaments_order_by!]" ], "where": [ - 3783 + 3828 ] } ], "tournaments_aggregate": [ - 3773, + 3818, { "distinct_on": [ - 3796, + 3841, "[tournaments_select_column!]" ], "limit": [ @@ -15146,30 +15238,30 @@ export default { 38 ], "order_by": [ - 3794, + 3839, "[tournaments_order_by!]" ], "where": [ - 3783 + 3828 ] } ], "value": [ - 70 + 74 ], "__typename": [ - 70 + 74 ] }, "e_tournament_status_aggregate": { "aggregate": [ - 1005 + 1009 ], "nodes": [ - 1003 + 1007 ], "__typename": [ - 70 + 74 ] }, "e_tournament_status_aggregate_fields": { @@ -15177,7 +15269,7 @@ export default { 38, { "columns": [ - 1018, + 1022, "[e_tournament_status_select_column!]" ], "distinct": [ @@ -15186,97 +15278,97 @@ export default { } ], "max": [ - 1011 + 1015 ], "min": [ - 1012 + 1016 ], "__typename": [ - 70 + 74 ] }, "e_tournament_status_bool_exp": { "_and": [ - 1006 + 1010 ], "_not": [ - 1006 + 1010 ], "_or": [ - 1006 + 1010 ], "description": [ - 72 + 76 ], "tournaments": [ - 3783 + 3828 ], "tournaments_aggregate": [ - 3774 + 3819 ], "value": [ - 72 + 76 ], "__typename": [ - 70 + 74 ] }, "e_tournament_status_constraint": {}, "e_tournament_status_enum": {}, "e_tournament_status_enum_comparison_exp": { "_eq": [ - 1008 + 1012 ], "_in": [ - 1008 + 1012 ], "_is_null": [ 3 ], "_neq": [ - 1008 + 1012 ], "_nin": [ - 1008 + 1012 ], "__typename": [ - 70 + 74 ] }, "e_tournament_status_insert_input": { "description": [ - 70 + 74 ], "tournaments": [ - 3780 + 3825 ], "value": [ - 70 + 74 ], "__typename": [ - 70 + 74 ] }, "e_tournament_status_max_fields": { "description": [ - 70 + 74 ], "value": [ - 70 + 74 ], "__typename": [ - 70 + 74 ] }, "e_tournament_status_min_fields": { "description": [ - 70 + 74 ], "value": [ - 70 + 74 ], "__typename": [ - 70 + 74 ] }, "e_tournament_status_mutation_response": { @@ -15284,114 +15376,114 @@ export default { 38 ], "returning": [ - 1003 + 1007 ], "__typename": [ - 70 + 74 ] }, "e_tournament_status_obj_rel_insert_input": { "data": [ - 1010 + 1014 ], "on_conflict": [ - 1015 + 1019 ], "__typename": [ - 70 + 74 ] }, "e_tournament_status_on_conflict": { "constraint": [ - 1007 + 1011 ], "update_columns": [ - 1022 + 1026 ], "where": [ - 1006 + 1010 ], "__typename": [ - 70 + 74 ] }, "e_tournament_status_order_by": { "description": [ - 2011 + 2015 ], "tournaments_aggregate": [ - 3779 + 3824 ], "value": [ - 2011 + 2015 ], "__typename": [ - 70 + 74 ] }, "e_tournament_status_pk_columns_input": { "value": [ - 70 + 74 ], "__typename": [ - 70 + 74 ] }, "e_tournament_status_select_column": {}, "e_tournament_status_set_input": { "description": [ - 70 + 74 ], "value": [ - 70 + 74 ], "__typename": [ - 70 + 74 ] }, "e_tournament_status_stream_cursor_input": { "initial_value": [ - 1021 + 1025 ], "ordering": [ - 224 + 228 ], "__typename": [ - 70 + 74 ] }, "e_tournament_status_stream_cursor_value_input": { "description": [ - 70 + 74 ], "value": [ - 70 + 74 ], "__typename": [ - 70 + 74 ] }, "e_tournament_status_update_column": {}, "e_tournament_status_updates": { "_set": [ - 1019 + 1023 ], "where": [ - 1006 + 1010 ], "__typename": [ - 70 + 74 ] }, "e_utility_types": { "description": [ - 70 + 74 ], "player_utilities": [ - 2804, + 2840, { "distinct_on": [ - 2825, + 2861, "[player_utility_select_column!]" ], "limit": [ @@ -15401,19 +15493,19 @@ export default { 38 ], "order_by": [ - 2823, + 2859, "[player_utility_order_by!]" ], "where": [ - 2813 + 2849 ] } ], "player_utilities_aggregate": [ - 2805, + 2841, { "distinct_on": [ - 2825, + 2861, "[player_utility_select_column!]" ], "limit": [ @@ -15423,30 +15515,30 @@ export default { 38 ], "order_by": [ - 2823, + 2859, "[player_utility_order_by!]" ], "where": [ - 2813 + 2849 ] } ], "value": [ - 70 + 74 ], "__typename": [ - 70 + 74 ] }, "e_utility_types_aggregate": { "aggregate": [ - 1026 + 1030 ], "nodes": [ - 1024 + 1028 ], "__typename": [ - 70 + 74 ] }, "e_utility_types_aggregate_fields": { @@ -15454,7 +15546,7 @@ export default { 38, { "columns": [ - 1038, + 1042, "[e_utility_types_select_column!]" ], "distinct": [ @@ -15463,97 +15555,97 @@ export default { } ], "max": [ - 1032 + 1036 ], "min": [ - 1033 + 1037 ], "__typename": [ - 70 + 74 ] }, "e_utility_types_bool_exp": { "_and": [ - 1027 + 1031 ], "_not": [ - 1027 + 1031 ], "_or": [ - 1027 + 1031 ], "description": [ - 72 + 76 ], "player_utilities": [ - 2813 + 2849 ], "player_utilities_aggregate": [ - 2806 + 2842 ], "value": [ - 72 + 76 ], "__typename": [ - 70 + 74 ] }, "e_utility_types_constraint": {}, "e_utility_types_enum": {}, "e_utility_types_enum_comparison_exp": { "_eq": [ - 1029 + 1033 ], "_in": [ - 1029 + 1033 ], "_is_null": [ 3 ], "_neq": [ - 1029 + 1033 ], "_nin": [ - 1029 + 1033 ], "__typename": [ - 70 + 74 ] }, "e_utility_types_insert_input": { "description": [ - 70 + 74 ], "player_utilities": [ - 2810 + 2846 ], "value": [ - 70 + 74 ], "__typename": [ - 70 + 74 ] }, "e_utility_types_max_fields": { "description": [ - 70 + 74 ], "value": [ - 70 + 74 ], "__typename": [ - 70 + 74 ] }, "e_utility_types_min_fields": { "description": [ - 70 + 74 ], "value": [ - 70 + 74 ], "__typename": [ - 70 + 74 ] }, "e_utility_types_mutation_response": { @@ -15561,103 +15653,103 @@ export default { 38 ], "returning": [ - 1024 + 1028 ], "__typename": [ - 70 + 74 ] }, "e_utility_types_on_conflict": { "constraint": [ - 1028 + 1032 ], "update_columns": [ - 1042 + 1046 ], "where": [ - 1027 + 1031 ], "__typename": [ - 70 + 74 ] }, "e_utility_types_order_by": { "description": [ - 2011 + 2015 ], "player_utilities_aggregate": [ - 2809 + 2845 ], "value": [ - 2011 + 2015 ], "__typename": [ - 70 + 74 ] }, "e_utility_types_pk_columns_input": { "value": [ - 70 + 74 ], "__typename": [ - 70 + 74 ] }, "e_utility_types_select_column": {}, "e_utility_types_set_input": { "description": [ - 70 + 74 ], "value": [ - 70 + 74 ], "__typename": [ - 70 + 74 ] }, "e_utility_types_stream_cursor_input": { "initial_value": [ - 1041 + 1045 ], "ordering": [ - 224 + 228 ], "__typename": [ - 70 + 74 ] }, "e_utility_types_stream_cursor_value_input": { "description": [ - 70 + 74 ], "value": [ - 70 + 74 ], "__typename": [ - 70 + 74 ] }, "e_utility_types_update_column": {}, "e_utility_types_updates": { "_set": [ - 1039 + 1043 ], "where": [ - 1027 + 1031 ], "__typename": [ - 70 + 74 ] }, "e_veto_pick_types": { "description": [ - 70 + 74 ], "match_veto_picks": [ - 1640, + 1644, { "distinct_on": [ - 1658, + 1662, "[match_map_veto_picks_select_column!]" ], "limit": [ @@ -15667,19 +15759,19 @@ export default { 38 ], "order_by": [ - 1656, + 1660, "[match_map_veto_picks_order_by!]" ], "where": [ - 1647 + 1651 ] } ], "match_veto_picks_aggregate": [ - 1641, + 1645, { "distinct_on": [ - 1658, + 1662, "[match_map_veto_picks_select_column!]" ], "limit": [ @@ -15689,30 +15781,30 @@ export default { 38 ], "order_by": [ - 1656, + 1660, "[match_map_veto_picks_order_by!]" ], "where": [ - 1647 + 1651 ] } ], "value": [ - 70 + 74 ], "__typename": [ - 70 + 74 ] }, "e_veto_pick_types_aggregate": { "aggregate": [ - 1046 + 1050 ], "nodes": [ - 1044 + 1048 ], "__typename": [ - 70 + 74 ] }, "e_veto_pick_types_aggregate_fields": { @@ -15720,7 +15812,7 @@ export default { 38, { "columns": [ - 1058, + 1062, "[e_veto_pick_types_select_column!]" ], "distinct": [ @@ -15729,97 +15821,97 @@ export default { } ], "max": [ - 1052 + 1056 ], "min": [ - 1053 + 1057 ], "__typename": [ - 70 + 74 ] }, "e_veto_pick_types_bool_exp": { "_and": [ - 1047 + 1051 ], "_not": [ - 1047 + 1051 ], "_or": [ - 1047 + 1051 ], "description": [ - 72 + 76 ], "match_veto_picks": [ - 1647 + 1651 ], "match_veto_picks_aggregate": [ - 1642 + 1646 ], "value": [ - 72 + 76 ], "__typename": [ - 70 + 74 ] }, "e_veto_pick_types_constraint": {}, "e_veto_pick_types_enum": {}, "e_veto_pick_types_enum_comparison_exp": { "_eq": [ - 1049 + 1053 ], "_in": [ - 1049 + 1053 ], "_is_null": [ 3 ], "_neq": [ - 1049 + 1053 ], "_nin": [ - 1049 + 1053 ], "__typename": [ - 70 + 74 ] }, "e_veto_pick_types_insert_input": { "description": [ - 70 + 74 ], "match_veto_picks": [ - 1646 + 1650 ], "value": [ - 70 + 74 ], "__typename": [ - 70 + 74 ] }, "e_veto_pick_types_max_fields": { "description": [ - 70 + 74 ], "value": [ - 70 + 74 ], "__typename": [ - 70 + 74 ] }, "e_veto_pick_types_min_fields": { "description": [ - 70 + 74 ], "value": [ - 70 + 74 ], "__typename": [ - 70 + 74 ] }, "e_veto_pick_types_mutation_response": { @@ -15827,114 +15919,114 @@ export default { 38 ], "returning": [ - 1044 + 1048 ], "__typename": [ - 70 + 74 ] }, "e_veto_pick_types_on_conflict": { "constraint": [ - 1048 + 1052 ], "update_columns": [ - 1062 + 1066 ], "where": [ - 1047 + 1051 ], "__typename": [ - 70 + 74 ] }, "e_veto_pick_types_order_by": { "description": [ - 2011 + 2015 ], "match_veto_picks_aggregate": [ - 1645 + 1649 ], "value": [ - 2011 + 2015 ], "__typename": [ - 70 + 74 ] }, "e_veto_pick_types_pk_columns_input": { "value": [ - 70 + 74 ], "__typename": [ - 70 + 74 ] }, "e_veto_pick_types_select_column": {}, "e_veto_pick_types_set_input": { "description": [ - 70 + 74 ], "value": [ - 70 + 74 ], "__typename": [ - 70 + 74 ] }, "e_veto_pick_types_stream_cursor_input": { "initial_value": [ - 1061 + 1065 ], "ordering": [ - 224 + 228 ], "__typename": [ - 70 + 74 ] }, "e_veto_pick_types_stream_cursor_value_input": { "description": [ - 70 + 74 ], "value": [ - 70 + 74 ], "__typename": [ - 70 + 74 ] }, "e_veto_pick_types_update_column": {}, "e_veto_pick_types_updates": { "_set": [ - 1059 + 1063 ], "where": [ - 1047 + 1051 ], "__typename": [ - 70 + 74 ] }, "e_winning_reasons": { "description": [ - 70 + 74 ], "value": [ - 70 + 74 ], "__typename": [ - 70 + 74 ] }, "e_winning_reasons_aggregate": { "aggregate": [ - 1066 + 1070 ], "nodes": [ - 1064 + 1068 ], "__typename": [ - 70 + 74 ] }, "e_winning_reasons_aggregate_fields": { @@ -15942,7 +16034,7 @@ export default { 38, { "columns": [ - 1078, + 1082, "[e_winning_reasons_select_column!]" ], "distinct": [ @@ -15951,88 +16043,88 @@ export default { } ], "max": [ - 1072 + 1076 ], "min": [ - 1073 + 1077 ], "__typename": [ - 70 + 74 ] }, "e_winning_reasons_bool_exp": { "_and": [ - 1067 + 1071 ], "_not": [ - 1067 + 1071 ], "_or": [ - 1067 + 1071 ], "description": [ - 72 + 76 ], "value": [ - 72 + 76 ], "__typename": [ - 70 + 74 ] }, "e_winning_reasons_constraint": {}, "e_winning_reasons_enum": {}, "e_winning_reasons_enum_comparison_exp": { "_eq": [ - 1069 + 1073 ], "_in": [ - 1069 + 1073 ], "_is_null": [ 3 ], "_neq": [ - 1069 + 1073 ], "_nin": [ - 1069 + 1073 ], "__typename": [ - 70 + 74 ] }, "e_winning_reasons_insert_input": { "description": [ - 70 + 74 ], "value": [ - 70 + 74 ], "__typename": [ - 70 + 74 ] }, "e_winning_reasons_max_fields": { "description": [ - 70 + 74 ], "value": [ - 70 + 74 ], "__typename": [ - 70 + 74 ] }, "e_winning_reasons_min_fields": { "description": [ - 70 + 74 ], "value": [ - 70 + 74 ], "__typename": [ - 70 + 74 ] }, "e_winning_reasons_mutation_response": { @@ -16040,161 +16132,161 @@ export default { 38 ], "returning": [ - 1064 + 1068 ], "__typename": [ - 70 + 74 ] }, "e_winning_reasons_on_conflict": { "constraint": [ - 1068 + 1072 ], "update_columns": [ - 1082 + 1086 ], "where": [ - 1067 + 1071 ], "__typename": [ - 70 + 74 ] }, "e_winning_reasons_order_by": { "description": [ - 2011 + 2015 ], "value": [ - 2011 + 2015 ], "__typename": [ - 70 + 74 ] }, "e_winning_reasons_pk_columns_input": { "value": [ - 70 + 74 ], "__typename": [ - 70 + 74 ] }, "e_winning_reasons_select_column": {}, "e_winning_reasons_set_input": { "description": [ - 70 + 74 ], "value": [ - 70 + 74 ], "__typename": [ - 70 + 74 ] }, "e_winning_reasons_stream_cursor_input": { "initial_value": [ - 1081 + 1085 ], "ordering": [ - 224 + 228 ], "__typename": [ - 70 + 74 ] }, "e_winning_reasons_stream_cursor_value_input": { "description": [ - 70 + 74 ], "value": [ - 70 + 74 ], "__typename": [ - 70 + 74 ] }, "e_winning_reasons_update_column": {}, "e_winning_reasons_updates": { "_set": [ - 1079 + 1083 ], "where": [ - 1067 + 1071 ], "__typename": [ - 70 + 74 ] }, "float8": {}, "float8_comparison_exp": { "_eq": [ - 1084 + 1088 ], "_gt": [ - 1084 + 1088 ], "_gte": [ - 1084 + 1088 ], "_in": [ - 1084 + 1088 ], "_is_null": [ 3 ], "_lt": [ - 1084 + 1088 ], "_lte": [ - 1084 + 1088 ], "_neq": [ - 1084 + 1088 ], "_nin": [ - 1084 + 1088 ], "__typename": [ - 70 + 74 ] }, "friends": { "e_status": [ - 513 + 517 ], "other_player_steam_id": [ - 169 + 173 ], "player_steam_id": [ - 169 + 173 ], "status": [ - 518 + 522 ], "__typename": [ - 70 + 74 ] }, "friends_aggregate": { "aggregate": [ - 1088 + 1092 ], "nodes": [ - 1086 + 1090 ], "__typename": [ - 70 + 74 ] }, "friends_aggregate_fields": { "avg": [ - 1089 + 1093 ], "count": [ 38, { "columns": [ - 1100, + 1104, "[friends_select_column!]" ], "distinct": [ @@ -16203,34 +16295,34 @@ export default { } ], "max": [ - 1094 + 1098 ], "min": [ - 1095 + 1099 ], "stddev": [ - 1102 + 1106 ], "stddev_pop": [ - 1103 + 1107 ], "stddev_samp": [ - 1104 + 1108 ], "sum": [ - 1107 + 1111 ], "var_pop": [ - 1110 + 1114 ], "var_samp": [ - 1111 + 1115 ], "variance": [ - 1112 + 1116 ], "__typename": [ - 70 + 74 ] }, "friends_avg_fields": { @@ -16241,84 +16333,84 @@ export default { 29 ], "__typename": [ - 70 + 74 ] }, "friends_bool_exp": { "_and": [ - 1090 + 1094 ], "_not": [ - 1090 + 1094 ], "_or": [ - 1090 + 1094 ], "e_status": [ - 516 + 520 ], "other_player_steam_id": [ - 171 + 175 ], "player_steam_id": [ - 171 + 175 ], "status": [ - 519 + 523 ], "__typename": [ - 70 + 74 ] }, "friends_constraint": {}, "friends_inc_input": { "other_player_steam_id": [ - 169 + 173 ], "player_steam_id": [ - 169 + 173 ], "__typename": [ - 70 + 74 ] }, "friends_insert_input": { "e_status": [ - 524 + 528 ], "other_player_steam_id": [ - 169 + 173 ], "player_steam_id": [ - 169 + 173 ], "status": [ - 518 + 522 ], "__typename": [ - 70 + 74 ] }, "friends_max_fields": { "other_player_steam_id": [ - 169 + 173 ], "player_steam_id": [ - 169 + 173 ], "__typename": [ - 70 + 74 ] }, "friends_min_fields": { "other_player_steam_id": [ - 169 + 173 ], "player_steam_id": [ - 169 + 173 ], "__typename": [ - 70 + 74 ] }, "friends_mutation_response": { @@ -16326,67 +16418,67 @@ export default { 38 ], "returning": [ - 1086 + 1090 ], "__typename": [ - 70 + 74 ] }, "friends_on_conflict": { "constraint": [ - 1091 + 1095 ], "update_columns": [ - 1108 + 1112 ], "where": [ - 1090 + 1094 ], "__typename": [ - 70 + 74 ] }, "friends_order_by": { "e_status": [ - 526 + 530 ], "other_player_steam_id": [ - 2011 + 2015 ], "player_steam_id": [ - 2011 + 2015 ], "status": [ - 2011 + 2015 ], "__typename": [ - 70 + 74 ] }, "friends_pk_columns_input": { "other_player_steam_id": [ - 169 + 173 ], "player_steam_id": [ - 169 + 173 ], "__typename": [ - 70 + 74 ] }, "friends_select_column": {}, "friends_set_input": { "other_player_steam_id": [ - 169 + 173 ], "player_steam_id": [ - 169 + 173 ], "status": [ - 518 + 522 ], "__typename": [ - 70 + 74 ] }, "friends_stddev_fields": { @@ -16397,7 +16489,7 @@ export default { 29 ], "__typename": [ - 70 + 74 ] }, "friends_stddev_pop_fields": { @@ -16408,7 +16500,7 @@ export default { 29 ], "__typename": [ - 70 + 74 ] }, "friends_stddev_samp_fields": { @@ -16419,58 +16511,58 @@ export default { 29 ], "__typename": [ - 70 + 74 ] }, "friends_stream_cursor_input": { "initial_value": [ - 1106 + 1110 ], "ordering": [ - 224 + 228 ], "__typename": [ - 70 + 74 ] }, "friends_stream_cursor_value_input": { "other_player_steam_id": [ - 169 + 173 ], "player_steam_id": [ - 169 + 173 ], "status": [ - 518 + 522 ], "__typename": [ - 70 + 74 ] }, "friends_sum_fields": { "other_player_steam_id": [ - 169 + 173 ], "player_steam_id": [ - 169 + 173 ], "__typename": [ - 70 + 74 ] }, "friends_update_column": {}, "friends_updates": { "_inc": [ - 1092 + 1096 ], "_set": [ - 1101 + 1105 ], "where": [ - 1090 + 1094 ], "__typename": [ - 70 + 74 ] }, "friends_var_pop_fields": { @@ -16481,7 +16573,7 @@ export default { 29 ], "__typename": [ - 70 + 74 ] }, "friends_var_samp_fields": { @@ -16492,7 +16584,7 @@ export default { 29 ], "__typename": [ - 70 + 74 ] }, "friends_variance_fields": { @@ -16503,7 +16595,7 @@ export default { 29 ], "__typename": [ - 70 + 74 ] }, "game_server_nodes": { @@ -16517,18 +16609,18 @@ export default { 38 ], "cpu_frequency_info": [ - 1235, + 1239, { "path": [ - 70 + 74 ] } ], "cpu_governor_info": [ - 1235, + 1239, { "path": [ - 70 + 74 ] } ], @@ -16539,18 +16631,18 @@ export default { 38 ], "cs2_launch_options": [ - 1235, + 1239, { "path": [ - 70 + 74 ] } ], "cs2_video_settings": [ - 1235, + 1239, { "path": [ - 70 + 74 ] } ], @@ -16567,10 +16659,10 @@ export default { 38 ], "e_region": [ - 2934 + 2970 ], "e_status": [ - 554 + 558 ], "enabled": [ 3 @@ -16588,10 +16680,10 @@ export default { 3 ], "gpu_info": [ - 1235, + 1239, { "path": [ - 70 + 74 ] } ], @@ -16602,43 +16694,43 @@ export default { 3 ], "id": [ - 70 + 74 ], "label": [ - 70 + 74 ], "lan_ip": [ - 1231 + 1235 ], "node_ip": [ - 1231 + 1235 ], "offline_at": [ - 3421 + 3466 ], "pin_build_id": [ 38 ], "pin_plugin_version": [ - 70 + 74 ], "pinned_version": [ - 1164 + 1168 ], "plugin_supported": [ 3 ], "public_ip": [ - 1231 + 1235 ], "region": [ - 70 + 74 ], "servers": [ - 2961, + 2997, { "distinct_on": [ - 2985, + 3021, "[servers_select_column!]" ], "limit": [ @@ -16648,19 +16740,19 @@ export default { 38 ], "order_by": [ - 2983, + 3019, "[servers_order_by!]" ], "where": [ - 2972 + 3008 ] } ], "servers_aggregate": [ - 2962, + 2998, { "distinct_on": [ - 2985, + 3021, "[servers_select_column!]" ], "limit": [ @@ -16670,28 +16762,28 @@ export default { 38 ], "order_by": [ - 2983, + 3019, "[servers_order_by!]" ], "where": [ - 2972 + 3008 ] } ], "shader_bake_progress": [ - 2009 + 2013 ], "shader_bake_progress_stage": [ - 70 + 74 ], "shader_bake_status": [ - 70 + 74 ], "shader_bake_status_history": [ - 1235, + 1239, { "path": [ - 70 + 74 ] } ], @@ -16699,7 +16791,7 @@ export default { 38 ], "status": [ - 559 + 563 ], "supports_cpu_pinning": [ 3 @@ -16708,106 +16800,106 @@ export default { 3 ], "token": [ - 70 + 74 ], "total_server_count": [ 38 ], "update_status": [ - 70 + 74 ], "version": [ - 1164 + 1168 ], "__typename": [ - 70 + 74 ] }, "game_server_nodes_aggregate": { "aggregate": [ - 1119 + 1123 ], "nodes": [ - 1113 + 1117 ], "__typename": [ - 70 + 74 ] }, "game_server_nodes_aggregate_bool_exp": { "bool_and": [ - 1116 + 1120 ], "bool_or": [ - 1117 + 1121 ], "count": [ - 1118 + 1122 ], "__typename": [ - 70 + 74 ] }, "game_server_nodes_aggregate_bool_exp_bool_and": { "arguments": [ - 1143 + 1147 ], "distinct": [ 3 ], "filter": [ - 1125 + 1129 ], "predicate": [ 4 ], "__typename": [ - 70 + 74 ] }, "game_server_nodes_aggregate_bool_exp_bool_or": { "arguments": [ - 1144 + 1148 ], "distinct": [ 3 ], "filter": [ - 1125 + 1129 ], "predicate": [ 4 ], "__typename": [ - 70 + 74 ] }, "game_server_nodes_aggregate_bool_exp_count": { "arguments": [ - 1142 + 1146 ], "distinct": [ 3 ], "filter": [ - 1125 + 1129 ], "predicate": [ 39 ], "__typename": [ - 70 + 74 ] }, "game_server_nodes_aggregate_fields": { "avg": [ - 1123 + 1127 ], "count": [ 38, { "columns": [ - 1142, + 1146, "[game_server_nodes_select_column!]" ], "distinct": [ @@ -16816,106 +16908,106 @@ export default { } ], "max": [ - 1132 + 1136 ], "min": [ - 1134 + 1138 ], "stddev": [ - 1146 + 1150 ], "stddev_pop": [ - 1148 + 1152 ], "stddev_samp": [ - 1150 + 1154 ], "sum": [ - 1154 + 1158 ], "var_pop": [ - 1158 + 1162 ], "var_samp": [ - 1160 + 1164 ], "variance": [ - 1162 + 1166 ], "__typename": [ - 70 + 74 ] }, "game_server_nodes_aggregate_order_by": { "avg": [ - 1124 + 1128 ], "count": [ - 2011 + 2015 ], "max": [ - 1133 + 1137 ], "min": [ - 1135 + 1139 ], "stddev": [ - 1147 + 1151 ], "stddev_pop": [ - 1149 + 1153 ], "stddev_samp": [ - 1151 + 1155 ], "sum": [ - 1155 + 1159 ], "var_pop": [ - 1159 + 1163 ], "var_samp": [ - 1161 + 1165 ], "variance": [ - 1163 + 1167 ], "__typename": [ - 70 + 74 ] }, "game_server_nodes_append_input": { "cpu_frequency_info": [ - 1235 + 1239 ], "cpu_governor_info": [ - 1235 + 1239 ], "cs2_launch_options": [ - 1235 + 1239 ], "cs2_video_settings": [ - 1235 + 1239 ], "gpu_info": [ - 1235 + 1239 ], "shader_bake_status_history": [ - 1235 + 1239 ], "__typename": [ - 70 + 74 ] }, "game_server_nodes_arr_rel_insert_input": { "data": [ - 1131 + 1135 ], "on_conflict": [ - 1138 + 1142 ], "__typename": [ - 70 + 74 ] }, "game_server_nodes_avg_fields": { @@ -16962,59 +17054,59 @@ export default { 38 ], "__typename": [ - 70 + 74 ] }, "game_server_nodes_avg_order_by": { "build_id": [ - 2011 + 2015 ], "cpu_cores_per_socket": [ - 2011 + 2015 ], "cpu_sockets": [ - 2011 + 2015 ], "cpu_threads_per_core": [ - 2011 + 2015 ], "csgo_build_id": [ - 2011 + 2015 ], "demo_network_limiter": [ - 2011 + 2015 ], "disk_available_gb": [ - 2011 + 2015 ], "disk_used_percent": [ - 2011 + 2015 ], "end_port_range": [ - 2011 + 2015 ], "pin_build_id": [ - 2011 + 2015 ], "shader_bake_progress": [ - 2011 + 2015 ], "start_port_range": [ - 2011 + 2015 ], "__typename": [ - 70 + 74 ] }, "game_server_nodes_bool_exp": { "_and": [ - 1125 + 1129 ], "_not": [ - 1125 + 1129 ], "_or": [ - 1125 + 1129 ], "available_server_count": [ 39 @@ -17026,10 +17118,10 @@ export default { 39 ], "cpu_frequency_info": [ - 1237 + 1241 ], "cpu_governor_info": [ - 1237 + 1241 ], "cpu_sockets": [ 39 @@ -17038,10 +17130,10 @@ export default { 39 ], "cs2_launch_options": [ - 1237 + 1241 ], "cs2_video_settings": [ - 1237 + 1241 ], "csgo_build_id": [ 39 @@ -17056,10 +17148,10 @@ export default { 39 ], "e_region": [ - 2938 + 2974 ], "e_status": [ - 557 + 561 ], "enabled": [ 4 @@ -17077,7 +17169,7 @@ export default { 4 ], "gpu_info": [ - 1237 + 1241 ], "gpu_rendering_enabled": [ 4 @@ -17086,61 +17178,61 @@ export default { 4 ], "id": [ - 72 + 76 ], "label": [ - 72 + 76 ], "lan_ip": [ - 1232 + 1236 ], "node_ip": [ - 1232 + 1236 ], "offline_at": [ - 3422 + 3467 ], "pin_build_id": [ 39 ], "pin_plugin_version": [ - 72 + 76 ], "pinned_version": [ - 1169 + 1173 ], "plugin_supported": [ 4 ], "public_ip": [ - 1232 + 1236 ], "region": [ - 72 + 76 ], "servers": [ - 2972 + 3008 ], "servers_aggregate": [ - 2963 + 2999 ], "shader_bake_progress": [ - 2010 + 2014 ], "shader_bake_progress_stage": [ - 72 + 76 ], "shader_bake_status": [ - 72 + 76 ], "shader_bake_status_history": [ - 1237 + 1241 ], "start_port_range": [ 39 ], "status": [ - 560 + 564 ], "supports_cpu_pinning": [ 4 @@ -17149,43 +17241,43 @@ export default { 4 ], "token": [ - 72 + 76 ], "total_server_count": [ 39 ], "update_status": [ - 72 + 76 ], "version": [ - 1169 + 1173 ], "__typename": [ - 70 + 74 ] }, "game_server_nodes_constraint": {}, "game_server_nodes_delete_at_path_input": { "cpu_frequency_info": [ - 70 + 74 ], "cpu_governor_info": [ - 70 + 74 ], "cs2_launch_options": [ - 70 + 74 ], "cs2_video_settings": [ - 70 + 74 ], "gpu_info": [ - 70 + 74 ], "shader_bake_status_history": [ - 70 + 74 ], "__typename": [ - 70 + 74 ] }, "game_server_nodes_delete_elem_input": { @@ -17208,30 +17300,30 @@ export default { 38 ], "__typename": [ - 70 + 74 ] }, "game_server_nodes_delete_key_input": { "cpu_frequency_info": [ - 70 + 74 ], "cpu_governor_info": [ - 70 + 74 ], "cs2_launch_options": [ - 70 + 74 ], "cs2_video_settings": [ - 70 + 74 ], "gpu_info": [ - 70 + 74 ], "shader_bake_status_history": [ - 70 + 74 ], "__typename": [ - 70 + 74 ] }, "game_server_nodes_inc_input": { @@ -17266,13 +17358,13 @@ export default { 38 ], "shader_bake_progress": [ - 2009 + 2013 ], "start_port_range": [ 38 ], "__typename": [ - 70 + 74 ] }, "game_server_nodes_insert_input": { @@ -17283,10 +17375,10 @@ export default { 38 ], "cpu_frequency_info": [ - 1235 + 1239 ], "cpu_governor_info": [ - 1235 + 1239 ], "cpu_sockets": [ 38 @@ -17295,10 +17387,10 @@ export default { 38 ], "cs2_launch_options": [ - 1235 + 1239 ], "cs2_video_settings": [ - 1235 + 1239 ], "csgo_build_id": [ 38 @@ -17313,10 +17405,10 @@ export default { 38 ], "e_region": [ - 2944 + 2980 ], "e_status": [ - 565 + 569 ], "enabled": [ 3 @@ -17334,7 +17426,7 @@ export default { 3 ], "gpu_info": [ - 1235 + 1239 ], "gpu_rendering_enabled": [ 3 @@ -17343,55 +17435,55 @@ export default { 3 ], "id": [ - 70 + 74 ], "label": [ - 70 + 74 ], "lan_ip": [ - 1231 + 1235 ], "node_ip": [ - 1231 + 1235 ], "offline_at": [ - 3421 + 3466 ], "pin_build_id": [ 38 ], "pin_plugin_version": [ - 70 + 74 ], "pinned_version": [ - 1179 + 1183 ], "public_ip": [ - 1231 + 1235 ], "region": [ - 70 + 74 ], "servers": [ - 2969 + 3005 ], "shader_bake_progress": [ - 2009 + 2013 ], "shader_bake_progress_stage": [ - 70 + 74 ], "shader_bake_status": [ - 70 + 74 ], "shader_bake_status_history": [ - 1235 + 1239 ], "start_port_range": [ 38 ], "status": [ - 559 + 563 ], "supports_cpu_pinning": [ 3 @@ -17400,16 +17492,16 @@ export default { 3 ], "token": [ - 70 + 74 ], "update_status": [ - 70 + 74 ], "version": [ - 1179 + 1183 ], "__typename": [ - 70 + 74 ] }, "game_server_nodes_max_fields": { @@ -17444,114 +17536,114 @@ export default { 38 ], "id": [ - 70 + 74 ], "label": [ - 70 + 74 ], "offline_at": [ - 3421 + 3466 ], "pin_build_id": [ 38 ], "pin_plugin_version": [ - 70 + 74 ], "region": [ - 70 + 74 ], "shader_bake_progress": [ - 2009 + 2013 ], "shader_bake_progress_stage": [ - 70 + 74 ], "shader_bake_status": [ - 70 + 74 ], "start_port_range": [ 38 ], "token": [ - 70 + 74 ], "total_server_count": [ 38 ], "update_status": [ - 70 + 74 ], "__typename": [ - 70 + 74 ] }, "game_server_nodes_max_order_by": { "build_id": [ - 2011 + 2015 ], "cpu_cores_per_socket": [ - 2011 + 2015 ], "cpu_sockets": [ - 2011 + 2015 ], "cpu_threads_per_core": [ - 2011 + 2015 ], "csgo_build_id": [ - 2011 + 2015 ], "demo_network_limiter": [ - 2011 + 2015 ], "disk_available_gb": [ - 2011 + 2015 ], "disk_used_percent": [ - 2011 + 2015 ], "end_port_range": [ - 2011 + 2015 ], "id": [ - 2011 + 2015 ], "label": [ - 2011 + 2015 ], "offline_at": [ - 2011 + 2015 ], "pin_build_id": [ - 2011 + 2015 ], "pin_plugin_version": [ - 2011 + 2015 ], "region": [ - 2011 + 2015 ], "shader_bake_progress": [ - 2011 + 2015 ], "shader_bake_progress_stage": [ - 2011 + 2015 ], "shader_bake_status": [ - 2011 + 2015 ], "start_port_range": [ - 2011 + 2015 ], "token": [ - 2011 + 2015 ], "update_status": [ - 2011 + 2015 ], "__typename": [ - 70 + 74 ] }, "game_server_nodes_min_fields": { @@ -17586,114 +17678,114 @@ export default { 38 ], "id": [ - 70 + 74 ], "label": [ - 70 + 74 ], "offline_at": [ - 3421 + 3466 ], "pin_build_id": [ 38 ], "pin_plugin_version": [ - 70 + 74 ], "region": [ - 70 + 74 ], "shader_bake_progress": [ - 2009 + 2013 ], "shader_bake_progress_stage": [ - 70 + 74 ], "shader_bake_status": [ - 70 + 74 ], "start_port_range": [ 38 ], "token": [ - 70 + 74 ], "total_server_count": [ 38 ], "update_status": [ - 70 + 74 ], "__typename": [ - 70 + 74 ] }, "game_server_nodes_min_order_by": { "build_id": [ - 2011 + 2015 ], "cpu_cores_per_socket": [ - 2011 + 2015 ], "cpu_sockets": [ - 2011 + 2015 ], "cpu_threads_per_core": [ - 2011 + 2015 ], "csgo_build_id": [ - 2011 + 2015 ], "demo_network_limiter": [ - 2011 + 2015 ], "disk_available_gb": [ - 2011 + 2015 ], "disk_used_percent": [ - 2011 + 2015 ], "end_port_range": [ - 2011 + 2015 ], "id": [ - 2011 + 2015 ], "label": [ - 2011 + 2015 ], "offline_at": [ - 2011 + 2015 ], "pin_build_id": [ - 2011 + 2015 ], "pin_plugin_version": [ - 2011 + 2015 ], "region": [ - 2011 + 2015 ], "shader_bake_progress": [ - 2011 + 2015 ], "shader_bake_progress_stage": [ - 2011 + 2015 ], "shader_bake_status": [ - 2011 + 2015 ], "start_port_range": [ - 2011 + 2015 ], "token": [ - 2011 + 2015 ], "update_status": [ - 2011 + 2015 ], "__typename": [ - 70 + 74 ] }, "game_server_nodes_mutation_response": { @@ -17701,212 +17793,212 @@ export default { 38 ], "returning": [ - 1113 + 1117 ], "__typename": [ - 70 + 74 ] }, "game_server_nodes_obj_rel_insert_input": { "data": [ - 1131 + 1135 ], "on_conflict": [ - 1138 + 1142 ], "__typename": [ - 70 + 74 ] }, "game_server_nodes_on_conflict": { "constraint": [ - 1126 + 1130 ], "update_columns": [ - 1156 + 1160 ], "where": [ - 1125 + 1129 ], "__typename": [ - 70 + 74 ] }, "game_server_nodes_order_by": { "available_server_count": [ - 2011 + 2015 ], "build_id": [ - 2011 + 2015 ], "cpu_cores_per_socket": [ - 2011 + 2015 ], "cpu_frequency_info": [ - 2011 + 2015 ], "cpu_governor_info": [ - 2011 + 2015 ], "cpu_sockets": [ - 2011 + 2015 ], "cpu_threads_per_core": [ - 2011 + 2015 ], "cs2_launch_options": [ - 2011 + 2015 ], "cs2_video_settings": [ - 2011 + 2015 ], "csgo_build_id": [ - 2011 + 2015 ], "demo_network_limiter": [ - 2011 + 2015 ], "disk_available_gb": [ - 2011 + 2015 ], "disk_used_percent": [ - 2011 + 2015 ], "e_region": [ - 2946 + 2982 ], "e_status": [ - 567 + 571 ], "enabled": [ - 2011 + 2015 ], "enabled_for_match_making": [ - 2011 + 2015 ], "end_port_range": [ - 2011 + 2015 ], "gpu": [ - 2011 + 2015 ], "gpu_demos_enabled": [ - 2011 + 2015 ], "gpu_info": [ - 2011 + 2015 ], "gpu_rendering_enabled": [ - 2011 + 2015 ], "gpu_streaming_enabled": [ - 2011 + 2015 ], "id": [ - 2011 + 2015 ], "label": [ - 2011 + 2015 ], "lan_ip": [ - 2011 + 2015 ], "node_ip": [ - 2011 + 2015 ], "offline_at": [ - 2011 + 2015 ], "pin_build_id": [ - 2011 + 2015 ], "pin_plugin_version": [ - 2011 + 2015 ], "pinned_version": [ - 1181 + 1185 ], "plugin_supported": [ - 2011 + 2015 ], "public_ip": [ - 2011 + 2015 ], "region": [ - 2011 + 2015 ], "servers_aggregate": [ - 2968 + 3004 ], "shader_bake_progress": [ - 2011 + 2015 ], "shader_bake_progress_stage": [ - 2011 + 2015 ], "shader_bake_status": [ - 2011 + 2015 ], "shader_bake_status_history": [ - 2011 + 2015 ], "start_port_range": [ - 2011 + 2015 ], "status": [ - 2011 + 2015 ], "supports_cpu_pinning": [ - 2011 + 2015 ], "supports_low_latency": [ - 2011 + 2015 ], "token": [ - 2011 + 2015 ], "total_server_count": [ - 2011 + 2015 ], "update_status": [ - 2011 + 2015 ], "version": [ - 1181 + 1185 ], "__typename": [ - 70 + 74 ] }, "game_server_nodes_pk_columns_input": { "id": [ - 70 + 74 ], "__typename": [ - 70 + 74 ] }, "game_server_nodes_prepend_input": { "cpu_frequency_info": [ - 1235 + 1239 ], "cpu_governor_info": [ - 1235 + 1239 ], "cs2_launch_options": [ - 1235 + 1239 ], "cs2_video_settings": [ - 1235 + 1239 ], "gpu_info": [ - 1235 + 1239 ], "shader_bake_status_history": [ - 1235 + 1239 ], "__typename": [ - 70 + 74 ] }, "game_server_nodes_select_column": {}, @@ -17920,10 +18012,10 @@ export default { 38 ], "cpu_frequency_info": [ - 1235 + 1239 ], "cpu_governor_info": [ - 1235 + 1239 ], "cpu_sockets": [ 38 @@ -17932,10 +18024,10 @@ export default { 38 ], "cs2_launch_options": [ - 1235 + 1239 ], "cs2_video_settings": [ - 1235 + 1239 ], "csgo_build_id": [ 38 @@ -17965,7 +18057,7 @@ export default { 3 ], "gpu_info": [ - 1235 + 1239 ], "gpu_rendering_enabled": [ 3 @@ -17974,49 +18066,49 @@ export default { 3 ], "id": [ - 70 + 74 ], "label": [ - 70 + 74 ], "lan_ip": [ - 1231 + 1235 ], "node_ip": [ - 1231 + 1235 ], "offline_at": [ - 3421 + 3466 ], "pin_build_id": [ 38 ], "pin_plugin_version": [ - 70 + 74 ], "public_ip": [ - 1231 + 1235 ], "region": [ - 70 + 74 ], "shader_bake_progress": [ - 2009 + 2013 ], "shader_bake_progress_stage": [ - 70 + 74 ], "shader_bake_status": [ - 70 + 74 ], "shader_bake_status_history": [ - 1235 + 1239 ], "start_port_range": [ 38 ], "status": [ - 559 + 563 ], "supports_cpu_pinning": [ 3 @@ -18025,13 +18117,13 @@ export default { 3 ], "token": [ - 70 + 74 ], "update_status": [ - 70 + 74 ], "__typename": [ - 70 + 74 ] }, "game_server_nodes_stddev_fields": { @@ -18078,48 +18170,48 @@ export default { 38 ], "__typename": [ - 70 + 74 ] }, "game_server_nodes_stddev_order_by": { "build_id": [ - 2011 + 2015 ], "cpu_cores_per_socket": [ - 2011 + 2015 ], "cpu_sockets": [ - 2011 + 2015 ], "cpu_threads_per_core": [ - 2011 + 2015 ], "csgo_build_id": [ - 2011 + 2015 ], "demo_network_limiter": [ - 2011 + 2015 ], "disk_available_gb": [ - 2011 + 2015 ], "disk_used_percent": [ - 2011 + 2015 ], "end_port_range": [ - 2011 + 2015 ], "pin_build_id": [ - 2011 + 2015 ], "shader_bake_progress": [ - 2011 + 2015 ], "start_port_range": [ - 2011 + 2015 ], "__typename": [ - 70 + 74 ] }, "game_server_nodes_stddev_pop_fields": { @@ -18166,48 +18258,48 @@ export default { 38 ], "__typename": [ - 70 + 74 ] }, "game_server_nodes_stddev_pop_order_by": { "build_id": [ - 2011 + 2015 ], "cpu_cores_per_socket": [ - 2011 + 2015 ], "cpu_sockets": [ - 2011 + 2015 ], "cpu_threads_per_core": [ - 2011 + 2015 ], "csgo_build_id": [ - 2011 + 2015 ], "demo_network_limiter": [ - 2011 + 2015 ], "disk_available_gb": [ - 2011 + 2015 ], "disk_used_percent": [ - 2011 + 2015 ], "end_port_range": [ - 2011 + 2015 ], "pin_build_id": [ - 2011 + 2015 ], "shader_bake_progress": [ - 2011 + 2015 ], "start_port_range": [ - 2011 + 2015 ], "__typename": [ - 70 + 74 ] }, "game_server_nodes_stddev_samp_fields": { @@ -18254,59 +18346,59 @@ export default { 38 ], "__typename": [ - 70 + 74 ] }, "game_server_nodes_stddev_samp_order_by": { "build_id": [ - 2011 + 2015 ], "cpu_cores_per_socket": [ - 2011 + 2015 ], "cpu_sockets": [ - 2011 + 2015 ], "cpu_threads_per_core": [ - 2011 + 2015 ], "csgo_build_id": [ - 2011 + 2015 ], "demo_network_limiter": [ - 2011 + 2015 ], "disk_available_gb": [ - 2011 + 2015 ], "disk_used_percent": [ - 2011 + 2015 ], "end_port_range": [ - 2011 + 2015 ], "pin_build_id": [ - 2011 + 2015 ], "shader_bake_progress": [ - 2011 + 2015 ], "start_port_range": [ - 2011 + 2015 ], "__typename": [ - 70 + 74 ] }, "game_server_nodes_stream_cursor_input": { "initial_value": [ - 1153 + 1157 ], "ordering": [ - 224 + 228 ], "__typename": [ - 70 + 74 ] }, "game_server_nodes_stream_cursor_value_input": { @@ -18317,10 +18409,10 @@ export default { 38 ], "cpu_frequency_info": [ - 1235 + 1239 ], "cpu_governor_info": [ - 1235 + 1239 ], "cpu_sockets": [ 38 @@ -18329,10 +18421,10 @@ export default { 38 ], "cs2_launch_options": [ - 1235 + 1239 ], "cs2_video_settings": [ - 1235 + 1239 ], "csgo_build_id": [ 38 @@ -18362,7 +18454,7 @@ export default { 3 ], "gpu_info": [ - 1235 + 1239 ], "gpu_rendering_enabled": [ 3 @@ -18371,49 +18463,49 @@ export default { 3 ], "id": [ - 70 + 74 ], "label": [ - 70 + 74 ], "lan_ip": [ - 1231 + 1235 ], "node_ip": [ - 1231 + 1235 ], "offline_at": [ - 3421 + 3466 ], "pin_build_id": [ 38 ], "pin_plugin_version": [ - 70 + 74 ], "public_ip": [ - 1231 + 1235 ], "region": [ - 70 + 74 ], "shader_bake_progress": [ - 2009 + 2013 ], "shader_bake_progress_stage": [ - 70 + 74 ], "shader_bake_status": [ - 70 + 74 ], "shader_bake_status_history": [ - 1235 + 1239 ], "start_port_range": [ 38 ], "status": [ - 559 + 563 ], "supports_cpu_pinning": [ 3 @@ -18422,13 +18514,13 @@ export default { 3 ], "token": [ - 70 + 74 ], "update_status": [ - 70 + 74 ], "__typename": [ - 70 + 74 ] }, "game_server_nodes_sum_fields": { @@ -18466,7 +18558,7 @@ export default { 38 ], "shader_bake_progress": [ - 2009 + 2013 ], "start_port_range": [ 38 @@ -18475,78 +18567,78 @@ export default { 38 ], "__typename": [ - 70 + 74 ] }, "game_server_nodes_sum_order_by": { "build_id": [ - 2011 + 2015 ], "cpu_cores_per_socket": [ - 2011 + 2015 ], "cpu_sockets": [ - 2011 + 2015 ], "cpu_threads_per_core": [ - 2011 + 2015 ], "csgo_build_id": [ - 2011 + 2015 ], "demo_network_limiter": [ - 2011 + 2015 ], "disk_available_gb": [ - 2011 + 2015 ], "disk_used_percent": [ - 2011 + 2015 ], "end_port_range": [ - 2011 + 2015 ], "pin_build_id": [ - 2011 + 2015 ], "shader_bake_progress": [ - 2011 + 2015 ], "start_port_range": [ - 2011 + 2015 ], "__typename": [ - 70 + 74 ] }, "game_server_nodes_update_column": {}, "game_server_nodes_updates": { "_append": [ - 1121 + 1125 ], "_delete_at_path": [ - 1127 + 1131 ], "_delete_elem": [ - 1128 + 1132 ], "_delete_key": [ - 1129 + 1133 ], "_inc": [ - 1130 + 1134 ], "_prepend": [ - 1141 + 1145 ], "_set": [ - 1145 + 1149 ], "where": [ - 1125 + 1129 ], "__typename": [ - 70 + 74 ] }, "game_server_nodes_var_pop_fields": { @@ -18593,48 +18685,48 @@ export default { 38 ], "__typename": [ - 70 + 74 ] }, "game_server_nodes_var_pop_order_by": { "build_id": [ - 2011 + 2015 ], "cpu_cores_per_socket": [ - 2011 + 2015 ], "cpu_sockets": [ - 2011 + 2015 ], "cpu_threads_per_core": [ - 2011 + 2015 ], "csgo_build_id": [ - 2011 + 2015 ], "demo_network_limiter": [ - 2011 + 2015 ], "disk_available_gb": [ - 2011 + 2015 ], "disk_used_percent": [ - 2011 + 2015 ], "end_port_range": [ - 2011 + 2015 ], "pin_build_id": [ - 2011 + 2015 ], "shader_bake_progress": [ - 2011 + 2015 ], "start_port_range": [ - 2011 + 2015 ], "__typename": [ - 70 + 74 ] }, "game_server_nodes_var_samp_fields": { @@ -18681,48 +18773,48 @@ export default { 38 ], "__typename": [ - 70 + 74 ] }, "game_server_nodes_var_samp_order_by": { "build_id": [ - 2011 + 2015 ], "cpu_cores_per_socket": [ - 2011 + 2015 ], "cpu_sockets": [ - 2011 + 2015 ], "cpu_threads_per_core": [ - 2011 + 2015 ], "csgo_build_id": [ - 2011 + 2015 ], "demo_network_limiter": [ - 2011 + 2015 ], "disk_available_gb": [ - 2011 + 2015 ], "disk_used_percent": [ - 2011 + 2015 ], "end_port_range": [ - 2011 + 2015 ], "pin_build_id": [ - 2011 + 2015 ], "shader_bake_progress": [ - 2011 + 2015 ], "start_port_range": [ - 2011 + 2015 ], "__typename": [ - 70 + 74 ] }, "game_server_nodes_variance_fields": { @@ -18769,48 +18861,48 @@ export default { 38 ], "__typename": [ - 70 + 74 ] }, "game_server_nodes_variance_order_by": { "build_id": [ - 2011 + 2015 ], "cpu_cores_per_socket": [ - 2011 + 2015 ], "cpu_sockets": [ - 2011 + 2015 ], "cpu_threads_per_core": [ - 2011 + 2015 ], "csgo_build_id": [ - 2011 + 2015 ], "demo_network_limiter": [ - 2011 + 2015 ], "disk_available_gb": [ - 2011 + 2015 ], "disk_used_percent": [ - 2011 + 2015 ], "end_port_range": [ - 2011 + 2015 ], "pin_build_id": [ - 2011 + 2015 ], "shader_bake_progress": [ - 2011 + 2015 ], "start_port_range": [ - 2011 + 2015 ], "__typename": [ - 70 + 74 ] }, "game_versions": { @@ -18824,46 +18916,46 @@ export default { 3 ], "description": [ - 70 + 74 ], "downloads": [ - 1235, + 1239, { "path": [ - 70 + 74 ] } ], "updated_at": [ - 3421 + 3466 ], "version": [ - 70 + 74 ], "__typename": [ - 70 + 74 ] }, "game_versions_aggregate": { "aggregate": [ - 1166 + 1170 ], "nodes": [ - 1164 + 1168 ], "__typename": [ - 70 + 74 ] }, "game_versions_aggregate_fields": { "avg": [ - 1168 + 1172 ], "count": [ 38, { "columns": [ - 1184, + 1188, "[game_versions_select_column!]" ], "distinct": [ @@ -18872,42 +18964,42 @@ export default { } ], "max": [ - 1176 + 1180 ], "min": [ - 1177 + 1181 ], "stddev": [ - 1186 + 1190 ], "stddev_pop": [ - 1187 + 1191 ], "stddev_samp": [ - 1188 + 1192 ], "sum": [ - 1191 + 1195 ], "var_pop": [ - 1194 + 1198 ], "var_samp": [ - 1195 + 1199 ], "variance": [ - 1196 + 1200 ], "__typename": [ - 70 + 74 ] }, "game_versions_append_input": { "downloads": [ - 1235 + 1239 ], "__typename": [ - 70 + 74 ] }, "game_versions_avg_fields": { @@ -18915,18 +19007,18 @@ export default { 29 ], "__typename": [ - 70 + 74 ] }, "game_versions_bool_exp": { "_and": [ - 1169 + 1173 ], "_not": [ - 1169 + 1173 ], "_or": [ - 1169 + 1173 ], "build_id": [ 39 @@ -18938,28 +19030,28 @@ export default { 4 ], "description": [ - 72 + 76 ], "downloads": [ - 1237 + 1241 ], "updated_at": [ - 3422 + 3467 ], "version": [ - 72 + 76 ], "__typename": [ - 70 + 74 ] }, "game_versions_constraint": {}, "game_versions_delete_at_path_input": { "downloads": [ - 70 + 74 ], "__typename": [ - 70 + 74 ] }, "game_versions_delete_elem_input": { @@ -18967,15 +19059,15 @@ export default { 38 ], "__typename": [ - 70 + 74 ] }, "game_versions_delete_key_input": { "downloads": [ - 70 + 74 ], "__typename": [ - 70 + 74 ] }, "game_versions_inc_input": { @@ -18983,7 +19075,7 @@ export default { 38 ], "__typename": [ - 70 + 74 ] }, "game_versions_insert_input": { @@ -18997,19 +19089,19 @@ export default { 3 ], "description": [ - 70 + 74 ], "downloads": [ - 1235 + 1239 ], "updated_at": [ - 3421 + 3466 ], "version": [ - 70 + 74 ], "__typename": [ - 70 + 74 ] }, "game_versions_max_fields": { @@ -19017,16 +19109,16 @@ export default { 38 ], "description": [ - 70 + 74 ], "updated_at": [ - 3421 + 3466 ], "version": [ - 70 + 74 ], "__typename": [ - 70 + 74 ] }, "game_versions_min_fields": { @@ -19034,16 +19126,16 @@ export default { 38 ], "description": [ - 70 + 74 ], "updated_at": [ - 3421 + 3466 ], "version": [ - 70 + 74 ], "__typename": [ - 70 + 74 ] }, "game_versions_mutation_response": { @@ -19051,61 +19143,61 @@ export default { 38 ], "returning": [ - 1164 + 1168 ], "__typename": [ - 70 + 74 ] }, "game_versions_obj_rel_insert_input": { "data": [ - 1175 + 1179 ], "on_conflict": [ - 1180 + 1184 ], "__typename": [ - 70 + 74 ] }, "game_versions_on_conflict": { "constraint": [ - 1170 + 1174 ], "update_columns": [ - 1192 + 1196 ], "where": [ - 1169 + 1173 ], "__typename": [ - 70 + 74 ] }, "game_versions_order_by": { "build_id": [ - 2011 + 2015 ], "current": [ - 2011 + 2015 ], "cvars": [ - 2011 + 2015 ], "description": [ - 2011 + 2015 ], "downloads": [ - 2011 + 2015 ], "updated_at": [ - 2011 + 2015 ], "version": [ - 2011 + 2015 ], "__typename": [ - 70 + 74 ] }, "game_versions_pk_columns_input": { @@ -19113,15 +19205,15 @@ export default { 38 ], "__typename": [ - 70 + 74 ] }, "game_versions_prepend_input": { "downloads": [ - 1235 + 1239 ], "__typename": [ - 70 + 74 ] }, "game_versions_select_column": {}, @@ -19136,19 +19228,19 @@ export default { 3 ], "description": [ - 70 + 74 ], "downloads": [ - 1235 + 1239 ], "updated_at": [ - 3421 + 3466 ], "version": [ - 70 + 74 ], "__typename": [ - 70 + 74 ] }, "game_versions_stddev_fields": { @@ -19156,7 +19248,7 @@ export default { 29 ], "__typename": [ - 70 + 74 ] }, "game_versions_stddev_pop_fields": { @@ -19164,7 +19256,7 @@ export default { 29 ], "__typename": [ - 70 + 74 ] }, "game_versions_stddev_samp_fields": { @@ -19172,18 +19264,18 @@ export default { 29 ], "__typename": [ - 70 + 74 ] }, "game_versions_stream_cursor_input": { "initial_value": [ - 1190 + 1194 ], "ordering": [ - 224 + 228 ], "__typename": [ - 70 + 74 ] }, "game_versions_stream_cursor_value_input": { @@ -19197,19 +19289,19 @@ export default { 3 ], "description": [ - 70 + 74 ], "downloads": [ - 1235 + 1239 ], "updated_at": [ - 3421 + 3466 ], "version": [ - 70 + 74 ], "__typename": [ - 70 + 74 ] }, "game_versions_sum_fields": { @@ -19217,37 +19309,37 @@ export default { 38 ], "__typename": [ - 70 + 74 ] }, "game_versions_update_column": {}, "game_versions_updates": { "_append": [ - 1167 + 1171 ], "_delete_at_path": [ - 1171 + 1175 ], "_delete_elem": [ - 1172 + 1176 ], "_delete_key": [ - 1173 + 1177 ], "_inc": [ - 1174 + 1178 ], "_prepend": [ - 1183 + 1187 ], "_set": [ - 1185 + 1189 ], "where": [ - 1169 + 1173 ], "__typename": [ - 70 + 74 ] }, "game_versions_var_pop_fields": { @@ -19255,7 +19347,7 @@ export default { 29 ], "__typename": [ - 70 + 74 ] }, "game_versions_var_samp_fields": { @@ -19263,7 +19355,7 @@ export default { 29 ], "__typename": [ - 70 + 74 ] }, "game_versions_variance_fields": { @@ -19271,60 +19363,60 @@ export default { 29 ], "__typename": [ - 70 + 74 ] }, "gamedata_signature_validations": { "branch": [ - 70 + 74 ], "build_id": [ 38 ], "game_version": [ - 1164 + 1168 ], "id": [ - 3818 + 3863 ], "results": [ - 1235, + 1239, { "path": [ - 70 + 74 ] } ], "status": [ - 70 + 74 ], "validated_at": [ - 3421 + 3466 ], "__typename": [ - 70 + 74 ] }, "gamedata_signature_validations_aggregate": { "aggregate": [ - 1199 + 1203 ], "nodes": [ - 1197 + 1201 ], "__typename": [ - 70 + 74 ] }, "gamedata_signature_validations_aggregate_fields": { "avg": [ - 1201 + 1205 ], "count": [ 38, { "columns": [ - 1216, + 1220, "[gamedata_signature_validations_select_column!]" ], "distinct": [ @@ -19333,42 +19425,42 @@ export default { } ], "max": [ - 1209 + 1213 ], "min": [ - 1210 + 1214 ], "stddev": [ - 1218 + 1222 ], "stddev_pop": [ - 1219 + 1223 ], "stddev_samp": [ - 1220 + 1224 ], "sum": [ - 1223 + 1227 ], "var_pop": [ - 1226 + 1230 ], "var_samp": [ - 1227 + 1231 ], "variance": [ - 1228 + 1232 ], "__typename": [ - 70 + 74 ] }, "gamedata_signature_validations_append_input": { "results": [ - 1235 + 1239 ], "__typename": [ - 70 + 74 ] }, "gamedata_signature_validations_avg_fields": { @@ -19376,51 +19468,51 @@ export default { 29 ], "__typename": [ - 70 + 74 ] }, "gamedata_signature_validations_bool_exp": { "_and": [ - 1202 + 1206 ], "_not": [ - 1202 + 1206 ], "_or": [ - 1202 + 1206 ], "branch": [ - 72 + 76 ], "build_id": [ 39 ], "game_version": [ - 1169 + 1173 ], "id": [ - 3820 + 3865 ], "results": [ - 1237 + 1241 ], "status": [ - 72 + 76 ], "validated_at": [ - 3422 + 3467 ], "__typename": [ - 70 + 74 ] }, "gamedata_signature_validations_constraint": {}, "gamedata_signature_validations_delete_at_path_input": { "results": [ - 70 + 74 ], "__typename": [ - 70 + 74 ] }, "gamedata_signature_validations_delete_elem_input": { @@ -19428,15 +19520,15 @@ export default { 38 ], "__typename": [ - 70 + 74 ] }, "gamedata_signature_validations_delete_key_input": { "results": [ - 70 + 74 ], "__typename": [ - 70 + 74 ] }, "gamedata_signature_validations_inc_input": { @@ -19444,73 +19536,73 @@ export default { 38 ], "__typename": [ - 70 + 74 ] }, "gamedata_signature_validations_insert_input": { "branch": [ - 70 + 74 ], "build_id": [ 38 ], "game_version": [ - 1179 + 1183 ], "id": [ - 3818 + 3863 ], "results": [ - 1235 + 1239 ], "status": [ - 70 + 74 ], "validated_at": [ - 3421 + 3466 ], "__typename": [ - 70 + 74 ] }, "gamedata_signature_validations_max_fields": { "branch": [ - 70 + 74 ], "build_id": [ 38 ], "id": [ - 3818 + 3863 ], "status": [ - 70 + 74 ], "validated_at": [ - 3421 + 3466 ], "__typename": [ - 70 + 74 ] }, "gamedata_signature_validations_min_fields": { "branch": [ - 70 + 74 ], "build_id": [ 38 ], "id": [ - 3818 + 3863 ], "status": [ - 70 + 74 ], "validated_at": [ - 3421 + 3466 ], "__typename": [ - 70 + 74 ] }, "gamedata_signature_validations_mutation_response": { @@ -19518,90 +19610,90 @@ export default { 38 ], "returning": [ - 1197 + 1201 ], "__typename": [ - 70 + 74 ] }, "gamedata_signature_validations_on_conflict": { "constraint": [ - 1203 + 1207 ], "update_columns": [ - 1224 + 1228 ], "where": [ - 1202 + 1206 ], "__typename": [ - 70 + 74 ] }, "gamedata_signature_validations_order_by": { "branch": [ - 2011 + 2015 ], "build_id": [ - 2011 + 2015 ], "game_version": [ - 1181 + 1185 ], "id": [ - 2011 + 2015 ], "results": [ - 2011 + 2015 ], "status": [ - 2011 + 2015 ], "validated_at": [ - 2011 + 2015 ], "__typename": [ - 70 + 74 ] }, "gamedata_signature_validations_pk_columns_input": { "id": [ - 3818 + 3863 ], "__typename": [ - 70 + 74 ] }, "gamedata_signature_validations_prepend_input": { "results": [ - 1235 + 1239 ], "__typename": [ - 70 + 74 ] }, "gamedata_signature_validations_select_column": {}, "gamedata_signature_validations_set_input": { "branch": [ - 70 + 74 ], "build_id": [ 38 ], "id": [ - 3818 + 3863 ], "results": [ - 1235 + 1239 ], "status": [ - 70 + 74 ], "validated_at": [ - 3421 + 3466 ], "__typename": [ - 70 + 74 ] }, "gamedata_signature_validations_stddev_fields": { @@ -19609,7 +19701,7 @@ export default { 29 ], "__typename": [ - 70 + 74 ] }, "gamedata_signature_validations_stddev_pop_fields": { @@ -19617,7 +19709,7 @@ export default { 29 ], "__typename": [ - 70 + 74 ] }, "gamedata_signature_validations_stddev_samp_fields": { @@ -19625,41 +19717,41 @@ export default { 29 ], "__typename": [ - 70 + 74 ] }, "gamedata_signature_validations_stream_cursor_input": { "initial_value": [ - 1222 + 1226 ], "ordering": [ - 224 + 228 ], "__typename": [ - 70 + 74 ] }, "gamedata_signature_validations_stream_cursor_value_input": { "branch": [ - 70 + 74 ], "build_id": [ 38 ], "id": [ - 3818 + 3863 ], "results": [ - 1235 + 1239 ], "status": [ - 70 + 74 ], "validated_at": [ - 3421 + 3466 ], "__typename": [ - 70 + 74 ] }, "gamedata_signature_validations_sum_fields": { @@ -19667,37 +19759,37 @@ export default { 38 ], "__typename": [ - 70 + 74 ] }, "gamedata_signature_validations_update_column": {}, "gamedata_signature_validations_updates": { "_append": [ - 1200 + 1204 ], "_delete_at_path": [ - 1204 + 1208 ], "_delete_elem": [ - 1205 + 1209 ], "_delete_key": [ - 1206 + 1210 ], "_inc": [ - 1207 + 1211 ], "_prepend": [ - 1215 + 1219 ], "_set": [ - 1217 + 1221 ], "where": [ - 1202 + 1206 ], "__typename": [ - 70 + 74 ] }, "gamedata_signature_validations_var_pop_fields": { @@ -19705,7 +19797,7 @@ export default { 29 ], "__typename": [ - 70 + 74 ] }, "gamedata_signature_validations_var_samp_fields": { @@ -19713,7 +19805,7 @@ export default { 29 ], "__typename": [ - 70 + 74 ] }, "gamedata_signature_validations_variance_fields": { @@ -19721,172 +19813,172 @@ export default { 29 ], "__typename": [ - 70 + 74 ] }, "get_leaderboard_args": { "_category": [ - 70 + 74 ], "_exclude_tournaments": [ 3 ], "_match_type": [ - 70 + 74 ], "_role": [ - 70 + 74 ], "_window_days": [ 38 ], "__typename": [ - 70 + 74 ] }, "get_player_leaderboard_rank_args": { "_category": [ - 70 + 74 ], "_exclude_tournaments": [ 3 ], "_match_type": [ - 70 + 74 ], "_player_steam_id": [ - 70 + 74 ], "_window_days": [ 38 ], "__typename": [ - 70 + 74 ] }, "inet": {}, "inet_comparison_exp": { "_eq": [ - 1231 + 1235 ], "_gt": [ - 1231 + 1235 ], "_gte": [ - 1231 + 1235 ], "_in": [ - 1231 + 1235 ], "_is_null": [ 3 ], "_lt": [ - 1231 + 1235 ], "_lte": [ - 1231 + 1235 ], "_neq": [ - 1231 + 1235 ], "_nin": [ - 1231 + 1235 ], "__typename": [ - 70 + 74 ] }, "json": {}, "json_comparison_exp": { "_eq": [ - 1233 + 1237 ], "_gt": [ - 1233 + 1237 ], "_gte": [ - 1233 + 1237 ], "_in": [ - 1233 + 1237 ], "_is_null": [ 3 ], "_lt": [ - 1233 + 1237 ], "_lte": [ - 1233 + 1237 ], "_neq": [ - 1233 + 1237 ], "_nin": [ - 1233 + 1237 ], "__typename": [ - 70 + 74 ] }, "jsonb": {}, "jsonb_cast_exp": { "String": [ - 72 + 76 ], "__typename": [ - 70 + 74 ] }, "jsonb_comparison_exp": { "_cast": [ - 1236 + 1240 ], "_contained_in": [ - 1235 + 1239 ], "_contains": [ - 1235 + 1239 ], "_eq": [ - 1235 + 1239 ], "_gt": [ - 1235 + 1239 ], "_gte": [ - 1235 + 1239 ], "_has_key": [ - 70 + 74 ], "_has_keys_all": [ - 70 + 74 ], "_has_keys_any": [ - 70 + 74 ], "_in": [ - 1235 + 1239 ], "_is_null": [ 3 ], "_lt": [ - 1235 + 1239 ], "_lte": [ - 1235 + 1239 ], "_neq": [ - 1235 + 1239 ], "_nin": [ - 1235 + 1239 ], "__typename": [ - 70 + 74 ] }, "leaderboard_entries": { @@ -19894,50 +19986,50 @@ export default { 38 ], "player_avatar_url": [ - 70 + 74 ], "player_country": [ - 70 + 74 ], "player_name": [ - 70 + 74 ], "player_steam_id": [ - 70 + 74 ], "secondary_value": [ - 1084 + 1088 ], "tertiary_value": [ - 1084 + 1088 ], "value": [ - 1084 + 1088 ], "__typename": [ - 70 + 74 ] }, "leaderboard_entries_aggregate": { "aggregate": [ - 1240 + 1244 ], "nodes": [ - 1238 + 1242 ], "__typename": [ - 70 + 74 ] }, "leaderboard_entries_aggregate_fields": { "avg": [ - 1241 + 1245 ], "count": [ 38, { "columns": [ - 1249, + 1253, "[leaderboard_entries_select_column!]" ], "distinct": [ @@ -19946,34 +20038,34 @@ export default { } ], "max": [ - 1245 + 1249 ], "min": [ - 1246 + 1250 ], "stddev": [ - 1251 + 1255 ], "stddev_pop": [ - 1252 + 1256 ], "stddev_samp": [ - 1253 + 1257 ], "sum": [ - 1256 + 1260 ], "var_pop": [ - 1258 + 1262 ], "var_samp": [ - 1259 + 1263 ], "variance": [ - 1260 + 1264 ], "__typename": [ - 70 + 74 ] }, "leaderboard_entries_avg_fields": { @@ -19990,45 +20082,45 @@ export default { 29 ], "__typename": [ - 70 + 74 ] }, "leaderboard_entries_bool_exp": { "_and": [ - 1242 + 1246 ], "_not": [ - 1242 + 1246 ], "_or": [ - 1242 + 1246 ], "matches_played": [ 39 ], "player_avatar_url": [ - 72 + 76 ], "player_country": [ - 72 + 76 ], "player_name": [ - 72 + 76 ], "player_steam_id": [ - 72 + 76 ], "secondary_value": [ - 1085 + 1089 ], "tertiary_value": [ - 1085 + 1089 ], "value": [ - 1085 + 1089 ], "__typename": [ - 70 + 74 ] }, "leaderboard_entries_inc_input": { @@ -20036,16 +20128,16 @@ export default { 38 ], "secondary_value": [ - 1084 + 1088 ], "tertiary_value": [ - 1084 + 1088 ], "value": [ - 1084 + 1088 ], "__typename": [ - 70 + 74 ] }, "leaderboard_entries_insert_input": { @@ -20053,28 +20145,28 @@ export default { 38 ], "player_avatar_url": [ - 70 + 74 ], "player_country": [ - 70 + 74 ], "player_name": [ - 70 + 74 ], "player_steam_id": [ - 70 + 74 ], "secondary_value": [ - 1084 + 1088 ], "tertiary_value": [ - 1084 + 1088 ], "value": [ - 1084 + 1088 ], "__typename": [ - 70 + 74 ] }, "leaderboard_entries_max_fields": { @@ -20082,28 +20174,28 @@ export default { 38 ], "player_avatar_url": [ - 70 + 74 ], "player_country": [ - 70 + 74 ], "player_name": [ - 70 + 74 ], "player_steam_id": [ - 70 + 74 ], "secondary_value": [ - 1084 + 1088 ], "tertiary_value": [ - 1084 + 1088 ], "value": [ - 1084 + 1088 ], "__typename": [ - 70 + 74 ] }, "leaderboard_entries_min_fields": { @@ -20111,28 +20203,28 @@ export default { 38 ], "player_avatar_url": [ - 70 + 74 ], "player_country": [ - 70 + 74 ], "player_name": [ - 70 + 74 ], "player_steam_id": [ - 70 + 74 ], "secondary_value": [ - 1084 + 1088 ], "tertiary_value": [ - 1084 + 1088 ], "value": [ - 1084 + 1088 ], "__typename": [ - 70 + 74 ] }, "leaderboard_entries_mutation_response": { @@ -20140,39 +20232,39 @@ export default { 38 ], "returning": [ - 1238 + 1242 ], "__typename": [ - 70 + 74 ] }, "leaderboard_entries_order_by": { "matches_played": [ - 2011 + 2015 ], "player_avatar_url": [ - 2011 + 2015 ], "player_country": [ - 2011 + 2015 ], "player_name": [ - 2011 + 2015 ], "player_steam_id": [ - 2011 + 2015 ], "secondary_value": [ - 2011 + 2015 ], "tertiary_value": [ - 2011 + 2015 ], "value": [ - 2011 + 2015 ], "__typename": [ - 70 + 74 ] }, "leaderboard_entries_select_column": {}, @@ -20181,28 +20273,28 @@ export default { 38 ], "player_avatar_url": [ - 70 + 74 ], "player_country": [ - 70 + 74 ], "player_name": [ - 70 + 74 ], "player_steam_id": [ - 70 + 74 ], "secondary_value": [ - 1084 + 1088 ], "tertiary_value": [ - 1084 + 1088 ], "value": [ - 1084 + 1088 ], "__typename": [ - 70 + 74 ] }, "leaderboard_entries_stddev_fields": { @@ -20219,7 +20311,7 @@ export default { 29 ], "__typename": [ - 70 + 74 ] }, "leaderboard_entries_stddev_pop_fields": { @@ -20236,7 +20328,7 @@ export default { 29 ], "__typename": [ - 70 + 74 ] }, "leaderboard_entries_stddev_samp_fields": { @@ -20253,18 +20345,18 @@ export default { 29 ], "__typename": [ - 70 + 74 ] }, "leaderboard_entries_stream_cursor_input": { "initial_value": [ - 1255 + 1259 ], "ordering": [ - 224 + 228 ], "__typename": [ - 70 + 74 ] }, "leaderboard_entries_stream_cursor_value_input": { @@ -20272,28 +20364,28 @@ export default { 38 ], "player_avatar_url": [ - 70 + 74 ], "player_country": [ - 70 + 74 ], "player_name": [ - 70 + 74 ], "player_steam_id": [ - 70 + 74 ], "secondary_value": [ - 1084 + 1088 ], "tertiary_value": [ - 1084 + 1088 ], "value": [ - 1084 + 1088 ], "__typename": [ - 70 + 74 ] }, "leaderboard_entries_sum_fields": { @@ -20301,30 +20393,30 @@ export default { 38 ], "secondary_value": [ - 1084 + 1088 ], "tertiary_value": [ - 1084 + 1088 ], "value": [ - 1084 + 1088 ], "__typename": [ - 70 + 74 ] }, "leaderboard_entries_updates": { "_inc": [ - 1243 + 1247 ], "_set": [ - 1250 + 1254 ], "where": [ - 1242 + 1246 ], "__typename": [ - 70 + 74 ] }, "leaderboard_entries_var_pop_fields": { @@ -20341,7 +20433,7 @@ export default { 29 ], "__typename": [ - 70 + 74 ] }, "leaderboard_entries_var_samp_fields": { @@ -20358,7 +20450,7 @@ export default { 29 ], "__typename": [ - 70 + 74 ] }, "leaderboard_entries_variance_fields": { @@ -20375,27 +20467,27 @@ export default { 29 ], "__typename": [ - 70 + 74 ] }, "lobbies": { "access": [ - 580 + 584 ], "created_at": [ - 3421 + 3466 ], "e_lobby_access": [ - 575 + 579 ], "id": [ - 3818 + 3863 ], "players": [ - 1280, + 1284, { "distinct_on": [ - 1303, + 1307, "[lobby_players_select_column!]" ], "limit": [ @@ -20405,19 +20497,19 @@ export default { 38 ], "order_by": [ - 1301, + 1305, "[lobby_players_order_by!]" ], "where": [ - 1291 + 1295 ] } ], "players_aggregate": [ - 1281, + 1285, { "distinct_on": [ - 1303, + 1307, "[lobby_players_select_column!]" ], "limit": [ @@ -20427,27 +20519,27 @@ export default { 38 ], "order_by": [ - 1301, + 1305, "[lobby_players_order_by!]" ], "where": [ - 1291 + 1295 ] } ], "__typename": [ - 70 + 74 ] }, "lobbies_aggregate": { "aggregate": [ - 1263 + 1267 ], "nodes": [ - 1261 + 1265 ], "__typename": [ - 70 + 74 ] }, "lobbies_aggregate_fields": { @@ -20455,7 +20547,7 @@ export default { 38, { "columns": [ - 1274, + 1278, "[lobbies_select_column!]" ], "distinct": [ @@ -20464,88 +20556,88 @@ export default { } ], "max": [ - 1267 + 1271 ], "min": [ - 1268 + 1272 ], "__typename": [ - 70 + 74 ] }, "lobbies_bool_exp": { "_and": [ - 1264 + 1268 ], "_not": [ - 1264 + 1268 ], "_or": [ - 1264 + 1268 ], "access": [ - 581 + 585 ], "created_at": [ - 3422 + 3467 ], "e_lobby_access": [ - 578 + 582 ], "id": [ - 3820 + 3865 ], "players": [ - 1291 + 1295 ], "players_aggregate": [ - 1282 + 1286 ], "__typename": [ - 70 + 74 ] }, "lobbies_constraint": {}, "lobbies_insert_input": { "access": [ - 580 + 584 ], "created_at": [ - 3421 + 3466 ], "e_lobby_access": [ - 586 + 590 ], "id": [ - 3818 + 3863 ], "players": [ - 1288 + 1292 ], "__typename": [ - 70 + 74 ] }, "lobbies_max_fields": { "created_at": [ - 3421 + 3466 ], "id": [ - 3818 + 3863 ], "__typename": [ - 70 + 74 ] }, "lobbies_min_fields": { "created_at": [ - 3421 + 3466 ], "id": [ - 3818 + 3863 ], "__typename": [ - 70 + 74 ] }, "lobbies_mutation_response": { @@ -20553,115 +20645,115 @@ export default { 38 ], "returning": [ - 1261 + 1265 ], "__typename": [ - 70 + 74 ] }, "lobbies_obj_rel_insert_input": { "data": [ - 1266 + 1270 ], "on_conflict": [ - 1271 + 1275 ], "__typename": [ - 70 + 74 ] }, "lobbies_on_conflict": { "constraint": [ - 1265 + 1269 ], "update_columns": [ - 1278 + 1282 ], "where": [ - 1264 + 1268 ], "__typename": [ - 70 + 74 ] }, "lobbies_order_by": { "access": [ - 2011 + 2015 ], "created_at": [ - 2011 + 2015 ], "e_lobby_access": [ - 588 + 592 ], "id": [ - 2011 + 2015 ], "players_aggregate": [ - 1287 + 1291 ], "__typename": [ - 70 + 74 ] }, "lobbies_pk_columns_input": { "id": [ - 3818 + 3863 ], "__typename": [ - 70 + 74 ] }, "lobbies_select_column": {}, "lobbies_set_input": { "access": [ - 580 + 584 ], "created_at": [ - 3421 + 3466 ], "id": [ - 3818 + 3863 ], "__typename": [ - 70 + 74 ] }, "lobbies_stream_cursor_input": { "initial_value": [ - 1277 + 1281 ], "ordering": [ - 224 + 228 ], "__typename": [ - 70 + 74 ] }, "lobbies_stream_cursor_value_input": { "access": [ - 580 + 584 ], "created_at": [ - 3421 + 3466 ], "id": [ - 3818 + 3863 ], "__typename": [ - 70 + 74 ] }, "lobbies_update_column": {}, "lobbies_updates": { "_set": [ - 1275 + 1279 ], "where": [ - 1264 + 1268 ], "__typename": [ - 70 + 74 ] }, "lobby_players": { @@ -20669,112 +20761,112 @@ export default { 3 ], "invited_by_steam_id": [ - 169 + 173 ], "lobby": [ - 1261 + 1265 ], "lobby_id": [ - 3818 + 3863 ], "player": [ - 2878 + 2914 ], "status": [ - 601 + 605 ], "steam_id": [ - 169 + 173 ], "__typename": [ - 70 + 74 ] }, "lobby_players_aggregate": { "aggregate": [ - 1286 + 1290 ], "nodes": [ - 1280 + 1284 ], "__typename": [ - 70 + 74 ] }, "lobby_players_aggregate_bool_exp": { "bool_and": [ - 1283 + 1287 ], "bool_or": [ - 1284 + 1288 ], "count": [ - 1285 + 1289 ], "__typename": [ - 70 + 74 ] }, "lobby_players_aggregate_bool_exp_bool_and": { "arguments": [ - 1304 + 1308 ], "distinct": [ 3 ], "filter": [ - 1291 + 1295 ], "predicate": [ 4 ], "__typename": [ - 70 + 74 ] }, "lobby_players_aggregate_bool_exp_bool_or": { "arguments": [ - 1305 + 1309 ], "distinct": [ 3 ], "filter": [ - 1291 + 1295 ], "predicate": [ 4 ], "__typename": [ - 70 + 74 ] }, "lobby_players_aggregate_bool_exp_count": { "arguments": [ - 1303 + 1307 ], "distinct": [ 3 ], "filter": [ - 1291 + 1295 ], "predicate": [ 39 ], "__typename": [ - 70 + 74 ] }, "lobby_players_aggregate_fields": { "avg": [ - 1289 + 1293 ], "count": [ 38, { "columns": [ - 1303, + 1307, "[lobby_players_select_column!]" ], "distinct": [ @@ -20783,83 +20875,83 @@ export default { } ], "max": [ - 1295 + 1299 ], "min": [ - 1297 + 1301 ], "stddev": [ - 1307 + 1311 ], "stddev_pop": [ - 1309 + 1313 ], "stddev_samp": [ - 1311 + 1315 ], "sum": [ - 1315 + 1319 ], "var_pop": [ - 1319 + 1323 ], "var_samp": [ - 1321 + 1325 ], "variance": [ - 1323 + 1327 ], "__typename": [ - 70 + 74 ] }, "lobby_players_aggregate_order_by": { "avg": [ - 1290 + 1294 ], "count": [ - 2011 + 2015 ], "max": [ - 1296 + 1300 ], "min": [ - 1298 + 1302 ], "stddev": [ - 1308 + 1312 ], "stddev_pop": [ - 1310 + 1314 ], "stddev_samp": [ - 1312 + 1316 ], "sum": [ - 1316 + 1320 ], "var_pop": [ - 1320 + 1324 ], "var_samp": [ - 1322 + 1326 ], "variance": [ - 1324 + 1328 ], "__typename": [ - 70 + 74 ] }, "lobby_players_arr_rel_insert_input": { "data": [ - 1294 + 1298 ], "on_conflict": [ - 1300 + 1304 ], "__typename": [ - 70 + 74 ] }, "lobby_players_avg_fields": { @@ -20870,65 +20962,65 @@ export default { 29 ], "__typename": [ - 70 + 74 ] }, "lobby_players_avg_order_by": { "invited_by_steam_id": [ - 2011 + 2015 ], "steam_id": [ - 2011 + 2015 ], "__typename": [ - 70 + 74 ] }, "lobby_players_bool_exp": { "_and": [ - 1291 + 1295 ], "_not": [ - 1291 + 1295 ], "_or": [ - 1291 + 1295 ], "captain": [ 4 ], "invited_by_steam_id": [ - 171 + 175 ], "lobby": [ - 1264 + 1268 ], "lobby_id": [ - 3820 + 3865 ], "player": [ - 2882 + 2918 ], "status": [ - 602 + 606 ], "steam_id": [ - 171 + 175 ], "__typename": [ - 70 + 74 ] }, "lobby_players_constraint": {}, "lobby_players_inc_input": { "invited_by_steam_id": [ - 169 + 173 ], "steam_id": [ - 169 + 173 ], "__typename": [ - 70 + 74 ] }, "lobby_players_insert_input": { @@ -20936,81 +21028,81 @@ export default { 3 ], "invited_by_steam_id": [ - 169 + 173 ], "lobby": [ - 1270 + 1274 ], "lobby_id": [ - 3818 + 3863 ], "player": [ - 2889 + 2925 ], "status": [ - 601 + 605 ], "steam_id": [ - 169 + 173 ], "__typename": [ - 70 + 74 ] }, "lobby_players_max_fields": { "invited_by_steam_id": [ - 169 + 173 ], "lobby_id": [ - 3818 + 3863 ], "steam_id": [ - 169 + 173 ], "__typename": [ - 70 + 74 ] }, "lobby_players_max_order_by": { "invited_by_steam_id": [ - 2011 + 2015 ], "lobby_id": [ - 2011 + 2015 ], "steam_id": [ - 2011 + 2015 ], "__typename": [ - 70 + 74 ] }, "lobby_players_min_fields": { "invited_by_steam_id": [ - 169 + 173 ], "lobby_id": [ - 3818 + 3863 ], "steam_id": [ - 169 + 173 ], "__typename": [ - 70 + 74 ] }, "lobby_players_min_order_by": { "invited_by_steam_id": [ - 2011 + 2015 ], "lobby_id": [ - 2011 + 2015 ], "steam_id": [ - 2011 + 2015 ], "__typename": [ - 70 + 74 ] }, "lobby_players_mutation_response": { @@ -21018,61 +21110,61 @@ export default { 38 ], "returning": [ - 1280 + 1284 ], "__typename": [ - 70 + 74 ] }, "lobby_players_on_conflict": { "constraint": [ - 1292 + 1296 ], "update_columns": [ - 1317 + 1321 ], "where": [ - 1291 + 1295 ], "__typename": [ - 70 + 74 ] }, "lobby_players_order_by": { "captain": [ - 2011 + 2015 ], "invited_by_steam_id": [ - 2011 + 2015 ], "lobby": [ - 1272 + 1276 ], "lobby_id": [ - 2011 + 2015 ], "player": [ - 2891 + 2927 ], "status": [ - 2011 + 2015 ], "steam_id": [ - 2011 + 2015 ], "__typename": [ - 70 + 74 ] }, "lobby_players_pk_columns_input": { "lobby_id": [ - 3818 + 3863 ], "steam_id": [ - 169 + 173 ], "__typename": [ - 70 + 74 ] }, "lobby_players_select_column": {}, @@ -21083,19 +21175,19 @@ export default { 3 ], "invited_by_steam_id": [ - 169 + 173 ], "lobby_id": [ - 3818 + 3863 ], "status": [ - 601 + 605 ], "steam_id": [ - 169 + 173 ], "__typename": [ - 70 + 74 ] }, "lobby_players_stddev_fields": { @@ -21106,18 +21198,18 @@ export default { 29 ], "__typename": [ - 70 + 74 ] }, "lobby_players_stddev_order_by": { "invited_by_steam_id": [ - 2011 + 2015 ], "steam_id": [ - 2011 + 2015 ], "__typename": [ - 70 + 74 ] }, "lobby_players_stddev_pop_fields": { @@ -21128,18 +21220,18 @@ export default { 29 ], "__typename": [ - 70 + 74 ] }, "lobby_players_stddev_pop_order_by": { "invited_by_steam_id": [ - 2011 + 2015 ], "steam_id": [ - 2011 + 2015 ], "__typename": [ - 70 + 74 ] }, "lobby_players_stddev_samp_fields": { @@ -21150,29 +21242,29 @@ export default { 29 ], "__typename": [ - 70 + 74 ] }, "lobby_players_stddev_samp_order_by": { "invited_by_steam_id": [ - 2011 + 2015 ], "steam_id": [ - 2011 + 2015 ], "__typename": [ - 70 + 74 ] }, "lobby_players_stream_cursor_input": { "initial_value": [ - 1314 + 1318 ], "ordering": [ - 224 + 228 ], "__typename": [ - 70 + 74 ] }, "lobby_players_stream_cursor_value_input": { @@ -21180,56 +21272,56 @@ export default { 3 ], "invited_by_steam_id": [ - 169 + 173 ], "lobby_id": [ - 3818 + 3863 ], "status": [ - 601 + 605 ], "steam_id": [ - 169 + 173 ], "__typename": [ - 70 + 74 ] }, "lobby_players_sum_fields": { "invited_by_steam_id": [ - 169 + 173 ], "steam_id": [ - 169 + 173 ], "__typename": [ - 70 + 74 ] }, "lobby_players_sum_order_by": { "invited_by_steam_id": [ - 2011 + 2015 ], "steam_id": [ - 2011 + 2015 ], "__typename": [ - 70 + 74 ] }, "lobby_players_update_column": {}, "lobby_players_updates": { "_inc": [ - 1293 + 1297 ], "_set": [ - 1306 + 1310 ], "where": [ - 1291 + 1295 ], "__typename": [ - 70 + 74 ] }, "lobby_players_var_pop_fields": { @@ -21240,18 +21332,18 @@ export default { 29 ], "__typename": [ - 70 + 74 ] }, "lobby_players_var_pop_order_by": { "invited_by_steam_id": [ - 2011 + 2015 ], "steam_id": [ - 2011 + 2015 ], "__typename": [ - 70 + 74 ] }, "lobby_players_var_samp_fields": { @@ -21262,18 +21354,18 @@ export default { 29 ], "__typename": [ - 70 + 74 ] }, "lobby_players_var_samp_order_by": { "invited_by_steam_id": [ - 2011 + 2015 ], "steam_id": [ - 2011 + 2015 ], "__typename": [ - 70 + 74 ] }, "lobby_players_variance_fields": { @@ -21284,35 +21376,35 @@ export default { 29 ], "__typename": [ - 70 + 74 ] }, "lobby_players_variance_order_by": { "invited_by_steam_id": [ - 2011 + 2015 ], "steam_id": [ - 2011 + 2015 ], "__typename": [ - 70 + 74 ] }, "map_pools": { "e_type": [ - 616 + 620 ], "enabled": [ 3 ], "id": [ - 3818 + 3863 ], "maps": [ - 4325, + 4370, { "distinct_on": [ - 4342, + 4387, "[v_pool_maps_select_column!]" ], "limit": [ @@ -21322,19 +21414,19 @@ export default { 38 ], "order_by": [ - 4341, + 4386, "[v_pool_maps_order_by!]" ], "where": [ - 4334 + 4379 ] } ], "maps_aggregate": [ - 4326, + 4371, { "distinct_on": [ - 4342, + 4387, "[v_pool_maps_select_column!]" ], "limit": [ @@ -21344,11 +21436,11 @@ export default { 38 ], "order_by": [ - 4341, + 4386, "[v_pool_maps_order_by!]" ], "where": [ - 4334 + 4379 ] } ], @@ -21356,21 +21448,21 @@ export default { 3 ], "type": [ - 621 + 625 ], "__typename": [ - 70 + 74 ] }, "map_pools_aggregate": { "aggregate": [ - 1327 + 1331 ], "nodes": [ - 1325 + 1329 ], "__typename": [ - 70 + 74 ] }, "map_pools_aggregate_fields": { @@ -21378,7 +21470,7 @@ export default { 38, { "columns": [ - 1338, + 1342, "[map_pools_select_column!]" ], "distinct": [ @@ -21387,88 +21479,88 @@ export default { } ], "max": [ - 1331 + 1335 ], "min": [ - 1332 + 1336 ], "__typename": [ - 70 + 74 ] }, "map_pools_bool_exp": { "_and": [ - 1328 + 1332 ], "_not": [ - 1328 + 1332 ], "_or": [ - 1328 + 1332 ], "e_type": [ - 619 + 623 ], "enabled": [ 4 ], "id": [ - 3820 + 3865 ], "maps": [ - 4334 + 4379 ], "maps_aggregate": [ - 4327 + 4372 ], "seed": [ 4 ], "type": [ - 622 + 626 ], "__typename": [ - 70 + 74 ] }, "map_pools_constraint": {}, "map_pools_insert_input": { "e_type": [ - 627 + 631 ], "enabled": [ 3 ], "id": [ - 3818 + 3863 ], "maps": [ - 4333 + 4378 ], "seed": [ 3 ], "type": [ - 621 + 625 ], "__typename": [ - 70 + 74 ] }, "map_pools_max_fields": { "id": [ - 3818 + 3863 ], "__typename": [ - 70 + 74 ] }, "map_pools_min_fields": { "id": [ - 3818 + 3863 ], "__typename": [ - 70 + 74 ] }, "map_pools_mutation_response": { @@ -21476,66 +21568,66 @@ export default { 38 ], "returning": [ - 1325 + 1329 ], "__typename": [ - 70 + 74 ] }, "map_pools_obj_rel_insert_input": { "data": [ - 1330 + 1334 ], "on_conflict": [ - 1335 + 1339 ], "__typename": [ - 70 + 74 ] }, "map_pools_on_conflict": { "constraint": [ - 1329 + 1333 ], "update_columns": [ - 1342 + 1346 ], "where": [ - 1328 + 1332 ], "__typename": [ - 70 + 74 ] }, "map_pools_order_by": { "e_type": [ - 629 + 633 ], "enabled": [ - 2011 + 2015 ], "id": [ - 2011 + 2015 ], "maps_aggregate": [ - 4332 + 4377 ], "seed": [ - 2011 + 2015 ], "type": [ - 2011 + 2015 ], "__typename": [ - 70 + 74 ] }, "map_pools_pk_columns_input": { "id": [ - 3818 + 3863 ], "__typename": [ - 70 + 74 ] }, "map_pools_select_column": {}, @@ -21544,27 +21636,27 @@ export default { 3 ], "id": [ - 3818 + 3863 ], "seed": [ 3 ], "type": [ - 621 + 625 ], "__typename": [ - 70 + 74 ] }, "map_pools_stream_cursor_input": { "initial_value": [ - 1341 + 1345 ], "ordering": [ - 224 + 228 ], "__typename": [ - 70 + 74 ] }, "map_pools_stream_cursor_value_input": { @@ -21572,28 +21664,28 @@ export default { 3 ], "id": [ - 3818 + 3863 ], "seed": [ 3 ], "type": [ - 621 + 625 ], "__typename": [ - 70 + 74 ] }, "map_pools_update_column": {}, "map_pools_updates": { "_set": [ - 1339 + 1343 ], "where": [ - 1328 + 1332 ], "__typename": [ - 70 + 74 ] }, "maps": { @@ -21601,22 +21693,22 @@ export default { 3 ], "e_match_type": [ - 719 + 723 ], "enabled": [ 3 ], "id": [ - 3818 + 3863 ], "label": [ - 70 + 74 ], "match_maps": [ - 1664, + 1668, { "distinct_on": [ - 1686, + 1690, "[match_maps_select_column!]" ], "limit": [ @@ -21626,19 +21718,19 @@ export default { 38 ], "order_by": [ - 1684, + 1688, "[match_maps_order_by!]" ], "where": [ - 1673 + 1677 ] } ], "match_maps_aggregate": [ - 1665, + 1669, { "distinct_on": [ - 1686, + 1690, "[match_maps_select_column!]" ], "limit": [ @@ -21648,19 +21740,19 @@ export default { 38 ], "order_by": [ - 1684, + 1688, "[match_maps_order_by!]" ], "where": [ - 1673 + 1677 ] } ], "match_veto_picks": [ - 1640, + 1644, { "distinct_on": [ - 1658, + 1662, "[match_map_veto_picks_select_column!]" ], "limit": [ @@ -21670,19 +21762,19 @@ export default { 38 ], "order_by": [ - 1656, + 1660, "[match_map_veto_picks_order_by!]" ], "where": [ - 1647 + 1651 ] } ], "match_veto_picks_aggregate": [ - 1641, + 1645, { "distinct_on": [ - 1658, + 1662, "[match_map_veto_picks_select_column!]" ], "limit": [ @@ -21692,107 +21784,107 @@ export default { 38 ], "order_by": [ - 1656, + 1660, "[match_map_veto_picks_order_by!]" ], "where": [ - 1647 + 1651 ] } ], "name": [ - 70 + 74 ], "patch": [ - 70 + 74 ], "poster": [ - 70 + 74 ], "type": [ - 724 + 728 ], "workshop_map_id": [ - 70 + 74 ], "__typename": [ - 70 + 74 ] }, "maps_aggregate": { "aggregate": [ - 1350 + 1354 ], "nodes": [ - 1344 + 1348 ], "__typename": [ - 70 + 74 ] }, "maps_aggregate_bool_exp": { "bool_and": [ - 1347 + 1351 ], "bool_or": [ - 1348 + 1352 ], "count": [ - 1349 + 1353 ], "__typename": [ - 70 + 74 ] }, "maps_aggregate_bool_exp_bool_and": { "arguments": [ - 1366 + 1370 ], "distinct": [ 3 ], "filter": [ - 1353 + 1357 ], "predicate": [ 4 ], "__typename": [ - 70 + 74 ] }, "maps_aggregate_bool_exp_bool_or": { "arguments": [ - 1367 + 1371 ], "distinct": [ 3 ], "filter": [ - 1353 + 1357 ], "predicate": [ 4 ], "__typename": [ - 70 + 74 ] }, "maps_aggregate_bool_exp_count": { "arguments": [ - 1365 + 1369 ], "distinct": [ 3 ], "filter": [ - 1353 + 1357 ], "predicate": [ 39 ], "__typename": [ - 70 + 74 ] }, "maps_aggregate_fields": { @@ -21800,7 +21892,7 @@ export default { 38, { "columns": [ - 1365, + 1369, "[maps_select_column!]" ], "distinct": [ @@ -21809,94 +21901,94 @@ export default { } ], "max": [ - 1356 + 1360 ], "min": [ - 1358 + 1362 ], "__typename": [ - 70 + 74 ] }, "maps_aggregate_order_by": { "count": [ - 2011 + 2015 ], "max": [ - 1357 + 1361 ], "min": [ - 1359 + 1363 ], "__typename": [ - 70 + 74 ] }, "maps_arr_rel_insert_input": { "data": [ - 1355 + 1359 ], "on_conflict": [ - 1362 + 1366 ], "__typename": [ - 70 + 74 ] }, "maps_bool_exp": { "_and": [ - 1353 + 1357 ], "_not": [ - 1353 + 1357 ], "_or": [ - 1353 + 1357 ], "active_pool": [ 4 ], "e_match_type": [ - 722 + 726 ], "enabled": [ 4 ], "id": [ - 3820 + 3865 ], "label": [ - 72 + 76 ], "match_maps": [ - 1673 + 1677 ], "match_maps_aggregate": [ - 1666 + 1670 ], "match_veto_picks": [ - 1647 + 1651 ], "match_veto_picks_aggregate": [ - 1642 + 1646 ], "name": [ - 72 + 76 ], "patch": [ - 72 + 76 ], "poster": [ - 72 + 76 ], "type": [ - 725 + 729 ], "workshop_map_id": [ - 72 + 76 ], "__typename": [ - 70 + 74 ] }, "maps_constraint": {}, @@ -21905,132 +21997,132 @@ export default { 3 ], "e_match_type": [ - 730 + 734 ], "enabled": [ 3 ], "id": [ - 3818 + 3863 ], "label": [ - 70 + 74 ], "match_maps": [ - 1670 + 1674 ], "match_veto_picks": [ - 1646 + 1650 ], "name": [ - 70 + 74 ], "patch": [ - 70 + 74 ], "poster": [ - 70 + 74 ], "type": [ - 724 + 728 ], "workshop_map_id": [ - 70 + 74 ], "__typename": [ - 70 + 74 ] }, "maps_max_fields": { "id": [ - 3818 + 3863 ], "label": [ - 70 + 74 ], "name": [ - 70 + 74 ], "patch": [ - 70 + 74 ], "poster": [ - 70 + 74 ], "workshop_map_id": [ - 70 + 74 ], "__typename": [ - 70 + 74 ] }, "maps_max_order_by": { "id": [ - 2011 + 2015 ], "label": [ - 2011 + 2015 ], "name": [ - 2011 + 2015 ], "patch": [ - 2011 + 2015 ], "poster": [ - 2011 + 2015 ], "workshop_map_id": [ - 2011 + 2015 ], "__typename": [ - 70 + 74 ] }, "maps_min_fields": { "id": [ - 3818 + 3863 ], "label": [ - 70 + 74 ], "name": [ - 70 + 74 ], "patch": [ - 70 + 74 ], "poster": [ - 70 + 74 ], "workshop_map_id": [ - 70 + 74 ], "__typename": [ - 70 + 74 ] }, "maps_min_order_by": { "id": [ - 2011 + 2015 ], "label": [ - 2011 + 2015 ], "name": [ - 2011 + 2015 ], "patch": [ - 2011 + 2015 ], "poster": [ - 2011 + 2015 ], "workshop_map_id": [ - 2011 + 2015 ], "__typename": [ - 70 + 74 ] }, "maps_mutation_response": { @@ -22038,84 +22130,84 @@ export default { 38 ], "returning": [ - 1344 + 1348 ], "__typename": [ - 70 + 74 ] }, "maps_obj_rel_insert_input": { "data": [ - 1355 + 1359 ], "on_conflict": [ - 1362 + 1366 ], "__typename": [ - 70 + 74 ] }, "maps_on_conflict": { "constraint": [ - 1354 + 1358 ], "update_columns": [ - 1371 + 1375 ], "where": [ - 1353 + 1357 ], "__typename": [ - 70 + 74 ] }, "maps_order_by": { "active_pool": [ - 2011 + 2015 ], "e_match_type": [ - 732 + 736 ], "enabled": [ - 2011 + 2015 ], "id": [ - 2011 + 2015 ], "label": [ - 2011 + 2015 ], "match_maps_aggregate": [ - 1669 + 1673 ], "match_veto_picks_aggregate": [ - 1645 + 1649 ], "name": [ - 2011 + 2015 ], "patch": [ - 2011 + 2015 ], "poster": [ - 2011 + 2015 ], "type": [ - 2011 + 2015 ], "workshop_map_id": [ - 2011 + 2015 ], "__typename": [ - 70 + 74 ] }, "maps_pk_columns_input": { "id": [ - 3818 + 3863 ], "__typename": [ - 70 + 74 ] }, "maps_select_column": {}, @@ -22129,39 +22221,39 @@ export default { 3 ], "id": [ - 3818 + 3863 ], "label": [ - 70 + 74 ], "name": [ - 70 + 74 ], "patch": [ - 70 + 74 ], "poster": [ - 70 + 74 ], "type": [ - 724 + 728 ], "workshop_map_id": [ - 70 + 74 ], "__typename": [ - 70 + 74 ] }, "maps_stream_cursor_input": { "initial_value": [ - 1370 + 1374 ], "ordering": [ - 224 + 228 ], "__typename": [ - 70 + 74 ] }, "maps_stream_cursor_value_input": { @@ -22172,78 +22264,78 @@ export default { 3 ], "id": [ - 3818 + 3863 ], "label": [ - 70 + 74 ], "name": [ - 70 + 74 ], "patch": [ - 70 + 74 ], "poster": [ - 70 + 74 ], "type": [ - 724 + 728 ], "workshop_map_id": [ - 70 + 74 ], "__typename": [ - 70 + 74 ] }, "maps_update_column": {}, "maps_updates": { "_set": [ - 1368 + 1372 ], "where": [ - 1353 + 1357 ], "__typename": [ - 70 + 74 ] }, "match_clips": { "created_at": [ - 3421 + 3466 ], "download_url": [ - 70 + 74 ], "duration_ms": [ 38 ], "file": [ - 70 + 74 ], "id": [ - 3818 + 3863 ], "kills_count": [ 38 ], "match_map": [ - 1664 + 1668 ], "match_map_demo": [ - 1548 + 1552 ], "match_map_demo_id": [ - 3818 + 3863 ], "match_map_id": [ - 3818 + 3863 ], "render_jobs": [ - 174, + 178, { "distinct_on": [ - 202, + 206, "[clip_render_jobs_select_column!]" ], "limit": [ @@ -22253,19 +22345,19 @@ export default { 38 ], "order_by": [ - 199, + 203, "[clip_render_jobs_order_by!]" ], "where": [ - 186 + 190 ] } ], "render_jobs_aggregate": [ - 175, + 179, { "distinct_on": [ - 202, + 206, "[clip_render_jobs_select_column!]" ], "limit": [ @@ -22275,11 +22367,11 @@ export default { 38 ], "order_by": [ - 199, + 203, "[clip_render_jobs_order_by!]" ], "where": [ - 186 + 190 ] } ], @@ -22287,84 +22379,84 @@ export default { 38 ], "size": [ - 169 + 173 ], "target": [ - 2878 + 2914 ], "target_steam_id": [ - 169 + 173 ], "thumbnail_download_url": [ - 70 + 74 ], "thumbnail_url": [ - 70 + 74 ], "title": [ - 70 + 74 ], "user": [ - 2878 + 2914 ], "user_steam_id": [ - 169 + 173 ], "views_count": [ 38 ], "visibility": [ - 642 + 646 ], "__typename": [ - 70 + 74 ] }, "match_clips_aggregate": { "aggregate": [ - 1377 + 1381 ], "nodes": [ - 1373 + 1377 ], "__typename": [ - 70 + 74 ] }, "match_clips_aggregate_bool_exp": { "count": [ - 1376 + 1380 ], "__typename": [ - 70 + 74 ] }, "match_clips_aggregate_bool_exp_count": { "arguments": [ - 1395 + 1399 ], "distinct": [ 3 ], "filter": [ - 1382 + 1386 ], "predicate": [ 39 ], "__typename": [ - 70 + 74 ] }, "match_clips_aggregate_fields": { "avg": [ - 1380 + 1384 ], "count": [ 38, { "columns": [ - 1395, + 1399, "[match_clips_select_column!]" ], "distinct": [ @@ -22373,83 +22465,83 @@ export default { } ], "max": [ - 1386 + 1390 ], "min": [ - 1388 + 1392 ], "stddev": [ - 1397 + 1401 ], "stddev_pop": [ - 1399 + 1403 ], "stddev_samp": [ - 1401 + 1405 ], "sum": [ - 1405 + 1409 ], "var_pop": [ - 1409 + 1413 ], "var_samp": [ - 1411 + 1415 ], "variance": [ - 1413 + 1417 ], "__typename": [ - 70 + 74 ] }, "match_clips_aggregate_order_by": { "avg": [ - 1381 + 1385 ], "count": [ - 2011 + 2015 ], "max": [ - 1387 + 1391 ], "min": [ - 1389 + 1393 ], "stddev": [ - 1398 + 1402 ], "stddev_pop": [ - 1400 + 1404 ], "stddev_samp": [ - 1402 + 1406 ], "sum": [ - 1406 + 1410 ], "var_pop": [ - 1410 + 1414 ], "var_samp": [ - 1412 + 1416 ], "variance": [ - 1414 + 1418 ], "__typename": [ - 70 + 74 ] }, "match_clips_arr_rel_insert_input": { "data": [ - 1385 + 1389 ], "on_conflict": [ - 1392 + 1396 ], "__typename": [ - 70 + 74 ] }, "match_clips_avg_fields": { @@ -22475,116 +22567,116 @@ export default { 29 ], "__typename": [ - 70 + 74 ] }, "match_clips_avg_order_by": { "duration_ms": [ - 2011 + 2015 ], "kills_count": [ - 2011 + 2015 ], "round": [ - 2011 + 2015 ], "size": [ - 2011 + 2015 ], "target_steam_id": [ - 2011 + 2015 ], "user_steam_id": [ - 2011 + 2015 ], "views_count": [ - 2011 + 2015 ], "__typename": [ - 70 + 74 ] }, "match_clips_bool_exp": { "_and": [ - 1382 + 1386 ], "_not": [ - 1382 + 1386 ], "_or": [ - 1382 + 1386 ], "created_at": [ - 3422 + 3467 ], "download_url": [ - 72 + 76 ], "duration_ms": [ 39 ], "file": [ - 72 + 76 ], "id": [ - 3820 + 3865 ], "kills_count": [ 39 ], "match_map": [ - 1673 + 1677 ], "match_map_demo": [ - 1560 + 1564 ], "match_map_demo_id": [ - 3820 + 3865 ], "match_map_id": [ - 3820 + 3865 ], "render_jobs": [ - 186 + 190 ], "render_jobs_aggregate": [ - 176 + 180 ], "round": [ 39 ], "size": [ - 171 + 175 ], "target": [ - 2882 + 2918 ], "target_steam_id": [ - 171 + 175 ], "thumbnail_download_url": [ - 72 + 76 ], "thumbnail_url": [ - 72 + 76 ], "title": [ - 72 + 76 ], "user": [ - 2882 + 2918 ], "user_steam_id": [ - 171 + 175 ], "views_count": [ 39 ], "visibility": [ - 643 + 647 ], "__typename": [ - 70 + 74 ] }, "match_clips_constraint": {}, @@ -22599,284 +22691,284 @@ export default { 38 ], "size": [ - 169 + 173 ], "target_steam_id": [ - 169 + 173 ], "user_steam_id": [ - 169 + 173 ], "views_count": [ 38 ], "__typename": [ - 70 + 74 ] }, "match_clips_insert_input": { "created_at": [ - 3421 + 3466 ], "duration_ms": [ 38 ], "file": [ - 70 + 74 ], "id": [ - 3818 + 3863 ], "kills_count": [ 38 ], "match_map": [ - 1682 + 1686 ], "match_map_demo": [ - 1572 + 1576 ], "match_map_demo_id": [ - 3818 + 3863 ], "match_map_id": [ - 3818 + 3863 ], "render_jobs": [ - 183 + 187 ], "round": [ 38 ], "size": [ - 169 + 173 ], "target": [ - 2889 + 2925 ], "target_steam_id": [ - 169 + 173 ], "thumbnail_url": [ - 70 + 74 ], "title": [ - 70 + 74 ], "user": [ - 2889 + 2925 ], "user_steam_id": [ - 169 + 173 ], "views_count": [ 38 ], "visibility": [ - 642 + 646 ], "__typename": [ - 70 + 74 ] }, "match_clips_max_fields": { "created_at": [ - 3421 + 3466 ], "download_url": [ - 70 + 74 ], "duration_ms": [ 38 ], "file": [ - 70 + 74 ], "id": [ - 3818 + 3863 ], "kills_count": [ 38 ], "match_map_demo_id": [ - 3818 + 3863 ], "match_map_id": [ - 3818 + 3863 ], "round": [ 38 ], "size": [ - 169 + 173 ], "target_steam_id": [ - 169 + 173 ], "thumbnail_download_url": [ - 70 + 74 ], "thumbnail_url": [ - 70 + 74 ], "title": [ - 70 + 74 ], "user_steam_id": [ - 169 + 173 ], "views_count": [ 38 ], "__typename": [ - 70 + 74 ] }, "match_clips_max_order_by": { "created_at": [ - 2011 + 2015 ], "duration_ms": [ - 2011 + 2015 ], "file": [ - 2011 + 2015 ], "id": [ - 2011 + 2015 ], "kills_count": [ - 2011 + 2015 ], "match_map_demo_id": [ - 2011 + 2015 ], "match_map_id": [ - 2011 + 2015 ], "round": [ - 2011 + 2015 ], "size": [ - 2011 + 2015 ], "target_steam_id": [ - 2011 + 2015 ], "thumbnail_url": [ - 2011 + 2015 ], "title": [ - 2011 + 2015 ], "user_steam_id": [ - 2011 + 2015 ], "views_count": [ - 2011 + 2015 ], "__typename": [ - 70 + 74 ] }, "match_clips_min_fields": { "created_at": [ - 3421 + 3466 ], "download_url": [ - 70 + 74 ], "duration_ms": [ 38 ], "file": [ - 70 + 74 ], "id": [ - 3818 + 3863 ], "kills_count": [ 38 ], "match_map_demo_id": [ - 3818 + 3863 ], "match_map_id": [ - 3818 + 3863 ], "round": [ 38 ], "size": [ - 169 + 173 ], "target_steam_id": [ - 169 + 173 ], "thumbnail_download_url": [ - 70 + 74 ], "thumbnail_url": [ - 70 + 74 ], "title": [ - 70 + 74 ], "user_steam_id": [ - 169 + 173 ], "views_count": [ 38 ], "__typename": [ - 70 + 74 ] }, "match_clips_min_order_by": { "created_at": [ - 2011 + 2015 ], "duration_ms": [ - 2011 + 2015 ], "file": [ - 2011 + 2015 ], "id": [ - 2011 + 2015 ], "kills_count": [ - 2011 + 2015 ], "match_map_demo_id": [ - 2011 + 2015 ], "match_map_id": [ - 2011 + 2015 ], "round": [ - 2011 + 2015 ], "size": [ - 2011 + 2015 ], "target_steam_id": [ - 2011 + 2015 ], "thumbnail_url": [ - 2011 + 2015 ], "title": [ - 2011 + 2015 ], "user_steam_id": [ - 2011 + 2015 ], "views_count": [ - 2011 + 2015 ], "__typename": [ - 70 + 74 ] }, "match_clips_mutation_response": { @@ -22884,165 +22976,165 @@ export default { 38 ], "returning": [ - 1373 + 1377 ], "__typename": [ - 70 + 74 ] }, "match_clips_obj_rel_insert_input": { "data": [ - 1385 + 1389 ], "on_conflict": [ - 1392 + 1396 ], "__typename": [ - 70 + 74 ] }, "match_clips_on_conflict": { "constraint": [ - 1383 + 1387 ], "update_columns": [ - 1407 + 1411 ], "where": [ - 1382 + 1386 ], "__typename": [ - 70 + 74 ] }, "match_clips_order_by": { "created_at": [ - 2011 + 2015 ], "download_url": [ - 2011 + 2015 ], "duration_ms": [ - 2011 + 2015 ], "file": [ - 2011 + 2015 ], "id": [ - 2011 + 2015 ], "kills_count": [ - 2011 + 2015 ], "match_map": [ - 1684 + 1688 ], "match_map_demo": [ - 1574 + 1578 ], "match_map_demo_id": [ - 2011 + 2015 ], "match_map_id": [ - 2011 + 2015 ], "render_jobs_aggregate": [ - 181 + 185 ], "round": [ - 2011 + 2015 ], "size": [ - 2011 + 2015 ], "target": [ - 2891 + 2927 ], "target_steam_id": [ - 2011 + 2015 ], "thumbnail_download_url": [ - 2011 + 2015 ], "thumbnail_url": [ - 2011 + 2015 ], "title": [ - 2011 + 2015 ], "user": [ - 2891 + 2927 ], "user_steam_id": [ - 2011 + 2015 ], "views_count": [ - 2011 + 2015 ], "visibility": [ - 2011 + 2015 ], "__typename": [ - 70 + 74 ] }, "match_clips_pk_columns_input": { "id": [ - 3818 + 3863 ], "__typename": [ - 70 + 74 ] }, "match_clips_select_column": {}, "match_clips_set_input": { "created_at": [ - 3421 + 3466 ], "duration_ms": [ 38 ], "file": [ - 70 + 74 ], "id": [ - 3818 + 3863 ], "kills_count": [ 38 ], "match_map_demo_id": [ - 3818 + 3863 ], "match_map_id": [ - 3818 + 3863 ], "round": [ 38 ], "size": [ - 169 + 173 ], "target_steam_id": [ - 169 + 173 ], "thumbnail_url": [ - 70 + 74 ], "title": [ - 70 + 74 ], "user_steam_id": [ - 169 + 173 ], "views_count": [ 38 ], "visibility": [ - 642 + 646 ], "__typename": [ - 70 + 74 ] }, "match_clips_stddev_fields": { @@ -23068,33 +23160,33 @@ export default { 29 ], "__typename": [ - 70 + 74 ] }, "match_clips_stddev_order_by": { "duration_ms": [ - 2011 + 2015 ], "kills_count": [ - 2011 + 2015 ], "round": [ - 2011 + 2015 ], "size": [ - 2011 + 2015 ], "target_steam_id": [ - 2011 + 2015 ], "user_steam_id": [ - 2011 + 2015 ], "views_count": [ - 2011 + 2015 ], "__typename": [ - 70 + 74 ] }, "match_clips_stddev_pop_fields": { @@ -23120,33 +23212,33 @@ export default { 29 ], "__typename": [ - 70 + 74 ] }, "match_clips_stddev_pop_order_by": { "duration_ms": [ - 2011 + 2015 ], "kills_count": [ - 2011 + 2015 ], "round": [ - 2011 + 2015 ], "size": [ - 2011 + 2015 ], "target_steam_id": [ - 2011 + 2015 ], "user_steam_id": [ - 2011 + 2015 ], "views_count": [ - 2011 + 2015 ], "__typename": [ - 70 + 74 ] }, "match_clips_stddev_samp_fields": { @@ -23172,94 +23264,94 @@ export default { 29 ], "__typename": [ - 70 + 74 ] }, "match_clips_stddev_samp_order_by": { "duration_ms": [ - 2011 + 2015 ], "kills_count": [ - 2011 + 2015 ], "round": [ - 2011 + 2015 ], "size": [ - 2011 + 2015 ], "target_steam_id": [ - 2011 + 2015 ], "user_steam_id": [ - 2011 + 2015 ], "views_count": [ - 2011 + 2015 ], "__typename": [ - 70 + 74 ] }, "match_clips_stream_cursor_input": { "initial_value": [ - 1404 + 1408 ], "ordering": [ - 224 + 228 ], "__typename": [ - 70 + 74 ] }, "match_clips_stream_cursor_value_input": { "created_at": [ - 3421 + 3466 ], "duration_ms": [ 38 ], "file": [ - 70 + 74 ], "id": [ - 3818 + 3863 ], "kills_count": [ 38 ], "match_map_demo_id": [ - 3818 + 3863 ], "match_map_id": [ - 3818 + 3863 ], "round": [ 38 ], "size": [ - 169 + 173 ], "target_steam_id": [ - 169 + 173 ], "thumbnail_url": [ - 70 + 74 ], "title": [ - 70 + 74 ], "user_steam_id": [ - 169 + 173 ], "views_count": [ 38 ], "visibility": [ - 642 + 646 ], "__typename": [ - 70 + 74 ] }, "match_clips_sum_fields": { @@ -23273,60 +23365,60 @@ export default { 38 ], "size": [ - 169 + 173 ], "target_steam_id": [ - 169 + 173 ], "user_steam_id": [ - 169 + 173 ], "views_count": [ 38 ], "__typename": [ - 70 + 74 ] }, "match_clips_sum_order_by": { "duration_ms": [ - 2011 + 2015 ], "kills_count": [ - 2011 + 2015 ], "round": [ - 2011 + 2015 ], "size": [ - 2011 + 2015 ], "target_steam_id": [ - 2011 + 2015 ], "user_steam_id": [ - 2011 + 2015 ], "views_count": [ - 2011 + 2015 ], "__typename": [ - 70 + 74 ] }, "match_clips_update_column": {}, "match_clips_updates": { "_inc": [ - 1384 + 1388 ], "_set": [ - 1396 + 1400 ], "where": [ - 1382 + 1386 ], "__typename": [ - 70 + 74 ] }, "match_clips_var_pop_fields": { @@ -23352,33 +23444,33 @@ export default { 29 ], "__typename": [ - 70 + 74 ] }, "match_clips_var_pop_order_by": { "duration_ms": [ - 2011 + 2015 ], "kills_count": [ - 2011 + 2015 ], "round": [ - 2011 + 2015 ], "size": [ - 2011 + 2015 ], "target_steam_id": [ - 2011 + 2015 ], "user_steam_id": [ - 2011 + 2015 ], "views_count": [ - 2011 + 2015 ], "__typename": [ - 70 + 74 ] }, "match_clips_var_samp_fields": { @@ -23404,33 +23496,33 @@ export default { 29 ], "__typename": [ - 70 + 74 ] }, "match_clips_var_samp_order_by": { "duration_ms": [ - 2011 + 2015 ], "kills_count": [ - 2011 + 2015 ], "round": [ - 2011 + 2015 ], "size": [ - 2011 + 2015 ], "target_steam_id": [ - 2011 + 2015 ], "user_steam_id": [ - 2011 + 2015 ], "views_count": [ - 2011 + 2015 ], "__typename": [ - 70 + 74 ] }, "match_clips_variance_fields": { @@ -23456,147 +23548,147 @@ export default { 29 ], "__typename": [ - 70 + 74 ] }, "match_clips_variance_order_by": { "duration_ms": [ - 2011 + 2015 ], "kills_count": [ - 2011 + 2015 ], "round": [ - 2011 + 2015 ], "size": [ - 2011 + 2015 ], "target_steam_id": [ - 2011 + 2015 ], "user_steam_id": [ - 2011 + 2015 ], "views_count": [ - 2011 + 2015 ], "__typename": [ - 70 + 74 ] }, "match_demo_sessions": { "created_at": [ - 3421 + 3466 ], "error_message": [ - 70 + 74 ], "game_server_node": [ - 1113 + 1117 ], "game_server_node_id": [ - 70 + 74 ], "id": [ - 3818 + 3863 ], "k8s_job_name": [ - 70 + 74 ], "last_activity_at": [ - 3421 + 3466 ], "last_status_at": [ - 3421 + 3466 ], "match": [ - 1826 + 1830 ], "match_id": [ - 3818 + 3863 ], "match_map": [ - 1664 + 1668 ], "match_map_demo": [ - 1548 + 1552 ], "match_map_demo_id": [ - 3818 + 3863 ], "match_map_id": [ - 3818 + 3863 ], "status": [ - 70 + 74 ], "status_history": [ - 1235, + 1239, { "path": [ - 70 + 74 ] } ], "stream_url": [ - 70 + 74 ], "watcher": [ - 2878 + 2914 ], "watcher_steam_id": [ - 169 + 173 ], "__typename": [ - 70 + 74 ] }, "match_demo_sessions_aggregate": { "aggregate": [ - 1419 + 1423 ], "nodes": [ - 1415 + 1419 ], "__typename": [ - 70 + 74 ] }, "match_demo_sessions_aggregate_bool_exp": { "count": [ - 1418 + 1422 ], "__typename": [ - 70 + 74 ] }, "match_demo_sessions_aggregate_bool_exp_count": { "arguments": [ - 1441 + 1445 ], "distinct": [ 3 ], "filter": [ - 1425 + 1429 ], "predicate": [ 39 ], "__typename": [ - 70 + 74 ] }, "match_demo_sessions_aggregate_fields": { "avg": [ - 1423 + 1427 ], "count": [ 38, { "columns": [ - 1441, + 1445, "[match_demo_sessions_select_column!]" ], "distinct": [ @@ -23605,91 +23697,91 @@ export default { } ], "max": [ - 1432 + 1436 ], "min": [ - 1434 + 1438 ], "stddev": [ - 1443 + 1447 ], "stddev_pop": [ - 1445 + 1449 ], "stddev_samp": [ - 1447 + 1451 ], "sum": [ - 1451 + 1455 ], "var_pop": [ - 1455 + 1459 ], "var_samp": [ - 1457 + 1461 ], "variance": [ - 1459 + 1463 ], "__typename": [ - 70 + 74 ] }, "match_demo_sessions_aggregate_order_by": { "avg": [ - 1424 + 1428 ], "count": [ - 2011 + 2015 ], "max": [ - 1433 + 1437 ], "min": [ - 1435 + 1439 ], "stddev": [ - 1444 + 1448 ], "stddev_pop": [ - 1446 + 1450 ], "stddev_samp": [ - 1448 + 1452 ], "sum": [ - 1452 + 1456 ], "var_pop": [ - 1456 + 1460 ], "var_samp": [ - 1458 + 1462 ], "variance": [ - 1460 + 1464 ], "__typename": [ - 70 + 74 ] }, "match_demo_sessions_append_input": { "status_history": [ - 1235 + 1239 ], "__typename": [ - 70 + 74 ] }, "match_demo_sessions_arr_rel_insert_input": { "data": [ - 1431 + 1435 ], "on_conflict": [ - 1437 + 1441 ], "__typename": [ - 70 + 74 ] }, "match_demo_sessions_avg_fields": { @@ -23697,95 +23789,95 @@ export default { 29 ], "__typename": [ - 70 + 74 ] }, "match_demo_sessions_avg_order_by": { "watcher_steam_id": [ - 2011 + 2015 ], "__typename": [ - 70 + 74 ] }, "match_demo_sessions_bool_exp": { "_and": [ - 1425 + 1429 ], "_not": [ - 1425 + 1429 ], "_or": [ - 1425 + 1429 ], "created_at": [ - 3422 + 3467 ], "error_message": [ - 72 + 76 ], "game_server_node": [ - 1125 + 1129 ], "game_server_node_id": [ - 72 + 76 ], "id": [ - 3820 + 3865 ], "k8s_job_name": [ - 72 + 76 ], "last_activity_at": [ - 3422 + 3467 ], "last_status_at": [ - 3422 + 3467 ], "match": [ - 1835 + 1839 ], "match_id": [ - 3820 + 3865 ], "match_map": [ - 1673 + 1677 ], "match_map_demo": [ - 1560 + 1564 ], "match_map_demo_id": [ - 3820 + 3865 ], "match_map_id": [ - 3820 + 3865 ], "status": [ - 72 + 76 ], "status_history": [ - 1237 + 1241 ], "stream_url": [ - 72 + 76 ], "watcher": [ - 2882 + 2918 ], "watcher_steam_id": [ - 171 + 175 ], "__typename": [ - 70 + 74 ] }, "match_demo_sessions_constraint": {}, "match_demo_sessions_delete_at_path_input": { "status_history": [ - 70 + 74 ], "__typename": [ - 70 + 74 ] }, "match_demo_sessions_delete_elem_input": { @@ -23793,261 +23885,261 @@ export default { 38 ], "__typename": [ - 70 + 74 ] }, "match_demo_sessions_delete_key_input": { "status_history": [ - 70 + 74 ], "__typename": [ - 70 + 74 ] }, "match_demo_sessions_inc_input": { "watcher_steam_id": [ - 169 + 173 ], "__typename": [ - 70 + 74 ] }, "match_demo_sessions_insert_input": { "created_at": [ - 3421 + 3466 ], "error_message": [ - 70 + 74 ], "game_server_node": [ - 1137 + 1141 ], "game_server_node_id": [ - 70 + 74 ], "id": [ - 3818 + 3863 ], "k8s_job_name": [ - 70 + 74 ], "last_activity_at": [ - 3421 + 3466 ], "last_status_at": [ - 3421 + 3466 ], "match": [ - 1844 + 1848 ], "match_id": [ - 3818 + 3863 ], "match_map": [ - 1682 + 1686 ], "match_map_demo": [ - 1572 + 1576 ], "match_map_demo_id": [ - 3818 + 3863 ], "match_map_id": [ - 3818 + 3863 ], "status": [ - 70 + 74 ], "status_history": [ - 1235 + 1239 ], "stream_url": [ - 70 + 74 ], "watcher": [ - 2889 + 2925 ], "watcher_steam_id": [ - 169 + 173 ], "__typename": [ - 70 + 74 ] }, "match_demo_sessions_max_fields": { "created_at": [ - 3421 + 3466 ], "error_message": [ - 70 + 74 ], "game_server_node_id": [ - 70 + 74 ], "id": [ - 3818 + 3863 ], "k8s_job_name": [ - 70 + 74 ], "last_activity_at": [ - 3421 + 3466 ], "last_status_at": [ - 3421 + 3466 ], "match_id": [ - 3818 + 3863 ], "match_map_demo_id": [ - 3818 + 3863 ], "match_map_id": [ - 3818 + 3863 ], "status": [ - 70 + 74 ], "stream_url": [ - 70 + 74 ], "watcher_steam_id": [ - 169 + 173 ], "__typename": [ - 70 + 74 ] }, "match_demo_sessions_max_order_by": { "created_at": [ - 2011 + 2015 ], "error_message": [ - 2011 + 2015 ], "game_server_node_id": [ - 2011 + 2015 ], "id": [ - 2011 + 2015 ], "k8s_job_name": [ - 2011 + 2015 ], "last_activity_at": [ - 2011 + 2015 ], "last_status_at": [ - 2011 + 2015 ], "match_id": [ - 2011 + 2015 ], "match_map_demo_id": [ - 2011 + 2015 ], "match_map_id": [ - 2011 + 2015 ], "status": [ - 2011 + 2015 ], "stream_url": [ - 2011 + 2015 ], "watcher_steam_id": [ - 2011 + 2015 ], "__typename": [ - 70 + 74 ] }, "match_demo_sessions_min_fields": { "created_at": [ - 3421 + 3466 ], "error_message": [ - 70 + 74 ], "game_server_node_id": [ - 70 + 74 ], "id": [ - 3818 + 3863 ], "k8s_job_name": [ - 70 + 74 ], "last_activity_at": [ - 3421 + 3466 ], "last_status_at": [ - 3421 + 3466 ], "match_id": [ - 3818 + 3863 ], "match_map_demo_id": [ - 3818 + 3863 ], "match_map_id": [ - 3818 + 3863 ], "status": [ - 70 + 74 ], "stream_url": [ - 70 + 74 ], "watcher_steam_id": [ - 169 + 173 ], "__typename": [ - 70 + 74 ] }, "match_demo_sessions_min_order_by": { "created_at": [ - 2011 + 2015 ], "error_message": [ - 2011 + 2015 ], "game_server_node_id": [ - 2011 + 2015 ], "id": [ - 2011 + 2015 ], "k8s_job_name": [ - 2011 + 2015 ], "last_activity_at": [ - 2011 + 2015 ], "last_status_at": [ - 2011 + 2015 ], "match_id": [ - 2011 + 2015 ], "match_map_demo_id": [ - 2011 + 2015 ], "match_map_id": [ - 2011 + 2015 ], "status": [ - 2011 + 2015 ], "stream_url": [ - 2011 + 2015 ], "watcher_steam_id": [ - 2011 + 2015 ], "__typename": [ - 70 + 74 ] }, "match_demo_sessions_mutation_response": { @@ -24055,150 +24147,150 @@ export default { 38 ], "returning": [ - 1415 + 1419 ], "__typename": [ - 70 + 74 ] }, "match_demo_sessions_on_conflict": { "constraint": [ - 1426 + 1430 ], "update_columns": [ - 1453 + 1457 ], "where": [ - 1425 + 1429 ], "__typename": [ - 70 + 74 ] }, "match_demo_sessions_order_by": { "created_at": [ - 2011 + 2015 ], "error_message": [ - 2011 + 2015 ], "game_server_node": [ - 1139 + 1143 ], "game_server_node_id": [ - 2011 + 2015 ], "id": [ - 2011 + 2015 ], "k8s_job_name": [ - 2011 + 2015 ], "last_activity_at": [ - 2011 + 2015 ], "last_status_at": [ - 2011 + 2015 ], "match": [ - 1846 + 1850 ], "match_id": [ - 2011 + 2015 ], "match_map": [ - 1684 + 1688 ], "match_map_demo": [ - 1574 + 1578 ], "match_map_demo_id": [ - 2011 + 2015 ], "match_map_id": [ - 2011 + 2015 ], "status": [ - 2011 + 2015 ], "status_history": [ - 2011 + 2015 ], "stream_url": [ - 2011 + 2015 ], "watcher": [ - 2891 + 2927 ], "watcher_steam_id": [ - 2011 + 2015 ], "__typename": [ - 70 + 74 ] }, "match_demo_sessions_pk_columns_input": { "id": [ - 3818 + 3863 ], "__typename": [ - 70 + 74 ] }, "match_demo_sessions_prepend_input": { "status_history": [ - 1235 + 1239 ], "__typename": [ - 70 + 74 ] }, "match_demo_sessions_select_column": {}, "match_demo_sessions_set_input": { "created_at": [ - 3421 + 3466 ], "error_message": [ - 70 + 74 ], "game_server_node_id": [ - 70 + 74 ], "id": [ - 3818 + 3863 ], "k8s_job_name": [ - 70 + 74 ], "last_activity_at": [ - 3421 + 3466 ], "last_status_at": [ - 3421 + 3466 ], "match_id": [ - 3818 + 3863 ], "match_map_demo_id": [ - 3818 + 3863 ], "match_map_id": [ - 3818 + 3863 ], "status": [ - 70 + 74 ], "status_history": [ - 1235 + 1239 ], "stream_url": [ - 70 + 74 ], "watcher_steam_id": [ - 169 + 173 ], "__typename": [ - 70 + 74 ] }, "match_demo_sessions_stddev_fields": { @@ -24206,15 +24298,15 @@ export default { 29 ], "__typename": [ - 70 + 74 ] }, "match_demo_sessions_stddev_order_by": { "watcher_steam_id": [ - 2011 + 2015 ], "__typename": [ - 70 + 74 ] }, "match_demo_sessions_stddev_pop_fields": { @@ -24222,15 +24314,15 @@ export default { 29 ], "__typename": [ - 70 + 74 ] }, "match_demo_sessions_stddev_pop_order_by": { "watcher_steam_id": [ - 2011 + 2015 ], "__typename": [ - 70 + 74 ] }, "match_demo_sessions_stddev_samp_fields": { @@ -24238,119 +24330,119 @@ export default { 29 ], "__typename": [ - 70 + 74 ] }, "match_demo_sessions_stddev_samp_order_by": { "watcher_steam_id": [ - 2011 + 2015 ], "__typename": [ - 70 + 74 ] }, "match_demo_sessions_stream_cursor_input": { "initial_value": [ - 1450 + 1454 ], "ordering": [ - 224 + 228 ], "__typename": [ - 70 + 74 ] }, "match_demo_sessions_stream_cursor_value_input": { "created_at": [ - 3421 + 3466 ], "error_message": [ - 70 + 74 ], "game_server_node_id": [ - 70 + 74 ], "id": [ - 3818 + 3863 ], "k8s_job_name": [ - 70 + 74 ], "last_activity_at": [ - 3421 + 3466 ], "last_status_at": [ - 3421 + 3466 ], "match_id": [ - 3818 + 3863 ], "match_map_demo_id": [ - 3818 + 3863 ], "match_map_id": [ - 3818 + 3863 ], "status": [ - 70 + 74 ], "status_history": [ - 1235 + 1239 ], "stream_url": [ - 70 + 74 ], "watcher_steam_id": [ - 169 + 173 ], "__typename": [ - 70 + 74 ] }, "match_demo_sessions_sum_fields": { "watcher_steam_id": [ - 169 + 173 ], "__typename": [ - 70 + 74 ] }, "match_demo_sessions_sum_order_by": { "watcher_steam_id": [ - 2011 + 2015 ], "__typename": [ - 70 + 74 ] }, "match_demo_sessions_update_column": {}, "match_demo_sessions_updates": { "_append": [ - 1421 + 1425 ], "_delete_at_path": [ - 1427 + 1431 ], "_delete_elem": [ - 1428 + 1432 ], "_delete_key": [ - 1429 + 1433 ], "_inc": [ - 1430 + 1434 ], "_prepend": [ - 1440 + 1444 ], "_set": [ - 1442 + 1446 ], "where": [ - 1425 + 1429 ], "__typename": [ - 70 + 74 ] }, "match_demo_sessions_var_pop_fields": { @@ -24358,15 +24450,15 @@ export default { 29 ], "__typename": [ - 70 + 74 ] }, "match_demo_sessions_var_pop_order_by": { "watcher_steam_id": [ - 2011 + 2015 ], "__typename": [ - 70 + 74 ] }, "match_demo_sessions_var_samp_fields": { @@ -24374,15 +24466,15 @@ export default { 29 ], "__typename": [ - 70 + 74 ] }, "match_demo_sessions_var_samp_order_by": { "watcher_steam_id": [ - 2011 + 2015 ], "__typename": [ - 70 + 74 ] }, "match_demo_sessions_variance_fields": { @@ -24390,15 +24482,15 @@ export default { 29 ], "__typename": [ - 70 + 74 ] }, "match_demo_sessions_variance_order_by": { "watcher_steam_id": [ - 2011 + 2015 ], "__typename": [ - 70 + 74 ] }, "match_lineup_players": { @@ -24409,115 +24501,115 @@ export default { 3 ], "discord_id": [ - 70 + 74 ], "id": [ - 3818 + 3863 ], "lineup": [ - 1506 + 1510 ], "match_lineup_id": [ - 3818 + 3863 ], "placeholder_name": [ - 70 + 74 ], "player": [ - 2878 + 2914 ], "steam_id": [ - 169 + 173 ], "__typename": [ - 70 + 74 ] }, "match_lineup_players_aggregate": { "aggregate": [ - 1467 + 1471 ], "nodes": [ - 1461 + 1465 ], "__typename": [ - 70 + 74 ] }, "match_lineup_players_aggregate_bool_exp": { "bool_and": [ - 1464 + 1468 ], "bool_or": [ - 1465 + 1469 ], "count": [ - 1466 + 1470 ], "__typename": [ - 70 + 74 ] }, "match_lineup_players_aggregate_bool_exp_bool_and": { "arguments": [ - 1485 + 1489 ], "distinct": [ 3 ], "filter": [ - 1472 + 1476 ], "predicate": [ 4 ], "__typename": [ - 70 + 74 ] }, "match_lineup_players_aggregate_bool_exp_bool_or": { "arguments": [ - 1486 + 1490 ], "distinct": [ 3 ], "filter": [ - 1472 + 1476 ], "predicate": [ 4 ], "__typename": [ - 70 + 74 ] }, "match_lineup_players_aggregate_bool_exp_count": { "arguments": [ - 1484 + 1488 ], "distinct": [ 3 ], "filter": [ - 1472 + 1476 ], "predicate": [ 39 ], "__typename": [ - 70 + 74 ] }, "match_lineup_players_aggregate_fields": { "avg": [ - 1470 + 1474 ], "count": [ 38, { "columns": [ - 1484, + 1488, "[match_lineup_players_select_column!]" ], "distinct": [ @@ -24526,83 +24618,83 @@ export default { } ], "max": [ - 1476 + 1480 ], "min": [ - 1478 + 1482 ], "stddev": [ - 1488 + 1492 ], "stddev_pop": [ - 1490 + 1494 ], "stddev_samp": [ - 1492 + 1496 ], "sum": [ - 1496 + 1500 ], "var_pop": [ - 1500 + 1504 ], "var_samp": [ - 1502 + 1506 ], "variance": [ - 1504 + 1508 ], "__typename": [ - 70 + 74 ] }, "match_lineup_players_aggregate_order_by": { "avg": [ - 1471 + 1475 ], "count": [ - 2011 + 2015 ], "max": [ - 1477 + 1481 ], "min": [ - 1479 + 1483 ], "stddev": [ - 1489 + 1493 ], "stddev_pop": [ - 1491 + 1495 ], "stddev_samp": [ - 1493 + 1497 ], "sum": [ - 1497 + 1501 ], "var_pop": [ - 1501 + 1505 ], "var_samp": [ - 1503 + 1507 ], "variance": [ - 1505 + 1509 ], "__typename": [ - 70 + 74 ] }, "match_lineup_players_arr_rel_insert_input": { "data": [ - 1475 + 1479 ], "on_conflict": [ - 1481 + 1485 ], "__typename": [ - 70 + 74 ] }, "match_lineup_players_avg_fields": { @@ -24610,26 +24702,26 @@ export default { 29 ], "__typename": [ - 70 + 74 ] }, "match_lineup_players_avg_order_by": { "steam_id": [ - 2011 + 2015 ], "__typename": [ - 70 + 74 ] }, "match_lineup_players_bool_exp": { "_and": [ - 1472 + 1476 ], "_not": [ - 1472 + 1476 ], "_or": [ - 1472 + 1476 ], "captain": [ 4 @@ -24638,37 +24730,37 @@ export default { 4 ], "discord_id": [ - 72 + 76 ], "id": [ - 3820 + 3865 ], "lineup": [ - 1515 + 1519 ], "match_lineup_id": [ - 3820 + 3865 ], "placeholder_name": [ - 72 + 76 ], "player": [ - 2882 + 2918 ], "steam_id": [ - 171 + 175 ], "__typename": [ - 70 + 74 ] }, "match_lineup_players_constraint": {}, "match_lineup_players_inc_input": { "steam_id": [ - 169 + 173 ], "__typename": [ - 70 + 74 ] }, "match_lineup_players_insert_input": { @@ -24679,108 +24771,108 @@ export default { 3 ], "discord_id": [ - 70 + 74 ], "id": [ - 3818 + 3863 ], "lineup": [ - 1524 + 1528 ], "match_lineup_id": [ - 3818 + 3863 ], "placeholder_name": [ - 70 + 74 ], "player": [ - 2889 + 2925 ], "steam_id": [ - 169 + 173 ], "__typename": [ - 70 + 74 ] }, "match_lineup_players_max_fields": { "discord_id": [ - 70 + 74 ], "id": [ - 3818 + 3863 ], "match_lineup_id": [ - 3818 + 3863 ], "placeholder_name": [ - 70 + 74 ], "steam_id": [ - 169 + 173 ], "__typename": [ - 70 + 74 ] }, "match_lineup_players_max_order_by": { "discord_id": [ - 2011 + 2015 ], "id": [ - 2011 + 2015 ], "match_lineup_id": [ - 2011 + 2015 ], "placeholder_name": [ - 2011 + 2015 ], "steam_id": [ - 2011 + 2015 ], "__typename": [ - 70 + 74 ] }, "match_lineup_players_min_fields": { "discord_id": [ - 70 + 74 ], "id": [ - 3818 + 3863 ], "match_lineup_id": [ - 3818 + 3863 ], "placeholder_name": [ - 70 + 74 ], "steam_id": [ - 169 + 173 ], "__typename": [ - 70 + 74 ] }, "match_lineup_players_min_order_by": { "discord_id": [ - 2011 + 2015 ], "id": [ - 2011 + 2015 ], "match_lineup_id": [ - 2011 + 2015 ], "placeholder_name": [ - 2011 + 2015 ], "steam_id": [ - 2011 + 2015 ], "__typename": [ - 70 + 74 ] }, "match_lineup_players_mutation_response": { @@ -24788,64 +24880,64 @@ export default { 38 ], "returning": [ - 1461 + 1465 ], "__typename": [ - 70 + 74 ] }, "match_lineup_players_on_conflict": { "constraint": [ - 1473 + 1477 ], "update_columns": [ - 1498 + 1502 ], "where": [ - 1472 + 1476 ], "__typename": [ - 70 + 74 ] }, "match_lineup_players_order_by": { "captain": [ - 2011 + 2015 ], "checked_in": [ - 2011 + 2015 ], "discord_id": [ - 2011 + 2015 ], "id": [ - 2011 + 2015 ], "lineup": [ - 1526 + 1530 ], "match_lineup_id": [ - 2011 + 2015 ], "placeholder_name": [ - 2011 + 2015 ], "player": [ - 2891 + 2927 ], "steam_id": [ - 2011 + 2015 ], "__typename": [ - 70 + 74 ] }, "match_lineup_players_pk_columns_input": { "id": [ - 3818 + 3863 ], "__typename": [ - 70 + 74 ] }, "match_lineup_players_select_column": {}, @@ -24859,22 +24951,22 @@ export default { 3 ], "discord_id": [ - 70 + 74 ], "id": [ - 3818 + 3863 ], "match_lineup_id": [ - 3818 + 3863 ], "placeholder_name": [ - 70 + 74 ], "steam_id": [ - 169 + 173 ], "__typename": [ - 70 + 74 ] }, "match_lineup_players_stddev_fields": { @@ -24882,15 +24974,15 @@ export default { 29 ], "__typename": [ - 70 + 74 ] }, "match_lineup_players_stddev_order_by": { "steam_id": [ - 2011 + 2015 ], "__typename": [ - 70 + 74 ] }, "match_lineup_players_stddev_pop_fields": { @@ -24898,15 +24990,15 @@ export default { 29 ], "__typename": [ - 70 + 74 ] }, "match_lineup_players_stddev_pop_order_by": { "steam_id": [ - 2011 + 2015 ], "__typename": [ - 70 + 74 ] }, "match_lineup_players_stddev_samp_fields": { @@ -24914,26 +25006,26 @@ export default { 29 ], "__typename": [ - 70 + 74 ] }, "match_lineup_players_stddev_samp_order_by": { "steam_id": [ - 2011 + 2015 ], "__typename": [ - 70 + 74 ] }, "match_lineup_players_stream_cursor_input": { "initial_value": [ - 1495 + 1499 ], "ordering": [ - 224 + 228 ], "__typename": [ - 70 + 74 ] }, "match_lineup_players_stream_cursor_value_input": { @@ -24944,53 +25036,53 @@ export default { 3 ], "discord_id": [ - 70 + 74 ], "id": [ - 3818 + 3863 ], "match_lineup_id": [ - 3818 + 3863 ], "placeholder_name": [ - 70 + 74 ], "steam_id": [ - 169 + 173 ], "__typename": [ - 70 + 74 ] }, "match_lineup_players_sum_fields": { "steam_id": [ - 169 + 173 ], "__typename": [ - 70 + 74 ] }, "match_lineup_players_sum_order_by": { "steam_id": [ - 2011 + 2015 ], "__typename": [ - 70 + 74 ] }, "match_lineup_players_update_column": {}, "match_lineup_players_updates": { "_inc": [ - 1474 + 1478 ], "_set": [ - 1487 + 1491 ], "where": [ - 1472 + 1476 ], "__typename": [ - 70 + 74 ] }, "match_lineup_players_var_pop_fields": { @@ -24998,15 +25090,15 @@ export default { 29 ], "__typename": [ - 70 + 74 ] }, "match_lineup_players_var_pop_order_by": { "steam_id": [ - 2011 + 2015 ], "__typename": [ - 70 + 74 ] }, "match_lineup_players_var_samp_fields": { @@ -25014,15 +25106,15 @@ export default { 29 ], "__typename": [ - 70 + 74 ] }, "match_lineup_players_var_samp_order_by": { "steam_id": [ - 2011 + 2015 ], "__typename": [ - 70 + 74 ] }, "match_lineup_players_variance_fields": { @@ -25030,15 +25122,15 @@ export default { 29 ], "__typename": [ - 70 + 74 ] }, "match_lineup_players_variance_order_by": { "steam_id": [ - 2011 + 2015 ], "__typename": [ - 70 + 74 ] }, "match_lineups": { @@ -25052,16 +25144,16 @@ export default { 3 ], "captain": [ - 3839 + 3884 ], "coach": [ - 2878 + 2914 ], "coach_steam_id": [ - 169 + 173 ], "id": [ - 3818 + 3863 ], "is_on_lineup": [ 3 @@ -25076,10 +25168,10 @@ export default { 3 ], "lineup_players": [ - 1461, + 1465, { "distinct_on": [ - 1484, + 1488, "[match_lineup_players_select_column!]" ], "limit": [ @@ -25089,19 +25181,19 @@ export default { 38 ], "order_by": [ - 1482, + 1486, "[match_lineup_players_order_by!]" ], "where": [ - 1472 + 1476 ] } ], "lineup_players_aggregate": [ - 1462, + 1466, { "distinct_on": [ - 1484, + 1488, "[match_lineup_players_select_column!]" ], "limit": [ @@ -25111,25 +25203,25 @@ export default { 38 ], "order_by": [ - 1482, + 1486, "[match_lineup_players_order_by!]" ], "where": [ - 1472 + 1476 ] } ], "match": [ - 1826 + 1830 ], "match_id": [ - 3818 + 3863 ], "match_veto_picks": [ - 1640, + 1644, { "distinct_on": [ - 1658, + 1662, "[match_map_veto_picks_select_column!]" ], "limit": [ @@ -25139,19 +25231,19 @@ export default { 38 ], "order_by": [ - 1656, + 1660, "[match_map_veto_picks_order_by!]" ], "where": [ - 1647 + 1651 ] } ], "match_veto_picks_aggregate": [ - 1641, + 1645, { "distinct_on": [ - 1658, + 1662, "[match_map_veto_picks_select_column!]" ], "limit": [ @@ -25161,75 +25253,75 @@ export default { 38 ], "order_by": [ - 1656, + 1660, "[match_map_veto_picks_order_by!]" ], "where": [ - 1647 + 1651 ] } ], "name": [ - 70 + 74 ], "team": [ - 3378 + 3423 ], "team_id": [ - 3818 + 3863 ], "team_name": [ - 70 + 74 ], "__typename": [ - 70 + 74 ] }, "match_lineups_aggregate": { "aggregate": [ - 1510 + 1514 ], "nodes": [ - 1506 + 1510 ], "__typename": [ - 70 + 74 ] }, "match_lineups_aggregate_bool_exp": { "count": [ - 1509 + 1513 ], "__typename": [ - 70 + 74 ] }, "match_lineups_aggregate_bool_exp_count": { "arguments": [ - 1528 + 1532 ], "distinct": [ 3 ], "filter": [ - 1515 + 1519 ], "predicate": [ 39 ], "__typename": [ - 70 + 74 ] }, "match_lineups_aggregate_fields": { "avg": [ - 1513 + 1517 ], "count": [ 38, { "columns": [ - 1528, + 1532, "[match_lineups_select_column!]" ], "distinct": [ @@ -25238,83 +25330,83 @@ export default { } ], "max": [ - 1519 + 1523 ], "min": [ - 1521 + 1525 ], "stddev": [ - 1530 + 1534 ], "stddev_pop": [ - 1532 + 1536 ], "stddev_samp": [ - 1534 + 1538 ], "sum": [ - 1538 + 1542 ], "var_pop": [ - 1542 + 1546 ], "var_samp": [ - 1544 + 1548 ], "variance": [ - 1546 + 1550 ], "__typename": [ - 70 + 74 ] }, "match_lineups_aggregate_order_by": { "avg": [ - 1514 + 1518 ], "count": [ - 2011 + 2015 ], "max": [ - 1520 + 1524 ], "min": [ - 1522 + 1526 ], "stddev": [ - 1531 + 1535 ], "stddev_pop": [ - 1533 + 1537 ], "stddev_samp": [ - 1535 + 1539 ], "sum": [ - 1539 + 1543 ], "var_pop": [ - 1543 + 1547 ], "var_samp": [ - 1545 + 1549 ], "variance": [ - 1547 + 1551 ], "__typename": [ - 70 + 74 ] }, "match_lineups_arr_rel_insert_input": { "data": [ - 1518 + 1522 ], "on_conflict": [ - 1525 + 1529 ], "__typename": [ - 70 + 74 ] }, "match_lineups_avg_fields": { @@ -25322,26 +25414,26 @@ export default { 29 ], "__typename": [ - 70 + 74 ] }, "match_lineups_avg_order_by": { "coach_steam_id": [ - 2011 + 2015 ], "__typename": [ - 70 + 74 ] }, "match_lineups_bool_exp": { "_and": [ - 1515 + 1519 ], "_not": [ - 1515 + 1519 ], "_or": [ - 1515 + 1519 ], "can_pick_map_veto": [ 4 @@ -25353,16 +25445,16 @@ export default { 4 ], "captain": [ - 3843 + 3888 ], "coach": [ - 2882 + 2918 ], "coach_steam_id": [ - 171 + 175 ], "id": [ - 3820 + 3865 ], "is_on_lineup": [ 4 @@ -25377,170 +25469,170 @@ export default { 4 ], "lineup_players": [ - 1472 + 1476 ], "lineup_players_aggregate": [ - 1463 + 1467 ], "match": [ - 1835 + 1839 ], "match_id": [ - 3820 + 3865 ], "match_veto_picks": [ - 1647 + 1651 ], "match_veto_picks_aggregate": [ - 1642 + 1646 ], "name": [ - 72 + 76 ], "team": [ - 3387 + 3432 ], "team_id": [ - 3820 + 3865 ], "team_name": [ - 72 + 76 ], "__typename": [ - 70 + 74 ] }, "match_lineups_constraint": {}, "match_lineups_inc_input": { "coach_steam_id": [ - 169 + 173 ], "__typename": [ - 70 + 74 ] }, "match_lineups_insert_input": { "captain": [ - 3849 + 3894 ], "coach": [ - 2889 + 2925 ], "coach_steam_id": [ - 169 + 173 ], "id": [ - 3818 + 3863 ], "lineup_players": [ - 1469 + 1473 ], "match": [ - 1844 + 1848 ], "match_id": [ - 3818 + 3863 ], "match_veto_picks": [ - 1646 + 1650 ], "team": [ - 3396 + 3441 ], "team_id": [ - 3818 + 3863 ], "team_name": [ - 70 + 74 ], "__typename": [ - 70 + 74 ] }, "match_lineups_max_fields": { "coach_steam_id": [ - 169 + 173 ], "id": [ - 3818 + 3863 ], "match_id": [ - 3818 + 3863 ], "name": [ - 70 + 74 ], "team_id": [ - 3818 + 3863 ], "team_name": [ - 70 + 74 ], "__typename": [ - 70 + 74 ] }, "match_lineups_max_order_by": { "coach_steam_id": [ - 2011 + 2015 ], "id": [ - 2011 + 2015 ], "match_id": [ - 2011 + 2015 ], "team_id": [ - 2011 + 2015 ], "team_name": [ - 2011 + 2015 ], "__typename": [ - 70 + 74 ] }, "match_lineups_min_fields": { "coach_steam_id": [ - 169 + 173 ], "id": [ - 3818 + 3863 ], "match_id": [ - 3818 + 3863 ], "name": [ - 70 + 74 ], "team_id": [ - 3818 + 3863 ], "team_name": [ - 70 + 74 ], "__typename": [ - 70 + 74 ] }, "match_lineups_min_order_by": { "coach_steam_id": [ - 2011 + 2015 ], "id": [ - 2011 + 2015 ], "match_id": [ - 2011 + 2015 ], "team_id": [ - 2011 + 2015 ], "team_name": [ - 2011 + 2015 ], "__typename": [ - 70 + 74 ] }, "match_lineups_mutation_response": { @@ -25548,126 +25640,126 @@ export default { 38 ], "returning": [ - 1506 + 1510 ], "__typename": [ - 70 + 74 ] }, "match_lineups_obj_rel_insert_input": { "data": [ - 1518 + 1522 ], "on_conflict": [ - 1525 + 1529 ], "__typename": [ - 70 + 74 ] }, "match_lineups_on_conflict": { "constraint": [ - 1516 + 1520 ], "update_columns": [ - 1540 + 1544 ], "where": [ - 1515 + 1519 ], "__typename": [ - 70 + 74 ] }, "match_lineups_order_by": { "can_pick_map_veto": [ - 2011 + 2015 ], "can_pick_region_veto": [ - 2011 + 2015 ], "can_update_lineup": [ - 2011 + 2015 ], "captain": [ - 3850 + 3895 ], "coach": [ - 2891 + 2927 ], "coach_steam_id": [ - 2011 + 2015 ], "id": [ - 2011 + 2015 ], "is_on_lineup": [ - 2011 + 2015 ], "is_picking_map_veto": [ - 2011 + 2015 ], "is_picking_region_veto": [ - 2011 + 2015 ], "is_ready": [ - 2011 + 2015 ], "lineup_players_aggregate": [ - 1468 + 1472 ], "match": [ - 1846 + 1850 ], "match_id": [ - 2011 + 2015 ], "match_veto_picks_aggregate": [ - 1645 + 1649 ], "name": [ - 2011 + 2015 ], "team": [ - 3398 + 3443 ], "team_id": [ - 2011 + 2015 ], "team_name": [ - 2011 + 2015 ], "__typename": [ - 70 + 74 ] }, "match_lineups_pk_columns_input": { "id": [ - 3818 + 3863 ], "__typename": [ - 70 + 74 ] }, "match_lineups_select_column": {}, "match_lineups_set_input": { "coach_steam_id": [ - 169 + 173 ], "id": [ - 3818 + 3863 ], "match_id": [ - 3818 + 3863 ], "team_id": [ - 3818 + 3863 ], "team_name": [ - 70 + 74 ], "__typename": [ - 70 + 74 ] }, "match_lineups_stddev_fields": { @@ -25675,15 +25767,15 @@ export default { 29 ], "__typename": [ - 70 + 74 ] }, "match_lineups_stddev_order_by": { "coach_steam_id": [ - 2011 + 2015 ], "__typename": [ - 70 + 74 ] }, "match_lineups_stddev_pop_fields": { @@ -25691,15 +25783,15 @@ export default { 29 ], "__typename": [ - 70 + 74 ] }, "match_lineups_stddev_pop_order_by": { "coach_steam_id": [ - 2011 + 2015 ], "__typename": [ - 70 + 74 ] }, "match_lineups_stddev_samp_fields": { @@ -25707,77 +25799,77 @@ export default { 29 ], "__typename": [ - 70 + 74 ] }, "match_lineups_stddev_samp_order_by": { "coach_steam_id": [ - 2011 + 2015 ], "__typename": [ - 70 + 74 ] }, "match_lineups_stream_cursor_input": { "initial_value": [ - 1537 + 1541 ], "ordering": [ - 224 + 228 ], "__typename": [ - 70 + 74 ] }, "match_lineups_stream_cursor_value_input": { "coach_steam_id": [ - 169 + 173 ], "id": [ - 3818 + 3863 ], "match_id": [ - 3818 + 3863 ], "team_id": [ - 3818 + 3863 ], "team_name": [ - 70 + 74 ], "__typename": [ - 70 + 74 ] }, "match_lineups_sum_fields": { "coach_steam_id": [ - 169 + 173 ], "__typename": [ - 70 + 74 ] }, "match_lineups_sum_order_by": { "coach_steam_id": [ - 2011 + 2015 ], "__typename": [ - 70 + 74 ] }, "match_lineups_update_column": {}, "match_lineups_updates": { "_inc": [ - 1517 + 1521 ], "_set": [ - 1529 + 1533 ], "where": [ - 1515 + 1519 ], "__typename": [ - 70 + 74 ] }, "match_lineups_var_pop_fields": { @@ -25785,15 +25877,15 @@ export default { 29 ], "__typename": [ - 70 + 74 ] }, "match_lineups_var_pop_order_by": { "coach_steam_id": [ - 2011 + 2015 ], "__typename": [ - 70 + 74 ] }, "match_lineups_var_samp_fields": { @@ -25801,15 +25893,15 @@ export default { 29 ], "__typename": [ - 70 + 74 ] }, "match_lineups_var_samp_order_by": { "coach_steam_id": [ - 2011 + 2015 ], "__typename": [ - 70 + 74 ] }, "match_lineups_variance_fields": { @@ -25817,31 +25909,31 @@ export default { 29 ], "__typename": [ - 70 + 74 ] }, "match_lineups_variance_order_by": { "coach_steam_id": [ - 2011 + 2015 ], "__typename": [ - 70 + 74 ] }, "match_map_demos": { "bombs": [ - 1235, + 1239, { "path": [ - 70 + 74 ] } ], "clip_render_jobs": [ - 174, + 178, { "distinct_on": [ - 202, + 206, "[clip_render_jobs_select_column!]" ], "limit": [ @@ -25851,19 +25943,19 @@ export default { 38 ], "order_by": [ - 199, + 203, "[clip_render_jobs_order_by!]" ], "where": [ - 186 + 190 ] } ], "clip_render_jobs_aggregate": [ - 175, + 179, { "distinct_on": [ - 202, + 206, "[clip_render_jobs_select_column!]" ], "limit": [ @@ -25873,25 +25965,25 @@ export default { 38 ], "order_by": [ - 199, + 203, "[clip_render_jobs_order_by!]" ], "where": [ - 186 + 190 ] } ], "created_at": [ - 3421 + 3466 ], "cs2_build": [ - 70 + 74 ], "demo_sessions": [ - 1415, + 1419, { "distinct_on": [ - 1441, + 1445, "[match_demo_sessions_select_column!]" ], "limit": [ @@ -25901,19 +25993,19 @@ export default { 38 ], "order_by": [ - 1438, + 1442, "[match_demo_sessions_order_by!]" ], "where": [ - 1425 + 1429 ] } ], "demo_sessions_aggregate": [ - 1416, + 1420, { "distinct_on": [ - 1441, + 1445, "[match_demo_sessions_select_column!]" ], "limit": [ @@ -25923,48 +26015,48 @@ export default { 38 ], "order_by": [ - 1438, + 1442, "[match_demo_sessions_order_by!]" ], "where": [ - 1425 + 1429 ] } ], "download_url": [ - 70 + 74 ], "duration_seconds": [ 29 ], "file": [ - 70 + 74 ], "geometry_validated": [ 3 ], "id": [ - 3818 + 3863 ], "kills": [ - 1235, + 1239, { "path": [ - 70 + 74 ] } ], "map_name": [ - 70 + 74 ], "match": [ - 1826 + 1830 ], "match_clips": [ - 1373, + 1377, { "distinct_on": [ - 1395, + 1399, "[match_clips_select_column!]" ], "limit": [ @@ -25974,19 +26066,19 @@ export default { 38 ], "order_by": [ - 1393, + 1397, "[match_clips_order_by!]" ], "where": [ - 1382 + 1386 ] } ], "match_clips_aggregate": [ - 1374, + 1378, { "distinct_on": [ - 1395, + 1399, "[match_clips_select_column!]" ], "limit": [ @@ -25996,48 +26088,48 @@ export default { 38 ], "order_by": [ - 1393, + 1397, "[match_clips_order_by!]" ], "where": [ - 1382 + 1386 ] } ], "match_id": [ - 3818 + 3863 ], "match_map": [ - 1664 + 1668 ], "match_map_id": [ - 3818 + 3863 ], "metadata_parsed_at": [ - 3421 + 3466 ], "playback_file": [ - 70 + 74 ], "playback_size": [ 38 ], "playback_url": [ - 70 + 74 ], "players": [ - 1235, + 1239, { "path": [ - 70 + 74 ] } ], "round_ticks": [ - 1235, + 1239, { "path": [ - 70 + 74 ] } ], @@ -26051,97 +26143,97 @@ export default { 38 ], "workshop_id": [ - 70 + 74 ], "__typename": [ - 70 + 74 ] }, "match_map_demos_aggregate": { "aggregate": [ - 1554 + 1558 ], "nodes": [ - 1548 + 1552 ], "__typename": [ - 70 + 74 ] }, "match_map_demos_aggregate_bool_exp": { "bool_and": [ - 1551 + 1555 ], "bool_or": [ - 1552 + 1556 ], "count": [ - 1553 + 1557 ], "__typename": [ - 70 + 74 ] }, "match_map_demos_aggregate_bool_exp_bool_and": { "arguments": [ - 1578 + 1582 ], "distinct": [ 3 ], "filter": [ - 1560 + 1564 ], "predicate": [ 4 ], "__typename": [ - 70 + 74 ] }, "match_map_demos_aggregate_bool_exp_bool_or": { "arguments": [ - 1579 + 1583 ], "distinct": [ 3 ], "filter": [ - 1560 + 1564 ], "predicate": [ 4 ], "__typename": [ - 70 + 74 ] }, "match_map_demos_aggregate_bool_exp_count": { "arguments": [ - 1577 + 1581 ], "distinct": [ 3 ], "filter": [ - 1560 + 1564 ], "predicate": [ 39 ], "__typename": [ - 70 + 74 ] }, "match_map_demos_aggregate_fields": { "avg": [ - 1558 + 1562 ], "count": [ 38, { "columns": [ - 1577, + 1581, "[match_map_demos_select_column!]" ], "distinct": [ @@ -26150,100 +26242,100 @@ export default { } ], "max": [ - 1567 + 1571 ], "min": [ - 1569 + 1573 ], "stddev": [ - 1581 + 1585 ], "stddev_pop": [ - 1583 + 1587 ], "stddev_samp": [ - 1585 + 1589 ], "sum": [ - 1589 + 1593 ], "var_pop": [ - 1593 + 1597 ], "var_samp": [ - 1595 + 1599 ], "variance": [ - 1597 + 1601 ], "__typename": [ - 70 + 74 ] }, "match_map_demos_aggregate_order_by": { "avg": [ - 1559 + 1563 ], "count": [ - 2011 + 2015 ], "max": [ - 1568 + 1572 ], "min": [ - 1570 + 1574 ], "stddev": [ - 1582 + 1586 ], "stddev_pop": [ - 1584 + 1588 ], "stddev_samp": [ - 1586 + 1590 ], "sum": [ - 1590 + 1594 ], "var_pop": [ - 1594 + 1598 ], "var_samp": [ - 1596 + 1600 ], "variance": [ - 1598 + 1602 ], "__typename": [ - 70 + 74 ] }, "match_map_demos_append_input": { "bombs": [ - 1235 + 1239 ], "kills": [ - 1235 + 1239 ], "players": [ - 1235 + 1239 ], "round_ticks": [ - 1235 + 1239 ], "__typename": [ - 70 + 74 ] }, "match_map_demos_arr_rel_insert_input": { "data": [ - 1566 + 1570 ], "on_conflict": [ - 1573 + 1577 ], "__typename": [ - 70 + 74 ] }, "match_map_demos_avg_fields": { @@ -26263,116 +26355,116 @@ export default { 29 ], "__typename": [ - 70 + 74 ] }, "match_map_demos_avg_order_by": { "duration_seconds": [ - 2011 + 2015 ], "playback_size": [ - 2011 + 2015 ], "size": [ - 2011 + 2015 ], "tick_rate": [ - 2011 + 2015 ], "total_ticks": [ - 2011 + 2015 ], "__typename": [ - 70 + 74 ] }, "match_map_demos_bool_exp": { "_and": [ - 1560 + 1564 ], "_not": [ - 1560 + 1564 ], "_or": [ - 1560 + 1564 ], "bombs": [ - 1237 + 1241 ], "clip_render_jobs": [ - 186 + 190 ], "clip_render_jobs_aggregate": [ - 176 + 180 ], "created_at": [ - 3422 + 3467 ], "cs2_build": [ - 72 + 76 ], "demo_sessions": [ - 1425 + 1429 ], "demo_sessions_aggregate": [ - 1417 + 1421 ], "download_url": [ - 72 + 76 ], "duration_seconds": [ 30 ], "file": [ - 72 + 76 ], "geometry_validated": [ 4 ], "id": [ - 3820 + 3865 ], "kills": [ - 1237 + 1241 ], "map_name": [ - 72 + 76 ], "match": [ - 1835 + 1839 ], "match_clips": [ - 1382 + 1386 ], "match_clips_aggregate": [ - 1375 + 1379 ], "match_id": [ - 3820 + 3865 ], "match_map": [ - 1673 + 1677 ], "match_map_id": [ - 3820 + 3865 ], "metadata_parsed_at": [ - 3422 + 3467 ], "playback_file": [ - 72 + 76 ], "playback_size": [ 39 ], "playback_url": [ - 72 + 76 ], "players": [ - 1237 + 1241 ], "round_ticks": [ - 1237 + 1241 ], "size": [ 39 @@ -26384,28 +26476,28 @@ export default { 39 ], "workshop_id": [ - 72 + 76 ], "__typename": [ - 70 + 74 ] }, "match_map_demos_constraint": {}, "match_map_demos_delete_at_path_input": { "bombs": [ - 70 + 74 ], "kills": [ - 70 + 74 ], "players": [ - 70 + 74 ], "round_ticks": [ - 70 + 74 ], "__typename": [ - 70 + 74 ] }, "match_map_demos_delete_elem_input": { @@ -26422,24 +26514,24 @@ export default { 38 ], "__typename": [ - 70 + 74 ] }, "match_map_demos_delete_key_input": { "bombs": [ - 70 + 74 ], "kills": [ - 70 + 74 ], "players": [ - 70 + 74 ], "round_ticks": [ - 70 + 74 ], "__typename": [ - 70 + 74 ] }, "match_map_demos_inc_input": { @@ -26456,69 +26548,69 @@ export default { 38 ], "__typename": [ - 70 + 74 ] }, "match_map_demos_insert_input": { "bombs": [ - 1235 + 1239 ], "clip_render_jobs": [ - 183 + 187 ], "created_at": [ - 3421 + 3466 ], "cs2_build": [ - 70 + 74 ], "demo_sessions": [ - 1422 + 1426 ], "file": [ - 70 + 74 ], "geometry_validated": [ 3 ], "id": [ - 3818 + 3863 ], "kills": [ - 1235 + 1239 ], "map_name": [ - 70 + 74 ], "match": [ - 1844 + 1848 ], "match_clips": [ - 1379 + 1383 ], "match_id": [ - 3818 + 3863 ], "match_map": [ - 1682 + 1686 ], "match_map_id": [ - 3818 + 3863 ], "metadata_parsed_at": [ - 3421 + 3466 ], "playback_file": [ - 70 + 74 ], "playback_size": [ 38 ], "players": [ - 1235 + 1239 ], "round_ticks": [ - 1235 + 1239 ], "size": [ 38 @@ -26530,51 +26622,51 @@ export default { 38 ], "workshop_id": [ - 70 + 74 ], "__typename": [ - 70 + 74 ] }, "match_map_demos_max_fields": { "created_at": [ - 3421 + 3466 ], "cs2_build": [ - 70 + 74 ], "download_url": [ - 70 + 74 ], "duration_seconds": [ 29 ], "file": [ - 70 + 74 ], "id": [ - 3818 + 3863 ], "map_name": [ - 70 + 74 ], "match_id": [ - 3818 + 3863 ], "match_map_id": [ - 3818 + 3863 ], "metadata_parsed_at": [ - 3421 + 3466 ], "playback_file": [ - 70 + 74 ], "playback_size": [ 38 ], "playback_url": [ - 70 + 74 ], "size": [ 38 @@ -26586,101 +26678,101 @@ export default { 38 ], "workshop_id": [ - 70 + 74 ], "__typename": [ - 70 + 74 ] }, "match_map_demos_max_order_by": { "created_at": [ - 2011 + 2015 ], "cs2_build": [ - 2011 + 2015 ], "duration_seconds": [ - 2011 + 2015 ], "file": [ - 2011 + 2015 ], "id": [ - 2011 + 2015 ], "map_name": [ - 2011 + 2015 ], "match_id": [ - 2011 + 2015 ], "match_map_id": [ - 2011 + 2015 ], "metadata_parsed_at": [ - 2011 + 2015 ], "playback_file": [ - 2011 + 2015 ], "playback_size": [ - 2011 + 2015 ], "size": [ - 2011 + 2015 ], "tick_rate": [ - 2011 + 2015 ], "total_ticks": [ - 2011 + 2015 ], "workshop_id": [ - 2011 + 2015 ], "__typename": [ - 70 + 74 ] }, "match_map_demos_min_fields": { "created_at": [ - 3421 + 3466 ], "cs2_build": [ - 70 + 74 ], "download_url": [ - 70 + 74 ], "duration_seconds": [ 29 ], "file": [ - 70 + 74 ], "id": [ - 3818 + 3863 ], "map_name": [ - 70 + 74 ], "match_id": [ - 3818 + 3863 ], "match_map_id": [ - 3818 + 3863 ], "metadata_parsed_at": [ - 3421 + 3466 ], "playback_file": [ - 70 + 74 ], "playback_size": [ 38 ], "playback_url": [ - 70 + 74 ], "size": [ 38 @@ -26692,60 +26784,60 @@ export default { 38 ], "workshop_id": [ - 70 + 74 ], "__typename": [ - 70 + 74 ] }, "match_map_demos_min_order_by": { "created_at": [ - 2011 + 2015 ], "cs2_build": [ - 2011 + 2015 ], "duration_seconds": [ - 2011 + 2015 ], "file": [ - 2011 + 2015 ], "id": [ - 2011 + 2015 ], "map_name": [ - 2011 + 2015 ], "match_id": [ - 2011 + 2015 ], "match_map_id": [ - 2011 + 2015 ], "metadata_parsed_at": [ - 2011 + 2015 ], "playback_file": [ - 2011 + 2015 ], "playback_size": [ - 2011 + 2015 ], "size": [ - 2011 + 2015 ], "tick_rate": [ - 2011 + 2015 ], "total_ticks": [ - 2011 + 2015 ], "workshop_id": [ - 2011 + 2015 ], "__typename": [ - 70 + 74 ] }, "match_map_demos_mutation_response": { @@ -26753,146 +26845,146 @@ export default { 38 ], "returning": [ - 1548 + 1552 ], "__typename": [ - 70 + 74 ] }, "match_map_demos_obj_rel_insert_input": { "data": [ - 1566 + 1570 ], "on_conflict": [ - 1573 + 1577 ], "__typename": [ - 70 + 74 ] }, "match_map_demos_on_conflict": { "constraint": [ - 1561 + 1565 ], "update_columns": [ - 1591 + 1595 ], "where": [ - 1560 + 1564 ], "__typename": [ - 70 + 74 ] }, "match_map_demos_order_by": { "bombs": [ - 2011 + 2015 ], "clip_render_jobs_aggregate": [ - 181 + 185 ], "created_at": [ - 2011 + 2015 ], "cs2_build": [ - 2011 + 2015 ], "demo_sessions_aggregate": [ - 1420 + 1424 ], "download_url": [ - 2011 + 2015 ], "duration_seconds": [ - 2011 + 2015 ], "file": [ - 2011 + 2015 ], "geometry_validated": [ - 2011 + 2015 ], "id": [ - 2011 + 2015 ], "kills": [ - 2011 + 2015 ], "map_name": [ - 2011 + 2015 ], "match": [ - 1846 + 1850 ], "match_clips_aggregate": [ - 1378 + 1382 ], "match_id": [ - 2011 + 2015 ], "match_map": [ - 1684 + 1688 ], "match_map_id": [ - 2011 + 2015 ], "metadata_parsed_at": [ - 2011 + 2015 ], "playback_file": [ - 2011 + 2015 ], "playback_size": [ - 2011 + 2015 ], "playback_url": [ - 2011 + 2015 ], "players": [ - 2011 + 2015 ], "round_ticks": [ - 2011 + 2015 ], "size": [ - 2011 + 2015 ], "tick_rate": [ - 2011 + 2015 ], "total_ticks": [ - 2011 + 2015 ], "workshop_id": [ - 2011 + 2015 ], "__typename": [ - 70 + 74 ] }, "match_map_demos_pk_columns_input": { "id": [ - 3818 + 3863 ], "__typename": [ - 70 + 74 ] }, "match_map_demos_prepend_input": { "bombs": [ - 1235 + 1239 ], "kills": [ - 1235 + 1239 ], "players": [ - 1235 + 1239 ], "round_ticks": [ - 1235 + 1239 ], "__typename": [ - 70 + 74 ] }, "match_map_demos_select_column": {}, @@ -26900,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": [ - 1235 + 1239 ], "created_at": [ - 3421 + 3466 ], "cs2_build": [ - 70 + 74 ], "file": [ - 70 + 74 ], "geometry_validated": [ 3 ], "id": [ - 3818 + 3863 ], "kills": [ - 1235 + 1239 ], "map_name": [ - 70 + 74 ], "match_id": [ - 3818 + 3863 ], "match_map_id": [ - 3818 + 3863 ], "metadata_parsed_at": [ - 3421 + 3466 ], "playback_file": [ - 70 + 74 ], "playback_size": [ 38 ], "players": [ - 1235 + 1239 ], "round_ticks": [ - 1235 + 1239 ], "size": [ 38 @@ -26954,10 +27046,10 @@ export default { 38 ], "workshop_id": [ - 70 + 74 ], "__typename": [ - 70 + 74 ] }, "match_map_demos_stddev_fields": { @@ -26977,27 +27069,27 @@ export default { 29 ], "__typename": [ - 70 + 74 ] }, "match_map_demos_stddev_order_by": { "duration_seconds": [ - 2011 + 2015 ], "playback_size": [ - 2011 + 2015 ], "size": [ - 2011 + 2015 ], "tick_rate": [ - 2011 + 2015 ], "total_ticks": [ - 2011 + 2015 ], "__typename": [ - 70 + 74 ] }, "match_map_demos_stddev_pop_fields": { @@ -27017,27 +27109,27 @@ export default { 29 ], "__typename": [ - 70 + 74 ] }, "match_map_demos_stddev_pop_order_by": { "duration_seconds": [ - 2011 + 2015 ], "playback_size": [ - 2011 + 2015 ], "size": [ - 2011 + 2015 ], "tick_rate": [ - 2011 + 2015 ], "total_ticks": [ - 2011 + 2015 ], "__typename": [ - 70 + 74 ] }, "match_map_demos_stddev_samp_fields": { @@ -27057,88 +27149,88 @@ export default { 29 ], "__typename": [ - 70 + 74 ] }, "match_map_demos_stddev_samp_order_by": { "duration_seconds": [ - 2011 + 2015 ], "playback_size": [ - 2011 + 2015 ], "size": [ - 2011 + 2015 ], "tick_rate": [ - 2011 + 2015 ], "total_ticks": [ - 2011 + 2015 ], "__typename": [ - 70 + 74 ] }, "match_map_demos_stream_cursor_input": { "initial_value": [ - 1588 + 1592 ], "ordering": [ - 224 + 228 ], "__typename": [ - 70 + 74 ] }, "match_map_demos_stream_cursor_value_input": { "bombs": [ - 1235 + 1239 ], "created_at": [ - 3421 + 3466 ], "cs2_build": [ - 70 + 74 ], "duration_seconds": [ 29 ], "file": [ - 70 + 74 ], "geometry_validated": [ 3 ], "id": [ - 3818 + 3863 ], "kills": [ - 1235 + 1239 ], "map_name": [ - 70 + 74 ], "match_id": [ - 3818 + 3863 ], "match_map_id": [ - 3818 + 3863 ], "metadata_parsed_at": [ - 3421 + 3466 ], "playback_file": [ - 70 + 74 ], "playback_size": [ 38 ], "players": [ - 1235 + 1239 ], "round_ticks": [ - 1235 + 1239 ], "size": [ 38 @@ -27150,10 +27242,10 @@ export default { 38 ], "workshop_id": [ - 70 + 74 ], "__typename": [ - 70 + 74 ] }, "match_map_demos_sum_fields": { @@ -27173,57 +27265,57 @@ export default { 38 ], "__typename": [ - 70 + 74 ] }, "match_map_demos_sum_order_by": { "duration_seconds": [ - 2011 + 2015 ], "playback_size": [ - 2011 + 2015 ], "size": [ - 2011 + 2015 ], "tick_rate": [ - 2011 + 2015 ], "total_ticks": [ - 2011 + 2015 ], "__typename": [ - 70 + 74 ] }, "match_map_demos_update_column": {}, "match_map_demos_updates": { "_append": [ - 1556 + 1560 ], "_delete_at_path": [ - 1562 + 1566 ], "_delete_elem": [ - 1563 + 1567 ], "_delete_key": [ - 1564 + 1568 ], "_inc": [ - 1565 + 1569 ], "_prepend": [ - 1576 + 1580 ], "_set": [ - 1580 + 1584 ], "where": [ - 1560 + 1564 ], "__typename": [ - 70 + 74 ] }, "match_map_demos_var_pop_fields": { @@ -27243,27 +27335,27 @@ export default { 29 ], "__typename": [ - 70 + 74 ] }, "match_map_demos_var_pop_order_by": { "duration_seconds": [ - 2011 + 2015 ], "playback_size": [ - 2011 + 2015 ], "size": [ - 2011 + 2015 ], "tick_rate": [ - 2011 + 2015 ], "total_ticks": [ - 2011 + 2015 ], "__typename": [ - 70 + 74 ] }, "match_map_demos_var_samp_fields": { @@ -27283,27 +27375,27 @@ export default { 29 ], "__typename": [ - 70 + 74 ] }, "match_map_demos_var_samp_order_by": { "duration_seconds": [ - 2011 + 2015 ], "playback_size": [ - 2011 + 2015 ], "size": [ - 2011 + 2015 ], "tick_rate": [ - 2011 + 2015 ], "total_ticks": [ - 2011 + 2015 ], "__typename": [ - 70 + 74 ] }, "match_map_demos_variance_fields": { @@ -27323,35 +27415,35 @@ export default { 29 ], "__typename": [ - 70 + 74 ] }, "match_map_demos_variance_order_by": { "duration_seconds": [ - 2011 + 2015 ], "playback_size": [ - 2011 + 2015 ], "size": [ - 2011 + 2015 ], "tick_rate": [ - 2011 + 2015 ], "total_ticks": [ - 2011 + 2015 ], "__typename": [ - 70 + 74 ] }, "match_map_rounds": { "assists": [ - 2149, + 2153, { "distinct_on": [ - 2172, + 2176, "[player_assists_select_column!]" ], "limit": [ @@ -27361,19 +27453,19 @@ export default { 38 ], "order_by": [ - 2170, + 2174, "[player_assists_order_by!]" ], "where": [ - 2160 + 2164 ] } ], "assists_aggregate": [ - 2150, + 2154, { "distinct_on": [ - 2172, + 2176, "[player_assists_select_column!]" ], "limit": [ @@ -27383,34 +27475,34 @@ export default { 38 ], "order_by": [ - 2170, + 2174, "[player_assists_order_by!]" ], "where": [ - 2160 + 2164 ] } ], "backup_file": [ - 70 + 74 ], "created_at": [ - 3421 + 3466 ], "deleted_at": [ - 3421 + 3466 ], "has_backup_file": [ 3 ], "id": [ - 3818 + 3863 ], "kills": [ - 2366, + 2370, { "distinct_on": [ - 2430, + 2434, "[player_kills_select_column!]" ], "limit": [ @@ -27420,19 +27512,19 @@ export default { 38 ], "order_by": [ - 2428, + 2432, "[player_kills_order_by!]" ], "where": [ - 2377 + 2381 ] } ], "kills_aggregate": [ - 2367, + 2371, { "distinct_on": [ - 2430, + 2434, "[player_kills_select_column!]" ], "limit": [ @@ -27442,11 +27534,11 @@ export default { 38 ], "order_by": [ - 2428, + 2432, "[player_kills_order_by!]" ], "where": [ - 2377 + 2381 ] } ], @@ -27457,7 +27549,7 @@ export default { 38 ], "lineup_1_side": [ - 886 + 890 ], "lineup_1_timeouts_available": [ 38 @@ -27469,78 +27561,78 @@ export default { 38 ], "lineup_2_side": [ - 886 + 890 ], "lineup_2_timeouts_available": [ 38 ], "match_map": [ - 1664 + 1668 ], "match_map_id": [ - 3818 + 3863 ], "round": [ 38 ], "time": [ - 3421 + 3466 ], "winning_reason": [ - 1069 + 1073 ], "winning_side": [ - 70 + 74 ], "__typename": [ - 70 + 74 ] }, "match_map_rounds_aggregate": { "aggregate": [ - 1603 + 1607 ], "nodes": [ - 1599 + 1603 ], "__typename": [ - 70 + 74 ] }, "match_map_rounds_aggregate_bool_exp": { "count": [ - 1602 + 1606 ], "__typename": [ - 70 + 74 ] }, "match_map_rounds_aggregate_bool_exp_count": { "arguments": [ - 1620 + 1624 ], "distinct": [ 3 ], "filter": [ - 1608 + 1612 ], "predicate": [ 39 ], "__typename": [ - 70 + 74 ] }, "match_map_rounds_aggregate_fields": { "avg": [ - 1606 + 1610 ], "count": [ 38, { "columns": [ - 1620, + 1624, "[match_map_rounds_select_column!]" ], "distinct": [ @@ -27549,83 +27641,83 @@ export default { } ], "max": [ - 1612 + 1616 ], "min": [ - 1614 + 1618 ], "stddev": [ - 1622 + 1626 ], "stddev_pop": [ - 1624 + 1628 ], "stddev_samp": [ - 1626 + 1630 ], "sum": [ - 1630 + 1634 ], "var_pop": [ - 1634 + 1638 ], "var_samp": [ - 1636 + 1640 ], "variance": [ - 1638 + 1642 ], "__typename": [ - 70 + 74 ] }, "match_map_rounds_aggregate_order_by": { "avg": [ - 1607 + 1611 ], "count": [ - 2011 + 2015 ], "max": [ - 1613 + 1617 ], "min": [ - 1615 + 1619 ], "stddev": [ - 1623 + 1627 ], "stddev_pop": [ - 1625 + 1629 ], "stddev_samp": [ - 1627 + 1631 ], "sum": [ - 1631 + 1635 ], "var_pop": [ - 1635 + 1639 ], "var_samp": [ - 1637 + 1641 ], "variance": [ - 1639 + 1643 ], "__typename": [ - 70 + 74 ] }, "match_map_rounds_arr_rel_insert_input": { "data": [ - 1611 + 1615 ], "on_conflict": [ - 1617 + 1621 ], "__typename": [ - 70 + 74 ] }, "match_map_rounds_avg_fields": { @@ -27651,71 +27743,71 @@ export default { 29 ], "__typename": [ - 70 + 74 ] }, "match_map_rounds_avg_order_by": { "lineup_1_money": [ - 2011 + 2015 ], "lineup_1_score": [ - 2011 + 2015 ], "lineup_1_timeouts_available": [ - 2011 + 2015 ], "lineup_2_money": [ - 2011 + 2015 ], "lineup_2_score": [ - 2011 + 2015 ], "lineup_2_timeouts_available": [ - 2011 + 2015 ], "round": [ - 2011 + 2015 ], "__typename": [ - 70 + 74 ] }, "match_map_rounds_bool_exp": { "_and": [ - 1608 + 1612 ], "_not": [ - 1608 + 1612 ], "_or": [ - 1608 + 1612 ], "assists": [ - 2160 + 2164 ], "assists_aggregate": [ - 2151 + 2155 ], "backup_file": [ - 72 + 76 ], "created_at": [ - 3422 + 3467 ], "deleted_at": [ - 3422 + 3467 ], "has_backup_file": [ 4 ], "id": [ - 3820 + 3865 ], "kills": [ - 2377 + 2381 ], "kills_aggregate": [ - 2368 + 2372 ], "lineup_1_money": [ 39 @@ -27724,7 +27816,7 @@ export default { 39 ], "lineup_1_side": [ - 887 + 891 ], "lineup_1_timeouts_available": [ 39 @@ -27736,31 +27828,31 @@ export default { 39 ], "lineup_2_side": [ - 887 + 891 ], "lineup_2_timeouts_available": [ 39 ], "match_map": [ - 1673 + 1677 ], "match_map_id": [ - 3820 + 3865 ], "round": [ 39 ], "time": [ - 3422 + 3467 ], "winning_reason": [ - 1070 + 1074 ], "winning_side": [ - 72 + 76 ], "__typename": [ - 70 + 74 ] }, "match_map_rounds_constraint": {}, @@ -27787,27 +27879,27 @@ export default { 38 ], "__typename": [ - 70 + 74 ] }, "match_map_rounds_insert_input": { "assists": [ - 2157 + 2161 ], "backup_file": [ - 70 + 74 ], "created_at": [ - 3421 + 3466 ], "deleted_at": [ - 3421 + 3466 ], "id": [ - 3818 + 3863 ], "kills": [ - 2374 + 2378 ], "lineup_1_money": [ 38 @@ -27816,7 +27908,7 @@ export default { 38 ], "lineup_1_side": [ - 886 + 890 ], "lineup_1_timeouts_available": [ 38 @@ -27828,45 +27920,45 @@ export default { 38 ], "lineup_2_side": [ - 886 + 890 ], "lineup_2_timeouts_available": [ 38 ], "match_map": [ - 1682 + 1686 ], "match_map_id": [ - 3818 + 3863 ], "round": [ 38 ], "time": [ - 3421 + 3466 ], "winning_reason": [ - 1069 + 1073 ], "winning_side": [ - 70 + 74 ], "__typename": [ - 70 + 74 ] }, "match_map_rounds_max_fields": { "backup_file": [ - 70 + 74 ], "created_at": [ - 3421 + 3466 ], "deleted_at": [ - 3421 + 3466 ], "id": [ - 3818 + 3863 ], "lineup_1_money": [ 38 @@ -27887,80 +27979,80 @@ export default { 38 ], "match_map_id": [ - 3818 + 3863 ], "round": [ 38 ], "time": [ - 3421 + 3466 ], "winning_side": [ - 70 + 74 ], "__typename": [ - 70 + 74 ] }, "match_map_rounds_max_order_by": { "backup_file": [ - 2011 + 2015 ], "created_at": [ - 2011 + 2015 ], "deleted_at": [ - 2011 + 2015 ], "id": [ - 2011 + 2015 ], "lineup_1_money": [ - 2011 + 2015 ], "lineup_1_score": [ - 2011 + 2015 ], "lineup_1_timeouts_available": [ - 2011 + 2015 ], "lineup_2_money": [ - 2011 + 2015 ], "lineup_2_score": [ - 2011 + 2015 ], "lineup_2_timeouts_available": [ - 2011 + 2015 ], "match_map_id": [ - 2011 + 2015 ], "round": [ - 2011 + 2015 ], "time": [ - 2011 + 2015 ], "winning_side": [ - 2011 + 2015 ], "__typename": [ - 70 + 74 ] }, "match_map_rounds_min_fields": { "backup_file": [ - 70 + 74 ], "created_at": [ - 3421 + 3466 ], "deleted_at": [ - 3421 + 3466 ], "id": [ - 3818 + 3863 ], "lineup_1_money": [ 38 @@ -27981,66 +28073,66 @@ export default { 38 ], "match_map_id": [ - 3818 + 3863 ], "round": [ 38 ], "time": [ - 3421 + 3466 ], "winning_side": [ - 70 + 74 ], "__typename": [ - 70 + 74 ] }, "match_map_rounds_min_order_by": { "backup_file": [ - 2011 + 2015 ], "created_at": [ - 2011 + 2015 ], "deleted_at": [ - 2011 + 2015 ], "id": [ - 2011 + 2015 ], "lineup_1_money": [ - 2011 + 2015 ], "lineup_1_score": [ - 2011 + 2015 ], "lineup_1_timeouts_available": [ - 2011 + 2015 ], "lineup_2_money": [ - 2011 + 2015 ], "lineup_2_score": [ - 2011 + 2015 ], "lineup_2_timeouts_available": [ - 2011 + 2015 ], "match_map_id": [ - 2011 + 2015 ], "round": [ - 2011 + 2015 ], "time": [ - 2011 + 2015 ], "winning_side": [ - 2011 + 2015 ], "__typename": [ - 70 + 74 ] }, "match_map_rounds_mutation_response": { @@ -28048,115 +28140,115 @@ export default { 38 ], "returning": [ - 1599 + 1603 ], "__typename": [ - 70 + 74 ] }, "match_map_rounds_on_conflict": { "constraint": [ - 1609 + 1613 ], "update_columns": [ - 1632 + 1636 ], "where": [ - 1608 + 1612 ], "__typename": [ - 70 + 74 ] }, "match_map_rounds_order_by": { "assists_aggregate": [ - 2156 + 2160 ], "backup_file": [ - 2011 + 2015 ], "created_at": [ - 2011 + 2015 ], "deleted_at": [ - 2011 + 2015 ], "has_backup_file": [ - 2011 + 2015 ], "id": [ - 2011 + 2015 ], "kills_aggregate": [ - 2373 + 2377 ], "lineup_1_money": [ - 2011 + 2015 ], "lineup_1_score": [ - 2011 + 2015 ], "lineup_1_side": [ - 2011 + 2015 ], "lineup_1_timeouts_available": [ - 2011 + 2015 ], "lineup_2_money": [ - 2011 + 2015 ], "lineup_2_score": [ - 2011 + 2015 ], "lineup_2_side": [ - 2011 + 2015 ], "lineup_2_timeouts_available": [ - 2011 + 2015 ], "match_map": [ - 1684 + 1688 ], "match_map_id": [ - 2011 + 2015 ], "round": [ - 2011 + 2015 ], "time": [ - 2011 + 2015 ], "winning_reason": [ - 2011 + 2015 ], "winning_side": [ - 2011 + 2015 ], "__typename": [ - 70 + 74 ] }, "match_map_rounds_pk_columns_input": { "id": [ - 3818 + 3863 ], "__typename": [ - 70 + 74 ] }, "match_map_rounds_select_column": {}, "match_map_rounds_set_input": { "backup_file": [ - 70 + 74 ], "created_at": [ - 3421 + 3466 ], "deleted_at": [ - 3421 + 3466 ], "id": [ - 3818 + 3863 ], "lineup_1_money": [ 38 @@ -28165,7 +28257,7 @@ export default { 38 ], "lineup_1_side": [ - 886 + 890 ], "lineup_1_timeouts_available": [ 38 @@ -28177,28 +28269,28 @@ export default { 38 ], "lineup_2_side": [ - 886 + 890 ], "lineup_2_timeouts_available": [ 38 ], "match_map_id": [ - 3818 + 3863 ], "round": [ 38 ], "time": [ - 3421 + 3466 ], "winning_reason": [ - 1069 + 1073 ], "winning_side": [ - 70 + 74 ], "__typename": [ - 70 + 74 ] }, "match_map_rounds_stddev_fields": { @@ -28224,33 +28316,33 @@ export default { 29 ], "__typename": [ - 70 + 74 ] }, "match_map_rounds_stddev_order_by": { "lineup_1_money": [ - 2011 + 2015 ], "lineup_1_score": [ - 2011 + 2015 ], "lineup_1_timeouts_available": [ - 2011 + 2015 ], "lineup_2_money": [ - 2011 + 2015 ], "lineup_2_score": [ - 2011 + 2015 ], "lineup_2_timeouts_available": [ - 2011 + 2015 ], "round": [ - 2011 + 2015 ], "__typename": [ - 70 + 74 ] }, "match_map_rounds_stddev_pop_fields": { @@ -28276,33 +28368,33 @@ export default { 29 ], "__typename": [ - 70 + 74 ] }, "match_map_rounds_stddev_pop_order_by": { "lineup_1_money": [ - 2011 + 2015 ], "lineup_1_score": [ - 2011 + 2015 ], "lineup_1_timeouts_available": [ - 2011 + 2015 ], "lineup_2_money": [ - 2011 + 2015 ], "lineup_2_score": [ - 2011 + 2015 ], "lineup_2_timeouts_available": [ - 2011 + 2015 ], "round": [ - 2011 + 2015 ], "__typename": [ - 70 + 74 ] }, "match_map_rounds_stddev_samp_fields": { @@ -28328,58 +28420,58 @@ export default { 29 ], "__typename": [ - 70 + 74 ] }, "match_map_rounds_stddev_samp_order_by": { "lineup_1_money": [ - 2011 + 2015 ], "lineup_1_score": [ - 2011 + 2015 ], "lineup_1_timeouts_available": [ - 2011 + 2015 ], "lineup_2_money": [ - 2011 + 2015 ], "lineup_2_score": [ - 2011 + 2015 ], "lineup_2_timeouts_available": [ - 2011 + 2015 ], "round": [ - 2011 + 2015 ], "__typename": [ - 70 + 74 ] }, "match_map_rounds_stream_cursor_input": { "initial_value": [ - 1629 + 1633 ], "ordering": [ - 224 + 228 ], "__typename": [ - 70 + 74 ] }, "match_map_rounds_stream_cursor_value_input": { "backup_file": [ - 70 + 74 ], "created_at": [ - 3421 + 3466 ], "deleted_at": [ - 3421 + 3466 ], "id": [ - 3818 + 3863 ], "lineup_1_money": [ 38 @@ -28388,7 +28480,7 @@ export default { 38 ], "lineup_1_side": [ - 886 + 890 ], "lineup_1_timeouts_available": [ 38 @@ -28400,28 +28492,28 @@ export default { 38 ], "lineup_2_side": [ - 886 + 890 ], "lineup_2_timeouts_available": [ 38 ], "match_map_id": [ - 3818 + 3863 ], "round": [ 38 ], "time": [ - 3421 + 3466 ], "winning_reason": [ - 1069 + 1073 ], "winning_side": [ - 70 + 74 ], "__typename": [ - 70 + 74 ] }, "match_map_rounds_sum_fields": { @@ -28447,48 +28539,48 @@ export default { 38 ], "__typename": [ - 70 + 74 ] }, "match_map_rounds_sum_order_by": { "lineup_1_money": [ - 2011 + 2015 ], "lineup_1_score": [ - 2011 + 2015 ], "lineup_1_timeouts_available": [ - 2011 + 2015 ], "lineup_2_money": [ - 2011 + 2015 ], "lineup_2_score": [ - 2011 + 2015 ], "lineup_2_timeouts_available": [ - 2011 + 2015 ], "round": [ - 2011 + 2015 ], "__typename": [ - 70 + 74 ] }, "match_map_rounds_update_column": {}, "match_map_rounds_updates": { "_inc": [ - 1610 + 1614 ], "_set": [ - 1621 + 1625 ], "where": [ - 1608 + 1612 ], "__typename": [ - 70 + 74 ] }, "match_map_rounds_var_pop_fields": { @@ -28514,33 +28606,33 @@ export default { 29 ], "__typename": [ - 70 + 74 ] }, "match_map_rounds_var_pop_order_by": { "lineup_1_money": [ - 2011 + 2015 ], "lineup_1_score": [ - 2011 + 2015 ], "lineup_1_timeouts_available": [ - 2011 + 2015 ], "lineup_2_money": [ - 2011 + 2015 ], "lineup_2_score": [ - 2011 + 2015 ], "lineup_2_timeouts_available": [ - 2011 + 2015 ], "round": [ - 2011 + 2015 ], "__typename": [ - 70 + 74 ] }, "match_map_rounds_var_samp_fields": { @@ -28566,33 +28658,33 @@ export default { 29 ], "__typename": [ - 70 + 74 ] }, "match_map_rounds_var_samp_order_by": { "lineup_1_money": [ - 2011 + 2015 ], "lineup_1_score": [ - 2011 + 2015 ], "lineup_1_timeouts_available": [ - 2011 + 2015 ], "lineup_2_money": [ - 2011 + 2015 ], "lineup_2_score": [ - 2011 + 2015 ], "lineup_2_timeouts_available": [ - 2011 + 2015 ], "round": [ - 2011 + 2015 ], "__typename": [ - 70 + 74 ] }, "match_map_rounds_variance_fields": { @@ -28618,104 +28710,104 @@ export default { 29 ], "__typename": [ - 70 + 74 ] }, "match_map_rounds_variance_order_by": { "lineup_1_money": [ - 2011 + 2015 ], "lineup_1_score": [ - 2011 + 2015 ], "lineup_1_timeouts_available": [ - 2011 + 2015 ], "lineup_2_money": [ - 2011 + 2015 ], "lineup_2_score": [ - 2011 + 2015 ], "lineup_2_timeouts_available": [ - 2011 + 2015 ], "round": [ - 2011 + 2015 ], "__typename": [ - 70 + 74 ] }, "match_map_veto_picks": { "created_at": [ - 3421 + 3466 ], "id": [ - 3818 + 3863 ], "map": [ - 1344 + 1348 ], "map_id": [ - 3818 + 3863 ], "match": [ - 1826 + 1830 ], "match_id": [ - 3818 + 3863 ], "match_lineup": [ - 1506 + 1510 ], "match_lineup_id": [ - 3818 + 3863 ], "side": [ - 70 + 74 ], "type": [ - 1049 + 1053 ], "__typename": [ - 70 + 74 ] }, "match_map_veto_picks_aggregate": { "aggregate": [ - 1644 + 1648 ], "nodes": [ - 1640 + 1644 ], "__typename": [ - 70 + 74 ] }, "match_map_veto_picks_aggregate_bool_exp": { "count": [ - 1643 + 1647 ], "__typename": [ - 70 + 74 ] }, "match_map_veto_picks_aggregate_bool_exp_count": { "arguments": [ - 1658 + 1662 ], "distinct": [ 3 ], "filter": [ - 1647 + 1651 ], "predicate": [ 39 ], "__typename": [ - 70 + 74 ] }, "match_map_veto_picks_aggregate_fields": { @@ -28723,7 +28815,7 @@ export default { 38, { "columns": [ - 1658, + 1662, "[match_map_veto_picks_select_column!]" ], "distinct": [ @@ -28732,210 +28824,210 @@ export default { } ], "max": [ - 1650 + 1654 ], "min": [ - 1652 + 1656 ], "__typename": [ - 70 + 74 ] }, "match_map_veto_picks_aggregate_order_by": { "count": [ - 2011 + 2015 ], "max": [ - 1651 + 1655 ], "min": [ - 1653 + 1657 ], "__typename": [ - 70 + 74 ] }, "match_map_veto_picks_arr_rel_insert_input": { "data": [ - 1649 + 1653 ], "on_conflict": [ - 1655 + 1659 ], "__typename": [ - 70 + 74 ] }, "match_map_veto_picks_bool_exp": { "_and": [ - 1647 + 1651 ], "_not": [ - 1647 + 1651 ], "_or": [ - 1647 + 1651 ], "created_at": [ - 3422 + 3467 ], "id": [ - 3820 + 3865 ], "map": [ - 1353 + 1357 ], "map_id": [ - 3820 + 3865 ], "match": [ - 1835 + 1839 ], "match_id": [ - 3820 + 3865 ], "match_lineup": [ - 1515 + 1519 ], "match_lineup_id": [ - 3820 + 3865 ], "side": [ - 72 + 76 ], "type": [ - 1050 + 1054 ], "__typename": [ - 70 + 74 ] }, "match_map_veto_picks_constraint": {}, "match_map_veto_picks_insert_input": { "created_at": [ - 3421 + 3466 ], "id": [ - 3818 + 3863 ], "map": [ - 1361 + 1365 ], "map_id": [ - 3818 + 3863 ], "match": [ - 1844 + 1848 ], "match_id": [ - 3818 + 3863 ], "match_lineup": [ - 1524 + 1528 ], "match_lineup_id": [ - 3818 + 3863 ], "side": [ - 70 + 74 ], "type": [ - 1049 + 1053 ], "__typename": [ - 70 + 74 ] }, "match_map_veto_picks_max_fields": { "created_at": [ - 3421 + 3466 ], "id": [ - 3818 + 3863 ], "map_id": [ - 3818 + 3863 ], "match_id": [ - 3818 + 3863 ], "match_lineup_id": [ - 3818 + 3863 ], "side": [ - 70 + 74 ], "__typename": [ - 70 + 74 ] }, "match_map_veto_picks_max_order_by": { "created_at": [ - 2011 + 2015 ], "id": [ - 2011 + 2015 ], "map_id": [ - 2011 + 2015 ], "match_id": [ - 2011 + 2015 ], "match_lineup_id": [ - 2011 + 2015 ], "side": [ - 2011 + 2015 ], "__typename": [ - 70 + 74 ] }, "match_map_veto_picks_min_fields": { "created_at": [ - 3421 + 3466 ], "id": [ - 3818 + 3863 ], "map_id": [ - 3818 + 3863 ], "match_id": [ - 3818 + 3863 ], "match_lineup_id": [ - 3818 + 3863 ], "side": [ - 70 + 74 ], "__typename": [ - 70 + 74 ] }, "match_map_veto_picks_min_order_by": { "created_at": [ - 2011 + 2015 ], "id": [ - 2011 + 2015 ], "map_id": [ - 2011 + 2015 ], "match_id": [ - 2011 + 2015 ], "match_lineup_id": [ - 2011 + 2015 ], "side": [ - 2011 + 2015 ], "__typename": [ - 70 + 74 ] }, "match_map_veto_picks_mutation_response": { @@ -28943,143 +29035,143 @@ export default { 38 ], "returning": [ - 1640 + 1644 ], "__typename": [ - 70 + 74 ] }, "match_map_veto_picks_on_conflict": { "constraint": [ - 1648 + 1652 ], "update_columns": [ - 1662 + 1666 ], "where": [ - 1647 + 1651 ], "__typename": [ - 70 + 74 ] }, "match_map_veto_picks_order_by": { "created_at": [ - 2011 + 2015 ], "id": [ - 2011 + 2015 ], "map": [ - 1363 + 1367 ], "map_id": [ - 2011 + 2015 ], "match": [ - 1846 + 1850 ], "match_id": [ - 2011 + 2015 ], "match_lineup": [ - 1526 + 1530 ], "match_lineup_id": [ - 2011 + 2015 ], "side": [ - 2011 + 2015 ], "type": [ - 2011 + 2015 ], "__typename": [ - 70 + 74 ] }, "match_map_veto_picks_pk_columns_input": { "id": [ - 3818 + 3863 ], "__typename": [ - 70 + 74 ] }, "match_map_veto_picks_select_column": {}, "match_map_veto_picks_set_input": { "created_at": [ - 3421 + 3466 ], "id": [ - 3818 + 3863 ], "map_id": [ - 3818 + 3863 ], "match_id": [ - 3818 + 3863 ], "match_lineup_id": [ - 3818 + 3863 ], "side": [ - 70 + 74 ], "type": [ - 1049 + 1053 ], "__typename": [ - 70 + 74 ] }, "match_map_veto_picks_stream_cursor_input": { "initial_value": [ - 1661 + 1665 ], "ordering": [ - 224 + 228 ], "__typename": [ - 70 + 74 ] }, "match_map_veto_picks_stream_cursor_value_input": { "created_at": [ - 3421 + 3466 ], "id": [ - 3818 + 3863 ], "map_id": [ - 3818 + 3863 ], "match_id": [ - 3818 + 3863 ], "match_lineup_id": [ - 3818 + 3863 ], "side": [ - 70 + 74 ], "type": [ - 1049 + 1053 ], "__typename": [ - 70 + 74 ] }, "match_map_veto_picks_update_column": {}, "match_map_veto_picks_updates": { "_set": [ - 1659 + 1663 ], "where": [ - 1647 + 1651 ], "__typename": [ - 70 + 74 ] }, "match_maps": { @@ -29087,13 +29179,13 @@ export default { 38 ], "created_at": [ - 3421 + 3466 ], "demos": [ - 1548, + 1552, { "distinct_on": [ - 1577, + 1581, "[match_map_demos_select_column!]" ], "limit": [ @@ -29103,19 +29195,19 @@ export default { 38 ], "order_by": [ - 1574, + 1578, "[match_map_demos_order_by!]" ], "where": [ - 1560 + 1564 ] } ], "demos_aggregate": [ - 1549, + 1553, { "distinct_on": [ - 1577, + 1581, "[match_map_demos_select_column!]" ], "limit": [ @@ -29125,31 +29217,31 @@ export default { 38 ], "order_by": [ - 1574, + 1578, "[match_map_demos_order_by!]" ], "where": [ - 1560 + 1564 ] } ], "demos_download_url": [ - 70 + 74 ], "demos_total_size": [ 38 ], "e_match_map_status": [ - 657 + 661 ], "ended_at": [ - 3421 + 3466 ], "flashes": [ - 2321, + 2325, { "distinct_on": [ - 2344, + 2348, "[player_flashes_select_column!]" ], "limit": [ @@ -29159,19 +29251,19 @@ export default { 38 ], "order_by": [ - 2342, + 2346, "[player_flashes_order_by!]" ], "where": [ - 2332 + 2336 ] } ], "flashes_aggregate": [ - 2322, + 2326, { "distinct_on": [ - 2344, + 2348, "[player_flashes_select_column!]" ], "limit": [ @@ -29181,28 +29273,28 @@ export default { 38 ], "order_by": [ - 2342, + 2346, "[player_flashes_order_by!]" ], "where": [ - 2332 + 2336 ] } ], "id": [ - 3818 + 3863 ], "is_current_map": [ 3 ], "latest_clip_at": [ - 3421 + 3466 ], "lineup_1_score": [ 38 ], "lineup_1_side": [ - 886 + 890 ], "lineup_1_timeouts_available": [ 38 @@ -29211,25 +29303,25 @@ export default { 38 ], "lineup_2_side": [ - 886 + 890 ], "lineup_2_timeouts_available": [ 38 ], "map": [ - 1344 + 1348 ], "map_id": [ - 3818 + 3863 ], "match": [ - 1826 + 1830 ], "match_clips": [ - 1373, + 1377, { "distinct_on": [ - 1395, + 1399, "[match_clips_select_column!]" ], "limit": [ @@ -29239,19 +29331,19 @@ export default { 38 ], "order_by": [ - 1393, + 1397, "[match_clips_order_by!]" ], "where": [ - 1382 + 1386 ] } ], "match_clips_aggregate": [ - 1374, + 1378, { "distinct_on": [ - 1395, + 1399, "[match_clips_select_column!]" ], "limit": [ @@ -29261,22 +29353,22 @@ export default { 38 ], "order_by": [ - 1393, + 1397, "[match_clips_order_by!]" ], "where": [ - 1382 + 1386 ] } ], "match_id": [ - 3818 + 3863 ], "objectives": [ - 2567, + 2571, { "distinct_on": [ - 2588, + 2592, "[player_objectives_select_column!]" ], "limit": [ @@ -29286,19 +29378,19 @@ export default { 38 ], "order_by": [ - 2586, + 2590, "[player_objectives_order_by!]" ], "where": [ - 2576 + 2580 ] } ], "objectives_aggregate": [ - 2568, + 2572, { "distinct_on": [ - 2588, + 2592, "[player_objectives_select_column!]" ], "limit": [ @@ -29308,11 +29400,11 @@ export default { 38 ], "order_by": [ - 2586, + 2590, "[player_objectives_order_by!]" ], "where": [ - 2576 + 2580 ] } ], @@ -29320,10 +29412,10 @@ export default { 38 ], "player_assists": [ - 2149, + 2153, { "distinct_on": [ - 2172, + 2176, "[player_assists_select_column!]" ], "limit": [ @@ -29333,19 +29425,19 @@ export default { 38 ], "order_by": [ - 2170, + 2174, "[player_assists_order_by!]" ], "where": [ - 2160 + 2164 ] } ], "player_assists_aggregate": [ - 2150, + 2154, { "distinct_on": [ - 2172, + 2176, "[player_assists_select_column!]" ], "limit": [ @@ -29355,19 +29447,19 @@ export default { 38 ], "order_by": [ - 2170, + 2174, "[player_assists_order_by!]" ], "where": [ - 2160 + 2164 ] } ], "player_damages": [ - 2212, + 2216, { "distinct_on": [ - 2233, + 2237, "[player_damages_select_column!]" ], "limit": [ @@ -29377,19 +29469,19 @@ export default { 38 ], "order_by": [ - 2231, + 2235, "[player_damages_order_by!]" ], "where": [ - 2221 + 2225 ] } ], "player_damages_aggregate": [ - 2213, + 2217, { "distinct_on": [ - 2233, + 2237, "[player_damages_select_column!]" ], "limit": [ @@ -29399,19 +29491,19 @@ export default { 38 ], "order_by": [ - 2231, + 2235, "[player_damages_order_by!]" ], "where": [ - 2221 + 2225 ] } ], "player_kills": [ - 2366, + 2370, { "distinct_on": [ - 2430, + 2434, "[player_kills_select_column!]" ], "limit": [ @@ -29421,19 +29513,19 @@ export default { 38 ], "order_by": [ - 2428, + 2432, "[player_kills_order_by!]" ], "where": [ - 2377 + 2381 ] } ], "player_kills_aggregate": [ - 2367, + 2371, { "distinct_on": [ - 2430, + 2434, "[player_kills_select_column!]" ], "limit": [ @@ -29443,19 +29535,19 @@ export default { 38 ], "order_by": [ - 2428, + 2432, "[player_kills_order_by!]" ], "where": [ - 2377 + 2381 ] } ], "player_unused_utilities": [ - 2763, + 2799, { "distinct_on": [ - 2784, + 2820, "[player_unused_utility_select_column!]" ], "limit": [ @@ -29465,19 +29557,19 @@ export default { 38 ], "order_by": [ - 2782, + 2818, "[player_unused_utility_order_by!]" ], "where": [ - 2772 + 2808 ] } ], "player_unused_utilities_aggregate": [ - 2764, + 2800, { "distinct_on": [ - 2784, + 2820, "[player_unused_utility_select_column!]" ], "limit": [ @@ -29487,11 +29579,11 @@ export default { 38 ], "order_by": [ - 2782, + 2818, "[player_unused_utility_order_by!]" ], "where": [ - 2772 + 2808 ] } ], @@ -29499,13 +29591,13 @@ export default { 38 ], "public_latest_clip_at": [ - 3421 + 3466 ], "rounds": [ - 1599, + 1603, { "distinct_on": [ - 1620, + 1624, "[match_map_rounds_select_column!]" ], "limit": [ @@ -29515,19 +29607,19 @@ export default { 38 ], "order_by": [ - 1618, + 1622, "[match_map_rounds_order_by!]" ], "where": [ - 1608 + 1612 ] } ], "rounds_aggregate": [ - 1600, + 1604, { "distinct_on": [ - 1620, + 1624, "[match_map_rounds_select_column!]" ], "limit": [ @@ -29537,25 +29629,25 @@ export default { 38 ], "order_by": [ - 1618, + 1622, "[match_map_rounds_order_by!]" ], "where": [ - 1608 + 1612 ] } ], "started_at": [ - 3421 + 3466 ], "status": [ - 662 + 666 ], "utility": [ - 2804, + 2840, { "distinct_on": [ - 2825, + 2861, "[player_utility_select_column!]" ], "limit": [ @@ -29565,19 +29657,19 @@ export default { 38 ], "order_by": [ - 2823, + 2859, "[player_utility_order_by!]" ], "where": [ - 2813 + 2849 ] } ], "utility_aggregate": [ - 2805, + 2841, { "distinct_on": [ - 2825, + 2861, "[player_utility_select_column!]" ], "limit": [ @@ -29587,19 +29679,19 @@ export default { 38 ], "order_by": [ - 2823, + 2859, "[player_utility_order_by!]" ], "where": [ - 2813 + 2849 ] } ], "vetos": [ - 1640, + 1644, { "distinct_on": [ - 1658, + 1662, "[match_map_veto_picks_select_column!]" ], "limit": [ @@ -29609,19 +29701,19 @@ export default { 38 ], "order_by": [ - 1656, + 1660, "[match_map_veto_picks_order_by!]" ], "where": [ - 1647 + 1651 ] } ], "vetos_aggregate": [ - 1641, + 1645, { "distinct_on": [ - 1658, + 1662, "[match_map_veto_picks_select_column!]" ], "limit": [ @@ -29631,66 +29723,66 @@ export default { 38 ], "order_by": [ - 1656, + 1660, "[match_map_veto_picks_order_by!]" ], "where": [ - 1647 + 1651 ] } ], "winning_lineup_id": [ - 3818 + 3863 ], "__typename": [ - 70 + 74 ] }, "match_maps_aggregate": { "aggregate": [ - 1668 + 1672 ], "nodes": [ - 1664 + 1668 ], "__typename": [ - 70 + 74 ] }, "match_maps_aggregate_bool_exp": { "count": [ - 1667 + 1671 ], "__typename": [ - 70 + 74 ] }, "match_maps_aggregate_bool_exp_count": { "arguments": [ - 1686 + 1690 ], "distinct": [ 3 ], "filter": [ - 1673 + 1677 ], "predicate": [ 39 ], "__typename": [ - 70 + 74 ] }, "match_maps_aggregate_fields": { "avg": [ - 1671 + 1675 ], "count": [ 38, { "columns": [ - 1686, + 1690, "[match_maps_select_column!]" ], "distinct": [ @@ -29699,83 +29791,83 @@ export default { } ], "max": [ - 1677 + 1681 ], "min": [ - 1679 + 1683 ], "stddev": [ - 1688 + 1692 ], "stddev_pop": [ - 1690 + 1694 ], "stddev_samp": [ - 1692 + 1696 ], "sum": [ - 1696 + 1700 ], "var_pop": [ - 1700 + 1704 ], "var_samp": [ - 1702 + 1706 ], "variance": [ - 1704 + 1708 ], "__typename": [ - 70 + 74 ] }, "match_maps_aggregate_order_by": { "avg": [ - 1672 + 1676 ], "count": [ - 2011 + 2015 ], "max": [ - 1678 + 1682 ], "min": [ - 1680 + 1684 ], "stddev": [ - 1689 + 1693 ], "stddev_pop": [ - 1691 + 1695 ], "stddev_samp": [ - 1693 + 1697 ], "sum": [ - 1697 + 1701 ], "var_pop": [ - 1701 + 1705 ], "var_samp": [ - 1703 + 1707 ], "variance": [ - 1705 + 1709 ], "__typename": [ - 70 + 74 ] }, "match_maps_arr_rel_insert_input": { "data": [ - 1676 + 1680 ], "on_conflict": [ - 1683 + 1687 ], "__typename": [ - 70 + 74 ] }, "match_maps_avg_fields": { @@ -29804,83 +29896,83 @@ export default { 29 ], "__typename": [ - 70 + 74 ] }, "match_maps_avg_order_by": { "clips_count": [ - 2011 + 2015 ], "lineup_1_timeouts_available": [ - 2011 + 2015 ], "lineup_2_timeouts_available": [ - 2011 + 2015 ], "order": [ - 2011 + 2015 ], "public_clips_count": [ - 2011 + 2015 ], "__typename": [ - 70 + 74 ] }, "match_maps_bool_exp": { "_and": [ - 1673 + 1677 ], "_not": [ - 1673 + 1677 ], "_or": [ - 1673 + 1677 ], "clips_count": [ 39 ], "created_at": [ - 3422 + 3467 ], "demos": [ - 1560 + 1564 ], "demos_aggregate": [ - 1550 + 1554 ], "demos_download_url": [ - 72 + 76 ], "demos_total_size": [ 39 ], "e_match_map_status": [ - 660 + 664 ], "ended_at": [ - 3422 + 3467 ], "flashes": [ - 2332 + 2336 ], "flashes_aggregate": [ - 2323 + 2327 ], "id": [ - 3820 + 3865 ], "is_current_map": [ 4 ], "latest_clip_at": [ - 3422 + 3467 ], "lineup_1_score": [ 39 ], "lineup_1_side": [ - 887 + 891 ], "lineup_1_timeouts_available": [ 39 @@ -29889,97 +29981,97 @@ export default { 39 ], "lineup_2_side": [ - 887 + 891 ], "lineup_2_timeouts_available": [ 39 ], "map": [ - 1353 + 1357 ], "map_id": [ - 3820 + 3865 ], "match": [ - 1835 + 1839 ], "match_clips": [ - 1382 + 1386 ], "match_clips_aggregate": [ - 1375 + 1379 ], "match_id": [ - 3820 + 3865 ], "objectives": [ - 2576 + 2580 ], "objectives_aggregate": [ - 2569 + 2573 ], "order": [ 39 ], "player_assists": [ - 2160 + 2164 ], "player_assists_aggregate": [ - 2151 + 2155 ], "player_damages": [ - 2221 + 2225 ], "player_damages_aggregate": [ - 2214 + 2218 ], "player_kills": [ - 2377 + 2381 ], "player_kills_aggregate": [ - 2368 + 2372 ], "player_unused_utilities": [ - 2772 + 2808 ], "player_unused_utilities_aggregate": [ - 2765 + 2801 ], "public_clips_count": [ 39 ], "public_latest_clip_at": [ - 3422 + 3467 ], "rounds": [ - 1608 + 1612 ], "rounds_aggregate": [ - 1601 + 1605 ], "started_at": [ - 3422 + 3467 ], "status": [ - 663 + 667 ], "utility": [ - 2813 + 2849 ], "utility_aggregate": [ - 2806 + 2842 ], "vetos": [ - 1647 + 1651 ], "vetos_aggregate": [ - 1642 + 1646 ], "winning_lineup_id": [ - 3820 + 3865 ], "__typename": [ - 70 + 74 ] }, "match_maps_constraint": {}, @@ -30000,7 +30092,7 @@ export default { 38 ], "__typename": [ - 70 + 74 ] }, "match_maps_insert_input": { @@ -30008,97 +30100,97 @@ export default { 38 ], "created_at": [ - 3421 + 3466 ], "demos": [ - 1557 + 1561 ], "e_match_map_status": [ - 668 + 672 ], "ended_at": [ - 3421 + 3466 ], "flashes": [ - 2329 + 2333 ], "id": [ - 3818 + 3863 ], "latest_clip_at": [ - 3421 + 3466 ], "lineup_1_side": [ - 886 + 890 ], "lineup_1_timeouts_available": [ 38 ], "lineup_2_side": [ - 886 + 890 ], "lineup_2_timeouts_available": [ 38 ], "map": [ - 1361 + 1365 ], "map_id": [ - 3818 + 3863 ], "match": [ - 1844 + 1848 ], "match_clips": [ - 1379 + 1383 ], "match_id": [ - 3818 + 3863 ], "objectives": [ - 2573 + 2577 ], "order": [ 38 ], "player_assists": [ - 2157 + 2161 ], "player_damages": [ - 2218 + 2222 ], "player_kills": [ - 2374 + 2378 ], "player_unused_utilities": [ - 2769 + 2805 ], "public_clips_count": [ 38 ], "public_latest_clip_at": [ - 3421 + 3466 ], "rounds": [ - 1605 + 1609 ], "started_at": [ - 3421 + 3466 ], "status": [ - 662 + 666 ], "utility": [ - 2810 + 2846 ], "vetos": [ - 1646 + 1650 ], "winning_lineup_id": [ - 3818 + 3863 ], "__typename": [ - 70 + 74 ] }, "match_maps_max_fields": { @@ -30106,22 +30198,22 @@ export default { 38 ], "created_at": [ - 3421 + 3466 ], "demos_download_url": [ - 70 + 74 ], "demos_total_size": [ 38 ], "ended_at": [ - 3421 + 3466 ], "id": [ - 3818 + 3863 ], "latest_clip_at": [ - 3421 + 3466 ], "lineup_1_score": [ 38 @@ -30136,10 +30228,10 @@ export default { 38 ], "map_id": [ - 3818 + 3863 ], "match_id": [ - 3818 + 3863 ], "order": [ 38 @@ -30148,63 +30240,63 @@ export default { 38 ], "public_latest_clip_at": [ - 3421 + 3466 ], "started_at": [ - 3421 + 3466 ], "winning_lineup_id": [ - 3818 + 3863 ], "__typename": [ - 70 + 74 ] }, "match_maps_max_order_by": { "clips_count": [ - 2011 + 2015 ], "created_at": [ - 2011 + 2015 ], "ended_at": [ - 2011 + 2015 ], "id": [ - 2011 + 2015 ], "latest_clip_at": [ - 2011 + 2015 ], "lineup_1_timeouts_available": [ - 2011 + 2015 ], "lineup_2_timeouts_available": [ - 2011 + 2015 ], "map_id": [ - 2011 + 2015 ], "match_id": [ - 2011 + 2015 ], "order": [ - 2011 + 2015 ], "public_clips_count": [ - 2011 + 2015 ], "public_latest_clip_at": [ - 2011 + 2015 ], "started_at": [ - 2011 + 2015 ], "winning_lineup_id": [ - 2011 + 2015 ], "__typename": [ - 70 + 74 ] }, "match_maps_min_fields": { @@ -30212,22 +30304,22 @@ export default { 38 ], "created_at": [ - 3421 + 3466 ], "demos_download_url": [ - 70 + 74 ], "demos_total_size": [ 38 ], "ended_at": [ - 3421 + 3466 ], "id": [ - 3818 + 3863 ], "latest_clip_at": [ - 3421 + 3466 ], "lineup_1_score": [ 38 @@ -30242,10 +30334,10 @@ export default { 38 ], "map_id": [ - 3818 + 3863 ], "match_id": [ - 3818 + 3863 ], "order": [ 38 @@ -30254,63 +30346,63 @@ export default { 38 ], "public_latest_clip_at": [ - 3421 + 3466 ], "started_at": [ - 3421 + 3466 ], "winning_lineup_id": [ - 3818 + 3863 ], "__typename": [ - 70 + 74 ] }, "match_maps_min_order_by": { "clips_count": [ - 2011 + 2015 ], "created_at": [ - 2011 + 2015 ], "ended_at": [ - 2011 + 2015 ], "id": [ - 2011 + 2015 ], "latest_clip_at": [ - 2011 + 2015 ], "lineup_1_timeouts_available": [ - 2011 + 2015 ], "lineup_2_timeouts_available": [ - 2011 + 2015 ], "map_id": [ - 2011 + 2015 ], "match_id": [ - 2011 + 2015 ], "order": [ - 2011 + 2015 ], "public_clips_count": [ - 2011 + 2015 ], "public_latest_clip_at": [ - 2011 + 2015 ], "started_at": [ - 2011 + 2015 ], "winning_lineup_id": [ - 2011 + 2015 ], "__typename": [ - 70 + 74 ] }, "match_maps_mutation_response": { @@ -30318,156 +30410,156 @@ export default { 38 ], "returning": [ - 1664 + 1668 ], "__typename": [ - 70 + 74 ] }, "match_maps_obj_rel_insert_input": { "data": [ - 1676 + 1680 ], "on_conflict": [ - 1683 + 1687 ], "__typename": [ - 70 + 74 ] }, "match_maps_on_conflict": { "constraint": [ - 1674 + 1678 ], "update_columns": [ - 1698 + 1702 ], "where": [ - 1673 + 1677 ], "__typename": [ - 70 + 74 ] }, "match_maps_order_by": { "clips_count": [ - 2011 + 2015 ], "created_at": [ - 2011 + 2015 ], "demos_aggregate": [ - 1555 + 1559 ], "demos_download_url": [ - 2011 + 2015 ], "demos_total_size": [ - 2011 + 2015 ], "e_match_map_status": [ - 670 + 674 ], "ended_at": [ - 2011 + 2015 ], "flashes_aggregate": [ - 2328 + 2332 ], "id": [ - 2011 + 2015 ], "is_current_map": [ - 2011 + 2015 ], "latest_clip_at": [ - 2011 + 2015 ], "lineup_1_score": [ - 2011 + 2015 ], "lineup_1_side": [ - 2011 + 2015 ], "lineup_1_timeouts_available": [ - 2011 + 2015 ], "lineup_2_score": [ - 2011 + 2015 ], "lineup_2_side": [ - 2011 + 2015 ], "lineup_2_timeouts_available": [ - 2011 + 2015 ], "map": [ - 1363 + 1367 ], "map_id": [ - 2011 + 2015 ], "match": [ - 1846 + 1850 ], "match_clips_aggregate": [ - 1378 + 1382 ], "match_id": [ - 2011 + 2015 ], "objectives_aggregate": [ - 2572 + 2576 ], "order": [ - 2011 + 2015 ], "player_assists_aggregate": [ - 2156 + 2160 ], "player_damages_aggregate": [ - 2217 + 2221 ], "player_kills_aggregate": [ - 2373 + 2377 ], "player_unused_utilities_aggregate": [ - 2768 + 2804 ], "public_clips_count": [ - 2011 + 2015 ], "public_latest_clip_at": [ - 2011 + 2015 ], "rounds_aggregate": [ - 1604 + 1608 ], "started_at": [ - 2011 + 2015 ], "status": [ - 2011 + 2015 ], "utility_aggregate": [ - 2809 + 2845 ], "vetos_aggregate": [ - 1645 + 1649 ], "winning_lineup_id": [ - 2011 + 2015 ], "__typename": [ - 70 + 74 ] }, "match_maps_pk_columns_input": { "id": [ - 3818 + 3863 ], "__typename": [ - 70 + 74 ] }, "match_maps_select_column": {}, @@ -30476,34 +30568,34 @@ export default { 38 ], "created_at": [ - 3421 + 3466 ], "ended_at": [ - 3421 + 3466 ], "id": [ - 3818 + 3863 ], "latest_clip_at": [ - 3421 + 3466 ], "lineup_1_side": [ - 886 + 890 ], "lineup_1_timeouts_available": [ 38 ], "lineup_2_side": [ - 886 + 890 ], "lineup_2_timeouts_available": [ 38 ], "map_id": [ - 3818 + 3863 ], "match_id": [ - 3818 + 3863 ], "order": [ 38 @@ -30512,19 +30604,19 @@ export default { 38 ], "public_latest_clip_at": [ - 3421 + 3466 ], "started_at": [ - 3421 + 3466 ], "status": [ - 662 + 666 ], "winning_lineup_id": [ - 3818 + 3863 ], "__typename": [ - 70 + 74 ] }, "match_maps_stddev_fields": { @@ -30553,27 +30645,27 @@ export default { 29 ], "__typename": [ - 70 + 74 ] }, "match_maps_stddev_order_by": { "clips_count": [ - 2011 + 2015 ], "lineup_1_timeouts_available": [ - 2011 + 2015 ], "lineup_2_timeouts_available": [ - 2011 + 2015 ], "order": [ - 2011 + 2015 ], "public_clips_count": [ - 2011 + 2015 ], "__typename": [ - 70 + 74 ] }, "match_maps_stddev_pop_fields": { @@ -30602,27 +30694,27 @@ export default { 29 ], "__typename": [ - 70 + 74 ] }, "match_maps_stddev_pop_order_by": { "clips_count": [ - 2011 + 2015 ], "lineup_1_timeouts_available": [ - 2011 + 2015 ], "lineup_2_timeouts_available": [ - 2011 + 2015 ], "order": [ - 2011 + 2015 ], "public_clips_count": [ - 2011 + 2015 ], "__typename": [ - 70 + 74 ] }, "match_maps_stddev_samp_fields": { @@ -30651,38 +30743,38 @@ export default { 29 ], "__typename": [ - 70 + 74 ] }, "match_maps_stddev_samp_order_by": { "clips_count": [ - 2011 + 2015 ], "lineup_1_timeouts_available": [ - 2011 + 2015 ], "lineup_2_timeouts_available": [ - 2011 + 2015 ], "order": [ - 2011 + 2015 ], "public_clips_count": [ - 2011 + 2015 ], "__typename": [ - 70 + 74 ] }, "match_maps_stream_cursor_input": { "initial_value": [ - 1695 + 1699 ], "ordering": [ - 224 + 228 ], "__typename": [ - 70 + 74 ] }, "match_maps_stream_cursor_value_input": { @@ -30690,34 +30782,34 @@ export default { 38 ], "created_at": [ - 3421 + 3466 ], "ended_at": [ - 3421 + 3466 ], "id": [ - 3818 + 3863 ], "latest_clip_at": [ - 3421 + 3466 ], "lineup_1_side": [ - 886 + 890 ], "lineup_1_timeouts_available": [ 38 ], "lineup_2_side": [ - 886 + 890 ], "lineup_2_timeouts_available": [ 38 ], "map_id": [ - 3818 + 3863 ], "match_id": [ - 3818 + 3863 ], "order": [ 38 @@ -30726,19 +30818,19 @@ export default { 38 ], "public_latest_clip_at": [ - 3421 + 3466 ], "started_at": [ - 3421 + 3466 ], "status": [ - 662 + 666 ], "winning_lineup_id": [ - 3818 + 3863 ], "__typename": [ - 70 + 74 ] }, "match_maps_sum_fields": { @@ -30767,42 +30859,42 @@ export default { 38 ], "__typename": [ - 70 + 74 ] }, "match_maps_sum_order_by": { "clips_count": [ - 2011 + 2015 ], "lineup_1_timeouts_available": [ - 2011 + 2015 ], "lineup_2_timeouts_available": [ - 2011 + 2015 ], "order": [ - 2011 + 2015 ], "public_clips_count": [ - 2011 + 2015 ], "__typename": [ - 70 + 74 ] }, "match_maps_update_column": {}, "match_maps_updates": { "_inc": [ - 1675 + 1679 ], "_set": [ - 1687 + 1691 ], "where": [ - 1673 + 1677 ], "__typename": [ - 70 + 74 ] }, "match_maps_var_pop_fields": { @@ -30831,27 +30923,27 @@ export default { 29 ], "__typename": [ - 70 + 74 ] }, "match_maps_var_pop_order_by": { "clips_count": [ - 2011 + 2015 ], "lineup_1_timeouts_available": [ - 2011 + 2015 ], "lineup_2_timeouts_available": [ - 2011 + 2015 ], "order": [ - 2011 + 2015 ], "public_clips_count": [ - 2011 + 2015 ], "__typename": [ - 70 + 74 ] }, "match_maps_var_samp_fields": { @@ -30880,27 +30972,27 @@ export default { 29 ], "__typename": [ - 70 + 74 ] }, "match_maps_var_samp_order_by": { "clips_count": [ - 2011 + 2015 ], "lineup_1_timeouts_available": [ - 2011 + 2015 ], "lineup_2_timeouts_available": [ - 2011 + 2015 ], "order": [ - 2011 + 2015 ], "public_clips_count": [ - 2011 + 2015 ], "__typename": [ - 70 + 74 ] }, "match_maps_variance_fields": { @@ -30929,27 +31021,27 @@ export default { 29 ], "__typename": [ - 70 + 74 ] }, "match_maps_variance_order_by": { "clips_count": [ - 2011 + 2015 ], "lineup_1_timeouts_available": [ - 2011 + 2015 ], "lineup_2_timeouts_available": [ - 2011 + 2015 ], "order": [ - 2011 + 2015 ], "public_clips_count": [ - 2011 + 2015 ], "__typename": [ - 70 + 74 ] }, "match_options": { @@ -30963,7 +31055,7 @@ export default { 38 ], "check_in_setting": [ - 393 + 397 ], "coaches": [ 3 @@ -30975,10 +31067,10 @@ export default { 3 ], "id": [ - 3818 + 3863 ], "invite_code": [ - 70 + 74 ], "knife_round": [ 3 @@ -30987,22 +31079,22 @@ export default { 38 ], "map_pool": [ - 1325 + 1329 ], "map_pool_id": [ - 3818 + 3863 ], "map_veto": [ 3 ], "match_mode": [ - 683 + 687 ], "matches": [ - 1826, + 1830, { "distinct_on": [ - 1848, + 1852, "[matches_select_column!]" ], "limit": [ @@ -31012,19 +31104,19 @@ export default { 38 ], "order_by": [ - 1846, + 1850, "[matches_order_by!]" ], "where": [ - 1835 + 1839 ] } ], "matches_aggregate": [ - 1827, + 1831, { "distinct_on": [ - 1848, + 1852, "[matches_select_column!]" ], "limit": [ @@ -31034,11 +31126,11 @@ export default { 38 ], "order_by": [ - 1846, + 1850, "[matches_order_by!]" ], "where": [ - 1835 + 1839 ] } ], @@ -31055,59 +31147,59 @@ export default { 3 ], "ready_setting": [ - 805 + 809 ], "region_veto": [ 3 ], "regions": [ - 70 + 74 ], "tech_timeout_setting": [ - 967 + 971 ], "timeout_setting": [ - 967 + 971 ], "tournament": [ - 3772 + 3817 ], "tournament_bracket": [ - 3423 + 3468 ], "tournament_stage": [ - 3510 + 3555 ], "tv_delay": [ 38 ], "type": [ - 724 + 728 ], "__typename": [ - 70 + 74 ] }, "match_options_aggregate": { "aggregate": [ - 1708 + 1712 ], "nodes": [ - 1706 + 1710 ], "__typename": [ - 70 + 74 ] }, "match_options_aggregate_fields": { "avg": [ - 1709 + 1713 ], "count": [ 38, { "columns": [ - 1721, + 1725, "[match_options_select_column!]" ], "distinct": [ @@ -31116,34 +31208,34 @@ export default { } ], "max": [ - 1714 + 1718 ], "min": [ - 1715 + 1719 ], "stddev": [ - 1723 + 1727 ], "stddev_pop": [ - 1724 + 1728 ], "stddev_samp": [ - 1725 + 1729 ], "sum": [ - 1728 + 1732 ], "var_pop": [ - 1731 + 1735 ], "var_samp": [ - 1732 + 1736 ], "variance": [ - 1733 + 1737 ], "__typename": [ - 70 + 74 ] }, "match_options_avg_fields": { @@ -31166,18 +31258,18 @@ export default { 29 ], "__typename": [ - 70 + 74 ] }, "match_options_bool_exp": { "_and": [ - 1710 + 1714 ], "_not": [ - 1710 + 1714 ], "_or": [ - 1710 + 1714 ], "auto_cancel_duration": [ 39 @@ -31189,7 +31281,7 @@ export default { 39 ], "check_in_setting": [ - 394 + 398 ], "coaches": [ 4 @@ -31201,10 +31293,10 @@ export default { 4 ], "id": [ - 3820 + 3865 ], "invite_code": [ - 72 + 76 ], "knife_round": [ 4 @@ -31213,22 +31305,22 @@ export default { 39 ], "map_pool": [ - 1328 + 1332 ], "map_pool_id": [ - 3820 + 3865 ], "map_veto": [ 4 ], "match_mode": [ - 684 + 688 ], "matches": [ - 1835 + 1839 ], "matches_aggregate": [ - 1828 + 1832 ], "mr": [ 39 @@ -31243,37 +31335,37 @@ export default { 4 ], "ready_setting": [ - 806 + 810 ], "region_veto": [ 4 ], "regions": [ - 71 + 75 ], "tech_timeout_setting": [ - 968 + 972 ], "timeout_setting": [ - 968 + 972 ], "tournament": [ - 3783 + 3828 ], "tournament_bracket": [ - 3434 + 3479 ], "tournament_stage": [ - 3522 + 3567 ], "tv_delay": [ 39 ], "type": [ - 725 + 729 ], "__typename": [ - 70 + 74 ] }, "match_options_constraint": {}, @@ -31297,7 +31389,7 @@ export default { 38 ], "__typename": [ - 70 + 74 ] }, "match_options_insert_input": { @@ -31311,7 +31403,7 @@ export default { 38 ], "check_in_setting": [ - 393 + 397 ], "coaches": [ 3 @@ -31320,10 +31412,10 @@ export default { 3 ], "id": [ - 3818 + 3863 ], "invite_code": [ - 70 + 74 ], "knife_round": [ 3 @@ -31332,19 +31424,19 @@ export default { 38 ], "map_pool": [ - 1334 + 1338 ], "map_pool_id": [ - 3818 + 3863 ], "map_veto": [ 3 ], "match_mode": [ - 683 + 687 ], "matches": [ - 1832 + 1836 ], "mr": [ 38 @@ -31359,37 +31451,37 @@ export default { 3 ], "ready_setting": [ - 805 + 809 ], "region_veto": [ 3 ], "regions": [ - 70 + 74 ], "tech_timeout_setting": [ - 967 + 971 ], "timeout_setting": [ - 967 + 971 ], "tournament": [ - 3792 + 3837 ], "tournament_bracket": [ - 3443 + 3488 ], "tournament_stage": [ - 3534 + 3579 ], "tv_delay": [ 38 ], "type": [ - 724 + 728 ], "__typename": [ - 70 + 74 ] }, "match_options_max_fields": { @@ -31400,16 +31492,16 @@ export default { 38 ], "id": [ - 3818 + 3863 ], "invite_code": [ - 70 + 74 ], "live_match_timeout": [ 38 ], "map_pool_id": [ - 3818 + 3863 ], "mr": [ 38 @@ -31418,13 +31510,13 @@ export default { 38 ], "regions": [ - 70 + 74 ], "tv_delay": [ 38 ], "__typename": [ - 70 + 74 ] }, "match_options_min_fields": { @@ -31435,16 +31527,16 @@ export default { 38 ], "id": [ - 3818 + 3863 ], "invite_code": [ - 70 + 74 ], "live_match_timeout": [ 38 ], "map_pool_id": [ - 3818 + 3863 ], "mr": [ 38 @@ -31453,13 +31545,13 @@ export default { 38 ], "regions": [ - 70 + 74 ], "tv_delay": [ 38 ], "__typename": [ - 70 + 74 ] }, "match_options_mutation_response": { @@ -31467,138 +31559,138 @@ export default { 38 ], "returning": [ - 1706 + 1710 ], "__typename": [ - 70 + 74 ] }, "match_options_obj_rel_insert_input": { "data": [ - 1713 + 1717 ], "on_conflict": [ - 1718 + 1722 ], "__typename": [ - 70 + 74 ] }, "match_options_on_conflict": { "constraint": [ - 1711 + 1715 ], "update_columns": [ - 1729 + 1733 ], "where": [ - 1710 + 1714 ], "__typename": [ - 70 + 74 ] }, "match_options_order_by": { "auto_cancel_duration": [ - 2011 + 2015 ], "auto_cancellation": [ - 2011 + 2015 ], "best_of": [ - 2011 + 2015 ], "check_in_setting": [ - 2011 + 2015 ], "coaches": [ - 2011 + 2015 ], "default_models": [ - 2011 + 2015 ], "has_active_matches": [ - 2011 + 2015 ], "id": [ - 2011 + 2015 ], "invite_code": [ - 2011 + 2015 ], "knife_round": [ - 2011 + 2015 ], "live_match_timeout": [ - 2011 + 2015 ], "map_pool": [ - 1336 + 1340 ], "map_pool_id": [ - 2011 + 2015 ], "map_veto": [ - 2011 + 2015 ], "match_mode": [ - 2011 + 2015 ], "matches_aggregate": [ - 1831 + 1835 ], "mr": [ - 2011 + 2015 ], "number_of_substitutes": [ - 2011 + 2015 ], "overtime": [ - 2011 + 2015 ], "prefer_dedicated_server": [ - 2011 + 2015 ], "ready_setting": [ - 2011 + 2015 ], "region_veto": [ - 2011 + 2015 ], "regions": [ - 2011 + 2015 ], "tech_timeout_setting": [ - 2011 + 2015 ], "timeout_setting": [ - 2011 + 2015 ], "tournament": [ - 3794 + 3839 ], "tournament_bracket": [ - 3445 + 3490 ], "tournament_stage": [ - 3536 + 3581 ], "tv_delay": [ - 2011 + 2015 ], "type": [ - 2011 + 2015 ], "__typename": [ - 70 + 74 ] }, "match_options_pk_columns_input": { "id": [ - 3818 + 3863 ], "__typename": [ - 70 + 74 ] }, "match_options_select_column": {}, @@ -31613,7 +31705,7 @@ export default { 38 ], "check_in_setting": [ - 393 + 397 ], "coaches": [ 3 @@ -31622,10 +31714,10 @@ export default { 3 ], "id": [ - 3818 + 3863 ], "invite_code": [ - 70 + 74 ], "knife_round": [ 3 @@ -31634,13 +31726,13 @@ export default { 38 ], "map_pool_id": [ - 3818 + 3863 ], "map_veto": [ 3 ], "match_mode": [ - 683 + 687 ], "mr": [ 38 @@ -31655,28 +31747,28 @@ export default { 3 ], "ready_setting": [ - 805 + 809 ], "region_veto": [ 3 ], "regions": [ - 70 + 74 ], "tech_timeout_setting": [ - 967 + 971 ], "timeout_setting": [ - 967 + 971 ], "tv_delay": [ 38 ], "type": [ - 724 + 728 ], "__typename": [ - 70 + 74 ] }, "match_options_stddev_fields": { @@ -31699,7 +31791,7 @@ export default { 29 ], "__typename": [ - 70 + 74 ] }, "match_options_stddev_pop_fields": { @@ -31722,7 +31814,7 @@ export default { 29 ], "__typename": [ - 70 + 74 ] }, "match_options_stddev_samp_fields": { @@ -31745,18 +31837,18 @@ export default { 29 ], "__typename": [ - 70 + 74 ] }, "match_options_stream_cursor_input": { "initial_value": [ - 1727 + 1731 ], "ordering": [ - 224 + 228 ], "__typename": [ - 70 + 74 ] }, "match_options_stream_cursor_value_input": { @@ -31770,7 +31862,7 @@ export default { 38 ], "check_in_setting": [ - 393 + 397 ], "coaches": [ 3 @@ -31779,10 +31871,10 @@ export default { 3 ], "id": [ - 3818 + 3863 ], "invite_code": [ - 70 + 74 ], "knife_round": [ 3 @@ -31791,13 +31883,13 @@ export default { 38 ], "map_pool_id": [ - 3818 + 3863 ], "map_veto": [ 3 ], "match_mode": [ - 683 + 687 ], "mr": [ 38 @@ -31812,28 +31904,28 @@ export default { 3 ], "ready_setting": [ - 805 + 809 ], "region_veto": [ 3 ], "regions": [ - 70 + 74 ], "tech_timeout_setting": [ - 967 + 971 ], "timeout_setting": [ - 967 + 971 ], "tv_delay": [ 38 ], "type": [ - 724 + 728 ], "__typename": [ - 70 + 74 ] }, "match_options_sum_fields": { @@ -31856,22 +31948,22 @@ export default { 38 ], "__typename": [ - 70 + 74 ] }, "match_options_update_column": {}, "match_options_updates": { "_inc": [ - 1712 + 1716 ], "_set": [ - 1722 + 1726 ], "where": [ - 1710 + 1714 ], "__typename": [ - 70 + 74 ] }, "match_options_var_pop_fields": { @@ -31894,7 +31986,7 @@ export default { 29 ], "__typename": [ - 70 + 74 ] }, "match_options_var_samp_fields": { @@ -31917,7 +32009,7 @@ export default { 29 ], "__typename": [ - 70 + 74 ] }, "match_options_variance_fields": { @@ -31940,72 +32032,72 @@ export default { 29 ], "__typename": [ - 70 + 74 ] }, "match_region_veto_picks": { "created_at": [ - 3421 + 3466 ], "id": [ - 3818 + 3863 ], "match": [ - 1826 + 1830 ], "match_id": [ - 3818 + 3863 ], "match_lineup": [ - 1506 + 1510 ], "match_lineup_id": [ - 3818 + 3863 ], "region": [ - 70 + 74 ], "type": [ - 1049 + 1053 ], "__typename": [ - 70 + 74 ] }, "match_region_veto_picks_aggregate": { "aggregate": [ - 1738 + 1742 ], "nodes": [ - 1734 + 1738 ], "__typename": [ - 70 + 74 ] }, "match_region_veto_picks_aggregate_bool_exp": { "count": [ - 1737 + 1741 ], "__typename": [ - 70 + 74 ] }, "match_region_veto_picks_aggregate_bool_exp_count": { "arguments": [ - 1752 + 1756 ], "distinct": [ 3 ], "filter": [ - 1741 + 1745 ], "predicate": [ 39 ], "__typename": [ - 70 + 74 ] }, "match_region_veto_picks_aggregate_fields": { @@ -32013,7 +32105,7 @@ export default { 38, { "columns": [ - 1752, + 1756, "[match_region_veto_picks_select_column!]" ], "distinct": [ @@ -32022,186 +32114,186 @@ export default { } ], "max": [ - 1744 + 1748 ], "min": [ - 1746 + 1750 ], "__typename": [ - 70 + 74 ] }, "match_region_veto_picks_aggregate_order_by": { "count": [ - 2011 + 2015 ], "max": [ - 1745 + 1749 ], "min": [ - 1747 + 1751 ], "__typename": [ - 70 + 74 ] }, "match_region_veto_picks_arr_rel_insert_input": { "data": [ - 1743 + 1747 ], "on_conflict": [ - 1749 + 1753 ], "__typename": [ - 70 + 74 ] }, "match_region_veto_picks_bool_exp": { "_and": [ - 1741 + 1745 ], "_not": [ - 1741 + 1745 ], "_or": [ - 1741 + 1745 ], "created_at": [ - 3422 + 3467 ], "id": [ - 3820 + 3865 ], "match": [ - 1835 + 1839 ], "match_id": [ - 3820 + 3865 ], "match_lineup": [ - 1515 + 1519 ], "match_lineup_id": [ - 3820 + 3865 ], "region": [ - 72 + 76 ], "type": [ - 1050 + 1054 ], "__typename": [ - 70 + 74 ] }, "match_region_veto_picks_constraint": {}, "match_region_veto_picks_insert_input": { "created_at": [ - 3421 + 3466 ], "id": [ - 3818 + 3863 ], "match": [ - 1844 + 1848 ], "match_id": [ - 3818 + 3863 ], "match_lineup": [ - 1524 + 1528 ], "match_lineup_id": [ - 3818 + 3863 ], "region": [ - 70 + 74 ], "type": [ - 1049 + 1053 ], "__typename": [ - 70 + 74 ] }, "match_region_veto_picks_max_fields": { "created_at": [ - 3421 + 3466 ], "id": [ - 3818 + 3863 ], "match_id": [ - 3818 + 3863 ], "match_lineup_id": [ - 3818 + 3863 ], "region": [ - 70 + 74 ], "__typename": [ - 70 + 74 ] }, "match_region_veto_picks_max_order_by": { "created_at": [ - 2011 + 2015 ], "id": [ - 2011 + 2015 ], "match_id": [ - 2011 + 2015 ], "match_lineup_id": [ - 2011 + 2015 ], "region": [ - 2011 + 2015 ], "__typename": [ - 70 + 74 ] }, "match_region_veto_picks_min_fields": { "created_at": [ - 3421 + 3466 ], "id": [ - 3818 + 3863 ], "match_id": [ - 3818 + 3863 ], "match_lineup_id": [ - 3818 + 3863 ], "region": [ - 70 + 74 ], "__typename": [ - 70 + 74 ] }, "match_region_veto_picks_min_order_by": { "created_at": [ - 2011 + 2015 ], "id": [ - 2011 + 2015 ], "match_id": [ - 2011 + 2015 ], "match_lineup_id": [ - 2011 + 2015 ], "region": [ - 2011 + 2015 ], "__typename": [ - 70 + 74 ] }, "match_region_veto_picks_mutation_response": { @@ -32209,131 +32301,131 @@ export default { 38 ], "returning": [ - 1734 + 1738 ], "__typename": [ - 70 + 74 ] }, "match_region_veto_picks_on_conflict": { "constraint": [ - 1742 + 1746 ], "update_columns": [ - 1756 + 1760 ], "where": [ - 1741 + 1745 ], "__typename": [ - 70 + 74 ] }, "match_region_veto_picks_order_by": { "created_at": [ - 2011 + 2015 ], "id": [ - 2011 + 2015 ], "match": [ - 1846 + 1850 ], "match_id": [ - 2011 + 2015 ], "match_lineup": [ - 1526 + 1530 ], "match_lineup_id": [ - 2011 + 2015 ], "region": [ - 2011 + 2015 ], "type": [ - 2011 + 2015 ], "__typename": [ - 70 + 74 ] }, "match_region_veto_picks_pk_columns_input": { "id": [ - 3818 + 3863 ], "__typename": [ - 70 + 74 ] }, "match_region_veto_picks_select_column": {}, "match_region_veto_picks_set_input": { "created_at": [ - 3421 + 3466 ], "id": [ - 3818 + 3863 ], "match_id": [ - 3818 + 3863 ], "match_lineup_id": [ - 3818 + 3863 ], "region": [ - 70 + 74 ], "type": [ - 1049 + 1053 ], "__typename": [ - 70 + 74 ] }, "match_region_veto_picks_stream_cursor_input": { "initial_value": [ - 1755 + 1759 ], "ordering": [ - 224 + 228 ], "__typename": [ - 70 + 74 ] }, "match_region_veto_picks_stream_cursor_value_input": { "created_at": [ - 3421 + 3466 ], "id": [ - 3818 + 3863 ], "match_id": [ - 3818 + 3863 ], "match_lineup_id": [ - 3818 + 3863 ], "region": [ - 70 + 74 ], "type": [ - 1049 + 1053 ], "__typename": [ - 70 + 74 ] }, "match_region_veto_picks_update_column": {}, "match_region_veto_picks_updates": { "_set": [ - 1753 + 1757 ], "where": [ - 1741 + 1745 ], "__typename": [ - 70 + 74 ] }, "match_streams": { @@ -32341,16 +32433,16 @@ export default { 3 ], "error_message": [ - 70 + 74 ], "game_server_node": [ - 1113 + 1117 ], "game_server_node_id": [ - 70 + 74 ], "id": [ - 3818 + 3863 ], "is_game_streamer": [ 3 @@ -32359,132 +32451,132 @@ export default { 3 ], "k8s_service_name": [ - 70 + 74 ], "last_status_at": [ - 3421 + 3466 ], "link": [ - 70 + 74 ], "match": [ - 1826 + 1830 ], "match_id": [ - 3818 + 3863 ], "mode": [ - 70 + 74 ], "priority": [ 38 ], "status": [ - 70 + 74 ], "status_history": [ - 1235, + 1239, { "path": [ - 70 + 74 ] } ], "stream_url": [ - 70 + 74 ], "title": [ - 70 + 74 ], "__typename": [ - 70 + 74 ] }, "match_streams_aggregate": { "aggregate": [ - 1764 + 1768 ], "nodes": [ - 1758 + 1762 ], "__typename": [ - 70 + 74 ] }, "match_streams_aggregate_bool_exp": { "bool_and": [ - 1761 + 1765 ], "bool_or": [ - 1762 + 1766 ], "count": [ - 1763 + 1767 ], "__typename": [ - 70 + 74 ] }, "match_streams_aggregate_bool_exp_bool_and": { "arguments": [ - 1787 + 1791 ], "distinct": [ 3 ], "filter": [ - 1770 + 1774 ], "predicate": [ 4 ], "__typename": [ - 70 + 74 ] }, "match_streams_aggregate_bool_exp_bool_or": { "arguments": [ - 1788 + 1792 ], "distinct": [ 3 ], "filter": [ - 1770 + 1774 ], "predicate": [ 4 ], "__typename": [ - 70 + 74 ] }, "match_streams_aggregate_bool_exp_count": { "arguments": [ - 1786 + 1790 ], "distinct": [ 3 ], "filter": [ - 1770 + 1774 ], "predicate": [ 39 ], "__typename": [ - 70 + 74 ] }, "match_streams_aggregate_fields": { "avg": [ - 1768 + 1772 ], "count": [ 38, { "columns": [ - 1786, + 1790, "[match_streams_select_column!]" ], "distinct": [ @@ -32493,91 +32585,91 @@ export default { } ], "max": [ - 1777 + 1781 ], "min": [ - 1779 + 1783 ], "stddev": [ - 1790 + 1794 ], "stddev_pop": [ - 1792 + 1796 ], "stddev_samp": [ - 1794 + 1798 ], "sum": [ - 1798 + 1802 ], "var_pop": [ - 1802 + 1806 ], "var_samp": [ - 1804 + 1808 ], "variance": [ - 1806 + 1810 ], "__typename": [ - 70 + 74 ] }, "match_streams_aggregate_order_by": { "avg": [ - 1769 + 1773 ], "count": [ - 2011 + 2015 ], "max": [ - 1778 + 1782 ], "min": [ - 1780 + 1784 ], "stddev": [ - 1791 + 1795 ], "stddev_pop": [ - 1793 + 1797 ], "stddev_samp": [ - 1795 + 1799 ], "sum": [ - 1799 + 1803 ], "var_pop": [ - 1803 + 1807 ], "var_samp": [ - 1805 + 1809 ], "variance": [ - 1807 + 1811 ], "__typename": [ - 70 + 74 ] }, "match_streams_append_input": { "status_history": [ - 1235 + 1239 ], "__typename": [ - 70 + 74 ] }, "match_streams_arr_rel_insert_input": { "data": [ - 1776 + 1780 ], "on_conflict": [ - 1782 + 1786 ], "__typename": [ - 70 + 74 ] }, "match_streams_avg_fields": { @@ -32585,41 +32677,41 @@ export default { 29 ], "__typename": [ - 70 + 74 ] }, "match_streams_avg_order_by": { "priority": [ - 2011 + 2015 ], "__typename": [ - 70 + 74 ] }, "match_streams_bool_exp": { "_and": [ - 1770 + 1774 ], "_not": [ - 1770 + 1774 ], "_or": [ - 1770 + 1774 ], "autodirector": [ 4 ], "error_message": [ - 72 + 76 ], "game_server_node": [ - 1125 + 1129 ], "game_server_node_id": [ - 72 + 76 ], "id": [ - 3820 + 3865 ], "is_game_streamer": [ 4 @@ -32628,49 +32720,49 @@ export default { 4 ], "k8s_service_name": [ - 72 + 76 ], "last_status_at": [ - 3422 + 3467 ], "link": [ - 72 + 76 ], "match": [ - 1835 + 1839 ], "match_id": [ - 3820 + 3865 ], "mode": [ - 72 + 76 ], "priority": [ 39 ], "status": [ - 72 + 76 ], "status_history": [ - 1237 + 1241 ], "stream_url": [ - 72 + 76 ], "title": [ - 72 + 76 ], "__typename": [ - 70 + 74 ] }, "match_streams_constraint": {}, "match_streams_delete_at_path_input": { "status_history": [ - 70 + 74 ], "__typename": [ - 70 + 74 ] }, "match_streams_delete_elem_input": { @@ -32678,15 +32770,15 @@ export default { 38 ], "__typename": [ - 70 + 74 ] }, "match_streams_delete_key_input": { "status_history": [ - 70 + 74 ], "__typename": [ - 70 + 74 ] }, "match_streams_inc_input": { @@ -32694,7 +32786,7 @@ export default { 38 ], "__typename": [ - 70 + 74 ] }, "match_streams_insert_input": { @@ -32702,16 +32794,16 @@ export default { 3 ], "error_message": [ - 70 + 74 ], "game_server_node": [ - 1137 + 1141 ], "game_server_node_id": [ - 70 + 74 ], "id": [ - 3818 + 3863 ], "is_game_streamer": [ 3 @@ -32720,204 +32812,204 @@ export default { 3 ], "k8s_service_name": [ - 70 + 74 ], "last_status_at": [ - 3421 + 3466 ], "link": [ - 70 + 74 ], "match": [ - 1844 + 1848 ], "match_id": [ - 3818 + 3863 ], "mode": [ - 70 + 74 ], "priority": [ 38 ], "status": [ - 70 + 74 ], "status_history": [ - 1235 + 1239 ], "stream_url": [ - 70 + 74 ], "title": [ - 70 + 74 ], "__typename": [ - 70 + 74 ] }, "match_streams_max_fields": { "error_message": [ - 70 + 74 ], "game_server_node_id": [ - 70 + 74 ], "id": [ - 3818 + 3863 ], "k8s_service_name": [ - 70 + 74 ], "last_status_at": [ - 3421 + 3466 ], "link": [ - 70 + 74 ], "match_id": [ - 3818 + 3863 ], "mode": [ - 70 + 74 ], "priority": [ 38 ], "status": [ - 70 + 74 ], "stream_url": [ - 70 + 74 ], "title": [ - 70 + 74 ], "__typename": [ - 70 + 74 ] }, "match_streams_max_order_by": { "error_message": [ - 2011 + 2015 ], "game_server_node_id": [ - 2011 + 2015 ], "id": [ - 2011 + 2015 ], "k8s_service_name": [ - 2011 + 2015 ], "last_status_at": [ - 2011 + 2015 ], "link": [ - 2011 + 2015 ], "match_id": [ - 2011 + 2015 ], "mode": [ - 2011 + 2015 ], "priority": [ - 2011 + 2015 ], "status": [ - 2011 + 2015 ], "stream_url": [ - 2011 + 2015 ], "title": [ - 2011 + 2015 ], "__typename": [ - 70 + 74 ] }, "match_streams_min_fields": { "error_message": [ - 70 + 74 ], "game_server_node_id": [ - 70 + 74 ], "id": [ - 3818 + 3863 ], "k8s_service_name": [ - 70 + 74 ], "last_status_at": [ - 3421 + 3466 ], "link": [ - 70 + 74 ], "match_id": [ - 3818 + 3863 ], "mode": [ - 70 + 74 ], "priority": [ 38 ], "status": [ - 70 + 74 ], "stream_url": [ - 70 + 74 ], "title": [ - 70 + 74 ], "__typename": [ - 70 + 74 ] }, "match_streams_min_order_by": { "error_message": [ - 2011 + 2015 ], "game_server_node_id": [ - 2011 + 2015 ], "id": [ - 2011 + 2015 ], "k8s_service_name": [ - 2011 + 2015 ], "last_status_at": [ - 2011 + 2015 ], "link": [ - 2011 + 2015 ], "match_id": [ - 2011 + 2015 ], "mode": [ - 2011 + 2015 ], "priority": [ - 2011 + 2015 ], "status": [ - 2011 + 2015 ], "stream_url": [ - 2011 + 2015 ], "title": [ - 2011 + 2015 ], "__typename": [ - 70 + 74 ] }, "match_streams_mutation_response": { @@ -32925,99 +33017,99 @@ export default { 38 ], "returning": [ - 1758 + 1762 ], "__typename": [ - 70 + 74 ] }, "match_streams_on_conflict": { "constraint": [ - 1771 + 1775 ], "update_columns": [ - 1800 + 1804 ], "where": [ - 1770 + 1774 ], "__typename": [ - 70 + 74 ] }, "match_streams_order_by": { "autodirector": [ - 2011 + 2015 ], "error_message": [ - 2011 + 2015 ], "game_server_node": [ - 1139 + 1143 ], "game_server_node_id": [ - 2011 + 2015 ], "id": [ - 2011 + 2015 ], "is_game_streamer": [ - 2011 + 2015 ], "is_live": [ - 2011 + 2015 ], "k8s_service_name": [ - 2011 + 2015 ], "last_status_at": [ - 2011 + 2015 ], "link": [ - 2011 + 2015 ], "match": [ - 1846 + 1850 ], "match_id": [ - 2011 + 2015 ], "mode": [ - 2011 + 2015 ], "priority": [ - 2011 + 2015 ], "status": [ - 2011 + 2015 ], "status_history": [ - 2011 + 2015 ], "stream_url": [ - 2011 + 2015 ], "title": [ - 2011 + 2015 ], "__typename": [ - 70 + 74 ] }, "match_streams_pk_columns_input": { "id": [ - 3818 + 3863 ], "__typename": [ - 70 + 74 ] }, "match_streams_prepend_input": { "status_history": [ - 1235 + 1239 ], "__typename": [ - 70 + 74 ] }, "match_streams_select_column": {}, @@ -33028,13 +33120,13 @@ export default { 3 ], "error_message": [ - 70 + 74 ], "game_server_node_id": [ - 70 + 74 ], "id": [ - 3818 + 3863 ], "is_game_streamer": [ 3 @@ -33043,37 +33135,37 @@ export default { 3 ], "k8s_service_name": [ - 70 + 74 ], "last_status_at": [ - 3421 + 3466 ], "link": [ - 70 + 74 ], "match_id": [ - 3818 + 3863 ], "mode": [ - 70 + 74 ], "priority": [ 38 ], "status": [ - 70 + 74 ], "status_history": [ - 1235 + 1239 ], "stream_url": [ - 70 + 74 ], "title": [ - 70 + 74 ], "__typename": [ - 70 + 74 ] }, "match_streams_stddev_fields": { @@ -33081,15 +33173,15 @@ export default { 29 ], "__typename": [ - 70 + 74 ] }, "match_streams_stddev_order_by": { "priority": [ - 2011 + 2015 ], "__typename": [ - 70 + 74 ] }, "match_streams_stddev_pop_fields": { @@ -33097,15 +33189,15 @@ export default { 29 ], "__typename": [ - 70 + 74 ] }, "match_streams_stddev_pop_order_by": { "priority": [ - 2011 + 2015 ], "__typename": [ - 70 + 74 ] }, "match_streams_stddev_samp_fields": { @@ -33113,26 +33205,26 @@ export default { 29 ], "__typename": [ - 70 + 74 ] }, "match_streams_stddev_samp_order_by": { "priority": [ - 2011 + 2015 ], "__typename": [ - 70 + 74 ] }, "match_streams_stream_cursor_input": { "initial_value": [ - 1797 + 1801 ], "ordering": [ - 224 + 228 ], "__typename": [ - 70 + 74 ] }, "match_streams_stream_cursor_value_input": { @@ -33140,13 +33232,13 @@ export default { 3 ], "error_message": [ - 70 + 74 ], "game_server_node_id": [ - 70 + 74 ], "id": [ - 3818 + 3863 ], "is_game_streamer": [ 3 @@ -33155,37 +33247,37 @@ export default { 3 ], "k8s_service_name": [ - 70 + 74 ], "last_status_at": [ - 3421 + 3466 ], "link": [ - 70 + 74 ], "match_id": [ - 3818 + 3863 ], "mode": [ - 70 + 74 ], "priority": [ 38 ], "status": [ - 70 + 74 ], "status_history": [ - 1235 + 1239 ], "stream_url": [ - 70 + 74 ], "title": [ - 70 + 74 ], "__typename": [ - 70 + 74 ] }, "match_streams_sum_fields": { @@ -33193,45 +33285,45 @@ export default { 38 ], "__typename": [ - 70 + 74 ] }, "match_streams_sum_order_by": { "priority": [ - 2011 + 2015 ], "__typename": [ - 70 + 74 ] }, "match_streams_update_column": {}, "match_streams_updates": { "_append": [ - 1766 + 1770 ], "_delete_at_path": [ - 1772 + 1776 ], "_delete_elem": [ - 1773 + 1777 ], "_delete_key": [ - 1774 + 1778 ], "_inc": [ - 1775 + 1779 ], "_prepend": [ - 1785 + 1789 ], "_set": [ - 1789 + 1793 ], "where": [ - 1770 + 1774 ], "__typename": [ - 70 + 74 ] }, "match_streams_var_pop_fields": { @@ -33239,15 +33331,15 @@ export default { 29 ], "__typename": [ - 70 + 74 ] }, "match_streams_var_pop_order_by": { "priority": [ - 2011 + 2015 ], "__typename": [ - 70 + 74 ] }, "match_streams_var_samp_fields": { @@ -33255,15 +33347,15 @@ export default { 29 ], "__typename": [ - 70 + 74 ] }, "match_streams_var_samp_order_by": { "priority": [ - 2011 + 2015 ], "__typename": [ - 70 + 74 ] }, "match_streams_variance_fields": { @@ -33271,37 +33363,37 @@ export default { 29 ], "__typename": [ - 70 + 74 ] }, "match_streams_variance_order_by": { "priority": [ - 2011 + 2015 ], "__typename": [ - 70 + 74 ] }, "match_type_cfgs": { "cfg": [ - 70 + 74 ], "type": [ - 539 + 543 ], "__typename": [ - 70 + 74 ] }, "match_type_cfgs_aggregate": { "aggregate": [ - 1810 + 1814 ], "nodes": [ - 1808 + 1812 ], "__typename": [ - 70 + 74 ] }, "match_type_cfgs_aggregate_fields": { @@ -33309,7 +33401,7 @@ export default { 38, { "columns": [ - 1820, + 1824, "[match_type_cfgs_select_column!]" ], "distinct": [ @@ -33318,61 +33410,61 @@ export default { } ], "max": [ - 1814 + 1818 ], "min": [ - 1815 + 1819 ], "__typename": [ - 70 + 74 ] }, "match_type_cfgs_bool_exp": { "_and": [ - 1811 + 1815 ], "_not": [ - 1811 + 1815 ], "_or": [ - 1811 + 1815 ], "cfg": [ - 72 + 76 ], "type": [ - 540 + 544 ], "__typename": [ - 70 + 74 ] }, "match_type_cfgs_constraint": {}, "match_type_cfgs_insert_input": { "cfg": [ - 70 + 74 ], "type": [ - 539 + 543 ], "__typename": [ - 70 + 74 ] }, "match_type_cfgs_max_fields": { "cfg": [ - 70 + 74 ], "__typename": [ - 70 + 74 ] }, "match_type_cfgs_min_fields": { "cfg": [ - 70 + 74 ], "__typename": [ - 70 + 74 ] }, "match_type_cfgs_mutation_response": { @@ -33380,89 +33472,89 @@ export default { 38 ], "returning": [ - 1808 + 1812 ], "__typename": [ - 70 + 74 ] }, "match_type_cfgs_on_conflict": { "constraint": [ - 1812 + 1816 ], "update_columns": [ - 1824 + 1828 ], "where": [ - 1811 + 1815 ], "__typename": [ - 70 + 74 ] }, "match_type_cfgs_order_by": { "cfg": [ - 2011 + 2015 ], "type": [ - 2011 + 2015 ], "__typename": [ - 70 + 74 ] }, "match_type_cfgs_pk_columns_input": { "type": [ - 539 + 543 ], "__typename": [ - 70 + 74 ] }, "match_type_cfgs_select_column": {}, "match_type_cfgs_set_input": { "cfg": [ - 70 + 74 ], "type": [ - 539 + 543 ], "__typename": [ - 70 + 74 ] }, "match_type_cfgs_stream_cursor_input": { "initial_value": [ - 1823 + 1827 ], "ordering": [ - 224 + 228 ], "__typename": [ - 70 + 74 ] }, "match_type_cfgs_stream_cursor_value_input": { "cfg": [ - 70 + 74 ], "type": [ - 539 + 543 ], "__typename": [ - 70 + 74 ] }, "match_type_cfgs_update_column": {}, "match_type_cfgs_updates": { "_set": [ - 1821 + 1825 ], "where": [ - 1811 + 1815 ], "__typename": [ - 70 + 74 ] }, "matches": { @@ -33491,13 +33583,13 @@ export default { 3 ], "cancels_at": [ - 3421 + 3466 ], "clutches": [ - 3863, + 3908, { "distinct_on": [ - 3879, + 3924, "[v_match_clutches_select_column!]" ], "limit": [ @@ -33507,19 +33599,19 @@ export default { 38 ], "order_by": [ - 3878, + 3923, "[v_match_clutches_order_by!]" ], "where": [ - 3872 + 3917 ] } ], "clutches_aggregate": [ - 3864, + 3909, { "distinct_on": [ - 3879, + 3924, "[v_match_clutches_select_column!]" ], "limit": [ @@ -33529,31 +33621,31 @@ export default { 38 ], "order_by": [ - 3878, + 3923, "[v_match_clutches_order_by!]" ], "where": [ - 3872 + 3917 ] } ], "connection_link": [ - 70 + 74 ], "connection_string": [ - 70 + 74 ], "created_at": [ - 3421 + 3466 ], "current_match_map_id": [ - 3818 + 3863 ], "demos": [ - 1548, + 1552, { "distinct_on": [ - 1577, + 1581, "[match_map_demos_select_column!]" ], "limit": [ @@ -33563,19 +33655,19 @@ export default { 38 ], "order_by": [ - 1574, + 1578, "[match_map_demos_order_by!]" ], "where": [ - 1560 + 1564 ] } ], "demos_aggregate": [ - 1549, + 1553, { "distinct_on": [ - 1577, + 1581, "[match_map_demos_select_column!]" ], "limit": [ @@ -33585,19 +33677,19 @@ export default { 38 ], "order_by": [ - 1574, + 1578, "[match_map_demos_order_by!]" ], "where": [ - 1560 + 1564 ] } ], "draft_games": [ - 342, + 346, { "distinct_on": [ - 366, + 370, "[draft_games_select_column!]" ], "limit": [ @@ -33607,19 +33699,19 @@ export default { 38 ], "order_by": [ - 364, + 368, "[draft_games_order_by!]" ], "where": [ - 353 + 357 ] } ], "draft_games_aggregate": [ - 343, + 347, { "distinct_on": [ - 366, + 370, "[draft_games_select_column!]" ], "limit": [ @@ -33629,28 +33721,28 @@ export default { 38 ], "order_by": [ - 364, + 368, "[draft_games_order_by!]" ], "where": [ - 353 + 357 ] } ], "e_match_status": [ - 698 + 702 ], "e_region": [ - 2934 + 2970 ], "effective_at": [ - 3421 + 3466 ], "elo_changes": [ - 4060, + 4105, { "distinct_on": [ - 4086, + 4131, "[v_player_elo_select_column!]" ], "limit": [ @@ -33660,19 +33752,19 @@ export default { 38 ], "order_by": [ - 4085, + 4130, "[v_player_elo_order_by!]" ], "where": [ - 4079 + 4124 ] } ], "elo_changes_aggregate": [ - 4061, + 4106, { "distinct_on": [ - 4086, + 4131, "[v_player_elo_select_column!]" ], "limit": [ @@ -33682,25 +33774,25 @@ export default { 38 ], "order_by": [ - 4085, + 4130, "[v_player_elo_order_by!]" ], "where": [ - 4079 + 4124 ] } ], "ended_at": [ - 3421 + 3466 ], "external_id": [ - 70 + 74 ], "id": [ - 3818 + 3863 ], "invite_code": [ - 70 + 74 ], "is_captain": [ 3 @@ -33727,36 +33819,36 @@ export default { 3 ], "label": [ - 70 + 74 ], "lineup_1": [ - 1506 + 1510 ], "lineup_1_id": [ - 3818 + 3863 ], "lineup_2": [ - 1506 + 1510 ], "lineup_2_id": [ - 3818 + 3863 ], "lineup_counts": [ - 1233, + 1237, { "path": [ - 70 + 74 ] } ], "map_veto_picking_lineup_id": [ - 3818 + 3863 ], "map_veto_picks": [ - 1640, + 1644, { "distinct_on": [ - 1658, + 1662, "[match_map_veto_picks_select_column!]" ], "limit": [ @@ -33766,19 +33858,19 @@ export default { 38 ], "order_by": [ - 1656, + 1660, "[match_map_veto_picks_order_by!]" ], "where": [ - 1647 + 1651 ] } ], "map_veto_picks_aggregate": [ - 1641, + 1645, { "distinct_on": [ - 1658, + 1662, "[match_map_veto_picks_select_column!]" ], "limit": [ @@ -33788,22 +33880,22 @@ export default { 38 ], "order_by": [ - 1656, + 1660, "[match_map_veto_picks_order_by!]" ], "where": [ - 1647 + 1651 ] } ], "map_veto_type": [ - 70 + 74 ], "match_maps": [ - 1664, + 1668, { "distinct_on": [ - 1686, + 1690, "[match_maps_select_column!]" ], "limit": [ @@ -33813,19 +33905,19 @@ export default { 38 ], "order_by": [ - 1684, + 1688, "[match_maps_order_by!]" ], "where": [ - 1673 + 1677 ] } ], "match_maps_aggregate": [ - 1665, + 1669, { "distinct_on": [ - 1686, + 1690, "[match_maps_select_column!]" ], "limit": [ @@ -33835,16 +33927,16 @@ export default { 38 ], "order_by": [ - 1684, + 1688, "[match_maps_order_by!]" ], "where": [ - 1673 + 1677 ] } ], "match_options_id": [ - 3818 + 3863 ], "max_players_per_lineup": [ 38 @@ -33853,10 +33945,10 @@ export default { 38 ], "opening_duels": [ - 3991, + 4036, { "distinct_on": [ - 4007, + 4052, "[v_match_player_opening_duels_select_column!]" ], "limit": [ @@ -33866,19 +33958,19 @@ export default { 38 ], "order_by": [ - 4006, + 4051, "[v_match_player_opening_duels_order_by!]" ], "where": [ - 4000 + 4045 ] } ], "opening_duels_aggregate": [ - 3992, + 4037, { "distinct_on": [ - 4007, + 4052, "[v_match_player_opening_duels_select_column!]" ], "limit": [ @@ -33888,31 +33980,31 @@ export default { 38 ], "order_by": [ - 4006, + 4051, "[v_match_player_opening_duels_order_by!]" ], "where": [ - 4000 + 4045 ] } ], "options": [ - 1706 + 1710 ], "organizer": [ - 2878 + 2914 ], "organizer_steam_id": [ - 169 + 173 ], "password": [ - 70 + 74 ], "player_assists": [ - 2149, + 2153, { "distinct_on": [ - 2172, + 2176, "[player_assists_select_column!]" ], "limit": [ @@ -33922,19 +34014,19 @@ export default { 38 ], "order_by": [ - 2170, + 2174, "[player_assists_order_by!]" ], "where": [ - 2160 + 2164 ] } ], "player_assists_aggregate": [ - 2150, + 2154, { "distinct_on": [ - 2172, + 2176, "[player_assists_select_column!]" ], "limit": [ @@ -33944,19 +34036,19 @@ export default { 38 ], "order_by": [ - 2170, + 2174, "[player_assists_order_by!]" ], "where": [ - 2160 + 2164 ] } ], "player_damages": [ - 2212, + 2216, { "distinct_on": [ - 2233, + 2237, "[player_damages_select_column!]" ], "limit": [ @@ -33966,19 +34058,19 @@ export default { 38 ], "order_by": [ - 2231, + 2235, "[player_damages_order_by!]" ], "where": [ - 2221 + 2225 ] } ], "player_damages_aggregate": [ - 2213, + 2217, { "distinct_on": [ - 2233, + 2237, "[player_damages_select_column!]" ], "limit": [ @@ -33988,19 +34080,19 @@ export default { 38 ], "order_by": [ - 2231, + 2235, "[player_damages_order_by!]" ], "where": [ - 2221 + 2225 ] } ], "player_flashes": [ - 2321, + 2325, { "distinct_on": [ - 2344, + 2348, "[player_flashes_select_column!]" ], "limit": [ @@ -34010,19 +34102,19 @@ export default { 38 ], "order_by": [ - 2342, + 2346, "[player_flashes_order_by!]" ], "where": [ - 2332 + 2336 ] } ], "player_flashes_aggregate": [ - 2322, + 2326, { "distinct_on": [ - 2344, + 2348, "[player_flashes_select_column!]" ], "limit": [ @@ -34032,19 +34124,19 @@ export default { 38 ], "order_by": [ - 2342, + 2346, "[player_flashes_order_by!]" ], "where": [ - 2332 + 2336 ] } ], "player_kills": [ - 2366, + 2370, { "distinct_on": [ - 2430, + 2434, "[player_kills_select_column!]" ], "limit": [ @@ -34054,19 +34146,19 @@ export default { 38 ], "order_by": [ - 2428, + 2432, "[player_kills_order_by!]" ], "where": [ - 2377 + 2381 ] } ], "player_kills_aggregate": [ - 2367, + 2371, { "distinct_on": [ - 2430, + 2434, "[player_kills_select_column!]" ], "limit": [ @@ -34076,19 +34168,19 @@ export default { 38 ], "order_by": [ - 2428, + 2432, "[player_kills_order_by!]" ], "where": [ - 2377 + 2381 ] } ], "player_objectives": [ - 2567, + 2571, { "distinct_on": [ - 2588, + 2592, "[player_objectives_select_column!]" ], "limit": [ @@ -34098,19 +34190,19 @@ export default { 38 ], "order_by": [ - 2586, + 2590, "[player_objectives_order_by!]" ], "where": [ - 2576 + 2580 ] } ], "player_objectives_aggregate": [ - 2568, + 2572, { "distinct_on": [ - 2588, + 2592, "[player_objectives_select_column!]" ], "limit": [ @@ -34120,19 +34212,19 @@ export default { 38 ], "order_by": [ - 2586, + 2590, "[player_objectives_order_by!]" ], "where": [ - 2576 + 2580 ] } ], "player_unused_utilities": [ - 2763, + 2799, { "distinct_on": [ - 2784, + 2820, "[player_unused_utility_select_column!]" ], "limit": [ @@ -34142,19 +34234,19 @@ export default { 38 ], "order_by": [ - 2782, + 2818, "[player_unused_utility_order_by!]" ], "where": [ - 2772 + 2808 ] } ], "player_unused_utilities_aggregate": [ - 2764, + 2800, { "distinct_on": [ - 2784, + 2820, "[player_unused_utility_select_column!]" ], "limit": [ @@ -34164,19 +34256,19 @@ export default { 38 ], "order_by": [ - 2782, + 2818, "[player_unused_utility_order_by!]" ], "where": [ - 2772 + 2808 ] } ], "player_utility": [ - 2804, + 2840, { "distinct_on": [ - 2825, + 2861, "[player_utility_select_column!]" ], "limit": [ @@ -34186,19 +34278,19 @@ export default { 38 ], "order_by": [ - 2823, + 2859, "[player_utility_order_by!]" ], "where": [ - 2813 + 2849 ] } ], "player_utility_aggregate": [ - 2805, + 2841, { "distinct_on": [ - 2825, + 2861, "[player_utility_select_column!]" ], "limit": [ @@ -34208,25 +34300,25 @@ export default { 38 ], "order_by": [ - 2823, + 2859, "[player_utility_order_by!]" ], "where": [ - 2813 + 2849 ] } ], "region": [ - 70 + 74 ], "region_veto_picking_lineup_id": [ - 3818 + 3863 ], "region_veto_picks": [ - 1734, + 1738, { "distinct_on": [ - 1752, + 1756, "[match_region_veto_picks_select_column!]" ], "limit": [ @@ -34236,19 +34328,19 @@ export default { 38 ], "order_by": [ - 1750, + 1754, "[match_region_veto_picks_order_by!]" ], "where": [ - 1741 + 1745 ] } ], "region_veto_picks_aggregate": [ - 1735, + 1739, { "distinct_on": [ - 1752, + 1756, "[match_region_veto_picks_select_column!]" ], "limit": [ @@ -34258,11 +34350,11 @@ export default { 38 ], "order_by": [ - 1750, + 1754, "[match_region_veto_picks_order_by!]" ], "where": [ - 1741 + 1745 ] } ], @@ -34270,37 +34362,37 @@ export default { 3 ], "scheduled_at": [ - 3421 + 3466 ], "server": [ - 2961 + 2997 ], "server_error": [ - 70 + 74 ], "server_id": [ - 3818 + 3863 ], "server_region": [ - 70 + 74 ], "server_type": [ - 70 + 74 ], "source": [ - 70 + 74 ], "started_at": [ - 3421 + 3466 ], "status": [ - 703 + 707 ], "streams": [ - 1758, + 1762, { "distinct_on": [ - 1786, + 1790, "[match_streams_select_column!]" ], "limit": [ @@ -34310,19 +34402,19 @@ export default { 38 ], "order_by": [ - 1783, + 1787, "[match_streams_order_by!]" ], "where": [ - 1770 + 1774 ] } ], "streams_aggregate": [ - 1759, + 1763, { "distinct_on": [ - 1786, + 1790, "[match_streams_select_column!]" ], "limit": [ @@ -34332,19 +34424,19 @@ export default { 38 ], "order_by": [ - 1783, + 1787, "[match_streams_order_by!]" ], "where": [ - 1770 + 1774 ] } ], "teams": [ - 3378, + 3423, { "distinct_on": [ - 3400, + 3445, "[teams_select_column!]" ], "limit": [ @@ -34354,19 +34446,19 @@ export default { 38 ], "order_by": [ - 3398, + 3443, "[teams_order_by!]" ], "where": [ - 3387 + 3432 ] } ], "tournament_brackets": [ - 3423, + 3468, { "distinct_on": [ - 3447, + 3492, "[tournament_brackets_select_column!]" ], "limit": [ @@ -34376,19 +34468,19 @@ export default { 38 ], "order_by": [ - 3445, + 3490, "[tournament_brackets_order_by!]" ], "where": [ - 3434 + 3479 ] } ], "tournament_brackets_aggregate": [ - 3424, + 3469, { "distinct_on": [ - 3447, + 3492, "[tournament_brackets_select_column!]" ], "limit": [ @@ -34398,72 +34490,72 @@ export default { 38 ], "order_by": [ - 3445, + 3490, "[tournament_brackets_order_by!]" ], "where": [ - 3434 + 3479 ] } ], "tv_connection_string": [ - 70 + 74 ], "winner": [ - 1506 + 1510 ], "winning_lineup_id": [ - 3818 + 3863 ], "__typename": [ - 70 + 74 ] }, "matches_aggregate": { "aggregate": [ - 1830 + 1834 ], "nodes": [ - 1826 + 1830 ], "__typename": [ - 70 + 74 ] }, "matches_aggregate_bool_exp": { "count": [ - 1829 + 1833 ], "__typename": [ - 70 + 74 ] }, "matches_aggregate_bool_exp_count": { "arguments": [ - 1848 + 1852 ], "distinct": [ 3 ], "filter": [ - 1835 + 1839 ], "predicate": [ 39 ], "__typename": [ - 70 + 74 ] }, "matches_aggregate_fields": { "avg": [ - 1833 + 1837 ], "count": [ 38, { "columns": [ - 1848, + 1852, "[matches_select_column!]" ], "distinct": [ @@ -34472,83 +34564,83 @@ export default { } ], "max": [ - 1839 + 1843 ], "min": [ - 1841 + 1845 ], "stddev": [ - 1850 + 1854 ], "stddev_pop": [ - 1852 + 1856 ], "stddev_samp": [ - 1854 + 1858 ], "sum": [ - 1858 + 1862 ], "var_pop": [ - 1862 + 1866 ], "var_samp": [ - 1864 + 1868 ], "variance": [ - 1866 + 1870 ], "__typename": [ - 70 + 74 ] }, "matches_aggregate_order_by": { "avg": [ - 1834 + 1838 ], "count": [ - 2011 + 2015 ], "max": [ - 1840 + 1844 ], "min": [ - 1842 + 1846 ], "stddev": [ - 1851 + 1855 ], "stddev_pop": [ - 1853 + 1857 ], "stddev_samp": [ - 1855 + 1859 ], "sum": [ - 1859 + 1863 ], "var_pop": [ - 1863 + 1867 ], "var_samp": [ - 1865 + 1869 ], "variance": [ - 1867 + 1871 ], "__typename": [ - 70 + 74 ] }, "matches_arr_rel_insert_input": { "data": [ - 1838 + 1842 ], "on_conflict": [ - 1845 + 1849 ], "__typename": [ - 70 + 74 ] }, "matches_avg_fields": { @@ -34562,26 +34654,26 @@ export default { 29 ], "__typename": [ - 70 + 74 ] }, "matches_avg_order_by": { "organizer_steam_id": [ - 2011 + 2015 ], "__typename": [ - 70 + 74 ] }, "matches_bool_exp": { "_and": [ - 1835 + 1839 ], "_not": [ - 1835 + 1839 ], "_or": [ - 1835 + 1839 ], "can_assign_server": [ 4 @@ -34608,64 +34700,64 @@ export default { 4 ], "cancels_at": [ - 3422 + 3467 ], "clutches": [ - 3872 + 3917 ], "clutches_aggregate": [ - 3865 + 3910 ], "connection_link": [ - 72 + 76 ], "connection_string": [ - 72 + 76 ], "created_at": [ - 3422 + 3467 ], "current_match_map_id": [ - 3820 + 3865 ], "demos": [ - 1560 + 1564 ], "demos_aggregate": [ - 1550 + 1554 ], "draft_games": [ - 353 + 357 ], "draft_games_aggregate": [ - 344 + 348 ], "e_match_status": [ - 701 + 705 ], "e_region": [ - 2938 + 2974 ], "effective_at": [ - 3422 + 3467 ], "elo_changes": [ - 4079 + 4124 ], "elo_changes_aggregate": [ - 4062 + 4107 ], "ended_at": [ - 3422 + 3467 ], "external_id": [ - 72 + 76 ], "id": [ - 3820 + 3865 ], "invite_code": [ - 72 + 76 ], "is_captain": [ 4 @@ -34692,43 +34784,43 @@ export default { 4 ], "label": [ - 72 + 76 ], "lineup_1": [ - 1515 + 1519 ], "lineup_1_id": [ - 3820 + 3865 ], "lineup_2": [ - 1515 + 1519 ], "lineup_2_id": [ - 3820 + 3865 ], "lineup_counts": [ - 1234 + 1238 ], "map_veto_picking_lineup_id": [ - 3820 + 3865 ], "map_veto_picks": [ - 1647 + 1651 ], "map_veto_picks_aggregate": [ - 1642 + 1646 ], "map_veto_type": [ - 72 + 76 ], "match_maps": [ - 1673 + 1677 ], "match_maps_aggregate": [ - 1666 + 1670 ], "match_options_id": [ - 3820 + 3865 ], "max_players_per_lineup": [ 39 @@ -34737,329 +34829,329 @@ export default { 39 ], "opening_duels": [ - 4000 + 4045 ], "opening_duels_aggregate": [ - 3993 + 4038 ], "options": [ - 1710 + 1714 ], "organizer": [ - 2882 + 2918 ], "organizer_steam_id": [ - 171 + 175 ], "password": [ - 72 + 76 ], "player_assists": [ - 2160 + 2164 ], "player_assists_aggregate": [ - 2151 + 2155 ], "player_damages": [ - 2221 + 2225 ], "player_damages_aggregate": [ - 2214 + 2218 ], "player_flashes": [ - 2332 + 2336 ], "player_flashes_aggregate": [ - 2323 + 2327 ], "player_kills": [ - 2377 + 2381 ], "player_kills_aggregate": [ - 2368 + 2372 ], "player_objectives": [ - 2576 + 2580 ], "player_objectives_aggregate": [ - 2569 + 2573 ], "player_unused_utilities": [ - 2772 + 2808 ], "player_unused_utilities_aggregate": [ - 2765 + 2801 ], "player_utility": [ - 2813 + 2849 ], "player_utility_aggregate": [ - 2806 + 2842 ], "region": [ - 72 + 76 ], "region_veto_picking_lineup_id": [ - 3820 + 3865 ], "region_veto_picks": [ - 1741 + 1745 ], "region_veto_picks_aggregate": [ - 1736 + 1740 ], "requested_organizer": [ 4 ], "scheduled_at": [ - 3422 + 3467 ], "server": [ - 2972 + 3008 ], "server_error": [ - 72 + 76 ], "server_id": [ - 3820 + 3865 ], "server_region": [ - 72 + 76 ], "server_type": [ - 72 + 76 ], "source": [ - 72 + 76 ], "started_at": [ - 3422 + 3467 ], "status": [ - 704 + 708 ], "streams": [ - 1770 + 1774 ], "streams_aggregate": [ - 1760 + 1764 ], "teams": [ - 3387 + 3432 ], "tournament_brackets": [ - 3434 + 3479 ], "tournament_brackets_aggregate": [ - 3425 + 3470 ], "tv_connection_string": [ - 72 + 76 ], "winner": [ - 1515 + 1519 ], "winning_lineup_id": [ - 3820 + 3865 ], "__typename": [ - 70 + 74 ] }, "matches_constraint": {}, "matches_inc_input": { "organizer_steam_id": [ - 169 + 173 ], "__typename": [ - 70 + 74 ] }, "matches_insert_input": { "cancels_at": [ - 3421 + 3466 ], "clutches": [ - 3869 + 3914 ], "created_at": [ - 3421 + 3466 ], "demos": [ - 1557 + 1561 ], "draft_games": [ - 350 + 354 ], "e_match_status": [ - 709 + 713 ], "e_region": [ - 2944 + 2980 ], "elo_changes": [ - 4076 + 4121 ], "ended_at": [ - 3421 + 3466 ], "external_id": [ - 70 + 74 ], "id": [ - 3818 + 3863 ], "label": [ - 70 + 74 ], "lineup_1": [ - 1524 + 1528 ], "lineup_1_id": [ - 3818 + 3863 ], "lineup_2": [ - 1524 + 1528 ], "lineup_2_id": [ - 3818 + 3863 ], "map_veto_picks": [ - 1646 + 1650 ], "match_maps": [ - 1670 + 1674 ], "match_options_id": [ - 3818 + 3863 ], "opening_duels": [ - 3997 + 4042 ], "options": [ - 1717 + 1721 ], "organizer": [ - 2889 + 2925 ], "organizer_steam_id": [ - 169 + 173 ], "password": [ - 70 + 74 ], "player_assists": [ - 2157 + 2161 ], "player_damages": [ - 2218 + 2222 ], "player_flashes": [ - 2329 + 2333 ], "player_kills": [ - 2374 + 2378 ], "player_objectives": [ - 2573 + 2577 ], "player_unused_utilities": [ - 2769 + 2805 ], "player_utility": [ - 2810 + 2846 ], "region": [ - 70 + 74 ], "region_veto_picks": [ - 1740 + 1744 ], "scheduled_at": [ - 3421 + 3466 ], "server": [ - 2981 + 3017 ], "server_error": [ - 70 + 74 ], "server_id": [ - 3818 + 3863 ], "source": [ - 70 + 74 ], "started_at": [ - 3421 + 3466 ], "status": [ - 703 + 707 ], "streams": [ - 1767 + 1771 ], "tournament_brackets": [ - 3431 + 3476 ], "winner": [ - 1524 + 1528 ], "winning_lineup_id": [ - 3818 + 3863 ], "__typename": [ - 70 + 74 ] }, "matches_max_fields": { "cancels_at": [ - 3421 + 3466 ], "connection_link": [ - 70 + 74 ], "connection_string": [ - 70 + 74 ], "created_at": [ - 3421 + 3466 ], "current_match_map_id": [ - 3818 + 3863 ], "effective_at": [ - 3421 + 3466 ], "ended_at": [ - 3421 + 3466 ], "external_id": [ - 70 + 74 ], "id": [ - 3818 + 3863 ], "invite_code": [ - 70 + 74 ], "label": [ - 70 + 74 ], "lineup_1_id": [ - 3818 + 3863 ], "lineup_2_id": [ - 3818 + 3863 ], "map_veto_picking_lineup_id": [ - 3818 + 3863 ], "map_veto_type": [ - 70 + 74 ], "match_options_id": [ - 3818 + 3863 ], "max_players_per_lineup": [ 38 @@ -35068,158 +35160,158 @@ export default { 38 ], "organizer_steam_id": [ - 169 + 173 ], "password": [ - 70 + 74 ], "region": [ - 70 + 74 ], "region_veto_picking_lineup_id": [ - 3818 + 3863 ], "scheduled_at": [ - 3421 + 3466 ], "server_error": [ - 70 + 74 ], "server_id": [ - 3818 + 3863 ], "server_region": [ - 70 + 74 ], "server_type": [ - 70 + 74 ], "source": [ - 70 + 74 ], "started_at": [ - 3421 + 3466 ], "tv_connection_string": [ - 70 + 74 ], "winning_lineup_id": [ - 3818 + 3863 ], "__typename": [ - 70 + 74 ] }, "matches_max_order_by": { "cancels_at": [ - 2011 + 2015 ], "created_at": [ - 2011 + 2015 ], "effective_at": [ - 2011 + 2015 ], "ended_at": [ - 2011 + 2015 ], "external_id": [ - 2011 + 2015 ], "id": [ - 2011 + 2015 ], "label": [ - 2011 + 2015 ], "lineup_1_id": [ - 2011 + 2015 ], "lineup_2_id": [ - 2011 + 2015 ], "match_options_id": [ - 2011 + 2015 ], "organizer_steam_id": [ - 2011 + 2015 ], "password": [ - 2011 + 2015 ], "region": [ - 2011 + 2015 ], "scheduled_at": [ - 2011 + 2015 ], "server_error": [ - 2011 + 2015 ], "server_id": [ - 2011 + 2015 ], "source": [ - 2011 + 2015 ], "started_at": [ - 2011 + 2015 ], "winning_lineup_id": [ - 2011 + 2015 ], "__typename": [ - 70 + 74 ] }, "matches_min_fields": { "cancels_at": [ - 3421 + 3466 ], "connection_link": [ - 70 + 74 ], "connection_string": [ - 70 + 74 ], "created_at": [ - 3421 + 3466 ], "current_match_map_id": [ - 3818 + 3863 ], "effective_at": [ - 3421 + 3466 ], "ended_at": [ - 3421 + 3466 ], "external_id": [ - 70 + 74 ], "id": [ - 3818 + 3863 ], "invite_code": [ - 70 + 74 ], "label": [ - 70 + 74 ], "lineup_1_id": [ - 3818 + 3863 ], "lineup_2_id": [ - 3818 + 3863 ], "map_veto_picking_lineup_id": [ - 3818 + 3863 ], "map_veto_type": [ - 70 + 74 ], "match_options_id": [ - 3818 + 3863 ], "max_players_per_lineup": [ 38 @@ -35228,108 +35320,108 @@ export default { 38 ], "organizer_steam_id": [ - 169 + 173 ], "password": [ - 70 + 74 ], "region": [ - 70 + 74 ], "region_veto_picking_lineup_id": [ - 3818 + 3863 ], "scheduled_at": [ - 3421 + 3466 ], "server_error": [ - 70 + 74 ], "server_id": [ - 3818 + 3863 ], "server_region": [ - 70 + 74 ], "server_type": [ - 70 + 74 ], "source": [ - 70 + 74 ], "started_at": [ - 3421 + 3466 ], "tv_connection_string": [ - 70 + 74 ], "winning_lineup_id": [ - 3818 + 3863 ], "__typename": [ - 70 + 74 ] }, "matches_min_order_by": { "cancels_at": [ - 2011 + 2015 ], "created_at": [ - 2011 + 2015 ], "effective_at": [ - 2011 + 2015 ], "ended_at": [ - 2011 + 2015 ], "external_id": [ - 2011 + 2015 ], "id": [ - 2011 + 2015 ], "label": [ - 2011 + 2015 ], "lineup_1_id": [ - 2011 + 2015 ], "lineup_2_id": [ - 2011 + 2015 ], "match_options_id": [ - 2011 + 2015 ], "organizer_steam_id": [ - 2011 + 2015 ], "password": [ - 2011 + 2015 ], "region": [ - 2011 + 2015 ], "scheduled_at": [ - 2011 + 2015 ], "server_error": [ - 2011 + 2015 ], "server_id": [ - 2011 + 2015 ], "source": [ - 2011 + 2015 ], "started_at": [ - 2011 + 2015 ], "winning_lineup_id": [ - 2011 + 2015 ], "__typename": [ - 70 + 74 ] }, "matches_mutation_response": { @@ -35337,339 +35429,339 @@ export default { 38 ], "returning": [ - 1826 + 1830 ], "__typename": [ - 70 + 74 ] }, "matches_obj_rel_insert_input": { "data": [ - 1838 + 1842 ], "on_conflict": [ - 1845 + 1849 ], "__typename": [ - 70 + 74 ] }, "matches_on_conflict": { "constraint": [ - 1836 + 1840 ], "update_columns": [ - 1860 + 1864 ], "where": [ - 1835 + 1839 ], "__typename": [ - 70 + 74 ] }, "matches_order_by": { "can_assign_server": [ - 2011 + 2015 ], "can_cancel": [ - 2011 + 2015 ], "can_check_in": [ - 2011 + 2015 ], "can_reassign_winner": [ - 2011 + 2015 ], "can_schedule": [ - 2011 + 2015 ], "can_start": [ - 2011 + 2015 ], "can_stream_live": [ - 2011 + 2015 ], "can_stream_tv": [ - 2011 + 2015 ], "cancels_at": [ - 2011 + 2015 ], "clutches_aggregate": [ - 3868 + 3913 ], "connection_link": [ - 2011 + 2015 ], "connection_string": [ - 2011 + 2015 ], "created_at": [ - 2011 + 2015 ], "current_match_map_id": [ - 2011 + 2015 ], "demos_aggregate": [ - 1555 + 1559 ], "draft_games_aggregate": [ - 349 + 353 ], "e_match_status": [ - 711 + 715 ], "e_region": [ - 2946 + 2982 ], "effective_at": [ - 2011 + 2015 ], "elo_changes_aggregate": [ - 4075 + 4120 ], "ended_at": [ - 2011 + 2015 ], "external_id": [ - 2011 + 2015 ], "id": [ - 2011 + 2015 ], "invite_code": [ - 2011 + 2015 ], "is_captain": [ - 2011 + 2015 ], "is_coach": [ - 2011 + 2015 ], "is_friend_in_match_lineup": [ - 2011 + 2015 ], "is_in_lineup": [ - 2011 + 2015 ], "is_match_server_available": [ - 2011 + 2015 ], "is_organizer": [ - 2011 + 2015 ], "is_server_online": [ - 2011 + 2015 ], "is_tournament_match": [ - 2011 + 2015 ], "label": [ - 2011 + 2015 ], "lineup_1": [ - 1526 + 1530 ], "lineup_1_id": [ - 2011 + 2015 ], "lineup_2": [ - 1526 + 1530 ], "lineup_2_id": [ - 2011 + 2015 ], "lineup_counts": [ - 2011 + 2015 ], "map_veto_picking_lineup_id": [ - 2011 + 2015 ], "map_veto_picks_aggregate": [ - 1645 + 1649 ], "map_veto_type": [ - 2011 + 2015 ], "match_maps_aggregate": [ - 1669 + 1673 ], "match_options_id": [ - 2011 + 2015 ], "max_players_per_lineup": [ - 2011 + 2015 ], "min_players_per_lineup": [ - 2011 + 2015 ], "opening_duels_aggregate": [ - 3996 + 4041 ], "options": [ - 1719 + 1723 ], "organizer": [ - 2891 + 2927 ], "organizer_steam_id": [ - 2011 + 2015 ], "password": [ - 2011 + 2015 ], "player_assists_aggregate": [ - 2156 + 2160 ], "player_damages_aggregate": [ - 2217 + 2221 ], "player_flashes_aggregate": [ - 2328 + 2332 ], "player_kills_aggregate": [ - 2373 + 2377 ], "player_objectives_aggregate": [ - 2572 + 2576 ], "player_unused_utilities_aggregate": [ - 2768 + 2804 ], "player_utility_aggregate": [ - 2809 + 2845 ], "region": [ - 2011 + 2015 ], "region_veto_picking_lineup_id": [ - 2011 + 2015 ], "region_veto_picks_aggregate": [ - 1739 + 1743 ], "requested_organizer": [ - 2011 + 2015 ], "scheduled_at": [ - 2011 + 2015 ], "server": [ - 2983 + 3019 ], "server_error": [ - 2011 + 2015 ], "server_id": [ - 2011 + 2015 ], "server_region": [ - 2011 + 2015 ], "server_type": [ - 2011 + 2015 ], "source": [ - 2011 + 2015 ], "started_at": [ - 2011 + 2015 ], "status": [ - 2011 + 2015 ], "streams_aggregate": [ - 1765 + 1769 ], "teams_aggregate": [ - 3383 + 3428 ], "tournament_brackets_aggregate": [ - 3430 + 3475 ], "tv_connection_string": [ - 2011 + 2015 ], "winner": [ - 1526 + 1530 ], "winning_lineup_id": [ - 2011 + 2015 ], "__typename": [ - 70 + 74 ] }, "matches_pk_columns_input": { "id": [ - 3818 + 3863 ], "__typename": [ - 70 + 74 ] }, "matches_select_column": {}, "matches_set_input": { "cancels_at": [ - 3421 + 3466 ], "created_at": [ - 3421 + 3466 ], "ended_at": [ - 3421 + 3466 ], "external_id": [ - 70 + 74 ], "id": [ - 3818 + 3863 ], "label": [ - 70 + 74 ], "lineup_1_id": [ - 3818 + 3863 ], "lineup_2_id": [ - 3818 + 3863 ], "match_options_id": [ - 3818 + 3863 ], "organizer_steam_id": [ - 169 + 173 ], "password": [ - 70 + 74 ], "region": [ - 70 + 74 ], "scheduled_at": [ - 3421 + 3466 ], "server_error": [ - 70 + 74 ], "server_id": [ - 3818 + 3863 ], "source": [ - 70 + 74 ], "started_at": [ - 3421 + 3466 ], "status": [ - 703 + 707 ], "winning_lineup_id": [ - 3818 + 3863 ], "__typename": [ - 70 + 74 ] }, "matches_stddev_fields": { @@ -35683,15 +35775,15 @@ export default { 29 ], "__typename": [ - 70 + 74 ] }, "matches_stddev_order_by": { "organizer_steam_id": [ - 2011 + 2015 ], "__typename": [ - 70 + 74 ] }, "matches_stddev_pop_fields": { @@ -35705,15 +35797,15 @@ export default { 29 ], "__typename": [ - 70 + 74 ] }, "matches_stddev_pop_order_by": { "organizer_steam_id": [ - 2011 + 2015 ], "__typename": [ - 70 + 74 ] }, "matches_stddev_samp_fields": { @@ -35727,91 +35819,91 @@ export default { 29 ], "__typename": [ - 70 + 74 ] }, "matches_stddev_samp_order_by": { "organizer_steam_id": [ - 2011 + 2015 ], "__typename": [ - 70 + 74 ] }, "matches_stream_cursor_input": { "initial_value": [ - 1857 + 1861 ], "ordering": [ - 224 + 228 ], "__typename": [ - 70 + 74 ] }, "matches_stream_cursor_value_input": { "cancels_at": [ - 3421 + 3466 ], "created_at": [ - 3421 + 3466 ], "effective_at": [ - 3421 + 3466 ], "ended_at": [ - 3421 + 3466 ], "external_id": [ - 70 + 74 ], "id": [ - 3818 + 3863 ], "label": [ - 70 + 74 ], "lineup_1_id": [ - 3818 + 3863 ], "lineup_2_id": [ - 3818 + 3863 ], "match_options_id": [ - 3818 + 3863 ], "organizer_steam_id": [ - 169 + 173 ], "password": [ - 70 + 74 ], "region": [ - 70 + 74 ], "scheduled_at": [ - 3421 + 3466 ], "server_error": [ - 70 + 74 ], "server_id": [ - 3818 + 3863 ], "source": [ - 70 + 74 ], "started_at": [ - 3421 + 3466 ], "status": [ - 703 + 707 ], "winning_lineup_id": [ - 3818 + 3863 ], "__typename": [ - 70 + 74 ] }, "matches_sum_fields": { @@ -35822,33 +35914,33 @@ export default { 38 ], "organizer_steam_id": [ - 169 + 173 ], "__typename": [ - 70 + 74 ] }, "matches_sum_order_by": { "organizer_steam_id": [ - 2011 + 2015 ], "__typename": [ - 70 + 74 ] }, "matches_update_column": {}, "matches_updates": { "_inc": [ - 1837 + 1841 ], "_set": [ - 1849 + 1853 ], "where": [ - 1835 + 1839 ], "__typename": [ - 70 + 74 ] }, "matches_var_pop_fields": { @@ -35862,15 +35954,15 @@ export default { 29 ], "__typename": [ - 70 + 74 ] }, "matches_var_pop_order_by": { "organizer_steam_id": [ - 2011 + 2015 ], "__typename": [ - 70 + 74 ] }, "matches_var_samp_fields": { @@ -35884,15 +35976,15 @@ export default { 29 ], "__typename": [ - 70 + 74 ] }, "matches_var_samp_order_by": { "organizer_steam_id": [ - 2011 + 2015 ], "__typename": [ - 70 + 74 ] }, "matches_variance_fields": { @@ -35906,37 +35998,37 @@ export default { 29 ], "__typename": [ - 70 + 74 ] }, "matches_variance_order_by": { "organizer_steam_id": [ - 2011 + 2015 ], "__typename": [ - 70 + 74 ] }, "migration_hashes_hashes": { "hash": [ - 70 + 74 ], "name": [ - 70 + 74 ], "__typename": [ - 70 + 74 ] }, "migration_hashes_hashes_aggregate": { "aggregate": [ - 1870 + 1874 ], "nodes": [ - 1868 + 1872 ], "__typename": [ - 70 + 74 ] }, "migration_hashes_hashes_aggregate_fields": { @@ -35944,7 +36036,7 @@ export default { 38, { "columns": [ - 1880, + 1884, "[migration_hashes_hashes_select_column!]" ], "distinct": [ @@ -35953,67 +36045,67 @@ export default { } ], "max": [ - 1874 + 1878 ], "min": [ - 1875 + 1879 ], "__typename": [ - 70 + 74 ] }, "migration_hashes_hashes_bool_exp": { "_and": [ - 1871 + 1875 ], "_not": [ - 1871 + 1875 ], "_or": [ - 1871 + 1875 ], "hash": [ - 72 + 76 ], "name": [ - 72 + 76 ], "__typename": [ - 70 + 74 ] }, "migration_hashes_hashes_constraint": {}, "migration_hashes_hashes_insert_input": { "hash": [ - 70 + 74 ], "name": [ - 70 + 74 ], "__typename": [ - 70 + 74 ] }, "migration_hashes_hashes_max_fields": { "hash": [ - 70 + 74 ], "name": [ - 70 + 74 ], "__typename": [ - 70 + 74 ] }, "migration_hashes_hashes_min_fields": { "hash": [ - 70 + 74 ], "name": [ - 70 + 74 ], "__typename": [ - 70 + 74 ] }, "migration_hashes_hashes_mutation_response": { @@ -36021,234 +36113,296 @@ export default { 38 ], "returning": [ - 1868 + 1872 ], "__typename": [ - 70 + 74 ] }, "migration_hashes_hashes_on_conflict": { "constraint": [ - 1872 + 1876 ], "update_columns": [ - 1884 + 1888 ], "where": [ - 1871 + 1875 ], "__typename": [ - 70 + 74 ] }, "migration_hashes_hashes_order_by": { "hash": [ - 2011 + 2015 ], "name": [ - 2011 + 2015 ], "__typename": [ - 70 + 74 ] }, "migration_hashes_hashes_pk_columns_input": { "name": [ - 70 + 74 ], "__typename": [ - 70 + 74 ] }, "migration_hashes_hashes_select_column": {}, "migration_hashes_hashes_set_input": { "hash": [ - 70 + 74 ], "name": [ - 70 + 74 ], "__typename": [ - 70 + 74 ] }, "migration_hashes_hashes_stream_cursor_input": { "initial_value": [ - 1883 + 1887 ], "ordering": [ - 224 + 228 ], "__typename": [ - 70 + 74 ] }, "migration_hashes_hashes_stream_cursor_value_input": { "hash": [ - 70 + 74 ], "name": [ - 70 + 74 ], "__typename": [ - 70 + 74 ] }, "migration_hashes_hashes_update_column": {}, "migration_hashes_hashes_updates": { "_set": [ - 1881 + 1885 ], "where": [ - 1871 + 1875 ], "__typename": [ - 70 + 74 ] }, "my_friends": { "avatar_url": [ - 70 + 74 ], "country": [ - 70 + 74 ], "created_at": [ - 3421 + 3466 + ], + "custom_avatar_url": [ + 74 + ], + "days_since_last_ban": [ + 38 ], "discord_id": [ - 70 + 74 ], "elo": [ - 1235, + 1239, { "path": [ - 70 + 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": [ - 169 + 173 + ], + "game_ban_count": [ + 38 ], "invited_by_steam_id": [ - 169 + 173 ], "language": [ - 70 + 74 + ], + "last_presence_state": [ + 1239, + { + "path": [ + 74 + ] + } + ], + "last_read_news_at": [ + 3466 ], "last_sign_in_at": [ - 3421 + 3466 ], "name": [ - 70 + 74 ], "name_registered": [ 3 ], "player": [ - 2878 + 2914 + ], + "premier_rank": [ + 38 + ], + "premier_rank_updated_at": [ + 3466 + ], + "presence_updated_at": [ + 3466 ], "profile_url": [ - 70 + 74 ], "role": [ - 70 + 74 + ], + "roster_image_url": [ + 74 + ], + "show_match_ready_modal": [ + 3 ], "status": [ - 70 + 74 + ], + "steam_bans_checked_at": [ + 3466 ], "steam_id": [ - 169 + 173 + ], + "vac_ban_count": [ + 38 + ], + "vac_banned": [ + 3 ], "__typename": [ - 70 + 74 ] }, "my_friends_aggregate": { "aggregate": [ - 1892 + 1896 ], "nodes": [ - 1886 + 1890 ], "__typename": [ - 70 + 74 ] }, "my_friends_aggregate_bool_exp": { "bool_and": [ - 1889 + 1893 ], "bool_or": [ - 1890 + 1894 ], "count": [ - 1891 + 1895 ], "__typename": [ - 70 + 74 ] }, "my_friends_aggregate_bool_exp_bool_and": { "arguments": [ - 1912 + 1916 ], "distinct": [ 3 ], "filter": [ - 1898 + 1902 ], "predicate": [ 4 ], "__typename": [ - 70 + 74 ] }, "my_friends_aggregate_bool_exp_bool_or": { "arguments": [ - 1913 + 1917 ], "distinct": [ 3 ], "filter": [ - 1898 + 1902 ], "predicate": [ 4 ], "__typename": [ - 70 + 74 ] }, "my_friends_aggregate_bool_exp_count": { "arguments": [ - 1911 + 1915 ], "distinct": [ 3 ], "filter": [ - 1898 + 1902 ], "predicate": [ 39 ], "__typename": [ - 70 + 74 ] }, "my_friends_aggregate_fields": { "avg": [ - 1896 + 1900 ], "count": [ 38, { "columns": [ - 1911, + 1915, "[my_friends_select_column!]" ], "distinct": [ @@ -36257,445 +36411,817 @@ export default { } ], "max": [ - 1904 + 1908 ], "min": [ - 1906 + 1910 ], "stddev": [ - 1915 + 1919 ], "stddev_pop": [ - 1917 + 1921 ], "stddev_samp": [ - 1919 + 1923 ], "sum": [ - 1923 + 1927 ], "var_pop": [ - 1926 + 1930 ], "var_samp": [ - 1928 + 1932 ], "variance": [ - 1930 + 1934 ], "__typename": [ - 70 + 74 ] }, "my_friends_aggregate_order_by": { "avg": [ - 1897 + 1901 ], "count": [ - 2011 + 2015 ], "max": [ - 1905 + 1909 ], "min": [ - 1907 + 1911 ], "stddev": [ - 1916 + 1920 ], "stddev_pop": [ - 1918 + 1922 ], "stddev_samp": [ - 1920 + 1924 ], "sum": [ - 1924 + 1928 ], "var_pop": [ - 1927 + 1931 ], "var_samp": [ - 1929 + 1933 ], "variance": [ - 1931 + 1935 ], "__typename": [ - 70 + 74 ] }, "my_friends_append_input": { "elo": [ - 1235 + 1239 + ], + "last_presence_state": [ + 1239 ], "__typename": [ - 70 + 74 ] }, "my_friends_arr_rel_insert_input": { "data": [ - 1903 + 1907 ], "__typename": [ - 70 + 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": [ - 70 + 74 ] }, "my_friends_avg_order_by": { + "days_since_last_ban": [ + 2015 + ], + "faceit_elo": [ + 2015 + ], + "faceit_skill_level": [ + 2015 + ], "friend_steam_id": [ - 2011 + 2015 + ], + "game_ban_count": [ + 2015 ], "invited_by_steam_id": [ - 2011 + 2015 + ], + "premier_rank": [ + 2015 ], "steam_id": [ - 2011 + 2015 + ], + "vac_ban_count": [ + 2015 ], "__typename": [ - 70 + 74 ] }, "my_friends_bool_exp": { "_and": [ - 1898 + 1902 ], "_not": [ - 1898 + 1902 ], "_or": [ - 1898 + 1902 ], "avatar_url": [ - 72 + 76 ], "country": [ - 72 + 76 ], "created_at": [ - 3422 + 3467 + ], + "custom_avatar_url": [ + 76 + ], + "days_since_last_ban": [ + 39 ], "discord_id": [ - 72 + 76 ], "elo": [ - 1237 + 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": [ - 171 + 175 + ], + "game_ban_count": [ + 39 ], "invited_by_steam_id": [ - 171 + 175 ], "language": [ - 72 + 76 + ], + "last_presence_state": [ + 1241 + ], + "last_read_news_at": [ + 3467 ], "last_sign_in_at": [ - 3422 + 3467 ], "name": [ - 72 + 76 ], "name_registered": [ 4 ], "player": [ - 2882 + 2918 + ], + "premier_rank": [ + 39 + ], + "premier_rank_updated_at": [ + 3467 + ], + "presence_updated_at": [ + 3467 ], "profile_url": [ - 72 + 76 ], "role": [ - 72 + 76 + ], + "roster_image_url": [ + 76 + ], + "show_match_ready_modal": [ + 4 ], "status": [ - 72 + 76 + ], + "steam_bans_checked_at": [ + 3467 ], "steam_id": [ - 171 + 175 + ], + "vac_ban_count": [ + 39 + ], + "vac_banned": [ + 4 ], "__typename": [ - 70 + 74 ] }, "my_friends_delete_at_path_input": { "elo": [ - 70 + 74 + ], + "last_presence_state": [ + 74 ], "__typename": [ - 70 + 74 ] }, "my_friends_delete_elem_input": { "elo": [ 38 ], + "last_presence_state": [ + 38 + ], "__typename": [ - 70 + 74 ] }, "my_friends_delete_key_input": { "elo": [ - 70 + 74 + ], + "last_presence_state": [ + 74 ], "__typename": [ - 70 + 74 ] }, "my_friends_inc_input": { + "days_since_last_ban": [ + 38 + ], + "faceit_elo": [ + 38 + ], + "faceit_skill_level": [ + 38 + ], "friend_steam_id": [ - 169 + 173 + ], + "game_ban_count": [ + 38 ], "invited_by_steam_id": [ - 169 + 173 + ], + "premier_rank": [ + 38 ], "steam_id": [ - 169 + 173 + ], + "vac_ban_count": [ + 38 ], "__typename": [ - 70 + 74 ] }, "my_friends_insert_input": { "avatar_url": [ - 70 + 74 ], "country": [ - 70 + 74 ], "created_at": [ - 3421 + 3466 + ], + "custom_avatar_url": [ + 74 + ], + "days_since_last_ban": [ + 38 ], "discord_id": [ - 70 + 74 ], "elo": [ - 1235 + 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": [ - 169 + 173 + ], + "game_ban_count": [ + 38 ], "invited_by_steam_id": [ - 169 + 173 ], "language": [ - 70 + 74 + ], + "last_presence_state": [ + 1239 + ], + "last_read_news_at": [ + 3466 ], "last_sign_in_at": [ - 3421 + 3466 ], "name": [ - 70 + 74 ], "name_registered": [ 3 ], "player": [ - 2889 + 2925 + ], + "premier_rank": [ + 38 + ], + "premier_rank_updated_at": [ + 3466 + ], + "presence_updated_at": [ + 3466 ], "profile_url": [ - 70 + 74 ], "role": [ - 70 + 74 + ], + "roster_image_url": [ + 74 + ], + "show_match_ready_modal": [ + 3 ], "status": [ - 70 + 74 + ], + "steam_bans_checked_at": [ + 3466 ], "steam_id": [ - 169 + 173 + ], + "vac_ban_count": [ + 38 + ], + "vac_banned": [ + 3 ], "__typename": [ - 70 + 74 ] }, "my_friends_max_fields": { "avatar_url": [ - 70 + 74 ], "country": [ - 70 + 74 ], "created_at": [ - 3421 + 3466 + ], + "custom_avatar_url": [ + 74 + ], + "days_since_last_ban": [ + 38 ], "discord_id": [ - 70 + 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": [ - 169 + 173 + ], + "game_ban_count": [ + 38 ], "invited_by_steam_id": [ - 169 + 173 ], "language": [ - 70 + 74 + ], + "last_read_news_at": [ + 3466 ], "last_sign_in_at": [ - 3421 + 3466 ], "name": [ - 70 + 74 + ], + "premier_rank": [ + 38 + ], + "premier_rank_updated_at": [ + 3466 + ], + "presence_updated_at": [ + 3466 ], "profile_url": [ - 70 + 74 ], "role": [ - 70 + 74 + ], + "roster_image_url": [ + 74 ], "status": [ - 70 + 74 + ], + "steam_bans_checked_at": [ + 3466 ], "steam_id": [ - 169 + 173 + ], + "vac_ban_count": [ + 38 ], "__typename": [ - 70 + 74 ] }, "my_friends_max_order_by": { "avatar_url": [ - 2011 + 2015 ], "country": [ - 2011 + 2015 ], "created_at": [ - 2011 + 2015 + ], + "custom_avatar_url": [ + 2015 + ], + "days_since_last_ban": [ + 2015 ], "discord_id": [ - 2011 + 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": [ - 2011 + 2015 + ], + "game_ban_count": [ + 2015 ], "invited_by_steam_id": [ - 2011 + 2015 ], "language": [ - 2011 + 2015 + ], + "last_read_news_at": [ + 2015 ], "last_sign_in_at": [ - 2011 + 2015 ], "name": [ - 2011 + 2015 + ], + "premier_rank": [ + 2015 + ], + "premier_rank_updated_at": [ + 2015 + ], + "presence_updated_at": [ + 2015 ], "profile_url": [ - 2011 + 2015 ], "role": [ - 2011 + 2015 + ], + "roster_image_url": [ + 2015 ], "status": [ - 2011 + 2015 + ], + "steam_bans_checked_at": [ + 2015 ], "steam_id": [ - 2011 + 2015 + ], + "vac_ban_count": [ + 2015 ], "__typename": [ - 70 + 74 ] }, "my_friends_min_fields": { "avatar_url": [ - 70 + 74 ], "country": [ - 70 + 74 ], "created_at": [ - 3421 + 3466 + ], + "custom_avatar_url": [ + 74 + ], + "days_since_last_ban": [ + 38 ], "discord_id": [ - 70 + 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": [ - 169 + 173 + ], + "game_ban_count": [ + 38 ], "invited_by_steam_id": [ - 169 + 173 ], "language": [ - 70 + 74 + ], + "last_read_news_at": [ + 3466 ], "last_sign_in_at": [ - 3421 + 3466 ], "name": [ - 70 + 74 + ], + "premier_rank": [ + 38 + ], + "premier_rank_updated_at": [ + 3466 + ], + "presence_updated_at": [ + 3466 ], "profile_url": [ - 70 + 74 ], "role": [ - 70 + 74 + ], + "roster_image_url": [ + 74 ], "status": [ - 70 + 74 + ], + "steam_bans_checked_at": [ + 3466 ], "steam_id": [ - 169 + 173 + ], + "vac_ban_count": [ + 38 ], "__typename": [ - 70 + 74 ] }, "my_friends_min_order_by": { "avatar_url": [ - 2011 + 2015 ], "country": [ - 2011 + 2015 ], "created_at": [ - 2011 + 2015 + ], + "custom_avatar_url": [ + 2015 + ], + "days_since_last_ban": [ + 2015 ], "discord_id": [ - 2011 + 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": [ - 2011 + 2015 + ], + "game_ban_count": [ + 2015 ], "invited_by_steam_id": [ - 2011 + 2015 ], "language": [ - 2011 + 2015 + ], + "last_read_news_at": [ + 2015 ], "last_sign_in_at": [ - 2011 + 2015 ], "name": [ - 2011 + 2015 + ], + "premier_rank": [ + 2015 + ], + "premier_rank_updated_at": [ + 2015 + ], + "presence_updated_at": [ + 2015 ], "profile_url": [ - 2011 + 2015 ], "role": [ - 2011 + 2015 + ], + "roster_image_url": [ + 2015 ], "status": [ - 2011 + 2015 + ], + "steam_bans_checked_at": [ + 2015 ], "steam_id": [ - 2011 + 2015 + ], + "vac_ban_count": [ + 2015 ], "__typename": [ - 70 + 74 ] }, "my_friends_mutation_response": { @@ -36703,71 +37229,131 @@ export default { 38 ], "returning": [ - 1886 + 1890 ], "__typename": [ - 70 + 74 ] }, "my_friends_order_by": { "avatar_url": [ - 2011 + 2015 ], "country": [ - 2011 + 2015 ], "created_at": [ - 2011 + 2015 + ], + "custom_avatar_url": [ + 2015 + ], + "days_since_last_ban": [ + 2015 ], "discord_id": [ - 2011 + 2015 ], "elo": [ - 2011 + 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": [ - 2011 + 2015 + ], + "game_ban_count": [ + 2015 ], "invited_by_steam_id": [ - 2011 + 2015 ], "language": [ - 2011 + 2015 + ], + "last_presence_state": [ + 2015 + ], + "last_read_news_at": [ + 2015 ], "last_sign_in_at": [ - 2011 + 2015 ], "name": [ - 2011 + 2015 ], "name_registered": [ - 2011 + 2015 ], "player": [ - 2891 + 2927 + ], + "premier_rank": [ + 2015 + ], + "premier_rank_updated_at": [ + 2015 + ], + "presence_updated_at": [ + 2015 ], "profile_url": [ - 2011 + 2015 ], "role": [ - 2011 + 2015 + ], + "roster_image_url": [ + 2015 + ], + "show_match_ready_modal": [ + 2015 ], "status": [ - 2011 + 2015 + ], + "steam_bans_checked_at": [ + 2015 ], "steam_id": [ - 2011 + 2015 + ], + "vac_ban_count": [ + 2015 + ], + "vac_banned": [ + 2015 ], "__typename": [ - 70 + 74 ] }, "my_friends_prepend_input": { "elo": [ - 1235 + 1239 + ], + "last_presence_state": [ + 1239 ], "__typename": [ - 70 + 74 ] }, "my_friends_select_column": {}, @@ -36775,404 +37361,770 @@ export default { "my_friends_select_column_my_friends_aggregate_bool_exp_bool_or_arguments_columns": {}, "my_friends_set_input": { "avatar_url": [ - 70 + 74 ], "country": [ - 70 + 74 ], "created_at": [ - 3421 + 3466 + ], + "custom_avatar_url": [ + 74 + ], + "days_since_last_ban": [ + 38 ], "discord_id": [ - 70 + 74 ], "elo": [ - 1235 + 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": [ - 169 + 173 + ], + "game_ban_count": [ + 38 ], "invited_by_steam_id": [ - 169 + 173 ], "language": [ - 70 + 74 + ], + "last_presence_state": [ + 1239 + ], + "last_read_news_at": [ + 3466 ], "last_sign_in_at": [ - 3421 + 3466 ], "name": [ - 70 + 74 ], "name_registered": [ 3 ], + "premier_rank": [ + 38 + ], + "premier_rank_updated_at": [ + 3466 + ], + "presence_updated_at": [ + 3466 + ], "profile_url": [ - 70 + 74 ], "role": [ - 70 + 74 + ], + "roster_image_url": [ + 74 + ], + "show_match_ready_modal": [ + 3 ], "status": [ - 70 + 74 + ], + "steam_bans_checked_at": [ + 3466 ], "steam_id": [ - 169 + 173 + ], + "vac_ban_count": [ + 38 + ], + "vac_banned": [ + 3 ], "__typename": [ - 70 + 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": [ - 70 + 74 ] }, "my_friends_stddev_order_by": { + "days_since_last_ban": [ + 2015 + ], + "faceit_elo": [ + 2015 + ], + "faceit_skill_level": [ + 2015 + ], "friend_steam_id": [ - 2011 + 2015 + ], + "game_ban_count": [ + 2015 ], "invited_by_steam_id": [ - 2011 + 2015 + ], + "premier_rank": [ + 2015 ], "steam_id": [ - 2011 + 2015 + ], + "vac_ban_count": [ + 2015 ], "__typename": [ - 70 + 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": [ - 70 + 74 ] }, "my_friends_stddev_pop_order_by": { + "days_since_last_ban": [ + 2015 + ], + "faceit_elo": [ + 2015 + ], + "faceit_skill_level": [ + 2015 + ], "friend_steam_id": [ - 2011 + 2015 + ], + "game_ban_count": [ + 2015 ], "invited_by_steam_id": [ - 2011 + 2015 + ], + "premier_rank": [ + 2015 ], "steam_id": [ - 2011 + 2015 + ], + "vac_ban_count": [ + 2015 ], "__typename": [ - 70 + 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": [ - 70 + 74 ] }, "my_friends_stddev_samp_order_by": { + "days_since_last_ban": [ + 2015 + ], + "faceit_elo": [ + 2015 + ], + "faceit_skill_level": [ + 2015 + ], "friend_steam_id": [ - 2011 + 2015 + ], + "game_ban_count": [ + 2015 ], "invited_by_steam_id": [ - 2011 + 2015 + ], + "premier_rank": [ + 2015 ], "steam_id": [ - 2011 + 2015 + ], + "vac_ban_count": [ + 2015 ], "__typename": [ - 70 + 74 ] }, "my_friends_stream_cursor_input": { "initial_value": [ - 1922 + 1926 ], "ordering": [ - 224 + 228 ], "__typename": [ - 70 + 74 ] }, "my_friends_stream_cursor_value_input": { "avatar_url": [ - 70 + 74 ], "country": [ - 70 + 74 ], "created_at": [ - 3421 + 3466 + ], + "custom_avatar_url": [ + 74 + ], + "days_since_last_ban": [ + 38 ], "discord_id": [ - 70 + 74 ], "elo": [ - 1235 + 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": [ - 169 + 173 + ], + "game_ban_count": [ + 38 ], "invited_by_steam_id": [ - 169 + 173 ], "language": [ - 70 + 74 + ], + "last_presence_state": [ + 1239 + ], + "last_read_news_at": [ + 3466 ], "last_sign_in_at": [ - 3421 + 3466 ], "name": [ - 70 + 74 ], "name_registered": [ 3 ], + "premier_rank": [ + 38 + ], + "premier_rank_updated_at": [ + 3466 + ], + "presence_updated_at": [ + 3466 + ], "profile_url": [ - 70 + 74 ], "role": [ - 70 + 74 + ], + "roster_image_url": [ + 74 + ], + "show_match_ready_modal": [ + 3 ], "status": [ - 70 + 74 + ], + "steam_bans_checked_at": [ + 3466 ], "steam_id": [ - 169 + 173 + ], + "vac_ban_count": [ + 38 + ], + "vac_banned": [ + 3 ], "__typename": [ - 70 + 74 ] }, "my_friends_sum_fields": { + "days_since_last_ban": [ + 38 + ], + "faceit_elo": [ + 38 + ], + "faceit_skill_level": [ + 38 + ], "friend_steam_id": [ - 169 + 173 + ], + "game_ban_count": [ + 38 ], "invited_by_steam_id": [ - 169 + 173 + ], + "premier_rank": [ + 38 ], "steam_id": [ - 169 + 173 + ], + "vac_ban_count": [ + 38 ], "__typename": [ - 70 + 74 ] }, "my_friends_sum_order_by": { + "days_since_last_ban": [ + 2015 + ], + "faceit_elo": [ + 2015 + ], + "faceit_skill_level": [ + 2015 + ], "friend_steam_id": [ - 2011 + 2015 + ], + "game_ban_count": [ + 2015 ], "invited_by_steam_id": [ - 2011 + 2015 + ], + "premier_rank": [ + 2015 ], "steam_id": [ - 2011 + 2015 + ], + "vac_ban_count": [ + 2015 ], "__typename": [ - 70 + 74 ] }, "my_friends_updates": { "_append": [ - 1894 + 1898 ], "_delete_at_path": [ - 1899 + 1903 ], "_delete_elem": [ - 1900 + 1904 ], "_delete_key": [ - 1901 + 1905 ], "_inc": [ - 1902 + 1906 ], "_prepend": [ - 1910 + 1914 ], "_set": [ - 1914 + 1918 ], "where": [ - 1898 + 1902 ], "__typename": [ - 70 + 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": [ - 70 + 74 ] }, "my_friends_var_pop_order_by": { + "days_since_last_ban": [ + 2015 + ], + "faceit_elo": [ + 2015 + ], + "faceit_skill_level": [ + 2015 + ], "friend_steam_id": [ - 2011 + 2015 + ], + "game_ban_count": [ + 2015 ], "invited_by_steam_id": [ - 2011 + 2015 + ], + "premier_rank": [ + 2015 ], "steam_id": [ - 2011 + 2015 + ], + "vac_ban_count": [ + 2015 ], "__typename": [ - 70 + 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": [ - 70 + 74 ] }, "my_friends_var_samp_order_by": { + "days_since_last_ban": [ + 2015 + ], + "faceit_elo": [ + 2015 + ], + "faceit_skill_level": [ + 2015 + ], "friend_steam_id": [ - 2011 + 2015 + ], + "game_ban_count": [ + 2015 ], "invited_by_steam_id": [ - 2011 + 2015 + ], + "premier_rank": [ + 2015 ], "steam_id": [ - 2011 + 2015 + ], + "vac_ban_count": [ + 2015 ], "__typename": [ - 70 + 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": [ - 70 + 74 ] }, "my_friends_variance_order_by": { + "days_since_last_ban": [ + 2015 + ], + "faceit_elo": [ + 2015 + ], + "faceit_skill_level": [ + 2015 + ], "friend_steam_id": [ - 2011 + 2015 + ], + "game_ban_count": [ + 2015 ], "invited_by_steam_id": [ - 2011 + 2015 + ], + "premier_rank": [ + 2015 ], "steam_id": [ - 2011 + 2015 + ], + "vac_ban_count": [ + 2015 ], "__typename": [ - 70 + 74 ] }, "news_articles": { "author": [ - 2878 + 2914 ], "author_steam_id": [ - 169 + 173 ], "content_markdown": [ - 70 + 74 ], "cover_image_url": [ - 70 + 74 ], "created_at": [ - 3421 + 3466 ], "id": [ - 3818 + 3863 ], "published_at": [ - 3421 + 3466 ], "slug": [ - 70 + 74 ], "status": [ - 70 + 74 ], "teaser": [ - 70 + 74 ], "title": [ - 70 + 74 ], "updated_at": [ - 3421 + 3466 ], "view_count": [ - 169 + 173 ], "__typename": [ - 70 + 74 ] }, "news_articles_aggregate": { "aggregate": [ - 1934 + 1938 ], "nodes": [ - 1932 + 1936 ], "__typename": [ - 70 + 74 ] }, "news_articles_aggregate_fields": { "avg": [ - 1935 + 1939 ], "count": [ 38, { "columns": [ - 1946, + 1950, "[news_articles_select_column!]" ], "distinct": [ @@ -37181,34 +38133,34 @@ export default { } ], "max": [ - 1940 + 1944 ], "min": [ - 1941 + 1945 ], "stddev": [ - 1948 + 1952 ], "stddev_pop": [ - 1949 + 1953 ], "stddev_samp": [ - 1950 + 1954 ], "sum": [ - 1953 + 1957 ], "var_pop": [ - 1956 + 1960 ], "var_samp": [ - 1957 + 1961 ], "variance": [ - 1958 + 1962 ], "__typename": [ - 70 + 74 ] }, "news_articles_avg_fields": { @@ -37219,198 +38171,198 @@ export default { 29 ], "__typename": [ - 70 + 74 ] }, "news_articles_bool_exp": { "_and": [ - 1936 + 1940 ], "_not": [ - 1936 + 1940 ], "_or": [ - 1936 + 1940 ], "author": [ - 2882 + 2918 ], "author_steam_id": [ - 171 + 175 ], "content_markdown": [ - 72 + 76 ], "cover_image_url": [ - 72 + 76 ], "created_at": [ - 3422 + 3467 ], "id": [ - 3820 + 3865 ], "published_at": [ - 3422 + 3467 ], "slug": [ - 72 + 76 ], "status": [ - 72 + 76 ], "teaser": [ - 72 + 76 ], "title": [ - 72 + 76 ], "updated_at": [ - 3422 + 3467 ], "view_count": [ - 171 + 175 ], "__typename": [ - 70 + 74 ] }, "news_articles_constraint": {}, "news_articles_inc_input": { "author_steam_id": [ - 169 + 173 ], "view_count": [ - 169 + 173 ], "__typename": [ - 70 + 74 ] }, "news_articles_insert_input": { "author": [ - 2889 + 2925 ], "author_steam_id": [ - 169 + 173 ], "content_markdown": [ - 70 + 74 ], "cover_image_url": [ - 70 + 74 ], "created_at": [ - 3421 + 3466 ], "id": [ - 3818 + 3863 ], "published_at": [ - 3421 + 3466 ], "slug": [ - 70 + 74 ], "status": [ - 70 + 74 ], "teaser": [ - 70 + 74 ], "title": [ - 70 + 74 ], "updated_at": [ - 3421 + 3466 ], "view_count": [ - 169 + 173 ], "__typename": [ - 70 + 74 ] }, "news_articles_max_fields": { "author_steam_id": [ - 169 + 173 ], "content_markdown": [ - 70 + 74 ], "cover_image_url": [ - 70 + 74 ], "created_at": [ - 3421 + 3466 ], "id": [ - 3818 + 3863 ], "published_at": [ - 3421 + 3466 ], "slug": [ - 70 + 74 ], "status": [ - 70 + 74 ], "teaser": [ - 70 + 74 ], "title": [ - 70 + 74 ], "updated_at": [ - 3421 + 3466 ], "view_count": [ - 169 + 173 ], "__typename": [ - 70 + 74 ] }, "news_articles_min_fields": { "author_steam_id": [ - 169 + 173 ], "content_markdown": [ - 70 + 74 ], "cover_image_url": [ - 70 + 74 ], "created_at": [ - 3421 + 3466 ], "id": [ - 3818 + 3863 ], "published_at": [ - 3421 + 3466 ], "slug": [ - 70 + 74 ], "status": [ - 70 + 74 ], "teaser": [ - 70 + 74 ], "title": [ - 70 + 74 ], "updated_at": [ - 3421 + 3466 ], "view_count": [ - 169 + 173 ], "__typename": [ - 70 + 74 ] }, "news_articles_mutation_response": { @@ -37418,118 +38370,118 @@ export default { 38 ], "returning": [ - 1932 + 1936 ], "__typename": [ - 70 + 74 ] }, "news_articles_on_conflict": { "constraint": [ - 1937 + 1941 ], "update_columns": [ - 1954 + 1958 ], "where": [ - 1936 + 1940 ], "__typename": [ - 70 + 74 ] }, "news_articles_order_by": { "author": [ - 2891 + 2927 ], "author_steam_id": [ - 2011 + 2015 ], "content_markdown": [ - 2011 + 2015 ], "cover_image_url": [ - 2011 + 2015 ], "created_at": [ - 2011 + 2015 ], "id": [ - 2011 + 2015 ], "published_at": [ - 2011 + 2015 ], "slug": [ - 2011 + 2015 ], "status": [ - 2011 + 2015 ], "teaser": [ - 2011 + 2015 ], "title": [ - 2011 + 2015 ], "updated_at": [ - 2011 + 2015 ], "view_count": [ - 2011 + 2015 ], "__typename": [ - 70 + 74 ] }, "news_articles_pk_columns_input": { "id": [ - 3818 + 3863 ], "__typename": [ - 70 + 74 ] }, "news_articles_select_column": {}, "news_articles_set_input": { "author_steam_id": [ - 169 + 173 ], "content_markdown": [ - 70 + 74 ], "cover_image_url": [ - 70 + 74 ], "created_at": [ - 3421 + 3466 ], "id": [ - 3818 + 3863 ], "published_at": [ - 3421 + 3466 ], "slug": [ - 70 + 74 ], "status": [ - 70 + 74 ], "teaser": [ - 70 + 74 ], "title": [ - 70 + 74 ], "updated_at": [ - 3421 + 3466 ], "view_count": [ - 169 + 173 ], "__typename": [ - 70 + 74 ] }, "news_articles_stddev_fields": { @@ -37540,7 +38492,7 @@ export default { 29 ], "__typename": [ - 70 + 74 ] }, "news_articles_stddev_pop_fields": { @@ -37551,7 +38503,7 @@ export default { 29 ], "__typename": [ - 70 + 74 ] }, "news_articles_stddev_samp_fields": { @@ -37562,85 +38514,85 @@ export default { 29 ], "__typename": [ - 70 + 74 ] }, "news_articles_stream_cursor_input": { "initial_value": [ - 1952 + 1956 ], "ordering": [ - 224 + 228 ], "__typename": [ - 70 + 74 ] }, "news_articles_stream_cursor_value_input": { "author_steam_id": [ - 169 + 173 ], "content_markdown": [ - 70 + 74 ], "cover_image_url": [ - 70 + 74 ], "created_at": [ - 3421 + 3466 ], "id": [ - 3818 + 3863 ], "published_at": [ - 3421 + 3466 ], "slug": [ - 70 + 74 ], "status": [ - 70 + 74 ], "teaser": [ - 70 + 74 ], "title": [ - 70 + 74 ], "updated_at": [ - 3421 + 3466 ], "view_count": [ - 169 + 173 ], "__typename": [ - 70 + 74 ] }, "news_articles_sum_fields": { "author_steam_id": [ - 169 + 173 ], "view_count": [ - 169 + 173 ], "__typename": [ - 70 + 74 ] }, "news_articles_update_column": {}, "news_articles_updates": { "_inc": [ - 1938 + 1942 ], "_set": [ - 1947 + 1951 ], "where": [ - 1936 + 1940 ], "__typename": [ - 70 + 74 ] }, "news_articles_var_pop_fields": { @@ -37651,7 +38603,7 @@ export default { 29 ], "__typename": [ - 70 + 74 ] }, "news_articles_var_samp_fields": { @@ -37662,7 +38614,7 @@ export default { 29 ], "__typename": [ - 70 + 74 ] }, "news_articles_variance_fields": { @@ -37673,143 +38625,143 @@ export default { 29 ], "__typename": [ - 70 + 74 ] }, "notifications": { "actions": [ - 1235, + 1239, { "path": [ - 70 + 74 ] } ], "created_at": [ - 3421 + 3466 ], "deletable": [ 3 ], "deleted_at": [ - 3421 + 3466 ], "entity_id": [ - 70 + 74 ], "id": [ - 3818 + 3863 ], "is_read": [ 3 ], "message": [ - 70 + 74 ], "player": [ - 2878 + 2914 ], "role": [ - 785 + 789 ], "steam_id": [ - 169 + 173 ], "title": [ - 70 + 74 ], "type": [ - 745 + 749 ], "__typename": [ - 70 + 74 ] }, "notifications_aggregate": { "aggregate": [ - 1965 + 1969 ], "nodes": [ - 1959 + 1963 ], "__typename": [ - 70 + 74 ] }, "notifications_aggregate_bool_exp": { "bool_and": [ - 1962 + 1966 ], "bool_or": [ - 1963 + 1967 ], "count": [ - 1964 + 1968 ], "__typename": [ - 70 + 74 ] }, "notifications_aggregate_bool_exp_bool_and": { "arguments": [ - 1988 + 1992 ], "distinct": [ 3 ], "filter": [ - 1971 + 1975 ], "predicate": [ 4 ], "__typename": [ - 70 + 74 ] }, "notifications_aggregate_bool_exp_bool_or": { "arguments": [ - 1989 + 1993 ], "distinct": [ 3 ], "filter": [ - 1971 + 1975 ], "predicate": [ 4 ], "__typename": [ - 70 + 74 ] }, "notifications_aggregate_bool_exp_count": { "arguments": [ - 1987 + 1991 ], "distinct": [ 3 ], "filter": [ - 1971 + 1975 ], "predicate": [ 39 ], "__typename": [ - 70 + 74 ] }, "notifications_aggregate_fields": { "avg": [ - 1969 + 1973 ], "count": [ 38, { "columns": [ - 1987, + 1991, "[notifications_select_column!]" ], "distinct": [ @@ -37818,91 +38770,91 @@ export default { } ], "max": [ - 1978 + 1982 ], "min": [ - 1980 + 1984 ], "stddev": [ - 1991 + 1995 ], "stddev_pop": [ - 1993 + 1997 ], "stddev_samp": [ - 1995 + 1999 ], "sum": [ - 1999 + 2003 ], "var_pop": [ - 2003 + 2007 ], "var_samp": [ - 2005 + 2009 ], "variance": [ - 2007 + 2011 ], "__typename": [ - 70 + 74 ] }, "notifications_aggregate_order_by": { "avg": [ - 1970 + 1974 ], "count": [ - 2011 + 2015 ], "max": [ - 1979 + 1983 ], "min": [ - 1981 + 1985 ], "stddev": [ - 1992 + 1996 ], "stddev_pop": [ - 1994 + 1998 ], "stddev_samp": [ - 1996 + 2000 ], "sum": [ - 2000 + 2004 ], "var_pop": [ - 2004 + 2008 ], "var_samp": [ - 2006 + 2010 ], "variance": [ - 2008 + 2012 ], "__typename": [ - 70 + 74 ] }, "notifications_append_input": { "actions": [ - 1235 + 1239 ], "__typename": [ - 70 + 74 ] }, "notifications_arr_rel_insert_input": { "data": [ - 1977 + 1981 ], "on_conflict": [ - 1983 + 1987 ], "__typename": [ - 70 + 74 ] }, "notifications_avg_fields": { @@ -37910,77 +38862,77 @@ export default { 29 ], "__typename": [ - 70 + 74 ] }, "notifications_avg_order_by": { "steam_id": [ - 2011 + 2015 ], "__typename": [ - 70 + 74 ] }, "notifications_bool_exp": { "_and": [ - 1971 + 1975 ], "_not": [ - 1971 + 1975 ], "_or": [ - 1971 + 1975 ], "actions": [ - 1237 + 1241 ], "created_at": [ - 3422 + 3467 ], "deletable": [ 4 ], "deleted_at": [ - 3422 + 3467 ], "entity_id": [ - 72 + 76 ], "id": [ - 3820 + 3865 ], "is_read": [ 4 ], "message": [ - 72 + 76 ], "player": [ - 2882 + 2918 ], "role": [ - 786 + 790 ], "steam_id": [ - 171 + 175 ], "title": [ - 72 + 76 ], "type": [ - 746 + 750 ], "__typename": [ - 70 + 74 ] }, "notifications_constraint": {}, "notifications_delete_at_path_input": { "actions": [ - 70 + 74 ], "__typename": [ - 70 + 74 ] }, "notifications_delete_elem_input": { @@ -37988,171 +38940,171 @@ export default { 38 ], "__typename": [ - 70 + 74 ] }, "notifications_delete_key_input": { "actions": [ - 70 + 74 ], "__typename": [ - 70 + 74 ] }, "notifications_inc_input": { "steam_id": [ - 169 + 173 ], "__typename": [ - 70 + 74 ] }, "notifications_insert_input": { "actions": [ - 1235 + 1239 ], "created_at": [ - 3421 + 3466 ], "deletable": [ 3 ], "deleted_at": [ - 3421 + 3466 ], "entity_id": [ - 70 + 74 ], "id": [ - 3818 + 3863 ], "is_read": [ 3 ], "message": [ - 70 + 74 ], "player": [ - 2889 + 2925 ], "role": [ - 785 + 789 ], "steam_id": [ - 169 + 173 ], "title": [ - 70 + 74 ], "type": [ - 745 + 749 ], "__typename": [ - 70 + 74 ] }, "notifications_max_fields": { "created_at": [ - 3421 + 3466 ], "deleted_at": [ - 3421 + 3466 ], "entity_id": [ - 70 + 74 ], "id": [ - 3818 + 3863 ], "message": [ - 70 + 74 ], "steam_id": [ - 169 + 173 ], "title": [ - 70 + 74 ], "__typename": [ - 70 + 74 ] }, "notifications_max_order_by": { "created_at": [ - 2011 + 2015 ], "deleted_at": [ - 2011 + 2015 ], "entity_id": [ - 2011 + 2015 ], "id": [ - 2011 + 2015 ], "message": [ - 2011 + 2015 ], "steam_id": [ - 2011 + 2015 ], "title": [ - 2011 + 2015 ], "__typename": [ - 70 + 74 ] }, "notifications_min_fields": { "created_at": [ - 3421 + 3466 ], "deleted_at": [ - 3421 + 3466 ], "entity_id": [ - 70 + 74 ], "id": [ - 3818 + 3863 ], "message": [ - 70 + 74 ], "steam_id": [ - 169 + 173 ], "title": [ - 70 + 74 ], "__typename": [ - 70 + 74 ] }, "notifications_min_order_by": { "created_at": [ - 2011 + 2015 ], "deleted_at": [ - 2011 + 2015 ], "entity_id": [ - 2011 + 2015 ], "id": [ - 2011 + 2015 ], "message": [ - 2011 + 2015 ], "steam_id": [ - 2011 + 2015 ], "title": [ - 2011 + 2015 ], "__typename": [ - 70 + 74 ] }, "notifications_mutation_response": { @@ -38160,84 +39112,84 @@ export default { 38 ], "returning": [ - 1959 + 1963 ], "__typename": [ - 70 + 74 ] }, "notifications_on_conflict": { "constraint": [ - 1972 + 1976 ], "update_columns": [ - 2001 + 2005 ], "where": [ - 1971 + 1975 ], "__typename": [ - 70 + 74 ] }, "notifications_order_by": { "actions": [ - 2011 + 2015 ], "created_at": [ - 2011 + 2015 ], "deletable": [ - 2011 + 2015 ], "deleted_at": [ - 2011 + 2015 ], "entity_id": [ - 2011 + 2015 ], "id": [ - 2011 + 2015 ], "is_read": [ - 2011 + 2015 ], "message": [ - 2011 + 2015 ], "player": [ - 2891 + 2927 ], "role": [ - 2011 + 2015 ], "steam_id": [ - 2011 + 2015 ], "title": [ - 2011 + 2015 ], "type": [ - 2011 + 2015 ], "__typename": [ - 70 + 74 ] }, "notifications_pk_columns_input": { "id": [ - 3818 + 3863 ], "__typename": [ - 70 + 74 ] }, "notifications_prepend_input": { "actions": [ - 1235 + 1239 ], "__typename": [ - 70 + 74 ] }, "notifications_select_column": {}, @@ -38245,43 +39197,43 @@ export default { "notifications_select_column_notifications_aggregate_bool_exp_bool_or_arguments_columns": {}, "notifications_set_input": { "actions": [ - 1235 + 1239 ], "created_at": [ - 3421 + 3466 ], "deletable": [ 3 ], "deleted_at": [ - 3421 + 3466 ], "entity_id": [ - 70 + 74 ], "id": [ - 3818 + 3863 ], "is_read": [ 3 ], "message": [ - 70 + 74 ], "role": [ - 785 + 789 ], "steam_id": [ - 169 + 173 ], "title": [ - 70 + 74 ], "type": [ - 745 + 749 ], "__typename": [ - 70 + 74 ] }, "notifications_stddev_fields": { @@ -38289,15 +39241,15 @@ export default { 29 ], "__typename": [ - 70 + 74 ] }, "notifications_stddev_order_by": { "steam_id": [ - 2011 + 2015 ], "__typename": [ - 70 + 74 ] }, "notifications_stddev_pop_fields": { @@ -38305,15 +39257,15 @@ export default { 29 ], "__typename": [ - 70 + 74 ] }, "notifications_stddev_pop_order_by": { "steam_id": [ - 2011 + 2015 ], "__typename": [ - 70 + 74 ] }, "notifications_stddev_samp_fields": { @@ -38321,113 +39273,113 @@ export default { 29 ], "__typename": [ - 70 + 74 ] }, "notifications_stddev_samp_order_by": { "steam_id": [ - 2011 + 2015 ], "__typename": [ - 70 + 74 ] }, "notifications_stream_cursor_input": { "initial_value": [ - 1998 + 2002 ], "ordering": [ - 224 + 228 ], "__typename": [ - 70 + 74 ] }, "notifications_stream_cursor_value_input": { "actions": [ - 1235 + 1239 ], "created_at": [ - 3421 + 3466 ], "deletable": [ 3 ], "deleted_at": [ - 3421 + 3466 ], "entity_id": [ - 70 + 74 ], "id": [ - 3818 + 3863 ], "is_read": [ 3 ], "message": [ - 70 + 74 ], "role": [ - 785 + 789 ], "steam_id": [ - 169 + 173 ], "title": [ - 70 + 74 ], "type": [ - 745 + 749 ], "__typename": [ - 70 + 74 ] }, "notifications_sum_fields": { "steam_id": [ - 169 + 173 ], "__typename": [ - 70 + 74 ] }, "notifications_sum_order_by": { "steam_id": [ - 2011 + 2015 ], "__typename": [ - 70 + 74 ] }, "notifications_update_column": {}, "notifications_updates": { "_append": [ - 1967 + 1971 ], "_delete_at_path": [ - 1973 + 1977 ], "_delete_elem": [ - 1974 + 1978 ], "_delete_key": [ - 1975 + 1979 ], "_inc": [ - 1976 + 1980 ], "_prepend": [ - 1986 + 1990 ], "_set": [ - 1990 + 1994 ], "where": [ - 1971 + 1975 ], "__typename": [ - 70 + 74 ] }, "notifications_var_pop_fields": { @@ -38435,15 +39387,15 @@ export default { 29 ], "__typename": [ - 70 + 74 ] }, "notifications_var_pop_order_by": { "steam_id": [ - 2011 + 2015 ], "__typename": [ - 70 + 74 ] }, "notifications_var_samp_fields": { @@ -38451,15 +39403,15 @@ export default { 29 ], "__typename": [ - 70 + 74 ] }, "notifications_var_samp_order_by": { "steam_id": [ - 2011 + 2015 ], "__typename": [ - 70 + 74 ] }, "notifications_variance_fields": { @@ -38467,116 +39419,116 @@ export default { 29 ], "__typename": [ - 70 + 74 ] }, "notifications_variance_order_by": { "steam_id": [ - 2011 + 2015 ], "__typename": [ - 70 + 74 ] }, "numeric": {}, "numeric_comparison_exp": { "_eq": [ - 2009 + 2013 ], "_gt": [ - 2009 + 2013 ], "_gte": [ - 2009 + 2013 ], "_in": [ - 2009 + 2013 ], "_is_null": [ 3 ], "_lt": [ - 2009 + 2013 ], "_lte": [ - 2009 + 2013 ], "_neq": [ - 2009 + 2013 ], "_nin": [ - 2009 + 2013 ], "__typename": [ - 70 + 74 ] }, "order_by": {}, "pending_match_import_players": { "created_at": [ - 3421 + 3466 ], "pending_match_import": [ - 2053 + 2057 ], "player": [ - 2878 + 2914 ], "steam_id": [ - 169 + 173 ], "valve_match_id": [ - 2009 + 2013 ], "__typename": [ - 70 + 74 ] }, "pending_match_import_players_aggregate": { "aggregate": [ - 2016 + 2020 ], "nodes": [ - 2012 + 2016 ], "__typename": [ - 70 + 74 ] }, "pending_match_import_players_aggregate_bool_exp": { "count": [ - 2015 + 2019 ], "__typename": [ - 70 + 74 ] }, "pending_match_import_players_aggregate_bool_exp_count": { "arguments": [ - 2033 + 2037 ], "distinct": [ 3 ], "filter": [ - 2021 + 2025 ], "predicate": [ 39 ], "__typename": [ - 70 + 74 ] }, "pending_match_import_players_aggregate_fields": { "avg": [ - 2019 + 2023 ], "count": [ 38, { "columns": [ - 2033, + 2037, "[pending_match_import_players_select_column!]" ], "distinct": [ @@ -38585,83 +39537,83 @@ export default { } ], "max": [ - 2025 + 2029 ], "min": [ - 2027 + 2031 ], "stddev": [ - 2035 + 2039 ], "stddev_pop": [ - 2037 + 2041 ], "stddev_samp": [ - 2039 + 2043 ], "sum": [ - 2043 + 2047 ], "var_pop": [ - 2047 + 2051 ], "var_samp": [ - 2049 + 2053 ], "variance": [ - 2051 + 2055 ], "__typename": [ - 70 + 74 ] }, "pending_match_import_players_aggregate_order_by": { "avg": [ - 2020 + 2024 ], "count": [ - 2011 + 2015 ], "max": [ - 2026 + 2030 ], "min": [ - 2028 + 2032 ], "stddev": [ - 2036 + 2040 ], "stddev_pop": [ - 2038 + 2042 ], "stddev_samp": [ - 2040 + 2044 ], "sum": [ - 2044 + 2048 ], "var_pop": [ - 2048 + 2052 ], "var_samp": [ - 2050 + 2054 ], "variance": [ - 2052 + 2056 ], "__typename": [ - 70 + 74 ] }, "pending_match_import_players_arr_rel_insert_input": { "data": [ - 2024 + 2028 ], "on_conflict": [ - 2030 + 2034 ], "__typename": [ - 70 + 74 ] }, "pending_match_import_players_avg_fields": { @@ -38672,135 +39624,135 @@ export default { 29 ], "__typename": [ - 70 + 74 ] }, "pending_match_import_players_avg_order_by": { "steam_id": [ - 2011 + 2015 ], "valve_match_id": [ - 2011 + 2015 ], "__typename": [ - 70 + 74 ] }, "pending_match_import_players_bool_exp": { "_and": [ - 2021 + 2025 ], "_not": [ - 2021 + 2025 ], "_or": [ - 2021 + 2025 ], "created_at": [ - 3422 + 3467 ], "pending_match_import": [ - 2057 + 2061 ], "player": [ - 2882 + 2918 ], "steam_id": [ - 171 + 175 ], "valve_match_id": [ - 2010 + 2014 ], "__typename": [ - 70 + 74 ] }, "pending_match_import_players_constraint": {}, "pending_match_import_players_inc_input": { "steam_id": [ - 169 + 173 ], "valve_match_id": [ - 2009 + 2013 ], "__typename": [ - 70 + 74 ] }, "pending_match_import_players_insert_input": { "created_at": [ - 3421 + 3466 ], "pending_match_import": [ - 2064 + 2068 ], "player": [ - 2889 + 2925 ], "steam_id": [ - 169 + 173 ], "valve_match_id": [ - 2009 + 2013 ], "__typename": [ - 70 + 74 ] }, "pending_match_import_players_max_fields": { "created_at": [ - 3421 + 3466 ], "steam_id": [ - 169 + 173 ], "valve_match_id": [ - 2009 + 2013 ], "__typename": [ - 70 + 74 ] }, "pending_match_import_players_max_order_by": { "created_at": [ - 2011 + 2015 ], "steam_id": [ - 2011 + 2015 ], "valve_match_id": [ - 2011 + 2015 ], "__typename": [ - 70 + 74 ] }, "pending_match_import_players_min_fields": { "created_at": [ - 3421 + 3466 ], "steam_id": [ - 169 + 173 ], "valve_match_id": [ - 2009 + 2013 ], "__typename": [ - 70 + 74 ] }, "pending_match_import_players_min_order_by": { "created_at": [ - 2011 + 2015 ], "steam_id": [ - 2011 + 2015 ], "valve_match_id": [ - 2011 + 2015 ], "__typename": [ - 70 + 74 ] }, "pending_match_import_players_mutation_response": { @@ -38808,70 +39760,70 @@ export default { 38 ], "returning": [ - 2012 + 2016 ], "__typename": [ - 70 + 74 ] }, "pending_match_import_players_on_conflict": { "constraint": [ - 2022 + 2026 ], "update_columns": [ - 2045 + 2049 ], "where": [ - 2021 + 2025 ], "__typename": [ - 70 + 74 ] }, "pending_match_import_players_order_by": { "created_at": [ - 2011 + 2015 ], "pending_match_import": [ - 2066 + 2070 ], "player": [ - 2891 + 2927 ], "steam_id": [ - 2011 + 2015 ], "valve_match_id": [ - 2011 + 2015 ], "__typename": [ - 70 + 74 ] }, "pending_match_import_players_pk_columns_input": { "steam_id": [ - 169 + 173 ], "valve_match_id": [ - 2009 + 2013 ], "__typename": [ - 70 + 74 ] }, "pending_match_import_players_select_column": {}, "pending_match_import_players_set_input": { "created_at": [ - 3421 + 3466 ], "steam_id": [ - 169 + 173 ], "valve_match_id": [ - 2009 + 2013 ], "__typename": [ - 70 + 74 ] }, "pending_match_import_players_stddev_fields": { @@ -38882,18 +39834,18 @@ export default { 29 ], "__typename": [ - 70 + 74 ] }, "pending_match_import_players_stddev_order_by": { "steam_id": [ - 2011 + 2015 ], "valve_match_id": [ - 2011 + 2015 ], "__typename": [ - 70 + 74 ] }, "pending_match_import_players_stddev_pop_fields": { @@ -38904,18 +39856,18 @@ export default { 29 ], "__typename": [ - 70 + 74 ] }, "pending_match_import_players_stddev_pop_order_by": { "steam_id": [ - 2011 + 2015 ], "valve_match_id": [ - 2011 + 2015 ], "__typename": [ - 70 + 74 ] }, "pending_match_import_players_stddev_samp_fields": { @@ -38926,80 +39878,80 @@ export default { 29 ], "__typename": [ - 70 + 74 ] }, "pending_match_import_players_stddev_samp_order_by": { "steam_id": [ - 2011 + 2015 ], "valve_match_id": [ - 2011 + 2015 ], "__typename": [ - 70 + 74 ] }, "pending_match_import_players_stream_cursor_input": { "initial_value": [ - 2042 + 2046 ], "ordering": [ - 224 + 228 ], "__typename": [ - 70 + 74 ] }, "pending_match_import_players_stream_cursor_value_input": { "created_at": [ - 3421 + 3466 ], "steam_id": [ - 169 + 173 ], "valve_match_id": [ - 2009 + 2013 ], "__typename": [ - 70 + 74 ] }, "pending_match_import_players_sum_fields": { "steam_id": [ - 169 + 173 ], "valve_match_id": [ - 2009 + 2013 ], "__typename": [ - 70 + 74 ] }, "pending_match_import_players_sum_order_by": { "steam_id": [ - 2011 + 2015 ], "valve_match_id": [ - 2011 + 2015 ], "__typename": [ - 70 + 74 ] }, "pending_match_import_players_update_column": {}, "pending_match_import_players_updates": { "_inc": [ - 2023 + 2027 ], "_set": [ - 2034 + 2038 ], "where": [ - 2021 + 2025 ], "__typename": [ - 70 + 74 ] }, "pending_match_import_players_var_pop_fields": { @@ -39010,18 +39962,18 @@ export default { 29 ], "__typename": [ - 70 + 74 ] }, "pending_match_import_players_var_pop_order_by": { "steam_id": [ - 2011 + 2015 ], "valve_match_id": [ - 2011 + 2015 ], "__typename": [ - 70 + 74 ] }, "pending_match_import_players_var_samp_fields": { @@ -39032,18 +39984,18 @@ export default { 29 ], "__typename": [ - 70 + 74 ] }, "pending_match_import_players_var_samp_order_by": { "steam_id": [ - 2011 + 2015 ], "valve_match_id": [ - 2011 + 2015 ], "__typename": [ - 70 + 74 ] }, "pending_match_import_players_variance_fields": { @@ -39054,41 +40006,41 @@ export default { 29 ], "__typename": [ - 70 + 74 ] }, "pending_match_import_players_variance_order_by": { "steam_id": [ - 2011 + 2015 ], "valve_match_id": [ - 2011 + 2015 ], "__typename": [ - 70 + 74 ] }, "pending_match_imports": { "created_at": [ - 3421 + 3466 ], "demo_url": [ - 70 + 74 ], "error": [ - 70 + 74 ], "map_name": [ - 70 + 74 ], "match_start_time": [ - 3421 + 3466 ], "players": [ - 2012, + 2016, { "distinct_on": [ - 2033, + 2037, "[pending_match_import_players_select_column!]" ], "limit": [ @@ -39098,19 +40050,19 @@ export default { 38 ], "order_by": [ - 2031, + 2035, "[pending_match_import_players_order_by!]" ], "where": [ - 2021 + 2025 ] } ], "players_aggregate": [ - 2013, + 2017, { "distinct_on": [ - 2033, + 2037, "[pending_match_import_players_select_column!]" ], "limit": [ @@ -39120,50 +40072,50 @@ export default { 38 ], "order_by": [ - 2031, + 2035, "[pending_match_import_players_order_by!]" ], "where": [ - 2021 + 2025 ] } ], "share_code": [ - 70 + 74 ], "status": [ - 70 + 74 ], "updated_at": [ - 3421 + 3466 ], "valve_match_id": [ - 2009 + 2013 ], "__typename": [ - 70 + 74 ] }, "pending_match_imports_aggregate": { "aggregate": [ - 2055 + 2059 ], "nodes": [ - 2053 + 2057 ], "__typename": [ - 70 + 74 ] }, "pending_match_imports_aggregate_fields": { "avg": [ - 2056 + 2060 ], "count": [ 38, { "columns": [ - 2068, + 2072, "[pending_match_imports_select_column!]" ], "distinct": [ @@ -39172,34 +40124,34 @@ export default { } ], "max": [ - 2061 + 2065 ], "min": [ - 2062 + 2066 ], "stddev": [ - 2070 + 2074 ], "stddev_pop": [ - 2071 + 2075 ], "stddev_samp": [ - 2072 + 2076 ], "sum": [ - 2075 + 2079 ], "var_pop": [ - 2078 + 2082 ], "var_samp": [ - 2079 + 2083 ], "variance": [ - 2080 + 2084 ], "__typename": [ - 70 + 74 ] }, "pending_match_imports_avg_fields": { @@ -39207,162 +40159,162 @@ export default { 29 ], "__typename": [ - 70 + 74 ] }, "pending_match_imports_bool_exp": { "_and": [ - 2057 + 2061 ], "_not": [ - 2057 + 2061 ], "_or": [ - 2057 + 2061 ], "created_at": [ - 3422 + 3467 ], "demo_url": [ - 72 + 76 ], "error": [ - 72 + 76 ], "map_name": [ - 72 + 76 ], "match_start_time": [ - 3422 + 3467 ], "players": [ - 2021 + 2025 ], "players_aggregate": [ - 2014 + 2018 ], "share_code": [ - 72 + 76 ], "status": [ - 72 + 76 ], "updated_at": [ - 3422 + 3467 ], "valve_match_id": [ - 2010 + 2014 ], "__typename": [ - 70 + 74 ] }, "pending_match_imports_constraint": {}, "pending_match_imports_inc_input": { "valve_match_id": [ - 2009 + 2013 ], "__typename": [ - 70 + 74 ] }, "pending_match_imports_insert_input": { "created_at": [ - 3421 + 3466 ], "demo_url": [ - 70 + 74 ], "error": [ - 70 + 74 ], "map_name": [ - 70 + 74 ], "match_start_time": [ - 3421 + 3466 ], "players": [ - 2018 + 2022 ], "share_code": [ - 70 + 74 ], "status": [ - 70 + 74 ], "updated_at": [ - 3421 + 3466 ], "valve_match_id": [ - 2009 + 2013 ], "__typename": [ - 70 + 74 ] }, "pending_match_imports_max_fields": { "created_at": [ - 3421 + 3466 ], "demo_url": [ - 70 + 74 ], "error": [ - 70 + 74 ], "map_name": [ - 70 + 74 ], "match_start_time": [ - 3421 + 3466 ], "share_code": [ - 70 + 74 ], "status": [ - 70 + 74 ], "updated_at": [ - 3421 + 3466 ], "valve_match_id": [ - 2009 + 2013 ], "__typename": [ - 70 + 74 ] }, "pending_match_imports_min_fields": { "created_at": [ - 3421 + 3466 ], "demo_url": [ - 70 + 74 ], "error": [ - 70 + 74 ], "map_name": [ - 70 + 74 ], "match_start_time": [ - 3421 + 3466 ], "share_code": [ - 70 + 74 ], "status": [ - 70 + 74 ], "updated_at": [ - 3421 + 3466 ], "valve_match_id": [ - 2009 + 2013 ], "__typename": [ - 70 + 74 ] }, "pending_match_imports_mutation_response": { @@ -39370,111 +40322,111 @@ export default { 38 ], "returning": [ - 2053 + 2057 ], "__typename": [ - 70 + 74 ] }, "pending_match_imports_obj_rel_insert_input": { "data": [ - 2060 + 2064 ], "on_conflict": [ - 2065 + 2069 ], "__typename": [ - 70 + 74 ] }, "pending_match_imports_on_conflict": { "constraint": [ - 2058 + 2062 ], "update_columns": [ - 2076 + 2080 ], "where": [ - 2057 + 2061 ], "__typename": [ - 70 + 74 ] }, "pending_match_imports_order_by": { "created_at": [ - 2011 + 2015 ], "demo_url": [ - 2011 + 2015 ], "error": [ - 2011 + 2015 ], "map_name": [ - 2011 + 2015 ], "match_start_time": [ - 2011 + 2015 ], "players_aggregate": [ - 2017 + 2021 ], "share_code": [ - 2011 + 2015 ], "status": [ - 2011 + 2015 ], "updated_at": [ - 2011 + 2015 ], "valve_match_id": [ - 2011 + 2015 ], "__typename": [ - 70 + 74 ] }, "pending_match_imports_pk_columns_input": { "valve_match_id": [ - 2009 + 2013 ], "__typename": [ - 70 + 74 ] }, "pending_match_imports_select_column": {}, "pending_match_imports_set_input": { "created_at": [ - 3421 + 3466 ], "demo_url": [ - 70 + 74 ], "error": [ - 70 + 74 ], "map_name": [ - 70 + 74 ], "match_start_time": [ - 3421 + 3466 ], "share_code": [ - 70 + 74 ], "status": [ - 70 + 74 ], "updated_at": [ - 3421 + 3466 ], "valve_match_id": [ - 2009 + 2013 ], "__typename": [ - 70 + 74 ] }, "pending_match_imports_stddev_fields": { @@ -39482,7 +40434,7 @@ export default { 29 ], "__typename": [ - 70 + 74 ] }, "pending_match_imports_stddev_pop_fields": { @@ -39490,7 +40442,7 @@ export default { 29 ], "__typename": [ - 70 + 74 ] }, "pending_match_imports_stddev_samp_fields": { @@ -39498,73 +40450,73 @@ export default { 29 ], "__typename": [ - 70 + 74 ] }, "pending_match_imports_stream_cursor_input": { "initial_value": [ - 2074 + 2078 ], "ordering": [ - 224 + 228 ], "__typename": [ - 70 + 74 ] }, "pending_match_imports_stream_cursor_value_input": { "created_at": [ - 3421 + 3466 ], "demo_url": [ - 70 + 74 ], "error": [ - 70 + 74 ], "map_name": [ - 70 + 74 ], "match_start_time": [ - 3421 + 3466 ], "share_code": [ - 70 + 74 ], "status": [ - 70 + 74 ], "updated_at": [ - 3421 + 3466 ], "valve_match_id": [ - 2009 + 2013 ], "__typename": [ - 70 + 74 ] }, "pending_match_imports_sum_fields": { "valve_match_id": [ - 2009 + 2013 ], "__typename": [ - 70 + 74 ] }, "pending_match_imports_update_column": {}, "pending_match_imports_updates": { "_inc": [ - 2059 + 2063 ], "_set": [ - 2069 + 2073 ], "where": [ - 2057 + 2061 ], "__typename": [ - 70 + 74 ] }, "pending_match_imports_var_pop_fields": { @@ -39572,7 +40524,7 @@ export default { 29 ], "__typename": [ - 70 + 74 ] }, "pending_match_imports_var_samp_fields": { @@ -39580,7 +40532,7 @@ export default { 29 ], "__typename": [ - 70 + 74 ] }, "pending_match_imports_variance_fields": { @@ -39588,15 +40540,15 @@ export default { 29 ], "__typename": [ - 70 + 74 ] }, "player_aim_stats_demo": { "attacker": [ - 2878 + 2914 ], "attacker_steam_id": [ - 169 + 173 ], "counter_strafe_eligible_shots": [ 38 @@ -39608,7 +40560,7 @@ export default { 38 ], "crosshair_angle_sum_deg": [ - 2009 + 2013 ], "first_bullet_hits": [ 38 @@ -39626,16 +40578,16 @@ export default { 38 ], "match": [ - 1826 + 1830 ], "match_id": [ - 3818 + 3863 ], "match_map": [ - 1664 + 1668 ], "match_map_id": [ - 3818 + 3863 ], "non_awp_hits": [ 38 @@ -39656,35 +40608,35 @@ export default { 38 ], "time_to_damage_sum_s": [ - 2009 + 2013 ], "total_engagement_frames": [ 38 ], "__typename": [ - 70 + 74 ] }, "player_aim_stats_demo_aggregate": { "aggregate": [ - 2083 + 2087 ], "nodes": [ - 2081 + 2085 ], "__typename": [ - 70 + 74 ] }, "player_aim_stats_demo_aggregate_fields": { "avg": [ - 2084 + 2088 ], "count": [ 38, { "columns": [ - 2095, + 2099, "[player_aim_stats_demo_select_column!]" ], "distinct": [ @@ -39693,34 +40645,34 @@ export default { } ], "max": [ - 2089 + 2093 ], "min": [ - 2090 + 2094 ], "stddev": [ - 2097 + 2101 ], "stddev_pop": [ - 2098 + 2102 ], "stddev_samp": [ - 2099 + 2103 ], "sum": [ - 2102 + 2106 ], "var_pop": [ - 2105 + 2109 ], "var_samp": [ - 2106 + 2110 ], "variance": [ - 2107 + 2111 ], "__typename": [ - 70 + 74 ] }, "player_aim_stats_demo_avg_fields": { @@ -39779,24 +40731,24 @@ export default { 29 ], "__typename": [ - 70 + 74 ] }, "player_aim_stats_demo_bool_exp": { "_and": [ - 2085 + 2089 ], "_not": [ - 2085 + 2089 ], "_or": [ - 2085 + 2089 ], "attacker": [ - 2882 + 2918 ], "attacker_steam_id": [ - 171 + 175 ], "counter_strafe_eligible_shots": [ 39 @@ -39808,7 +40760,7 @@ export default { 39 ], "crosshair_angle_sum_deg": [ - 2010 + 2014 ], "first_bullet_hits": [ 39 @@ -39826,16 +40778,16 @@ export default { 39 ], "match": [ - 1835 + 1839 ], "match_id": [ - 3820 + 3865 ], "match_map": [ - 1673 + 1677 ], "match_map_id": [ - 3820 + 3865 ], "non_awp_hits": [ 39 @@ -39856,19 +40808,19 @@ export default { 39 ], "time_to_damage_sum_s": [ - 2010 + 2014 ], "total_engagement_frames": [ 39 ], "__typename": [ - 70 + 74 ] }, "player_aim_stats_demo_constraint": {}, "player_aim_stats_demo_inc_input": { "attacker_steam_id": [ - 169 + 173 ], "counter_strafe_eligible_shots": [ 38 @@ -39880,7 +40832,7 @@ export default { 38 ], "crosshair_angle_sum_deg": [ - 2009 + 2013 ], "first_bullet_hits": [ 38 @@ -39916,21 +40868,21 @@ export default { 38 ], "time_to_damage_sum_s": [ - 2009 + 2013 ], "total_engagement_frames": [ 38 ], "__typename": [ - 70 + 74 ] }, "player_aim_stats_demo_insert_input": { "attacker": [ - 2889 + 2925 ], "attacker_steam_id": [ - 169 + 173 ], "counter_strafe_eligible_shots": [ 38 @@ -39942,7 +40894,7 @@ export default { 38 ], "crosshair_angle_sum_deg": [ - 2009 + 2013 ], "first_bullet_hits": [ 38 @@ -39960,16 +40912,16 @@ export default { 38 ], "match": [ - 1844 + 1848 ], "match_id": [ - 3818 + 3863 ], "match_map": [ - 1682 + 1686 ], "match_map_id": [ - 3818 + 3863 ], "non_awp_hits": [ 38 @@ -39990,18 +40942,18 @@ export default { 38 ], "time_to_damage_sum_s": [ - 2009 + 2013 ], "total_engagement_frames": [ 38 ], "__typename": [ - 70 + 74 ] }, "player_aim_stats_demo_max_fields": { "attacker_steam_id": [ - 169 + 173 ], "counter_strafe_eligible_shots": [ 38 @@ -40013,7 +40965,7 @@ export default { 38 ], "crosshair_angle_sum_deg": [ - 2009 + 2013 ], "first_bullet_hits": [ 38 @@ -40031,10 +40983,10 @@ export default { 38 ], "match_id": [ - 3818 + 3863 ], "match_map_id": [ - 3818 + 3863 ], "non_awp_hits": [ 38 @@ -40055,18 +41007,18 @@ export default { 38 ], "time_to_damage_sum_s": [ - 2009 + 2013 ], "total_engagement_frames": [ 38 ], "__typename": [ - 70 + 74 ] }, "player_aim_stats_demo_min_fields": { "attacker_steam_id": [ - 169 + 173 ], "counter_strafe_eligible_shots": [ 38 @@ -40078,7 +41030,7 @@ export default { 38 ], "crosshair_angle_sum_deg": [ - 2009 + 2013 ], "first_bullet_hits": [ 38 @@ -40096,10 +41048,10 @@ export default { 38 ], "match_id": [ - 3818 + 3863 ], "match_map_id": [ - 3818 + 3863 ], "non_awp_hits": [ 38 @@ -40120,13 +41072,13 @@ export default { 38 ], "time_to_damage_sum_s": [ - 2009 + 2013 ], "total_engagement_frames": [ 38 ], "__typename": [ - 70 + 74 ] }, "player_aim_stats_demo_mutation_response": { @@ -40134,115 +41086,115 @@ export default { 38 ], "returning": [ - 2081 + 2085 ], "__typename": [ - 70 + 74 ] }, "player_aim_stats_demo_on_conflict": { "constraint": [ - 2086 + 2090 ], "update_columns": [ - 2103 + 2107 ], "where": [ - 2085 + 2089 ], "__typename": [ - 70 + 74 ] }, "player_aim_stats_demo_order_by": { "attacker": [ - 2891 + 2927 ], "attacker_steam_id": [ - 2011 + 2015 ], "counter_strafe_eligible_shots": [ - 2011 + 2015 ], "counter_strafed_shots": [ - 2011 + 2015 ], "crosshair_angle_count": [ - 2011 + 2015 ], "crosshair_angle_sum_deg": [ - 2011 + 2015 ], "first_bullet_hits": [ - 2011 + 2015 ], "first_bullet_shots": [ - 2011 + 2015 ], "headshot_hits": [ - 2011 + 2015 ], "hits": [ - 2011 + 2015 ], "hits_at_spotted": [ - 2011 + 2015 ], "match": [ - 1846 + 1850 ], "match_id": [ - 2011 + 2015 ], "match_map": [ - 1684 + 1688 ], "match_map_id": [ - 2011 + 2015 ], "non_awp_hits": [ - 2011 + 2015 ], "on_target_frames": [ - 2011 + 2015 ], "shots_at_spotted": [ - 2011 + 2015 ], "spray_hits": [ - 2011 + 2015 ], "spray_shots": [ - 2011 + 2015 ], "time_to_damage_count": [ - 2011 + 2015 ], "time_to_damage_sum_s": [ - 2011 + 2015 ], "total_engagement_frames": [ - 2011 + 2015 ], "__typename": [ - 70 + 74 ] }, "player_aim_stats_demo_pk_columns_input": { "attacker_steam_id": [ - 169 + 173 ], "match_map_id": [ - 3818 + 3863 ], "__typename": [ - 70 + 74 ] }, "player_aim_stats_demo_select_column": {}, "player_aim_stats_demo_set_input": { "attacker_steam_id": [ - 169 + 173 ], "counter_strafe_eligible_shots": [ 38 @@ -40254,7 +41206,7 @@ export default { 38 ], "crosshair_angle_sum_deg": [ - 2009 + 2013 ], "first_bullet_hits": [ 38 @@ -40272,10 +41224,10 @@ export default { 38 ], "match_id": [ - 3818 + 3863 ], "match_map_id": [ - 3818 + 3863 ], "non_awp_hits": [ 38 @@ -40296,13 +41248,13 @@ export default { 38 ], "time_to_damage_sum_s": [ - 2009 + 2013 ], "total_engagement_frames": [ 38 ], "__typename": [ - 70 + 74 ] }, "player_aim_stats_demo_stddev_fields": { @@ -40361,7 +41313,7 @@ export default { 29 ], "__typename": [ - 70 + 74 ] }, "player_aim_stats_demo_stddev_pop_fields": { @@ -40420,7 +41372,7 @@ export default { 29 ], "__typename": [ - 70 + 74 ] }, "player_aim_stats_demo_stddev_samp_fields": { @@ -40479,23 +41431,23 @@ export default { 29 ], "__typename": [ - 70 + 74 ] }, "player_aim_stats_demo_stream_cursor_input": { "initial_value": [ - 2101 + 2105 ], "ordering": [ - 224 + 228 ], "__typename": [ - 70 + 74 ] }, "player_aim_stats_demo_stream_cursor_value_input": { "attacker_steam_id": [ - 169 + 173 ], "counter_strafe_eligible_shots": [ 38 @@ -40507,7 +41459,7 @@ export default { 38 ], "crosshair_angle_sum_deg": [ - 2009 + 2013 ], "first_bullet_hits": [ 38 @@ -40525,10 +41477,10 @@ export default { 38 ], "match_id": [ - 3818 + 3863 ], "match_map_id": [ - 3818 + 3863 ], "non_awp_hits": [ 38 @@ -40549,18 +41501,18 @@ export default { 38 ], "time_to_damage_sum_s": [ - 2009 + 2013 ], "total_engagement_frames": [ 38 ], "__typename": [ - 70 + 74 ] }, "player_aim_stats_demo_sum_fields": { "attacker_steam_id": [ - 169 + 173 ], "counter_strafe_eligible_shots": [ 38 @@ -40572,7 +41524,7 @@ export default { 38 ], "crosshair_angle_sum_deg": [ - 2009 + 2013 ], "first_bullet_hits": [ 38 @@ -40608,28 +41560,28 @@ export default { 38 ], "time_to_damage_sum_s": [ - 2009 + 2013 ], "total_engagement_frames": [ 38 ], "__typename": [ - 70 + 74 ] }, "player_aim_stats_demo_update_column": {}, "player_aim_stats_demo_updates": { "_inc": [ - 2087 + 2091 ], "_set": [ - 2096 + 2100 ], "where": [ - 2085 + 2089 ], "__typename": [ - 70 + 74 ] }, "player_aim_stats_demo_var_pop_fields": { @@ -40688,7 +41640,7 @@ export default { 29 ], "__typename": [ - 70 + 74 ] }, "player_aim_stats_demo_var_samp_fields": { @@ -40747,7 +41699,7 @@ export default { 29 ], "__typename": [ - 70 + 74 ] }, "player_aim_stats_demo_variance_fields": { @@ -40806,7 +41758,7 @@ export default { 29 ], "__typename": [ - 70 + 74 ] }, "player_aim_weapon_stats": { @@ -40823,19 +41775,19 @@ export default { 38 ], "match": [ - 1826 + 1830 ], "match_id": [ - 3818 + 3863 ], "match_map": [ - 1664 + 1668 ], "match_map_id": [ - 3818 + 3863 ], "player": [ - 2878 + 2914 ], "shots": [ 38 @@ -40844,60 +41796,60 @@ export default { 38 ], "steam_id": [ - 169 + 173 ], "weapon_class": [ - 70 + 74 ], "__typename": [ - 70 + 74 ] }, "player_aim_weapon_stats_aggregate": { "aggregate": [ - 2112 + 2116 ], "nodes": [ - 2108 + 2112 ], "__typename": [ - 70 + 74 ] }, "player_aim_weapon_stats_aggregate_bool_exp": { "count": [ - 2111 + 2115 ], "__typename": [ - 70 + 74 ] }, "player_aim_weapon_stats_aggregate_bool_exp_count": { "arguments": [ - 2129 + 2133 ], "distinct": [ 3 ], "filter": [ - 2117 + 2121 ], "predicate": [ 39 ], "__typename": [ - 70 + 74 ] }, "player_aim_weapon_stats_aggregate_fields": { "avg": [ - 2115 + 2119 ], "count": [ 38, { "columns": [ - 2129, + 2133, "[player_aim_weapon_stats_select_column!]" ], "distinct": [ @@ -40906,83 +41858,83 @@ export default { } ], "max": [ - 2121 + 2125 ], "min": [ - 2123 + 2127 ], "stddev": [ - 2131 + 2135 ], "stddev_pop": [ - 2133 + 2137 ], "stddev_samp": [ - 2135 + 2139 ], "sum": [ - 2139 + 2143 ], "var_pop": [ - 2143 + 2147 ], "var_samp": [ - 2145 + 2149 ], "variance": [ - 2147 + 2151 ], "__typename": [ - 70 + 74 ] }, "player_aim_weapon_stats_aggregate_order_by": { "avg": [ - 2116 + 2120 ], "count": [ - 2011 + 2015 ], "max": [ - 2122 + 2126 ], "min": [ - 2124 + 2128 ], "stddev": [ - 2132 + 2136 ], "stddev_pop": [ - 2134 + 2138 ], "stddev_samp": [ - 2136 + 2140 ], "sum": [ - 2140 + 2144 ], "var_pop": [ - 2144 + 2148 ], "var_samp": [ - 2146 + 2150 ], "variance": [ - 2148 + 2152 ], "__typename": [ - 70 + 74 ] }, "player_aim_weapon_stats_arr_rel_insert_input": { "data": [ - 2120 + 2124 ], "on_conflict": [ - 2126 + 2130 ], "__typename": [ - 70 + 74 ] }, "player_aim_weapon_stats_avg_fields": { @@ -41008,44 +41960,44 @@ export default { 29 ], "__typename": [ - 70 + 74 ] }, "player_aim_weapon_stats_avg_order_by": { "first_bullet_hits": [ - 2011 + 2015 ], "first_bullet_shots": [ - 2011 + 2015 ], "hits": [ - 2011 + 2015 ], "hits_spotted": [ - 2011 + 2015 ], "shots": [ - 2011 + 2015 ], "shots_spotted": [ - 2011 + 2015 ], "steam_id": [ - 2011 + 2015 ], "__typename": [ - 70 + 74 ] }, "player_aim_weapon_stats_bool_exp": { "_and": [ - 2117 + 2121 ], "_not": [ - 2117 + 2121 ], "_or": [ - 2117 + 2121 ], "first_bullet_hits": [ 39 @@ -41060,19 +42012,19 @@ export default { 39 ], "match": [ - 1835 + 1839 ], "match_id": [ - 3820 + 3865 ], "match_map": [ - 1673 + 1677 ], "match_map_id": [ - 3820 + 3865 ], "player": [ - 2882 + 2918 ], "shots": [ 39 @@ -41081,13 +42033,13 @@ export default { 39 ], "steam_id": [ - 171 + 175 ], "weapon_class": [ - 72 + 76 ], "__typename": [ - 70 + 74 ] }, "player_aim_weapon_stats_constraint": {}, @@ -41111,10 +42063,10 @@ export default { 38 ], "steam_id": [ - 169 + 173 ], "__typename": [ - 70 + 74 ] }, "player_aim_weapon_stats_insert_input": { @@ -41131,19 +42083,19 @@ export default { 38 ], "match": [ - 1844 + 1848 ], "match_id": [ - 3818 + 3863 ], "match_map": [ - 1682 + 1686 ], "match_map_id": [ - 3818 + 3863 ], "player": [ - 2889 + 2925 ], "shots": [ 38 @@ -41152,13 +42104,13 @@ export default { 38 ], "steam_id": [ - 169 + 173 ], "weapon_class": [ - 70 + 74 ], "__typename": [ - 70 + 74 ] }, "player_aim_weapon_stats_max_fields": { @@ -41175,10 +42127,10 @@ export default { 38 ], "match_id": [ - 3818 + 3863 ], "match_map_id": [ - 3818 + 3863 ], "shots": [ 38 @@ -41187,48 +42139,48 @@ export default { 38 ], "steam_id": [ - 169 + 173 ], "weapon_class": [ - 70 + 74 ], "__typename": [ - 70 + 74 ] }, "player_aim_weapon_stats_max_order_by": { "first_bullet_hits": [ - 2011 + 2015 ], "first_bullet_shots": [ - 2011 + 2015 ], "hits": [ - 2011 + 2015 ], "hits_spotted": [ - 2011 + 2015 ], "match_id": [ - 2011 + 2015 ], "match_map_id": [ - 2011 + 2015 ], "shots": [ - 2011 + 2015 ], "shots_spotted": [ - 2011 + 2015 ], "steam_id": [ - 2011 + 2015 ], "weapon_class": [ - 2011 + 2015 ], "__typename": [ - 70 + 74 ] }, "player_aim_weapon_stats_min_fields": { @@ -41245,10 +42197,10 @@ export default { 38 ], "match_id": [ - 3818 + 3863 ], "match_map_id": [ - 3818 + 3863 ], "shots": [ 38 @@ -41257,48 +42209,48 @@ export default { 38 ], "steam_id": [ - 169 + 173 ], "weapon_class": [ - 70 + 74 ], "__typename": [ - 70 + 74 ] }, "player_aim_weapon_stats_min_order_by": { "first_bullet_hits": [ - 2011 + 2015 ], "first_bullet_shots": [ - 2011 + 2015 ], "hits": [ - 2011 + 2015 ], "hits_spotted": [ - 2011 + 2015 ], "match_id": [ - 2011 + 2015 ], "match_map_id": [ - 2011 + 2015 ], "shots": [ - 2011 + 2015 ], "shots_spotted": [ - 2011 + 2015 ], "steam_id": [ - 2011 + 2015 ], "weapon_class": [ - 2011 + 2015 ], "__typename": [ - 70 + 74 ] }, "player_aim_weapon_stats_mutation_response": { @@ -41306,82 +42258,82 @@ export default { 38 ], "returning": [ - 2108 + 2112 ], "__typename": [ - 70 + 74 ] }, "player_aim_weapon_stats_on_conflict": { "constraint": [ - 2118 + 2122 ], "update_columns": [ - 2141 + 2145 ], "where": [ - 2117 + 2121 ], "__typename": [ - 70 + 74 ] }, "player_aim_weapon_stats_order_by": { "first_bullet_hits": [ - 2011 + 2015 ], "first_bullet_shots": [ - 2011 + 2015 ], "hits": [ - 2011 + 2015 ], "hits_spotted": [ - 2011 + 2015 ], "match": [ - 1846 + 1850 ], "match_id": [ - 2011 + 2015 ], "match_map": [ - 1684 + 1688 ], "match_map_id": [ - 2011 + 2015 ], "player": [ - 2891 + 2927 ], "shots": [ - 2011 + 2015 ], "shots_spotted": [ - 2011 + 2015 ], "steam_id": [ - 2011 + 2015 ], "weapon_class": [ - 2011 + 2015 ], "__typename": [ - 70 + 74 ] }, "player_aim_weapon_stats_pk_columns_input": { "match_map_id": [ - 3818 + 3863 ], "steam_id": [ - 169 + 173 ], "weapon_class": [ - 70 + 74 ], "__typename": [ - 70 + 74 ] }, "player_aim_weapon_stats_select_column": {}, @@ -41399,10 +42351,10 @@ export default { 38 ], "match_id": [ - 3818 + 3863 ], "match_map_id": [ - 3818 + 3863 ], "shots": [ 38 @@ -41411,13 +42363,13 @@ export default { 38 ], "steam_id": [ - 169 + 173 ], "weapon_class": [ - 70 + 74 ], "__typename": [ - 70 + 74 ] }, "player_aim_weapon_stats_stddev_fields": { @@ -41443,33 +42395,33 @@ export default { 29 ], "__typename": [ - 70 + 74 ] }, "player_aim_weapon_stats_stddev_order_by": { "first_bullet_hits": [ - 2011 + 2015 ], "first_bullet_shots": [ - 2011 + 2015 ], "hits": [ - 2011 + 2015 ], "hits_spotted": [ - 2011 + 2015 ], "shots": [ - 2011 + 2015 ], "shots_spotted": [ - 2011 + 2015 ], "steam_id": [ - 2011 + 2015 ], "__typename": [ - 70 + 74 ] }, "player_aim_weapon_stats_stddev_pop_fields": { @@ -41495,33 +42447,33 @@ export default { 29 ], "__typename": [ - 70 + 74 ] }, "player_aim_weapon_stats_stddev_pop_order_by": { "first_bullet_hits": [ - 2011 + 2015 ], "first_bullet_shots": [ - 2011 + 2015 ], "hits": [ - 2011 + 2015 ], "hits_spotted": [ - 2011 + 2015 ], "shots": [ - 2011 + 2015 ], "shots_spotted": [ - 2011 + 2015 ], "steam_id": [ - 2011 + 2015 ], "__typename": [ - 70 + 74 ] }, "player_aim_weapon_stats_stddev_samp_fields": { @@ -41547,44 +42499,44 @@ export default { 29 ], "__typename": [ - 70 + 74 ] }, "player_aim_weapon_stats_stddev_samp_order_by": { "first_bullet_hits": [ - 2011 + 2015 ], "first_bullet_shots": [ - 2011 + 2015 ], "hits": [ - 2011 + 2015 ], "hits_spotted": [ - 2011 + 2015 ], "shots": [ - 2011 + 2015 ], "shots_spotted": [ - 2011 + 2015 ], "steam_id": [ - 2011 + 2015 ], "__typename": [ - 70 + 74 ] }, "player_aim_weapon_stats_stream_cursor_input": { "initial_value": [ - 2138 + 2142 ], "ordering": [ - 224 + 228 ], "__typename": [ - 70 + 74 ] }, "player_aim_weapon_stats_stream_cursor_value_input": { @@ -41601,10 +42553,10 @@ export default { 38 ], "match_id": [ - 3818 + 3863 ], "match_map_id": [ - 3818 + 3863 ], "shots": [ 38 @@ -41613,13 +42565,13 @@ export default { 38 ], "steam_id": [ - 169 + 173 ], "weapon_class": [ - 70 + 74 ], "__typename": [ - 70 + 74 ] }, "player_aim_weapon_stats_sum_fields": { @@ -41642,51 +42594,51 @@ export default { 38 ], "steam_id": [ - 169 + 173 ], "__typename": [ - 70 + 74 ] }, "player_aim_weapon_stats_sum_order_by": { "first_bullet_hits": [ - 2011 + 2015 ], "first_bullet_shots": [ - 2011 + 2015 ], "hits": [ - 2011 + 2015 ], "hits_spotted": [ - 2011 + 2015 ], "shots": [ - 2011 + 2015 ], "shots_spotted": [ - 2011 + 2015 ], "steam_id": [ - 2011 + 2015 ], "__typename": [ - 70 + 74 ] }, "player_aim_weapon_stats_update_column": {}, "player_aim_weapon_stats_updates": { "_inc": [ - 2119 + 2123 ], "_set": [ - 2130 + 2134 ], "where": [ - 2117 + 2121 ], "__typename": [ - 70 + 74 ] }, "player_aim_weapon_stats_var_pop_fields": { @@ -41712,33 +42664,33 @@ export default { 29 ], "__typename": [ - 70 + 74 ] }, "player_aim_weapon_stats_var_pop_order_by": { "first_bullet_hits": [ - 2011 + 2015 ], "first_bullet_shots": [ - 2011 + 2015 ], "hits": [ - 2011 + 2015 ], "hits_spotted": [ - 2011 + 2015 ], "shots": [ - 2011 + 2015 ], "shots_spotted": [ - 2011 + 2015 ], "steam_id": [ - 2011 + 2015 ], "__typename": [ - 70 + 74 ] }, "player_aim_weapon_stats_var_samp_fields": { @@ -41764,33 +42716,33 @@ export default { 29 ], "__typename": [ - 70 + 74 ] }, "player_aim_weapon_stats_var_samp_order_by": { "first_bullet_hits": [ - 2011 + 2015 ], "first_bullet_shots": [ - 2011 + 2015 ], "hits": [ - 2011 + 2015 ], "hits_spotted": [ - 2011 + 2015 ], "shots": [ - 2011 + 2015 ], "shots_spotted": [ - 2011 + 2015 ], "steam_id": [ - 2011 + 2015 ], "__typename": [ - 70 + 74 ] }, "player_aim_weapon_stats_variance_fields": { @@ -41816,53 +42768,53 @@ export default { 29 ], "__typename": [ - 70 + 74 ] }, "player_aim_weapon_stats_variance_order_by": { "first_bullet_hits": [ - 2011 + 2015 ], "first_bullet_shots": [ - 2011 + 2015 ], "hits": [ - 2011 + 2015 ], "hits_spotted": [ - 2011 + 2015 ], "shots": [ - 2011 + 2015 ], "shots_spotted": [ - 2011 + 2015 ], "steam_id": [ - 2011 + 2015 ], "__typename": [ - 70 + 74 ] }, "player_assists": { "attacked_player": [ - 2878 + 2914 ], "attacked_steam_id": [ - 169 + 173 ], "attacked_team": [ - 70 + 74 ], "attacker_steam_id": [ - 169 + 173 ], "attacker_team": [ - 70 + 74 ], "deleted_at": [ - 3421 + 3466 ], "flash": [ 3 @@ -41871,115 +42823,115 @@ export default { 3 ], "match": [ - 1826 + 1830 ], "match_id": [ - 3818 + 3863 ], "match_map": [ - 1664 + 1668 ], "match_map_id": [ - 3818 + 3863 ], "player": [ - 2878 + 2914 ], "round": [ 38 ], "time": [ - 3421 + 3466 ], "__typename": [ - 70 + 74 ] }, "player_assists_aggregate": { "aggregate": [ - 2155 + 2159 ], "nodes": [ - 2149 + 2153 ], "__typename": [ - 70 + 74 ] }, "player_assists_aggregate_bool_exp": { "bool_and": [ - 2152 + 2156 ], "bool_or": [ - 2153 + 2157 ], "count": [ - 2154 + 2158 ], "__typename": [ - 70 + 74 ] }, "player_assists_aggregate_bool_exp_bool_and": { "arguments": [ - 2173 + 2177 ], "distinct": [ 3 ], "filter": [ - 2160 + 2164 ], "predicate": [ 4 ], "__typename": [ - 70 + 74 ] }, "player_assists_aggregate_bool_exp_bool_or": { "arguments": [ - 2174 + 2178 ], "distinct": [ 3 ], "filter": [ - 2160 + 2164 ], "predicate": [ 4 ], "__typename": [ - 70 + 74 ] }, "player_assists_aggregate_bool_exp_count": { "arguments": [ - 2172 + 2176 ], "distinct": [ 3 ], "filter": [ - 2160 + 2164 ], "predicate": [ 39 ], "__typename": [ - 70 + 74 ] }, "player_assists_aggregate_fields": { "avg": [ - 2158 + 2162 ], "count": [ 38, { "columns": [ - 2172, + 2176, "[player_assists_select_column!]" ], "distinct": [ @@ -41988,83 +42940,83 @@ export default { } ], "max": [ - 2164 + 2168 ], "min": [ - 2166 + 2170 ], "stddev": [ - 2176 + 2180 ], "stddev_pop": [ - 2178 + 2182 ], "stddev_samp": [ - 2180 + 2184 ], "sum": [ - 2184 + 2188 ], "var_pop": [ - 2188 + 2192 ], "var_samp": [ - 2190 + 2194 ], "variance": [ - 2192 + 2196 ], "__typename": [ - 70 + 74 ] }, "player_assists_aggregate_order_by": { "avg": [ - 2159 + 2163 ], "count": [ - 2011 + 2015 ], "max": [ - 2165 + 2169 ], "min": [ - 2167 + 2171 ], "stddev": [ - 2177 + 2181 ], "stddev_pop": [ - 2179 + 2183 ], "stddev_samp": [ - 2181 + 2185 ], "sum": [ - 2185 + 2189 ], "var_pop": [ - 2189 + 2193 ], "var_samp": [ - 2191 + 2195 ], "variance": [ - 2193 + 2197 ], "__typename": [ - 70 + 74 ] }, "player_assists_arr_rel_insert_input": { "data": [ - 2163 + 2167 ], "on_conflict": [ - 2169 + 2173 ], "__typename": [ - 70 + 74 ] }, "player_assists_avg_fields": { @@ -42078,50 +43030,50 @@ export default { 29 ], "__typename": [ - 70 + 74 ] }, "player_assists_avg_order_by": { "attacked_steam_id": [ - 2011 + 2015 ], "attacker_steam_id": [ - 2011 + 2015 ], "round": [ - 2011 + 2015 ], "__typename": [ - 70 + 74 ] }, "player_assists_bool_exp": { "_and": [ - 2160 + 2164 ], "_not": [ - 2160 + 2164 ], "_or": [ - 2160 + 2164 ], "attacked_player": [ - 2882 + 2918 ], "attacked_steam_id": [ - 171 + 175 ], "attacked_team": [ - 72 + 76 ], "attacker_steam_id": [ - 171 + 175 ], "attacker_team": [ - 72 + 76 ], "deleted_at": [ - 3422 + 3467 ], "flash": [ 4 @@ -42130,218 +43082,218 @@ export default { 4 ], "match": [ - 1835 + 1839 ], "match_id": [ - 3820 + 3865 ], "match_map": [ - 1673 + 1677 ], "match_map_id": [ - 3820 + 3865 ], "player": [ - 2882 + 2918 ], "round": [ 39 ], "time": [ - 3422 + 3467 ], "__typename": [ - 70 + 74 ] }, "player_assists_constraint": {}, "player_assists_inc_input": { "attacked_steam_id": [ - 169 + 173 ], "attacker_steam_id": [ - 169 + 173 ], "round": [ 38 ], "__typename": [ - 70 + 74 ] }, "player_assists_insert_input": { "attacked_player": [ - 2889 + 2925 ], "attacked_steam_id": [ - 169 + 173 ], "attacked_team": [ - 70 + 74 ], "attacker_steam_id": [ - 169 + 173 ], "attacker_team": [ - 70 + 74 ], "deleted_at": [ - 3421 + 3466 ], "flash": [ 3 ], "match": [ - 1844 + 1848 ], "match_id": [ - 3818 + 3863 ], "match_map": [ - 1682 + 1686 ], "match_map_id": [ - 3818 + 3863 ], "player": [ - 2889 + 2925 ], "round": [ 38 ], "time": [ - 3421 + 3466 ], "__typename": [ - 70 + 74 ] }, "player_assists_max_fields": { "attacked_steam_id": [ - 169 + 173 ], "attacked_team": [ - 70 + 74 ], "attacker_steam_id": [ - 169 + 173 ], "attacker_team": [ - 70 + 74 ], "deleted_at": [ - 3421 + 3466 ], "match_id": [ - 3818 + 3863 ], "match_map_id": [ - 3818 + 3863 ], "round": [ 38 ], "time": [ - 3421 + 3466 ], "__typename": [ - 70 + 74 ] }, "player_assists_max_order_by": { "attacked_steam_id": [ - 2011 + 2015 ], "attacked_team": [ - 2011 + 2015 ], "attacker_steam_id": [ - 2011 + 2015 ], "attacker_team": [ - 2011 + 2015 ], "deleted_at": [ - 2011 + 2015 ], "match_id": [ - 2011 + 2015 ], "match_map_id": [ - 2011 + 2015 ], "round": [ - 2011 + 2015 ], "time": [ - 2011 + 2015 ], "__typename": [ - 70 + 74 ] }, "player_assists_min_fields": { "attacked_steam_id": [ - 169 + 173 ], "attacked_team": [ - 70 + 74 ], "attacker_steam_id": [ - 169 + 173 ], "attacker_team": [ - 70 + 74 ], "deleted_at": [ - 3421 + 3466 ], "match_id": [ - 3818 + 3863 ], "match_map_id": [ - 3818 + 3863 ], "round": [ 38 ], "time": [ - 3421 + 3466 ], "__typename": [ - 70 + 74 ] }, "player_assists_min_order_by": { "attacked_steam_id": [ - 2011 + 2015 ], "attacked_team": [ - 2011 + 2015 ], "attacker_steam_id": [ - 2011 + 2015 ], "attacker_team": [ - 2011 + 2015 ], "deleted_at": [ - 2011 + 2015 ], "match_id": [ - 2011 + 2015 ], "match_map_id": [ - 2011 + 2015 ], "round": [ - 2011 + 2015 ], "time": [ - 2011 + 2015 ], "__typename": [ - 70 + 74 ] }, "player_assists_mutation_response": { @@ -42349,91 +43301,91 @@ export default { 38 ], "returning": [ - 2149 + 2153 ], "__typename": [ - 70 + 74 ] }, "player_assists_on_conflict": { "constraint": [ - 2161 + 2165 ], "update_columns": [ - 2186 + 2190 ], "where": [ - 2160 + 2164 ], "__typename": [ - 70 + 74 ] }, "player_assists_order_by": { "attacked_player": [ - 2891 + 2927 ], "attacked_steam_id": [ - 2011 + 2015 ], "attacked_team": [ - 2011 + 2015 ], "attacker_steam_id": [ - 2011 + 2015 ], "attacker_team": [ - 2011 + 2015 ], "deleted_at": [ - 2011 + 2015 ], "flash": [ - 2011 + 2015 ], "is_team_assist": [ - 2011 + 2015 ], "match": [ - 1846 + 1850 ], "match_id": [ - 2011 + 2015 ], "match_map": [ - 1684 + 1688 ], "match_map_id": [ - 2011 + 2015 ], "player": [ - 2891 + 2927 ], "round": [ - 2011 + 2015 ], "time": [ - 2011 + 2015 ], "__typename": [ - 70 + 74 ] }, "player_assists_pk_columns_input": { "attacked_steam_id": [ - 169 + 173 ], "attacker_steam_id": [ - 169 + 173 ], "match_map_id": [ - 3818 + 3863 ], "time": [ - 3421 + 3466 ], "__typename": [ - 70 + 74 ] }, "player_assists_select_column": {}, @@ -42441,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": [ - 169 + 173 ], "attacked_team": [ - 70 + 74 ], "attacker_steam_id": [ - 169 + 173 ], "attacker_team": [ - 70 + 74 ], "deleted_at": [ - 3421 + 3466 ], "flash": [ 3 ], "match_id": [ - 3818 + 3863 ], "match_map_id": [ - 3818 + 3863 ], "round": [ 38 ], "time": [ - 3421 + 3466 ], "__typename": [ - 70 + 74 ] }, "player_assists_stddev_fields": { @@ -42485,21 +43437,21 @@ export default { 29 ], "__typename": [ - 70 + 74 ] }, "player_assists_stddev_order_by": { "attacked_steam_id": [ - 2011 + 2015 ], "attacker_steam_id": [ - 2011 + 2015 ], "round": [ - 2011 + 2015 ], "__typename": [ - 70 + 74 ] }, "player_assists_stddev_pop_fields": { @@ -42513,21 +43465,21 @@ export default { 29 ], "__typename": [ - 70 + 74 ] }, "player_assists_stddev_pop_order_by": { "attacked_steam_id": [ - 2011 + 2015 ], "attacker_steam_id": [ - 2011 + 2015 ], "round": [ - 2011 + 2015 ], "__typename": [ - 70 + 74 ] }, "player_assists_stddev_samp_fields": { @@ -42541,110 +43493,110 @@ export default { 29 ], "__typename": [ - 70 + 74 ] }, "player_assists_stddev_samp_order_by": { "attacked_steam_id": [ - 2011 + 2015 ], "attacker_steam_id": [ - 2011 + 2015 ], "round": [ - 2011 + 2015 ], "__typename": [ - 70 + 74 ] }, "player_assists_stream_cursor_input": { "initial_value": [ - 2183 + 2187 ], "ordering": [ - 224 + 228 ], "__typename": [ - 70 + 74 ] }, "player_assists_stream_cursor_value_input": { "attacked_steam_id": [ - 169 + 173 ], "attacked_team": [ - 70 + 74 ], "attacker_steam_id": [ - 169 + 173 ], "attacker_team": [ - 70 + 74 ], "deleted_at": [ - 3421 + 3466 ], "flash": [ 3 ], "match_id": [ - 3818 + 3863 ], "match_map_id": [ - 3818 + 3863 ], "round": [ 38 ], "time": [ - 3421 + 3466 ], "__typename": [ - 70 + 74 ] }, "player_assists_sum_fields": { "attacked_steam_id": [ - 169 + 173 ], "attacker_steam_id": [ - 169 + 173 ], "round": [ 38 ], "__typename": [ - 70 + 74 ] }, "player_assists_sum_order_by": { "attacked_steam_id": [ - 2011 + 2015 ], "attacker_steam_id": [ - 2011 + 2015 ], "round": [ - 2011 + 2015 ], "__typename": [ - 70 + 74 ] }, "player_assists_update_column": {}, "player_assists_updates": { "_inc": [ - 2162 + 2166 ], "_set": [ - 2175 + 2179 ], "where": [ - 2160 + 2164 ], "__typename": [ - 70 + 74 ] }, "player_assists_var_pop_fields": { @@ -42658,21 +43610,21 @@ export default { 29 ], "__typename": [ - 70 + 74 ] }, "player_assists_var_pop_order_by": { "attacked_steam_id": [ - 2011 + 2015 ], "attacker_steam_id": [ - 2011 + 2015 ], "round": [ - 2011 + 2015 ], "__typename": [ - 70 + 74 ] }, "player_assists_var_samp_fields": { @@ -42686,21 +43638,21 @@ export default { 29 ], "__typename": [ - 70 + 74 ] }, "player_assists_var_samp_order_by": { "attacked_steam_id": [ - 2011 + 2015 ], "attacker_steam_id": [ - 2011 + 2015 ], "round": [ - 2011 + 2015 ], "__typename": [ - 70 + 74 ] }, "player_assists_variance_fields": { @@ -42714,47 +43666,47 @@ export default { 29 ], "__typename": [ - 70 + 74 ] }, "player_assists_variance_order_by": { "attacked_steam_id": [ - 2011 + 2015 ], "attacker_steam_id": [ - 2011 + 2015 ], "round": [ - 2011 + 2015 ], "__typename": [ - 70 + 74 ] }, "player_career_stats_v": { "accuracy": [ - 2009 + 2013 ], "accuracy_spotted": [ - 2009 + 2013 ], "counter_strafe_pct": [ - 2009 + 2013 ], "crosshair_deg": [ - 2009 + 2013 ], "enemy_blind_pr": [ - 2009 + 2013 ], "flash_assists_pr": [ - 2009 + 2013 ], "hs_pct": [ - 2009 + 2013 ], "kast_pct": [ - 2009 + 2013 ], "maps": [ 38 @@ -42766,44 +43718,44 @@ export default { 38 ], "steam_id": [ - 169 + 173 ], "survival_pct": [ - 2009 + 2013 ], "time_to_damage_s": [ - 2009 + 2013 ], "traded_death_pct": [ - 2009 + 2013 ], "util_efficiency": [ - 2009 + 2013 ], "__typename": [ - 70 + 74 ] }, "player_career_stats_v_aggregate": { "aggregate": [ - 2196 + 2200 ], "nodes": [ - 2194 + 2198 ], "__typename": [ - 70 + 74 ] }, "player_career_stats_v_aggregate_fields": { "avg": [ - 2197 + 2201 ], "count": [ 38, { "columns": [ - 2202, + 2206, "[player_career_stats_v_select_column!]" ], "distinct": [ @@ -42812,34 +43764,34 @@ export default { } ], "max": [ - 2199 + 2203 ], "min": [ - 2200 + 2204 ], "stddev": [ - 2203 + 2207 ], "stddev_pop": [ - 2204 + 2208 ], "stddev_samp": [ - 2205 + 2209 ], "sum": [ - 2208 + 2212 ], "var_pop": [ - 2209 + 2213 ], "var_samp": [ - 2210 + 2214 ], "variance": [ - 2211 + 2215 ], "__typename": [ - 70 + 74 ] }, "player_career_stats_v_avg_fields": { @@ -42892,42 +43844,42 @@ export default { 29 ], "__typename": [ - 70 + 74 ] }, "player_career_stats_v_bool_exp": { "_and": [ - 2198 + 2202 ], "_not": [ - 2198 + 2202 ], "_or": [ - 2198 + 2202 ], "accuracy": [ - 2010 + 2014 ], "accuracy_spotted": [ - 2010 + 2014 ], "counter_strafe_pct": [ - 2010 + 2014 ], "crosshair_deg": [ - 2010 + 2014 ], "enemy_blind_pr": [ - 2010 + 2014 ], "flash_assists_pr": [ - 2010 + 2014 ], "hs_pct": [ - 2010 + 2014 ], "kast_pct": [ - 2010 + 2014 ], "maps": [ 39 @@ -42939,48 +43891,48 @@ export default { 39 ], "steam_id": [ - 171 + 175 ], "survival_pct": [ - 2010 + 2014 ], "time_to_damage_s": [ - 2010 + 2014 ], "traded_death_pct": [ - 2010 + 2014 ], "util_efficiency": [ - 2010 + 2014 ], "__typename": [ - 70 + 74 ] }, "player_career_stats_v_max_fields": { "accuracy": [ - 2009 + 2013 ], "accuracy_spotted": [ - 2009 + 2013 ], "counter_strafe_pct": [ - 2009 + 2013 ], "crosshair_deg": [ - 2009 + 2013 ], "enemy_blind_pr": [ - 2009 + 2013 ], "flash_assists_pr": [ - 2009 + 2013 ], "hs_pct": [ - 2009 + 2013 ], "kast_pct": [ - 2009 + 2013 ], "maps": [ 38 @@ -42992,48 +43944,48 @@ export default { 38 ], "steam_id": [ - 169 + 173 ], "survival_pct": [ - 2009 + 2013 ], "time_to_damage_s": [ - 2009 + 2013 ], "traded_death_pct": [ - 2009 + 2013 ], "util_efficiency": [ - 2009 + 2013 ], "__typename": [ - 70 + 74 ] }, "player_career_stats_v_min_fields": { "accuracy": [ - 2009 + 2013 ], "accuracy_spotted": [ - 2009 + 2013 ], "counter_strafe_pct": [ - 2009 + 2013 ], "crosshair_deg": [ - 2009 + 2013 ], "enemy_blind_pr": [ - 2009 + 2013 ], "flash_assists_pr": [ - 2009 + 2013 ], "hs_pct": [ - 2009 + 2013 ], "kast_pct": [ - 2009 + 2013 ], "maps": [ 38 @@ -43045,75 +43997,75 @@ export default { 38 ], "steam_id": [ - 169 + 173 ], "survival_pct": [ - 2009 + 2013 ], "time_to_damage_s": [ - 2009 + 2013 ], "traded_death_pct": [ - 2009 + 2013 ], "util_efficiency": [ - 2009 + 2013 ], "__typename": [ - 70 + 74 ] }, "player_career_stats_v_order_by": { "accuracy": [ - 2011 + 2015 ], "accuracy_spotted": [ - 2011 + 2015 ], "counter_strafe_pct": [ - 2011 + 2015 ], "crosshair_deg": [ - 2011 + 2015 ], "enemy_blind_pr": [ - 2011 + 2015 ], "flash_assists_pr": [ - 2011 + 2015 ], "hs_pct": [ - 2011 + 2015 ], "kast_pct": [ - 2011 + 2015 ], "maps": [ - 2011 + 2015 ], "premier_rank": [ - 2011 + 2015 ], "rounds": [ - 2011 + 2015 ], "steam_id": [ - 2011 + 2015 ], "survival_pct": [ - 2011 + 2015 ], "time_to_damage_s": [ - 2011 + 2015 ], "traded_death_pct": [ - 2011 + 2015 ], "util_efficiency": [ - 2011 + 2015 ], "__typename": [ - 70 + 74 ] }, "player_career_stats_v_select_column": {}, @@ -43167,7 +44119,7 @@ export default { 29 ], "__typename": [ - 70 + 74 ] }, "player_career_stats_v_stddev_pop_fields": { @@ -43220,7 +44172,7 @@ export default { 29 ], "__typename": [ - 70 + 74 ] }, "player_career_stats_v_stddev_samp_fields": { @@ -43273,44 +44225,44 @@ export default { 29 ], "__typename": [ - 70 + 74 ] }, "player_career_stats_v_stream_cursor_input": { "initial_value": [ - 2207 + 2211 ], "ordering": [ - 224 + 228 ], "__typename": [ - 70 + 74 ] }, "player_career_stats_v_stream_cursor_value_input": { "accuracy": [ - 2009 + 2013 ], "accuracy_spotted": [ - 2009 + 2013 ], "counter_strafe_pct": [ - 2009 + 2013 ], "crosshair_deg": [ - 2009 + 2013 ], "enemy_blind_pr": [ - 2009 + 2013 ], "flash_assists_pr": [ - 2009 + 2013 ], "hs_pct": [ - 2009 + 2013 ], "kast_pct": [ - 2009 + 2013 ], "maps": [ 38 @@ -43322,48 +44274,48 @@ export default { 38 ], "steam_id": [ - 169 + 173 ], "survival_pct": [ - 2009 + 2013 ], "time_to_damage_s": [ - 2009 + 2013 ], "traded_death_pct": [ - 2009 + 2013 ], "util_efficiency": [ - 2009 + 2013 ], "__typename": [ - 70 + 74 ] }, "player_career_stats_v_sum_fields": { "accuracy": [ - 2009 + 2013 ], "accuracy_spotted": [ - 2009 + 2013 ], "counter_strafe_pct": [ - 2009 + 2013 ], "crosshair_deg": [ - 2009 + 2013 ], "enemy_blind_pr": [ - 2009 + 2013 ], "flash_assists_pr": [ - 2009 + 2013 ], "hs_pct": [ - 2009 + 2013 ], "kast_pct": [ - 2009 + 2013 ], "maps": [ 38 @@ -43375,22 +44327,22 @@ export default { 38 ], "steam_id": [ - 169 + 173 ], "survival_pct": [ - 2009 + 2013 ], "time_to_damage_s": [ - 2009 + 2013 ], "traded_death_pct": [ - 2009 + 2013 ], "util_efficiency": [ - 2009 + 2013 ], "__typename": [ - 70 + 74 ] }, "player_career_stats_v_var_pop_fields": { @@ -43443,7 +44395,7 @@ export default { 29 ], "__typename": [ - 70 + 74 ] }, "player_career_stats_v_var_samp_fields": { @@ -43496,7 +44448,7 @@ export default { 29 ], "__typename": [ - 70 + 74 ] }, "player_career_stats_v_variance_fields": { @@ -43549,7 +44501,7 @@ export default { 29 ], "__typename": [ - 70 + 74 ] }, "player_damages": { @@ -43557,31 +44509,31 @@ export default { 38 ], "attacked_location": [ - 70 + 74 ], "attacked_location_coordinates": [ - 70 + 74 ], "attacked_player": [ - 2878 + 2914 ], "attacked_steam_id": [ - 169 + 173 ], "attacked_team": [ - 70 + 74 ], "attacker_location": [ - 70 + 74 ], "attacker_location_coordinates": [ - 70 + 74 ], "attacker_steam_id": [ - 169 + 173 ], "attacker_team": [ - 70 + 74 ], "damage": [ 38 @@ -43590,93 +44542,93 @@ export default { 38 ], "deleted_at": [ - 3421 + 3466 ], "health": [ 38 ], "hitgroup": [ - 70 + 74 ], "id": [ - 3818 + 3863 ], "match": [ - 1826 + 1830 ], "match_id": [ - 3818 + 3863 ], "match_map": [ - 1664 + 1668 ], "match_map_id": [ - 3818 + 3863 ], "player": [ - 2878 + 2914 ], "round": [ - 2009 + 2013 ], "team_damage": [ 3 ], "time": [ - 3421 + 3466 ], "with": [ - 70 + 74 ], "__typename": [ - 70 + 74 ] }, "player_damages_aggregate": { "aggregate": [ - 2216 + 2220 ], "nodes": [ - 2212 + 2216 ], "__typename": [ - 70 + 74 ] }, "player_damages_aggregate_bool_exp": { "count": [ - 2215 + 2219 ], "__typename": [ - 70 + 74 ] }, "player_damages_aggregate_bool_exp_count": { "arguments": [ - 2233 + 2237 ], "distinct": [ 3 ], "filter": [ - 2221 + 2225 ], "predicate": [ 39 ], "__typename": [ - 70 + 74 ] }, "player_damages_aggregate_fields": { "avg": [ - 2219 + 2223 ], "count": [ 38, { "columns": [ - 2233, + 2237, "[player_damages_select_column!]" ], "distinct": [ @@ -43685,83 +44637,83 @@ export default { } ], "max": [ - 2225 + 2229 ], "min": [ - 2227 + 2231 ], "stddev": [ - 2235 + 2239 ], "stddev_pop": [ - 2237 + 2241 ], "stddev_samp": [ - 2239 + 2243 ], "sum": [ - 2243 + 2247 ], "var_pop": [ - 2247 + 2251 ], "var_samp": [ - 2249 + 2253 ], "variance": [ - 2251 + 2255 ], "__typename": [ - 70 + 74 ] }, "player_damages_aggregate_order_by": { "avg": [ - 2220 + 2224 ], "count": [ - 2011 + 2015 ], "max": [ - 2226 + 2230 ], "min": [ - 2228 + 2232 ], "stddev": [ - 2236 + 2240 ], "stddev_pop": [ - 2238 + 2242 ], "stddev_samp": [ - 2240 + 2244 ], "sum": [ - 2244 + 2248 ], "var_pop": [ - 2248 + 2252 ], "var_samp": [ - 2250 + 2254 ], "variance": [ - 2252 + 2256 ], "__typename": [ - 70 + 74 ] }, "player_damages_arr_rel_insert_input": { "data": [ - 2224 + 2228 ], "on_conflict": [ - 2230 + 2234 ], "__typename": [ - 70 + 74 ] }, "player_damages_avg_fields": { @@ -43787,74 +44739,74 @@ export default { 29 ], "__typename": [ - 70 + 74 ] }, "player_damages_avg_order_by": { "armor": [ - 2011 + 2015 ], "attacked_steam_id": [ - 2011 + 2015 ], "attacker_steam_id": [ - 2011 + 2015 ], "damage": [ - 2011 + 2015 ], "damage_armor": [ - 2011 + 2015 ], "health": [ - 2011 + 2015 ], "round": [ - 2011 + 2015 ], "__typename": [ - 70 + 74 ] }, "player_damages_bool_exp": { "_and": [ - 2221 + 2225 ], "_not": [ - 2221 + 2225 ], "_or": [ - 2221 + 2225 ], "armor": [ 39 ], "attacked_location": [ - 72 + 76 ], "attacked_location_coordinates": [ - 72 + 76 ], "attacked_player": [ - 2882 + 2918 ], "attacked_steam_id": [ - 171 + 175 ], "attacked_team": [ - 72 + 76 ], "attacker_location": [ - 72 + 76 ], "attacker_location_coordinates": [ - 72 + 76 ], "attacker_steam_id": [ - 171 + 175 ], "attacker_team": [ - 72 + 76 ], "damage": [ 39 @@ -43863,46 +44815,46 @@ export default { 39 ], "deleted_at": [ - 3422 + 3467 ], "health": [ 39 ], "hitgroup": [ - 72 + 76 ], "id": [ - 3820 + 3865 ], "match": [ - 1835 + 1839 ], "match_id": [ - 3820 + 3865 ], "match_map": [ - 1673 + 1677 ], "match_map_id": [ - 3820 + 3865 ], "player": [ - 2882 + 2918 ], "round": [ - 2010 + 2014 ], "team_damage": [ 4 ], "time": [ - 3422 + 3467 ], "with": [ - 72 + 76 ], "__typename": [ - 70 + 74 ] }, "player_damages_constraint": {}, @@ -43911,10 +44863,10 @@ export default { 38 ], "attacked_steam_id": [ - 169 + 173 ], "attacker_steam_id": [ - 169 + 173 ], "damage": [ 38 @@ -43926,10 +44878,10 @@ export default { 38 ], "round": [ - 2009 + 2013 ], "__typename": [ - 70 + 74 ] }, "player_damages_insert_input": { @@ -43937,31 +44889,31 @@ export default { 38 ], "attacked_location": [ - 70 + 74 ], "attacked_location_coordinates": [ - 70 + 74 ], "attacked_player": [ - 2889 + 2925 ], "attacked_steam_id": [ - 169 + 173 ], "attacked_team": [ - 70 + 74 ], "attacker_location": [ - 70 + 74 ], "attacker_location_coordinates": [ - 70 + 74 ], "attacker_steam_id": [ - 169 + 173 ], "attacker_team": [ - 70 + 74 ], "damage": [ 38 @@ -43970,43 +44922,43 @@ export default { 38 ], "deleted_at": [ - 3421 + 3466 ], "health": [ 38 ], "hitgroup": [ - 70 + 74 ], "id": [ - 3818 + 3863 ], "match": [ - 1844 + 1848 ], "match_id": [ - 3818 + 3863 ], "match_map": [ - 1682 + 1686 ], "match_map_id": [ - 3818 + 3863 ], "player": [ - 2889 + 2925 ], "round": [ - 2009 + 2013 ], "time": [ - 3421 + 3466 ], "with": [ - 70 + 74 ], "__typename": [ - 70 + 74 ] }, "player_damages_max_fields": { @@ -44014,28 +44966,28 @@ export default { 38 ], "attacked_location": [ - 70 + 74 ], "attacked_location_coordinates": [ - 70 + 74 ], "attacked_steam_id": [ - 169 + 173 ], "attacked_team": [ - 70 + 74 ], "attacker_location": [ - 70 + 74 ], "attacker_location_coordinates": [ - 70 + 74 ], "attacker_steam_id": [ - 169 + 173 ], "attacker_team": [ - 70 + 74 ], "damage": [ 38 @@ -44044,99 +44996,99 @@ export default { 38 ], "deleted_at": [ - 3421 + 3466 ], "health": [ 38 ], "hitgroup": [ - 70 + 74 ], "id": [ - 3818 + 3863 ], "match_id": [ - 3818 + 3863 ], "match_map_id": [ - 3818 + 3863 ], "round": [ - 2009 + 2013 ], "time": [ - 3421 + 3466 ], "with": [ - 70 + 74 ], "__typename": [ - 70 + 74 ] }, "player_damages_max_order_by": { "armor": [ - 2011 + 2015 ], "attacked_location": [ - 2011 + 2015 ], "attacked_location_coordinates": [ - 2011 + 2015 ], "attacked_steam_id": [ - 2011 + 2015 ], "attacked_team": [ - 2011 + 2015 ], "attacker_location": [ - 2011 + 2015 ], "attacker_location_coordinates": [ - 2011 + 2015 ], "attacker_steam_id": [ - 2011 + 2015 ], "attacker_team": [ - 2011 + 2015 ], "damage": [ - 2011 + 2015 ], "damage_armor": [ - 2011 + 2015 ], "deleted_at": [ - 2011 + 2015 ], "health": [ - 2011 + 2015 ], "hitgroup": [ - 2011 + 2015 ], "id": [ - 2011 + 2015 ], "match_id": [ - 2011 + 2015 ], "match_map_id": [ - 2011 + 2015 ], "round": [ - 2011 + 2015 ], "time": [ - 2011 + 2015 ], "with": [ - 2011 + 2015 ], "__typename": [ - 70 + 74 ] }, "player_damages_min_fields": { @@ -44144,28 +45096,28 @@ export default { 38 ], "attacked_location": [ - 70 + 74 ], "attacked_location_coordinates": [ - 70 + 74 ], "attacked_steam_id": [ - 169 + 173 ], "attacked_team": [ - 70 + 74 ], "attacker_location": [ - 70 + 74 ], "attacker_location_coordinates": [ - 70 + 74 ], "attacker_steam_id": [ - 169 + 173 ], "attacker_team": [ - 70 + 74 ], "damage": [ 38 @@ -44174,99 +45126,99 @@ export default { 38 ], "deleted_at": [ - 3421 + 3466 ], "health": [ 38 ], "hitgroup": [ - 70 + 74 ], "id": [ - 3818 + 3863 ], "match_id": [ - 3818 + 3863 ], "match_map_id": [ - 3818 + 3863 ], "round": [ - 2009 + 2013 ], "time": [ - 3421 + 3466 ], "with": [ - 70 + 74 ], "__typename": [ - 70 + 74 ] }, "player_damages_min_order_by": { "armor": [ - 2011 + 2015 ], "attacked_location": [ - 2011 + 2015 ], "attacked_location_coordinates": [ - 2011 + 2015 ], "attacked_steam_id": [ - 2011 + 2015 ], "attacked_team": [ - 2011 + 2015 ], "attacker_location": [ - 2011 + 2015 ], "attacker_location_coordinates": [ - 2011 + 2015 ], "attacker_steam_id": [ - 2011 + 2015 ], "attacker_team": [ - 2011 + 2015 ], "damage": [ - 2011 + 2015 ], "damage_armor": [ - 2011 + 2015 ], "deleted_at": [ - 2011 + 2015 ], "health": [ - 2011 + 2015 ], "hitgroup": [ - 2011 + 2015 ], "id": [ - 2011 + 2015 ], "match_id": [ - 2011 + 2015 ], "match_map_id": [ - 2011 + 2015 ], "round": [ - 2011 + 2015 ], "time": [ - 2011 + 2015 ], "with": [ - 2011 + 2015 ], "__typename": [ - 70 + 74 ] }, "player_damages_mutation_response": { @@ -44274,118 +45226,118 @@ export default { 38 ], "returning": [ - 2212 + 2216 ], "__typename": [ - 70 + 74 ] }, "player_damages_on_conflict": { "constraint": [ - 2222 + 2226 ], "update_columns": [ - 2245 + 2249 ], "where": [ - 2221 + 2225 ], "__typename": [ - 70 + 74 ] }, "player_damages_order_by": { "armor": [ - 2011 + 2015 ], "attacked_location": [ - 2011 + 2015 ], "attacked_location_coordinates": [ - 2011 + 2015 ], "attacked_player": [ - 2891 + 2927 ], "attacked_steam_id": [ - 2011 + 2015 ], "attacked_team": [ - 2011 + 2015 ], "attacker_location": [ - 2011 + 2015 ], "attacker_location_coordinates": [ - 2011 + 2015 ], "attacker_steam_id": [ - 2011 + 2015 ], "attacker_team": [ - 2011 + 2015 ], "damage": [ - 2011 + 2015 ], "damage_armor": [ - 2011 + 2015 ], "deleted_at": [ - 2011 + 2015 ], "health": [ - 2011 + 2015 ], "hitgroup": [ - 2011 + 2015 ], "id": [ - 2011 + 2015 ], "match": [ - 1846 + 1850 ], "match_id": [ - 2011 + 2015 ], "match_map": [ - 1684 + 1688 ], "match_map_id": [ - 2011 + 2015 ], "player": [ - 2891 + 2927 ], "round": [ - 2011 + 2015 ], "team_damage": [ - 2011 + 2015 ], "time": [ - 2011 + 2015 ], "with": [ - 2011 + 2015 ], "__typename": [ - 70 + 74 ] }, "player_damages_pk_columns_input": { "id": [ - 3818 + 3863 ], "match_map_id": [ - 3818 + 3863 ], "time": [ - 3421 + 3466 ], "__typename": [ - 70 + 74 ] }, "player_damages_select_column": {}, @@ -44394,28 +45346,28 @@ export default { 38 ], "attacked_location": [ - 70 + 74 ], "attacked_location_coordinates": [ - 70 + 74 ], "attacked_steam_id": [ - 169 + 173 ], "attacked_team": [ - 70 + 74 ], "attacker_location": [ - 70 + 74 ], "attacker_location_coordinates": [ - 70 + 74 ], "attacker_steam_id": [ - 169 + 173 ], "attacker_team": [ - 70 + 74 ], "damage": [ 38 @@ -44424,34 +45376,34 @@ export default { 38 ], "deleted_at": [ - 3421 + 3466 ], "health": [ 38 ], "hitgroup": [ - 70 + 74 ], "id": [ - 3818 + 3863 ], "match_id": [ - 3818 + 3863 ], "match_map_id": [ - 3818 + 3863 ], "round": [ - 2009 + 2013 ], "time": [ - 3421 + 3466 ], "with": [ - 70 + 74 ], "__typename": [ - 70 + 74 ] }, "player_damages_stddev_fields": { @@ -44477,33 +45429,33 @@ export default { 29 ], "__typename": [ - 70 + 74 ] }, "player_damages_stddev_order_by": { "armor": [ - 2011 + 2015 ], "attacked_steam_id": [ - 2011 + 2015 ], "attacker_steam_id": [ - 2011 + 2015 ], "damage": [ - 2011 + 2015 ], "damage_armor": [ - 2011 + 2015 ], "health": [ - 2011 + 2015 ], "round": [ - 2011 + 2015 ], "__typename": [ - 70 + 74 ] }, "player_damages_stddev_pop_fields": { @@ -44529,33 +45481,33 @@ export default { 29 ], "__typename": [ - 70 + 74 ] }, "player_damages_stddev_pop_order_by": { "armor": [ - 2011 + 2015 ], "attacked_steam_id": [ - 2011 + 2015 ], "attacker_steam_id": [ - 2011 + 2015 ], "damage": [ - 2011 + 2015 ], "damage_armor": [ - 2011 + 2015 ], "health": [ - 2011 + 2015 ], "round": [ - 2011 + 2015 ], "__typename": [ - 70 + 74 ] }, "player_damages_stddev_samp_fields": { @@ -44581,44 +45533,44 @@ export default { 29 ], "__typename": [ - 70 + 74 ] }, "player_damages_stddev_samp_order_by": { "armor": [ - 2011 + 2015 ], "attacked_steam_id": [ - 2011 + 2015 ], "attacker_steam_id": [ - 2011 + 2015 ], "damage": [ - 2011 + 2015 ], "damage_armor": [ - 2011 + 2015 ], "health": [ - 2011 + 2015 ], "round": [ - 2011 + 2015 ], "__typename": [ - 70 + 74 ] }, "player_damages_stream_cursor_input": { "initial_value": [ - 2242 + 2246 ], "ordering": [ - 224 + 228 ], "__typename": [ - 70 + 74 ] }, "player_damages_stream_cursor_value_input": { @@ -44626,28 +45578,28 @@ export default { 38 ], "attacked_location": [ - 70 + 74 ], "attacked_location_coordinates": [ - 70 + 74 ], "attacked_steam_id": [ - 169 + 173 ], "attacked_team": [ - 70 + 74 ], "attacker_location": [ - 70 + 74 ], "attacker_location_coordinates": [ - 70 + 74 ], "attacker_steam_id": [ - 169 + 173 ], "attacker_team": [ - 70 + 74 ], "damage": [ 38 @@ -44656,34 +45608,34 @@ export default { 38 ], "deleted_at": [ - 3421 + 3466 ], "health": [ 38 ], "hitgroup": [ - 70 + 74 ], "id": [ - 3818 + 3863 ], "match_id": [ - 3818 + 3863 ], "match_map_id": [ - 3818 + 3863 ], "round": [ - 2009 + 2013 ], "time": [ - 3421 + 3466 ], "with": [ - 70 + 74 ], "__typename": [ - 70 + 74 ] }, "player_damages_sum_fields": { @@ -44691,10 +45643,10 @@ export default { 38 ], "attacked_steam_id": [ - 169 + 173 ], "attacker_steam_id": [ - 169 + 173 ], "damage": [ 38 @@ -44706,51 +45658,51 @@ export default { 38 ], "round": [ - 2009 + 2013 ], "__typename": [ - 70 + 74 ] }, "player_damages_sum_order_by": { "armor": [ - 2011 + 2015 ], "attacked_steam_id": [ - 2011 + 2015 ], "attacker_steam_id": [ - 2011 + 2015 ], "damage": [ - 2011 + 2015 ], "damage_armor": [ - 2011 + 2015 ], "health": [ - 2011 + 2015 ], "round": [ - 2011 + 2015 ], "__typename": [ - 70 + 74 ] }, "player_damages_update_column": {}, "player_damages_updates": { "_inc": [ - 2223 + 2227 ], "_set": [ - 2234 + 2238 ], "where": [ - 2221 + 2225 ], "__typename": [ - 70 + 74 ] }, "player_damages_var_pop_fields": { @@ -44776,33 +45728,33 @@ export default { 29 ], "__typename": [ - 70 + 74 ] }, "player_damages_var_pop_order_by": { "armor": [ - 2011 + 2015 ], "attacked_steam_id": [ - 2011 + 2015 ], "attacker_steam_id": [ - 2011 + 2015 ], "damage": [ - 2011 + 2015 ], "damage_armor": [ - 2011 + 2015 ], "health": [ - 2011 + 2015 ], "round": [ - 2011 + 2015 ], "__typename": [ - 70 + 74 ] }, "player_damages_var_samp_fields": { @@ -44828,33 +45780,33 @@ export default { 29 ], "__typename": [ - 70 + 74 ] }, "player_damages_var_samp_order_by": { "armor": [ - 2011 + 2015 ], "attacked_steam_id": [ - 2011 + 2015 ], "attacker_steam_id": [ - 2011 + 2015 ], "damage": [ - 2011 + 2015 ], "damage_armor": [ - 2011 + 2015 ], "health": [ - 2011 + 2015 ], "round": [ - 2011 + 2015 ], "__typename": [ - 70 + 74 ] }, "player_damages_variance_fields": { @@ -44880,71 +45832,71 @@ export default { 29 ], "__typename": [ - 70 + 74 ] }, "player_damages_variance_order_by": { "armor": [ - 2011 + 2015 ], "attacked_steam_id": [ - 2011 + 2015 ], "attacker_steam_id": [ - 2011 + 2015 ], "damage": [ - 2011 + 2015 ], "damage_armor": [ - 2011 + 2015 ], "health": [ - 2011 + 2015 ], "round": [ - 2011 + 2015 ], "__typename": [ - 70 + 74 ] }, "player_elo": { "actual_score": [ - 1084 + 1088 ], "assists": [ 38 ], "change": [ - 2009 + 2013 ], "created_at": [ - 3421 + 3466 ], "current": [ - 2009 + 2013 ], "damage": [ 38 ], "damage_percent": [ - 1084 + 1088 ], "deaths": [ 38 ], "expected_score": [ - 1084 + 1088 ], "impact": [ - 2009 + 2013 ], "k_factor": [ 38 ], "kda": [ - 1084 + 1088 ], "kills": [ 38 @@ -44956,59 +45908,59 @@ export default { 38 ], "match": [ - 1826 + 1830 ], "match_id": [ - 3818 + 3863 ], "opponent_team_elo_avg": [ - 1084 + 1088 ], "performance_multiplier": [ - 1084 + 1088 ], "player": [ - 2878 + 2914 ], "player_team_elo_avg": [ - 1084 + 1088 ], "series_multiplier": [ 38 ], "steam_id": [ - 169 + 173 ], "team_avg_kda": [ - 1084 + 1088 ], "type": [ - 724 + 728 ], "__typename": [ - 70 + 74 ] }, "player_elo_aggregate": { "aggregate": [ - 2255 + 2259 ], "nodes": [ - 2253 + 2257 ], "__typename": [ - 70 + 74 ] }, "player_elo_aggregate_fields": { "avg": [ - 2256 + 2260 ], "count": [ 38, { "columns": [ - 2267, + 2271, "[player_elo_select_column!]" ], "distinct": [ @@ -45017,34 +45969,34 @@ export default { } ], "max": [ - 2261 + 2265 ], "min": [ - 2262 + 2266 ], "stddev": [ - 2269 + 2273 ], "stddev_pop": [ - 2270 + 2274 ], "stddev_samp": [ - 2271 + 2275 ], "sum": [ - 2274 + 2278 ], "var_pop": [ - 2277 + 2281 ], "var_samp": [ - 2278 + 2282 ], "variance": [ - 2279 + 2283 ], "__typename": [ - 70 + 74 ] }, "player_elo_avg_fields": { @@ -45109,54 +46061,54 @@ export default { 29 ], "__typename": [ - 70 + 74 ] }, "player_elo_bool_exp": { "_and": [ - 2257 + 2261 ], "_not": [ - 2257 + 2261 ], "_or": [ - 2257 + 2261 ], "actual_score": [ - 1085 + 1089 ], "assists": [ 39 ], "change": [ - 2010 + 2014 ], "created_at": [ - 3422 + 3467 ], "current": [ - 2010 + 2014 ], "damage": [ 39 ], "damage_percent": [ - 1085 + 1089 ], "deaths": [ 39 ], "expected_score": [ - 1085 + 1089 ], "impact": [ - 2010 + 2014 ], "k_factor": [ 39 ], "kda": [ - 1085 + 1089 ], "kills": [ 39 @@ -45168,73 +46120,73 @@ export default { 39 ], "match": [ - 1835 + 1839 ], "match_id": [ - 3820 + 3865 ], "opponent_team_elo_avg": [ - 1085 + 1089 ], "performance_multiplier": [ - 1085 + 1089 ], "player": [ - 2882 + 2918 ], "player_team_elo_avg": [ - 1085 + 1089 ], "series_multiplier": [ 39 ], "steam_id": [ - 171 + 175 ], "team_avg_kda": [ - 1085 + 1089 ], "type": [ - 725 + 729 ], "__typename": [ - 70 + 74 ] }, "player_elo_constraint": {}, "player_elo_inc_input": { "actual_score": [ - 1084 + 1088 ], "assists": [ 38 ], "change": [ - 2009 + 2013 ], "current": [ - 2009 + 2013 ], "damage": [ 38 ], "damage_percent": [ - 1084 + 1088 ], "deaths": [ 38 ], "expected_score": [ - 1084 + 1088 ], "impact": [ - 2009 + 2013 ], "k_factor": [ 38 ], "kda": [ - 1084 + 1088 ], "kills": [ 38 @@ -45246,63 +46198,63 @@ export default { 38 ], "opponent_team_elo_avg": [ - 1084 + 1088 ], "performance_multiplier": [ - 1084 + 1088 ], "player_team_elo_avg": [ - 1084 + 1088 ], "series_multiplier": [ 38 ], "steam_id": [ - 169 + 173 ], "team_avg_kda": [ - 1084 + 1088 ], "__typename": [ - 70 + 74 ] }, "player_elo_insert_input": { "actual_score": [ - 1084 + 1088 ], "assists": [ 38 ], "change": [ - 2009 + 2013 ], "created_at": [ - 3421 + 3466 ], "current": [ - 2009 + 2013 ], "damage": [ 38 ], "damage_percent": [ - 1084 + 1088 ], "deaths": [ 38 ], "expected_score": [ - 1084 + 1088 ], "impact": [ - 2009 + 2013 ], "k_factor": [ 38 ], "kda": [ - 1084 + 1088 ], "kills": [ 38 @@ -45314,75 +46266,75 @@ export default { 38 ], "match": [ - 1844 + 1848 ], "match_id": [ - 3818 + 3863 ], "opponent_team_elo_avg": [ - 1084 + 1088 ], "performance_multiplier": [ - 1084 + 1088 ], "player": [ - 2889 + 2925 ], "player_team_elo_avg": [ - 1084 + 1088 ], "series_multiplier": [ 38 ], "steam_id": [ - 169 + 173 ], "team_avg_kda": [ - 1084 + 1088 ], "type": [ - 724 + 728 ], "__typename": [ - 70 + 74 ] }, "player_elo_max_fields": { "actual_score": [ - 1084 + 1088 ], "assists": [ 38 ], "change": [ - 2009 + 2013 ], "created_at": [ - 3421 + 3466 ], "current": [ - 2009 + 2013 ], "damage": [ 38 ], "damage_percent": [ - 1084 + 1088 ], "deaths": [ 38 ], "expected_score": [ - 1084 + 1088 ], "impact": [ - 2009 + 2013 ], "k_factor": [ 38 ], "kda": [ - 1084 + 1088 ], "kills": [ 38 @@ -45394,66 +46346,66 @@ export default { 38 ], "match_id": [ - 3818 + 3863 ], "opponent_team_elo_avg": [ - 1084 + 1088 ], "performance_multiplier": [ - 1084 + 1088 ], "player_team_elo_avg": [ - 1084 + 1088 ], "series_multiplier": [ 38 ], "steam_id": [ - 169 + 173 ], "team_avg_kda": [ - 1084 + 1088 ], "__typename": [ - 70 + 74 ] }, "player_elo_min_fields": { "actual_score": [ - 1084 + 1088 ], "assists": [ 38 ], "change": [ - 2009 + 2013 ], "created_at": [ - 3421 + 3466 ], "current": [ - 2009 + 2013 ], "damage": [ 38 ], "damage_percent": [ - 1084 + 1088 ], "deaths": [ 38 ], "expected_score": [ - 1084 + 1088 ], "impact": [ - 2009 + 2013 ], "k_factor": [ 38 ], "kda": [ - 1084 + 1088 ], "kills": [ 38 @@ -45465,28 +46417,28 @@ export default { 38 ], "match_id": [ - 3818 + 3863 ], "opponent_team_elo_avg": [ - 1084 + 1088 ], "performance_multiplier": [ - 1084 + 1088 ], "player_team_elo_avg": [ - 1084 + 1088 ], "series_multiplier": [ 38 ], "steam_id": [ - 169 + 173 ], "team_avg_kda": [ - 1084 + 1088 ], "__typename": [ - 70 + 74 ] }, "player_elo_mutation_response": { @@ -45494,157 +46446,157 @@ export default { 38 ], "returning": [ - 2253 + 2257 ], "__typename": [ - 70 + 74 ] }, "player_elo_on_conflict": { "constraint": [ - 2258 + 2262 ], "update_columns": [ - 2275 + 2279 ], "where": [ - 2257 + 2261 ], "__typename": [ - 70 + 74 ] }, "player_elo_order_by": { "actual_score": [ - 2011 + 2015 ], "assists": [ - 2011 + 2015 ], "change": [ - 2011 + 2015 ], "created_at": [ - 2011 + 2015 ], "current": [ - 2011 + 2015 ], "damage": [ - 2011 + 2015 ], "damage_percent": [ - 2011 + 2015 ], "deaths": [ - 2011 + 2015 ], "expected_score": [ - 2011 + 2015 ], "impact": [ - 2011 + 2015 ], "k_factor": [ - 2011 + 2015 ], "kda": [ - 2011 + 2015 ], "kills": [ - 2011 + 2015 ], "map_losses": [ - 2011 + 2015 ], "map_wins": [ - 2011 + 2015 ], "match": [ - 1846 + 1850 ], "match_id": [ - 2011 + 2015 ], "opponent_team_elo_avg": [ - 2011 + 2015 ], "performance_multiplier": [ - 2011 + 2015 ], "player": [ - 2891 + 2927 ], "player_team_elo_avg": [ - 2011 + 2015 ], "series_multiplier": [ - 2011 + 2015 ], "steam_id": [ - 2011 + 2015 ], "team_avg_kda": [ - 2011 + 2015 ], "type": [ - 2011 + 2015 ], "__typename": [ - 70 + 74 ] }, "player_elo_pk_columns_input": { "match_id": [ - 3818 + 3863 ], "steam_id": [ - 169 + 173 ], "type": [ - 724 + 728 ], "__typename": [ - 70 + 74 ] }, "player_elo_select_column": {}, "player_elo_set_input": { "actual_score": [ - 1084 + 1088 ], "assists": [ 38 ], "change": [ - 2009 + 2013 ], "created_at": [ - 3421 + 3466 ], "current": [ - 2009 + 2013 ], "damage": [ 38 ], "damage_percent": [ - 1084 + 1088 ], "deaths": [ 38 ], "expected_score": [ - 1084 + 1088 ], "impact": [ - 2009 + 2013 ], "k_factor": [ 38 ], "kda": [ - 1084 + 1088 ], "kills": [ 38 @@ -45656,31 +46608,31 @@ export default { 38 ], "match_id": [ - 3818 + 3863 ], "opponent_team_elo_avg": [ - 1084 + 1088 ], "performance_multiplier": [ - 1084 + 1088 ], "player_team_elo_avg": [ - 1084 + 1088 ], "series_multiplier": [ 38 ], "steam_id": [ - 169 + 173 ], "team_avg_kda": [ - 1084 + 1088 ], "type": [ - 724 + 728 ], "__typename": [ - 70 + 74 ] }, "player_elo_stddev_fields": { @@ -45745,7 +46697,7 @@ export default { 29 ], "__typename": [ - 70 + 74 ] }, "player_elo_stddev_pop_fields": { @@ -45810,7 +46762,7 @@ export default { 29 ], "__typename": [ - 70 + 74 ] }, "player_elo_stddev_samp_fields": { @@ -45875,56 +46827,56 @@ export default { 29 ], "__typename": [ - 70 + 74 ] }, "player_elo_stream_cursor_input": { "initial_value": [ - 2273 + 2277 ], "ordering": [ - 224 + 228 ], "__typename": [ - 70 + 74 ] }, "player_elo_stream_cursor_value_input": { "actual_score": [ - 1084 + 1088 ], "assists": [ 38 ], "change": [ - 2009 + 2013 ], "created_at": [ - 3421 + 3466 ], "current": [ - 2009 + 2013 ], "damage": [ 38 ], "damage_percent": [ - 1084 + 1088 ], "deaths": [ 38 ], "expected_score": [ - 1084 + 1088 ], "impact": [ - 2009 + 2013 ], "k_factor": [ 38 ], "kda": [ - 1084 + 1088 ], "kills": [ 38 @@ -45936,66 +46888,66 @@ export default { 38 ], "match_id": [ - 3818 + 3863 ], "opponent_team_elo_avg": [ - 1084 + 1088 ], "performance_multiplier": [ - 1084 + 1088 ], "player_team_elo_avg": [ - 1084 + 1088 ], "series_multiplier": [ 38 ], "steam_id": [ - 169 + 173 ], "team_avg_kda": [ - 1084 + 1088 ], "type": [ - 724 + 728 ], "__typename": [ - 70 + 74 ] }, "player_elo_sum_fields": { "actual_score": [ - 1084 + 1088 ], "assists": [ 38 ], "change": [ - 2009 + 2013 ], "current": [ - 2009 + 2013 ], "damage": [ 38 ], "damage_percent": [ - 1084 + 1088 ], "deaths": [ 38 ], "expected_score": [ - 1084 + 1088 ], "impact": [ - 2009 + 2013 ], "k_factor": [ 38 ], "kda": [ - 1084 + 1088 ], "kills": [ 38 @@ -46007,40 +46959,40 @@ export default { 38 ], "opponent_team_elo_avg": [ - 1084 + 1088 ], "performance_multiplier": [ - 1084 + 1088 ], "player_team_elo_avg": [ - 1084 + 1088 ], "series_multiplier": [ 38 ], "steam_id": [ - 169 + 173 ], "team_avg_kda": [ - 1084 + 1088 ], "__typename": [ - 70 + 74 ] }, "player_elo_update_column": {}, "player_elo_updates": { "_inc": [ - 2259 + 2263 ], "_set": [ - 2268 + 2272 ], "where": [ - 2257 + 2261 ], "__typename": [ - 70 + 74 ] }, "player_elo_var_pop_fields": { @@ -46105,7 +47057,7 @@ export default { 29 ], "__typename": [ - 70 + 74 ] }, "player_elo_var_samp_fields": { @@ -46170,7 +47122,7 @@ export default { 29 ], "__typename": [ - 70 + 74 ] }, "player_elo_variance_fields": { @@ -46235,7 +47187,7 @@ export default { 29 ], "__typename": [ - 70 + 74 ] }, "player_faceit_rank_history": { @@ -46243,19 +47195,19 @@ export default { 38 ], "id": [ - 3818 + 3863 ], "match": [ - 1826 + 1830 ], "match_id": [ - 3818 + 3863 ], "observed_at": [ - 3421 + 3466 ], "player": [ - 2878 + 2914 ], "previous_rank": [ 38 @@ -46264,57 +47216,57 @@ export default { 38 ], "steam_id": [ - 169 + 173 ], "__typename": [ - 70 + 74 ] }, "player_faceit_rank_history_aggregate": { "aggregate": [ - 2284 + 2288 ], "nodes": [ - 2280 + 2284 ], "__typename": [ - 70 + 74 ] }, "player_faceit_rank_history_aggregate_bool_exp": { "count": [ - 2283 + 2287 ], "__typename": [ - 70 + 74 ] }, "player_faceit_rank_history_aggregate_bool_exp_count": { "arguments": [ - 2301 + 2305 ], "distinct": [ 3 ], "filter": [ - 2289 + 2293 ], "predicate": [ 39 ], "__typename": [ - 70 + 74 ] }, "player_faceit_rank_history_aggregate_fields": { "avg": [ - 2287 + 2291 ], "count": [ 38, { "columns": [ - 2301, + 2305, "[player_faceit_rank_history_select_column!]" ], "distinct": [ @@ -46323,83 +47275,83 @@ export default { } ], "max": [ - 2293 + 2297 ], "min": [ - 2295 + 2299 ], "stddev": [ - 2303 + 2307 ], "stddev_pop": [ - 2305 + 2309 ], "stddev_samp": [ - 2307 + 2311 ], "sum": [ - 2311 + 2315 ], "var_pop": [ - 2315 + 2319 ], "var_samp": [ - 2317 + 2321 ], "variance": [ - 2319 + 2323 ], "__typename": [ - 70 + 74 ] }, "player_faceit_rank_history_aggregate_order_by": { "avg": [ - 2288 + 2292 ], "count": [ - 2011 + 2015 ], "max": [ - 2294 + 2298 ], "min": [ - 2296 + 2300 ], "stddev": [ - 2304 + 2308 ], "stddev_pop": [ - 2306 + 2310 ], "stddev_samp": [ - 2308 + 2312 ], "sum": [ - 2312 + 2316 ], "var_pop": [ - 2316 + 2320 ], "var_samp": [ - 2318 + 2322 ], "variance": [ - 2320 + 2324 ], "__typename": [ - 70 + 74 ] }, "player_faceit_rank_history_arr_rel_insert_input": { "data": [ - 2292 + 2296 ], "on_conflict": [ - 2298 + 2302 ], "__typename": [ - 70 + 74 ] }, "player_faceit_rank_history_avg_fields": { @@ -46416,53 +47368,53 @@ export default { 29 ], "__typename": [ - 70 + 74 ] }, "player_faceit_rank_history_avg_order_by": { "elo": [ - 2011 + 2015 ], "previous_rank": [ - 2011 + 2015 ], "skill_level": [ - 2011 + 2015 ], "steam_id": [ - 2011 + 2015 ], "__typename": [ - 70 + 74 ] }, "player_faceit_rank_history_bool_exp": { "_and": [ - 2289 + 2293 ], "_not": [ - 2289 + 2293 ], "_or": [ - 2289 + 2293 ], "elo": [ 39 ], "id": [ - 3820 + 3865 ], "match": [ - 1835 + 1839 ], "match_id": [ - 3820 + 3865 ], "observed_at": [ - 3422 + 3467 ], "player": [ - 2882 + 2918 ], "previous_rank": [ 39 @@ -46471,10 +47423,10 @@ export default { 39 ], "steam_id": [ - 171 + 175 ], "__typename": [ - 70 + 74 ] }, "player_faceit_rank_history_constraint": {}, @@ -46489,10 +47441,10 @@ export default { 38 ], "steam_id": [ - 169 + 173 ], "__typename": [ - 70 + 74 ] }, "player_faceit_rank_history_insert_input": { @@ -46500,19 +47452,19 @@ export default { 38 ], "id": [ - 3818 + 3863 ], "match": [ - 1844 + 1848 ], "match_id": [ - 3818 + 3863 ], "observed_at": [ - 3421 + 3466 ], "player": [ - 2889 + 2925 ], "previous_rank": [ 38 @@ -46521,10 +47473,10 @@ export default { 38 ], "steam_id": [ - 169 + 173 ], "__typename": [ - 70 + 74 ] }, "player_faceit_rank_history_max_fields": { @@ -46532,13 +47484,13 @@ export default { 38 ], "id": [ - 3818 + 3863 ], "match_id": [ - 3818 + 3863 ], "observed_at": [ - 3421 + 3466 ], "previous_rank": [ 38 @@ -46547,36 +47499,36 @@ export default { 38 ], "steam_id": [ - 169 + 173 ], "__typename": [ - 70 + 74 ] }, "player_faceit_rank_history_max_order_by": { "elo": [ - 2011 + 2015 ], "id": [ - 2011 + 2015 ], "match_id": [ - 2011 + 2015 ], "observed_at": [ - 2011 + 2015 ], "previous_rank": [ - 2011 + 2015 ], "skill_level": [ - 2011 + 2015 ], "steam_id": [ - 2011 + 2015 ], "__typename": [ - 70 + 74 ] }, "player_faceit_rank_history_min_fields": { @@ -46584,13 +47536,13 @@ export default { 38 ], "id": [ - 3818 + 3863 ], "match_id": [ - 3818 + 3863 ], "observed_at": [ - 3421 + 3466 ], "previous_rank": [ 38 @@ -46599,36 +47551,36 @@ export default { 38 ], "steam_id": [ - 169 + 173 ], "__typename": [ - 70 + 74 ] }, "player_faceit_rank_history_min_order_by": { "elo": [ - 2011 + 2015 ], "id": [ - 2011 + 2015 ], "match_id": [ - 2011 + 2015 ], "observed_at": [ - 2011 + 2015 ], "previous_rank": [ - 2011 + 2015 ], "skill_level": [ - 2011 + 2015 ], "steam_id": [ - 2011 + 2015 ], "__typename": [ - 70 + 74 ] }, "player_faceit_rank_history_mutation_response": { @@ -46636,64 +47588,64 @@ export default { 38 ], "returning": [ - 2280 + 2284 ], "__typename": [ - 70 + 74 ] }, "player_faceit_rank_history_on_conflict": { "constraint": [ - 2290 + 2294 ], "update_columns": [ - 2313 + 2317 ], "where": [ - 2289 + 2293 ], "__typename": [ - 70 + 74 ] }, "player_faceit_rank_history_order_by": { "elo": [ - 2011 + 2015 ], "id": [ - 2011 + 2015 ], "match": [ - 1846 + 1850 ], "match_id": [ - 2011 + 2015 ], "observed_at": [ - 2011 + 2015 ], "player": [ - 2891 + 2927 ], "previous_rank": [ - 2011 + 2015 ], "skill_level": [ - 2011 + 2015 ], "steam_id": [ - 2011 + 2015 ], "__typename": [ - 70 + 74 ] }, "player_faceit_rank_history_pk_columns_input": { "id": [ - 3818 + 3863 ], "__typename": [ - 70 + 74 ] }, "player_faceit_rank_history_select_column": {}, @@ -46702,13 +47654,13 @@ export default { 38 ], "id": [ - 3818 + 3863 ], "match_id": [ - 3818 + 3863 ], "observed_at": [ - 3421 + 3466 ], "previous_rank": [ 38 @@ -46717,10 +47669,10 @@ export default { 38 ], "steam_id": [ - 169 + 173 ], "__typename": [ - 70 + 74 ] }, "player_faceit_rank_history_stddev_fields": { @@ -46737,24 +47689,24 @@ export default { 29 ], "__typename": [ - 70 + 74 ] }, "player_faceit_rank_history_stddev_order_by": { "elo": [ - 2011 + 2015 ], "previous_rank": [ - 2011 + 2015 ], "skill_level": [ - 2011 + 2015 ], "steam_id": [ - 2011 + 2015 ], "__typename": [ - 70 + 74 ] }, "player_faceit_rank_history_stddev_pop_fields": { @@ -46771,24 +47723,24 @@ export default { 29 ], "__typename": [ - 70 + 74 ] }, "player_faceit_rank_history_stddev_pop_order_by": { "elo": [ - 2011 + 2015 ], "previous_rank": [ - 2011 + 2015 ], "skill_level": [ - 2011 + 2015 ], "steam_id": [ - 2011 + 2015 ], "__typename": [ - 70 + 74 ] }, "player_faceit_rank_history_stddev_samp_fields": { @@ -46805,35 +47757,35 @@ export default { 29 ], "__typename": [ - 70 + 74 ] }, "player_faceit_rank_history_stddev_samp_order_by": { "elo": [ - 2011 + 2015 ], "previous_rank": [ - 2011 + 2015 ], "skill_level": [ - 2011 + 2015 ], "steam_id": [ - 2011 + 2015 ], "__typename": [ - 70 + 74 ] }, "player_faceit_rank_history_stream_cursor_input": { "initial_value": [ - 2310 + 2314 ], "ordering": [ - 224 + 228 ], "__typename": [ - 70 + 74 ] }, "player_faceit_rank_history_stream_cursor_value_input": { @@ -46841,13 +47793,13 @@ export default { 38 ], "id": [ - 3818 + 3863 ], "match_id": [ - 3818 + 3863 ], "observed_at": [ - 3421 + 3466 ], "previous_rank": [ 38 @@ -46856,10 +47808,10 @@ export default { 38 ], "steam_id": [ - 169 + 173 ], "__typename": [ - 70 + 74 ] }, "player_faceit_rank_history_sum_fields": { @@ -46873,42 +47825,42 @@ export default { 38 ], "steam_id": [ - 169 + 173 ], "__typename": [ - 70 + 74 ] }, "player_faceit_rank_history_sum_order_by": { "elo": [ - 2011 + 2015 ], "previous_rank": [ - 2011 + 2015 ], "skill_level": [ - 2011 + 2015 ], "steam_id": [ - 2011 + 2015 ], "__typename": [ - 70 + 74 ] }, "player_faceit_rank_history_update_column": {}, "player_faceit_rank_history_updates": { "_inc": [ - 2291 + 2295 ], "_set": [ - 2302 + 2306 ], "where": [ - 2289 + 2293 ], "__typename": [ - 70 + 74 ] }, "player_faceit_rank_history_var_pop_fields": { @@ -46925,24 +47877,24 @@ export default { 29 ], "__typename": [ - 70 + 74 ] }, "player_faceit_rank_history_var_pop_order_by": { "elo": [ - 2011 + 2015 ], "previous_rank": [ - 2011 + 2015 ], "skill_level": [ - 2011 + 2015 ], "steam_id": [ - 2011 + 2015 ], "__typename": [ - 70 + 74 ] }, "player_faceit_rank_history_var_samp_fields": { @@ -46959,24 +47911,24 @@ export default { 29 ], "__typename": [ - 70 + 74 ] }, "player_faceit_rank_history_var_samp_order_by": { "elo": [ - 2011 + 2015 ], "previous_rank": [ - 2011 + 2015 ], "skill_level": [ - 2011 + 2015 ], "steam_id": [ - 2011 + 2015 ], "__typename": [ - 70 + 74 ] }, "player_faceit_rank_history_variance_fields": { @@ -46993,53 +47945,53 @@ export default { 29 ], "__typename": [ - 70 + 74 ] }, "player_faceit_rank_history_variance_order_by": { "elo": [ - 2011 + 2015 ], "previous_rank": [ - 2011 + 2015 ], "skill_level": [ - 2011 + 2015 ], "steam_id": [ - 2011 + 2015 ], "__typename": [ - 70 + 74 ] }, "player_flashes": { "attacked_steam_id": [ - 169 + 173 ], "attacker_steam_id": [ - 169 + 173 ], "blinded": [ - 2878 + 2914 ], "deleted_at": [ - 3421 + 3466 ], "duration": [ - 2009 + 2013 ], "match": [ - 1826 + 1830 ], "match_id": [ - 3818 + 3863 ], "match_map": [ - 1664 + 1668 ], "match_map_id": [ - 3818 + 3863 ], "round": [ 38 @@ -47048,100 +48000,100 @@ export default { 3 ], "thrown_by": [ - 2878 + 2914 ], "time": [ - 3421 + 3466 ], "__typename": [ - 70 + 74 ] }, "player_flashes_aggregate": { "aggregate": [ - 2327 + 2331 ], "nodes": [ - 2321 + 2325 ], "__typename": [ - 70 + 74 ] }, "player_flashes_aggregate_bool_exp": { "bool_and": [ - 2324 + 2328 ], "bool_or": [ - 2325 + 2329 ], "count": [ - 2326 + 2330 ], "__typename": [ - 70 + 74 ] }, "player_flashes_aggregate_bool_exp_bool_and": { "arguments": [ - 2345 + 2349 ], "distinct": [ 3 ], "filter": [ - 2332 + 2336 ], "predicate": [ 4 ], "__typename": [ - 70 + 74 ] }, "player_flashes_aggregate_bool_exp_bool_or": { "arguments": [ - 2346 + 2350 ], "distinct": [ 3 ], "filter": [ - 2332 + 2336 ], "predicate": [ 4 ], "__typename": [ - 70 + 74 ] }, "player_flashes_aggregate_bool_exp_count": { "arguments": [ - 2344 + 2348 ], "distinct": [ 3 ], "filter": [ - 2332 + 2336 ], "predicate": [ 39 ], "__typename": [ - 70 + 74 ] }, "player_flashes_aggregate_fields": { "avg": [ - 2330 + 2334 ], "count": [ 38, { "columns": [ - 2344, + 2348, "[player_flashes_select_column!]" ], "distinct": [ @@ -47150,83 +48102,83 @@ export default { } ], "max": [ - 2336 + 2340 ], "min": [ - 2338 + 2342 ], "stddev": [ - 2348 + 2352 ], "stddev_pop": [ - 2350 + 2354 ], "stddev_samp": [ - 2352 + 2356 ], "sum": [ - 2356 + 2360 ], "var_pop": [ - 2360 + 2364 ], "var_samp": [ - 2362 + 2366 ], "variance": [ - 2364 + 2368 ], "__typename": [ - 70 + 74 ] }, "player_flashes_aggregate_order_by": { "avg": [ - 2331 + 2335 ], "count": [ - 2011 + 2015 ], "max": [ - 2337 + 2341 ], "min": [ - 2339 + 2343 ], "stddev": [ - 2349 + 2353 ], "stddev_pop": [ - 2351 + 2355 ], "stddev_samp": [ - 2353 + 2357 ], "sum": [ - 2357 + 2361 ], "var_pop": [ - 2361 + 2365 ], "var_samp": [ - 2363 + 2367 ], "variance": [ - 2365 + 2369 ], "__typename": [ - 70 + 74 ] }, "player_flashes_arr_rel_insert_input": { "data": [ - 2335 + 2339 ], "on_conflict": [ - 2341 + 2345 ], "__typename": [ - 70 + 74 ] }, "player_flashes_avg_fields": { @@ -47243,62 +48195,62 @@ export default { 29 ], "__typename": [ - 70 + 74 ] }, "player_flashes_avg_order_by": { "attacked_steam_id": [ - 2011 + 2015 ], "attacker_steam_id": [ - 2011 + 2015 ], "duration": [ - 2011 + 2015 ], "round": [ - 2011 + 2015 ], "__typename": [ - 70 + 74 ] }, "player_flashes_bool_exp": { "_and": [ - 2332 + 2336 ], "_not": [ - 2332 + 2336 ], "_or": [ - 2332 + 2336 ], "attacked_steam_id": [ - 171 + 175 ], "attacker_steam_id": [ - 171 + 175 ], "blinded": [ - 2882 + 2918 ], "deleted_at": [ - 3422 + 3467 ], "duration": [ - 2010 + 2014 ], "match": [ - 1835 + 1839 ], "match_id": [ - 3820 + 3865 ], "match_map": [ - 1673 + 1677 ], "match_map_id": [ - 3820 + 3865 ], "round": [ 39 @@ -47307,60 +48259,60 @@ export default { 4 ], "thrown_by": [ - 2882 + 2918 ], "time": [ - 3422 + 3467 ], "__typename": [ - 70 + 74 ] }, "player_flashes_constraint": {}, "player_flashes_inc_input": { "attacked_steam_id": [ - 169 + 173 ], "attacker_steam_id": [ - 169 + 173 ], "duration": [ - 2009 + 2013 ], "round": [ 38 ], "__typename": [ - 70 + 74 ] }, "player_flashes_insert_input": { "attacked_steam_id": [ - 169 + 173 ], "attacker_steam_id": [ - 169 + 173 ], "blinded": [ - 2889 + 2925 ], "deleted_at": [ - 3421 + 3466 ], "duration": [ - 2009 + 2013 ], "match": [ - 1844 + 1848 ], "match_id": [ - 3818 + 3863 ], "match_map": [ - 1682 + 1686 ], "match_map_id": [ - 3818 + 3863 ], "round": [ 38 @@ -47369,129 +48321,129 @@ export default { 3 ], "thrown_by": [ - 2889 + 2925 ], "time": [ - 3421 + 3466 ], "__typename": [ - 70 + 74 ] }, "player_flashes_max_fields": { "attacked_steam_id": [ - 169 + 173 ], "attacker_steam_id": [ - 169 + 173 ], "deleted_at": [ - 3421 + 3466 ], "duration": [ - 2009 + 2013 ], "match_id": [ - 3818 + 3863 ], "match_map_id": [ - 3818 + 3863 ], "round": [ 38 ], "time": [ - 3421 + 3466 ], "__typename": [ - 70 + 74 ] }, "player_flashes_max_order_by": { "attacked_steam_id": [ - 2011 + 2015 ], "attacker_steam_id": [ - 2011 + 2015 ], "deleted_at": [ - 2011 + 2015 ], "duration": [ - 2011 + 2015 ], "match_id": [ - 2011 + 2015 ], "match_map_id": [ - 2011 + 2015 ], "round": [ - 2011 + 2015 ], "time": [ - 2011 + 2015 ], "__typename": [ - 70 + 74 ] }, "player_flashes_min_fields": { "attacked_steam_id": [ - 169 + 173 ], "attacker_steam_id": [ - 169 + 173 ], "deleted_at": [ - 3421 + 3466 ], "duration": [ - 2009 + 2013 ], "match_id": [ - 3818 + 3863 ], "match_map_id": [ - 3818 + 3863 ], "round": [ 38 ], "time": [ - 3421 + 3466 ], "__typename": [ - 70 + 74 ] }, "player_flashes_min_order_by": { "attacked_steam_id": [ - 2011 + 2015 ], "attacker_steam_id": [ - 2011 + 2015 ], "deleted_at": [ - 2011 + 2015 ], "duration": [ - 2011 + 2015 ], "match_id": [ - 2011 + 2015 ], "match_map_id": [ - 2011 + 2015 ], "round": [ - 2011 + 2015 ], "time": [ - 2011 + 2015 ], "__typename": [ - 70 + 74 ] }, "player_flashes_mutation_response": { @@ -47499,85 +48451,85 @@ export default { 38 ], "returning": [ - 2321 + 2325 ], "__typename": [ - 70 + 74 ] }, "player_flashes_on_conflict": { "constraint": [ - 2333 + 2337 ], "update_columns": [ - 2358 + 2362 ], "where": [ - 2332 + 2336 ], "__typename": [ - 70 + 74 ] }, "player_flashes_order_by": { "attacked_steam_id": [ - 2011 + 2015 ], "attacker_steam_id": [ - 2011 + 2015 ], "blinded": [ - 2891 + 2927 ], "deleted_at": [ - 2011 + 2015 ], "duration": [ - 2011 + 2015 ], "match": [ - 1846 + 1850 ], "match_id": [ - 2011 + 2015 ], "match_map": [ - 1684 + 1688 ], "match_map_id": [ - 2011 + 2015 ], "round": [ - 2011 + 2015 ], "team_flash": [ - 2011 + 2015 ], "thrown_by": [ - 2891 + 2927 ], "time": [ - 2011 + 2015 ], "__typename": [ - 70 + 74 ] }, "player_flashes_pk_columns_input": { "attacked_steam_id": [ - 169 + 173 ], "attacker_steam_id": [ - 169 + 173 ], "match_map_id": [ - 3818 + 3863 ], "time": [ - 3421 + 3466 ], "__typename": [ - 70 + 74 ] }, "player_flashes_select_column": {}, @@ -47585,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": [ - 169 + 173 ], "attacker_steam_id": [ - 169 + 173 ], "deleted_at": [ - 3421 + 3466 ], "duration": [ - 2009 + 2013 ], "match_id": [ - 3818 + 3863 ], "match_map_id": [ - 3818 + 3863 ], "round": [ 38 @@ -47609,10 +48561,10 @@ export default { 3 ], "time": [ - 3421 + 3466 ], "__typename": [ - 70 + 74 ] }, "player_flashes_stddev_fields": { @@ -47629,24 +48581,24 @@ export default { 29 ], "__typename": [ - 70 + 74 ] }, "player_flashes_stddev_order_by": { "attacked_steam_id": [ - 2011 + 2015 ], "attacker_steam_id": [ - 2011 + 2015 ], "duration": [ - 2011 + 2015 ], "round": [ - 2011 + 2015 ], "__typename": [ - 70 + 74 ] }, "player_flashes_stddev_pop_fields": { @@ -47663,24 +48615,24 @@ export default { 29 ], "__typename": [ - 70 + 74 ] }, "player_flashes_stddev_pop_order_by": { "attacked_steam_id": [ - 2011 + 2015 ], "attacker_steam_id": [ - 2011 + 2015 ], "duration": [ - 2011 + 2015 ], "round": [ - 2011 + 2015 ], "__typename": [ - 70 + 74 ] }, "player_flashes_stddev_samp_fields": { @@ -47697,55 +48649,55 @@ export default { 29 ], "__typename": [ - 70 + 74 ] }, "player_flashes_stddev_samp_order_by": { "attacked_steam_id": [ - 2011 + 2015 ], "attacker_steam_id": [ - 2011 + 2015 ], "duration": [ - 2011 + 2015 ], "round": [ - 2011 + 2015 ], "__typename": [ - 70 + 74 ] }, "player_flashes_stream_cursor_input": { "initial_value": [ - 2355 + 2359 ], "ordering": [ - 224 + 228 ], "__typename": [ - 70 + 74 ] }, "player_flashes_stream_cursor_value_input": { "attacked_steam_id": [ - 169 + 173 ], "attacker_steam_id": [ - 169 + 173 ], "deleted_at": [ - 3421 + 3466 ], "duration": [ - 2009 + 2013 ], "match_id": [ - 3818 + 3863 ], "match_map_id": [ - 3818 + 3863 ], "round": [ 38 @@ -47754,59 +48706,59 @@ export default { 3 ], "time": [ - 3421 + 3466 ], "__typename": [ - 70 + 74 ] }, "player_flashes_sum_fields": { "attacked_steam_id": [ - 169 + 173 ], "attacker_steam_id": [ - 169 + 173 ], "duration": [ - 2009 + 2013 ], "round": [ 38 ], "__typename": [ - 70 + 74 ] }, "player_flashes_sum_order_by": { "attacked_steam_id": [ - 2011 + 2015 ], "attacker_steam_id": [ - 2011 + 2015 ], "duration": [ - 2011 + 2015 ], "round": [ - 2011 + 2015 ], "__typename": [ - 70 + 74 ] }, "player_flashes_update_column": {}, "player_flashes_updates": { "_inc": [ - 2334 + 2338 ], "_set": [ - 2347 + 2351 ], "where": [ - 2332 + 2336 ], "__typename": [ - 70 + 74 ] }, "player_flashes_var_pop_fields": { @@ -47823,24 +48775,24 @@ export default { 29 ], "__typename": [ - 70 + 74 ] }, "player_flashes_var_pop_order_by": { "attacked_steam_id": [ - 2011 + 2015 ], "attacker_steam_id": [ - 2011 + 2015 ], "duration": [ - 2011 + 2015 ], "round": [ - 2011 + 2015 ], "__typename": [ - 70 + 74 ] }, "player_flashes_var_samp_fields": { @@ -47857,24 +48809,24 @@ export default { 29 ], "__typename": [ - 70 + 74 ] }, "player_flashes_var_samp_order_by": { "attacked_steam_id": [ - 2011 + 2015 ], "attacker_steam_id": [ - 2011 + 2015 ], "duration": [ - 2011 + 2015 ], "round": [ - 2011 + 2015 ], "__typename": [ - 70 + 74 ] }, "player_flashes_variance_fields": { @@ -47891,24 +48843,24 @@ export default { 29 ], "__typename": [ - 70 + 74 ] }, "player_flashes_variance_order_by": { "attacked_steam_id": [ - 2011 + 2015 ], "attacker_steam_id": [ - 2011 + 2015 ], "duration": [ - 2011 + 2015 ], "round": [ - 2011 + 2015 ], "__typename": [ - 70 + 74 ] }, "player_kills": { @@ -47916,43 +48868,43 @@ export default { 3 ], "attacked_location": [ - 70 + 74 ], "attacked_location_coordinates": [ - 70 + 74 ], "attacked_player": [ - 2878 + 2914 ], "attacked_steam_id": [ - 169 + 173 ], "attacked_team": [ - 70 + 74 ], "attacker_location": [ - 70 + 74 ], "attacker_location_coordinates": [ - 70 + 74 ], "attacker_steam_id": [ - 169 + 173 ], "attacker_team": [ - 70 + 74 ], "blinded": [ 3 ], "deleted_at": [ - 3421 + 3466 ], "headshot": [ 3 ], "hitgroup": [ - 70 + 74 ], "in_air": [ 3 @@ -47961,22 +48913,22 @@ export default { 3 ], "match": [ - 1826 + 1830 ], "match_id": [ - 3818 + 3863 ], "match_map": [ - 1664 + 1668 ], "match_map_id": [ - 3818 + 3863 ], "no_scope": [ 3 ], "player": [ - 2878 + 2914 ], "round": [ 38 @@ -47991,100 +48943,100 @@ export default { 3 ], "time": [ - 3421 + 3466 ], "with": [ - 70 + 74 ], "__typename": [ - 70 + 74 ] }, "player_kills_aggregate": { "aggregate": [ - 2372 + 2376 ], "nodes": [ - 2366 + 2370 ], "__typename": [ - 70 + 74 ] }, "player_kills_aggregate_bool_exp": { "bool_and": [ - 2369 + 2373 ], "bool_or": [ - 2370 + 2374 ], "count": [ - 2371 + 2375 ], "__typename": [ - 70 + 74 ] }, "player_kills_aggregate_bool_exp_bool_and": { "arguments": [ - 2431 + 2435 ], "distinct": [ 3 ], "filter": [ - 2377 + 2381 ], "predicate": [ 4 ], "__typename": [ - 70 + 74 ] }, "player_kills_aggregate_bool_exp_bool_or": { "arguments": [ - 2432 + 2436 ], "distinct": [ 3 ], "filter": [ - 2377 + 2381 ], "predicate": [ 4 ], "__typename": [ - 70 + 74 ] }, "player_kills_aggregate_bool_exp_count": { "arguments": [ - 2430 + 2434 ], "distinct": [ 3 ], "filter": [ - 2377 + 2381 ], "predicate": [ 39 ], "__typename": [ - 70 + 74 ] }, "player_kills_aggregate_fields": { "avg": [ - 2375 + 2379 ], "count": [ 38, { "columns": [ - 2430, + 2434, "[player_kills_select_column!]" ], "distinct": [ @@ -48093,83 +49045,83 @@ export default { } ], "max": [ - 2422 + 2426 ], "min": [ - 2424 + 2428 ], "stddev": [ - 2434 + 2438 ], "stddev_pop": [ - 2436 + 2440 ], "stddev_samp": [ - 2438 + 2442 ], "sum": [ - 2442 + 2446 ], "var_pop": [ - 2446 + 2450 ], "var_samp": [ - 2448 + 2452 ], "variance": [ - 2450 + 2454 ], "__typename": [ - 70 + 74 ] }, "player_kills_aggregate_order_by": { "avg": [ - 2376 + 2380 ], "count": [ - 2011 + 2015 ], "max": [ - 2423 + 2427 ], "min": [ - 2425 + 2429 ], "stddev": [ - 2435 + 2439 ], "stddev_pop": [ - 2437 + 2441 ], "stddev_samp": [ - 2439 + 2443 ], "sum": [ - 2443 + 2447 ], "var_pop": [ - 2447 + 2451 ], "var_samp": [ - 2449 + 2453 ], "variance": [ - 2451 + 2455 ], "__typename": [ - 70 + 74 ] }, "player_kills_arr_rel_insert_input": { "data": [ - 2421 + 2425 ], "on_conflict": [ - 2427 + 2431 ], "__typename": [ - 70 + 74 ] }, "player_kills_avg_fields": { @@ -48183,74 +49135,74 @@ export default { 29 ], "__typename": [ - 70 + 74 ] }, "player_kills_avg_order_by": { "attacked_steam_id": [ - 2011 + 2015 ], "attacker_steam_id": [ - 2011 + 2015 ], "round": [ - 2011 + 2015 ], "__typename": [ - 70 + 74 ] }, "player_kills_bool_exp": { "_and": [ - 2377 + 2381 ], "_not": [ - 2377 + 2381 ], "_or": [ - 2377 + 2381 ], "assisted": [ 4 ], "attacked_location": [ - 72 + 76 ], "attacked_location_coordinates": [ - 72 + 76 ], "attacked_player": [ - 2882 + 2918 ], "attacked_steam_id": [ - 171 + 175 ], "attacked_team": [ - 72 + 76 ], "attacker_location": [ - 72 + 76 ], "attacker_location_coordinates": [ - 72 + 76 ], "attacker_steam_id": [ - 171 + 175 ], "attacker_team": [ - 72 + 76 ], "blinded": [ 4 ], "deleted_at": [ - 3422 + 3467 ], "headshot": [ 4 ], "hitgroup": [ - 72 + 76 ], "in_air": [ 4 @@ -48259,22 +49211,22 @@ export default { 4 ], "match": [ - 1835 + 1839 ], "match_id": [ - 3820 + 3865 ], "match_map": [ - 1673 + 1677 ], "match_map_id": [ - 3820 + 3865 ], "no_scope": [ 4 ], "player": [ - 2882 + 2918 ], "round": [ 39 @@ -48289,77 +49241,77 @@ export default { 4 ], "time": [ - 3422 + 3467 ], "with": [ - 72 + 76 ], "__typename": [ - 70 + 74 ] }, "player_kills_by_weapon": { "kill_count": [ - 169 + 173 ], "player": [ - 2878 + 2914 ], "player_steam_id": [ - 169 + 173 ], "with": [ - 70 + 74 ], "__typename": [ - 70 + 74 ] }, "player_kills_by_weapon_aggregate": { "aggregate": [ - 2382 + 2386 ], "nodes": [ - 2378 + 2382 ], "__typename": [ - 70 + 74 ] }, "player_kills_by_weapon_aggregate_bool_exp": { "count": [ - 2381 + 2385 ], "__typename": [ - 70 + 74 ] }, "player_kills_by_weapon_aggregate_bool_exp_count": { "arguments": [ - 2399 + 2403 ], "distinct": [ 3 ], "filter": [ - 2387 + 2391 ], "predicate": [ 39 ], "__typename": [ - 70 + 74 ] }, "player_kills_by_weapon_aggregate_fields": { "avg": [ - 2385 + 2389 ], "count": [ 38, { "columns": [ - 2399, + 2403, "[player_kills_by_weapon_select_column!]" ], "distinct": [ @@ -48368,83 +49320,83 @@ export default { } ], "max": [ - 2391 + 2395 ], "min": [ - 2393 + 2397 ], "stddev": [ - 2401 + 2405 ], "stddev_pop": [ - 2403 + 2407 ], "stddev_samp": [ - 2405 + 2409 ], "sum": [ - 2409 + 2413 ], "var_pop": [ - 2413 + 2417 ], "var_samp": [ - 2415 + 2419 ], "variance": [ - 2417 + 2421 ], "__typename": [ - 70 + 74 ] }, "player_kills_by_weapon_aggregate_order_by": { "avg": [ - 2386 + 2390 ], "count": [ - 2011 + 2015 ], "max": [ - 2392 + 2396 ], "min": [ - 2394 + 2398 ], "stddev": [ - 2402 + 2406 ], "stddev_pop": [ - 2404 + 2408 ], "stddev_samp": [ - 2406 + 2410 ], "sum": [ - 2410 + 2414 ], "var_pop": [ - 2414 + 2418 ], "var_samp": [ - 2416 + 2420 ], "variance": [ - 2418 + 2422 ], "__typename": [ - 70 + 74 ] }, "player_kills_by_weapon_arr_rel_insert_input": { "data": [ - 2390 + 2394 ], "on_conflict": [ - 2396 + 2400 ], "__typename": [ - 70 + 74 ] }, "player_kills_by_weapon_avg_fields": { @@ -48455,129 +49407,129 @@ export default { 29 ], "__typename": [ - 70 + 74 ] }, "player_kills_by_weapon_avg_order_by": { "kill_count": [ - 2011 + 2015 ], "player_steam_id": [ - 2011 + 2015 ], "__typename": [ - 70 + 74 ] }, "player_kills_by_weapon_bool_exp": { "_and": [ - 2387 + 2391 ], "_not": [ - 2387 + 2391 ], "_or": [ - 2387 + 2391 ], "kill_count": [ - 171 + 175 ], "player": [ - 2882 + 2918 ], "player_steam_id": [ - 171 + 175 ], "with": [ - 72 + 76 ], "__typename": [ - 70 + 74 ] }, "player_kills_by_weapon_constraint": {}, "player_kills_by_weapon_inc_input": { "kill_count": [ - 169 + 173 ], "player_steam_id": [ - 169 + 173 ], "__typename": [ - 70 + 74 ] }, "player_kills_by_weapon_insert_input": { "kill_count": [ - 169 + 173 ], "player": [ - 2889 + 2925 ], "player_steam_id": [ - 169 + 173 ], "with": [ - 70 + 74 ], "__typename": [ - 70 + 74 ] }, "player_kills_by_weapon_max_fields": { "kill_count": [ - 169 + 173 ], "player_steam_id": [ - 169 + 173 ], "with": [ - 70 + 74 ], "__typename": [ - 70 + 74 ] }, "player_kills_by_weapon_max_order_by": { "kill_count": [ - 2011 + 2015 ], "player_steam_id": [ - 2011 + 2015 ], "with": [ - 2011 + 2015 ], "__typename": [ - 70 + 74 ] }, "player_kills_by_weapon_min_fields": { "kill_count": [ - 169 + 173 ], "player_steam_id": [ - 169 + 173 ], "with": [ - 70 + 74 ], "__typename": [ - 70 + 74 ] }, "player_kills_by_weapon_min_order_by": { "kill_count": [ - 2011 + 2015 ], "player_steam_id": [ - 2011 + 2015 ], "with": [ - 2011 + 2015 ], "__typename": [ - 70 + 74 ] }, "player_kills_by_weapon_mutation_response": { @@ -48585,67 +49537,67 @@ export default { 38 ], "returning": [ - 2378 + 2382 ], "__typename": [ - 70 + 74 ] }, "player_kills_by_weapon_on_conflict": { "constraint": [ - 2388 + 2392 ], "update_columns": [ - 2411 + 2415 ], "where": [ - 2387 + 2391 ], "__typename": [ - 70 + 74 ] }, "player_kills_by_weapon_order_by": { "kill_count": [ - 2011 + 2015 ], "player": [ - 2891 + 2927 ], "player_steam_id": [ - 2011 + 2015 ], "with": [ - 2011 + 2015 ], "__typename": [ - 70 + 74 ] }, "player_kills_by_weapon_pk_columns_input": { "player_steam_id": [ - 169 + 173 ], "with": [ - 70 + 74 ], "__typename": [ - 70 + 74 ] }, "player_kills_by_weapon_select_column": {}, "player_kills_by_weapon_set_input": { "kill_count": [ - 169 + 173 ], "player_steam_id": [ - 169 + 173 ], "with": [ - 70 + 74 ], "__typename": [ - 70 + 74 ] }, "player_kills_by_weapon_stddev_fields": { @@ -48656,18 +49608,18 @@ export default { 29 ], "__typename": [ - 70 + 74 ] }, "player_kills_by_weapon_stddev_order_by": { "kill_count": [ - 2011 + 2015 ], "player_steam_id": [ - 2011 + 2015 ], "__typename": [ - 70 + 74 ] }, "player_kills_by_weapon_stddev_pop_fields": { @@ -48678,18 +49630,18 @@ export default { 29 ], "__typename": [ - 70 + 74 ] }, "player_kills_by_weapon_stddev_pop_order_by": { "kill_count": [ - 2011 + 2015 ], "player_steam_id": [ - 2011 + 2015 ], "__typename": [ - 70 + 74 ] }, "player_kills_by_weapon_stddev_samp_fields": { @@ -48700,80 +49652,80 @@ export default { 29 ], "__typename": [ - 70 + 74 ] }, "player_kills_by_weapon_stddev_samp_order_by": { "kill_count": [ - 2011 + 2015 ], "player_steam_id": [ - 2011 + 2015 ], "__typename": [ - 70 + 74 ] }, "player_kills_by_weapon_stream_cursor_input": { "initial_value": [ - 2408 + 2412 ], "ordering": [ - 224 + 228 ], "__typename": [ - 70 + 74 ] }, "player_kills_by_weapon_stream_cursor_value_input": { "kill_count": [ - 169 + 173 ], "player_steam_id": [ - 169 + 173 ], "with": [ - 70 + 74 ], "__typename": [ - 70 + 74 ] }, "player_kills_by_weapon_sum_fields": { "kill_count": [ - 169 + 173 ], "player_steam_id": [ - 169 + 173 ], "__typename": [ - 70 + 74 ] }, "player_kills_by_weapon_sum_order_by": { "kill_count": [ - 2011 + 2015 ], "player_steam_id": [ - 2011 + 2015 ], "__typename": [ - 70 + 74 ] }, "player_kills_by_weapon_update_column": {}, "player_kills_by_weapon_updates": { "_inc": [ - 2389 + 2393 ], "_set": [ - 2400 + 2404 ], "where": [ - 2387 + 2391 ], "__typename": [ - 70 + 74 ] }, "player_kills_by_weapon_var_pop_fields": { @@ -48784,18 +49736,18 @@ export default { 29 ], "__typename": [ - 70 + 74 ] }, "player_kills_by_weapon_var_pop_order_by": { "kill_count": [ - 2011 + 2015 ], "player_steam_id": [ - 2011 + 2015 ], "__typename": [ - 70 + 74 ] }, "player_kills_by_weapon_var_samp_fields": { @@ -48806,18 +49758,18 @@ export default { 29 ], "__typename": [ - 70 + 74 ] }, "player_kills_by_weapon_var_samp_order_by": { "kill_count": [ - 2011 + 2015 ], "player_steam_id": [ - 2011 + 2015 ], "__typename": [ - 70 + 74 ] }, "player_kills_by_weapon_variance_fields": { @@ -48828,33 +49780,33 @@ export default { 29 ], "__typename": [ - 70 + 74 ] }, "player_kills_by_weapon_variance_order_by": { "kill_count": [ - 2011 + 2015 ], "player_steam_id": [ - 2011 + 2015 ], "__typename": [ - 70 + 74 ] }, "player_kills_constraint": {}, "player_kills_inc_input": { "attacked_steam_id": [ - 169 + 173 ], "attacker_steam_id": [ - 169 + 173 ], "round": [ 38 ], "__typename": [ - 70 + 74 ] }, "player_kills_insert_input": { @@ -48862,64 +49814,64 @@ export default { 3 ], "attacked_location": [ - 70 + 74 ], "attacked_location_coordinates": [ - 70 + 74 ], "attacked_player": [ - 2889 + 2925 ], "attacked_steam_id": [ - 169 + 173 ], "attacked_team": [ - 70 + 74 ], "attacker_location": [ - 70 + 74 ], "attacker_location_coordinates": [ - 70 + 74 ], "attacker_steam_id": [ - 169 + 173 ], "attacker_team": [ - 70 + 74 ], "blinded": [ 3 ], "deleted_at": [ - 3421 + 3466 ], "headshot": [ 3 ], "hitgroup": [ - 70 + 74 ], "in_air": [ 3 ], "match": [ - 1844 + 1848 ], "match_id": [ - 3818 + 3863 ], "match_map": [ - 1682 + 1686 ], "match_map_id": [ - 3818 + 3863 ], "no_scope": [ 3 ], "player": [ - 2889 + 2925 ], "round": [ 38 @@ -48931,213 +49883,213 @@ export default { 3 ], "time": [ - 3421 + 3466 ], "with": [ - 70 + 74 ], "__typename": [ - 70 + 74 ] }, "player_kills_max_fields": { "attacked_location": [ - 70 + 74 ], "attacked_location_coordinates": [ - 70 + 74 ], "attacked_steam_id": [ - 169 + 173 ], "attacked_team": [ - 70 + 74 ], "attacker_location": [ - 70 + 74 ], "attacker_location_coordinates": [ - 70 + 74 ], "attacker_steam_id": [ - 169 + 173 ], "attacker_team": [ - 70 + 74 ], "deleted_at": [ - 3421 + 3466 ], "hitgroup": [ - 70 + 74 ], "match_id": [ - 3818 + 3863 ], "match_map_id": [ - 3818 + 3863 ], "round": [ 38 ], "time": [ - 3421 + 3466 ], "with": [ - 70 + 74 ], "__typename": [ - 70 + 74 ] }, "player_kills_max_order_by": { "attacked_location": [ - 2011 + 2015 ], "attacked_location_coordinates": [ - 2011 + 2015 ], "attacked_steam_id": [ - 2011 + 2015 ], "attacked_team": [ - 2011 + 2015 ], "attacker_location": [ - 2011 + 2015 ], "attacker_location_coordinates": [ - 2011 + 2015 ], "attacker_steam_id": [ - 2011 + 2015 ], "attacker_team": [ - 2011 + 2015 ], "deleted_at": [ - 2011 + 2015 ], "hitgroup": [ - 2011 + 2015 ], "match_id": [ - 2011 + 2015 ], "match_map_id": [ - 2011 + 2015 ], "round": [ - 2011 + 2015 ], "time": [ - 2011 + 2015 ], "with": [ - 2011 + 2015 ], "__typename": [ - 70 + 74 ] }, "player_kills_min_fields": { "attacked_location": [ - 70 + 74 ], "attacked_location_coordinates": [ - 70 + 74 ], "attacked_steam_id": [ - 169 + 173 ], "attacked_team": [ - 70 + 74 ], "attacker_location": [ - 70 + 74 ], "attacker_location_coordinates": [ - 70 + 74 ], "attacker_steam_id": [ - 169 + 173 ], "attacker_team": [ - 70 + 74 ], "deleted_at": [ - 3421 + 3466 ], "hitgroup": [ - 70 + 74 ], "match_id": [ - 3818 + 3863 ], "match_map_id": [ - 3818 + 3863 ], "round": [ 38 ], "time": [ - 3421 + 3466 ], "with": [ - 70 + 74 ], "__typename": [ - 70 + 74 ] }, "player_kills_min_order_by": { "attacked_location": [ - 2011 + 2015 ], "attacked_location_coordinates": [ - 2011 + 2015 ], "attacked_steam_id": [ - 2011 + 2015 ], "attacked_team": [ - 2011 + 2015 ], "attacker_location": [ - 2011 + 2015 ], "attacker_location_coordinates": [ - 2011 + 2015 ], "attacker_steam_id": [ - 2011 + 2015 ], "attacker_team": [ - 2011 + 2015 ], "deleted_at": [ - 2011 + 2015 ], "hitgroup": [ - 2011 + 2015 ], "match_id": [ - 2011 + 2015 ], "match_map_id": [ - 2011 + 2015 ], "round": [ - 2011 + 2015 ], "time": [ - 2011 + 2015 ], "with": [ - 2011 + 2015 ], "__typename": [ - 70 + 74 ] }, "player_kills_mutation_response": { @@ -49145,130 +50097,130 @@ export default { 38 ], "returning": [ - 2366 + 2370 ], "__typename": [ - 70 + 74 ] }, "player_kills_on_conflict": { "constraint": [ - 2419 + 2423 ], "update_columns": [ - 2444 + 2448 ], "where": [ - 2377 + 2381 ], "__typename": [ - 70 + 74 ] }, "player_kills_order_by": { "assisted": [ - 2011 + 2015 ], "attacked_location": [ - 2011 + 2015 ], "attacked_location_coordinates": [ - 2011 + 2015 ], "attacked_player": [ - 2891 + 2927 ], "attacked_steam_id": [ - 2011 + 2015 ], "attacked_team": [ - 2011 + 2015 ], "attacker_location": [ - 2011 + 2015 ], "attacker_location_coordinates": [ - 2011 + 2015 ], "attacker_steam_id": [ - 2011 + 2015 ], "attacker_team": [ - 2011 + 2015 ], "blinded": [ - 2011 + 2015 ], "deleted_at": [ - 2011 + 2015 ], "headshot": [ - 2011 + 2015 ], "hitgroup": [ - 2011 + 2015 ], "in_air": [ - 2011 + 2015 ], "is_suicide": [ - 2011 + 2015 ], "match": [ - 1846 + 1850 ], "match_id": [ - 2011 + 2015 ], "match_map": [ - 1684 + 1688 ], "match_map_id": [ - 2011 + 2015 ], "no_scope": [ - 2011 + 2015 ], "player": [ - 2891 + 2927 ], "round": [ - 2011 + 2015 ], "team_kill": [ - 2011 + 2015 ], "thru_smoke": [ - 2011 + 2015 ], "thru_wall": [ - 2011 + 2015 ], "time": [ - 2011 + 2015 ], "with": [ - 2011 + 2015 ], "__typename": [ - 70 + 74 ] }, "player_kills_pk_columns_input": { "attacked_steam_id": [ - 169 + 173 ], "attacker_steam_id": [ - 169 + 173 ], "match_map_id": [ - 3818 + 3863 ], "time": [ - 3421 + 3466 ], "__typename": [ - 70 + 74 ] }, "player_kills_select_column": {}, @@ -49279,49 +50231,49 @@ export default { 3 ], "attacked_location": [ - 70 + 74 ], "attacked_location_coordinates": [ - 70 + 74 ], "attacked_steam_id": [ - 169 + 173 ], "attacked_team": [ - 70 + 74 ], "attacker_location": [ - 70 + 74 ], "attacker_location_coordinates": [ - 70 + 74 ], "attacker_steam_id": [ - 169 + 173 ], "attacker_team": [ - 70 + 74 ], "blinded": [ 3 ], "deleted_at": [ - 3421 + 3466 ], "headshot": [ 3 ], "hitgroup": [ - 70 + 74 ], "in_air": [ 3 ], "match_id": [ - 3818 + 3863 ], "match_map_id": [ - 3818 + 3863 ], "no_scope": [ 3 @@ -49336,13 +50288,13 @@ export default { 3 ], "time": [ - 3421 + 3466 ], "with": [ - 70 + 74 ], "__typename": [ - 70 + 74 ] }, "player_kills_stddev_fields": { @@ -49356,21 +50308,21 @@ export default { 29 ], "__typename": [ - 70 + 74 ] }, "player_kills_stddev_order_by": { "attacked_steam_id": [ - 2011 + 2015 ], "attacker_steam_id": [ - 2011 + 2015 ], "round": [ - 2011 + 2015 ], "__typename": [ - 70 + 74 ] }, "player_kills_stddev_pop_fields": { @@ -49384,21 +50336,21 @@ export default { 29 ], "__typename": [ - 70 + 74 ] }, "player_kills_stddev_pop_order_by": { "attacked_steam_id": [ - 2011 + 2015 ], "attacker_steam_id": [ - 2011 + 2015 ], "round": [ - 2011 + 2015 ], "__typename": [ - 70 + 74 ] }, "player_kills_stddev_samp_fields": { @@ -49412,32 +50364,32 @@ export default { 29 ], "__typename": [ - 70 + 74 ] }, "player_kills_stddev_samp_order_by": { "attacked_steam_id": [ - 2011 + 2015 ], "attacker_steam_id": [ - 2011 + 2015 ], "round": [ - 2011 + 2015 ], "__typename": [ - 70 + 74 ] }, "player_kills_stream_cursor_input": { "initial_value": [ - 2441 + 2445 ], "ordering": [ - 224 + 228 ], "__typename": [ - 70 + 74 ] }, "player_kills_stream_cursor_value_input": { @@ -49445,49 +50397,49 @@ export default { 3 ], "attacked_location": [ - 70 + 74 ], "attacked_location_coordinates": [ - 70 + 74 ], "attacked_steam_id": [ - 169 + 173 ], "attacked_team": [ - 70 + 74 ], "attacker_location": [ - 70 + 74 ], "attacker_location_coordinates": [ - 70 + 74 ], "attacker_steam_id": [ - 169 + 173 ], "attacker_team": [ - 70 + 74 ], "blinded": [ 3 ], "deleted_at": [ - 3421 + 3466 ], "headshot": [ 3 ], "hitgroup": [ - 70 + 74 ], "in_air": [ 3 ], "match_id": [ - 3818 + 3863 ], "match_map_id": [ - 3818 + 3863 ], "no_scope": [ 3 @@ -49502,56 +50454,56 @@ export default { 3 ], "time": [ - 3421 + 3466 ], "with": [ - 70 + 74 ], "__typename": [ - 70 + 74 ] }, "player_kills_sum_fields": { "attacked_steam_id": [ - 169 + 173 ], "attacker_steam_id": [ - 169 + 173 ], "round": [ 38 ], "__typename": [ - 70 + 74 ] }, "player_kills_sum_order_by": { "attacked_steam_id": [ - 2011 + 2015 ], "attacker_steam_id": [ - 2011 + 2015 ], "round": [ - 2011 + 2015 ], "__typename": [ - 70 + 74 ] }, "player_kills_update_column": {}, "player_kills_updates": { "_inc": [ - 2420 + 2424 ], "_set": [ - 2433 + 2437 ], "where": [ - 2377 + 2381 ], "__typename": [ - 70 + 74 ] }, "player_kills_var_pop_fields": { @@ -49565,21 +50517,21 @@ export default { 29 ], "__typename": [ - 70 + 74 ] }, "player_kills_var_pop_order_by": { "attacked_steam_id": [ - 2011 + 2015 ], "attacker_steam_id": [ - 2011 + 2015 ], "round": [ - 2011 + 2015 ], "__typename": [ - 70 + 74 ] }, "player_kills_var_samp_fields": { @@ -49593,21 +50545,21 @@ export default { 29 ], "__typename": [ - 70 + 74 ] }, "player_kills_var_samp_order_by": { "attacked_steam_id": [ - 2011 + 2015 ], "attacker_steam_id": [ - 2011 + 2015 ], "round": [ - 2011 + 2015 ], "__typename": [ - 70 + 74 ] }, "player_kills_variance_fields": { @@ -49621,26 +50573,26 @@ export default { 29 ], "__typename": [ - 70 + 74 ] }, "player_kills_variance_order_by": { "attacked_steam_id": [ - 2011 + 2015 ], "attacker_steam_id": [ - 2011 + 2015 ], "round": [ - 2011 + 2015 ], "__typename": [ - 70 + 74 ] }, "player_leaderboard_rank": { "player_steam_id": [ - 70 + 74 ], "rank": [ 38 @@ -49649,32 +50601,32 @@ export default { 38 ], "value": [ - 1084 + 1088 ], "__typename": [ - 70 + 74 ] }, "player_leaderboard_rank_aggregate": { "aggregate": [ - 2454 + 2458 ], "nodes": [ - 2452 + 2456 ], "__typename": [ - 70 + 74 ] }, "player_leaderboard_rank_aggregate_fields": { "avg": [ - 2455 + 2459 ], "count": [ 38, { "columns": [ - 2463, + 2467, "[player_leaderboard_rank_select_column!]" ], "distinct": [ @@ -49683,34 +50635,34 @@ export default { } ], "max": [ - 2459 + 2463 ], "min": [ - 2460 + 2464 ], "stddev": [ - 2465 + 2469 ], "stddev_pop": [ - 2466 + 2470 ], "stddev_samp": [ - 2467 + 2471 ], "sum": [ - 2470 + 2474 ], "var_pop": [ - 2472 + 2476 ], "var_samp": [ - 2473 + 2477 ], "variance": [ - 2474 + 2478 ], "__typename": [ - 70 + 74 ] }, "player_leaderboard_rank_avg_fields": { @@ -49724,21 +50676,21 @@ export default { 29 ], "__typename": [ - 70 + 74 ] }, "player_leaderboard_rank_bool_exp": { "_and": [ - 2456 + 2460 ], "_not": [ - 2456 + 2460 ], "_or": [ - 2456 + 2460 ], "player_steam_id": [ - 72 + 76 ], "rank": [ 39 @@ -49747,10 +50699,10 @@ export default { 39 ], "value": [ - 1085 + 1089 ], "__typename": [ - 70 + 74 ] }, "player_leaderboard_rank_inc_input": { @@ -49761,15 +50713,15 @@ export default { 38 ], "value": [ - 1084 + 1088 ], "__typename": [ - 70 + 74 ] }, "player_leaderboard_rank_insert_input": { "player_steam_id": [ - 70 + 74 ], "rank": [ 38 @@ -49778,15 +50730,15 @@ export default { 38 ], "value": [ - 1084 + 1088 ], "__typename": [ - 70 + 74 ] }, "player_leaderboard_rank_max_fields": { "player_steam_id": [ - 70 + 74 ], "rank": [ 38 @@ -49795,15 +50747,15 @@ export default { 38 ], "value": [ - 1084 + 1088 ], "__typename": [ - 70 + 74 ] }, "player_leaderboard_rank_min_fields": { "player_steam_id": [ - 70 + 74 ], "rank": [ 38 @@ -49812,10 +50764,10 @@ export default { 38 ], "value": [ - 1084 + 1088 ], "__typename": [ - 70 + 74 ] }, "player_leaderboard_rank_mutation_response": { @@ -49823,33 +50775,33 @@ export default { 38 ], "returning": [ - 2452 + 2456 ], "__typename": [ - 70 + 74 ] }, "player_leaderboard_rank_order_by": { "player_steam_id": [ - 2011 + 2015 ], "rank": [ - 2011 + 2015 ], "total": [ - 2011 + 2015 ], "value": [ - 2011 + 2015 ], "__typename": [ - 70 + 74 ] }, "player_leaderboard_rank_select_column": {}, "player_leaderboard_rank_set_input": { "player_steam_id": [ - 70 + 74 ], "rank": [ 38 @@ -49858,10 +50810,10 @@ export default { 38 ], "value": [ - 1084 + 1088 ], "__typename": [ - 70 + 74 ] }, "player_leaderboard_rank_stddev_fields": { @@ -49875,7 +50827,7 @@ export default { 29 ], "__typename": [ - 70 + 74 ] }, "player_leaderboard_rank_stddev_pop_fields": { @@ -49889,7 +50841,7 @@ export default { 29 ], "__typename": [ - 70 + 74 ] }, "player_leaderboard_rank_stddev_samp_fields": { @@ -49903,23 +50855,23 @@ export default { 29 ], "__typename": [ - 70 + 74 ] }, "player_leaderboard_rank_stream_cursor_input": { "initial_value": [ - 2469 + 2473 ], "ordering": [ - 224 + 228 ], "__typename": [ - 70 + 74 ] }, "player_leaderboard_rank_stream_cursor_value_input": { "player_steam_id": [ - 70 + 74 ], "rank": [ 38 @@ -49928,10 +50880,10 @@ export default { 38 ], "value": [ - 1084 + 1088 ], "__typename": [ - 70 + 74 ] }, "player_leaderboard_rank_sum_fields": { @@ -49942,24 +50894,24 @@ export default { 38 ], "value": [ - 1084 + 1088 ], "__typename": [ - 70 + 74 ] }, "player_leaderboard_rank_updates": { "_inc": [ - 2457 + 2461 ], "_set": [ - 2464 + 2468 ], "where": [ - 2456 + 2460 ], "__typename": [ - 70 + 74 ] }, "player_leaderboard_rank_var_pop_fields": { @@ -49973,7 +50925,7 @@ export default { 29 ], "__typename": [ - 70 + 74 ] }, "player_leaderboard_rank_var_samp_fields": { @@ -49987,7 +50939,7 @@ export default { 29 ], "__typename": [ - 70 + 74 ] }, "player_leaderboard_rank_variance_fields": { @@ -50001,7 +50953,7 @@ export default { 29 ], "__typename": [ - 70 + 74 ] }, "player_match_map_stats": { @@ -50024,7 +50976,7 @@ export default { 38 ], "crosshair_angle_sum_deg": [ - 2009 + 2013 ], "damage": [ 38 @@ -50066,7 +51018,7 @@ export default { 38 ], "flash_duration_sum": [ - 2009 + 2013 ], "flashes_thrown": [ 38 @@ -50120,16 +51072,16 @@ export default { 38 ], "match": [ - 1826 + 1830 ], "match_id": [ - 3818 + 3863 ], "match_map": [ - 1664 + 1668 ], "match_map_id": [ - 3818 + 3863 ], "molotov_damage": [ 38 @@ -50144,7 +51096,7 @@ export default { 38 ], "player": [ - 2878 + 2914 ], "rounds_ct": [ 38 @@ -50177,7 +51129,7 @@ export default { 38 ], "steam_id": [ - 169 + 173 ], "team_damage": [ 38 @@ -50192,7 +51144,7 @@ export default { 38 ], "time_to_damage_sum_s": [ - 2009 + 2013 ], "total_engagement_frames": [ 38 @@ -50222,7 +51174,7 @@ export default { 38 ], "updated_at": [ - 3421 + 3466 ], "util_on_death_count": [ 38 @@ -50237,54 +51189,54 @@ export default { 38 ], "__typename": [ - 70 + 74 ] }, "player_match_map_stats_aggregate": { "aggregate": [ - 2479 + 2483 ], "nodes": [ - 2475 + 2479 ], "__typename": [ - 70 + 74 ] }, "player_match_map_stats_aggregate_bool_exp": { "count": [ - 2478 + 2482 ], "__typename": [ - 70 + 74 ] }, "player_match_map_stats_aggregate_bool_exp_count": { "arguments": [ - 2496 + 2500 ], "distinct": [ 3 ], "filter": [ - 2484 + 2488 ], "predicate": [ 39 ], "__typename": [ - 70 + 74 ] }, "player_match_map_stats_aggregate_fields": { "avg": [ - 2482 + 2486 ], "count": [ 38, { "columns": [ - 2496, + 2500, "[player_match_map_stats_select_column!]" ], "distinct": [ @@ -50293,83 +51245,83 @@ export default { } ], "max": [ - 2488 + 2492 ], "min": [ - 2490 + 2494 ], "stddev": [ - 2498 + 2502 ], "stddev_pop": [ - 2500 + 2504 ], "stddev_samp": [ - 2502 + 2506 ], "sum": [ - 2506 + 2510 ], "var_pop": [ - 2510 + 2514 ], "var_samp": [ - 2512 + 2516 ], "variance": [ - 2514 + 2518 ], "__typename": [ - 70 + 74 ] }, "player_match_map_stats_aggregate_order_by": { "avg": [ - 2483 + 2487 ], "count": [ - 2011 + 2015 ], "max": [ - 2489 + 2493 ], "min": [ - 2491 + 2495 ], "stddev": [ - 2499 + 2503 ], "stddev_pop": [ - 2501 + 2505 ], "stddev_samp": [ - 2503 + 2507 ], "sum": [ - 2507 + 2511 ], "var_pop": [ - 2511 + 2515 ], "var_samp": [ - 2513 + 2517 ], "variance": [ - 2515 + 2519 ], "__typename": [ - 70 + 74 ] }, "player_match_map_stats_arr_rel_insert_input": { "data": [ - 2487 + 2491 ], "on_conflict": [ - 2493 + 2497 ], "__typename": [ - 70 + 74 ] }, "player_match_map_stats_avg_fields": { @@ -50587,236 +51539,236 @@ export default { 29 ], "__typename": [ - 70 + 74 ] }, "player_match_map_stats_avg_order_by": { "assists": [ - 2011 + 2015 ], "assists_ct": [ - 2011 + 2015 ], "assists_t": [ - 2011 + 2015 ], "counter_strafe_eligible_shots": [ - 2011 + 2015 ], "counter_strafed_shots": [ - 2011 + 2015 ], "crosshair_angle_count": [ - 2011 + 2015 ], "crosshair_angle_sum_deg": [ - 2011 + 2015 ], "damage": [ - 2011 + 2015 ], "damage_ct": [ - 2011 + 2015 ], "damage_t": [ - 2011 + 2015 ], "deaths": [ - 2011 + 2015 ], "deaths_ct": [ - 2011 + 2015 ], "deaths_t": [ - 2011 + 2015 ], "decoy_throws": [ - 2011 + 2015 ], "enemies_flashed": [ - 2011 + 2015 ], "first_bullet_hits": [ - 2011 + 2015 ], "first_bullet_shots": [ - 2011 + 2015 ], "five_kill_rounds": [ - 2011 + 2015 ], "flash_assists": [ - 2011 + 2015 ], "flash_duration_count": [ - 2011 + 2015 ], "flash_duration_sum": [ - 2011 + 2015 ], "flashes_thrown": [ - 2011 + 2015 ], "four_kill_rounds": [ - 2011 + 2015 ], "he_damage": [ - 2011 + 2015 ], "he_team_damage": [ - 2011 + 2015 ], "he_throws": [ - 2011 + 2015 ], "headshot_hits": [ - 2011 + 2015 ], "hits": [ - 2011 + 2015 ], "hits_at_spotted": [ - 2011 + 2015 ], "hs_kills": [ - 2011 + 2015 ], "hs_kills_ct": [ - 2011 + 2015 ], "hs_kills_t": [ - 2011 + 2015 ], "kast_rounds": [ - 2011 + 2015 ], "kast_total_rounds": [ - 2011 + 2015 ], "kills": [ - 2011 + 2015 ], "kills_ct": [ - 2011 + 2015 ], "kills_t": [ - 2011 + 2015 ], "knife_kills": [ - 2011 + 2015 ], "molotov_damage": [ - 2011 + 2015 ], "molotov_throws": [ - 2011 + 2015 ], "non_awp_hits": [ - 2011 + 2015 ], "on_target_frames": [ - 2011 + 2015 ], "rounds_ct": [ - 2011 + 2015 ], "rounds_played": [ - 2011 + 2015 ], "rounds_t": [ - 2011 + 2015 ], "shots_at_spotted": [ - 2011 + 2015 ], "shots_fired": [ - 2011 + 2015 ], "smoke_throws": [ - 2011 + 2015 ], "spotted_count": [ - 2011 + 2015 ], "spotted_with_damage_count": [ - 2011 + 2015 ], "spray_hits": [ - 2011 + 2015 ], "spray_shots": [ - 2011 + 2015 ], "steam_id": [ - 2011 + 2015 ], "team_damage": [ - 2011 + 2015 ], "team_flashed": [ - 2011 + 2015 ], "three_kill_rounds": [ - 2011 + 2015 ], "time_to_damage_count": [ - 2011 + 2015 ], "time_to_damage_sum_s": [ - 2011 + 2015 ], "total_engagement_frames": [ - 2011 + 2015 ], "trade_kill_attempts": [ - 2011 + 2015 ], "trade_kill_opportunities": [ - 2011 + 2015 ], "trade_kill_successes": [ - 2011 + 2015 ], "traded_death_attempts": [ - 2011 + 2015 ], "traded_death_opportunities": [ - 2011 + 2015 ], "traded_death_successes": [ - 2011 + 2015 ], "two_kill_rounds": [ - 2011 + 2015 ], "unused_utility_value": [ - 2011 + 2015 ], "util_on_death_count": [ - 2011 + 2015 ], "util_on_death_sum": [ - 2011 + 2015 ], "wasted_magazine_shots": [ - 2011 + 2015 ], "zeus_kills": [ - 2011 + 2015 ], "__typename": [ - 70 + 74 ] }, "player_match_map_stats_bool_exp": { "_and": [ - 2484 + 2488 ], "_not": [ - 2484 + 2488 ], "_or": [ - 2484 + 2488 ], "assists": [ 39 @@ -50837,7 +51789,7 @@ export default { 39 ], "crosshair_angle_sum_deg": [ - 2010 + 2014 ], "damage": [ 39 @@ -50879,7 +51831,7 @@ export default { 39 ], "flash_duration_sum": [ - 2010 + 2014 ], "flashes_thrown": [ 39 @@ -50933,16 +51885,16 @@ export default { 39 ], "match": [ - 1835 + 1839 ], "match_id": [ - 3820 + 3865 ], "match_map": [ - 1673 + 1677 ], "match_map_id": [ - 3820 + 3865 ], "molotov_damage": [ 39 @@ -50957,7 +51909,7 @@ export default { 39 ], "player": [ - 2882 + 2918 ], "rounds_ct": [ 39 @@ -50990,7 +51942,7 @@ export default { 39 ], "steam_id": [ - 171 + 175 ], "team_damage": [ 39 @@ -51005,7 +51957,7 @@ export default { 39 ], "time_to_damage_sum_s": [ - 2010 + 2014 ], "total_engagement_frames": [ 39 @@ -51035,7 +51987,7 @@ export default { 39 ], "updated_at": [ - 3422 + 3467 ], "util_on_death_count": [ 39 @@ -51050,7 +52002,7 @@ export default { 39 ], "__typename": [ - 70 + 74 ] }, "player_match_map_stats_constraint": {}, @@ -51074,7 +52026,7 @@ export default { 38 ], "crosshair_angle_sum_deg": [ - 2009 + 2013 ], "damage": [ 38 @@ -51116,7 +52068,7 @@ export default { 38 ], "flash_duration_sum": [ - 2009 + 2013 ], "flashes_thrown": [ 38 @@ -51212,7 +52164,7 @@ export default { 38 ], "steam_id": [ - 169 + 173 ], "team_damage": [ 38 @@ -51227,7 +52179,7 @@ export default { 38 ], "time_to_damage_sum_s": [ - 2009 + 2013 ], "total_engagement_frames": [ 38 @@ -51269,7 +52221,7 @@ export default { 38 ], "__typename": [ - 70 + 74 ] }, "player_match_map_stats_insert_input": { @@ -51292,7 +52244,7 @@ export default { 38 ], "crosshair_angle_sum_deg": [ - 2009 + 2013 ], "damage": [ 38 @@ -51334,7 +52286,7 @@ export default { 38 ], "flash_duration_sum": [ - 2009 + 2013 ], "flashes_thrown": [ 38 @@ -51388,16 +52340,16 @@ export default { 38 ], "match": [ - 1844 + 1848 ], "match_id": [ - 3818 + 3863 ], "match_map": [ - 1682 + 1686 ], "match_map_id": [ - 3818 + 3863 ], "molotov_damage": [ 38 @@ -51412,7 +52364,7 @@ export default { 38 ], "player": [ - 2889 + 2925 ], "rounds_ct": [ 38 @@ -51445,7 +52397,7 @@ export default { 38 ], "steam_id": [ - 169 + 173 ], "team_damage": [ 38 @@ -51460,7 +52412,7 @@ export default { 38 ], "time_to_damage_sum_s": [ - 2009 + 2013 ], "total_engagement_frames": [ 38 @@ -51490,7 +52442,7 @@ export default { 38 ], "updated_at": [ - 3421 + 3466 ], "util_on_death_count": [ 38 @@ -51505,7 +52457,7 @@ export default { 38 ], "__typename": [ - 70 + 74 ] }, "player_match_map_stats_max_fields": { @@ -51528,7 +52480,7 @@ export default { 38 ], "crosshair_angle_sum_deg": [ - 2009 + 2013 ], "damage": [ 38 @@ -51570,7 +52522,7 @@ export default { 38 ], "flash_duration_sum": [ - 2009 + 2013 ], "flashes_thrown": [ 38 @@ -51624,10 +52576,10 @@ export default { 38 ], "match_id": [ - 3818 + 3863 ], "match_map_id": [ - 3818 + 3863 ], "molotov_damage": [ 38 @@ -51672,7 +52624,7 @@ export default { 38 ], "steam_id": [ - 169 + 173 ], "team_damage": [ 38 @@ -51687,7 +52639,7 @@ export default { 38 ], "time_to_damage_sum_s": [ - 2009 + 2013 ], "total_engagement_frames": [ 38 @@ -51717,7 +52669,7 @@ export default { 38 ], "updated_at": [ - 3421 + 3466 ], "util_on_death_count": [ 38 @@ -51732,234 +52684,234 @@ export default { 38 ], "__typename": [ - 70 + 74 ] }, "player_match_map_stats_max_order_by": { "assists": [ - 2011 + 2015 ], "assists_ct": [ - 2011 + 2015 ], "assists_t": [ - 2011 + 2015 ], "counter_strafe_eligible_shots": [ - 2011 + 2015 ], "counter_strafed_shots": [ - 2011 + 2015 ], "crosshair_angle_count": [ - 2011 + 2015 ], "crosshair_angle_sum_deg": [ - 2011 + 2015 ], "damage": [ - 2011 + 2015 ], "damage_ct": [ - 2011 + 2015 ], "damage_t": [ - 2011 + 2015 ], "deaths": [ - 2011 + 2015 ], "deaths_ct": [ - 2011 + 2015 ], "deaths_t": [ - 2011 + 2015 ], "decoy_throws": [ - 2011 + 2015 ], "enemies_flashed": [ - 2011 + 2015 ], "first_bullet_hits": [ - 2011 + 2015 ], "first_bullet_shots": [ - 2011 + 2015 ], "five_kill_rounds": [ - 2011 + 2015 ], "flash_assists": [ - 2011 + 2015 ], "flash_duration_count": [ - 2011 + 2015 ], "flash_duration_sum": [ - 2011 + 2015 ], "flashes_thrown": [ - 2011 + 2015 ], "four_kill_rounds": [ - 2011 + 2015 ], "he_damage": [ - 2011 + 2015 ], "he_team_damage": [ - 2011 + 2015 ], "he_throws": [ - 2011 + 2015 ], "headshot_hits": [ - 2011 + 2015 ], "hits": [ - 2011 + 2015 ], "hits_at_spotted": [ - 2011 + 2015 ], "hs_kills": [ - 2011 + 2015 ], "hs_kills_ct": [ - 2011 + 2015 ], "hs_kills_t": [ - 2011 + 2015 ], "kast_rounds": [ - 2011 + 2015 ], "kast_total_rounds": [ - 2011 + 2015 ], "kills": [ - 2011 + 2015 ], "kills_ct": [ - 2011 + 2015 ], "kills_t": [ - 2011 + 2015 ], "knife_kills": [ - 2011 + 2015 ], "match_id": [ - 2011 + 2015 ], "match_map_id": [ - 2011 + 2015 ], "molotov_damage": [ - 2011 + 2015 ], "molotov_throws": [ - 2011 + 2015 ], "non_awp_hits": [ - 2011 + 2015 ], "on_target_frames": [ - 2011 + 2015 ], "rounds_ct": [ - 2011 + 2015 ], "rounds_played": [ - 2011 + 2015 ], "rounds_t": [ - 2011 + 2015 ], "shots_at_spotted": [ - 2011 + 2015 ], "shots_fired": [ - 2011 + 2015 ], "smoke_throws": [ - 2011 + 2015 ], "spotted_count": [ - 2011 + 2015 ], "spotted_with_damage_count": [ - 2011 + 2015 ], "spray_hits": [ - 2011 + 2015 ], "spray_shots": [ - 2011 + 2015 ], "steam_id": [ - 2011 + 2015 ], "team_damage": [ - 2011 + 2015 ], "team_flashed": [ - 2011 + 2015 ], "three_kill_rounds": [ - 2011 + 2015 ], "time_to_damage_count": [ - 2011 + 2015 ], "time_to_damage_sum_s": [ - 2011 + 2015 ], "total_engagement_frames": [ - 2011 + 2015 ], "trade_kill_attempts": [ - 2011 + 2015 ], "trade_kill_opportunities": [ - 2011 + 2015 ], "trade_kill_successes": [ - 2011 + 2015 ], "traded_death_attempts": [ - 2011 + 2015 ], "traded_death_opportunities": [ - 2011 + 2015 ], "traded_death_successes": [ - 2011 + 2015 ], "two_kill_rounds": [ - 2011 + 2015 ], "unused_utility_value": [ - 2011 + 2015 ], "updated_at": [ - 2011 + 2015 ], "util_on_death_count": [ - 2011 + 2015 ], "util_on_death_sum": [ - 2011 + 2015 ], "wasted_magazine_shots": [ - 2011 + 2015 ], "zeus_kills": [ - 2011 + 2015 ], "__typename": [ - 70 + 74 ] }, "player_match_map_stats_min_fields": { @@ -51982,7 +52934,7 @@ export default { 38 ], "crosshair_angle_sum_deg": [ - 2009 + 2013 ], "damage": [ 38 @@ -52024,7 +52976,7 @@ export default { 38 ], "flash_duration_sum": [ - 2009 + 2013 ], "flashes_thrown": [ 38 @@ -52078,10 +53030,10 @@ export default { 38 ], "match_id": [ - 3818 + 3863 ], "match_map_id": [ - 3818 + 3863 ], "molotov_damage": [ 38 @@ -52126,7 +53078,7 @@ export default { 38 ], "steam_id": [ - 169 + 173 ], "team_damage": [ 38 @@ -52141,7 +53093,7 @@ export default { 38 ], "time_to_damage_sum_s": [ - 2009 + 2013 ], "total_engagement_frames": [ 38 @@ -52171,7 +53123,7 @@ export default { 38 ], "updated_at": [ - 3421 + 3466 ], "util_on_death_count": [ 38 @@ -52186,234 +53138,234 @@ export default { 38 ], "__typename": [ - 70 + 74 ] }, "player_match_map_stats_min_order_by": { "assists": [ - 2011 + 2015 ], "assists_ct": [ - 2011 + 2015 ], "assists_t": [ - 2011 + 2015 ], "counter_strafe_eligible_shots": [ - 2011 + 2015 ], "counter_strafed_shots": [ - 2011 + 2015 ], "crosshair_angle_count": [ - 2011 + 2015 ], "crosshair_angle_sum_deg": [ - 2011 + 2015 ], "damage": [ - 2011 + 2015 ], "damage_ct": [ - 2011 + 2015 ], "damage_t": [ - 2011 + 2015 ], "deaths": [ - 2011 + 2015 ], "deaths_ct": [ - 2011 + 2015 ], "deaths_t": [ - 2011 + 2015 ], "decoy_throws": [ - 2011 + 2015 ], "enemies_flashed": [ - 2011 + 2015 ], "first_bullet_hits": [ - 2011 + 2015 ], "first_bullet_shots": [ - 2011 + 2015 ], "five_kill_rounds": [ - 2011 + 2015 ], "flash_assists": [ - 2011 + 2015 ], "flash_duration_count": [ - 2011 + 2015 ], "flash_duration_sum": [ - 2011 + 2015 ], "flashes_thrown": [ - 2011 + 2015 ], "four_kill_rounds": [ - 2011 + 2015 ], "he_damage": [ - 2011 + 2015 ], "he_team_damage": [ - 2011 + 2015 ], "he_throws": [ - 2011 + 2015 ], "headshot_hits": [ - 2011 + 2015 ], "hits": [ - 2011 + 2015 ], "hits_at_spotted": [ - 2011 + 2015 ], "hs_kills": [ - 2011 + 2015 ], "hs_kills_ct": [ - 2011 + 2015 ], "hs_kills_t": [ - 2011 + 2015 ], "kast_rounds": [ - 2011 + 2015 ], "kast_total_rounds": [ - 2011 + 2015 ], "kills": [ - 2011 + 2015 ], "kills_ct": [ - 2011 + 2015 ], "kills_t": [ - 2011 + 2015 ], "knife_kills": [ - 2011 + 2015 ], "match_id": [ - 2011 + 2015 ], "match_map_id": [ - 2011 + 2015 ], "molotov_damage": [ - 2011 + 2015 ], "molotov_throws": [ - 2011 + 2015 ], "non_awp_hits": [ - 2011 + 2015 ], "on_target_frames": [ - 2011 + 2015 ], "rounds_ct": [ - 2011 + 2015 ], "rounds_played": [ - 2011 + 2015 ], "rounds_t": [ - 2011 + 2015 ], "shots_at_spotted": [ - 2011 + 2015 ], "shots_fired": [ - 2011 + 2015 ], "smoke_throws": [ - 2011 + 2015 ], "spotted_count": [ - 2011 + 2015 ], "spotted_with_damage_count": [ - 2011 + 2015 ], "spray_hits": [ - 2011 + 2015 ], "spray_shots": [ - 2011 + 2015 ], "steam_id": [ - 2011 + 2015 ], "team_damage": [ - 2011 + 2015 ], "team_flashed": [ - 2011 + 2015 ], "three_kill_rounds": [ - 2011 + 2015 ], "time_to_damage_count": [ - 2011 + 2015 ], "time_to_damage_sum_s": [ - 2011 + 2015 ], "total_engagement_frames": [ - 2011 + 2015 ], "trade_kill_attempts": [ - 2011 + 2015 ], "trade_kill_opportunities": [ - 2011 + 2015 ], "trade_kill_successes": [ - 2011 + 2015 ], "traded_death_attempts": [ - 2011 + 2015 ], "traded_death_opportunities": [ - 2011 + 2015 ], "traded_death_successes": [ - 2011 + 2015 ], "two_kill_rounds": [ - 2011 + 2015 ], "unused_utility_value": [ - 2011 + 2015 ], "updated_at": [ - 2011 + 2015 ], "util_on_death_count": [ - 2011 + 2015 ], "util_on_death_sum": [ - 2011 + 2015 ], "wasted_magazine_shots": [ - 2011 + 2015 ], "zeus_kills": [ - 2011 + 2015 ], "__typename": [ - 70 + 74 ] }, "player_match_map_stats_mutation_response": { @@ -52421,271 +53373,271 @@ export default { 38 ], "returning": [ - 2475 + 2479 ], "__typename": [ - 70 + 74 ] }, "player_match_map_stats_on_conflict": { "constraint": [ - 2485 + 2489 ], "update_columns": [ - 2508 + 2512 ], "where": [ - 2484 + 2488 ], "__typename": [ - 70 + 74 ] }, "player_match_map_stats_order_by": { "assists": [ - 2011 + 2015 ], "assists_ct": [ - 2011 + 2015 ], "assists_t": [ - 2011 + 2015 ], "counter_strafe_eligible_shots": [ - 2011 + 2015 ], "counter_strafed_shots": [ - 2011 + 2015 ], "crosshair_angle_count": [ - 2011 + 2015 ], "crosshair_angle_sum_deg": [ - 2011 + 2015 ], "damage": [ - 2011 + 2015 ], "damage_ct": [ - 2011 + 2015 ], "damage_t": [ - 2011 + 2015 ], "deaths": [ - 2011 + 2015 ], "deaths_ct": [ - 2011 + 2015 ], "deaths_t": [ - 2011 + 2015 ], "decoy_throws": [ - 2011 + 2015 ], "enemies_flashed": [ - 2011 + 2015 ], "first_bullet_hits": [ - 2011 + 2015 ], "first_bullet_shots": [ - 2011 + 2015 ], "five_kill_rounds": [ - 2011 + 2015 ], "flash_assists": [ - 2011 + 2015 ], "flash_duration_count": [ - 2011 + 2015 ], "flash_duration_sum": [ - 2011 + 2015 ], "flashes_thrown": [ - 2011 + 2015 ], "four_kill_rounds": [ - 2011 + 2015 ], "he_damage": [ - 2011 + 2015 ], "he_team_damage": [ - 2011 + 2015 ], "he_throws": [ - 2011 + 2015 ], "headshot_hits": [ - 2011 + 2015 ], "hits": [ - 2011 + 2015 ], "hits_at_spotted": [ - 2011 + 2015 ], "hs_kills": [ - 2011 + 2015 ], "hs_kills_ct": [ - 2011 + 2015 ], "hs_kills_t": [ - 2011 + 2015 ], "kast_rounds": [ - 2011 + 2015 ], "kast_total_rounds": [ - 2011 + 2015 ], "kills": [ - 2011 + 2015 ], "kills_ct": [ - 2011 + 2015 ], "kills_t": [ - 2011 + 2015 ], "knife_kills": [ - 2011 + 2015 ], "match": [ - 1846 + 1850 ], "match_id": [ - 2011 + 2015 ], "match_map": [ - 1684 + 1688 ], "match_map_id": [ - 2011 + 2015 ], "molotov_damage": [ - 2011 + 2015 ], "molotov_throws": [ - 2011 + 2015 ], "non_awp_hits": [ - 2011 + 2015 ], "on_target_frames": [ - 2011 + 2015 ], "player": [ - 2891 + 2927 ], "rounds_ct": [ - 2011 + 2015 ], "rounds_played": [ - 2011 + 2015 ], "rounds_t": [ - 2011 + 2015 ], "shots_at_spotted": [ - 2011 + 2015 ], "shots_fired": [ - 2011 + 2015 ], "smoke_throws": [ - 2011 + 2015 ], "spotted_count": [ - 2011 + 2015 ], "spotted_with_damage_count": [ - 2011 + 2015 ], "spray_hits": [ - 2011 + 2015 ], "spray_shots": [ - 2011 + 2015 ], "steam_id": [ - 2011 + 2015 ], "team_damage": [ - 2011 + 2015 ], "team_flashed": [ - 2011 + 2015 ], "three_kill_rounds": [ - 2011 + 2015 ], "time_to_damage_count": [ - 2011 + 2015 ], "time_to_damage_sum_s": [ - 2011 + 2015 ], "total_engagement_frames": [ - 2011 + 2015 ], "trade_kill_attempts": [ - 2011 + 2015 ], "trade_kill_opportunities": [ - 2011 + 2015 ], "trade_kill_successes": [ - 2011 + 2015 ], "traded_death_attempts": [ - 2011 + 2015 ], "traded_death_opportunities": [ - 2011 + 2015 ], "traded_death_successes": [ - 2011 + 2015 ], "two_kill_rounds": [ - 2011 + 2015 ], "unused_utility_value": [ - 2011 + 2015 ], "updated_at": [ - 2011 + 2015 ], "util_on_death_count": [ - 2011 + 2015 ], "util_on_death_sum": [ - 2011 + 2015 ], "wasted_magazine_shots": [ - 2011 + 2015 ], "zeus_kills": [ - 2011 + 2015 ], "__typename": [ - 70 + 74 ] }, "player_match_map_stats_pk_columns_input": { "match_map_id": [ - 3818 + 3863 ], "steam_id": [ - 169 + 173 ], "__typename": [ - 70 + 74 ] }, "player_match_map_stats_select_column": {}, @@ -52709,7 +53661,7 @@ export default { 38 ], "crosshair_angle_sum_deg": [ - 2009 + 2013 ], "damage": [ 38 @@ -52751,7 +53703,7 @@ export default { 38 ], "flash_duration_sum": [ - 2009 + 2013 ], "flashes_thrown": [ 38 @@ -52805,10 +53757,10 @@ export default { 38 ], "match_id": [ - 3818 + 3863 ], "match_map_id": [ - 3818 + 3863 ], "molotov_damage": [ 38 @@ -52853,7 +53805,7 @@ export default { 38 ], "steam_id": [ - 169 + 173 ], "team_damage": [ 38 @@ -52868,7 +53820,7 @@ export default { 38 ], "time_to_damage_sum_s": [ - 2009 + 2013 ], "total_engagement_frames": [ 38 @@ -52898,7 +53850,7 @@ export default { 38 ], "updated_at": [ - 3421 + 3466 ], "util_on_death_count": [ 38 @@ -52913,7 +53865,7 @@ export default { 38 ], "__typename": [ - 70 + 74 ] }, "player_match_map_stats_stddev_fields": { @@ -53131,225 +54083,225 @@ export default { 29 ], "__typename": [ - 70 + 74 ] }, "player_match_map_stats_stddev_order_by": { "assists": [ - 2011 + 2015 ], "assists_ct": [ - 2011 + 2015 ], "assists_t": [ - 2011 + 2015 ], "counter_strafe_eligible_shots": [ - 2011 + 2015 ], "counter_strafed_shots": [ - 2011 + 2015 ], "crosshair_angle_count": [ - 2011 + 2015 ], "crosshair_angle_sum_deg": [ - 2011 + 2015 ], "damage": [ - 2011 + 2015 ], "damage_ct": [ - 2011 + 2015 ], "damage_t": [ - 2011 + 2015 ], "deaths": [ - 2011 + 2015 ], "deaths_ct": [ - 2011 + 2015 ], "deaths_t": [ - 2011 + 2015 ], "decoy_throws": [ - 2011 + 2015 ], "enemies_flashed": [ - 2011 + 2015 ], "first_bullet_hits": [ - 2011 + 2015 ], "first_bullet_shots": [ - 2011 + 2015 ], "five_kill_rounds": [ - 2011 + 2015 ], "flash_assists": [ - 2011 + 2015 ], "flash_duration_count": [ - 2011 + 2015 ], "flash_duration_sum": [ - 2011 + 2015 ], "flashes_thrown": [ - 2011 + 2015 ], "four_kill_rounds": [ - 2011 + 2015 ], "he_damage": [ - 2011 + 2015 ], "he_team_damage": [ - 2011 + 2015 ], "he_throws": [ - 2011 + 2015 ], "headshot_hits": [ - 2011 + 2015 ], "hits": [ - 2011 + 2015 ], "hits_at_spotted": [ - 2011 + 2015 ], "hs_kills": [ - 2011 + 2015 ], "hs_kills_ct": [ - 2011 + 2015 ], "hs_kills_t": [ - 2011 + 2015 ], "kast_rounds": [ - 2011 + 2015 ], "kast_total_rounds": [ - 2011 + 2015 ], "kills": [ - 2011 + 2015 ], "kills_ct": [ - 2011 + 2015 ], "kills_t": [ - 2011 + 2015 ], "knife_kills": [ - 2011 + 2015 ], "molotov_damage": [ - 2011 + 2015 ], "molotov_throws": [ - 2011 + 2015 ], "non_awp_hits": [ - 2011 + 2015 ], "on_target_frames": [ - 2011 + 2015 ], "rounds_ct": [ - 2011 + 2015 ], "rounds_played": [ - 2011 + 2015 ], "rounds_t": [ - 2011 + 2015 ], "shots_at_spotted": [ - 2011 + 2015 ], "shots_fired": [ - 2011 + 2015 ], "smoke_throws": [ - 2011 + 2015 ], "spotted_count": [ - 2011 + 2015 ], "spotted_with_damage_count": [ - 2011 + 2015 ], "spray_hits": [ - 2011 + 2015 ], "spray_shots": [ - 2011 + 2015 ], "steam_id": [ - 2011 + 2015 ], "team_damage": [ - 2011 + 2015 ], "team_flashed": [ - 2011 + 2015 ], "three_kill_rounds": [ - 2011 + 2015 ], "time_to_damage_count": [ - 2011 + 2015 ], "time_to_damage_sum_s": [ - 2011 + 2015 ], "total_engagement_frames": [ - 2011 + 2015 ], "trade_kill_attempts": [ - 2011 + 2015 ], "trade_kill_opportunities": [ - 2011 + 2015 ], "trade_kill_successes": [ - 2011 + 2015 ], "traded_death_attempts": [ - 2011 + 2015 ], "traded_death_opportunities": [ - 2011 + 2015 ], "traded_death_successes": [ - 2011 + 2015 ], "two_kill_rounds": [ - 2011 + 2015 ], "unused_utility_value": [ - 2011 + 2015 ], "util_on_death_count": [ - 2011 + 2015 ], "util_on_death_sum": [ - 2011 + 2015 ], "wasted_magazine_shots": [ - 2011 + 2015 ], "zeus_kills": [ - 2011 + 2015 ], "__typename": [ - 70 + 74 ] }, "player_match_map_stats_stddev_pop_fields": { @@ -53567,225 +54519,225 @@ export default { 29 ], "__typename": [ - 70 + 74 ] }, "player_match_map_stats_stddev_pop_order_by": { "assists": [ - 2011 + 2015 ], "assists_ct": [ - 2011 + 2015 ], "assists_t": [ - 2011 + 2015 ], "counter_strafe_eligible_shots": [ - 2011 + 2015 ], "counter_strafed_shots": [ - 2011 + 2015 ], "crosshair_angle_count": [ - 2011 + 2015 ], "crosshair_angle_sum_deg": [ - 2011 + 2015 ], "damage": [ - 2011 + 2015 ], "damage_ct": [ - 2011 + 2015 ], "damage_t": [ - 2011 + 2015 ], "deaths": [ - 2011 + 2015 ], "deaths_ct": [ - 2011 + 2015 ], "deaths_t": [ - 2011 + 2015 ], "decoy_throws": [ - 2011 + 2015 ], "enemies_flashed": [ - 2011 + 2015 ], "first_bullet_hits": [ - 2011 + 2015 ], "first_bullet_shots": [ - 2011 + 2015 ], "five_kill_rounds": [ - 2011 + 2015 ], "flash_assists": [ - 2011 + 2015 ], "flash_duration_count": [ - 2011 + 2015 ], "flash_duration_sum": [ - 2011 + 2015 ], "flashes_thrown": [ - 2011 + 2015 ], "four_kill_rounds": [ - 2011 + 2015 ], "he_damage": [ - 2011 + 2015 ], "he_team_damage": [ - 2011 + 2015 ], "he_throws": [ - 2011 + 2015 ], "headshot_hits": [ - 2011 + 2015 ], "hits": [ - 2011 + 2015 ], "hits_at_spotted": [ - 2011 + 2015 ], "hs_kills": [ - 2011 + 2015 ], "hs_kills_ct": [ - 2011 + 2015 ], "hs_kills_t": [ - 2011 + 2015 ], "kast_rounds": [ - 2011 + 2015 ], "kast_total_rounds": [ - 2011 + 2015 ], "kills": [ - 2011 + 2015 ], "kills_ct": [ - 2011 + 2015 ], "kills_t": [ - 2011 + 2015 ], "knife_kills": [ - 2011 + 2015 ], "molotov_damage": [ - 2011 + 2015 ], "molotov_throws": [ - 2011 + 2015 ], "non_awp_hits": [ - 2011 + 2015 ], "on_target_frames": [ - 2011 + 2015 ], "rounds_ct": [ - 2011 + 2015 ], "rounds_played": [ - 2011 + 2015 ], "rounds_t": [ - 2011 + 2015 ], "shots_at_spotted": [ - 2011 + 2015 ], "shots_fired": [ - 2011 + 2015 ], "smoke_throws": [ - 2011 + 2015 ], "spotted_count": [ - 2011 + 2015 ], "spotted_with_damage_count": [ - 2011 + 2015 ], "spray_hits": [ - 2011 + 2015 ], "spray_shots": [ - 2011 + 2015 ], "steam_id": [ - 2011 + 2015 ], "team_damage": [ - 2011 + 2015 ], "team_flashed": [ - 2011 + 2015 ], "three_kill_rounds": [ - 2011 + 2015 ], "time_to_damage_count": [ - 2011 + 2015 ], "time_to_damage_sum_s": [ - 2011 + 2015 ], "total_engagement_frames": [ - 2011 + 2015 ], "trade_kill_attempts": [ - 2011 + 2015 ], "trade_kill_opportunities": [ - 2011 + 2015 ], "trade_kill_successes": [ - 2011 + 2015 ], "traded_death_attempts": [ - 2011 + 2015 ], "traded_death_opportunities": [ - 2011 + 2015 ], "traded_death_successes": [ - 2011 + 2015 ], "two_kill_rounds": [ - 2011 + 2015 ], "unused_utility_value": [ - 2011 + 2015 ], "util_on_death_count": [ - 2011 + 2015 ], "util_on_death_sum": [ - 2011 + 2015 ], "wasted_magazine_shots": [ - 2011 + 2015 ], "zeus_kills": [ - 2011 + 2015 ], "__typename": [ - 70 + 74 ] }, "player_match_map_stats_stddev_samp_fields": { @@ -54003,236 +54955,236 @@ export default { 29 ], "__typename": [ - 70 + 74 ] }, "player_match_map_stats_stddev_samp_order_by": { "assists": [ - 2011 + 2015 ], "assists_ct": [ - 2011 + 2015 ], "assists_t": [ - 2011 + 2015 ], "counter_strafe_eligible_shots": [ - 2011 + 2015 ], "counter_strafed_shots": [ - 2011 + 2015 ], "crosshair_angle_count": [ - 2011 + 2015 ], "crosshair_angle_sum_deg": [ - 2011 + 2015 ], "damage": [ - 2011 + 2015 ], "damage_ct": [ - 2011 + 2015 ], "damage_t": [ - 2011 + 2015 ], "deaths": [ - 2011 + 2015 ], "deaths_ct": [ - 2011 + 2015 ], "deaths_t": [ - 2011 + 2015 ], "decoy_throws": [ - 2011 + 2015 ], "enemies_flashed": [ - 2011 + 2015 ], "first_bullet_hits": [ - 2011 + 2015 ], "first_bullet_shots": [ - 2011 + 2015 ], "five_kill_rounds": [ - 2011 + 2015 ], "flash_assists": [ - 2011 + 2015 ], "flash_duration_count": [ - 2011 + 2015 ], "flash_duration_sum": [ - 2011 + 2015 ], "flashes_thrown": [ - 2011 + 2015 ], "four_kill_rounds": [ - 2011 + 2015 ], "he_damage": [ - 2011 + 2015 ], "he_team_damage": [ - 2011 + 2015 ], "he_throws": [ - 2011 + 2015 ], "headshot_hits": [ - 2011 + 2015 ], "hits": [ - 2011 + 2015 ], "hits_at_spotted": [ - 2011 + 2015 ], "hs_kills": [ - 2011 + 2015 ], "hs_kills_ct": [ - 2011 + 2015 ], "hs_kills_t": [ - 2011 + 2015 ], "kast_rounds": [ - 2011 + 2015 ], "kast_total_rounds": [ - 2011 + 2015 ], "kills": [ - 2011 + 2015 ], "kills_ct": [ - 2011 + 2015 ], "kills_t": [ - 2011 + 2015 ], "knife_kills": [ - 2011 + 2015 ], "molotov_damage": [ - 2011 + 2015 ], "molotov_throws": [ - 2011 + 2015 ], "non_awp_hits": [ - 2011 + 2015 ], "on_target_frames": [ - 2011 + 2015 ], "rounds_ct": [ - 2011 + 2015 ], "rounds_played": [ - 2011 + 2015 ], "rounds_t": [ - 2011 + 2015 ], "shots_at_spotted": [ - 2011 + 2015 ], "shots_fired": [ - 2011 + 2015 ], "smoke_throws": [ - 2011 + 2015 ], "spotted_count": [ - 2011 + 2015 ], "spotted_with_damage_count": [ - 2011 + 2015 ], "spray_hits": [ - 2011 + 2015 ], "spray_shots": [ - 2011 + 2015 ], "steam_id": [ - 2011 + 2015 ], "team_damage": [ - 2011 + 2015 ], "team_flashed": [ - 2011 + 2015 ], "three_kill_rounds": [ - 2011 + 2015 ], "time_to_damage_count": [ - 2011 + 2015 ], "time_to_damage_sum_s": [ - 2011 + 2015 ], "total_engagement_frames": [ - 2011 + 2015 ], "trade_kill_attempts": [ - 2011 + 2015 ], "trade_kill_opportunities": [ - 2011 + 2015 ], "trade_kill_successes": [ - 2011 + 2015 ], "traded_death_attempts": [ - 2011 + 2015 ], "traded_death_opportunities": [ - 2011 + 2015 ], "traded_death_successes": [ - 2011 + 2015 ], "two_kill_rounds": [ - 2011 + 2015 ], "unused_utility_value": [ - 2011 + 2015 ], "util_on_death_count": [ - 2011 + 2015 ], "util_on_death_sum": [ - 2011 + 2015 ], "wasted_magazine_shots": [ - 2011 + 2015 ], "zeus_kills": [ - 2011 + 2015 ], "__typename": [ - 70 + 74 ] }, "player_match_map_stats_stream_cursor_input": { "initial_value": [ - 2505 + 2509 ], "ordering": [ - 224 + 228 ], "__typename": [ - 70 + 74 ] }, "player_match_map_stats_stream_cursor_value_input": { @@ -54255,7 +55207,7 @@ export default { 38 ], "crosshair_angle_sum_deg": [ - 2009 + 2013 ], "damage": [ 38 @@ -54297,7 +55249,7 @@ export default { 38 ], "flash_duration_sum": [ - 2009 + 2013 ], "flashes_thrown": [ 38 @@ -54351,10 +55303,10 @@ export default { 38 ], "match_id": [ - 3818 + 3863 ], "match_map_id": [ - 3818 + 3863 ], "molotov_damage": [ 38 @@ -54399,7 +55351,7 @@ export default { 38 ], "steam_id": [ - 169 + 173 ], "team_damage": [ 38 @@ -54414,7 +55366,7 @@ export default { 38 ], "time_to_damage_sum_s": [ - 2009 + 2013 ], "total_engagement_frames": [ 38 @@ -54444,7 +55396,7 @@ export default { 38 ], "updated_at": [ - 3421 + 3466 ], "util_on_death_count": [ 38 @@ -54459,7 +55411,7 @@ export default { 38 ], "__typename": [ - 70 + 74 ] }, "player_match_map_stats_sum_fields": { @@ -54482,7 +55434,7 @@ export default { 38 ], "crosshair_angle_sum_deg": [ - 2009 + 2013 ], "damage": [ 38 @@ -54524,7 +55476,7 @@ export default { 38 ], "flash_duration_sum": [ - 2009 + 2013 ], "flashes_thrown": [ 38 @@ -54620,7 +55572,7 @@ export default { 38 ], "steam_id": [ - 169 + 173 ], "team_damage": [ 38 @@ -54635,7 +55587,7 @@ export default { 38 ], "time_to_damage_sum_s": [ - 2009 + 2013 ], "total_engagement_frames": [ 38 @@ -54677,240 +55629,240 @@ export default { 38 ], "__typename": [ - 70 + 74 ] }, "player_match_map_stats_sum_order_by": { "assists": [ - 2011 + 2015 ], "assists_ct": [ - 2011 + 2015 ], "assists_t": [ - 2011 + 2015 ], "counter_strafe_eligible_shots": [ - 2011 + 2015 ], "counter_strafed_shots": [ - 2011 + 2015 ], "crosshair_angle_count": [ - 2011 + 2015 ], "crosshair_angle_sum_deg": [ - 2011 + 2015 ], "damage": [ - 2011 + 2015 ], "damage_ct": [ - 2011 + 2015 ], "damage_t": [ - 2011 + 2015 ], "deaths": [ - 2011 + 2015 ], "deaths_ct": [ - 2011 + 2015 ], "deaths_t": [ - 2011 + 2015 ], "decoy_throws": [ - 2011 + 2015 ], "enemies_flashed": [ - 2011 + 2015 ], "first_bullet_hits": [ - 2011 + 2015 ], "first_bullet_shots": [ - 2011 + 2015 ], "five_kill_rounds": [ - 2011 + 2015 ], "flash_assists": [ - 2011 + 2015 ], "flash_duration_count": [ - 2011 + 2015 ], "flash_duration_sum": [ - 2011 + 2015 ], "flashes_thrown": [ - 2011 + 2015 ], "four_kill_rounds": [ - 2011 + 2015 ], "he_damage": [ - 2011 + 2015 ], "he_team_damage": [ - 2011 + 2015 ], "he_throws": [ - 2011 + 2015 ], "headshot_hits": [ - 2011 + 2015 ], "hits": [ - 2011 + 2015 ], "hits_at_spotted": [ - 2011 + 2015 ], "hs_kills": [ - 2011 + 2015 ], "hs_kills_ct": [ - 2011 + 2015 ], "hs_kills_t": [ - 2011 + 2015 ], "kast_rounds": [ - 2011 + 2015 ], "kast_total_rounds": [ - 2011 + 2015 ], "kills": [ - 2011 + 2015 ], "kills_ct": [ - 2011 + 2015 ], "kills_t": [ - 2011 + 2015 ], "knife_kills": [ - 2011 + 2015 ], "molotov_damage": [ - 2011 + 2015 ], "molotov_throws": [ - 2011 + 2015 ], "non_awp_hits": [ - 2011 + 2015 ], "on_target_frames": [ - 2011 + 2015 ], "rounds_ct": [ - 2011 + 2015 ], "rounds_played": [ - 2011 + 2015 ], "rounds_t": [ - 2011 + 2015 ], "shots_at_spotted": [ - 2011 + 2015 ], "shots_fired": [ - 2011 + 2015 ], "smoke_throws": [ - 2011 + 2015 ], "spotted_count": [ - 2011 + 2015 ], "spotted_with_damage_count": [ - 2011 + 2015 ], "spray_hits": [ - 2011 + 2015 ], "spray_shots": [ - 2011 + 2015 ], "steam_id": [ - 2011 + 2015 ], "team_damage": [ - 2011 + 2015 ], "team_flashed": [ - 2011 + 2015 ], "three_kill_rounds": [ - 2011 + 2015 ], "time_to_damage_count": [ - 2011 + 2015 ], "time_to_damage_sum_s": [ - 2011 + 2015 ], "total_engagement_frames": [ - 2011 + 2015 ], "trade_kill_attempts": [ - 2011 + 2015 ], "trade_kill_opportunities": [ - 2011 + 2015 ], "trade_kill_successes": [ - 2011 + 2015 ], "traded_death_attempts": [ - 2011 + 2015 ], "traded_death_opportunities": [ - 2011 + 2015 ], "traded_death_successes": [ - 2011 + 2015 ], "two_kill_rounds": [ - 2011 + 2015 ], "unused_utility_value": [ - 2011 + 2015 ], "util_on_death_count": [ - 2011 + 2015 ], "util_on_death_sum": [ - 2011 + 2015 ], "wasted_magazine_shots": [ - 2011 + 2015 ], "zeus_kills": [ - 2011 + 2015 ], "__typename": [ - 70 + 74 ] }, "player_match_map_stats_update_column": {}, "player_match_map_stats_updates": { "_inc": [ - 2486 + 2490 ], "_set": [ - 2497 + 2501 ], "where": [ - 2484 + 2488 ], "__typename": [ - 70 + 74 ] }, "player_match_map_stats_var_pop_fields": { @@ -55128,225 +56080,225 @@ export default { 29 ], "__typename": [ - 70 + 74 ] }, "player_match_map_stats_var_pop_order_by": { "assists": [ - 2011 + 2015 ], "assists_ct": [ - 2011 + 2015 ], "assists_t": [ - 2011 + 2015 ], "counter_strafe_eligible_shots": [ - 2011 + 2015 ], "counter_strafed_shots": [ - 2011 + 2015 ], "crosshair_angle_count": [ - 2011 + 2015 ], "crosshair_angle_sum_deg": [ - 2011 + 2015 ], "damage": [ - 2011 + 2015 ], "damage_ct": [ - 2011 + 2015 ], "damage_t": [ - 2011 + 2015 ], "deaths": [ - 2011 + 2015 ], "deaths_ct": [ - 2011 + 2015 ], "deaths_t": [ - 2011 + 2015 ], "decoy_throws": [ - 2011 + 2015 ], "enemies_flashed": [ - 2011 + 2015 ], "first_bullet_hits": [ - 2011 + 2015 ], "first_bullet_shots": [ - 2011 + 2015 ], "five_kill_rounds": [ - 2011 + 2015 ], "flash_assists": [ - 2011 + 2015 ], "flash_duration_count": [ - 2011 + 2015 ], "flash_duration_sum": [ - 2011 + 2015 ], "flashes_thrown": [ - 2011 + 2015 ], "four_kill_rounds": [ - 2011 + 2015 ], "he_damage": [ - 2011 + 2015 ], "he_team_damage": [ - 2011 + 2015 ], "he_throws": [ - 2011 + 2015 ], "headshot_hits": [ - 2011 + 2015 ], "hits": [ - 2011 + 2015 ], "hits_at_spotted": [ - 2011 + 2015 ], "hs_kills": [ - 2011 + 2015 ], "hs_kills_ct": [ - 2011 + 2015 ], "hs_kills_t": [ - 2011 + 2015 ], "kast_rounds": [ - 2011 + 2015 ], "kast_total_rounds": [ - 2011 + 2015 ], "kills": [ - 2011 + 2015 ], "kills_ct": [ - 2011 + 2015 ], "kills_t": [ - 2011 + 2015 ], "knife_kills": [ - 2011 + 2015 ], "molotov_damage": [ - 2011 + 2015 ], "molotov_throws": [ - 2011 + 2015 ], "non_awp_hits": [ - 2011 + 2015 ], "on_target_frames": [ - 2011 + 2015 ], "rounds_ct": [ - 2011 + 2015 ], "rounds_played": [ - 2011 + 2015 ], "rounds_t": [ - 2011 + 2015 ], "shots_at_spotted": [ - 2011 + 2015 ], "shots_fired": [ - 2011 + 2015 ], "smoke_throws": [ - 2011 + 2015 ], "spotted_count": [ - 2011 + 2015 ], "spotted_with_damage_count": [ - 2011 + 2015 ], "spray_hits": [ - 2011 + 2015 ], "spray_shots": [ - 2011 + 2015 ], "steam_id": [ - 2011 + 2015 ], "team_damage": [ - 2011 + 2015 ], "team_flashed": [ - 2011 + 2015 ], "three_kill_rounds": [ - 2011 + 2015 ], "time_to_damage_count": [ - 2011 + 2015 ], "time_to_damage_sum_s": [ - 2011 + 2015 ], "total_engagement_frames": [ - 2011 + 2015 ], "trade_kill_attempts": [ - 2011 + 2015 ], "trade_kill_opportunities": [ - 2011 + 2015 ], "trade_kill_successes": [ - 2011 + 2015 ], "traded_death_attempts": [ - 2011 + 2015 ], "traded_death_opportunities": [ - 2011 + 2015 ], "traded_death_successes": [ - 2011 + 2015 ], "two_kill_rounds": [ - 2011 + 2015 ], "unused_utility_value": [ - 2011 + 2015 ], "util_on_death_count": [ - 2011 + 2015 ], "util_on_death_sum": [ - 2011 + 2015 ], "wasted_magazine_shots": [ - 2011 + 2015 ], "zeus_kills": [ - 2011 + 2015 ], "__typename": [ - 70 + 74 ] }, "player_match_map_stats_var_samp_fields": { @@ -55564,225 +56516,225 @@ export default { 29 ], "__typename": [ - 70 + 74 ] }, "player_match_map_stats_var_samp_order_by": { "assists": [ - 2011 + 2015 ], "assists_ct": [ - 2011 + 2015 ], "assists_t": [ - 2011 + 2015 ], "counter_strafe_eligible_shots": [ - 2011 + 2015 ], "counter_strafed_shots": [ - 2011 + 2015 ], "crosshair_angle_count": [ - 2011 + 2015 ], "crosshair_angle_sum_deg": [ - 2011 + 2015 ], "damage": [ - 2011 + 2015 ], "damage_ct": [ - 2011 + 2015 ], "damage_t": [ - 2011 + 2015 ], "deaths": [ - 2011 + 2015 ], "deaths_ct": [ - 2011 + 2015 ], "deaths_t": [ - 2011 + 2015 ], "decoy_throws": [ - 2011 + 2015 ], "enemies_flashed": [ - 2011 + 2015 ], "first_bullet_hits": [ - 2011 + 2015 ], "first_bullet_shots": [ - 2011 + 2015 ], "five_kill_rounds": [ - 2011 + 2015 ], "flash_assists": [ - 2011 + 2015 ], "flash_duration_count": [ - 2011 + 2015 ], "flash_duration_sum": [ - 2011 + 2015 ], "flashes_thrown": [ - 2011 + 2015 ], "four_kill_rounds": [ - 2011 + 2015 ], "he_damage": [ - 2011 + 2015 ], "he_team_damage": [ - 2011 + 2015 ], "he_throws": [ - 2011 + 2015 ], "headshot_hits": [ - 2011 + 2015 ], "hits": [ - 2011 + 2015 ], "hits_at_spotted": [ - 2011 + 2015 ], "hs_kills": [ - 2011 + 2015 ], "hs_kills_ct": [ - 2011 + 2015 ], "hs_kills_t": [ - 2011 + 2015 ], "kast_rounds": [ - 2011 + 2015 ], "kast_total_rounds": [ - 2011 + 2015 ], "kills": [ - 2011 + 2015 ], "kills_ct": [ - 2011 + 2015 ], "kills_t": [ - 2011 + 2015 ], "knife_kills": [ - 2011 + 2015 ], "molotov_damage": [ - 2011 + 2015 ], "molotov_throws": [ - 2011 + 2015 ], "non_awp_hits": [ - 2011 + 2015 ], "on_target_frames": [ - 2011 + 2015 ], "rounds_ct": [ - 2011 + 2015 ], "rounds_played": [ - 2011 + 2015 ], "rounds_t": [ - 2011 + 2015 ], "shots_at_spotted": [ - 2011 + 2015 ], "shots_fired": [ - 2011 + 2015 ], "smoke_throws": [ - 2011 + 2015 ], "spotted_count": [ - 2011 + 2015 ], "spotted_with_damage_count": [ - 2011 + 2015 ], "spray_hits": [ - 2011 + 2015 ], "spray_shots": [ - 2011 + 2015 ], "steam_id": [ - 2011 + 2015 ], "team_damage": [ - 2011 + 2015 ], "team_flashed": [ - 2011 + 2015 ], "three_kill_rounds": [ - 2011 + 2015 ], "time_to_damage_count": [ - 2011 + 2015 ], "time_to_damage_sum_s": [ - 2011 + 2015 ], "total_engagement_frames": [ - 2011 + 2015 ], "trade_kill_attempts": [ - 2011 + 2015 ], "trade_kill_opportunities": [ - 2011 + 2015 ], "trade_kill_successes": [ - 2011 + 2015 ], "traded_death_attempts": [ - 2011 + 2015 ], "traded_death_opportunities": [ - 2011 + 2015 ], "traded_death_successes": [ - 2011 + 2015 ], "two_kill_rounds": [ - 2011 + 2015 ], "unused_utility_value": [ - 2011 + 2015 ], "util_on_death_count": [ - 2011 + 2015 ], "util_on_death_sum": [ - 2011 + 2015 ], "wasted_magazine_shots": [ - 2011 + 2015 ], "zeus_kills": [ - 2011 + 2015 ], "__typename": [ - 70 + 74 ] }, "player_match_map_stats_variance_fields": { @@ -56000,309 +56952,309 @@ export default { 29 ], "__typename": [ - 70 + 74 ] }, "player_match_map_stats_variance_order_by": { "assists": [ - 2011 + 2015 ], "assists_ct": [ - 2011 + 2015 ], "assists_t": [ - 2011 + 2015 ], "counter_strafe_eligible_shots": [ - 2011 + 2015 ], "counter_strafed_shots": [ - 2011 + 2015 ], "crosshair_angle_count": [ - 2011 + 2015 ], "crosshair_angle_sum_deg": [ - 2011 + 2015 ], "damage": [ - 2011 + 2015 ], "damage_ct": [ - 2011 + 2015 ], "damage_t": [ - 2011 + 2015 ], "deaths": [ - 2011 + 2015 ], "deaths_ct": [ - 2011 + 2015 ], "deaths_t": [ - 2011 + 2015 ], "decoy_throws": [ - 2011 + 2015 ], "enemies_flashed": [ - 2011 + 2015 ], "first_bullet_hits": [ - 2011 + 2015 ], "first_bullet_shots": [ - 2011 + 2015 ], "five_kill_rounds": [ - 2011 + 2015 ], "flash_assists": [ - 2011 + 2015 ], "flash_duration_count": [ - 2011 + 2015 ], "flash_duration_sum": [ - 2011 + 2015 ], "flashes_thrown": [ - 2011 + 2015 ], "four_kill_rounds": [ - 2011 + 2015 ], "he_damage": [ - 2011 + 2015 ], "he_team_damage": [ - 2011 + 2015 ], "he_throws": [ - 2011 + 2015 ], "headshot_hits": [ - 2011 + 2015 ], "hits": [ - 2011 + 2015 ], "hits_at_spotted": [ - 2011 + 2015 ], "hs_kills": [ - 2011 + 2015 ], "hs_kills_ct": [ - 2011 + 2015 ], "hs_kills_t": [ - 2011 + 2015 ], "kast_rounds": [ - 2011 + 2015 ], "kast_total_rounds": [ - 2011 + 2015 ], "kills": [ - 2011 + 2015 ], "kills_ct": [ - 2011 + 2015 ], "kills_t": [ - 2011 + 2015 ], "knife_kills": [ - 2011 + 2015 ], "molotov_damage": [ - 2011 + 2015 ], "molotov_throws": [ - 2011 + 2015 ], "non_awp_hits": [ - 2011 + 2015 ], "on_target_frames": [ - 2011 + 2015 ], "rounds_ct": [ - 2011 + 2015 ], "rounds_played": [ - 2011 + 2015 ], "rounds_t": [ - 2011 + 2015 ], "shots_at_spotted": [ - 2011 + 2015 ], "shots_fired": [ - 2011 + 2015 ], "smoke_throws": [ - 2011 + 2015 ], "spotted_count": [ - 2011 + 2015 ], "spotted_with_damage_count": [ - 2011 + 2015 ], "spray_hits": [ - 2011 + 2015 ], "spray_shots": [ - 2011 + 2015 ], "steam_id": [ - 2011 + 2015 ], "team_damage": [ - 2011 + 2015 ], "team_flashed": [ - 2011 + 2015 ], "three_kill_rounds": [ - 2011 + 2015 ], "time_to_damage_count": [ - 2011 + 2015 ], "time_to_damage_sum_s": [ - 2011 + 2015 ], "total_engagement_frames": [ - 2011 + 2015 ], "trade_kill_attempts": [ - 2011 + 2015 ], "trade_kill_opportunities": [ - 2011 + 2015 ], "trade_kill_successes": [ - 2011 + 2015 ], "traded_death_attempts": [ - 2011 + 2015 ], "traded_death_opportunities": [ - 2011 + 2015 ], "traded_death_successes": [ - 2011 + 2015 ], "two_kill_rounds": [ - 2011 + 2015 ], "unused_utility_value": [ - 2011 + 2015 ], "util_on_death_count": [ - 2011 + 2015 ], "util_on_death_sum": [ - 2011 + 2015 ], "wasted_magazine_shots": [ - 2011 + 2015 ], "zeus_kills": [ - 2011 + 2015 ], "__typename": [ - 70 + 74 ] }, "player_match_performance_v": { "accuracy": [ - 2009 + 2013 ], "accuracy_spotted": [ - 2009 + 2013 ], "aim_rating": [ - 1084 + 1088 ], "counter_strafe_pct": [ - 2009 + 2013 ], "enemy_blind_pr": [ - 2009 + 2013 ], "flash_assists_pr": [ - 2009 + 2013 ], "hs_pct": [ - 2009 + 2013 ], "kast_pct": [ - 2009 + 2013 ], "match_id": [ - 3818 + 3863 ], "overall_rating": [ - 1084 + 1088 ], "played_at": [ - 3421 + 3466 ], "positioning_rating": [ - 1084 + 1088 ], "rounds": [ 38 ], "source": [ - 70 + 74 ], "steam_id": [ - 169 + 173 ], "survival_pct": [ - 2009 + 2013 ], "traded_death_pct": [ - 2009 + 2013 ], "util_efficiency": [ - 2009 + 2013 ], "utility_rating": [ - 1084 + 1088 ], "__typename": [ - 70 + 74 ] }, "player_match_performance_v_aggregate": { "aggregate": [ - 2518 + 2522 ], "nodes": [ - 2516 + 2520 ], "__typename": [ - 70 + 74 ] }, "player_match_performance_v_aggregate_fields": { "avg": [ - 2519 + 2523 ], "count": [ 38, { "columns": [ - 2524, + 2528, "[player_match_performance_v_select_column!]" ], "distinct": [ @@ -56311,34 +57263,34 @@ export default { } ], "max": [ - 2521 + 2525 ], "min": [ - 2522 + 2526 ], "stddev": [ - 2525 + 2529 ], "stddev_pop": [ - 2526 + 2530 ], "stddev_samp": [ - 2527 + 2531 ], "sum": [ - 2530 + 2534 ], "var_pop": [ - 2531 + 2535 ], "var_samp": [ - 2532 + 2536 ], "variance": [ - 2533 + 2537 ], "__typename": [ - 70 + 74 ] }, "player_match_performance_v_avg_fields": { @@ -56391,264 +57343,264 @@ export default { 29 ], "__typename": [ - 70 + 74 ] }, "player_match_performance_v_bool_exp": { "_and": [ - 2520 + 2524 ], "_not": [ - 2520 + 2524 ], "_or": [ - 2520 + 2524 ], "accuracy": [ - 2010 + 2014 ], "accuracy_spotted": [ - 2010 + 2014 ], "aim_rating": [ - 1085 + 1089 ], "counter_strafe_pct": [ - 2010 + 2014 ], "enemy_blind_pr": [ - 2010 + 2014 ], "flash_assists_pr": [ - 2010 + 2014 ], "hs_pct": [ - 2010 + 2014 ], "kast_pct": [ - 2010 + 2014 ], "match_id": [ - 3820 + 3865 ], "overall_rating": [ - 1085 + 1089 ], "played_at": [ - 3422 + 3467 ], "positioning_rating": [ - 1085 + 1089 ], "rounds": [ 39 ], "source": [ - 72 + 76 ], "steam_id": [ - 171 + 175 ], "survival_pct": [ - 2010 + 2014 ], "traded_death_pct": [ - 2010 + 2014 ], "util_efficiency": [ - 2010 + 2014 ], "utility_rating": [ - 1085 + 1089 ], "__typename": [ - 70 + 74 ] }, "player_match_performance_v_max_fields": { "accuracy": [ - 2009 + 2013 ], "accuracy_spotted": [ - 2009 + 2013 ], "aim_rating": [ - 1084 + 1088 ], "counter_strafe_pct": [ - 2009 + 2013 ], "enemy_blind_pr": [ - 2009 + 2013 ], "flash_assists_pr": [ - 2009 + 2013 ], "hs_pct": [ - 2009 + 2013 ], "kast_pct": [ - 2009 + 2013 ], "match_id": [ - 3818 + 3863 ], "overall_rating": [ - 1084 + 1088 ], "played_at": [ - 3421 + 3466 ], "positioning_rating": [ - 1084 + 1088 ], "rounds": [ 38 ], "source": [ - 70 + 74 ], "steam_id": [ - 169 + 173 ], "survival_pct": [ - 2009 + 2013 ], "traded_death_pct": [ - 2009 + 2013 ], "util_efficiency": [ - 2009 + 2013 ], "utility_rating": [ - 1084 + 1088 ], "__typename": [ - 70 + 74 ] }, "player_match_performance_v_min_fields": { "accuracy": [ - 2009 + 2013 ], "accuracy_spotted": [ - 2009 + 2013 ], "aim_rating": [ - 1084 + 1088 ], "counter_strafe_pct": [ - 2009 + 2013 ], "enemy_blind_pr": [ - 2009 + 2013 ], "flash_assists_pr": [ - 2009 + 2013 ], "hs_pct": [ - 2009 + 2013 ], "kast_pct": [ - 2009 + 2013 ], "match_id": [ - 3818 + 3863 ], "overall_rating": [ - 1084 + 1088 ], "played_at": [ - 3421 + 3466 ], "positioning_rating": [ - 1084 + 1088 ], "rounds": [ 38 ], "source": [ - 70 + 74 ], "steam_id": [ - 169 + 173 ], "survival_pct": [ - 2009 + 2013 ], "traded_death_pct": [ - 2009 + 2013 ], "util_efficiency": [ - 2009 + 2013 ], "utility_rating": [ - 1084 + 1088 ], "__typename": [ - 70 + 74 ] }, "player_match_performance_v_order_by": { "accuracy": [ - 2011 + 2015 ], "accuracy_spotted": [ - 2011 + 2015 ], "aim_rating": [ - 2011 + 2015 ], "counter_strafe_pct": [ - 2011 + 2015 ], "enemy_blind_pr": [ - 2011 + 2015 ], "flash_assists_pr": [ - 2011 + 2015 ], "hs_pct": [ - 2011 + 2015 ], "kast_pct": [ - 2011 + 2015 ], "match_id": [ - 2011 + 2015 ], "overall_rating": [ - 2011 + 2015 ], "played_at": [ - 2011 + 2015 ], "positioning_rating": [ - 2011 + 2015 ], "rounds": [ - 2011 + 2015 ], "source": [ - 2011 + 2015 ], "steam_id": [ - 2011 + 2015 ], "survival_pct": [ - 2011 + 2015 ], "traded_death_pct": [ - 2011 + 2015 ], "util_efficiency": [ - 2011 + 2015 ], "utility_rating": [ - 2011 + 2015 ], "__typename": [ - 70 + 74 ] }, "player_match_performance_v_select_column": {}, @@ -56702,7 +57654,7 @@ export default { 29 ], "__typename": [ - 70 + 74 ] }, "player_match_performance_v_stddev_pop_fields": { @@ -56755,7 +57707,7 @@ export default { 29 ], "__typename": [ - 70 + 74 ] }, "player_match_performance_v_stddev_samp_fields": { @@ -56808,133 +57760,133 @@ export default { 29 ], "__typename": [ - 70 + 74 ] }, "player_match_performance_v_stream_cursor_input": { "initial_value": [ - 2529 + 2533 ], "ordering": [ - 224 + 228 ], "__typename": [ - 70 + 74 ] }, "player_match_performance_v_stream_cursor_value_input": { "accuracy": [ - 2009 + 2013 ], "accuracy_spotted": [ - 2009 + 2013 ], "aim_rating": [ - 1084 + 1088 ], "counter_strafe_pct": [ - 2009 + 2013 ], "enemy_blind_pr": [ - 2009 + 2013 ], "flash_assists_pr": [ - 2009 + 2013 ], "hs_pct": [ - 2009 + 2013 ], "kast_pct": [ - 2009 + 2013 ], "match_id": [ - 3818 + 3863 ], "overall_rating": [ - 1084 + 1088 ], "played_at": [ - 3421 + 3466 ], "positioning_rating": [ - 1084 + 1088 ], "rounds": [ 38 ], "source": [ - 70 + 74 ], "steam_id": [ - 169 + 173 ], "survival_pct": [ - 2009 + 2013 ], "traded_death_pct": [ - 2009 + 2013 ], "util_efficiency": [ - 2009 + 2013 ], "utility_rating": [ - 1084 + 1088 ], "__typename": [ - 70 + 74 ] }, "player_match_performance_v_sum_fields": { "accuracy": [ - 2009 + 2013 ], "accuracy_spotted": [ - 2009 + 2013 ], "aim_rating": [ - 1084 + 1088 ], "counter_strafe_pct": [ - 2009 + 2013 ], "enemy_blind_pr": [ - 2009 + 2013 ], "flash_assists_pr": [ - 2009 + 2013 ], "hs_pct": [ - 2009 + 2013 ], "kast_pct": [ - 2009 + 2013 ], "overall_rating": [ - 1084 + 1088 ], "positioning_rating": [ - 1084 + 1088 ], "rounds": [ 38 ], "steam_id": [ - 169 + 173 ], "survival_pct": [ - 2009 + 2013 ], "traded_death_pct": [ - 2009 + 2013 ], "util_efficiency": [ - 2009 + 2013 ], "utility_rating": [ - 1084 + 1088 ], "__typename": [ - 70 + 74 ] }, "player_match_performance_v_var_pop_fields": { @@ -56987,7 +57939,7 @@ export default { 29 ], "__typename": [ - 70 + 74 ] }, "player_match_performance_v_var_samp_fields": { @@ -57040,7 +57992,7 @@ export default { 29 ], "__typename": [ - 70 + 74 ] }, "player_match_performance_v_variance_fields": { @@ -57093,7 +58045,7 @@ export default { 29 ], "__typename": [ - 70 + 74 ] }, "player_match_stats_v": { @@ -57107,13 +58059,13 @@ export default { 38 ], "avg_crosshair_angle_deg": [ - 2009 + 2013 ], "avg_flash_duration": [ - 2009 + 2013 ], "avg_time_to_damage_s": [ - 2009 + 2013 ], "counter_strafe_eligible_shots": [ 38 @@ -57203,7 +58155,7 @@ export default { 38 ], "match_id": [ - 3818 + 3863 ], "molotov_damage": [ 38 @@ -57248,7 +58200,7 @@ export default { 38 ], "steam_id": [ - 169 + 173 ], "team_damage": [ 38 @@ -57287,7 +58239,7 @@ export default { 38 ], "utility_on_death": [ - 2009 + 2013 ], "wasted_magazine_shots": [ 38 @@ -57296,54 +58248,54 @@ export default { 38 ], "__typename": [ - 70 + 74 ] }, "player_match_stats_v_aggregate": { "aggregate": [ - 2538 + 2542 ], "nodes": [ - 2534 + 2538 ], "__typename": [ - 70 + 74 ] }, "player_match_stats_v_aggregate_bool_exp": { "count": [ - 2537 + 2541 ], "__typename": [ - 70 + 74 ] }, "player_match_stats_v_aggregate_bool_exp_count": { "arguments": [ - 2550 + 2554 ], "distinct": [ 3 ], "filter": [ - 2543 + 2547 ], "predicate": [ 39 ], "__typename": [ - 70 + 74 ] }, "player_match_stats_v_aggregate_fields": { "avg": [ - 2541 + 2545 ], "count": [ 38, { "columns": [ - 2550, + 2554, "[player_match_stats_v_select_column!]" ], "distinct": [ @@ -57352,80 +58304,80 @@ export default { } ], "max": [ - 2545 + 2549 ], "min": [ - 2547 + 2551 ], "stddev": [ - 2551 + 2555 ], "stddev_pop": [ - 2553 + 2557 ], "stddev_samp": [ - 2555 + 2559 ], "sum": [ - 2559 + 2563 ], "var_pop": [ - 2561 + 2565 ], "var_samp": [ - 2563 + 2567 ], "variance": [ - 2565 + 2569 ], "__typename": [ - 70 + 74 ] }, "player_match_stats_v_aggregate_order_by": { "avg": [ - 2542 + 2546 ], "count": [ - 2011 + 2015 ], "max": [ - 2546 + 2550 ], "min": [ - 2548 + 2552 ], "stddev": [ - 2552 + 2556 ], "stddev_pop": [ - 2554 + 2558 ], "stddev_samp": [ - 2556 + 2560 ], "sum": [ - 2560 + 2564 ], "var_pop": [ - 2562 + 2566 ], "var_samp": [ - 2564 + 2568 ], "variance": [ - 2566 + 2570 ], "__typename": [ - 70 + 74 ] }, "player_match_stats_v_arr_rel_insert_input": { "data": [ - 2544 + 2548 ], "__typename": [ - 70 + 74 ] }, "player_match_stats_v_avg_fields": { @@ -57625,218 +58577,218 @@ export default { 29 ], "__typename": [ - 70 + 74 ] }, "player_match_stats_v_avg_order_by": { "assists": [ - 2011 + 2015 ], "assists_ct": [ - 2011 + 2015 ], "assists_t": [ - 2011 + 2015 ], "avg_crosshair_angle_deg": [ - 2011 + 2015 ], "avg_flash_duration": [ - 2011 + 2015 ], "avg_time_to_damage_s": [ - 2011 + 2015 ], "counter_strafe_eligible_shots": [ - 2011 + 2015 ], "counter_strafed_shots": [ - 2011 + 2015 ], "damage": [ - 2011 + 2015 ], "damage_ct": [ - 2011 + 2015 ], "damage_t": [ - 2011 + 2015 ], "deaths": [ - 2011 + 2015 ], "deaths_ct": [ - 2011 + 2015 ], "deaths_t": [ - 2011 + 2015 ], "decoy_throws": [ - 2011 + 2015 ], "enemies_flashed": [ - 2011 + 2015 ], "first_bullet_hits": [ - 2011 + 2015 ], "first_bullet_shots": [ - 2011 + 2015 ], "five_kill_rounds": [ - 2011 + 2015 ], "flash_assists": [ - 2011 + 2015 ], "flashes_thrown": [ - 2011 + 2015 ], "four_kill_rounds": [ - 2011 + 2015 ], "he_damage": [ - 2011 + 2015 ], "he_team_damage": [ - 2011 + 2015 ], "he_throws": [ - 2011 + 2015 ], "headshot_hits": [ - 2011 + 2015 ], "hits": [ - 2011 + 2015 ], "hits_at_spotted": [ - 2011 + 2015 ], "hs_kills": [ - 2011 + 2015 ], "hs_kills_ct": [ - 2011 + 2015 ], "hs_kills_t": [ - 2011 + 2015 ], "kills": [ - 2011 + 2015 ], "kills_ct": [ - 2011 + 2015 ], "kills_t": [ - 2011 + 2015 ], "knife_kills": [ - 2011 + 2015 ], "molotov_damage": [ - 2011 + 2015 ], "molotov_throws": [ - 2011 + 2015 ], "non_awp_hits": [ - 2011 + 2015 ], "on_target_frames": [ - 2011 + 2015 ], "rounds_ct": [ - 2011 + 2015 ], "rounds_played": [ - 2011 + 2015 ], "rounds_t": [ - 2011 + 2015 ], "shots_at_spotted": [ - 2011 + 2015 ], "shots_fired": [ - 2011 + 2015 ], "smoke_throws": [ - 2011 + 2015 ], "spotted_count": [ - 2011 + 2015 ], "spotted_with_damage_count": [ - 2011 + 2015 ], "spray_hits": [ - 2011 + 2015 ], "spray_shots": [ - 2011 + 2015 ], "steam_id": [ - 2011 + 2015 ], "team_damage": [ - 2011 + 2015 ], "team_flashed": [ - 2011 + 2015 ], "three_kill_rounds": [ - 2011 + 2015 ], "total_engagement_frames": [ - 2011 + 2015 ], "trade_kill_attempts": [ - 2011 + 2015 ], "trade_kill_opportunities": [ - 2011 + 2015 ], "trade_kill_successes": [ - 2011 + 2015 ], "traded_death_attempts": [ - 2011 + 2015 ], "traded_death_opportunities": [ - 2011 + 2015 ], "traded_death_successes": [ - 2011 + 2015 ], "two_kill_rounds": [ - 2011 + 2015 ], "unused_utility_value": [ - 2011 + 2015 ], "utility_on_death": [ - 2011 + 2015 ], "wasted_magazine_shots": [ - 2011 + 2015 ], "zeus_kills": [ - 2011 + 2015 ], "__typename": [ - 70 + 74 ] }, "player_match_stats_v_bool_exp": { "_and": [ - 2543 + 2547 ], "_not": [ - 2543 + 2547 ], "_or": [ - 2543 + 2547 ], "assists": [ 39 @@ -57848,13 +58800,13 @@ export default { 39 ], "avg_crosshair_angle_deg": [ - 2010 + 2014 ], "avg_flash_duration": [ - 2010 + 2014 ], "avg_time_to_damage_s": [ - 2010 + 2014 ], "counter_strafe_eligible_shots": [ 39 @@ -57944,7 +58896,7 @@ export default { 39 ], "match_id": [ - 3820 + 3865 ], "molotov_damage": [ 39 @@ -57989,7 +58941,7 @@ export default { 39 ], "steam_id": [ - 171 + 175 ], "team_damage": [ 39 @@ -58028,7 +58980,7 @@ export default { 39 ], "utility_on_death": [ - 2010 + 2014 ], "wasted_magazine_shots": [ 39 @@ -58037,7 +58989,7 @@ export default { 39 ], "__typename": [ - 70 + 74 ] }, "player_match_stats_v_insert_input": { @@ -58051,13 +59003,13 @@ export default { 38 ], "avg_crosshair_angle_deg": [ - 2009 + 2013 ], "avg_flash_duration": [ - 2009 + 2013 ], "avg_time_to_damage_s": [ - 2009 + 2013 ], "counter_strafe_eligible_shots": [ 38 @@ -58147,7 +59099,7 @@ export default { 38 ], "match_id": [ - 3818 + 3863 ], "molotov_damage": [ 38 @@ -58192,7 +59144,7 @@ export default { 38 ], "steam_id": [ - 169 + 173 ], "team_damage": [ 38 @@ -58231,7 +59183,7 @@ export default { 38 ], "utility_on_death": [ - 2009 + 2013 ], "wasted_magazine_shots": [ 38 @@ -58240,7 +59192,7 @@ export default { 38 ], "__typename": [ - 70 + 74 ] }, "player_match_stats_v_max_fields": { @@ -58254,13 +59206,13 @@ export default { 38 ], "avg_crosshair_angle_deg": [ - 2009 + 2013 ], "avg_flash_duration": [ - 2009 + 2013 ], "avg_time_to_damage_s": [ - 2009 + 2013 ], "counter_strafe_eligible_shots": [ 38 @@ -58350,7 +59302,7 @@ export default { 38 ], "match_id": [ - 3818 + 3863 ], "molotov_damage": [ 38 @@ -58395,7 +59347,7 @@ export default { 38 ], "steam_id": [ - 169 + 173 ], "team_damage": [ 38 @@ -58434,7 +59386,7 @@ export default { 38 ], "utility_on_death": [ - 2009 + 2013 ], "wasted_magazine_shots": [ 38 @@ -58443,210 +59395,210 @@ export default { 38 ], "__typename": [ - 70 + 74 ] }, "player_match_stats_v_max_order_by": { "assists": [ - 2011 + 2015 ], "assists_ct": [ - 2011 + 2015 ], "assists_t": [ - 2011 + 2015 ], "avg_crosshair_angle_deg": [ - 2011 + 2015 ], "avg_flash_duration": [ - 2011 + 2015 ], "avg_time_to_damage_s": [ - 2011 + 2015 ], "counter_strafe_eligible_shots": [ - 2011 + 2015 ], "counter_strafed_shots": [ - 2011 + 2015 ], "damage": [ - 2011 + 2015 ], "damage_ct": [ - 2011 + 2015 ], "damage_t": [ - 2011 + 2015 ], "deaths": [ - 2011 + 2015 ], "deaths_ct": [ - 2011 + 2015 ], "deaths_t": [ - 2011 + 2015 ], "decoy_throws": [ - 2011 + 2015 ], "enemies_flashed": [ - 2011 + 2015 ], "first_bullet_hits": [ - 2011 + 2015 ], "first_bullet_shots": [ - 2011 + 2015 ], "five_kill_rounds": [ - 2011 + 2015 ], "flash_assists": [ - 2011 + 2015 ], "flashes_thrown": [ - 2011 + 2015 ], "four_kill_rounds": [ - 2011 + 2015 ], "he_damage": [ - 2011 + 2015 ], "he_team_damage": [ - 2011 + 2015 ], "he_throws": [ - 2011 + 2015 ], "headshot_hits": [ - 2011 + 2015 ], "hits": [ - 2011 + 2015 ], "hits_at_spotted": [ - 2011 + 2015 ], "hs_kills": [ - 2011 + 2015 ], "hs_kills_ct": [ - 2011 + 2015 ], "hs_kills_t": [ - 2011 + 2015 ], "kills": [ - 2011 + 2015 ], "kills_ct": [ - 2011 + 2015 ], "kills_t": [ - 2011 + 2015 ], "knife_kills": [ - 2011 + 2015 ], "match_id": [ - 2011 + 2015 ], "molotov_damage": [ - 2011 + 2015 ], "molotov_throws": [ - 2011 + 2015 ], "non_awp_hits": [ - 2011 + 2015 ], "on_target_frames": [ - 2011 + 2015 ], "rounds_ct": [ - 2011 + 2015 ], "rounds_played": [ - 2011 + 2015 ], "rounds_t": [ - 2011 + 2015 ], "shots_at_spotted": [ - 2011 + 2015 ], "shots_fired": [ - 2011 + 2015 ], "smoke_throws": [ - 2011 + 2015 ], "spotted_count": [ - 2011 + 2015 ], "spotted_with_damage_count": [ - 2011 + 2015 ], "spray_hits": [ - 2011 + 2015 ], "spray_shots": [ - 2011 + 2015 ], "steam_id": [ - 2011 + 2015 ], "team_damage": [ - 2011 + 2015 ], "team_flashed": [ - 2011 + 2015 ], "three_kill_rounds": [ - 2011 + 2015 ], "total_engagement_frames": [ - 2011 + 2015 ], "trade_kill_attempts": [ - 2011 + 2015 ], "trade_kill_opportunities": [ - 2011 + 2015 ], "trade_kill_successes": [ - 2011 + 2015 ], "traded_death_attempts": [ - 2011 + 2015 ], "traded_death_opportunities": [ - 2011 + 2015 ], "traded_death_successes": [ - 2011 + 2015 ], "two_kill_rounds": [ - 2011 + 2015 ], "unused_utility_value": [ - 2011 + 2015 ], "utility_on_death": [ - 2011 + 2015 ], "wasted_magazine_shots": [ - 2011 + 2015 ], "zeus_kills": [ - 2011 + 2015 ], "__typename": [ - 70 + 74 ] }, "player_match_stats_v_min_fields": { @@ -58660,13 +59612,13 @@ export default { 38 ], "avg_crosshair_angle_deg": [ - 2009 + 2013 ], "avg_flash_duration": [ - 2009 + 2013 ], "avg_time_to_damage_s": [ - 2009 + 2013 ], "counter_strafe_eligible_shots": [ 38 @@ -58756,7 +59708,7 @@ export default { 38 ], "match_id": [ - 3818 + 3863 ], "molotov_damage": [ 38 @@ -58801,7 +59753,7 @@ export default { 38 ], "steam_id": [ - 169 + 173 ], "team_damage": [ 38 @@ -58840,7 +59792,7 @@ export default { 38 ], "utility_on_death": [ - 2009 + 2013 ], "wasted_magazine_shots": [ 38 @@ -58849,413 +59801,413 @@ export default { 38 ], "__typename": [ - 70 + 74 ] }, "player_match_stats_v_min_order_by": { "assists": [ - 2011 + 2015 ], "assists_ct": [ - 2011 + 2015 ], "assists_t": [ - 2011 + 2015 ], "avg_crosshair_angle_deg": [ - 2011 + 2015 ], "avg_flash_duration": [ - 2011 + 2015 ], "avg_time_to_damage_s": [ - 2011 + 2015 ], "counter_strafe_eligible_shots": [ - 2011 + 2015 ], "counter_strafed_shots": [ - 2011 + 2015 ], "damage": [ - 2011 + 2015 ], "damage_ct": [ - 2011 + 2015 ], "damage_t": [ - 2011 + 2015 ], "deaths": [ - 2011 + 2015 ], "deaths_ct": [ - 2011 + 2015 ], "deaths_t": [ - 2011 + 2015 ], "decoy_throws": [ - 2011 + 2015 ], "enemies_flashed": [ - 2011 + 2015 ], "first_bullet_hits": [ - 2011 + 2015 ], "first_bullet_shots": [ - 2011 + 2015 ], "five_kill_rounds": [ - 2011 + 2015 ], "flash_assists": [ - 2011 + 2015 ], "flashes_thrown": [ - 2011 + 2015 ], "four_kill_rounds": [ - 2011 + 2015 ], "he_damage": [ - 2011 + 2015 ], "he_team_damage": [ - 2011 + 2015 ], "he_throws": [ - 2011 + 2015 ], "headshot_hits": [ - 2011 + 2015 ], "hits": [ - 2011 + 2015 ], "hits_at_spotted": [ - 2011 + 2015 ], "hs_kills": [ - 2011 + 2015 ], "hs_kills_ct": [ - 2011 + 2015 ], "hs_kills_t": [ - 2011 + 2015 ], "kills": [ - 2011 + 2015 ], "kills_ct": [ - 2011 + 2015 ], "kills_t": [ - 2011 + 2015 ], "knife_kills": [ - 2011 + 2015 ], "match_id": [ - 2011 + 2015 ], "molotov_damage": [ - 2011 + 2015 ], "molotov_throws": [ - 2011 + 2015 ], "non_awp_hits": [ - 2011 + 2015 ], "on_target_frames": [ - 2011 + 2015 ], "rounds_ct": [ - 2011 + 2015 ], "rounds_played": [ - 2011 + 2015 ], "rounds_t": [ - 2011 + 2015 ], "shots_at_spotted": [ - 2011 + 2015 ], "shots_fired": [ - 2011 + 2015 ], "smoke_throws": [ - 2011 + 2015 ], "spotted_count": [ - 2011 + 2015 ], "spotted_with_damage_count": [ - 2011 + 2015 ], "spray_hits": [ - 2011 + 2015 ], "spray_shots": [ - 2011 + 2015 ], "steam_id": [ - 2011 + 2015 ], "team_damage": [ - 2011 + 2015 ], "team_flashed": [ - 2011 + 2015 ], "three_kill_rounds": [ - 2011 + 2015 ], "total_engagement_frames": [ - 2011 + 2015 ], "trade_kill_attempts": [ - 2011 + 2015 ], "trade_kill_opportunities": [ - 2011 + 2015 ], "trade_kill_successes": [ - 2011 + 2015 ], "traded_death_attempts": [ - 2011 + 2015 ], "traded_death_opportunities": [ - 2011 + 2015 ], "traded_death_successes": [ - 2011 + 2015 ], "two_kill_rounds": [ - 2011 + 2015 ], "unused_utility_value": [ - 2011 + 2015 ], "utility_on_death": [ - 2011 + 2015 ], "wasted_magazine_shots": [ - 2011 + 2015 ], "zeus_kills": [ - 2011 + 2015 ], "__typename": [ - 70 + 74 ] }, "player_match_stats_v_order_by": { "assists": [ - 2011 + 2015 ], "assists_ct": [ - 2011 + 2015 ], "assists_t": [ - 2011 + 2015 ], "avg_crosshair_angle_deg": [ - 2011 + 2015 ], "avg_flash_duration": [ - 2011 + 2015 ], "avg_time_to_damage_s": [ - 2011 + 2015 ], "counter_strafe_eligible_shots": [ - 2011 + 2015 ], "counter_strafed_shots": [ - 2011 + 2015 ], "damage": [ - 2011 + 2015 ], "damage_ct": [ - 2011 + 2015 ], "damage_t": [ - 2011 + 2015 ], "deaths": [ - 2011 + 2015 ], "deaths_ct": [ - 2011 + 2015 ], "deaths_t": [ - 2011 + 2015 ], "decoy_throws": [ - 2011 + 2015 ], "enemies_flashed": [ - 2011 + 2015 ], "first_bullet_hits": [ - 2011 + 2015 ], "first_bullet_shots": [ - 2011 + 2015 ], "five_kill_rounds": [ - 2011 + 2015 ], "flash_assists": [ - 2011 + 2015 ], "flashes_thrown": [ - 2011 + 2015 ], "four_kill_rounds": [ - 2011 + 2015 ], "he_damage": [ - 2011 + 2015 ], "he_team_damage": [ - 2011 + 2015 ], "he_throws": [ - 2011 + 2015 ], "headshot_hits": [ - 2011 + 2015 ], "hits": [ - 2011 + 2015 ], "hits_at_spotted": [ - 2011 + 2015 ], "hs_kills": [ - 2011 + 2015 ], "hs_kills_ct": [ - 2011 + 2015 ], "hs_kills_t": [ - 2011 + 2015 ], "kills": [ - 2011 + 2015 ], "kills_ct": [ - 2011 + 2015 ], "kills_t": [ - 2011 + 2015 ], "knife_kills": [ - 2011 + 2015 ], "match_id": [ - 2011 + 2015 ], "molotov_damage": [ - 2011 + 2015 ], "molotov_throws": [ - 2011 + 2015 ], "non_awp_hits": [ - 2011 + 2015 ], "on_target_frames": [ - 2011 + 2015 ], "rounds_ct": [ - 2011 + 2015 ], "rounds_played": [ - 2011 + 2015 ], "rounds_t": [ - 2011 + 2015 ], "shots_at_spotted": [ - 2011 + 2015 ], "shots_fired": [ - 2011 + 2015 ], "smoke_throws": [ - 2011 + 2015 ], "spotted_count": [ - 2011 + 2015 ], "spotted_with_damage_count": [ - 2011 + 2015 ], "spray_hits": [ - 2011 + 2015 ], "spray_shots": [ - 2011 + 2015 ], "steam_id": [ - 2011 + 2015 ], "team_damage": [ - 2011 + 2015 ], "team_flashed": [ - 2011 + 2015 ], "three_kill_rounds": [ - 2011 + 2015 ], "total_engagement_frames": [ - 2011 + 2015 ], "trade_kill_attempts": [ - 2011 + 2015 ], "trade_kill_opportunities": [ - 2011 + 2015 ], "trade_kill_successes": [ - 2011 + 2015 ], "traded_death_attempts": [ - 2011 + 2015 ], "traded_death_opportunities": [ - 2011 + 2015 ], "traded_death_successes": [ - 2011 + 2015 ], "two_kill_rounds": [ - 2011 + 2015 ], "unused_utility_value": [ - 2011 + 2015 ], "utility_on_death": [ - 2011 + 2015 ], "wasted_magazine_shots": [ - 2011 + 2015 ], "zeus_kills": [ - 2011 + 2015 ], "__typename": [ - 70 + 74 ] }, "player_match_stats_v_select_column": {}, @@ -59456,207 +60408,207 @@ export default { 29 ], "__typename": [ - 70 + 74 ] }, "player_match_stats_v_stddev_order_by": { "assists": [ - 2011 + 2015 ], "assists_ct": [ - 2011 + 2015 ], "assists_t": [ - 2011 + 2015 ], "avg_crosshair_angle_deg": [ - 2011 + 2015 ], "avg_flash_duration": [ - 2011 + 2015 ], "avg_time_to_damage_s": [ - 2011 + 2015 ], "counter_strafe_eligible_shots": [ - 2011 + 2015 ], "counter_strafed_shots": [ - 2011 + 2015 ], "damage": [ - 2011 + 2015 ], "damage_ct": [ - 2011 + 2015 ], "damage_t": [ - 2011 + 2015 ], "deaths": [ - 2011 + 2015 ], "deaths_ct": [ - 2011 + 2015 ], "deaths_t": [ - 2011 + 2015 ], "decoy_throws": [ - 2011 + 2015 ], "enemies_flashed": [ - 2011 + 2015 ], "first_bullet_hits": [ - 2011 + 2015 ], "first_bullet_shots": [ - 2011 + 2015 ], "five_kill_rounds": [ - 2011 + 2015 ], "flash_assists": [ - 2011 + 2015 ], "flashes_thrown": [ - 2011 + 2015 ], "four_kill_rounds": [ - 2011 + 2015 ], "he_damage": [ - 2011 + 2015 ], "he_team_damage": [ - 2011 + 2015 ], "he_throws": [ - 2011 + 2015 ], "headshot_hits": [ - 2011 + 2015 ], "hits": [ - 2011 + 2015 ], "hits_at_spotted": [ - 2011 + 2015 ], "hs_kills": [ - 2011 + 2015 ], "hs_kills_ct": [ - 2011 + 2015 ], "hs_kills_t": [ - 2011 + 2015 ], "kills": [ - 2011 + 2015 ], "kills_ct": [ - 2011 + 2015 ], "kills_t": [ - 2011 + 2015 ], "knife_kills": [ - 2011 + 2015 ], "molotov_damage": [ - 2011 + 2015 ], "molotov_throws": [ - 2011 + 2015 ], "non_awp_hits": [ - 2011 + 2015 ], "on_target_frames": [ - 2011 + 2015 ], "rounds_ct": [ - 2011 + 2015 ], "rounds_played": [ - 2011 + 2015 ], "rounds_t": [ - 2011 + 2015 ], "shots_at_spotted": [ - 2011 + 2015 ], "shots_fired": [ - 2011 + 2015 ], "smoke_throws": [ - 2011 + 2015 ], "spotted_count": [ - 2011 + 2015 ], "spotted_with_damage_count": [ - 2011 + 2015 ], "spray_hits": [ - 2011 + 2015 ], "spray_shots": [ - 2011 + 2015 ], "steam_id": [ - 2011 + 2015 ], "team_damage": [ - 2011 + 2015 ], "team_flashed": [ - 2011 + 2015 ], "three_kill_rounds": [ - 2011 + 2015 ], "total_engagement_frames": [ - 2011 + 2015 ], "trade_kill_attempts": [ - 2011 + 2015 ], "trade_kill_opportunities": [ - 2011 + 2015 ], "trade_kill_successes": [ - 2011 + 2015 ], "traded_death_attempts": [ - 2011 + 2015 ], "traded_death_opportunities": [ - 2011 + 2015 ], "traded_death_successes": [ - 2011 + 2015 ], "two_kill_rounds": [ - 2011 + 2015 ], "unused_utility_value": [ - 2011 + 2015 ], "utility_on_death": [ - 2011 + 2015 ], "wasted_magazine_shots": [ - 2011 + 2015 ], "zeus_kills": [ - 2011 + 2015 ], "__typename": [ - 70 + 74 ] }, "player_match_stats_v_stddev_pop_fields": { @@ -59856,207 +60808,207 @@ export default { 29 ], "__typename": [ - 70 + 74 ] }, "player_match_stats_v_stddev_pop_order_by": { "assists": [ - 2011 + 2015 ], "assists_ct": [ - 2011 + 2015 ], "assists_t": [ - 2011 + 2015 ], "avg_crosshair_angle_deg": [ - 2011 + 2015 ], "avg_flash_duration": [ - 2011 + 2015 ], "avg_time_to_damage_s": [ - 2011 + 2015 ], "counter_strafe_eligible_shots": [ - 2011 + 2015 ], "counter_strafed_shots": [ - 2011 + 2015 ], "damage": [ - 2011 + 2015 ], "damage_ct": [ - 2011 + 2015 ], "damage_t": [ - 2011 + 2015 ], "deaths": [ - 2011 + 2015 ], "deaths_ct": [ - 2011 + 2015 ], "deaths_t": [ - 2011 + 2015 ], "decoy_throws": [ - 2011 + 2015 ], "enemies_flashed": [ - 2011 + 2015 ], "first_bullet_hits": [ - 2011 + 2015 ], "first_bullet_shots": [ - 2011 + 2015 ], "five_kill_rounds": [ - 2011 + 2015 ], "flash_assists": [ - 2011 + 2015 ], "flashes_thrown": [ - 2011 + 2015 ], "four_kill_rounds": [ - 2011 + 2015 ], "he_damage": [ - 2011 + 2015 ], "he_team_damage": [ - 2011 + 2015 ], "he_throws": [ - 2011 + 2015 ], "headshot_hits": [ - 2011 + 2015 ], "hits": [ - 2011 + 2015 ], "hits_at_spotted": [ - 2011 + 2015 ], "hs_kills": [ - 2011 + 2015 ], "hs_kills_ct": [ - 2011 + 2015 ], "hs_kills_t": [ - 2011 + 2015 ], "kills": [ - 2011 + 2015 ], "kills_ct": [ - 2011 + 2015 ], "kills_t": [ - 2011 + 2015 ], "knife_kills": [ - 2011 + 2015 ], "molotov_damage": [ - 2011 + 2015 ], "molotov_throws": [ - 2011 + 2015 ], "non_awp_hits": [ - 2011 + 2015 ], "on_target_frames": [ - 2011 + 2015 ], "rounds_ct": [ - 2011 + 2015 ], "rounds_played": [ - 2011 + 2015 ], "rounds_t": [ - 2011 + 2015 ], "shots_at_spotted": [ - 2011 + 2015 ], "shots_fired": [ - 2011 + 2015 ], "smoke_throws": [ - 2011 + 2015 ], "spotted_count": [ - 2011 + 2015 ], "spotted_with_damage_count": [ - 2011 + 2015 ], "spray_hits": [ - 2011 + 2015 ], "spray_shots": [ - 2011 + 2015 ], "steam_id": [ - 2011 + 2015 ], "team_damage": [ - 2011 + 2015 ], "team_flashed": [ - 2011 + 2015 ], "three_kill_rounds": [ - 2011 + 2015 ], "total_engagement_frames": [ - 2011 + 2015 ], "trade_kill_attempts": [ - 2011 + 2015 ], "trade_kill_opportunities": [ - 2011 + 2015 ], "trade_kill_successes": [ - 2011 + 2015 ], "traded_death_attempts": [ - 2011 + 2015 ], "traded_death_opportunities": [ - 2011 + 2015 ], "traded_death_successes": [ - 2011 + 2015 ], "two_kill_rounds": [ - 2011 + 2015 ], "unused_utility_value": [ - 2011 + 2015 ], "utility_on_death": [ - 2011 + 2015 ], "wasted_magazine_shots": [ - 2011 + 2015 ], "zeus_kills": [ - 2011 + 2015 ], "__typename": [ - 70 + 74 ] }, "player_match_stats_v_stddev_samp_fields": { @@ -60256,218 +61208,218 @@ export default { 29 ], "__typename": [ - 70 + 74 ] }, "player_match_stats_v_stddev_samp_order_by": { "assists": [ - 2011 + 2015 ], "assists_ct": [ - 2011 + 2015 ], "assists_t": [ - 2011 + 2015 ], "avg_crosshair_angle_deg": [ - 2011 + 2015 ], "avg_flash_duration": [ - 2011 + 2015 ], "avg_time_to_damage_s": [ - 2011 + 2015 ], "counter_strafe_eligible_shots": [ - 2011 + 2015 ], "counter_strafed_shots": [ - 2011 + 2015 ], "damage": [ - 2011 + 2015 ], "damage_ct": [ - 2011 + 2015 ], "damage_t": [ - 2011 + 2015 ], "deaths": [ - 2011 + 2015 ], "deaths_ct": [ - 2011 + 2015 ], "deaths_t": [ - 2011 + 2015 ], "decoy_throws": [ - 2011 + 2015 ], "enemies_flashed": [ - 2011 + 2015 ], "first_bullet_hits": [ - 2011 + 2015 ], "first_bullet_shots": [ - 2011 + 2015 ], "five_kill_rounds": [ - 2011 + 2015 ], "flash_assists": [ - 2011 + 2015 ], "flashes_thrown": [ - 2011 + 2015 ], "four_kill_rounds": [ - 2011 + 2015 ], "he_damage": [ - 2011 + 2015 ], "he_team_damage": [ - 2011 + 2015 ], "he_throws": [ - 2011 + 2015 ], "headshot_hits": [ - 2011 + 2015 ], "hits": [ - 2011 + 2015 ], "hits_at_spotted": [ - 2011 + 2015 ], "hs_kills": [ - 2011 + 2015 ], "hs_kills_ct": [ - 2011 + 2015 ], "hs_kills_t": [ - 2011 + 2015 ], "kills": [ - 2011 + 2015 ], "kills_ct": [ - 2011 + 2015 ], "kills_t": [ - 2011 + 2015 ], "knife_kills": [ - 2011 + 2015 ], "molotov_damage": [ - 2011 + 2015 ], "molotov_throws": [ - 2011 + 2015 ], "non_awp_hits": [ - 2011 + 2015 ], "on_target_frames": [ - 2011 + 2015 ], "rounds_ct": [ - 2011 + 2015 ], "rounds_played": [ - 2011 + 2015 ], "rounds_t": [ - 2011 + 2015 ], "shots_at_spotted": [ - 2011 + 2015 ], "shots_fired": [ - 2011 + 2015 ], "smoke_throws": [ - 2011 + 2015 ], "spotted_count": [ - 2011 + 2015 ], "spotted_with_damage_count": [ - 2011 + 2015 ], "spray_hits": [ - 2011 + 2015 ], "spray_shots": [ - 2011 + 2015 ], "steam_id": [ - 2011 + 2015 ], "team_damage": [ - 2011 + 2015 ], "team_flashed": [ - 2011 + 2015 ], "three_kill_rounds": [ - 2011 + 2015 ], "total_engagement_frames": [ - 2011 + 2015 ], "trade_kill_attempts": [ - 2011 + 2015 ], "trade_kill_opportunities": [ - 2011 + 2015 ], "trade_kill_successes": [ - 2011 + 2015 ], "traded_death_attempts": [ - 2011 + 2015 ], "traded_death_opportunities": [ - 2011 + 2015 ], "traded_death_successes": [ - 2011 + 2015 ], "two_kill_rounds": [ - 2011 + 2015 ], "unused_utility_value": [ - 2011 + 2015 ], "utility_on_death": [ - 2011 + 2015 ], "wasted_magazine_shots": [ - 2011 + 2015 ], "zeus_kills": [ - 2011 + 2015 ], "__typename": [ - 70 + 74 ] }, "player_match_stats_v_stream_cursor_input": { "initial_value": [ - 2558 + 2562 ], "ordering": [ - 224 + 228 ], "__typename": [ - 70 + 74 ] }, "player_match_stats_v_stream_cursor_value_input": { @@ -60481,13 +61433,13 @@ export default { 38 ], "avg_crosshair_angle_deg": [ - 2009 + 2013 ], "avg_flash_duration": [ - 2009 + 2013 ], "avg_time_to_damage_s": [ - 2009 + 2013 ], "counter_strafe_eligible_shots": [ 38 @@ -60577,7 +61529,7 @@ export default { 38 ], "match_id": [ - 3818 + 3863 ], "molotov_damage": [ 38 @@ -60622,7 +61574,7 @@ export default { 38 ], "steam_id": [ - 169 + 173 ], "team_damage": [ 38 @@ -60661,7 +61613,7 @@ export default { 38 ], "utility_on_death": [ - 2009 + 2013 ], "wasted_magazine_shots": [ 38 @@ -60670,7 +61622,7 @@ export default { 38 ], "__typename": [ - 70 + 74 ] }, "player_match_stats_v_sum_fields": { @@ -60684,13 +61636,13 @@ export default { 38 ], "avg_crosshair_angle_deg": [ - 2009 + 2013 ], "avg_flash_duration": [ - 2009 + 2013 ], "avg_time_to_damage_s": [ - 2009 + 2013 ], "counter_strafe_eligible_shots": [ 38 @@ -60822,7 +61774,7 @@ export default { 38 ], "steam_id": [ - 169 + 173 ], "team_damage": [ 38 @@ -60861,7 +61813,7 @@ export default { 38 ], "utility_on_death": [ - 2009 + 2013 ], "wasted_magazine_shots": [ 38 @@ -60870,207 +61822,207 @@ export default { 38 ], "__typename": [ - 70 + 74 ] }, "player_match_stats_v_sum_order_by": { "assists": [ - 2011 + 2015 ], "assists_ct": [ - 2011 + 2015 ], "assists_t": [ - 2011 + 2015 ], "avg_crosshair_angle_deg": [ - 2011 + 2015 ], "avg_flash_duration": [ - 2011 + 2015 ], "avg_time_to_damage_s": [ - 2011 + 2015 ], "counter_strafe_eligible_shots": [ - 2011 + 2015 ], "counter_strafed_shots": [ - 2011 + 2015 ], "damage": [ - 2011 + 2015 ], "damage_ct": [ - 2011 + 2015 ], "damage_t": [ - 2011 + 2015 ], "deaths": [ - 2011 + 2015 ], "deaths_ct": [ - 2011 + 2015 ], "deaths_t": [ - 2011 + 2015 ], "decoy_throws": [ - 2011 + 2015 ], "enemies_flashed": [ - 2011 + 2015 ], "first_bullet_hits": [ - 2011 + 2015 ], "first_bullet_shots": [ - 2011 + 2015 ], "five_kill_rounds": [ - 2011 + 2015 ], "flash_assists": [ - 2011 + 2015 ], "flashes_thrown": [ - 2011 + 2015 ], "four_kill_rounds": [ - 2011 + 2015 ], "he_damage": [ - 2011 + 2015 ], "he_team_damage": [ - 2011 + 2015 ], "he_throws": [ - 2011 + 2015 ], "headshot_hits": [ - 2011 + 2015 ], "hits": [ - 2011 + 2015 ], "hits_at_spotted": [ - 2011 + 2015 ], "hs_kills": [ - 2011 + 2015 ], "hs_kills_ct": [ - 2011 + 2015 ], "hs_kills_t": [ - 2011 + 2015 ], "kills": [ - 2011 + 2015 ], "kills_ct": [ - 2011 + 2015 ], "kills_t": [ - 2011 + 2015 ], "knife_kills": [ - 2011 + 2015 ], "molotov_damage": [ - 2011 + 2015 ], "molotov_throws": [ - 2011 + 2015 ], "non_awp_hits": [ - 2011 + 2015 ], "on_target_frames": [ - 2011 + 2015 ], "rounds_ct": [ - 2011 + 2015 ], "rounds_played": [ - 2011 + 2015 ], "rounds_t": [ - 2011 + 2015 ], "shots_at_spotted": [ - 2011 + 2015 ], "shots_fired": [ - 2011 + 2015 ], "smoke_throws": [ - 2011 + 2015 ], "spotted_count": [ - 2011 + 2015 ], "spotted_with_damage_count": [ - 2011 + 2015 ], "spray_hits": [ - 2011 + 2015 ], "spray_shots": [ - 2011 + 2015 ], "steam_id": [ - 2011 + 2015 ], "team_damage": [ - 2011 + 2015 ], "team_flashed": [ - 2011 + 2015 ], "three_kill_rounds": [ - 2011 + 2015 ], "total_engagement_frames": [ - 2011 + 2015 ], "trade_kill_attempts": [ - 2011 + 2015 ], "trade_kill_opportunities": [ - 2011 + 2015 ], "trade_kill_successes": [ - 2011 + 2015 ], "traded_death_attempts": [ - 2011 + 2015 ], "traded_death_opportunities": [ - 2011 + 2015 ], "traded_death_successes": [ - 2011 + 2015 ], "two_kill_rounds": [ - 2011 + 2015 ], "unused_utility_value": [ - 2011 + 2015 ], "utility_on_death": [ - 2011 + 2015 ], "wasted_magazine_shots": [ - 2011 + 2015 ], "zeus_kills": [ - 2011 + 2015 ], "__typename": [ - 70 + 74 ] }, "player_match_stats_v_var_pop_fields": { @@ -61270,207 +62222,207 @@ export default { 29 ], "__typename": [ - 70 + 74 ] }, "player_match_stats_v_var_pop_order_by": { "assists": [ - 2011 + 2015 ], "assists_ct": [ - 2011 + 2015 ], "assists_t": [ - 2011 + 2015 ], "avg_crosshair_angle_deg": [ - 2011 + 2015 ], "avg_flash_duration": [ - 2011 + 2015 ], "avg_time_to_damage_s": [ - 2011 + 2015 ], "counter_strafe_eligible_shots": [ - 2011 + 2015 ], "counter_strafed_shots": [ - 2011 + 2015 ], "damage": [ - 2011 + 2015 ], "damage_ct": [ - 2011 + 2015 ], "damage_t": [ - 2011 + 2015 ], "deaths": [ - 2011 + 2015 ], "deaths_ct": [ - 2011 + 2015 ], "deaths_t": [ - 2011 + 2015 ], "decoy_throws": [ - 2011 + 2015 ], "enemies_flashed": [ - 2011 + 2015 ], "first_bullet_hits": [ - 2011 + 2015 ], "first_bullet_shots": [ - 2011 + 2015 ], "five_kill_rounds": [ - 2011 + 2015 ], "flash_assists": [ - 2011 + 2015 ], "flashes_thrown": [ - 2011 + 2015 ], "four_kill_rounds": [ - 2011 + 2015 ], "he_damage": [ - 2011 + 2015 ], "he_team_damage": [ - 2011 + 2015 ], "he_throws": [ - 2011 + 2015 ], "headshot_hits": [ - 2011 + 2015 ], "hits": [ - 2011 + 2015 ], "hits_at_spotted": [ - 2011 + 2015 ], "hs_kills": [ - 2011 + 2015 ], "hs_kills_ct": [ - 2011 + 2015 ], "hs_kills_t": [ - 2011 + 2015 ], "kills": [ - 2011 + 2015 ], "kills_ct": [ - 2011 + 2015 ], "kills_t": [ - 2011 + 2015 ], "knife_kills": [ - 2011 + 2015 ], "molotov_damage": [ - 2011 + 2015 ], "molotov_throws": [ - 2011 + 2015 ], "non_awp_hits": [ - 2011 + 2015 ], "on_target_frames": [ - 2011 + 2015 ], "rounds_ct": [ - 2011 + 2015 ], "rounds_played": [ - 2011 + 2015 ], "rounds_t": [ - 2011 + 2015 ], "shots_at_spotted": [ - 2011 + 2015 ], "shots_fired": [ - 2011 + 2015 ], "smoke_throws": [ - 2011 + 2015 ], "spotted_count": [ - 2011 + 2015 ], "spotted_with_damage_count": [ - 2011 + 2015 ], "spray_hits": [ - 2011 + 2015 ], "spray_shots": [ - 2011 + 2015 ], "steam_id": [ - 2011 + 2015 ], "team_damage": [ - 2011 + 2015 ], "team_flashed": [ - 2011 + 2015 ], "three_kill_rounds": [ - 2011 + 2015 ], "total_engagement_frames": [ - 2011 + 2015 ], "trade_kill_attempts": [ - 2011 + 2015 ], "trade_kill_opportunities": [ - 2011 + 2015 ], "trade_kill_successes": [ - 2011 + 2015 ], "traded_death_attempts": [ - 2011 + 2015 ], "traded_death_opportunities": [ - 2011 + 2015 ], "traded_death_successes": [ - 2011 + 2015 ], "two_kill_rounds": [ - 2011 + 2015 ], "unused_utility_value": [ - 2011 + 2015 ], "utility_on_death": [ - 2011 + 2015 ], "wasted_magazine_shots": [ - 2011 + 2015 ], "zeus_kills": [ - 2011 + 2015 ], "__typename": [ - 70 + 74 ] }, "player_match_stats_v_var_samp_fields": { @@ -61670,207 +62622,207 @@ export default { 29 ], "__typename": [ - 70 + 74 ] }, "player_match_stats_v_var_samp_order_by": { "assists": [ - 2011 + 2015 ], "assists_ct": [ - 2011 + 2015 ], "assists_t": [ - 2011 + 2015 ], "avg_crosshair_angle_deg": [ - 2011 + 2015 ], "avg_flash_duration": [ - 2011 + 2015 ], "avg_time_to_damage_s": [ - 2011 + 2015 ], "counter_strafe_eligible_shots": [ - 2011 + 2015 ], "counter_strafed_shots": [ - 2011 + 2015 ], "damage": [ - 2011 + 2015 ], "damage_ct": [ - 2011 + 2015 ], "damage_t": [ - 2011 + 2015 ], "deaths": [ - 2011 + 2015 ], "deaths_ct": [ - 2011 + 2015 ], "deaths_t": [ - 2011 + 2015 ], "decoy_throws": [ - 2011 + 2015 ], "enemies_flashed": [ - 2011 + 2015 ], "first_bullet_hits": [ - 2011 + 2015 ], "first_bullet_shots": [ - 2011 + 2015 ], "five_kill_rounds": [ - 2011 + 2015 ], "flash_assists": [ - 2011 + 2015 ], "flashes_thrown": [ - 2011 + 2015 ], "four_kill_rounds": [ - 2011 + 2015 ], "he_damage": [ - 2011 + 2015 ], "he_team_damage": [ - 2011 + 2015 ], "he_throws": [ - 2011 + 2015 ], "headshot_hits": [ - 2011 + 2015 ], "hits": [ - 2011 + 2015 ], "hits_at_spotted": [ - 2011 + 2015 ], "hs_kills": [ - 2011 + 2015 ], "hs_kills_ct": [ - 2011 + 2015 ], "hs_kills_t": [ - 2011 + 2015 ], "kills": [ - 2011 + 2015 ], "kills_ct": [ - 2011 + 2015 ], "kills_t": [ - 2011 + 2015 ], "knife_kills": [ - 2011 + 2015 ], "molotov_damage": [ - 2011 + 2015 ], "molotov_throws": [ - 2011 + 2015 ], "non_awp_hits": [ - 2011 + 2015 ], "on_target_frames": [ - 2011 + 2015 ], "rounds_ct": [ - 2011 + 2015 ], "rounds_played": [ - 2011 + 2015 ], "rounds_t": [ - 2011 + 2015 ], "shots_at_spotted": [ - 2011 + 2015 ], "shots_fired": [ - 2011 + 2015 ], "smoke_throws": [ - 2011 + 2015 ], "spotted_count": [ - 2011 + 2015 ], "spotted_with_damage_count": [ - 2011 + 2015 ], "spray_hits": [ - 2011 + 2015 ], "spray_shots": [ - 2011 + 2015 ], "steam_id": [ - 2011 + 2015 ], "team_damage": [ - 2011 + 2015 ], "team_flashed": [ - 2011 + 2015 ], "three_kill_rounds": [ - 2011 + 2015 ], "total_engagement_frames": [ - 2011 + 2015 ], "trade_kill_attempts": [ - 2011 + 2015 ], "trade_kill_opportunities": [ - 2011 + 2015 ], "trade_kill_successes": [ - 2011 + 2015 ], "traded_death_attempts": [ - 2011 + 2015 ], "traded_death_opportunities": [ - 2011 + 2015 ], "traded_death_successes": [ - 2011 + 2015 ], "two_kill_rounds": [ - 2011 + 2015 ], "unused_utility_value": [ - 2011 + 2015 ], "utility_on_death": [ - 2011 + 2015 ], "wasted_magazine_shots": [ - 2011 + 2015 ], "zeus_kills": [ - 2011 + 2015 ], "__typename": [ - 70 + 74 ] }, "player_match_stats_v_variance_fields": { @@ -62070,289 +63022,289 @@ export default { 29 ], "__typename": [ - 70 + 74 ] }, "player_match_stats_v_variance_order_by": { "assists": [ - 2011 + 2015 ], "assists_ct": [ - 2011 + 2015 ], "assists_t": [ - 2011 + 2015 ], "avg_crosshair_angle_deg": [ - 2011 + 2015 ], "avg_flash_duration": [ - 2011 + 2015 ], "avg_time_to_damage_s": [ - 2011 + 2015 ], "counter_strafe_eligible_shots": [ - 2011 + 2015 ], "counter_strafed_shots": [ - 2011 + 2015 ], "damage": [ - 2011 + 2015 ], "damage_ct": [ - 2011 + 2015 ], "damage_t": [ - 2011 + 2015 ], "deaths": [ - 2011 + 2015 ], "deaths_ct": [ - 2011 + 2015 ], "deaths_t": [ - 2011 + 2015 ], "decoy_throws": [ - 2011 + 2015 ], "enemies_flashed": [ - 2011 + 2015 ], "first_bullet_hits": [ - 2011 + 2015 ], "first_bullet_shots": [ - 2011 + 2015 ], "five_kill_rounds": [ - 2011 + 2015 ], "flash_assists": [ - 2011 + 2015 ], "flashes_thrown": [ - 2011 + 2015 ], "four_kill_rounds": [ - 2011 + 2015 ], "he_damage": [ - 2011 + 2015 ], "he_team_damage": [ - 2011 + 2015 ], "he_throws": [ - 2011 + 2015 ], "headshot_hits": [ - 2011 + 2015 ], "hits": [ - 2011 + 2015 ], "hits_at_spotted": [ - 2011 + 2015 ], "hs_kills": [ - 2011 + 2015 ], "hs_kills_ct": [ - 2011 + 2015 ], "hs_kills_t": [ - 2011 + 2015 ], "kills": [ - 2011 + 2015 ], "kills_ct": [ - 2011 + 2015 ], "kills_t": [ - 2011 + 2015 ], "knife_kills": [ - 2011 + 2015 ], "molotov_damage": [ - 2011 + 2015 ], "molotov_throws": [ - 2011 + 2015 ], "non_awp_hits": [ - 2011 + 2015 ], "on_target_frames": [ - 2011 + 2015 ], "rounds_ct": [ - 2011 + 2015 ], "rounds_played": [ - 2011 + 2015 ], "rounds_t": [ - 2011 + 2015 ], "shots_at_spotted": [ - 2011 + 2015 ], "shots_fired": [ - 2011 + 2015 ], "smoke_throws": [ - 2011 + 2015 ], "spotted_count": [ - 2011 + 2015 ], "spotted_with_damage_count": [ - 2011 + 2015 ], "spray_hits": [ - 2011 + 2015 ], "spray_shots": [ - 2011 + 2015 ], "steam_id": [ - 2011 + 2015 ], "team_damage": [ - 2011 + 2015 ], "team_flashed": [ - 2011 + 2015 ], "three_kill_rounds": [ - 2011 + 2015 ], "total_engagement_frames": [ - 2011 + 2015 ], "trade_kill_attempts": [ - 2011 + 2015 ], "trade_kill_opportunities": [ - 2011 + 2015 ], "trade_kill_successes": [ - 2011 + 2015 ], "traded_death_attempts": [ - 2011 + 2015 ], "traded_death_opportunities": [ - 2011 + 2015 ], "traded_death_successes": [ - 2011 + 2015 ], "two_kill_rounds": [ - 2011 + 2015 ], "unused_utility_value": [ - 2011 + 2015 ], "utility_on_death": [ - 2011 + 2015 ], "wasted_magazine_shots": [ - 2011 + 2015 ], "zeus_kills": [ - 2011 + 2015 ], "__typename": [ - 70 + 74 ] }, "player_objectives": { "deleted_at": [ - 3421 + 3466 ], "match": [ - 1826 + 1830 ], "match_id": [ - 3818 + 3863 ], "match_map": [ - 1664 + 1668 ], "match_map_id": [ - 3818 + 3863 ], "player": [ - 2878 + 2914 ], "player_steam_id": [ - 169 + 173 ], "round": [ 38 ], "time": [ - 3421 + 3466 ], "type": [ - 765 + 769 ], "__typename": [ - 70 + 74 ] }, "player_objectives_aggregate": { "aggregate": [ - 2571 + 2575 ], "nodes": [ - 2567 + 2571 ], "__typename": [ - 70 + 74 ] }, "player_objectives_aggregate_bool_exp": { "count": [ - 2570 + 2574 ], "__typename": [ - 70 + 74 ] }, "player_objectives_aggregate_bool_exp_count": { "arguments": [ - 2588 + 2592 ], "distinct": [ 3 ], "filter": [ - 2576 + 2580 ], "predicate": [ 39 ], "__typename": [ - 70 + 74 ] }, "player_objectives_aggregate_fields": { "avg": [ - 2574 + 2578 ], "count": [ 38, { "columns": [ - 2588, + 2592, "[player_objectives_select_column!]" ], "distinct": [ @@ -62361,83 +63313,83 @@ export default { } ], "max": [ - 2580 + 2584 ], "min": [ - 2582 + 2586 ], "stddev": [ - 2590 + 2594 ], "stddev_pop": [ - 2592 + 2596 ], "stddev_samp": [ - 2594 + 2598 ], "sum": [ - 2598 + 2602 ], "var_pop": [ - 2602 + 2606 ], "var_samp": [ - 2604 + 2608 ], "variance": [ - 2606 + 2610 ], "__typename": [ - 70 + 74 ] }, "player_objectives_aggregate_order_by": { "avg": [ - 2575 + 2579 ], "count": [ - 2011 + 2015 ], "max": [ - 2581 + 2585 ], "min": [ - 2583 + 2587 ], "stddev": [ - 2591 + 2595 ], "stddev_pop": [ - 2593 + 2597 ], "stddev_samp": [ - 2595 + 2599 ], "sum": [ - 2599 + 2603 ], "var_pop": [ - 2603 + 2607 ], "var_samp": [ - 2605 + 2609 ], "variance": [ - 2607 + 2611 ], "__typename": [ - 70 + 74 ] }, "player_objectives_arr_rel_insert_input": { "data": [ - 2579 + 2583 ], "on_conflict": [ - 2585 + 2589 ], "__typename": [ - 70 + 74 ] }, "player_objectives_avg_fields": { @@ -62448,201 +63400,201 @@ export default { 29 ], "__typename": [ - 70 + 74 ] }, "player_objectives_avg_order_by": { "player_steam_id": [ - 2011 + 2015 ], "round": [ - 2011 + 2015 ], "__typename": [ - 70 + 74 ] }, "player_objectives_bool_exp": { "_and": [ - 2576 + 2580 ], "_not": [ - 2576 + 2580 ], "_or": [ - 2576 + 2580 ], "deleted_at": [ - 3422 + 3467 ], "match": [ - 1835 + 1839 ], "match_id": [ - 3820 + 3865 ], "match_map": [ - 1673 + 1677 ], "match_map_id": [ - 3820 + 3865 ], "player": [ - 2882 + 2918 ], "player_steam_id": [ - 171 + 175 ], "round": [ 39 ], "time": [ - 3422 + 3467 ], "type": [ - 766 + 770 ], "__typename": [ - 70 + 74 ] }, "player_objectives_constraint": {}, "player_objectives_inc_input": { "player_steam_id": [ - 169 + 173 ], "round": [ 38 ], "__typename": [ - 70 + 74 ] }, "player_objectives_insert_input": { "deleted_at": [ - 3421 + 3466 ], "match": [ - 1844 + 1848 ], "match_id": [ - 3818 + 3863 ], "match_map": [ - 1682 + 1686 ], "match_map_id": [ - 3818 + 3863 ], "player": [ - 2889 + 2925 ], "player_steam_id": [ - 169 + 173 ], "round": [ 38 ], "time": [ - 3421 + 3466 ], "type": [ - 765 + 769 ], "__typename": [ - 70 + 74 ] }, "player_objectives_max_fields": { "deleted_at": [ - 3421 + 3466 ], "match_id": [ - 3818 + 3863 ], "match_map_id": [ - 3818 + 3863 ], "player_steam_id": [ - 169 + 173 ], "round": [ 38 ], "time": [ - 3421 + 3466 ], "__typename": [ - 70 + 74 ] }, "player_objectives_max_order_by": { "deleted_at": [ - 2011 + 2015 ], "match_id": [ - 2011 + 2015 ], "match_map_id": [ - 2011 + 2015 ], "player_steam_id": [ - 2011 + 2015 ], "round": [ - 2011 + 2015 ], "time": [ - 2011 + 2015 ], "__typename": [ - 70 + 74 ] }, "player_objectives_min_fields": { "deleted_at": [ - 3421 + 3466 ], "match_id": [ - 3818 + 3863 ], "match_map_id": [ - 3818 + 3863 ], "player_steam_id": [ - 169 + 173 ], "round": [ 38 ], "time": [ - 3421 + 3466 ], "__typename": [ - 70 + 74 ] }, "player_objectives_min_order_by": { "deleted_at": [ - 2011 + 2015 ], "match_id": [ - 2011 + 2015 ], "match_map_id": [ - 2011 + 2015 ], "player_steam_id": [ - 2011 + 2015 ], "round": [ - 2011 + 2015 ], "time": [ - 2011 + 2015 ], "__typename": [ - 70 + 74 ] }, "player_objectives_mutation_response": { @@ -62650,100 +63602,100 @@ export default { 38 ], "returning": [ - 2567 + 2571 ], "__typename": [ - 70 + 74 ] }, "player_objectives_on_conflict": { "constraint": [ - 2577 + 2581 ], "update_columns": [ - 2600 + 2604 ], "where": [ - 2576 + 2580 ], "__typename": [ - 70 + 74 ] }, "player_objectives_order_by": { "deleted_at": [ - 2011 + 2015 ], "match": [ - 1846 + 1850 ], "match_id": [ - 2011 + 2015 ], "match_map": [ - 1684 + 1688 ], "match_map_id": [ - 2011 + 2015 ], "player": [ - 2891 + 2927 ], "player_steam_id": [ - 2011 + 2015 ], "round": [ - 2011 + 2015 ], "time": [ - 2011 + 2015 ], "type": [ - 2011 + 2015 ], "__typename": [ - 70 + 74 ] }, "player_objectives_pk_columns_input": { "match_map_id": [ - 3818 + 3863 ], "player_steam_id": [ - 169 + 173 ], "time": [ - 3421 + 3466 ], "__typename": [ - 70 + 74 ] }, "player_objectives_select_column": {}, "player_objectives_set_input": { "deleted_at": [ - 3421 + 3466 ], "match_id": [ - 3818 + 3863 ], "match_map_id": [ - 3818 + 3863 ], "player_steam_id": [ - 169 + 173 ], "round": [ 38 ], "time": [ - 3421 + 3466 ], "type": [ - 765 + 769 ], "__typename": [ - 70 + 74 ] }, "player_objectives_stddev_fields": { @@ -62754,18 +63706,18 @@ export default { 29 ], "__typename": [ - 70 + 74 ] }, "player_objectives_stddev_order_by": { "player_steam_id": [ - 2011 + 2015 ], "round": [ - 2011 + 2015 ], "__typename": [ - 70 + 74 ] }, "player_objectives_stddev_pop_fields": { @@ -62776,18 +63728,18 @@ export default { 29 ], "__typename": [ - 70 + 74 ] }, "player_objectives_stddev_pop_order_by": { "player_steam_id": [ - 2011 + 2015 ], "round": [ - 2011 + 2015 ], "__typename": [ - 70 + 74 ] }, "player_objectives_stddev_samp_fields": { @@ -62798,92 +63750,92 @@ export default { 29 ], "__typename": [ - 70 + 74 ] }, "player_objectives_stddev_samp_order_by": { "player_steam_id": [ - 2011 + 2015 ], "round": [ - 2011 + 2015 ], "__typename": [ - 70 + 74 ] }, "player_objectives_stream_cursor_input": { "initial_value": [ - 2597 + 2601 ], "ordering": [ - 224 + 228 ], "__typename": [ - 70 + 74 ] }, "player_objectives_stream_cursor_value_input": { "deleted_at": [ - 3421 + 3466 ], "match_id": [ - 3818 + 3863 ], "match_map_id": [ - 3818 + 3863 ], "player_steam_id": [ - 169 + 173 ], "round": [ 38 ], "time": [ - 3421 + 3466 ], "type": [ - 765 + 769 ], "__typename": [ - 70 + 74 ] }, "player_objectives_sum_fields": { "player_steam_id": [ - 169 + 173 ], "round": [ 38 ], "__typename": [ - 70 + 74 ] }, "player_objectives_sum_order_by": { "player_steam_id": [ - 2011 + 2015 ], "round": [ - 2011 + 2015 ], "__typename": [ - 70 + 74 ] }, "player_objectives_update_column": {}, "player_objectives_updates": { "_inc": [ - 2578 + 2582 ], "_set": [ - 2589 + 2593 ], "where": [ - 2576 + 2580 ], "__typename": [ - 70 + 74 ] }, "player_objectives_var_pop_fields": { @@ -62894,18 +63846,18 @@ export default { 29 ], "__typename": [ - 70 + 74 ] }, "player_objectives_var_pop_order_by": { "player_steam_id": [ - 2011 + 2015 ], "round": [ - 2011 + 2015 ], "__typename": [ - 70 + 74 ] }, "player_objectives_var_samp_fields": { @@ -62916,18 +63868,18 @@ export default { 29 ], "__typename": [ - 70 + 74 ] }, "player_objectives_var_samp_order_by": { "player_steam_id": [ - 2011 + 2015 ], "round": [ - 2011 + 2015 ], "__typename": [ - 70 + 74 ] }, "player_objectives_variance_fields": { @@ -62938,62 +63890,62 @@ export default { 29 ], "__typename": [ - 70 + 74 ] }, "player_objectives_variance_order_by": { "player_steam_id": [ - 2011 + 2015 ], "round": [ - 2011 + 2015 ], "__typename": [ - 70 + 74 ] }, "player_performance_v": { "accuracy_score": [ - 1084 + 1088 ], "aim_goal": [ - 1084 + 1088 ], "aim_rating": [ - 1084 + 1088 ], "band": [ 38 ], "band_sample": [ - 169 + 173 ], "blind_score": [ - 1084 + 1088 ], "counter_strafe_score": [ - 1084 + 1088 ], "crosshair_score": [ - 1084 + 1088 ], "flash_assists_score": [ - 1084 + 1088 ], "hs_score": [ - 1084 + 1088 ], "kast_score": [ - 1084 + 1088 ], "maps": [ 38 ], "positioning_goal": [ - 1084 + 1088 ], "positioning_rating": [ - 1084 + 1088 ], "premier_rank": [ 38 @@ -63002,53 +63954,53 @@ export default { 38 ], "spotted_score": [ - 1084 + 1088 ], "steam_id": [ - 169 + 173 ], "survival_score": [ - 1084 + 1088 ], "traded_score": [ - 1084 + 1088 ], "ttd_score": [ - 1084 + 1088 ], "util_eff_score": [ - 1084 + 1088 ], "utility_goal": [ - 1084 + 1088 ], "utility_rating": [ - 1084 + 1088 ], "__typename": [ - 70 + 74 ] }, "player_performance_v_aggregate": { "aggregate": [ - 2610 + 2614 ], "nodes": [ - 2608 + 2612 ], "__typename": [ - 70 + 74 ] }, "player_performance_v_aggregate_fields": { "avg": [ - 2611 + 2615 ], "count": [ 38, { "columns": [ - 2616, + 2620, "[player_performance_v_select_column!]" ], "distinct": [ @@ -63057,34 +64009,34 @@ export default { } ], "max": [ - 2613 + 2617 ], "min": [ - 2614 + 2618 ], "stddev": [ - 2617 + 2621 ], "stddev_pop": [ - 2618 + 2622 ], "stddev_samp": [ - 2619 + 2623 ], "sum": [ - 2622 + 2626 ], "var_pop": [ - 2623 + 2627 ], "var_samp": [ - 2624 + 2628 ], "variance": [ - 2625 + 2629 ], "__typename": [ - 70 + 74 ] }, "player_performance_v_avg_fields": { @@ -63161,60 +64113,60 @@ export default { 29 ], "__typename": [ - 70 + 74 ] }, "player_performance_v_bool_exp": { "_and": [ - 2612 + 2616 ], "_not": [ - 2612 + 2616 ], "_or": [ - 2612 + 2616 ], "accuracy_score": [ - 1085 + 1089 ], "aim_goal": [ - 1085 + 1089 ], "aim_rating": [ - 1085 + 1089 ], "band": [ 39 ], "band_sample": [ - 171 + 175 ], "blind_score": [ - 1085 + 1089 ], "counter_strafe_score": [ - 1085 + 1089 ], "crosshair_score": [ - 1085 + 1089 ], "flash_assists_score": [ - 1085 + 1089 ], "hs_score": [ - 1085 + 1089 ], "kast_score": [ - 1085 + 1089 ], "maps": [ 39 ], "positioning_goal": [ - 1085 + 1089 ], "positioning_rating": [ - 1085 + 1089 ], "premier_rank": [ 39 @@ -63223,75 +64175,75 @@ export default { 39 ], "spotted_score": [ - 1085 + 1089 ], "steam_id": [ - 171 + 175 ], "survival_score": [ - 1085 + 1089 ], "traded_score": [ - 1085 + 1089 ], "ttd_score": [ - 1085 + 1089 ], "util_eff_score": [ - 1085 + 1089 ], "utility_goal": [ - 1085 + 1089 ], "utility_rating": [ - 1085 + 1089 ], "__typename": [ - 70 + 74 ] }, "player_performance_v_max_fields": { "accuracy_score": [ - 1084 + 1088 ], "aim_goal": [ - 1084 + 1088 ], "aim_rating": [ - 1084 + 1088 ], "band": [ 38 ], "band_sample": [ - 169 + 173 ], "blind_score": [ - 1084 + 1088 ], "counter_strafe_score": [ - 1084 + 1088 ], "crosshair_score": [ - 1084 + 1088 ], "flash_assists_score": [ - 1084 + 1088 ], "hs_score": [ - 1084 + 1088 ], "kast_score": [ - 1084 + 1088 ], "maps": [ 38 ], "positioning_goal": [ - 1084 + 1088 ], "positioning_rating": [ - 1084 + 1088 ], "premier_rank": [ 38 @@ -63300,75 +64252,75 @@ export default { 38 ], "spotted_score": [ - 1084 + 1088 ], "steam_id": [ - 169 + 173 ], "survival_score": [ - 1084 + 1088 ], "traded_score": [ - 1084 + 1088 ], "ttd_score": [ - 1084 + 1088 ], "util_eff_score": [ - 1084 + 1088 ], "utility_goal": [ - 1084 + 1088 ], "utility_rating": [ - 1084 + 1088 ], "__typename": [ - 70 + 74 ] }, "player_performance_v_min_fields": { "accuracy_score": [ - 1084 + 1088 ], "aim_goal": [ - 1084 + 1088 ], "aim_rating": [ - 1084 + 1088 ], "band": [ 38 ], "band_sample": [ - 169 + 173 ], "blind_score": [ - 1084 + 1088 ], "counter_strafe_score": [ - 1084 + 1088 ], "crosshair_score": [ - 1084 + 1088 ], "flash_assists_score": [ - 1084 + 1088 ], "hs_score": [ - 1084 + 1088 ], "kast_score": [ - 1084 + 1088 ], "maps": [ 38 ], "positioning_goal": [ - 1084 + 1088 ], "positioning_rating": [ - 1084 + 1088 ], "premier_rank": [ 38 @@ -63377,108 +64329,108 @@ export default { 38 ], "spotted_score": [ - 1084 + 1088 ], "steam_id": [ - 169 + 173 ], "survival_score": [ - 1084 + 1088 ], "traded_score": [ - 1084 + 1088 ], "ttd_score": [ - 1084 + 1088 ], "util_eff_score": [ - 1084 + 1088 ], "utility_goal": [ - 1084 + 1088 ], "utility_rating": [ - 1084 + 1088 ], "__typename": [ - 70 + 74 ] }, "player_performance_v_order_by": { "accuracy_score": [ - 2011 + 2015 ], "aim_goal": [ - 2011 + 2015 ], "aim_rating": [ - 2011 + 2015 ], "band": [ - 2011 + 2015 ], "band_sample": [ - 2011 + 2015 ], "blind_score": [ - 2011 + 2015 ], "counter_strafe_score": [ - 2011 + 2015 ], "crosshair_score": [ - 2011 + 2015 ], "flash_assists_score": [ - 2011 + 2015 ], "hs_score": [ - 2011 + 2015 ], "kast_score": [ - 2011 + 2015 ], "maps": [ - 2011 + 2015 ], "positioning_goal": [ - 2011 + 2015 ], "positioning_rating": [ - 2011 + 2015 ], "premier_rank": [ - 2011 + 2015 ], "rounds": [ - 2011 + 2015 ], "spotted_score": [ - 2011 + 2015 ], "steam_id": [ - 2011 + 2015 ], "survival_score": [ - 2011 + 2015 ], "traded_score": [ - 2011 + 2015 ], "ttd_score": [ - 2011 + 2015 ], "util_eff_score": [ - 2011 + 2015 ], "utility_goal": [ - 2011 + 2015 ], "utility_rating": [ - 2011 + 2015 ], "__typename": [ - 70 + 74 ] }, "player_performance_v_select_column": {}, @@ -63556,7 +64508,7 @@ export default { 29 ], "__typename": [ - 70 + 74 ] }, "player_performance_v_stddev_pop_fields": { @@ -63633,7 +64585,7 @@ export default { 29 ], "__typename": [ - 70 + 74 ] }, "player_performance_v_stddev_samp_fields": { @@ -63710,62 +64662,62 @@ export default { 29 ], "__typename": [ - 70 + 74 ] }, "player_performance_v_stream_cursor_input": { "initial_value": [ - 2621 + 2625 ], "ordering": [ - 224 + 228 ], "__typename": [ - 70 + 74 ] }, "player_performance_v_stream_cursor_value_input": { "accuracy_score": [ - 1084 + 1088 ], "aim_goal": [ - 1084 + 1088 ], "aim_rating": [ - 1084 + 1088 ], "band": [ 38 ], "band_sample": [ - 169 + 173 ], "blind_score": [ - 1084 + 1088 ], "counter_strafe_score": [ - 1084 + 1088 ], "crosshair_score": [ - 1084 + 1088 ], "flash_assists_score": [ - 1084 + 1088 ], "hs_score": [ - 1084 + 1088 ], "kast_score": [ - 1084 + 1088 ], "maps": [ 38 ], "positioning_goal": [ - 1084 + 1088 ], "positioning_rating": [ - 1084 + 1088 ], "premier_rank": [ 38 @@ -63774,75 +64726,75 @@ export default { 38 ], "spotted_score": [ - 1084 + 1088 ], "steam_id": [ - 169 + 173 ], "survival_score": [ - 1084 + 1088 ], "traded_score": [ - 1084 + 1088 ], "ttd_score": [ - 1084 + 1088 ], "util_eff_score": [ - 1084 + 1088 ], "utility_goal": [ - 1084 + 1088 ], "utility_rating": [ - 1084 + 1088 ], "__typename": [ - 70 + 74 ] }, "player_performance_v_sum_fields": { "accuracy_score": [ - 1084 + 1088 ], "aim_goal": [ - 1084 + 1088 ], "aim_rating": [ - 1084 + 1088 ], "band": [ 38 ], "band_sample": [ - 169 + 173 ], "blind_score": [ - 1084 + 1088 ], "counter_strafe_score": [ - 1084 + 1088 ], "crosshair_score": [ - 1084 + 1088 ], "flash_assists_score": [ - 1084 + 1088 ], "hs_score": [ - 1084 + 1088 ], "kast_score": [ - 1084 + 1088 ], "maps": [ 38 ], "positioning_goal": [ - 1084 + 1088 ], "positioning_rating": [ - 1084 + 1088 ], "premier_rank": [ 38 @@ -63851,31 +64803,31 @@ export default { 38 ], "spotted_score": [ - 1084 + 1088 ], "steam_id": [ - 169 + 173 ], "survival_score": [ - 1084 + 1088 ], "traded_score": [ - 1084 + 1088 ], "ttd_score": [ - 1084 + 1088 ], "util_eff_score": [ - 1084 + 1088 ], "utility_goal": [ - 1084 + 1088 ], "utility_rating": [ - 1084 + 1088 ], "__typename": [ - 70 + 74 ] }, "player_performance_v_var_pop_fields": { @@ -63952,7 +64904,7 @@ export default { 29 ], "__typename": [ - 70 + 74 ] }, "player_performance_v_var_samp_fields": { @@ -64029,7 +64981,7 @@ export default { 29 ], "__typename": [ - 70 + 74 ] }, "player_performance_v_variance_fields": { @@ -64106,30 +65058,30 @@ export default { 29 ], "__typename": [ - 70 + 74 ] }, "player_premier_rank_history": { "id": [ - 3818 + 3863 ], "map": [ - 1344 + 1348 ], "map_id": [ - 3818 + 3863 ], "match": [ - 1826 + 1830 ], "match_id": [ - 3818 + 3863 ], "observed_at": [ - 3421 + 3466 ], "player": [ - 2878 + 2914 ], "previous_rank": [ 38 @@ -64141,57 +65093,57 @@ export default { 38 ], "steam_id": [ - 169 + 173 ], "__typename": [ - 70 + 74 ] }, "player_premier_rank_history_aggregate": { "aggregate": [ - 2630 + 2634 ], "nodes": [ - 2626 + 2630 ], "__typename": [ - 70 + 74 ] }, "player_premier_rank_history_aggregate_bool_exp": { "count": [ - 2629 + 2633 ], "__typename": [ - 70 + 74 ] }, "player_premier_rank_history_aggregate_bool_exp_count": { "arguments": [ - 2647 + 2651 ], "distinct": [ 3 ], "filter": [ - 2635 + 2639 ], "predicate": [ 39 ], "__typename": [ - 70 + 74 ] }, "player_premier_rank_history_aggregate_fields": { "avg": [ - 2633 + 2637 ], "count": [ 38, { "columns": [ - 2647, + 2651, "[player_premier_rank_history_select_column!]" ], "distinct": [ @@ -64200,83 +65152,83 @@ export default { } ], "max": [ - 2639 + 2643 ], "min": [ - 2641 + 2645 ], "stddev": [ - 2649 + 2653 ], "stddev_pop": [ - 2651 + 2655 ], "stddev_samp": [ - 2653 + 2657 ], "sum": [ - 2657 + 2661 ], "var_pop": [ - 2661 + 2665 ], "var_samp": [ - 2663 + 2667 ], "variance": [ - 2665 + 2669 ], "__typename": [ - 70 + 74 ] }, "player_premier_rank_history_aggregate_order_by": { "avg": [ - 2634 + 2638 ], "count": [ - 2011 + 2015 ], "max": [ - 2640 + 2644 ], "min": [ - 2642 + 2646 ], "stddev": [ - 2650 + 2654 ], "stddev_pop": [ - 2652 + 2656 ], "stddev_samp": [ - 2654 + 2658 ], "sum": [ - 2658 + 2662 ], "var_pop": [ - 2662 + 2666 ], "var_samp": [ - 2664 + 2668 ], "variance": [ - 2666 + 2670 ], "__typename": [ - 70 + 74 ] }, "player_premier_rank_history_arr_rel_insert_input": { "data": [ - 2638 + 2642 ], "on_conflict": [ - 2644 + 2648 ], "__typename": [ - 70 + 74 ] }, "player_premier_rank_history_avg_fields": { @@ -64293,56 +65245,56 @@ export default { 29 ], "__typename": [ - 70 + 74 ] }, "player_premier_rank_history_avg_order_by": { "previous_rank": [ - 2011 + 2015 ], "rank": [ - 2011 + 2015 ], "rank_type": [ - 2011 + 2015 ], "steam_id": [ - 2011 + 2015 ], "__typename": [ - 70 + 74 ] }, "player_premier_rank_history_bool_exp": { "_and": [ - 2635 + 2639 ], "_not": [ - 2635 + 2639 ], "_or": [ - 2635 + 2639 ], "id": [ - 3820 + 3865 ], "map": [ - 1353 + 1357 ], "map_id": [ - 3820 + 3865 ], "match": [ - 1835 + 1839 ], "match_id": [ - 3820 + 3865 ], "observed_at": [ - 3422 + 3467 ], "player": [ - 2882 + 2918 ], "previous_rank": [ 39 @@ -64354,10 +65306,10 @@ export default { 39 ], "steam_id": [ - 171 + 175 ], "__typename": [ - 70 + 74 ] }, "player_premier_rank_history_constraint": {}, @@ -64372,33 +65324,33 @@ export default { 38 ], "steam_id": [ - 169 + 173 ], "__typename": [ - 70 + 74 ] }, "player_premier_rank_history_insert_input": { "id": [ - 3818 + 3863 ], "map": [ - 1361 + 1365 ], "map_id": [ - 3818 + 3863 ], "match": [ - 1844 + 1848 ], "match_id": [ - 3818 + 3863 ], "observed_at": [ - 3421 + 3466 ], "player": [ - 2889 + 2925 ], "previous_rank": [ 38 @@ -64410,24 +65362,24 @@ export default { 38 ], "steam_id": [ - 169 + 173 ], "__typename": [ - 70 + 74 ] }, "player_premier_rank_history_max_fields": { "id": [ - 3818 + 3863 ], "map_id": [ - 3818 + 3863 ], "match_id": [ - 3818 + 3863 ], "observed_at": [ - 3421 + 3466 ], "previous_rank": [ 38 @@ -64439,53 +65391,53 @@ export default { 38 ], "steam_id": [ - 169 + 173 ], "__typename": [ - 70 + 74 ] }, "player_premier_rank_history_max_order_by": { "id": [ - 2011 + 2015 ], "map_id": [ - 2011 + 2015 ], "match_id": [ - 2011 + 2015 ], "observed_at": [ - 2011 + 2015 ], "previous_rank": [ - 2011 + 2015 ], "rank": [ - 2011 + 2015 ], "rank_type": [ - 2011 + 2015 ], "steam_id": [ - 2011 + 2015 ], "__typename": [ - 70 + 74 ] }, "player_premier_rank_history_min_fields": { "id": [ - 3818 + 3863 ], "map_id": [ - 3818 + 3863 ], "match_id": [ - 3818 + 3863 ], "observed_at": [ - 3421 + 3466 ], "previous_rank": [ 38 @@ -64497,39 +65449,39 @@ export default { 38 ], "steam_id": [ - 169 + 173 ], "__typename": [ - 70 + 74 ] }, "player_premier_rank_history_min_order_by": { "id": [ - 2011 + 2015 ], "map_id": [ - 2011 + 2015 ], "match_id": [ - 2011 + 2015 ], "observed_at": [ - 2011 + 2015 ], "previous_rank": [ - 2011 + 2015 ], "rank": [ - 2011 + 2015 ], "rank_type": [ - 2011 + 2015 ], "steam_id": [ - 2011 + 2015 ], "__typename": [ - 70 + 74 ] }, "player_premier_rank_history_mutation_response": { @@ -64537,85 +65489,85 @@ export default { 38 ], "returning": [ - 2626 + 2630 ], "__typename": [ - 70 + 74 ] }, "player_premier_rank_history_on_conflict": { "constraint": [ - 2636 + 2640 ], "update_columns": [ - 2659 + 2663 ], "where": [ - 2635 + 2639 ], "__typename": [ - 70 + 74 ] }, "player_premier_rank_history_order_by": { "id": [ - 2011 + 2015 ], "map": [ - 1363 + 1367 ], "map_id": [ - 2011 + 2015 ], "match": [ - 1846 + 1850 ], "match_id": [ - 2011 + 2015 ], "observed_at": [ - 2011 + 2015 ], "player": [ - 2891 + 2927 ], "previous_rank": [ - 2011 + 2015 ], "rank": [ - 2011 + 2015 ], "rank_type": [ - 2011 + 2015 ], "steam_id": [ - 2011 + 2015 ], "__typename": [ - 70 + 74 ] }, "player_premier_rank_history_pk_columns_input": { "id": [ - 3818 + 3863 ], "__typename": [ - 70 + 74 ] }, "player_premier_rank_history_select_column": {}, "player_premier_rank_history_set_input": { "id": [ - 3818 + 3863 ], "map_id": [ - 3818 + 3863 ], "match_id": [ - 3818 + 3863 ], "observed_at": [ - 3421 + 3466 ], "previous_rank": [ 38 @@ -64627,10 +65579,10 @@ export default { 38 ], "steam_id": [ - 169 + 173 ], "__typename": [ - 70 + 74 ] }, "player_premier_rank_history_stddev_fields": { @@ -64647,24 +65599,24 @@ export default { 29 ], "__typename": [ - 70 + 74 ] }, "player_premier_rank_history_stddev_order_by": { "previous_rank": [ - 2011 + 2015 ], "rank": [ - 2011 + 2015 ], "rank_type": [ - 2011 + 2015 ], "steam_id": [ - 2011 + 2015 ], "__typename": [ - 70 + 74 ] }, "player_premier_rank_history_stddev_pop_fields": { @@ -64681,24 +65633,24 @@ export default { 29 ], "__typename": [ - 70 + 74 ] }, "player_premier_rank_history_stddev_pop_order_by": { "previous_rank": [ - 2011 + 2015 ], "rank": [ - 2011 + 2015 ], "rank_type": [ - 2011 + 2015 ], "steam_id": [ - 2011 + 2015 ], "__typename": [ - 70 + 74 ] }, "player_premier_rank_history_stddev_samp_fields": { @@ -64715,49 +65667,49 @@ export default { 29 ], "__typename": [ - 70 + 74 ] }, "player_premier_rank_history_stddev_samp_order_by": { "previous_rank": [ - 2011 + 2015 ], "rank": [ - 2011 + 2015 ], "rank_type": [ - 2011 + 2015 ], "steam_id": [ - 2011 + 2015 ], "__typename": [ - 70 + 74 ] }, "player_premier_rank_history_stream_cursor_input": { "initial_value": [ - 2656 + 2660 ], "ordering": [ - 224 + 228 ], "__typename": [ - 70 + 74 ] }, "player_premier_rank_history_stream_cursor_value_input": { "id": [ - 3818 + 3863 ], "map_id": [ - 3818 + 3863 ], "match_id": [ - 3818 + 3863 ], "observed_at": [ - 3421 + 3466 ], "previous_rank": [ 38 @@ -64769,10 +65721,10 @@ export default { 38 ], "steam_id": [ - 169 + 173 ], "__typename": [ - 70 + 74 ] }, "player_premier_rank_history_sum_fields": { @@ -64786,42 +65738,42 @@ export default { 38 ], "steam_id": [ - 169 + 173 ], "__typename": [ - 70 + 74 ] }, "player_premier_rank_history_sum_order_by": { "previous_rank": [ - 2011 + 2015 ], "rank": [ - 2011 + 2015 ], "rank_type": [ - 2011 + 2015 ], "steam_id": [ - 2011 + 2015 ], "__typename": [ - 70 + 74 ] }, "player_premier_rank_history_update_column": {}, "player_premier_rank_history_updates": { "_inc": [ - 2637 + 2641 ], "_set": [ - 2648 + 2652 ], "where": [ - 2635 + 2639 ], "__typename": [ - 70 + 74 ] }, "player_premier_rank_history_var_pop_fields": { @@ -64838,24 +65790,24 @@ export default { 29 ], "__typename": [ - 70 + 74 ] }, "player_premier_rank_history_var_pop_order_by": { "previous_rank": [ - 2011 + 2015 ], "rank": [ - 2011 + 2015 ], "rank_type": [ - 2011 + 2015 ], "steam_id": [ - 2011 + 2015 ], "__typename": [ - 70 + 74 ] }, "player_premier_rank_history_var_samp_fields": { @@ -64872,24 +65824,24 @@ export default { 29 ], "__typename": [ - 70 + 74 ] }, "player_premier_rank_history_var_samp_order_by": { "previous_rank": [ - 2011 + 2015 ], "rank": [ - 2011 + 2015 ], "rank_type": [ - 2011 + 2015 ], "steam_id": [ - 2011 + 2015 ], "__typename": [ - 70 + 74 ] }, "player_premier_rank_history_variance_fields": { @@ -64906,109 +65858,109 @@ export default { 29 ], "__typename": [ - 70 + 74 ] }, "player_premier_rank_history_variance_order_by": { "previous_rank": [ - 2011 + 2015 ], "rank": [ - 2011 + 2015 ], "rank_type": [ - 2011 + 2015 ], "steam_id": [ - 2011 + 2015 ], "__typename": [ - 70 + 74 ] }, "player_sanctions": { "created_at": [ - 3421 + 3466 ], "deleted_at": [ - 3421 + 3466 ], "e_sanction_type": [ - 820 + 824 ], "id": [ - 3818 + 3863 ], "player": [ - 2878 + 2914 ], "player_steam_id": [ - 169 + 173 ], "reason": [ - 70 + 74 ], "remove_sanction_date": [ - 3421 + 3466 ], "sanctioned_by": [ - 2878 + 2914 ], "sanctioned_by_steam_id": [ - 169 + 173 ], "type": [ - 825 + 829 ], "__typename": [ - 70 + 74 ] }, "player_sanctions_aggregate": { "aggregate": [ - 2671 + 2675 ], "nodes": [ - 2667 + 2671 ], "__typename": [ - 70 + 74 ] }, "player_sanctions_aggregate_bool_exp": { "count": [ - 2670 + 2674 ], "__typename": [ - 70 + 74 ] }, "player_sanctions_aggregate_bool_exp_count": { "arguments": [ - 2688 + 2692 ], "distinct": [ 3 ], "filter": [ - 2676 + 2680 ], "predicate": [ 39 ], "__typename": [ - 70 + 74 ] }, "player_sanctions_aggregate_fields": { "avg": [ - 2674 + 2678 ], "count": [ 38, { "columns": [ - 2688, + 2692, "[player_sanctions_select_column!]" ], "distinct": [ @@ -65017,83 +65969,83 @@ export default { } ], "max": [ - 2680 + 2684 ], "min": [ - 2682 + 2686 ], "stddev": [ - 2690 + 2694 ], "stddev_pop": [ - 2692 + 2696 ], "stddev_samp": [ - 2694 + 2698 ], "sum": [ - 2698 + 2702 ], "var_pop": [ - 2702 + 2706 ], "var_samp": [ - 2704 + 2708 ], "variance": [ - 2706 + 2710 ], "__typename": [ - 70 + 74 ] }, "player_sanctions_aggregate_order_by": { "avg": [ - 2675 + 2679 ], "count": [ - 2011 + 2015 ], "max": [ - 2681 + 2685 ], "min": [ - 2683 + 2687 ], "stddev": [ - 2691 + 2695 ], "stddev_pop": [ - 2693 + 2697 ], "stddev_samp": [ - 2695 + 2699 ], "sum": [ - 2699 + 2703 ], "var_pop": [ - 2703 + 2707 ], "var_samp": [ - 2705 + 2709 ], "variance": [ - 2707 + 2711 ], "__typename": [ - 70 + 74 ] }, "player_sanctions_arr_rel_insert_input": { "data": [ - 2679 + 2683 ], "on_conflict": [ - 2685 + 2689 ], "__typename": [ - 70 + 74 ] }, "player_sanctions_avg_fields": { @@ -65104,219 +66056,219 @@ export default { 29 ], "__typename": [ - 70 + 74 ] }, "player_sanctions_avg_order_by": { "player_steam_id": [ - 2011 + 2015 ], "sanctioned_by_steam_id": [ - 2011 + 2015 ], "__typename": [ - 70 + 74 ] }, "player_sanctions_bool_exp": { "_and": [ - 2676 + 2680 ], "_not": [ - 2676 + 2680 ], "_or": [ - 2676 + 2680 ], "created_at": [ - 3422 + 3467 ], "deleted_at": [ - 3422 + 3467 ], "e_sanction_type": [ - 823 + 827 ], "id": [ - 3820 + 3865 ], "player": [ - 2882 + 2918 ], "player_steam_id": [ - 171 + 175 ], "reason": [ - 72 + 76 ], "remove_sanction_date": [ - 3422 + 3467 ], "sanctioned_by": [ - 2882 + 2918 ], "sanctioned_by_steam_id": [ - 171 + 175 ], "type": [ - 826 + 830 ], "__typename": [ - 70 + 74 ] }, "player_sanctions_constraint": {}, "player_sanctions_inc_input": { "player_steam_id": [ - 169 + 173 ], "sanctioned_by_steam_id": [ - 169 + 173 ], "__typename": [ - 70 + 74 ] }, "player_sanctions_insert_input": { "created_at": [ - 3421 + 3466 ], "deleted_at": [ - 3421 + 3466 ], "e_sanction_type": [ - 831 + 835 ], "id": [ - 3818 + 3863 ], "player": [ - 2889 + 2925 ], "player_steam_id": [ - 169 + 173 ], "reason": [ - 70 + 74 ], "remove_sanction_date": [ - 3421 + 3466 ], "sanctioned_by": [ - 2889 + 2925 ], "sanctioned_by_steam_id": [ - 169 + 173 ], "type": [ - 825 + 829 ], "__typename": [ - 70 + 74 ] }, "player_sanctions_max_fields": { "created_at": [ - 3421 + 3466 ], "deleted_at": [ - 3421 + 3466 ], "id": [ - 3818 + 3863 ], "player_steam_id": [ - 169 + 173 ], "reason": [ - 70 + 74 ], "remove_sanction_date": [ - 3421 + 3466 ], "sanctioned_by_steam_id": [ - 169 + 173 ], "__typename": [ - 70 + 74 ] }, "player_sanctions_max_order_by": { "created_at": [ - 2011 + 2015 ], "deleted_at": [ - 2011 + 2015 ], "id": [ - 2011 + 2015 ], "player_steam_id": [ - 2011 + 2015 ], "reason": [ - 2011 + 2015 ], "remove_sanction_date": [ - 2011 + 2015 ], "sanctioned_by_steam_id": [ - 2011 + 2015 ], "__typename": [ - 70 + 74 ] }, "player_sanctions_min_fields": { "created_at": [ - 3421 + 3466 ], "deleted_at": [ - 3421 + 3466 ], "id": [ - 3818 + 3863 ], "player_steam_id": [ - 169 + 173 ], "reason": [ - 70 + 74 ], "remove_sanction_date": [ - 3421 + 3466 ], "sanctioned_by_steam_id": [ - 169 + 173 ], "__typename": [ - 70 + 74 ] }, "player_sanctions_min_order_by": { "created_at": [ - 2011 + 2015 ], "deleted_at": [ - 2011 + 2015 ], "id": [ - 2011 + 2015 ], "player_steam_id": [ - 2011 + 2015 ], "reason": [ - 2011 + 2015 ], "remove_sanction_date": [ - 2011 + 2015 ], "sanctioned_by_steam_id": [ - 2011 + 2015 ], "__typename": [ - 70 + 74 ] }, "player_sanctions_mutation_response": { @@ -65324,103 +66276,103 @@ export default { 38 ], "returning": [ - 2667 + 2671 ], "__typename": [ - 70 + 74 ] }, "player_sanctions_on_conflict": { "constraint": [ - 2677 + 2681 ], "update_columns": [ - 2700 + 2704 ], "where": [ - 2676 + 2680 ], "__typename": [ - 70 + 74 ] }, "player_sanctions_order_by": { "created_at": [ - 2011 + 2015 ], "deleted_at": [ - 2011 + 2015 ], "e_sanction_type": [ - 833 + 837 ], "id": [ - 2011 + 2015 ], "player": [ - 2891 + 2927 ], "player_steam_id": [ - 2011 + 2015 ], "reason": [ - 2011 + 2015 ], "remove_sanction_date": [ - 2011 + 2015 ], "sanctioned_by": [ - 2891 + 2927 ], "sanctioned_by_steam_id": [ - 2011 + 2015 ], "type": [ - 2011 + 2015 ], "__typename": [ - 70 + 74 ] }, "player_sanctions_pk_columns_input": { "created_at": [ - 3421 + 3466 ], "id": [ - 3818 + 3863 ], "__typename": [ - 70 + 74 ] }, "player_sanctions_select_column": {}, "player_sanctions_set_input": { "created_at": [ - 3421 + 3466 ], "deleted_at": [ - 3421 + 3466 ], "id": [ - 3818 + 3863 ], "player_steam_id": [ - 169 + 173 ], "reason": [ - 70 + 74 ], "remove_sanction_date": [ - 3421 + 3466 ], "sanctioned_by_steam_id": [ - 169 + 173 ], "type": [ - 825 + 829 ], "__typename": [ - 70 + 74 ] }, "player_sanctions_stddev_fields": { @@ -65431,18 +66383,18 @@ export default { 29 ], "__typename": [ - 70 + 74 ] }, "player_sanctions_stddev_order_by": { "player_steam_id": [ - 2011 + 2015 ], "sanctioned_by_steam_id": [ - 2011 + 2015 ], "__typename": [ - 70 + 74 ] }, "player_sanctions_stddev_pop_fields": { @@ -65453,18 +66405,18 @@ export default { 29 ], "__typename": [ - 70 + 74 ] }, "player_sanctions_stddev_pop_order_by": { "player_steam_id": [ - 2011 + 2015 ], "sanctioned_by_steam_id": [ - 2011 + 2015 ], "__typename": [ - 70 + 74 ] }, "player_sanctions_stddev_samp_fields": { @@ -65475,95 +66427,95 @@ export default { 29 ], "__typename": [ - 70 + 74 ] }, "player_sanctions_stddev_samp_order_by": { "player_steam_id": [ - 2011 + 2015 ], "sanctioned_by_steam_id": [ - 2011 + 2015 ], "__typename": [ - 70 + 74 ] }, "player_sanctions_stream_cursor_input": { "initial_value": [ - 2697 + 2701 ], "ordering": [ - 224 + 228 ], "__typename": [ - 70 + 74 ] }, "player_sanctions_stream_cursor_value_input": { "created_at": [ - 3421 + 3466 ], "deleted_at": [ - 3421 + 3466 ], "id": [ - 3818 + 3863 ], "player_steam_id": [ - 169 + 173 ], "reason": [ - 70 + 74 ], "remove_sanction_date": [ - 3421 + 3466 ], "sanctioned_by_steam_id": [ - 169 + 173 ], "type": [ - 825 + 829 ], "__typename": [ - 70 + 74 ] }, "player_sanctions_sum_fields": { "player_steam_id": [ - 169 + 173 ], "sanctioned_by_steam_id": [ - 169 + 173 ], "__typename": [ - 70 + 74 ] }, "player_sanctions_sum_order_by": { "player_steam_id": [ - 2011 + 2015 ], "sanctioned_by_steam_id": [ - 2011 + 2015 ], "__typename": [ - 70 + 74 ] }, "player_sanctions_update_column": {}, "player_sanctions_updates": { "_inc": [ - 2678 + 2682 ], "_set": [ - 2689 + 2693 ], "where": [ - 2676 + 2680 ], "__typename": [ - 70 + 74 ] }, "player_sanctions_var_pop_fields": { @@ -65574,18 +66526,18 @@ export default { 29 ], "__typename": [ - 70 + 74 ] }, "player_sanctions_var_pop_order_by": { "player_steam_id": [ - 2011 + 2015 ], "sanctioned_by_steam_id": [ - 2011 + 2015 ], "__typename": [ - 70 + 74 ] }, "player_sanctions_var_samp_fields": { @@ -65596,18 +66548,18 @@ export default { 29 ], "__typename": [ - 70 + 74 ] }, "player_sanctions_var_samp_order_by": { "player_steam_id": [ - 2011 + 2015 ], "sanctioned_by_steam_id": [ - 2011 + 2015 ], "__typename": [ - 70 + 74 ] }, "player_sanctions_variance_fields": { @@ -65618,66 +66570,66 @@ export default { 29 ], "__typename": [ - 70 + 74 ] }, "player_sanctions_variance_order_by": { "player_steam_id": [ - 2011 + 2015 ], "sanctioned_by_steam_id": [ - 2011 + 2015 ], "__typename": [ - 70 + 74 ] }, "player_stats": { "assists": [ - 169 + 173 ], "deaths": [ - 169 + 173 ], "headshot_percentage": [ - 1084 + 1088 ], "headshots": [ - 169 + 173 ], "kills": [ - 169 + 173 ], "player": [ - 2878 + 2914 ], "player_steam_id": [ - 169 + 173 ], "__typename": [ - 70 + 74 ] }, "player_stats_aggregate": { "aggregate": [ - 2710 + 2714 ], "nodes": [ - 2708 + 2712 ], "__typename": [ - 70 + 74 ] }, "player_stats_aggregate_fields": { "avg": [ - 2711 + 2715 ], "count": [ 38, { "columns": [ - 2723, + 2727, "[player_stats_select_column!]" ], "distinct": [ @@ -65686,34 +66638,34 @@ export default { } ], "max": [ - 2716 + 2720 ], "min": [ - 2717 + 2721 ], "stddev": [ - 2725 + 2729 ], "stddev_pop": [ - 2726 + 2730 ], "stddev_samp": [ - 2727 + 2731 ], "sum": [ - 2730 + 2734 ], "var_pop": [ - 2733 + 2737 ], "var_samp": [ - 2734 + 2738 ], "variance": [ - 2735 + 2739 ], "__typename": [ - 70 + 74 ] }, "player_stats_avg_fields": { @@ -65736,493 +66688,1018 @@ export default { 29 ], "__typename": [ - 70 + 74 ] }, "player_stats_bool_exp": { "_and": [ - 2712 + 2716 ], "_not": [ - 2712 + 2716 ], "_or": [ - 2712 + 2716 ], "assists": [ - 171 + 175 ], "deaths": [ - 171 + 175 ], "headshot_percentage": [ - 1085 + 1089 ], "headshots": [ - 171 + 175 ], "kills": [ - 171 + 175 ], "player": [ - 2882 + 2918 ], "player_steam_id": [ - 171 + 175 ], "__typename": [ - 70 + 74 ] }, "player_stats_constraint": {}, "player_stats_inc_input": { "assists": [ - 169 + 173 ], "deaths": [ - 169 + 173 ], "headshot_percentage": [ - 1084 + 1088 ], "headshots": [ - 169 + 173 ], "kills": [ - 169 + 173 ], "player_steam_id": [ - 169 + 173 ], "__typename": [ - 70 + 74 ] }, "player_stats_insert_input": { "assists": [ - 169 + 173 + ], + "deaths": [ + 173 + ], + "headshot_percentage": [ + 1088 + ], + "headshots": [ + 173 + ], + "kills": [ + 173 + ], + "player": [ + 2925 + ], + "player_steam_id": [ + 173 + ], + "__typename": [ + 74 + ] + }, + "player_stats_max_fields": { + "assists": [ + 173 + ], + "deaths": [ + 173 + ], + "headshot_percentage": [ + 1088 + ], + "headshots": [ + 173 + ], + "kills": [ + 173 + ], + "player_steam_id": [ + 173 + ], + "__typename": [ + 74 + ] + }, + "player_stats_min_fields": { + "assists": [ + 173 + ], + "deaths": [ + 173 + ], + "headshot_percentage": [ + 1088 + ], + "headshots": [ + 173 + ], + "kills": [ + 173 + ], + "player_steam_id": [ + 173 + ], + "__typename": [ + 74 + ] + }, + "player_stats_mutation_response": { + "affected_rows": [ + 38 + ], + "returning": [ + 2712 + ], + "__typename": [ + 74 + ] + }, + "player_stats_obj_rel_insert_input": { + "data": [ + 2719 + ], + "on_conflict": [ + 2724 + ], + "__typename": [ + 74 + ] + }, + "player_stats_on_conflict": { + "constraint": [ + 2717 + ], + "update_columns": [ + 2735 + ], + "where": [ + 2716 + ], + "__typename": [ + 74 + ] + }, + "player_stats_order_by": { + "assists": [ + 2015 + ], + "deaths": [ + 2015 + ], + "headshot_percentage": [ + 2015 + ], + "headshots": [ + 2015 + ], + "kills": [ + 2015 + ], + "player": [ + 2927 + ], + "player_steam_id": [ + 2015 + ], + "__typename": [ + 74 + ] + }, + "player_stats_pk_columns_input": { + "player_steam_id": [ + 173 + ], + "__typename": [ + 74 + ] + }, + "player_stats_select_column": {}, + "player_stats_set_input": { + "assists": [ + 173 + ], + "deaths": [ + 173 + ], + "headshot_percentage": [ + 1088 + ], + "headshots": [ + 173 + ], + "kills": [ + 173 + ], + "player_steam_id": [ + 173 + ], + "__typename": [ + 74 + ] + }, + "player_stats_stddev_fields": { + "assists": [ + 29 + ], + "deaths": [ + 29 + ], + "headshot_percentage": [ + 29 + ], + "headshots": [ + 29 + ], + "kills": [ + 29 + ], + "player_steam_id": [ + 29 + ], + "__typename": [ + 74 + ] + }, + "player_stats_stddev_pop_fields": { + "assists": [ + 29 + ], + "deaths": [ + 29 + ], + "headshot_percentage": [ + 29 + ], + "headshots": [ + 29 + ], + "kills": [ + 29 + ], + "player_steam_id": [ + 29 + ], + "__typename": [ + 74 + ] + }, + "player_stats_stddev_samp_fields": { + "assists": [ + 29 + ], + "deaths": [ + 29 + ], + "headshot_percentage": [ + 29 + ], + "headshots": [ + 29 + ], + "kills": [ + 29 + ], + "player_steam_id": [ + 29 + ], + "__typename": [ + 74 + ] + }, + "player_stats_stream_cursor_input": { + "initial_value": [ + 2733 + ], + "ordering": [ + 228 + ], + "__typename": [ + 74 + ] + }, + "player_stats_stream_cursor_value_input": { + "assists": [ + 173 + ], + "deaths": [ + 173 + ], + "headshot_percentage": [ + 1088 + ], + "headshots": [ + 173 + ], + "kills": [ + 173 + ], + "player_steam_id": [ + 173 + ], + "__typename": [ + 74 + ] + }, + "player_stats_sum_fields": { + "assists": [ + 173 + ], + "deaths": [ + 173 + ], + "headshot_percentage": [ + 1088 + ], + "headshots": [ + 173 + ], + "kills": [ + 173 + ], + "player_steam_id": [ + 173 + ], + "__typename": [ + 74 + ] + }, + "player_stats_update_column": {}, + "player_stats_updates": { + "_inc": [ + 2718 + ], + "_set": [ + 2728 + ], + "where": [ + 2716 + ], + "__typename": [ + 74 + ] + }, + "player_stats_var_pop_fields": { + "assists": [ + 29 + ], + "deaths": [ + 29 + ], + "headshot_percentage": [ + 29 + ], + "headshots": [ + 29 + ], + "kills": [ + 29 + ], + "player_steam_id": [ + 29 + ], + "__typename": [ + 74 + ] + }, + "player_stats_var_samp_fields": { + "assists": [ + 29 + ], + "deaths": [ + 29 + ], + "headshot_percentage": [ + 29 + ], + "headshots": [ + 29 + ], + "kills": [ + 29 + ], + "player_steam_id": [ + 29 + ], + "__typename": [ + 74 + ] + }, + "player_stats_variance_fields": { + "assists": [ + 29 + ], + "deaths": [ + 29 + ], + "headshot_percentage": [ + 29 + ], + "headshots": [ + 29 + ], + "kills": [ + 29 + ], + "player_steam_id": [ + 29 + ], + "__typename": [ + 74 + ] + }, + "player_steam_bot_friend": { + "bot_steam_account_id": [ + 3863 + ], + "bot_steamid64": [ + 173 + ], + "created_at": [ + 3466 + ], + "friended_at": [ + 3466 + ], + "last_presence_state": [ + 1239, + { + "path": [ + 74 + ] + } + ], + "player": [ + 2914 + ], + "status": [ + 74 + ], + "steam_id": [ + 173 + ], + "updated_at": [ + 3466 + ], + "__typename": [ + 74 + ] + }, + "player_steam_bot_friend_aggregate": { + "aggregate": [ + 2742 + ], + "nodes": [ + 2740 + ], + "__typename": [ + 74 + ] + }, + "player_steam_bot_friend_aggregate_fields": { + "avg": [ + 2744 + ], + "count": [ + 38, + { + "columns": [ + 2759, + "[player_steam_bot_friend_select_column!]" + ], + "distinct": [ + 3 + ] + } + ], + "max": [ + 2752 + ], + "min": [ + 2753 + ], + "stddev": [ + 2761 + ], + "stddev_pop": [ + 2762 + ], + "stddev_samp": [ + 2763 + ], + "sum": [ + 2766 + ], + "var_pop": [ + 2769 + ], + "var_samp": [ + 2770 + ], + "variance": [ + 2771 + ], + "__typename": [ + 74 + ] + }, + "player_steam_bot_friend_append_input": { + "last_presence_state": [ + 1239 + ], + "__typename": [ + 74 + ] + }, + "player_steam_bot_friend_avg_fields": { + "bot_steamid64": [ + 29 + ], + "steam_id": [ + 29 + ], + "__typename": [ + 74 + ] + }, + "player_steam_bot_friend_bool_exp": { + "_and": [ + 2745 + ], + "_not": [ + 2745 + ], + "_or": [ + 2745 + ], + "bot_steam_account_id": [ + 3865 + ], + "bot_steamid64": [ + 175 + ], + "created_at": [ + 3467 + ], + "friended_at": [ + 3467 + ], + "last_presence_state": [ + 1241 + ], + "player": [ + 2918 + ], + "status": [ + 76 + ], + "steam_id": [ + 175 + ], + "updated_at": [ + 3467 + ], + "__typename": [ + 74 + ] + }, + "player_steam_bot_friend_constraint": {}, + "player_steam_bot_friend_delete_at_path_input": { + "last_presence_state": [ + 74 + ], + "__typename": [ + 74 + ] + }, + "player_steam_bot_friend_delete_elem_input": { + "last_presence_state": [ + 38 + ], + "__typename": [ + 74 + ] + }, + "player_steam_bot_friend_delete_key_input": { + "last_presence_state": [ + 74 + ], + "__typename": [ + 74 + ] + }, + "player_steam_bot_friend_inc_input": { + "bot_steamid64": [ + 173 + ], + "steam_id": [ + 173 + ], + "__typename": [ + 74 + ] + }, + "player_steam_bot_friend_insert_input": { + "bot_steam_account_id": [ + 3863 + ], + "bot_steamid64": [ + 173 + ], + "created_at": [ + 3466 ], - "deaths": [ - 169 + "friended_at": [ + 3466 ], - "headshot_percentage": [ - 1084 + "last_presence_state": [ + 1239 ], - "headshots": [ - 169 + "player": [ + 2925 ], - "kills": [ - 169 + "status": [ + 74 ], - "player": [ - 2889 + "steam_id": [ + 173 ], - "player_steam_id": [ - 169 + "updated_at": [ + 3466 ], "__typename": [ - 70 + 74 ] }, - "player_stats_max_fields": { - "assists": [ - 169 + "player_steam_bot_friend_max_fields": { + "bot_steam_account_id": [ + 3863 ], - "deaths": [ - 169 + "bot_steamid64": [ + 173 ], - "headshot_percentage": [ - 1084 + "created_at": [ + 3466 ], - "headshots": [ - 169 + "friended_at": [ + 3466 ], - "kills": [ - 169 + "status": [ + 74 ], - "player_steam_id": [ - 169 + "steam_id": [ + 173 + ], + "updated_at": [ + 3466 ], "__typename": [ - 70 + 74 ] }, - "player_stats_min_fields": { - "assists": [ - 169 + "player_steam_bot_friend_min_fields": { + "bot_steam_account_id": [ + 3863 ], - "deaths": [ - 169 + "bot_steamid64": [ + 173 ], - "headshot_percentage": [ - 1084 + "created_at": [ + 3466 ], - "headshots": [ - 169 + "friended_at": [ + 3466 ], - "kills": [ - 169 + "status": [ + 74 ], - "player_steam_id": [ - 169 + "steam_id": [ + 173 + ], + "updated_at": [ + 3466 ], "__typename": [ - 70 + 74 ] }, - "player_stats_mutation_response": { + "player_steam_bot_friend_mutation_response": { "affected_rows": [ 38 ], "returning": [ - 2708 - ], - "__typename": [ - 70 - ] - }, - "player_stats_obj_rel_insert_input": { - "data": [ - 2715 - ], - "on_conflict": [ - 2720 + 2740 ], "__typename": [ - 70 + 74 ] }, - "player_stats_on_conflict": { + "player_steam_bot_friend_on_conflict": { "constraint": [ - 2713 + 2746 ], "update_columns": [ - 2731 + 2767 ], "where": [ - 2712 + 2745 ], "__typename": [ - 70 + 74 ] }, - "player_stats_order_by": { - "assists": [ - 2011 + "player_steam_bot_friend_order_by": { + "bot_steam_account_id": [ + 2015 ], - "deaths": [ - 2011 + "bot_steamid64": [ + 2015 ], - "headshot_percentage": [ - 2011 + "created_at": [ + 2015 ], - "headshots": [ - 2011 + "friended_at": [ + 2015 ], - "kills": [ - 2011 + "last_presence_state": [ + 2015 ], "player": [ - 2891 + 2927 ], - "player_steam_id": [ - 2011 + "status": [ + 2015 + ], + "steam_id": [ + 2015 + ], + "updated_at": [ + 2015 ], "__typename": [ - 70 + 74 ] }, - "player_stats_pk_columns_input": { - "player_steam_id": [ - 169 + "player_steam_bot_friend_pk_columns_input": { + "steam_id": [ + 173 ], "__typename": [ - 70 + 74 ] }, - "player_stats_select_column": {}, - "player_stats_set_input": { - "assists": [ - 169 - ], - "deaths": [ - 169 - ], - "headshot_percentage": [ - 1084 - ], - "headshots": [ - 169 - ], - "kills": [ - 169 - ], - "player_steam_id": [ - 169 + "player_steam_bot_friend_prepend_input": { + "last_presence_state": [ + 1239 ], "__typename": [ - 70 + 74 ] }, - "player_stats_stddev_fields": { - "assists": [ - 29 + "player_steam_bot_friend_select_column": {}, + "player_steam_bot_friend_set_input": { + "bot_steam_account_id": [ + 3863 ], - "deaths": [ - 29 + "bot_steamid64": [ + 173 ], - "headshot_percentage": [ - 29 + "created_at": [ + 3466 ], - "headshots": [ - 29 + "friended_at": [ + 3466 ], - "kills": [ - 29 + "last_presence_state": [ + 1239 ], - "player_steam_id": [ - 29 + "status": [ + 74 + ], + "steam_id": [ + 173 + ], + "updated_at": [ + 3466 ], "__typename": [ - 70 + 74 ] }, - "player_stats_stddev_pop_fields": { - "assists": [ - 29 - ], - "deaths": [ - 29 - ], - "headshot_percentage": [ - 29 - ], - "headshots": [ + "player_steam_bot_friend_stddev_fields": { + "bot_steamid64": [ 29 ], - "kills": [ - 29 - ], - "player_steam_id": [ + "steam_id": [ 29 ], "__typename": [ - 70 + 74 ] }, - "player_stats_stddev_samp_fields": { - "assists": [ + "player_steam_bot_friend_stddev_pop_fields": { + "bot_steamid64": [ 29 ], - "deaths": [ - 29 - ], - "headshot_percentage": [ - 29 - ], - "headshots": [ + "steam_id": [ 29 ], - "kills": [ + "__typename": [ + 74 + ] + }, + "player_steam_bot_friend_stddev_samp_fields": { + "bot_steamid64": [ 29 ], - "player_steam_id": [ + "steam_id": [ 29 ], "__typename": [ - 70 + 74 ] }, - "player_stats_stream_cursor_input": { + "player_steam_bot_friend_stream_cursor_input": { "initial_value": [ - 2729 + 2765 ], "ordering": [ - 224 + 228 ], "__typename": [ - 70 + 74 ] }, - "player_stats_stream_cursor_value_input": { - "assists": [ - 169 + "player_steam_bot_friend_stream_cursor_value_input": { + "bot_steam_account_id": [ + 3863 ], - "deaths": [ - 169 + "bot_steamid64": [ + 173 ], - "headshot_percentage": [ - 1084 + "created_at": [ + 3466 ], - "headshots": [ - 169 + "friended_at": [ + 3466 ], - "kills": [ - 169 + "last_presence_state": [ + 1239 ], - "player_steam_id": [ - 169 + "status": [ + 74 + ], + "steam_id": [ + 173 + ], + "updated_at": [ + 3466 ], "__typename": [ - 70 + 74 ] }, - "player_stats_sum_fields": { - "assists": [ - 169 + "player_steam_bot_friend_sum_fields": { + "bot_steamid64": [ + 173 ], - "deaths": [ - 169 + "steam_id": [ + 173 ], - "headshot_percentage": [ - 1084 + "__typename": [ + 74 + ] + }, + "player_steam_bot_friend_update_column": {}, + "player_steam_bot_friend_updates": { + "_append": [ + 2743 ], - "headshots": [ - 169 + "_delete_at_path": [ + 2747 ], - "kills": [ - 169 + "_delete_elem": [ + 2748 ], - "player_steam_id": [ - 169 + "_delete_key": [ + 2749 ], - "__typename": [ - 70 - ] - }, - "player_stats_update_column": {}, - "player_stats_updates": { "_inc": [ - 2714 + 2750 + ], + "_prepend": [ + 2758 ], "_set": [ - 2724 + 2760 ], "where": [ - 2712 + 2745 ], "__typename": [ - 70 + 74 ] }, - "player_stats_var_pop_fields": { - "assists": [ - 29 - ], - "deaths": [ - 29 - ], - "headshot_percentage": [ - 29 - ], - "headshots": [ + "player_steam_bot_friend_var_pop_fields": { + "bot_steamid64": [ 29 ], - "kills": [ - 29 - ], - "player_steam_id": [ + "steam_id": [ 29 ], "__typename": [ - 70 + 74 ] }, - "player_stats_var_samp_fields": { - "assists": [ - 29 - ], - "deaths": [ - 29 - ], - "headshot_percentage": [ - 29 - ], - "headshots": [ - 29 - ], - "kills": [ + "player_steam_bot_friend_var_samp_fields": { + "bot_steamid64": [ 29 ], - "player_steam_id": [ + "steam_id": [ 29 ], "__typename": [ - 70 + 74 ] }, - "player_stats_variance_fields": { - "assists": [ - 29 - ], - "deaths": [ - 29 - ], - "headshot_percentage": [ - 29 - ], - "headshots": [ - 29 - ], - "kills": [ + "player_steam_bot_friend_variance_fields": { + "bot_steamid64": [ 29 ], - "player_steam_id": [ + "steam_id": [ 29 ], "__typename": [ - 70 + 74 ] }, "player_steam_match_auth": { "auth_code": [ - 70 + 74 ], "created_at": [ - 3421 + 3466 ], "last_error": [ - 70 + 74 ], "last_known_share_code": [ - 70 + 74 ], "last_polled_at": [ - 3421 + 3466 ], "player": [ - 2878 + 2914 ], "steam_id": [ - 169 + 173 ], "updated_at": [ - 3421 + 3466 ], "__typename": [ - 70 + 74 ] }, "player_steam_match_auth_aggregate": { "aggregate": [ - 2738 + 2774 ], "nodes": [ - 2736 + 2772 ], "__typename": [ - 70 + 74 ] }, "player_steam_match_auth_aggregate_fields": { "avg": [ - 2739 + 2775 ], "count": [ 38, { "columns": [ - 2750, + 2786, "[player_steam_match_auth_select_column!]" ], "distinct": [ @@ -66231,34 +67708,34 @@ export default { } ], "max": [ - 2744 + 2780 ], "min": [ - 2745 + 2781 ], "stddev": [ - 2752 + 2788 ], "stddev_pop": [ - 2753 + 2789 ], "stddev_samp": [ - 2754 + 2790 ], "sum": [ - 2757 + 2793 ], "var_pop": [ - 2760 + 2796 ], "var_samp": [ - 2761 + 2797 ], "variance": [ - 2762 + 2798 ], "__typename": [ - 70 + 74 ] }, "player_steam_match_auth_avg_fields": { @@ -66266,135 +67743,135 @@ export default { 29 ], "__typename": [ - 70 + 74 ] }, "player_steam_match_auth_bool_exp": { "_and": [ - 2740 + 2776 ], "_not": [ - 2740 + 2776 ], "_or": [ - 2740 + 2776 ], "auth_code": [ - 72 + 76 ], "created_at": [ - 3422 + 3467 ], "last_error": [ - 72 + 76 ], "last_known_share_code": [ - 72 + 76 ], "last_polled_at": [ - 3422 + 3467 ], "player": [ - 2882 + 2918 ], "steam_id": [ - 171 + 175 ], "updated_at": [ - 3422 + 3467 ], "__typename": [ - 70 + 74 ] }, "player_steam_match_auth_constraint": {}, "player_steam_match_auth_inc_input": { "steam_id": [ - 169 + 173 ], "__typename": [ - 70 + 74 ] }, "player_steam_match_auth_insert_input": { "auth_code": [ - 70 + 74 ], "created_at": [ - 3421 + 3466 ], "last_error": [ - 70 + 74 ], "last_known_share_code": [ - 70 + 74 ], "last_polled_at": [ - 3421 + 3466 ], "player": [ - 2889 + 2925 ], "steam_id": [ - 169 + 173 ], "updated_at": [ - 3421 + 3466 ], "__typename": [ - 70 + 74 ] }, "player_steam_match_auth_max_fields": { "auth_code": [ - 70 + 74 ], "created_at": [ - 3421 + 3466 ], "last_error": [ - 70 + 74 ], "last_known_share_code": [ - 70 + 74 ], "last_polled_at": [ - 3421 + 3466 ], "steam_id": [ - 169 + 173 ], "updated_at": [ - 3421 + 3466 ], "__typename": [ - 70 + 74 ] }, "player_steam_match_auth_min_fields": { "auth_code": [ - 70 + 74 ], "created_at": [ - 3421 + 3466 ], "last_error": [ - 70 + 74 ], "last_known_share_code": [ - 70 + 74 ], "last_polled_at": [ - 3421 + 3466 ], "steam_id": [ - 169 + 173 ], "updated_at": [ - 3421 + 3466 ], "__typename": [ - 70 + 74 ] }, "player_steam_match_auth_mutation_response": { @@ -66402,88 +67879,88 @@ export default { 38 ], "returning": [ - 2736 + 2772 ], "__typename": [ - 70 + 74 ] }, "player_steam_match_auth_on_conflict": { "constraint": [ - 2741 + 2777 ], "update_columns": [ - 2758 + 2794 ], "where": [ - 2740 + 2776 ], "__typename": [ - 70 + 74 ] }, "player_steam_match_auth_order_by": { "auth_code": [ - 2011 + 2015 ], "created_at": [ - 2011 + 2015 ], "last_error": [ - 2011 + 2015 ], "last_known_share_code": [ - 2011 + 2015 ], "last_polled_at": [ - 2011 + 2015 ], "player": [ - 2891 + 2927 ], "steam_id": [ - 2011 + 2015 ], "updated_at": [ - 2011 + 2015 ], "__typename": [ - 70 + 74 ] }, "player_steam_match_auth_pk_columns_input": { "steam_id": [ - 169 + 173 ], "__typename": [ - 70 + 74 ] }, "player_steam_match_auth_select_column": {}, "player_steam_match_auth_set_input": { "auth_code": [ - 70 + 74 ], "created_at": [ - 3421 + 3466 ], "last_error": [ - 70 + 74 ], "last_known_share_code": [ - 70 + 74 ], "last_polled_at": [ - 3421 + 3466 ], "steam_id": [ - 169 + 173 ], "updated_at": [ - 3421 + 3466 ], "__typename": [ - 70 + 74 ] }, "player_steam_match_auth_stddev_fields": { @@ -66491,7 +67968,7 @@ export default { 29 ], "__typename": [ - 70 + 74 ] }, "player_steam_match_auth_stddev_pop_fields": { @@ -66499,7 +67976,7 @@ export default { 29 ], "__typename": [ - 70 + 74 ] }, "player_steam_match_auth_stddev_samp_fields": { @@ -66507,67 +67984,67 @@ export default { 29 ], "__typename": [ - 70 + 74 ] }, "player_steam_match_auth_stream_cursor_input": { "initial_value": [ - 2756 + 2792 ], "ordering": [ - 224 + 228 ], "__typename": [ - 70 + 74 ] }, "player_steam_match_auth_stream_cursor_value_input": { "auth_code": [ - 70 + 74 ], "created_at": [ - 3421 + 3466 ], "last_error": [ - 70 + 74 ], "last_known_share_code": [ - 70 + 74 ], "last_polled_at": [ - 3421 + 3466 ], "steam_id": [ - 169 + 173 ], "updated_at": [ - 3421 + 3466 ], "__typename": [ - 70 + 74 ] }, "player_steam_match_auth_sum_fields": { "steam_id": [ - 169 + 173 ], "__typename": [ - 70 + 74 ] }, "player_steam_match_auth_update_column": {}, "player_steam_match_auth_updates": { "_inc": [ - 2742 + 2778 ], "_set": [ - 2751 + 2787 ], "where": [ - 2740 + 2776 ], "__typename": [ - 70 + 74 ] }, "player_steam_match_auth_var_pop_fields": { @@ -66575,7 +68052,7 @@ export default { 29 ], "__typename": [ - 70 + 74 ] }, "player_steam_match_auth_var_samp_fields": { @@ -66583,7 +68060,7 @@ export default { 29 ], "__typename": [ - 70 + 74 ] }, "player_steam_match_auth_variance_fields": { @@ -66591,30 +68068,30 @@ export default { 29 ], "__typename": [ - 70 + 74 ] }, "player_unused_utility": { "deleted_at": [ - 3421 + 3466 ], "match": [ - 1826 + 1830 ], "match_id": [ - 3818 + 3863 ], "match_map": [ - 1664 + 1668 ], "match_map_id": [ - 3818 + 3863 ], "player": [ - 2878 + 2914 ], "player_steam_id": [ - 169 + 173 ], "round": [ 38 @@ -66623,54 +68100,54 @@ export default { 38 ], "__typename": [ - 70 + 74 ] }, "player_unused_utility_aggregate": { "aggregate": [ - 2767 + 2803 ], "nodes": [ - 2763 + 2799 ], "__typename": [ - 70 + 74 ] }, "player_unused_utility_aggregate_bool_exp": { "count": [ - 2766 + 2802 ], "__typename": [ - 70 + 74 ] }, "player_unused_utility_aggregate_bool_exp_count": { "arguments": [ - 2784 + 2820 ], "distinct": [ 3 ], "filter": [ - 2772 + 2808 ], "predicate": [ 39 ], "__typename": [ - 70 + 74 ] }, "player_unused_utility_aggregate_fields": { "avg": [ - 2770 + 2806 ], "count": [ 38, { "columns": [ - 2784, + 2820, "[player_unused_utility_select_column!]" ], "distinct": [ @@ -66679,83 +68156,83 @@ export default { } ], "max": [ - 2776 + 2812 ], "min": [ - 2778 + 2814 ], "stddev": [ - 2786 + 2822 ], "stddev_pop": [ - 2788 + 2824 ], "stddev_samp": [ - 2790 + 2826 ], "sum": [ - 2794 + 2830 ], "var_pop": [ - 2798 + 2834 ], "var_samp": [ - 2800 + 2836 ], "variance": [ - 2802 + 2838 ], "__typename": [ - 70 + 74 ] }, "player_unused_utility_aggregate_order_by": { "avg": [ - 2771 + 2807 ], "count": [ - 2011 + 2015 ], "max": [ - 2777 + 2813 ], "min": [ - 2779 + 2815 ], "stddev": [ - 2787 + 2823 ], "stddev_pop": [ - 2789 + 2825 ], "stddev_samp": [ - 2791 + 2827 ], "sum": [ - 2795 + 2831 ], "var_pop": [ - 2799 + 2835 ], "var_samp": [ - 2801 + 2837 ], "variance": [ - 2803 + 2839 ], "__typename": [ - 70 + 74 ] }, "player_unused_utility_arr_rel_insert_input": { "data": [ - 2775 + 2811 ], "on_conflict": [ - 2781 + 2817 ], "__typename": [ - 70 + 74 ] }, "player_unused_utility_avg_fields": { @@ -66769,53 +68246,53 @@ export default { 29 ], "__typename": [ - 70 + 74 ] }, "player_unused_utility_avg_order_by": { "player_steam_id": [ - 2011 + 2015 ], "round": [ - 2011 + 2015 ], "unused": [ - 2011 + 2015 ], "__typename": [ - 70 + 74 ] }, "player_unused_utility_bool_exp": { "_and": [ - 2772 + 2808 ], "_not": [ - 2772 + 2808 ], "_or": [ - 2772 + 2808 ], "deleted_at": [ - 3422 + 3467 ], "match": [ - 1835 + 1839 ], "match_id": [ - 3820 + 3865 ], "match_map": [ - 1673 + 1677 ], "match_map_id": [ - 3820 + 3865 ], "player": [ - 2882 + 2918 ], "player_steam_id": [ - 171 + 175 ], "round": [ 39 @@ -66824,13 +68301,13 @@ export default { 39 ], "__typename": [ - 70 + 74 ] }, "player_unused_utility_constraint": {}, "player_unused_utility_inc_input": { "player_steam_id": [ - 169 + 173 ], "round": [ 38 @@ -66839,30 +68316,30 @@ export default { 38 ], "__typename": [ - 70 + 74 ] }, "player_unused_utility_insert_input": { "deleted_at": [ - 3421 + 3466 ], "match": [ - 1844 + 1848 ], "match_id": [ - 3818 + 3863 ], "match_map": [ - 1682 + 1686 ], "match_map_id": [ - 3818 + 3863 ], "player": [ - 2889 + 2925 ], "player_steam_id": [ - 169 + 173 ], "round": [ 38 @@ -66871,21 +68348,21 @@ export default { 38 ], "__typename": [ - 70 + 74 ] }, "player_unused_utility_max_fields": { "deleted_at": [ - 3421 + 3466 ], "match_id": [ - 3818 + 3863 ], "match_map_id": [ - 3818 + 3863 ], "player_steam_id": [ - 169 + 173 ], "round": [ 38 @@ -66894,44 +68371,44 @@ export default { 38 ], "__typename": [ - 70 + 74 ] }, "player_unused_utility_max_order_by": { "deleted_at": [ - 2011 + 2015 ], "match_id": [ - 2011 + 2015 ], "match_map_id": [ - 2011 + 2015 ], "player_steam_id": [ - 2011 + 2015 ], "round": [ - 2011 + 2015 ], "unused": [ - 2011 + 2015 ], "__typename": [ - 70 + 74 ] }, "player_unused_utility_min_fields": { "deleted_at": [ - 3421 + 3466 ], "match_id": [ - 3818 + 3863 ], "match_map_id": [ - 3818 + 3863 ], "player_steam_id": [ - 169 + 173 ], "round": [ 38 @@ -66940,30 +68417,30 @@ export default { 38 ], "__typename": [ - 70 + 74 ] }, "player_unused_utility_min_order_by": { "deleted_at": [ - 2011 + 2015 ], "match_id": [ - 2011 + 2015 ], "match_map_id": [ - 2011 + 2015 ], "player_steam_id": [ - 2011 + 2015 ], "round": [ - 2011 + 2015 ], "unused": [ - 2011 + 2015 ], "__typename": [ - 70 + 74 ] }, "player_unused_utility_mutation_response": { @@ -66971,82 +68448,82 @@ export default { 38 ], "returning": [ - 2763 + 2799 ], "__typename": [ - 70 + 74 ] }, "player_unused_utility_on_conflict": { "constraint": [ - 2773 + 2809 ], "update_columns": [ - 2796 + 2832 ], "where": [ - 2772 + 2808 ], "__typename": [ - 70 + 74 ] }, "player_unused_utility_order_by": { "deleted_at": [ - 2011 + 2015 ], "match": [ - 1846 + 1850 ], "match_id": [ - 2011 + 2015 ], "match_map": [ - 1684 + 1688 ], "match_map_id": [ - 2011 + 2015 ], "player": [ - 2891 + 2927 ], "player_steam_id": [ - 2011 + 2015 ], "round": [ - 2011 + 2015 ], "unused": [ - 2011 + 2015 ], "__typename": [ - 70 + 74 ] }, "player_unused_utility_pk_columns_input": { "match_map_id": [ - 3818 + 3863 ], "player_steam_id": [ - 169 + 173 ], "__typename": [ - 70 + 74 ] }, "player_unused_utility_select_column": {}, "player_unused_utility_set_input": { "deleted_at": [ - 3421 + 3466 ], "match_id": [ - 3818 + 3863 ], "match_map_id": [ - 3818 + 3863 ], "player_steam_id": [ - 169 + 173 ], "round": [ 38 @@ -67055,7 +68532,7 @@ export default { 38 ], "__typename": [ - 70 + 74 ] }, "player_unused_utility_stddev_fields": { @@ -67069,21 +68546,21 @@ export default { 29 ], "__typename": [ - 70 + 74 ] }, "player_unused_utility_stddev_order_by": { "player_steam_id": [ - 2011 + 2015 ], "round": [ - 2011 + 2015 ], "unused": [ - 2011 + 2015 ], "__typename": [ - 70 + 74 ] }, "player_unused_utility_stddev_pop_fields": { @@ -67097,21 +68574,21 @@ export default { 29 ], "__typename": [ - 70 + 74 ] }, "player_unused_utility_stddev_pop_order_by": { "player_steam_id": [ - 2011 + 2015 ], "round": [ - 2011 + 2015 ], "unused": [ - 2011 + 2015 ], "__typename": [ - 70 + 74 ] }, "player_unused_utility_stddev_samp_fields": { @@ -67125,46 +68602,46 @@ export default { 29 ], "__typename": [ - 70 + 74 ] }, "player_unused_utility_stddev_samp_order_by": { "player_steam_id": [ - 2011 + 2015 ], "round": [ - 2011 + 2015 ], "unused": [ - 2011 + 2015 ], "__typename": [ - 70 + 74 ] }, "player_unused_utility_stream_cursor_input": { "initial_value": [ - 2793 + 2829 ], "ordering": [ - 224 + 228 ], "__typename": [ - 70 + 74 ] }, "player_unused_utility_stream_cursor_value_input": { "deleted_at": [ - 3421 + 3466 ], "match_id": [ - 3818 + 3863 ], "match_map_id": [ - 3818 + 3863 ], "player_steam_id": [ - 169 + 173 ], "round": [ 38 @@ -67173,12 +68650,12 @@ export default { 38 ], "__typename": [ - 70 + 74 ] }, "player_unused_utility_sum_fields": { "player_steam_id": [ - 169 + 173 ], "round": [ 38 @@ -67187,36 +68664,36 @@ export default { 38 ], "__typename": [ - 70 + 74 ] }, "player_unused_utility_sum_order_by": { "player_steam_id": [ - 2011 + 2015 ], "round": [ - 2011 + 2015 ], "unused": [ - 2011 + 2015 ], "__typename": [ - 70 + 74 ] }, "player_unused_utility_update_column": {}, "player_unused_utility_updates": { "_inc": [ - 2774 + 2810 ], "_set": [ - 2785 + 2821 ], "where": [ - 2772 + 2808 ], "__typename": [ - 70 + 74 ] }, "player_unused_utility_var_pop_fields": { @@ -67230,21 +68707,21 @@ export default { 29 ], "__typename": [ - 70 + 74 ] }, "player_unused_utility_var_pop_order_by": { "player_steam_id": [ - 2011 + 2015 ], "round": [ - 2011 + 2015 ], "unused": [ - 2011 + 2015 ], "__typename": [ - 70 + 74 ] }, "player_unused_utility_var_samp_fields": { @@ -67258,21 +68735,21 @@ export default { 29 ], "__typename": [ - 70 + 74 ] }, "player_unused_utility_var_samp_order_by": { "player_steam_id": [ - 2011 + 2015 ], "round": [ - 2011 + 2015 ], "unused": [ - 2011 + 2015 ], "__typename": [ - 70 + 74 ] }, "player_unused_utility_variance_fields": { @@ -67286,106 +68763,106 @@ export default { 29 ], "__typename": [ - 70 + 74 ] }, "player_unused_utility_variance_order_by": { "player_steam_id": [ - 2011 + 2015 ], "round": [ - 2011 + 2015 ], "unused": [ - 2011 + 2015 ], "__typename": [ - 70 + 74 ] }, "player_utility": { "attacker_location_coordinates": [ - 70 + 74 ], "attacker_steam_id": [ - 169 + 173 ], "deleted_at": [ - 3421 + 3466 ], "match": [ - 1826 + 1830 ], "match_id": [ - 3818 + 3863 ], "match_map": [ - 1664 + 1668 ], "match_map_id": [ - 3818 + 3863 ], "player": [ - 2878 + 2914 ], "round": [ 38 ], "time": [ - 3421 + 3466 ], "type": [ - 1029 + 1033 ], "__typename": [ - 70 + 74 ] }, "player_utility_aggregate": { "aggregate": [ - 2808 + 2844 ], "nodes": [ - 2804 + 2840 ], "__typename": [ - 70 + 74 ] }, "player_utility_aggregate_bool_exp": { "count": [ - 2807 + 2843 ], "__typename": [ - 70 + 74 ] }, "player_utility_aggregate_bool_exp_count": { "arguments": [ - 2825 + 2861 ], "distinct": [ 3 ], "filter": [ - 2813 + 2849 ], "predicate": [ 39 ], "__typename": [ - 70 + 74 ] }, "player_utility_aggregate_fields": { "avg": [ - 2811 + 2847 ], "count": [ 38, { "columns": [ - 2825, + 2861, "[player_utility_select_column!]" ], "distinct": [ @@ -67394,83 +68871,83 @@ export default { } ], "max": [ - 2817 + 2853 ], "min": [ - 2819 + 2855 ], "stddev": [ - 2827 + 2863 ], "stddev_pop": [ - 2829 + 2865 ], "stddev_samp": [ - 2831 + 2867 ], "sum": [ - 2835 + 2871 ], "var_pop": [ - 2839 + 2875 ], "var_samp": [ - 2841 + 2877 ], "variance": [ - 2843 + 2879 ], "__typename": [ - 70 + 74 ] }, "player_utility_aggregate_order_by": { "avg": [ - 2812 + 2848 ], "count": [ - 2011 + 2015 ], "max": [ - 2818 + 2854 ], "min": [ - 2820 + 2856 ], "stddev": [ - 2828 + 2864 ], "stddev_pop": [ - 2830 + 2866 ], "stddev_samp": [ - 2832 + 2868 ], "sum": [ - 2836 + 2872 ], "var_pop": [ - 2840 + 2876 ], "var_samp": [ - 2842 + 2878 ], "variance": [ - 2844 + 2880 ], "__typename": [ - 70 + 74 ] }, "player_utility_arr_rel_insert_input": { "data": [ - 2816 + 2852 ], "on_conflict": [ - 2822 + 2858 ], "__typename": [ - 70 + 74 ] }, "player_utility_avg_fields": { @@ -67481,219 +68958,219 @@ export default { 29 ], "__typename": [ - 70 + 74 ] }, "player_utility_avg_order_by": { "attacker_steam_id": [ - 2011 + 2015 ], "round": [ - 2011 + 2015 ], "__typename": [ - 70 + 74 ] }, "player_utility_bool_exp": { "_and": [ - 2813 + 2849 ], "_not": [ - 2813 + 2849 ], "_or": [ - 2813 + 2849 ], "attacker_location_coordinates": [ - 72 + 76 ], "attacker_steam_id": [ - 171 + 175 ], "deleted_at": [ - 3422 + 3467 ], "match": [ - 1835 + 1839 ], "match_id": [ - 3820 + 3865 ], "match_map": [ - 1673 + 1677 ], "match_map_id": [ - 3820 + 3865 ], "player": [ - 2882 + 2918 ], "round": [ 39 ], "time": [ - 3422 + 3467 ], "type": [ - 1030 + 1034 ], "__typename": [ - 70 + 74 ] }, "player_utility_constraint": {}, "player_utility_inc_input": { "attacker_steam_id": [ - 169 + 173 ], "round": [ 38 ], "__typename": [ - 70 + 74 ] }, "player_utility_insert_input": { "attacker_location_coordinates": [ - 70 + 74 ], "attacker_steam_id": [ - 169 + 173 ], "deleted_at": [ - 3421 + 3466 ], "match": [ - 1844 + 1848 ], "match_id": [ - 3818 + 3863 ], "match_map": [ - 1682 + 1686 ], "match_map_id": [ - 3818 + 3863 ], "player": [ - 2889 + 2925 ], "round": [ 38 ], "time": [ - 3421 + 3466 ], "type": [ - 1029 + 1033 ], "__typename": [ - 70 + 74 ] }, "player_utility_max_fields": { "attacker_location_coordinates": [ - 70 + 74 ], "attacker_steam_id": [ - 169 + 173 ], "deleted_at": [ - 3421 + 3466 ], "match_id": [ - 3818 + 3863 ], "match_map_id": [ - 3818 + 3863 ], "round": [ 38 ], "time": [ - 3421 + 3466 ], "__typename": [ - 70 + 74 ] }, "player_utility_max_order_by": { "attacker_location_coordinates": [ - 2011 + 2015 ], "attacker_steam_id": [ - 2011 + 2015 ], "deleted_at": [ - 2011 + 2015 ], "match_id": [ - 2011 + 2015 ], "match_map_id": [ - 2011 + 2015 ], "round": [ - 2011 + 2015 ], "time": [ - 2011 + 2015 ], "__typename": [ - 70 + 74 ] }, "player_utility_min_fields": { "attacker_location_coordinates": [ - 70 + 74 ], "attacker_steam_id": [ - 169 + 173 ], "deleted_at": [ - 3421 + 3466 ], "match_id": [ - 3818 + 3863 ], "match_map_id": [ - 3818 + 3863 ], "round": [ 38 ], "time": [ - 3421 + 3466 ], "__typename": [ - 70 + 74 ] }, "player_utility_min_order_by": { "attacker_location_coordinates": [ - 2011 + 2015 ], "attacker_steam_id": [ - 2011 + 2015 ], "deleted_at": [ - 2011 + 2015 ], "match_id": [ - 2011 + 2015 ], "match_map_id": [ - 2011 + 2015 ], "round": [ - 2011 + 2015 ], "time": [ - 2011 + 2015 ], "__typename": [ - 70 + 74 ] }, "player_utility_mutation_response": { @@ -67701,106 +69178,106 @@ export default { 38 ], "returning": [ - 2804 + 2840 ], "__typename": [ - 70 + 74 ] }, "player_utility_on_conflict": { "constraint": [ - 2814 + 2850 ], "update_columns": [ - 2837 + 2873 ], "where": [ - 2813 + 2849 ], "__typename": [ - 70 + 74 ] }, "player_utility_order_by": { "attacker_location_coordinates": [ - 2011 + 2015 ], "attacker_steam_id": [ - 2011 + 2015 ], "deleted_at": [ - 2011 + 2015 ], "match": [ - 1846 + 1850 ], "match_id": [ - 2011 + 2015 ], "match_map": [ - 1684 + 1688 ], "match_map_id": [ - 2011 + 2015 ], "player": [ - 2891 + 2927 ], "round": [ - 2011 + 2015 ], "time": [ - 2011 + 2015 ], "type": [ - 2011 + 2015 ], "__typename": [ - 70 + 74 ] }, "player_utility_pk_columns_input": { "attacker_steam_id": [ - 169 + 173 ], "match_map_id": [ - 3818 + 3863 ], "time": [ - 3421 + 3466 ], "__typename": [ - 70 + 74 ] }, "player_utility_select_column": {}, "player_utility_set_input": { "attacker_location_coordinates": [ - 70 + 74 ], "attacker_steam_id": [ - 169 + 173 ], "deleted_at": [ - 3421 + 3466 ], "match_id": [ - 3818 + 3863 ], "match_map_id": [ - 3818 + 3863 ], "round": [ 38 ], "time": [ - 3421 + 3466 ], "type": [ - 1029 + 1033 ], "__typename": [ - 70 + 74 ] }, "player_utility_stddev_fields": { @@ -67811,18 +69288,18 @@ export default { 29 ], "__typename": [ - 70 + 74 ] }, "player_utility_stddev_order_by": { "attacker_steam_id": [ - 2011 + 2015 ], "round": [ - 2011 + 2015 ], "__typename": [ - 70 + 74 ] }, "player_utility_stddev_pop_fields": { @@ -67833,18 +69310,18 @@ export default { 29 ], "__typename": [ - 70 + 74 ] }, "player_utility_stddev_pop_order_by": { "attacker_steam_id": [ - 2011 + 2015 ], "round": [ - 2011 + 2015 ], "__typename": [ - 70 + 74 ] }, "player_utility_stddev_samp_fields": { @@ -67855,95 +69332,95 @@ export default { 29 ], "__typename": [ - 70 + 74 ] }, "player_utility_stddev_samp_order_by": { "attacker_steam_id": [ - 2011 + 2015 ], "round": [ - 2011 + 2015 ], "__typename": [ - 70 + 74 ] }, "player_utility_stream_cursor_input": { "initial_value": [ - 2834 + 2870 ], "ordering": [ - 224 + 228 ], "__typename": [ - 70 + 74 ] }, "player_utility_stream_cursor_value_input": { "attacker_location_coordinates": [ - 70 + 74 ], "attacker_steam_id": [ - 169 + 173 ], "deleted_at": [ - 3421 + 3466 ], "match_id": [ - 3818 + 3863 ], "match_map_id": [ - 3818 + 3863 ], "round": [ 38 ], "time": [ - 3421 + 3466 ], "type": [ - 1029 + 1033 ], "__typename": [ - 70 + 74 ] }, "player_utility_sum_fields": { "attacker_steam_id": [ - 169 + 173 ], "round": [ 38 ], "__typename": [ - 70 + 74 ] }, "player_utility_sum_order_by": { "attacker_steam_id": [ - 2011 + 2015 ], "round": [ - 2011 + 2015 ], "__typename": [ - 70 + 74 ] }, "player_utility_update_column": {}, "player_utility_updates": { "_inc": [ - 2815 + 2851 ], "_set": [ - 2826 + 2862 ], "where": [ - 2813 + 2849 ], "__typename": [ - 70 + 74 ] }, "player_utility_var_pop_fields": { @@ -67954,18 +69431,18 @@ export default { 29 ], "__typename": [ - 70 + 74 ] }, "player_utility_var_pop_order_by": { "attacker_steam_id": [ - 2011 + 2015 ], "round": [ - 2011 + 2015 ], "__typename": [ - 70 + 74 ] }, "player_utility_var_samp_fields": { @@ -67976,18 +69453,18 @@ export default { 29 ], "__typename": [ - 70 + 74 ] }, "player_utility_var_samp_order_by": { "attacker_steam_id": [ - 2011 + 2015 ], "round": [ - 2011 + 2015 ], "__typename": [ - 70 + 74 ] }, "player_utility_variance_fields": { @@ -67998,18 +69475,18 @@ export default { 29 ], "__typename": [ - 70 + 74 ] }, "player_utility_variance_order_by": { "attacker_steam_id": [ - 2011 + 2015 ], "round": [ - 2011 + 2015 ], "__typename": [ - 70 + 74 ] }, "player_weapon_stats_v": { @@ -68026,7 +69503,7 @@ export default { 38 ], "match_id": [ - 3818 + 3863 ], "shots": [ 38 @@ -68035,60 +69512,60 @@ export default { 38 ], "steam_id": [ - 169 + 173 ], "weapon_class": [ - 70 + 74 ], "__typename": [ - 70 + 74 ] }, "player_weapon_stats_v_aggregate": { "aggregate": [ - 2849 + 2885 ], "nodes": [ - 2845 + 2881 ], "__typename": [ - 70 + 74 ] }, "player_weapon_stats_v_aggregate_bool_exp": { "count": [ - 2848 + 2884 ], "__typename": [ - 70 + 74 ] }, "player_weapon_stats_v_aggregate_bool_exp_count": { "arguments": [ - 2861 + 2897 ], "distinct": [ 3 ], "filter": [ - 2854 + 2890 ], "predicate": [ 39 ], "__typename": [ - 70 + 74 ] }, "player_weapon_stats_v_aggregate_fields": { "avg": [ - 2852 + 2888 ], "count": [ 38, { "columns": [ - 2861, + 2897, "[player_weapon_stats_v_select_column!]" ], "distinct": [ @@ -68097,80 +69574,80 @@ export default { } ], "max": [ - 2856 + 2892 ], "min": [ - 2858 + 2894 ], "stddev": [ - 2862 + 2898 ], "stddev_pop": [ - 2864 + 2900 ], "stddev_samp": [ - 2866 + 2902 ], "sum": [ - 2870 + 2906 ], "var_pop": [ - 2872 + 2908 ], "var_samp": [ - 2874 + 2910 ], "variance": [ - 2876 + 2912 ], "__typename": [ - 70 + 74 ] }, "player_weapon_stats_v_aggregate_order_by": { "avg": [ - 2853 + 2889 ], "count": [ - 2011 + 2015 ], "max": [ - 2857 + 2893 ], "min": [ - 2859 + 2895 ], "stddev": [ - 2863 + 2899 ], "stddev_pop": [ - 2865 + 2901 ], "stddev_samp": [ - 2867 + 2903 ], "sum": [ - 2871 + 2907 ], "var_pop": [ - 2873 + 2909 ], "var_samp": [ - 2875 + 2911 ], "variance": [ - 2877 + 2913 ], "__typename": [ - 70 + 74 ] }, "player_weapon_stats_v_arr_rel_insert_input": { "data": [ - 2855 + 2891 ], "__typename": [ - 70 + 74 ] }, "player_weapon_stats_v_avg_fields": { @@ -68196,44 +69673,44 @@ export default { 29 ], "__typename": [ - 70 + 74 ] }, "player_weapon_stats_v_avg_order_by": { "first_bullet_hits": [ - 2011 + 2015 ], "first_bullet_shots": [ - 2011 + 2015 ], "hits": [ - 2011 + 2015 ], "hits_spotted": [ - 2011 + 2015 ], "shots": [ - 2011 + 2015 ], "shots_spotted": [ - 2011 + 2015 ], "steam_id": [ - 2011 + 2015 ], "__typename": [ - 70 + 74 ] }, "player_weapon_stats_v_bool_exp": { "_and": [ - 2854 + 2890 ], "_not": [ - 2854 + 2890 ], "_or": [ - 2854 + 2890 ], "first_bullet_hits": [ 39 @@ -68248,7 +69725,7 @@ export default { 39 ], "match_id": [ - 3820 + 3865 ], "shots": [ 39 @@ -68257,13 +69734,13 @@ export default { 39 ], "steam_id": [ - 171 + 175 ], "weapon_class": [ - 72 + 76 ], "__typename": [ - 70 + 74 ] }, "player_weapon_stats_v_insert_input": { @@ -68280,7 +69757,7 @@ export default { 38 ], "match_id": [ - 3818 + 3863 ], "shots": [ 38 @@ -68289,13 +69766,13 @@ export default { 38 ], "steam_id": [ - 169 + 173 ], "weapon_class": [ - 70 + 74 ], "__typename": [ - 70 + 74 ] }, "player_weapon_stats_v_max_fields": { @@ -68312,7 +69789,7 @@ export default { 38 ], "match_id": [ - 3818 + 3863 ], "shots": [ 38 @@ -68321,45 +69798,45 @@ export default { 38 ], "steam_id": [ - 169 + 173 ], "weapon_class": [ - 70 + 74 ], "__typename": [ - 70 + 74 ] }, "player_weapon_stats_v_max_order_by": { "first_bullet_hits": [ - 2011 + 2015 ], "first_bullet_shots": [ - 2011 + 2015 ], "hits": [ - 2011 + 2015 ], "hits_spotted": [ - 2011 + 2015 ], "match_id": [ - 2011 + 2015 ], "shots": [ - 2011 + 2015 ], "shots_spotted": [ - 2011 + 2015 ], "steam_id": [ - 2011 + 2015 ], "weapon_class": [ - 2011 + 2015 ], "__typename": [ - 70 + 74 ] }, "player_weapon_stats_v_min_fields": { @@ -68376,7 +69853,7 @@ export default { 38 ], "match_id": [ - 3818 + 3863 ], "shots": [ 38 @@ -68385,77 +69862,77 @@ export default { 38 ], "steam_id": [ - 169 + 173 ], "weapon_class": [ - 70 + 74 ], "__typename": [ - 70 + 74 ] }, "player_weapon_stats_v_min_order_by": { "first_bullet_hits": [ - 2011 + 2015 ], "first_bullet_shots": [ - 2011 + 2015 ], "hits": [ - 2011 + 2015 ], "hits_spotted": [ - 2011 + 2015 ], "match_id": [ - 2011 + 2015 ], "shots": [ - 2011 + 2015 ], "shots_spotted": [ - 2011 + 2015 ], "steam_id": [ - 2011 + 2015 ], "weapon_class": [ - 2011 + 2015 ], "__typename": [ - 70 + 74 ] }, "player_weapon_stats_v_order_by": { "first_bullet_hits": [ - 2011 + 2015 ], "first_bullet_shots": [ - 2011 + 2015 ], "hits": [ - 2011 + 2015 ], "hits_spotted": [ - 2011 + 2015 ], "match_id": [ - 2011 + 2015 ], "shots": [ - 2011 + 2015 ], "shots_spotted": [ - 2011 + 2015 ], "steam_id": [ - 2011 + 2015 ], "weapon_class": [ - 2011 + 2015 ], "__typename": [ - 70 + 74 ] }, "player_weapon_stats_v_select_column": {}, @@ -68482,33 +69959,33 @@ export default { 29 ], "__typename": [ - 70 + 74 ] }, "player_weapon_stats_v_stddev_order_by": { "first_bullet_hits": [ - 2011 + 2015 ], "first_bullet_shots": [ - 2011 + 2015 ], "hits": [ - 2011 + 2015 ], "hits_spotted": [ - 2011 + 2015 ], "shots": [ - 2011 + 2015 ], "shots_spotted": [ - 2011 + 2015 ], "steam_id": [ - 2011 + 2015 ], "__typename": [ - 70 + 74 ] }, "player_weapon_stats_v_stddev_pop_fields": { @@ -68534,33 +70011,33 @@ export default { 29 ], "__typename": [ - 70 + 74 ] }, "player_weapon_stats_v_stddev_pop_order_by": { "first_bullet_hits": [ - 2011 + 2015 ], "first_bullet_shots": [ - 2011 + 2015 ], "hits": [ - 2011 + 2015 ], "hits_spotted": [ - 2011 + 2015 ], "shots": [ - 2011 + 2015 ], "shots_spotted": [ - 2011 + 2015 ], "steam_id": [ - 2011 + 2015 ], "__typename": [ - 70 + 74 ] }, "player_weapon_stats_v_stddev_samp_fields": { @@ -68586,44 +70063,44 @@ export default { 29 ], "__typename": [ - 70 + 74 ] }, "player_weapon_stats_v_stddev_samp_order_by": { "first_bullet_hits": [ - 2011 + 2015 ], "first_bullet_shots": [ - 2011 + 2015 ], "hits": [ - 2011 + 2015 ], "hits_spotted": [ - 2011 + 2015 ], "shots": [ - 2011 + 2015 ], "shots_spotted": [ - 2011 + 2015 ], "steam_id": [ - 2011 + 2015 ], "__typename": [ - 70 + 74 ] }, "player_weapon_stats_v_stream_cursor_input": { "initial_value": [ - 2869 + 2905 ], "ordering": [ - 224 + 228 ], "__typename": [ - 70 + 74 ] }, "player_weapon_stats_v_stream_cursor_value_input": { @@ -68640,7 +70117,7 @@ export default { 38 ], "match_id": [ - 3818 + 3863 ], "shots": [ 38 @@ -68649,13 +70126,13 @@ export default { 38 ], "steam_id": [ - 169 + 173 ], "weapon_class": [ - 70 + 74 ], "__typename": [ - 70 + 74 ] }, "player_weapon_stats_v_sum_fields": { @@ -68678,36 +70155,36 @@ export default { 38 ], "steam_id": [ - 169 + 173 ], "__typename": [ - 70 + 74 ] }, "player_weapon_stats_v_sum_order_by": { "first_bullet_hits": [ - 2011 + 2015 ], "first_bullet_shots": [ - 2011 + 2015 ], "hits": [ - 2011 + 2015 ], "hits_spotted": [ - 2011 + 2015 ], "shots": [ - 2011 + 2015 ], "shots_spotted": [ - 2011 + 2015 ], "steam_id": [ - 2011 + 2015 ], "__typename": [ - 70 + 74 ] }, "player_weapon_stats_v_var_pop_fields": { @@ -68733,33 +70210,33 @@ export default { 29 ], "__typename": [ - 70 + 74 ] }, "player_weapon_stats_v_var_pop_order_by": { "first_bullet_hits": [ - 2011 + 2015 ], "first_bullet_shots": [ - 2011 + 2015 ], "hits": [ - 2011 + 2015 ], "hits_spotted": [ - 2011 + 2015 ], "shots": [ - 2011 + 2015 ], "shots_spotted": [ - 2011 + 2015 ], "steam_id": [ - 2011 + 2015 ], "__typename": [ - 70 + 74 ] }, "player_weapon_stats_v_var_samp_fields": { @@ -68785,33 +70262,33 @@ export default { 29 ], "__typename": [ - 70 + 74 ] }, "player_weapon_stats_v_var_samp_order_by": { "first_bullet_hits": [ - 2011 + 2015 ], "first_bullet_shots": [ - 2011 + 2015 ], "hits": [ - 2011 + 2015 ], "hits_spotted": [ - 2011 + 2015 ], "shots": [ - 2011 + 2015 ], "shots_spotted": [ - 2011 + 2015 ], "steam_id": [ - 2011 + 2015 ], "__typename": [ - 70 + 74 ] }, "player_weapon_stats_v_variance_fields": { @@ -68837,41 +70314,41 @@ export default { 29 ], "__typename": [ - 70 + 74 ] }, "player_weapon_stats_v_variance_order_by": { "first_bullet_hits": [ - 2011 + 2015 ], "first_bullet_shots": [ - 2011 + 2015 ], "hits": [ - 2011 + 2015 ], "hits_spotted": [ - 2011 + 2015 ], "shots": [ - 2011 + 2015 ], "shots_spotted": [ - 2011 + 2015 ], "steam_id": [ - 2011 + 2015 ], "__typename": [ - 70 + 74 ] }, "players": { "abandoned_matches": [ - 101, + 105, { "distinct_on": [ - 122, + 126, "[abandoned_matches_select_column!]" ], "limit": [ @@ -68881,19 +70358,19 @@ export default { 38 ], "order_by": [ - 120, + 124, "[abandoned_matches_order_by!]" ], "where": [ - 110 + 114 ] } ], "abandoned_matches_aggregate": [ - 102, + 106, { "distinct_on": [ - 122, + 126, "[abandoned_matches_select_column!]" ], "limit": [ @@ -68903,19 +70380,19 @@ export default { 38 ], "order_by": [ - 120, + 124, "[abandoned_matches_order_by!]" ], "where": [ - 110 + 114 ] } ], "aim_weapon_stats": [ - 2108, + 2112, { "distinct_on": [ - 2129, + 2133, "[player_aim_weapon_stats_select_column!]" ], "limit": [ @@ -68925,19 +70402,19 @@ export default { 38 ], "order_by": [ - 2127, + 2131, "[player_aim_weapon_stats_order_by!]" ], "where": [ - 2117 + 2121 ] } ], "aim_weapon_stats_aggregate": [ - 2109, + 2113, { "distinct_on": [ - 2129, + 2133, "[player_aim_weapon_stats_select_column!]" ], "limit": [ @@ -68947,19 +70424,19 @@ export default { 38 ], "order_by": [ - 2127, + 2131, "[player_aim_weapon_stats_order_by!]" ], "where": [ - 2117 + 2121 ] } ], "assists": [ - 2149, + 2153, { "distinct_on": [ - 2172, + 2176, "[player_assists_select_column!]" ], "limit": [ @@ -68969,19 +70446,19 @@ export default { 38 ], "order_by": [ - 2170, + 2174, "[player_assists_order_by!]" ], "where": [ - 2160 + 2164 ] } ], "assists_aggregate": [ - 2150, + 2154, { "distinct_on": [ - 2172, + 2176, "[player_assists_select_column!]" ], "limit": [ @@ -68991,19 +70468,19 @@ export default { 38 ], "order_by": [ - 2170, + 2174, "[player_assists_order_by!]" ], "where": [ - 2160 + 2164 ] } ], "assited_by_players": [ - 2149, + 2153, { "distinct_on": [ - 2172, + 2176, "[player_assists_select_column!]" ], "limit": [ @@ -69013,19 +70490,19 @@ export default { 38 ], "order_by": [ - 2170, + 2174, "[player_assists_order_by!]" ], "where": [ - 2160 + 2164 ] } ], "assited_by_players_aggregate": [ - 2150, + 2154, { "distinct_on": [ - 2172, + 2176, "[player_assists_select_column!]" ], "limit": [ @@ -69035,22 +70512,22 @@ export default { 38 ], "order_by": [ - 2170, + 2174, "[player_assists_order_by!]" ], "where": [ - 2160 + 2164 ] } ], "avatar_url": [ - 70 + 74 ], "coach_lineups": [ - 1506, + 1510, { "distinct_on": [ - 1528, + 1532, "[match_lineups_select_column!]" ], "limit": [ @@ -69060,19 +70537,19 @@ export default { 38 ], "order_by": [ - 1526, + 1530, "[match_lineups_order_by!]" ], "where": [ - 1515 + 1519 ] } ], "coach_lineups_aggregate": [ - 1507, + 1511, { "distinct_on": [ - 1528, + 1532, "[match_lineups_select_column!]" ], "limit": [ @@ -69082,31 +70559,31 @@ export default { 38 ], "order_by": [ - 1526, + 1530, "[match_lineups_order_by!]" ], "where": [ - 1515 + 1519 ] } ], "country": [ - 70 + 74 ], "created_at": [ - 3421 + 3466 ], "current_lobby_id": [ - 3818 + 3863 ], "custom_avatar_url": [ - 70 + 74 ], "damage_dealt": [ - 2212, + 2216, { "distinct_on": [ - 2233, + 2237, "[player_damages_select_column!]" ], "limit": [ @@ -69116,19 +70593,19 @@ export default { 38 ], "order_by": [ - 2231, + 2235, "[player_damages_order_by!]" ], "where": [ - 2221 + 2225 ] } ], "damage_dealt_aggregate": [ - 2213, + 2217, { "distinct_on": [ - 2233, + 2237, "[player_damages_select_column!]" ], "limit": [ @@ -69138,19 +70615,19 @@ export default { 38 ], "order_by": [ - 2231, + 2235, "[player_damages_order_by!]" ], "where": [ - 2221 + 2225 ] } ], "damage_taken": [ - 2212, + 2216, { "distinct_on": [ - 2233, + 2237, "[player_damages_select_column!]" ], "limit": [ @@ -69160,19 +70637,19 @@ export default { 38 ], "order_by": [ - 2231, + 2235, "[player_damages_order_by!]" ], "where": [ - 2221 + 2225 ] } ], "damage_taken_aggregate": [ - 2213, + 2217, { "distinct_on": [ - 2233, + 2237, "[player_damages_select_column!]" ], "limit": [ @@ -69182,11 +70659,11 @@ export default { 38 ], "order_by": [ - 2231, + 2235, "[player_damages_order_by!]" ], "where": [ - 2221 + 2225 ] } ], @@ -69194,10 +70671,10 @@ export default { 38 ], "deaths": [ - 2366, + 2370, { "distinct_on": [ - 2430, + 2434, "[player_kills_select_column!]" ], "limit": [ @@ -69207,19 +70684,19 @@ export default { 38 ], "order_by": [ - 2428, + 2432, "[player_kills_order_by!]" ], "where": [ - 2377 + 2381 ] } ], "deaths_aggregate": [ - 2367, + 2371, { "distinct_on": [ - 2430, + 2434, "[player_kills_select_column!]" ], "limit": [ @@ -69229,22 +70706,22 @@ export default { 38 ], "order_by": [ - 2428, + 2432, "[player_kills_order_by!]" ], "where": [ - 2377 + 2381 ] } ], "discord_id": [ - 70 + 74 ], "draft_game_players": [ - 297, + 301, { "distinct_on": [ - 320, + 324, "[draft_game_players_select_column!]" ], "limit": [ @@ -69254,19 +70731,19 @@ export default { 38 ], "order_by": [ - 318, + 322, "[draft_game_players_order_by!]" ], "where": [ - 308 + 312 ] } ], "draft_game_players_aggregate": [ - 298, + 302, { "distinct_on": [ - 320, + 324, "[draft_game_players_select_column!]" ], "limit": [ @@ -69276,27 +70753,27 @@ export default { 38 ], "order_by": [ - 318, + 322, "[draft_game_players_order_by!]" ], "where": [ - 308 + 312 ] } ], "elo": [ - 1235, + 1239, { "path": [ - 70 + 74 ] } ], "elo_history": [ - 4060, + 4105, { "distinct_on": [ - 4086, + 4131, "[v_player_elo_select_column!]" ], "limit": [ @@ -69306,19 +70783,19 @@ export default { 38 ], "order_by": [ - 4085, + 4130, "[v_player_elo_order_by!]" ], "where": [ - 4079 + 4124 ] } ], "elo_history_aggregate": [ - 4061, + 4106, { "distinct_on": [ - 4086, + 4131, "[v_player_elo_select_column!]" ], "limit": [ @@ -69328,11 +70805,11 @@ export default { 38 ], "order_by": [ - 4085, + 4130, "[v_player_elo_order_by!]" ], "where": [ - 4079 + 4124 ] } ], @@ -69340,16 +70817,16 @@ export default { 38 ], "faceit_nickname": [ - 70 + 74 ], "faceit_player_id": [ - 70 + 74 ], "faceit_rank_history": [ - 2280, + 2284, { "distinct_on": [ - 2301, + 2305, "[player_faceit_rank_history_select_column!]" ], "limit": [ @@ -69359,19 +70836,19 @@ export default { 38 ], "order_by": [ - 2299, + 2303, "[player_faceit_rank_history_order_by!]" ], "where": [ - 2289 + 2293 ] } ], "faceit_rank_history_aggregate": [ - 2281, + 2285, { "distinct_on": [ - 2301, + 2305, "[player_faceit_rank_history_select_column!]" ], "limit": [ @@ -69381,11 +70858,11 @@ export default { 38 ], "order_by": [ - 2299, + 2303, "[player_faceit_rank_history_order_by!]" ], "where": [ - 2289 + 2293 ] } ], @@ -69393,16 +70870,16 @@ export default { 38 ], "faceit_updated_at": [ - 3421 + 3466 ], "faceit_url": [ - 70 + 74 ], "flashed_by_players": [ - 2321, + 2325, { "distinct_on": [ - 2344, + 2348, "[player_flashes_select_column!]" ], "limit": [ @@ -69412,19 +70889,19 @@ export default { 38 ], "order_by": [ - 2342, + 2346, "[player_flashes_order_by!]" ], "where": [ - 2332 + 2336 ] } ], "flashed_by_players_aggregate": [ - 2322, + 2326, { "distinct_on": [ - 2344, + 2348, "[player_flashes_select_column!]" ], "limit": [ @@ -69434,19 +70911,19 @@ export default { 38 ], "order_by": [ - 2342, + 2346, "[player_flashes_order_by!]" ], "where": [ - 2332 + 2336 ] } ], "flashed_players": [ - 2321, + 2325, { "distinct_on": [ - 2344, + 2348, "[player_flashes_select_column!]" ], "limit": [ @@ -69456,19 +70933,19 @@ export default { 38 ], "order_by": [ - 2342, + 2346, "[player_flashes_order_by!]" ], "where": [ - 2332 + 2336 ] } ], "flashed_players_aggregate": [ - 2322, + 2326, { "distinct_on": [ - 2344, + 2348, "[player_flashes_select_column!]" ], "limit": [ @@ -69478,19 +70955,19 @@ export default { 38 ], "order_by": [ - 2342, + 2346, "[player_flashes_order_by!]" ], "where": [ - 2332 + 2336 ] } ], "friends": [ - 1886, + 1890, { "distinct_on": [ - 1911, + 1915, "[my_friends_select_column!]" ], "limit": [ @@ -69500,19 +70977,19 @@ export default { 38 ], "order_by": [ - 1909, + 1913, "[my_friends_order_by!]" ], "where": [ - 1898 + 1902 ] } ], "friends_aggregate": [ - 1887, + 1891, { "distinct_on": [ - 1911, + 1915, "[my_friends_select_column!]" ], "limit": [ @@ -69522,11 +70999,11 @@ export default { 38 ], "order_by": [ - 1909, + 1913, "[my_friends_order_by!]" ], "where": [ - 1898 + 1902 ] } ], @@ -69534,10 +71011,10 @@ export default { 38 ], "invited_players": [ - 3095, + 3140, { "distinct_on": [ - 3116, + 3161, "[team_invites_select_column!]" ], "limit": [ @@ -69547,19 +71024,19 @@ export default { 38 ], "order_by": [ - 3114, + 3159, "[team_invites_order_by!]" ], "where": [ - 3104 + 3149 ] } ], "invited_players_aggregate": [ - 3096, + 3141, { "distinct_on": [ - 3116, + 3161, "[team_invites_select_column!]" ], "limit": [ @@ -69569,11 +71046,11 @@ export default { 38 ], "order_by": [ - 3114, + 3159, "[team_invites_order_by!]" ], "where": [ - 3104 + 3149 ] } ], @@ -69596,10 +71073,10 @@ export default { 3 ], "kills": [ - 2366, + 2370, { "distinct_on": [ - 2430, + 2434, "[player_kills_select_column!]" ], "limit": [ @@ -69609,19 +71086,19 @@ export default { 38 ], "order_by": [ - 2428, + 2432, "[player_kills_order_by!]" ], "where": [ - 2377 + 2381 ] } ], "kills_aggregate": [ - 2367, + 2371, { "distinct_on": [ - 2430, + 2434, "[player_kills_select_column!]" ], "limit": [ @@ -69631,19 +71108,19 @@ export default { 38 ], "order_by": [ - 2428, + 2432, "[player_kills_order_by!]" ], "where": [ - 2377 + 2381 ] } ], "kills_by_weapons": [ - 2378, + 2382, { "distinct_on": [ - 2399, + 2403, "[player_kills_by_weapon_select_column!]" ], "limit": [ @@ -69653,19 +71130,19 @@ export default { 38 ], "order_by": [ - 2397, + 2401, "[player_kills_by_weapon_order_by!]" ], "where": [ - 2387 + 2391 ] } ], "kills_by_weapons_aggregate": [ - 2379, + 2383, { "distinct_on": [ - 2399, + 2403, "[player_kills_by_weapon_select_column!]" ], "limit": [ @@ -69675,28 +71152,28 @@ export default { 38 ], "order_by": [ - 2397, + 2401, "[player_kills_by_weapon_order_by!]" ], "where": [ - 2387 + 2391 ] } ], "language": [ - 70 + 74 ], "last_read_news_at": [ - 3421 + 3466 ], "last_sign_in_at": [ - 3421 + 3466 ], "lobby_players": [ - 1280, + 1284, { "distinct_on": [ - 1303, + 1307, "[lobby_players_select_column!]" ], "limit": [ @@ -69706,19 +71183,19 @@ export default { 38 ], "order_by": [ - 1301, + 1305, "[lobby_players_order_by!]" ], "where": [ - 1291 + 1295 ] } ], "lobby_players_aggregate": [ - 1281, + 1285, { "distinct_on": [ - 1303, + 1307, "[lobby_players_select_column!]" ], "limit": [ @@ -69728,11 +71205,11 @@ export default { 38 ], "order_by": [ - 1301, + 1305, "[lobby_players_order_by!]" ], "where": [ - 1291 + 1295 ] } ], @@ -69749,10 +71226,10 @@ export default { 38 ], "match_map_hltv": [ - 4165, + 4210, { "distinct_on": [ - 4183, + 4228, "[v_player_match_map_hltv_select_column!]" ], "limit": [ @@ -69762,19 +71239,19 @@ export default { 38 ], "order_by": [ - 4182, + 4227, "[v_player_match_map_hltv_order_by!]" ], "where": [ - 4174 + 4219 ] } ], "match_map_hltv_aggregate": [ - 4166, + 4211, { "distinct_on": [ - 4183, + 4228, "[v_player_match_map_hltv_select_column!]" ], "limit": [ @@ -69784,19 +71261,19 @@ export default { 38 ], "order_by": [ - 4182, + 4227, "[v_player_match_map_hltv_order_by!]" ], "where": [ - 4174 + 4219 ] } ], "match_map_stats": [ - 2475, + 2479, { "distinct_on": [ - 2496, + 2500, "[player_match_map_stats_select_column!]" ], "limit": [ @@ -69806,19 +71283,19 @@ export default { 38 ], "order_by": [ - 2494, + 2498, "[player_match_map_stats_order_by!]" ], "where": [ - 2484 + 2488 ] } ], "match_map_stats_aggregate": [ - 2476, + 2480, { "distinct_on": [ - 2496, + 2500, "[player_match_map_stats_select_column!]" ], "limit": [ @@ -69828,19 +71305,19 @@ export default { 38 ], "order_by": [ - 2494, + 2498, "[player_match_map_stats_order_by!]" ], "where": [ - 2484 + 2488 ] } ], "match_stats": [ - 2534, + 2538, { "distinct_on": [ - 2550, + 2554, "[player_match_stats_v_select_column!]" ], "limit": [ @@ -69850,19 +71327,19 @@ export default { 38 ], "order_by": [ - 2549, + 2553, "[player_match_stats_v_order_by!]" ], "where": [ - 2543 + 2547 ] } ], "match_stats_aggregate": [ - 2535, + 2539, { "distinct_on": [ - 2550, + 2554, "[player_match_stats_v_select_column!]" ], "limit": [ @@ -69872,19 +71349,19 @@ export default { 38 ], "order_by": [ - 2549, + 2553, "[player_match_stats_v_order_by!]" ], "where": [ - 2543 + 2547 ] } ], "matches": [ - 1826, + 1830, { "distinct_on": [ - 1848, + 1852, "[matches_select_column!]" ], "limit": [ @@ -69894,22 +71371,22 @@ export default { 38 ], "order_by": [ - 1846, + 1850, "[matches_order_by!]" ], "where": [ - 1835 + 1839 ] } ], "matchmaking_cooldown": [ - 3421 + 3466 ], "multi_kills": [ - 4256, + 4301, { "distinct_on": [ - 4272, + 4317, "[v_player_multi_kills_select_column!]" ], "limit": [ @@ -69919,19 +71396,19 @@ export default { 38 ], "order_by": [ - 4271, + 4316, "[v_player_multi_kills_order_by!]" ], "where": [ - 4265 + 4310 ] } ], "multi_kills_aggregate": [ - 4257, + 4302, { "distinct_on": [ - 4272, + 4317, "[v_player_multi_kills_select_column!]" ], "limit": [ @@ -69941,25 +71418,25 @@ export default { 38 ], "order_by": [ - 4271, + 4316, "[v_player_multi_kills_order_by!]" ], "where": [ - 4265 + 4310 ] } ], "name": [ - 70 + 74 ], "name_registered": [ 3 ], "notifications": [ - 1959, + 1963, { "distinct_on": [ - 1987, + 1991, "[notifications_select_column!]" ], "limit": [ @@ -69969,19 +71446,19 @@ export default { 38 ], "order_by": [ - 1984, + 1988, "[notifications_order_by!]" ], "where": [ - 1971 + 1975 ] } ], "notifications_aggregate": [ - 1960, + 1964, { "distinct_on": [ - 1987, + 1991, "[notifications_select_column!]" ], "limit": [ @@ -69991,19 +71468,19 @@ export default { 38 ], "order_by": [ - 1984, + 1988, "[notifications_order_by!]" ], "where": [ - 1971 + 1975 ] } ], "objectives": [ - 2567, + 2571, { "distinct_on": [ - 2588, + 2592, "[player_objectives_select_column!]" ], "limit": [ @@ -70013,19 +71490,19 @@ export default { 38 ], "order_by": [ - 2586, + 2590, "[player_objectives_order_by!]" ], "where": [ - 2576 + 2580 ] } ], "objectives_aggregate": [ - 2568, + 2572, { "distinct_on": [ - 2588, + 2592, "[player_objectives_select_column!]" ], "limit": [ @@ -70035,19 +71512,19 @@ export default { 38 ], "order_by": [ - 2586, + 2590, "[player_objectives_order_by!]" ], "where": [ - 2576 + 2580 ] } ], "owned_teams": [ - 3378, + 3423, { "distinct_on": [ - 3400, + 3445, "[teams_select_column!]" ], "limit": [ @@ -70057,19 +71534,19 @@ export default { 38 ], "order_by": [ - 3398, + 3443, "[teams_order_by!]" ], "where": [ - 3387 + 3432 ] } ], "owned_teams_aggregate": [ - 3379, + 3424, { "distinct_on": [ - 3400, + 3445, "[teams_select_column!]" ], "limit": [ @@ -70079,27 +71556,27 @@ export default { 38 ], "order_by": [ - 3398, + 3443, "[teams_order_by!]" ], "where": [ - 3387 + 3432 ] } ], "peak_elo": [ - 1235, + 1239, { "path": [ - 70 + 74 ] } ], "pending_match_imports": [ - 2012, + 2016, { "distinct_on": [ - 2033, + 2037, "[pending_match_import_players_select_column!]" ], "limit": [ @@ -70109,19 +71586,19 @@ export default { 38 ], "order_by": [ - 2031, + 2035, "[pending_match_import_players_order_by!]" ], "where": [ - 2021 + 2025 ] } ], "pending_match_imports_aggregate": [ - 2013, + 2017, { "distinct_on": [ - 2033, + 2037, "[pending_match_import_players_select_column!]" ], "limit": [ @@ -70131,19 +71608,19 @@ export default { 38 ], "order_by": [ - 2031, + 2035, "[pending_match_import_players_order_by!]" ], "where": [ - 2021 + 2025 ] } ], "player_lineup": [ - 1461, + 1465, { "distinct_on": [ - 1484, + 1488, "[match_lineup_players_select_column!]" ], "limit": [ @@ -70153,19 +71630,19 @@ export default { 38 ], "order_by": [ - 1482, + 1486, "[match_lineup_players_order_by!]" ], "where": [ - 1472 + 1476 ] } ], "player_lineup_aggregate": [ - 1462, + 1466, { "distinct_on": [ - 1484, + 1488, "[match_lineup_players_select_column!]" ], "limit": [ @@ -70175,19 +71652,19 @@ export default { 38 ], "order_by": [ - 1482, + 1486, "[match_lineup_players_order_by!]" ], "where": [ - 1472 + 1476 ] } ], "player_unused_utilities": [ - 2763, + 2799, { "distinct_on": [ - 2784, + 2820, "[player_unused_utility_select_column!]" ], "limit": [ @@ -70197,19 +71674,19 @@ export default { 38 ], "order_by": [ - 2782, + 2818, "[player_unused_utility_order_by!]" ], "where": [ - 2772 + 2808 ] } ], "player_unused_utilities_aggregate": [ - 2764, + 2800, { "distinct_on": [ - 2784, + 2820, "[player_unused_utility_select_column!]" ], "limit": [ @@ -70219,11 +71696,11 @@ export default { 38 ], "order_by": [ - 2782, + 2818, "[player_unused_utility_order_by!]" ], "where": [ - 2772 + 2808 ] } ], @@ -70231,10 +71708,10 @@ export default { 38 ], "premier_rank_history": [ - 2626, + 2630, { "distinct_on": [ - 2647, + 2651, "[player_premier_rank_history_select_column!]" ], "limit": [ @@ -70244,19 +71721,19 @@ export default { 38 ], "order_by": [ - 2645, + 2649, "[player_premier_rank_history_order_by!]" ], "where": [ - 2635 + 2639 ] } ], "premier_rank_history_aggregate": [ - 2627, + 2631, { "distinct_on": [ - 2647, + 2651, "[player_premier_rank_history_select_column!]" ], "limit": [ @@ -70266,31 +71743,31 @@ export default { 38 ], "order_by": [ - 2645, + 2649, "[player_premier_rank_history_order_by!]" ], "where": [ - 2635 + 2639 ] } ], "premier_rank_updated_at": [ - 3421 + 3466 ], "profile_url": [ - 70 + 74 ], "role": [ - 785 + 789 ], "roster_image_url": [ - 70 + 74 ], "sanctions": [ - 2667, + 2671, { "distinct_on": [ - 2688, + 2692, "[player_sanctions_select_column!]" ], "limit": [ @@ -70300,19 +71777,19 @@ export default { 38 ], "order_by": [ - 2686, + 2690, "[player_sanctions_order_by!]" ], "where": [ - 2676 + 2680 ] } ], "sanctions_aggregate": [ - 2668, + 2672, { "distinct_on": [ - 2688, + 2692, "[player_sanctions_select_column!]" ], "limit": [ @@ -70322,11 +71799,11 @@ export default { 38 ], "order_by": [ - 2686, + 2690, "[player_sanctions_order_by!]" ], "where": [ - 2676 + 2680 ] } ], @@ -70334,19 +71811,19 @@ export default { 3 ], "stats": [ - 2708 + 2712 ], "steam_bans_checked_at": [ - 3421 + 3466 ], "steam_id": [ - 169 + 173 ], "team_invites": [ - 3095, + 3140, { "distinct_on": [ - 3116, + 3161, "[team_invites_select_column!]" ], "limit": [ @@ -70356,19 +71833,19 @@ export default { 38 ], "order_by": [ - 3114, + 3159, "[team_invites_order_by!]" ], "where": [ - 3104 + 3149 ] } ], "team_invites_aggregate": [ - 3096, + 3141, { "distinct_on": [ - 3116, + 3161, "[team_invites_select_column!]" ], "limit": [ @@ -70378,19 +71855,19 @@ export default { 38 ], "order_by": [ - 3114, + 3159, "[team_invites_order_by!]" ], "where": [ - 3104 + 3149 ] } ], "team_members": [ - 3136, + 3181, { "distinct_on": [ - 3159, + 3204, "[team_roster_select_column!]" ], "limit": [ @@ -70400,19 +71877,19 @@ export default { 38 ], "order_by": [ - 3157, + 3202, "[team_roster_order_by!]" ], "where": [ - 3147 + 3192 ] } ], "team_members_aggregate": [ - 3137, + 3182, { "distinct_on": [ - 3159, + 3204, "[team_roster_select_column!]" ], "limit": [ @@ -70422,19 +71899,19 @@ export default { 38 ], "order_by": [ - 3157, + 3202, "[team_roster_order_by!]" ], "where": [ - 3147 + 3192 ] } ], "teams": [ - 3378, + 3423, { "distinct_on": [ - 3400, + 3445, "[teams_select_column!]" ], "limit": [ @@ -70444,11 +71921,11 @@ export default { 38 ], "order_by": [ - 3398, + 3443, "[teams_order_by!]" ], "where": [ - 3387 + 3432 ] } ], @@ -70456,10 +71933,10 @@ export default { 38 ], "tournament_organizers": [ - 3469, + 3514, { "distinct_on": [ - 3490, + 3535, "[tournament_organizers_select_column!]" ], "limit": [ @@ -70469,19 +71946,19 @@ export default { 38 ], "order_by": [ - 3488, + 3533, "[tournament_organizers_order_by!]" ], "where": [ - 3478 + 3523 ] } ], "tournament_organizers_aggregate": [ - 3470, + 3515, { "distinct_on": [ - 3490, + 3535, "[tournament_organizers_select_column!]" ], "limit": [ @@ -70491,19 +71968,19 @@ export default { 38 ], "order_by": [ - 3488, + 3533, "[tournament_organizers_order_by!]" ], "where": [ - 3478 + 3523 ] } ], "tournament_rosters": [ - 3602, + 3647, { "distinct_on": [ - 3623, + 3668, "[tournament_team_roster_select_column!]" ], "limit": [ @@ -70513,19 +71990,19 @@ export default { 38 ], "order_by": [ - 3621, + 3666, "[tournament_team_roster_order_by!]" ], "where": [ - 3611 + 3656 ] } ], "tournament_rosters_aggregate": [ - 3603, + 3648, { "distinct_on": [ - 3623, + 3668, "[tournament_team_roster_select_column!]" ], "limit": [ @@ -70535,19 +72012,19 @@ export default { 38 ], "order_by": [ - 3621, + 3666, "[tournament_team_roster_order_by!]" ], "where": [ - 3611 + 3656 ] } ], "tournament_trophies": [ - 3685, + 3730, { "distinct_on": [ - 3708, + 3753, "[tournament_trophies_select_column!]" ], "limit": [ @@ -70557,19 +72034,19 @@ export default { 38 ], "order_by": [ - 3706, + 3751, "[tournament_trophies_order_by!]" ], "where": [ - 3696 + 3741 ] } ], "tournament_trophies_aggregate": [ - 3686, + 3731, { "distinct_on": [ - 3708, + 3753, "[tournament_trophies_select_column!]" ], "limit": [ @@ -70579,19 +72056,19 @@ export default { 38 ], "order_by": [ - 3706, + 3751, "[tournament_trophies_order_by!]" ], "where": [ - 3696 + 3741 ] } ], "tournaments": [ - 3772, + 3817, { "distinct_on": [ - 3796, + 3841, "[tournaments_select_column!]" ], "limit": [ @@ -70601,19 +72078,19 @@ export default { 38 ], "order_by": [ - 3794, + 3839, "[tournaments_order_by!]" ], "where": [ - 3783 + 3828 ] } ], "tournaments_aggregate": [ - 3773, + 3818, { "distinct_on": [ - 3796, + 3841, "[tournaments_select_column!]" ], "limit": [ @@ -70623,19 +72100,19 @@ export default { 38 ], "order_by": [ - 3794, + 3839, "[tournaments_order_by!]" ], "where": [ - 3783 + 3828 ] } ], "utility_thrown": [ - 2804, + 2840, { "distinct_on": [ - 2825, + 2861, "[player_utility_select_column!]" ], "limit": [ @@ -70645,19 +72122,19 @@ export default { 38 ], "order_by": [ - 2823, + 2859, "[player_utility_order_by!]" ], "where": [ - 2813 + 2849 ] } ], "utility_thrown_aggregate": [ - 2805, + 2841, { "distinct_on": [ - 2825, + 2861, "[player_utility_select_column!]" ], "limit": [ @@ -70667,11 +72144,11 @@ export default { 38 ], "order_by": [ - 2823, + 2859, "[player_utility_order_by!]" ], "where": [ - 2813 + 2849 ] } ], @@ -70682,10 +72159,10 @@ export default { 3 ], "weapon_stats": [ - 2845, + 2881, { "distinct_on": [ - 2861, + 2897, "[player_weapon_stats_v_select_column!]" ], "limit": [ @@ -70695,19 +72172,19 @@ export default { 38 ], "order_by": [ - 2860, + 2896, "[player_weapon_stats_v_order_by!]" ], "where": [ - 2854 + 2890 ] } ], "weapon_stats_aggregate": [ - 2846, + 2882, { "distinct_on": [ - 2861, + 2897, "[player_weapon_stats_v_select_column!]" ], "limit": [ @@ -70717,11 +72194,11 @@ export default { 38 ], "order_by": [ - 2860, + 2896, "[player_weapon_stats_v_order_by!]" ], "where": [ - 2854 + 2890 ] } ], @@ -70738,29 +72215,29 @@ export default { 38 ], "__typename": [ - 70 + 74 ] }, "players_aggregate": { "aggregate": [ - 2880 + 2916 ], "nodes": [ - 2878 + 2914 ], "__typename": [ - 70 + 74 ] }, "players_aggregate_fields": { "avg": [ - 2881 + 2917 ], "count": [ 38, { "columns": [ - 2893, + 2929, "[players_select_column!]" ], "distinct": [ @@ -70769,34 +72246,34 @@ export default { } ], "max": [ - 2886 + 2922 ], "min": [ - 2887 + 2923 ], "stddev": [ - 2895 + 2931 ], "stddev_pop": [ - 2896 + 2932 ], "stddev_samp": [ - 2897 + 2933 ], "sum": [ - 2900 + 2936 ], "var_pop": [ - 2903 + 2939 ], "var_samp": [ - 2904 + 2940 ], "variance": [ - 2905 + 2941 ], "__typename": [ - 70 + 74 ] }, "players_avg_fields": { @@ -70849,153 +72326,153 @@ export default { 38 ], "__typename": [ - 70 + 74 ] }, "players_bool_exp": { "_and": [ - 2882 + 2918 ], "_not": [ - 2882 + 2918 ], "_or": [ - 2882 + 2918 ], "abandoned_matches": [ - 110 + 114 ], "abandoned_matches_aggregate": [ - 103 + 107 ], "aim_weapon_stats": [ - 2117 + 2121 ], "aim_weapon_stats_aggregate": [ - 2110 + 2114 ], "assists": [ - 2160 + 2164 ], "assists_aggregate": [ - 2151 + 2155 ], "assited_by_players": [ - 2160 + 2164 ], "assited_by_players_aggregate": [ - 2151 + 2155 ], "avatar_url": [ - 72 + 76 ], "coach_lineups": [ - 1515 + 1519 ], "coach_lineups_aggregate": [ - 1508 + 1512 ], "country": [ - 72 + 76 ], "created_at": [ - 3422 + 3467 ], "current_lobby_id": [ - 3820 + 3865 ], "custom_avatar_url": [ - 72 + 76 ], "damage_dealt": [ - 2221 + 2225 ], "damage_dealt_aggregate": [ - 2214 + 2218 ], "damage_taken": [ - 2221 + 2225 ], "damage_taken_aggregate": [ - 2214 + 2218 ], "days_since_last_ban": [ 39 ], "deaths": [ - 2377 + 2381 ], "deaths_aggregate": [ - 2368 + 2372 ], "discord_id": [ - 72 + 76 ], "draft_game_players": [ - 308 + 312 ], "draft_game_players_aggregate": [ - 299 + 303 ], "elo": [ - 1237 + 1241 ], "elo_history": [ - 4079 + 4124 ], "elo_history_aggregate": [ - 4062 + 4107 ], "faceit_elo": [ 39 ], "faceit_nickname": [ - 72 + 76 ], "faceit_player_id": [ - 72 + 76 ], "faceit_rank_history": [ - 2289 + 2293 ], "faceit_rank_history_aggregate": [ - 2282 + 2286 ], "faceit_skill_level": [ 39 ], "faceit_updated_at": [ - 3422 + 3467 ], "faceit_url": [ - 72 + 76 ], "flashed_by_players": [ - 2332 + 2336 ], "flashed_by_players_aggregate": [ - 2323 + 2327 ], "flashed_players": [ - 2332 + 2336 ], "flashed_players_aggregate": [ - 2323 + 2327 ], "friends": [ - 1898 + 1902 ], "friends_aggregate": [ - 1888 + 1892 ], "game_ban_count": [ 39 ], "invited_players": [ - 3104 + 3149 ], "invited_players_aggregate": [ - 3097 + 3142 ], "is_banned": [ 4 @@ -71016,31 +72493,31 @@ export default { 4 ], "kills": [ - 2377 + 2381 ], "kills_aggregate": [ - 2368 + 2372 ], "kills_by_weapons": [ - 2387 + 2391 ], "kills_by_weapons_aggregate": [ - 2380 + 2384 ], "language": [ - 72 + 76 ], "last_read_news_at": [ - 3422 + 3467 ], "last_sign_in_at": [ - 3422 + 3467 ], "lobby_players": [ - 1291 + 1295 ], "lobby_players_aggregate": [ - 1282 + 1286 ], "losses": [ 39 @@ -71055,166 +72532,166 @@ export default { 39 ], "match_map_hltv": [ - 4174 + 4219 ], "match_map_hltv_aggregate": [ - 4167 + 4212 ], "match_map_stats": [ - 2484 + 2488 ], "match_map_stats_aggregate": [ - 2477 + 2481 ], "match_stats": [ - 2543 + 2547 ], "match_stats_aggregate": [ - 2536 + 2540 ], "matches": [ - 1835 + 1839 ], "matchmaking_cooldown": [ - 3422 + 3467 ], "multi_kills": [ - 4265 + 4310 ], "multi_kills_aggregate": [ - 4258 + 4303 ], "name": [ - 72 + 76 ], "name_registered": [ 4 ], "notifications": [ - 1971 + 1975 ], "notifications_aggregate": [ - 1961 + 1965 ], "objectives": [ - 2576 + 2580 ], "objectives_aggregate": [ - 2569 + 2573 ], "owned_teams": [ - 3387 + 3432 ], "owned_teams_aggregate": [ - 3380 + 3425 ], "peak_elo": [ - 1237 + 1241 ], "pending_match_imports": [ - 2021 + 2025 ], "pending_match_imports_aggregate": [ - 2014 + 2018 ], "player_lineup": [ - 1472 + 1476 ], "player_lineup_aggregate": [ - 1463 + 1467 ], "player_unused_utilities": [ - 2772 + 2808 ], "player_unused_utilities_aggregate": [ - 2765 + 2801 ], "premier_rank": [ 39 ], "premier_rank_history": [ - 2635 + 2639 ], "premier_rank_history_aggregate": [ - 2628 + 2632 ], "premier_rank_updated_at": [ - 3422 + 3467 ], "profile_url": [ - 72 + 76 ], "role": [ - 786 + 790 ], "roster_image_url": [ - 72 + 76 ], "sanctions": [ - 2676 + 2680 ], "sanctions_aggregate": [ - 2669 + 2673 ], "show_match_ready_modal": [ 4 ], "stats": [ - 2712 + 2716 ], "steam_bans_checked_at": [ - 3422 + 3467 ], "steam_id": [ - 171 + 175 ], "team_invites": [ - 3104 + 3149 ], "team_invites_aggregate": [ - 3097 + 3142 ], "team_members": [ - 3147 + 3192 ], "team_members_aggregate": [ - 3138 + 3183 ], "teams": [ - 3387 + 3432 ], "total_matches": [ 39 ], "tournament_organizers": [ - 3478 + 3523 ], "tournament_organizers_aggregate": [ - 3471 + 3516 ], "tournament_rosters": [ - 3611 + 3656 ], "tournament_rosters_aggregate": [ - 3604 + 3649 ], "tournament_trophies": [ - 3696 + 3741 ], "tournament_trophies_aggregate": [ - 3687 + 3732 ], "tournaments": [ - 3783 + 3828 ], "tournaments_aggregate": [ - 3774 + 3819 ], "utility_thrown": [ - 2813 + 2849 ], "utility_thrown_aggregate": [ - 2806 + 2842 ], "vac_ban_count": [ 39 @@ -71223,10 +72700,10 @@ export default { 4 ], "weapon_stats": [ - 2854 + 2890 ], "weapon_stats_aggregate": [ - 2847 + 2883 ], "wins": [ 39 @@ -71241,7 +72718,7 @@ export default { 39 ], "__typename": [ - 70 + 74 ] }, "players_constraint": {}, @@ -71262,207 +72739,207 @@ export default { 38 ], "steam_id": [ - 169 + 173 ], "vac_ban_count": [ 38 ], "__typename": [ - 70 + 74 ] }, "players_insert_input": { "abandoned_matches": [ - 107 + 111 ], "aim_weapon_stats": [ - 2114 + 2118 ], "assists": [ - 2157 + 2161 ], "assited_by_players": [ - 2157 + 2161 ], "avatar_url": [ - 70 + 74 ], "coach_lineups": [ - 1512 + 1516 ], "country": [ - 70 + 74 ], "created_at": [ - 3421 + 3466 ], "custom_avatar_url": [ - 70 + 74 ], "damage_dealt": [ - 2218 + 2222 ], "damage_taken": [ - 2218 + 2222 ], "days_since_last_ban": [ 38 ], "deaths": [ - 2374 + 2378 ], "discord_id": [ - 70 + 74 ], "draft_game_players": [ - 305 + 309 ], "elo_history": [ - 4076 + 4121 ], "faceit_elo": [ 38 ], "faceit_nickname": [ - 70 + 74 ], "faceit_player_id": [ - 70 + 74 ], "faceit_rank_history": [ - 2286 + 2290 ], "faceit_skill_level": [ 38 ], "faceit_updated_at": [ - 3421 + 3466 ], "faceit_url": [ - 70 + 74 ], "flashed_by_players": [ - 2329 + 2333 ], "flashed_players": [ - 2329 + 2333 ], "friends": [ - 1895 + 1899 ], "game_ban_count": [ 38 ], "invited_players": [ - 3101 + 3146 ], "kills": [ - 2374 + 2378 ], "kills_by_weapons": [ - 2384 + 2388 ], "language": [ - 70 + 74 ], "last_read_news_at": [ - 3421 + 3466 ], "last_sign_in_at": [ - 3421 + 3466 ], "lobby_players": [ - 1288 + 1292 ], "match_map_hltv": [ - 4171 + 4216 ], "match_map_stats": [ - 2481 + 2485 ], "match_stats": [ - 2540 + 2544 ], "multi_kills": [ - 4262 + 4307 ], "name": [ - 70 + 74 ], "name_registered": [ 3 ], "notifications": [ - 1968 + 1972 ], "objectives": [ - 2573 + 2577 ], "owned_teams": [ - 3384 + 3429 ], "pending_match_imports": [ - 2018 + 2022 ], "player_lineup": [ - 1469 + 1473 ], "player_unused_utilities": [ - 2769 + 2805 ], "premier_rank": [ 38 ], "premier_rank_history": [ - 2632 + 2636 ], "premier_rank_updated_at": [ - 3421 + 3466 ], "profile_url": [ - 70 + 74 ], "role": [ - 785 + 789 ], "roster_image_url": [ - 70 + 74 ], "sanctions": [ - 2673 + 2677 ], "show_match_ready_modal": [ 3 ], "stats": [ - 2719 + 2723 ], "steam_bans_checked_at": [ - 3421 + 3466 ], "steam_id": [ - 169 + 173 ], "team_invites": [ - 3101 + 3146 ], "team_members": [ - 3144 + 3189 ], "tournament_organizers": [ - 3475 + 3520 ], "tournament_rosters": [ - 3608 + 3653 ], "tournament_trophies": [ - 3693 + 3738 ], "tournaments": [ - 3780 + 3825 ], "utility_thrown": [ - 2810 + 2846 ], "vac_ban_count": [ 38 @@ -71471,63 +72948,63 @@ export default { 3 ], "weapon_stats": [ - 2851 + 2887 ], "__typename": [ - 70 + 74 ] }, "players_max_fields": { "avatar_url": [ - 70 + 74 ], "country": [ - 70 + 74 ], "created_at": [ - 3421 + 3466 ], "current_lobby_id": [ - 3818 + 3863 ], "custom_avatar_url": [ - 70 + 74 ], "days_since_last_ban": [ 38 ], "discord_id": [ - 70 + 74 ], "faceit_elo": [ 38 ], "faceit_nickname": [ - 70 + 74 ], "faceit_player_id": [ - 70 + 74 ], "faceit_skill_level": [ 38 ], "faceit_updated_at": [ - 3421 + 3466 ], "faceit_url": [ - 70 + 74 ], "game_ban_count": [ 38 ], "language": [ - 70 + 74 ], "last_read_news_at": [ - 3421 + 3466 ], "last_sign_in_at": [ - 3421 + 3466 ], "losses": [ 38 @@ -71542,28 +73019,28 @@ export default { 38 ], "matchmaking_cooldown": [ - 3421 + 3466 ], "name": [ - 70 + 74 ], "premier_rank": [ 38 ], "premier_rank_updated_at": [ - 3421 + 3466 ], "profile_url": [ - 70 + 74 ], "roster_image_url": [ - 70 + 74 ], "steam_bans_checked_at": [ - 3421 + 3466 ], "steam_id": [ - 169 + 173 ], "total_matches": [ 38 @@ -71584,60 +73061,60 @@ export default { 38 ], "__typename": [ - 70 + 74 ] }, "players_min_fields": { "avatar_url": [ - 70 + 74 ], "country": [ - 70 + 74 ], "created_at": [ - 3421 + 3466 ], "current_lobby_id": [ - 3818 + 3863 ], "custom_avatar_url": [ - 70 + 74 ], "days_since_last_ban": [ 38 ], "discord_id": [ - 70 + 74 ], "faceit_elo": [ 38 ], "faceit_nickname": [ - 70 + 74 ], "faceit_player_id": [ - 70 + 74 ], "faceit_skill_level": [ 38 ], "faceit_updated_at": [ - 3421 + 3466 ], "faceit_url": [ - 70 + 74 ], "game_ban_count": [ 38 ], "language": [ - 70 + 74 ], "last_read_news_at": [ - 3421 + 3466 ], "last_sign_in_at": [ - 3421 + 3466 ], "losses": [ 38 @@ -71652,28 +73129,28 @@ export default { 38 ], "matchmaking_cooldown": [ - 3421 + 3466 ], "name": [ - 70 + 74 ], "premier_rank": [ 38 ], "premier_rank_updated_at": [ - 3421 + 3466 ], "profile_url": [ - 70 + 74 ], "roster_image_url": [ - 70 + 74 ], "steam_bans_checked_at": [ - 3421 + 3466 ], "steam_id": [ - 169 + 173 ], "total_matches": [ 38 @@ -71694,7 +73171,7 @@ export default { 38 ], "__typename": [ - 70 + 74 ] }, "players_mutation_response": { @@ -71702,366 +73179,366 @@ export default { 38 ], "returning": [ - 2878 + 2914 ], "__typename": [ - 70 + 74 ] }, "players_obj_rel_insert_input": { "data": [ - 2885 + 2921 ], "on_conflict": [ - 2890 + 2926 ], "__typename": [ - 70 + 74 ] }, "players_on_conflict": { "constraint": [ - 2883 + 2919 ], "update_columns": [ - 2901 + 2937 ], "where": [ - 2882 + 2918 ], "__typename": [ - 70 + 74 ] }, "players_order_by": { "abandoned_matches_aggregate": [ - 106 + 110 ], "aim_weapon_stats_aggregate": [ - 2113 + 2117 ], "assists_aggregate": [ - 2156 + 2160 ], "assited_by_players_aggregate": [ - 2156 + 2160 ], "avatar_url": [ - 2011 + 2015 ], "coach_lineups_aggregate": [ - 1511 + 1515 ], "country": [ - 2011 + 2015 ], "created_at": [ - 2011 + 2015 ], "current_lobby_id": [ - 2011 + 2015 ], "custom_avatar_url": [ - 2011 + 2015 ], "damage_dealt_aggregate": [ - 2217 + 2221 ], "damage_taken_aggregate": [ - 2217 + 2221 ], "days_since_last_ban": [ - 2011 + 2015 ], "deaths_aggregate": [ - 2373 + 2377 ], "discord_id": [ - 2011 + 2015 ], "draft_game_players_aggregate": [ - 304 + 308 ], "elo": [ - 2011 + 2015 ], "elo_history_aggregate": [ - 4075 + 4120 ], "faceit_elo": [ - 2011 + 2015 ], "faceit_nickname": [ - 2011 + 2015 ], "faceit_player_id": [ - 2011 + 2015 ], "faceit_rank_history_aggregate": [ - 2285 + 2289 ], "faceit_skill_level": [ - 2011 + 2015 ], "faceit_updated_at": [ - 2011 + 2015 ], "faceit_url": [ - 2011 + 2015 ], "flashed_by_players_aggregate": [ - 2328 + 2332 ], "flashed_players_aggregate": [ - 2328 + 2332 ], "friends_aggregate": [ - 1893 + 1897 ], "game_ban_count": [ - 2011 + 2015 ], "invited_players_aggregate": [ - 3100 + 3145 ], "is_banned": [ - 2011 + 2015 ], "is_gagged": [ - 2011 + 2015 ], "is_in_another_match": [ - 2011 + 2015 ], "is_in_draft": [ - 2011 + 2015 ], "is_in_lobby": [ - 2011 + 2015 ], "is_muted": [ - 2011 + 2015 ], "kills_aggregate": [ - 2373 + 2377 ], "kills_by_weapons_aggregate": [ - 2383 + 2387 ], "language": [ - 2011 + 2015 ], "last_read_news_at": [ - 2011 + 2015 ], "last_sign_in_at": [ - 2011 + 2015 ], "lobby_players_aggregate": [ - 1287 + 1291 ], "losses": [ - 2011 + 2015 ], "losses_competitive": [ - 2011 + 2015 ], "losses_duel": [ - 2011 + 2015 ], "losses_wingman": [ - 2011 + 2015 ], "match_map_hltv_aggregate": [ - 4170 + 4215 ], "match_map_stats_aggregate": [ - 2480 + 2484 ], "match_stats_aggregate": [ - 2539 + 2543 ], "matches_aggregate": [ - 1831 + 1835 ], "matchmaking_cooldown": [ - 2011 + 2015 ], "multi_kills_aggregate": [ - 4261 + 4306 ], "name": [ - 2011 + 2015 ], "name_registered": [ - 2011 + 2015 ], "notifications_aggregate": [ - 1966 + 1970 ], "objectives_aggregate": [ - 2572 + 2576 ], "owned_teams_aggregate": [ - 3383 + 3428 ], "peak_elo": [ - 2011 + 2015 ], "pending_match_imports_aggregate": [ - 2017 + 2021 ], "player_lineup_aggregate": [ - 1468 + 1472 ], "player_unused_utilities_aggregate": [ - 2768 + 2804 ], "premier_rank": [ - 2011 + 2015 ], "premier_rank_history_aggregate": [ - 2631 + 2635 ], "premier_rank_updated_at": [ - 2011 + 2015 ], "profile_url": [ - 2011 + 2015 ], "role": [ - 2011 + 2015 ], "roster_image_url": [ - 2011 + 2015 ], "sanctions_aggregate": [ - 2672 + 2676 ], "show_match_ready_modal": [ - 2011 + 2015 ], "stats": [ - 2721 + 2725 ], "steam_bans_checked_at": [ - 2011 + 2015 ], "steam_id": [ - 2011 + 2015 ], "team_invites_aggregate": [ - 3100 + 3145 ], "team_members_aggregate": [ - 3143 + 3188 ], "teams_aggregate": [ - 3383 + 3428 ], "total_matches": [ - 2011 + 2015 ], "tournament_organizers_aggregate": [ - 3474 + 3519 ], "tournament_rosters_aggregate": [ - 3607 + 3652 ], "tournament_trophies_aggregate": [ - 3692 + 3737 ], "tournaments_aggregate": [ - 3779 + 3824 ], "utility_thrown_aggregate": [ - 2809 + 2845 ], "vac_ban_count": [ - 2011 + 2015 ], "vac_banned": [ - 2011 + 2015 ], "weapon_stats_aggregate": [ - 2850 + 2886 ], "wins": [ - 2011 + 2015 ], "wins_competitive": [ - 2011 + 2015 ], "wins_duel": [ - 2011 + 2015 ], "wins_wingman": [ - 2011 + 2015 ], "__typename": [ - 70 + 74 ] }, "players_pk_columns_input": { "steam_id": [ - 169 + 173 ], "__typename": [ - 70 + 74 ] }, "players_select_column": {}, "players_set_input": { "avatar_url": [ - 70 + 74 ], "country": [ - 70 + 74 ], "created_at": [ - 3421 + 3466 ], "custom_avatar_url": [ - 70 + 74 ], "days_since_last_ban": [ 38 ], "discord_id": [ - 70 + 74 ], "faceit_elo": [ 38 ], "faceit_nickname": [ - 70 + 74 ], "faceit_player_id": [ - 70 + 74 ], "faceit_skill_level": [ 38 ], "faceit_updated_at": [ - 3421 + 3466 ], "faceit_url": [ - 70 + 74 ], "game_ban_count": [ 38 ], "language": [ - 70 + 74 ], "last_read_news_at": [ - 3421 + 3466 ], "last_sign_in_at": [ - 3421 + 3466 ], "name": [ - 70 + 74 ], "name_registered": [ 3 @@ -72070,25 +73547,25 @@ export default { 38 ], "premier_rank_updated_at": [ - 3421 + 3466 ], "profile_url": [ - 70 + 74 ], "role": [ - 785 + 789 ], "roster_image_url": [ - 70 + 74 ], "show_match_ready_modal": [ 3 ], "steam_bans_checked_at": [ - 3421 + 3466 ], "steam_id": [ - 169 + 173 ], "vac_ban_count": [ 38 @@ -72097,7 +73574,7 @@ export default { 3 ], "__typename": [ - 70 + 74 ] }, "players_stddev_fields": { @@ -72150,7 +73627,7 @@ export default { 38 ], "__typename": [ - 70 + 74 ] }, "players_stddev_pop_fields": { @@ -72203,7 +73680,7 @@ export default { 38 ], "__typename": [ - 70 + 74 ] }, "players_stddev_samp_fields": { @@ -72256,71 +73733,71 @@ export default { 38 ], "__typename": [ - 70 + 74 ] }, "players_stream_cursor_input": { "initial_value": [ - 2899 + 2935 ], "ordering": [ - 224 + 228 ], "__typename": [ - 70 + 74 ] }, "players_stream_cursor_value_input": { "avatar_url": [ - 70 + 74 ], "country": [ - 70 + 74 ], "created_at": [ - 3421 + 3466 ], "custom_avatar_url": [ - 70 + 74 ], "days_since_last_ban": [ 38 ], "discord_id": [ - 70 + 74 ], "faceit_elo": [ 38 ], "faceit_nickname": [ - 70 + 74 ], "faceit_player_id": [ - 70 + 74 ], "faceit_skill_level": [ 38 ], "faceit_updated_at": [ - 3421 + 3466 ], "faceit_url": [ - 70 + 74 ], "game_ban_count": [ 38 ], "language": [ - 70 + 74 ], "last_read_news_at": [ - 3421 + 3466 ], "last_sign_in_at": [ - 3421 + 3466 ], "name": [ - 70 + 74 ], "name_registered": [ 3 @@ -72329,25 +73806,25 @@ export default { 38 ], "premier_rank_updated_at": [ - 3421 + 3466 ], "profile_url": [ - 70 + 74 ], "role": [ - 785 + 789 ], "roster_image_url": [ - 70 + 74 ], "show_match_ready_modal": [ 3 ], "steam_bans_checked_at": [ - 3421 + 3466 ], "steam_id": [ - 169 + 173 ], "vac_ban_count": [ 38 @@ -72356,7 +73833,7 @@ export default { 3 ], "__typename": [ - 70 + 74 ] }, "players_sum_fields": { @@ -72388,7 +73865,7 @@ export default { 38 ], "steam_id": [ - 169 + 173 ], "total_matches": [ 38 @@ -72409,22 +73886,22 @@ export default { 38 ], "__typename": [ - 70 + 74 ] }, "players_update_column": {}, "players_updates": { "_inc": [ - 2884 + 2920 ], "_set": [ - 2894 + 2930 ], "where": [ - 2882 + 2918 ], "__typename": [ - 70 + 74 ] }, "players_var_pop_fields": { @@ -72477,7 +73954,7 @@ export default { 38 ], "__typename": [ - 70 + 74 ] }, "players_var_samp_fields": { @@ -72530,7 +74007,7 @@ export default { 38 ], "__typename": [ - 70 + 74 ] }, "players_variance_fields": { @@ -72583,7 +74060,7 @@ export default { 38 ], "__typename": [ - 70 + 74 ] }, "plugin_versions": { @@ -72591,35 +74068,35 @@ export default { 38 ], "published_at": [ - 3421 + 3466 ], "version": [ - 70 + 74 ], "__typename": [ - 70 + 74 ] }, "plugin_versions_aggregate": { "aggregate": [ - 2908 + 2944 ], "nodes": [ - 2906 + 2942 ], "__typename": [ - 70 + 74 ] }, "plugin_versions_aggregate_fields": { "avg": [ - 2909 + 2945 ], "count": [ 38, { "columns": [ - 2920, + 2956, "[plugin_versions_select_column!]" ], "distinct": [ @@ -72628,34 +74105,34 @@ export default { } ], "max": [ - 2914 + 2950 ], "min": [ - 2915 + 2951 ], "stddev": [ - 2922 + 2958 ], "stddev_pop": [ - 2923 + 2959 ], "stddev_samp": [ - 2924 + 2960 ], "sum": [ - 2927 + 2963 ], "var_pop": [ - 2930 + 2966 ], "var_samp": [ - 2931 + 2967 ], "variance": [ - 2932 + 2968 ], "__typename": [ - 70 + 74 ] }, "plugin_versions_avg_fields": { @@ -72663,30 +74140,30 @@ export default { 29 ], "__typename": [ - 70 + 74 ] }, "plugin_versions_bool_exp": { "_and": [ - 2910 + 2946 ], "_not": [ - 2910 + 2946 ], "_or": [ - 2910 + 2946 ], "min_game_build_id": [ 39 ], "published_at": [ - 3422 + 3467 ], "version": [ - 72 + 76 ], "__typename": [ - 70 + 74 ] }, "plugin_versions_constraint": {}, @@ -72695,7 +74172,7 @@ export default { 38 ], "__typename": [ - 70 + 74 ] }, "plugin_versions_insert_input": { @@ -72703,13 +74180,13 @@ export default { 38 ], "published_at": [ - 3421 + 3466 ], "version": [ - 70 + 74 ], "__typename": [ - 70 + 74 ] }, "plugin_versions_max_fields": { @@ -72717,13 +74194,13 @@ export default { 38 ], "published_at": [ - 3421 + 3466 ], "version": [ - 70 + 74 ], "__typename": [ - 70 + 74 ] }, "plugin_versions_min_fields": { @@ -72731,13 +74208,13 @@ export default { 38 ], "published_at": [ - 3421 + 3466 ], "version": [ - 70 + 74 ], "__typename": [ - 70 + 74 ] }, "plugin_versions_mutation_response": { @@ -72745,46 +74222,46 @@ export default { 38 ], "returning": [ - 2906 + 2942 ], "__typename": [ - 70 + 74 ] }, "plugin_versions_on_conflict": { "constraint": [ - 2911 + 2947 ], "update_columns": [ - 2928 + 2964 ], "where": [ - 2910 + 2946 ], "__typename": [ - 70 + 74 ] }, "plugin_versions_order_by": { "min_game_build_id": [ - 2011 + 2015 ], "published_at": [ - 2011 + 2015 ], "version": [ - 2011 + 2015 ], "__typename": [ - 70 + 74 ] }, "plugin_versions_pk_columns_input": { "version": [ - 70 + 74 ], "__typename": [ - 70 + 74 ] }, "plugin_versions_select_column": {}, @@ -72793,13 +74270,13 @@ export default { 38 ], "published_at": [ - 3421 + 3466 ], "version": [ - 70 + 74 ], "__typename": [ - 70 + 74 ] }, "plugin_versions_stddev_fields": { @@ -72807,7 +74284,7 @@ export default { 29 ], "__typename": [ - 70 + 74 ] }, "plugin_versions_stddev_pop_fields": { @@ -72815,7 +74292,7 @@ export default { 29 ], "__typename": [ - 70 + 74 ] }, "plugin_versions_stddev_samp_fields": { @@ -72823,18 +74300,18 @@ export default { 29 ], "__typename": [ - 70 + 74 ] }, "plugin_versions_stream_cursor_input": { "initial_value": [ - 2926 + 2962 ], "ordering": [ - 224 + 228 ], "__typename": [ - 70 + 74 ] }, "plugin_versions_stream_cursor_value_input": { @@ -72842,13 +74319,13 @@ export default { 38 ], "published_at": [ - 3421 + 3466 ], "version": [ - 70 + 74 ], "__typename": [ - 70 + 74 ] }, "plugin_versions_sum_fields": { @@ -72856,22 +74333,22 @@ export default { 38 ], "__typename": [ - 70 + 74 ] }, "plugin_versions_update_column": {}, "plugin_versions_updates": { "_inc": [ - 2912 + 2948 ], "_set": [ - 2921 + 2957 ], "where": [ - 2910 + 2946 ], "__typename": [ - 70 + 74 ] }, "plugin_versions_var_pop_fields": { @@ -72879,7 +74356,7 @@ export default { 29 ], "__typename": [ - 70 + 74 ] }, "plugin_versions_var_samp_fields": { @@ -72887,7 +74364,7 @@ export default { 29 ], "__typename": [ - 70 + 74 ] }, "plugin_versions_variance_fields": { @@ -72895,15 +74372,15 @@ export default { 29 ], "__typename": [ - 70 + 74 ] }, "recalculate_tournament_trophies_args": { "_tournament_id": [ - 3818 + 3863 ], "__typename": [ - 70 + 74 ] }, "server_regions": { @@ -72911,13 +74388,13 @@ export default { 38 ], "description": [ - 70 + 74 ], "game_server_nodes": [ - 1113, + 1117, { "distinct_on": [ - 1142, + 1146, "[game_server_nodes_select_column!]" ], "limit": [ @@ -72927,19 +74404,19 @@ export default { 38 ], "order_by": [ - 1139, + 1143, "[game_server_nodes_order_by!]" ], "where": [ - 1125 + 1129 ] } ], "game_server_nodes_aggregate": [ - 1114, + 1118, { "distinct_on": [ - 1142, + 1146, "[game_server_nodes_select_column!]" ], "limit": [ @@ -72949,11 +74426,11 @@ export default { 38 ], "order_by": [ - 1139, + 1143, "[game_server_nodes_order_by!]" ], "where": [ - 1125 + 1129 ] } ], @@ -72964,7 +74441,7 @@ export default { 3 ], "status": [ - 70 + 74 ], "steam_relay": [ 3 @@ -72973,32 +74450,32 @@ export default { 38 ], "value": [ - 70 + 74 ], "__typename": [ - 70 + 74 ] }, "server_regions_aggregate": { "aggregate": [ - 2936 + 2972 ], "nodes": [ - 2934 + 2970 ], "__typename": [ - 70 + 74 ] }, "server_regions_aggregate_fields": { "avg": [ - 2937 + 2973 ], "count": [ 38, { "columns": [ - 2948, + 2984, "[server_regions_select_column!]" ], "distinct": [ @@ -73007,34 +74484,34 @@ export default { } ], "max": [ - 2941 + 2977 ], "min": [ - 2942 + 2978 ], "stddev": [ - 2950 + 2986 ], "stddev_pop": [ - 2951 + 2987 ], "stddev_samp": [ - 2952 + 2988 ], "sum": [ - 2955 + 2991 ], "var_pop": [ - 2958 + 2994 ], "var_samp": [ - 2959 + 2995 ], "variance": [ - 2960 + 2996 ], "__typename": [ - 70 + 74 ] }, "server_regions_avg_fields": { @@ -73045,30 +74522,30 @@ export default { 38 ], "__typename": [ - 70 + 74 ] }, "server_regions_bool_exp": { "_and": [ - 2938 + 2974 ], "_not": [ - 2938 + 2974 ], "_or": [ - 2938 + 2974 ], "available_server_count": [ 39 ], "description": [ - 72 + 76 ], "game_server_nodes": [ - 1125 + 1129 ], "game_server_nodes_aggregate": [ - 1115 + 1119 ], "has_node": [ 4 @@ -73077,7 +74554,7 @@ export default { 4 ], "status": [ - 72 + 76 ], "steam_relay": [ 4 @@ -73086,19 +74563,19 @@ export default { 39 ], "value": [ - 72 + 76 ], "__typename": [ - 70 + 74 ] }, "server_regions_constraint": {}, "server_regions_insert_input": { "description": [ - 70 + 74 ], "game_server_nodes": [ - 1122 + 1126 ], "is_lan": [ 3 @@ -73107,10 +74584,10 @@ export default { 3 ], "value": [ - 70 + 74 ], "__typename": [ - 70 + 74 ] }, "server_regions_max_fields": { @@ -73118,19 +74595,19 @@ export default { 38 ], "description": [ - 70 + 74 ], "status": [ - 70 + 74 ], "total_server_count": [ 38 ], "value": [ - 70 + 74 ], "__typename": [ - 70 + 74 ] }, "server_regions_min_fields": { @@ -73138,19 +74615,19 @@ export default { 38 ], "description": [ - 70 + 74 ], "status": [ - 70 + 74 ], "total_server_count": [ 38 ], "value": [ - 70 + 74 ], "__typename": [ - 70 + 74 ] }, "server_regions_mutation_response": { @@ -73158,81 +74635,81 @@ export default { 38 ], "returning": [ - 2934 + 2970 ], "__typename": [ - 70 + 74 ] }, "server_regions_obj_rel_insert_input": { "data": [ - 2940 + 2976 ], "on_conflict": [ - 2945 + 2981 ], "__typename": [ - 70 + 74 ] }, "server_regions_on_conflict": { "constraint": [ - 2939 + 2975 ], "update_columns": [ - 2956 + 2992 ], "where": [ - 2938 + 2974 ], "__typename": [ - 70 + 74 ] }, "server_regions_order_by": { "available_server_count": [ - 2011 + 2015 ], "description": [ - 2011 + 2015 ], "game_server_nodes_aggregate": [ - 1120 + 1124 ], "has_node": [ - 2011 + 2015 ], "is_lan": [ - 2011 + 2015 ], "status": [ - 2011 + 2015 ], "steam_relay": [ - 2011 + 2015 ], "total_server_count": [ - 2011 + 2015 ], "value": [ - 2011 + 2015 ], "__typename": [ - 70 + 74 ] }, "server_regions_pk_columns_input": { "value": [ - 70 + 74 ], "__typename": [ - 70 + 74 ] }, "server_regions_select_column": {}, "server_regions_set_input": { "description": [ - 70 + 74 ], "is_lan": [ 3 @@ -73241,10 +74718,10 @@ export default { 3 ], "value": [ - 70 + 74 ], "__typename": [ - 70 + 74 ] }, "server_regions_stddev_fields": { @@ -73255,7 +74732,7 @@ export default { 38 ], "__typename": [ - 70 + 74 ] }, "server_regions_stddev_pop_fields": { @@ -73266,7 +74743,7 @@ export default { 38 ], "__typename": [ - 70 + 74 ] }, "server_regions_stddev_samp_fields": { @@ -73277,23 +74754,23 @@ export default { 38 ], "__typename": [ - 70 + 74 ] }, "server_regions_stream_cursor_input": { "initial_value": [ - 2954 + 2990 ], "ordering": [ - 224 + 228 ], "__typename": [ - 70 + 74 ] }, "server_regions_stream_cursor_value_input": { "description": [ - 70 + 74 ], "is_lan": [ 3 @@ -73302,10 +74779,10 @@ export default { 3 ], "value": [ - 70 + 74 ], "__typename": [ - 70 + 74 ] }, "server_regions_sum_fields": { @@ -73316,19 +74793,19 @@ export default { 38 ], "__typename": [ - 70 + 74 ] }, "server_regions_update_column": {}, "server_regions_updates": { "_set": [ - 2949 + 2985 ], "where": [ - 2938 + 2974 ], "__typename": [ - 70 + 74 ] }, "server_regions_var_pop_fields": { @@ -73339,7 +74816,7 @@ export default { 38 ], "__typename": [ - 70 + 74 ] }, "server_regions_var_samp_fields": { @@ -73350,7 +74827,7 @@ export default { 38 ], "__typename": [ - 70 + 74 ] }, "server_regions_variance_fields": { @@ -73361,63 +74838,63 @@ export default { 38 ], "__typename": [ - 70 + 74 ] }, "servers": { "api_password": [ - 3818 + 3863 ], "boot_status": [ - 70 + 74 ], "boot_status_detail": [ - 70 + 74 ], "connect_password": [ - 70 + 74 ], "connected": [ 3 ], "connection_link": [ - 70 + 74 ], "connection_string": [ - 70 + 74 ], "current_match": [ - 1826 + 1830 ], "enabled": [ 3 ], "game": [ - 70 + 74 ], "game_server_node": [ - 1113 + 1117 ], "game_server_node_id": [ - 70 + 74 ], "host": [ - 70 + 74 ], "id": [ - 3818 + 3863 ], "is_dedicated": [ 3 ], "label": [ - 70 + 74 ], "matches": [ - 1826, + 1830, { "distinct_on": [ - 1848, + 1852, "[matches_select_column!]" ], "limit": [ @@ -73427,19 +74904,19 @@ export default { 38 ], "order_by": [ - 1846, + 1850, "[matches_order_by!]" ], "where": [ - 1835 + 1839 ] } ], "matches_aggregate": [ - 1827, + 1831, { "distinct_on": [ - 1848, + 1852, "[matches_select_column!]" ], "limit": [ @@ -73449,11 +74926,11 @@ export default { 38 ], "order_by": [ - 1846, + 1850, "[matches_order_by!]" ], "where": [ - 1835 + 1839 ] } ], @@ -73461,130 +74938,130 @@ export default { 38 ], "offline_at": [ - 3421 + 3466 ], "plugin_version": [ - 70 + 74 ], "port": [ 38 ], "rcon_password": [ - 172 + 176 ], "rcon_status": [ 3 ], "region": [ - 70 + 74 ], "reserved_by_match_id": [ - 3818 + 3863 ], "server_region": [ - 2934 + 2970 ], "steam_relay": [ - 70 + 74 ], "tv_port": [ 38 ], "type": [ - 866 + 870 ], "updated_at": [ - 3421 + 3466 ], "__typename": [ - 70 + 74 ] }, "servers_aggregate": { "aggregate": [ - 2967 + 3003 ], "nodes": [ - 2961 + 2997 ], "__typename": [ - 70 + 74 ] }, "servers_aggregate_bool_exp": { "bool_and": [ - 2964 + 3000 ], "bool_or": [ - 2965 + 3001 ], "count": [ - 2966 + 3002 ], "__typename": [ - 70 + 74 ] }, "servers_aggregate_bool_exp_bool_and": { "arguments": [ - 2986 + 3022 ], "distinct": [ 3 ], "filter": [ - 2972 + 3008 ], "predicate": [ 4 ], "__typename": [ - 70 + 74 ] }, "servers_aggregate_bool_exp_bool_or": { "arguments": [ - 2987 + 3023 ], "distinct": [ 3 ], "filter": [ - 2972 + 3008 ], "predicate": [ 4 ], "__typename": [ - 70 + 74 ] }, "servers_aggregate_bool_exp_count": { "arguments": [ - 2985 + 3021 ], "distinct": [ 3 ], "filter": [ - 2972 + 3008 ], "predicate": [ 39 ], "__typename": [ - 70 + 74 ] }, "servers_aggregate_fields": { "avg": [ - 2970 + 3006 ], "count": [ 38, { "columns": [ - 2985, + 3021, "[servers_select_column!]" ], "distinct": [ @@ -73593,83 +75070,83 @@ export default { } ], "max": [ - 2976 + 3012 ], "min": [ - 2978 + 3014 ], "stddev": [ - 2989 + 3025 ], "stddev_pop": [ - 2991 + 3027 ], "stddev_samp": [ - 2993 + 3029 ], "sum": [ - 2997 + 3033 ], "var_pop": [ - 3001 + 3037 ], "var_samp": [ - 3003 + 3039 ], "variance": [ - 3005 + 3041 ], "__typename": [ - 70 + 74 ] }, "servers_aggregate_order_by": { "avg": [ - 2971 + 3007 ], "count": [ - 2011 + 2015 ], "max": [ - 2977 + 3013 ], "min": [ - 2979 + 3015 ], "stddev": [ - 2990 + 3026 ], "stddev_pop": [ - 2992 + 3028 ], "stddev_samp": [ - 2994 + 3030 ], "sum": [ - 2998 + 3034 ], "var_pop": [ - 3002 + 3038 ], "var_samp": [ - 3004 + 3040 ], "variance": [ - 3006 + 3042 ], "__typename": [ - 70 + 74 ] }, "servers_arr_rel_insert_input": { "data": [ - 2975 + 3011 ], "on_conflict": [ - 2982 + 3018 ], "__typename": [ - 70 + 74 ] }, "servers_avg_fields": { @@ -73683,128 +75160,128 @@ export default { 29 ], "__typename": [ - 70 + 74 ] }, "servers_avg_order_by": { "max_players": [ - 2011 + 2015 ], "port": [ - 2011 + 2015 ], "tv_port": [ - 2011 + 2015 ], "__typename": [ - 70 + 74 ] }, "servers_bool_exp": { "_and": [ - 2972 + 3008 ], "_not": [ - 2972 + 3008 ], "_or": [ - 2972 + 3008 ], "api_password": [ - 3820 + 3865 ], "boot_status": [ - 72 + 76 ], "boot_status_detail": [ - 72 + 76 ], "connect_password": [ - 72 + 76 ], "connected": [ 4 ], "connection_link": [ - 72 + 76 ], "connection_string": [ - 72 + 76 ], "current_match": [ - 1835 + 1839 ], "enabled": [ 4 ], "game": [ - 72 + 76 ], "game_server_node": [ - 1125 + 1129 ], "game_server_node_id": [ - 72 + 76 ], "host": [ - 72 + 76 ], "id": [ - 3820 + 3865 ], "is_dedicated": [ 4 ], "label": [ - 72 + 76 ], "matches": [ - 1835 + 1839 ], "matches_aggregate": [ - 1828 + 1832 ], "max_players": [ 39 ], "offline_at": [ - 3422 + 3467 ], "plugin_version": [ - 72 + 76 ], "port": [ 39 ], "rcon_password": [ - 173 + 177 ], "rcon_status": [ 4 ], "region": [ - 72 + 76 ], "reserved_by_match_id": [ - 3820 + 3865 ], "server_region": [ - 2938 + 2974 ], "steam_relay": [ - 72 + 76 ], "tv_port": [ 39 ], "type": [ - 867 + 871 ], "updated_at": [ - 3422 + 3467 ], "__typename": [ - 70 + 74 ] }, "servers_constraint": {}, @@ -73819,344 +75296,344 @@ export default { 38 ], "__typename": [ - 70 + 74 ] }, "servers_insert_input": { "api_password": [ - 3818 + 3863 ], "boot_status": [ - 70 + 74 ], "boot_status_detail": [ - 70 + 74 ], "connect_password": [ - 70 + 74 ], "connected": [ 3 ], "current_match": [ - 1844 + 1848 ], "enabled": [ 3 ], "game": [ - 70 + 74 ], "game_server_node": [ - 1137 + 1141 ], "game_server_node_id": [ - 70 + 74 ], "host": [ - 70 + 74 ], "id": [ - 3818 + 3863 ], "is_dedicated": [ 3 ], "label": [ - 70 + 74 ], "matches": [ - 1832 + 1836 ], "max_players": [ 38 ], "offline_at": [ - 3421 + 3466 ], "plugin_version": [ - 70 + 74 ], "port": [ 38 ], "rcon_password": [ - 172 + 176 ], "rcon_status": [ 3 ], "region": [ - 70 + 74 ], "reserved_by_match_id": [ - 3818 + 3863 ], "server_region": [ - 2944 + 2980 ], "steam_relay": [ - 70 + 74 ], "tv_port": [ 38 ], "type": [ - 866 + 870 ], "updated_at": [ - 3421 + 3466 ], "__typename": [ - 70 + 74 ] }, "servers_max_fields": { "api_password": [ - 3818 + 3863 ], "boot_status": [ - 70 + 74 ], "boot_status_detail": [ - 70 + 74 ], "connect_password": [ - 70 + 74 ], "connection_link": [ - 70 + 74 ], "connection_string": [ - 70 + 74 ], "game": [ - 70 + 74 ], "game_server_node_id": [ - 70 + 74 ], "host": [ - 70 + 74 ], "id": [ - 3818 + 3863 ], "label": [ - 70 + 74 ], "max_players": [ 38 ], "offline_at": [ - 3421 + 3466 ], "plugin_version": [ - 70 + 74 ], "port": [ 38 ], "region": [ - 70 + 74 ], "reserved_by_match_id": [ - 3818 + 3863 ], "steam_relay": [ - 70 + 74 ], "tv_port": [ 38 ], "updated_at": [ - 3421 + 3466 ], "__typename": [ - 70 + 74 ] }, "servers_max_order_by": { "api_password": [ - 2011 + 2015 ], "boot_status": [ - 2011 + 2015 ], "boot_status_detail": [ - 2011 + 2015 ], "connect_password": [ - 2011 + 2015 ], "game": [ - 2011 + 2015 ], "game_server_node_id": [ - 2011 + 2015 ], "host": [ - 2011 + 2015 ], "id": [ - 2011 + 2015 ], "label": [ - 2011 + 2015 ], "max_players": [ - 2011 + 2015 ], "offline_at": [ - 2011 + 2015 ], "plugin_version": [ - 2011 + 2015 ], "port": [ - 2011 + 2015 ], "region": [ - 2011 + 2015 ], "reserved_by_match_id": [ - 2011 + 2015 ], "steam_relay": [ - 2011 + 2015 ], "tv_port": [ - 2011 + 2015 ], "updated_at": [ - 2011 + 2015 ], "__typename": [ - 70 + 74 ] }, "servers_min_fields": { "api_password": [ - 3818 + 3863 ], "boot_status": [ - 70 + 74 ], "boot_status_detail": [ - 70 + 74 ], "connect_password": [ - 70 + 74 ], "connection_link": [ - 70 + 74 ], "connection_string": [ - 70 + 74 ], "game": [ - 70 + 74 ], "game_server_node_id": [ - 70 + 74 ], "host": [ - 70 + 74 ], "id": [ - 3818 + 3863 ], "label": [ - 70 + 74 ], "max_players": [ 38 ], "offline_at": [ - 3421 + 3466 ], "plugin_version": [ - 70 + 74 ], "port": [ 38 ], "region": [ - 70 + 74 ], "reserved_by_match_id": [ - 3818 + 3863 ], "steam_relay": [ - 70 + 74 ], "tv_port": [ 38 ], "updated_at": [ - 3421 + 3466 ], "__typename": [ - 70 + 74 ] }, "servers_min_order_by": { "api_password": [ - 2011 + 2015 ], "boot_status": [ - 2011 + 2015 ], "boot_status_detail": [ - 2011 + 2015 ], "connect_password": [ - 2011 + 2015 ], "game": [ - 2011 + 2015 ], "game_server_node_id": [ - 2011 + 2015 ], "host": [ - 2011 + 2015 ], "id": [ - 2011 + 2015 ], "label": [ - 2011 + 2015 ], "max_players": [ - 2011 + 2015 ], "offline_at": [ - 2011 + 2015 ], "plugin_version": [ - 2011 + 2015 ], "port": [ - 2011 + 2015 ], "region": [ - 2011 + 2015 ], "reserved_by_match_id": [ - 2011 + 2015 ], "steam_relay": [ - 2011 + 2015 ], "tv_port": [ - 2011 + 2015 ], "updated_at": [ - 2011 + 2015 ], "__typename": [ - 70 + 74 ] }, "servers_mutation_response": { @@ -74164,138 +75641,138 @@ export default { 38 ], "returning": [ - 2961 + 2997 ], "__typename": [ - 70 + 74 ] }, "servers_obj_rel_insert_input": { "data": [ - 2975 + 3011 ], "on_conflict": [ - 2982 + 3018 ], "__typename": [ - 70 + 74 ] }, "servers_on_conflict": { "constraint": [ - 2973 + 3009 ], "update_columns": [ - 2999 + 3035 ], "where": [ - 2972 + 3008 ], "__typename": [ - 70 + 74 ] }, "servers_order_by": { "api_password": [ - 2011 + 2015 ], "boot_status": [ - 2011 + 2015 ], "boot_status_detail": [ - 2011 + 2015 ], "connect_password": [ - 2011 + 2015 ], "connected": [ - 2011 + 2015 ], "connection_link": [ - 2011 + 2015 ], "connection_string": [ - 2011 + 2015 ], "current_match": [ - 1846 + 1850 ], "enabled": [ - 2011 + 2015 ], "game": [ - 2011 + 2015 ], "game_server_node": [ - 1139 + 1143 ], "game_server_node_id": [ - 2011 + 2015 ], "host": [ - 2011 + 2015 ], "id": [ - 2011 + 2015 ], "is_dedicated": [ - 2011 + 2015 ], "label": [ - 2011 + 2015 ], "matches_aggregate": [ - 1831 + 1835 ], "max_players": [ - 2011 + 2015 ], "offline_at": [ - 2011 + 2015 ], "plugin_version": [ - 2011 + 2015 ], "port": [ - 2011 + 2015 ], "rcon_password": [ - 2011 + 2015 ], "rcon_status": [ - 2011 + 2015 ], "region": [ - 2011 + 2015 ], "reserved_by_match_id": [ - 2011 + 2015 ], "server_region": [ - 2946 + 2982 ], "steam_relay": [ - 2011 + 2015 ], "tv_port": [ - 2011 + 2015 ], "type": [ - 2011 + 2015 ], "updated_at": [ - 2011 + 2015 ], "__typename": [ - 70 + 74 ] }, "servers_pk_columns_input": { "id": [ - 3818 + 3863 ], "__typename": [ - 70 + 74 ] }, "servers_select_column": {}, @@ -74303,16 +75780,16 @@ export default { "servers_select_column_servers_aggregate_bool_exp_bool_or_arguments_columns": {}, "servers_set_input": { "api_password": [ - 3818 + 3863 ], "boot_status": [ - 70 + 74 ], "boot_status_detail": [ - 70 + 74 ], "connect_password": [ - 70 + 74 ], "connected": [ 3 @@ -74321,61 +75798,61 @@ export default { 3 ], "game": [ - 70 + 74 ], "game_server_node_id": [ - 70 + 74 ], "host": [ - 70 + 74 ], "id": [ - 3818 + 3863 ], "is_dedicated": [ 3 ], "label": [ - 70 + 74 ], "max_players": [ 38 ], "offline_at": [ - 3421 + 3466 ], "plugin_version": [ - 70 + 74 ], "port": [ 38 ], "rcon_password": [ - 172 + 176 ], "rcon_status": [ 3 ], "region": [ - 70 + 74 ], "reserved_by_match_id": [ - 3818 + 3863 ], "steam_relay": [ - 70 + 74 ], "tv_port": [ 38 ], "type": [ - 866 + 870 ], "updated_at": [ - 3421 + 3466 ], "__typename": [ - 70 + 74 ] }, "servers_stddev_fields": { @@ -74389,21 +75866,21 @@ export default { 29 ], "__typename": [ - 70 + 74 ] }, "servers_stddev_order_by": { "max_players": [ - 2011 + 2015 ], "port": [ - 2011 + 2015 ], "tv_port": [ - 2011 + 2015 ], "__typename": [ - 70 + 74 ] }, "servers_stddev_pop_fields": { @@ -74417,21 +75894,21 @@ export default { 29 ], "__typename": [ - 70 + 74 ] }, "servers_stddev_pop_order_by": { "max_players": [ - 2011 + 2015 ], "port": [ - 2011 + 2015 ], "tv_port": [ - 2011 + 2015 ], "__typename": [ - 70 + 74 ] }, "servers_stddev_samp_fields": { @@ -74445,46 +75922,46 @@ export default { 29 ], "__typename": [ - 70 + 74 ] }, "servers_stddev_samp_order_by": { "max_players": [ - 2011 + 2015 ], "port": [ - 2011 + 2015 ], "tv_port": [ - 2011 + 2015 ], "__typename": [ - 70 + 74 ] }, "servers_stream_cursor_input": { "initial_value": [ - 2996 + 3032 ], "ordering": [ - 224 + 228 ], "__typename": [ - 70 + 74 ] }, "servers_stream_cursor_value_input": { "api_password": [ - 3818 + 3863 ], "boot_status": [ - 70 + 74 ], "boot_status_detail": [ - 70 + 74 ], "connect_password": [ - 70 + 74 ], "connected": [ 3 @@ -74493,61 +75970,61 @@ export default { 3 ], "game": [ - 70 + 74 ], "game_server_node_id": [ - 70 + 74 ], "host": [ - 70 + 74 ], "id": [ - 3818 + 3863 ], "is_dedicated": [ 3 ], "label": [ - 70 + 74 ], "max_players": [ 38 ], "offline_at": [ - 3421 + 3466 ], "plugin_version": [ - 70 + 74 ], "port": [ 38 ], "rcon_password": [ - 172 + 176 ], "rcon_status": [ 3 ], "region": [ - 70 + 74 ], "reserved_by_match_id": [ - 3818 + 3863 ], "steam_relay": [ - 70 + 74 ], "tv_port": [ 38 ], "type": [ - 866 + 870 ], "updated_at": [ - 3421 + 3466 ], "__typename": [ - 70 + 74 ] }, "servers_sum_fields": { @@ -74561,36 +76038,36 @@ export default { 38 ], "__typename": [ - 70 + 74 ] }, "servers_sum_order_by": { "max_players": [ - 2011 + 2015 ], "port": [ - 2011 + 2015 ], "tv_port": [ - 2011 + 2015 ], "__typename": [ - 70 + 74 ] }, "servers_update_column": {}, "servers_updates": { "_inc": [ - 2974 + 3010 ], "_set": [ - 2988 + 3024 ], "where": [ - 2972 + 3008 ], "__typename": [ - 70 + 74 ] }, "servers_var_pop_fields": { @@ -74604,21 +76081,21 @@ export default { 29 ], "__typename": [ - 70 + 74 ] }, "servers_var_pop_order_by": { "max_players": [ - 2011 + 2015 ], "port": [ - 2011 + 2015 ], "tv_port": [ - 2011 + 2015 ], "__typename": [ - 70 + 74 ] }, "servers_var_samp_fields": { @@ -74632,21 +76109,21 @@ export default { 29 ], "__typename": [ - 70 + 74 ] }, "servers_var_samp_order_by": { "max_players": [ - 2011 + 2015 ], "port": [ - 2011 + 2015 ], "tv_port": [ - 2011 + 2015 ], "__typename": [ - 70 + 74 ] }, "servers_variance_fields": { @@ -74660,43 +76137,43 @@ export default { 29 ], "__typename": [ - 70 + 74 ] }, "servers_variance_order_by": { "max_players": [ - 2011 + 2015 ], "port": [ - 2011 + 2015 ], "tv_port": [ - 2011 + 2015 ], "__typename": [ - 70 + 74 ] }, "settings": { "name": [ - 70 + 74 ], "value": [ - 70 + 74 ], "__typename": [ - 70 + 74 ] }, "settings_aggregate": { "aggregate": [ - 3009 + 3045 ], "nodes": [ - 3007 + 3043 ], "__typename": [ - 70 + 74 ] }, "settings_aggregate_fields": { @@ -74704,7 +76181,7 @@ export default { 38, { "columns": [ - 3019, + 3055, "[settings_select_column!]" ], "distinct": [ @@ -74713,67 +76190,67 @@ export default { } ], "max": [ - 3013 + 3049 ], "min": [ - 3014 + 3050 ], "__typename": [ - 70 + 74 ] }, "settings_bool_exp": { "_and": [ - 3010 + 3046 ], "_not": [ - 3010 + 3046 ], "_or": [ - 3010 + 3046 ], "name": [ - 72 + 76 ], "value": [ - 72 + 76 ], "__typename": [ - 70 + 74 ] }, "settings_constraint": {}, "settings_insert_input": { "name": [ - 70 + 74 ], "value": [ - 70 + 74 ], "__typename": [ - 70 + 74 ] }, "settings_max_fields": { "name": [ - 70 + 74 ], "value": [ - 70 + 74 ], "__typename": [ - 70 + 74 ] }, "settings_min_fields": { "name": [ - 70 + 74 ], "value": [ - 70 + 74 ], "__typename": [ - 70 + 74 ] }, "settings_mutation_response": { @@ -74781,154 +76258,154 @@ export default { 38 ], "returning": [ - 3007 + 3043 ], "__typename": [ - 70 + 74 ] }, "settings_on_conflict": { "constraint": [ - 3011 + 3047 ], "update_columns": [ - 3023 + 3059 ], "where": [ - 3010 + 3046 ], "__typename": [ - 70 + 74 ] }, "settings_order_by": { "name": [ - 2011 + 2015 ], "value": [ - 2011 + 2015 ], "__typename": [ - 70 + 74 ] }, "settings_pk_columns_input": { "name": [ - 70 + 74 ], "__typename": [ - 70 + 74 ] }, "settings_select_column": {}, "settings_set_input": { "name": [ - 70 + 74 ], "value": [ - 70 + 74 ], "__typename": [ - 70 + 74 ] }, "settings_stream_cursor_input": { "initial_value": [ - 3022 + 3058 ], "ordering": [ - 224 + 228 ], "__typename": [ - 70 + 74 ] }, "settings_stream_cursor_value_input": { "name": [ - 70 + 74 ], "value": [ - 70 + 74 ], "__typename": [ - 70 + 74 ] }, "settings_update_column": {}, "settings_updates": { "_set": [ - 3020 + 3056 ], "where": [ - 3010 + 3046 ], "__typename": [ - 70 + 74 ] }, "steam_account_claims": { "created_at": [ - 3421 + 3466 ], "id": [ - 3818 + 3863 ], "k8s_job_name": [ - 70 + 74 ], "node": [ - 1113 + 1117 ], "node_id": [ - 70 + 74 ], "purpose": [ - 70 + 74 ], "steam_account": [ - 3049 + 3085 ], "steam_account_id": [ - 3818 + 3863 ], "__typename": [ - 70 + 74 ] }, "steam_account_claims_aggregate": { "aggregate": [ - 3029 + 3065 ], "nodes": [ - 3025 + 3061 ], "__typename": [ - 70 + 74 ] }, "steam_account_claims_aggregate_bool_exp": { "count": [ - 3028 + 3064 ], "__typename": [ - 70 + 74 ] }, "steam_account_claims_aggregate_bool_exp_count": { "arguments": [ - 3043 + 3079 ], "distinct": [ 3 ], "filter": [ - 3032 + 3068 ], "predicate": [ 39 ], "__typename": [ - 70 + 74 ] }, "steam_account_claims_aggregate_fields": { @@ -74936,7 +76413,7 @@ export default { 38, { "columns": [ - 3043, + 3079, "[steam_account_claims_select_column!]" ], "distinct": [ @@ -74945,198 +76422,198 @@ export default { } ], "max": [ - 3035 + 3071 ], "min": [ - 3037 + 3073 ], "__typename": [ - 70 + 74 ] }, "steam_account_claims_aggregate_order_by": { "count": [ - 2011 + 2015 ], "max": [ - 3036 + 3072 ], "min": [ - 3038 + 3074 ], "__typename": [ - 70 + 74 ] }, "steam_account_claims_arr_rel_insert_input": { "data": [ - 3034 + 3070 ], "on_conflict": [ - 3040 + 3076 ], "__typename": [ - 70 + 74 ] }, "steam_account_claims_bool_exp": { "_and": [ - 3032 + 3068 ], "_not": [ - 3032 + 3068 ], "_or": [ - 3032 + 3068 ], "created_at": [ - 3422 + 3467 ], "id": [ - 3820 + 3865 ], "k8s_job_name": [ - 72 + 76 ], "node": [ - 1125 + 1129 ], "node_id": [ - 72 + 76 ], "purpose": [ - 72 + 76 ], "steam_account": [ - 3052 + 3089 ], "steam_account_id": [ - 3820 + 3865 ], "__typename": [ - 70 + 74 ] }, "steam_account_claims_constraint": {}, "steam_account_claims_insert_input": { "created_at": [ - 3421 + 3466 ], "id": [ - 3818 + 3863 ], "k8s_job_name": [ - 70 + 74 ], "node": [ - 1137 + 1141 ], "node_id": [ - 70 + 74 ], "purpose": [ - 70 + 74 ], "steam_account": [ - 3058 + 3096 ], "steam_account_id": [ - 3818 + 3863 ], "__typename": [ - 70 + 74 ] }, "steam_account_claims_max_fields": { "created_at": [ - 3421 + 3466 ], "id": [ - 3818 + 3863 ], "k8s_job_name": [ - 70 + 74 ], "node_id": [ - 70 + 74 ], "purpose": [ - 70 + 74 ], "steam_account_id": [ - 3818 + 3863 ], "__typename": [ - 70 + 74 ] }, "steam_account_claims_max_order_by": { "created_at": [ - 2011 + 2015 ], "id": [ - 2011 + 2015 ], "k8s_job_name": [ - 2011 + 2015 ], "node_id": [ - 2011 + 2015 ], "purpose": [ - 2011 + 2015 ], "steam_account_id": [ - 2011 + 2015 ], "__typename": [ - 70 + 74 ] }, "steam_account_claims_min_fields": { "created_at": [ - 3421 + 3466 ], "id": [ - 3818 + 3863 ], "k8s_job_name": [ - 70 + 74 ], "node_id": [ - 70 + 74 ], "purpose": [ - 70 + 74 ], "steam_account_id": [ - 3818 + 3863 ], "__typename": [ - 70 + 74 ] }, "steam_account_claims_min_order_by": { "created_at": [ - 2011 + 2015 ], "id": [ - 2011 + 2015 ], "k8s_job_name": [ - 2011 + 2015 ], "node_id": [ - 2011 + 2015 ], "purpose": [ - 2011 + 2015 ], "steam_account_id": [ - 2011 + 2015 ], "__typename": [ - 70 + 74 ] }, "steam_account_claims_mutation_response": { @@ -75144,139 +76621,139 @@ export default { 38 ], "returning": [ - 3025 + 3061 ], "__typename": [ - 70 + 74 ] }, "steam_account_claims_on_conflict": { "constraint": [ - 3033 + 3069 ], "update_columns": [ - 3047 + 3083 ], "where": [ - 3032 + 3068 ], "__typename": [ - 70 + 74 ] }, "steam_account_claims_order_by": { "created_at": [ - 2011 + 2015 ], "id": [ - 2011 + 2015 ], "k8s_job_name": [ - 2011 + 2015 ], "node": [ - 1139 + 1143 ], "node_id": [ - 2011 + 2015 ], "purpose": [ - 2011 + 2015 ], "steam_account": [ - 3060 + 3098 ], "steam_account_id": [ - 2011 + 2015 ], "__typename": [ - 70 + 74 ] }, "steam_account_claims_pk_columns_input": { "id": [ - 3818 + 3863 ], "__typename": [ - 70 + 74 ] }, "steam_account_claims_select_column": {}, "steam_account_claims_set_input": { "created_at": [ - 3421 + 3466 ], "id": [ - 3818 + 3863 ], "k8s_job_name": [ - 70 + 74 ], "node_id": [ - 70 + 74 ], "purpose": [ - 70 + 74 ], "steam_account_id": [ - 3818 + 3863 ], "__typename": [ - 70 + 74 ] }, "steam_account_claims_stream_cursor_input": { "initial_value": [ - 3046 + 3082 ], "ordering": [ - 224 + 228 ], "__typename": [ - 70 + 74 ] }, "steam_account_claims_stream_cursor_value_input": { "created_at": [ - 3421 + 3466 ], "id": [ - 3818 + 3863 ], "k8s_job_name": [ - 70 + 74 ], "node_id": [ - 70 + 74 ], "purpose": [ - 70 + 74 ], "steam_account_id": [ - 3818 + 3863 ], "__typename": [ - 70 + 74 ] }, "steam_account_claims_update_column": {}, "steam_account_claims_updates": { "_set": [ - 3044 + 3080 ], "where": [ - 3032 + 3068 ], "__typename": [ - 70 + 74 ] }, "steam_accounts": { "claims": [ - 3025, + 3061, { "distinct_on": [ - 3043, + 3079, "[steam_account_claims_select_column!]" ], "limit": [ @@ -75286,19 +76763,19 @@ export default { 38 ], "order_by": [ - 3041, + 3077, "[steam_account_claims_order_by!]" ], "where": [ - 3032 + 3068 ] } ], "claims_aggregate": [ - 3026, + 3062, { "distinct_on": [ - 3043, + 3079, "[steam_account_claims_select_column!]" ], "limit": [ @@ -75308,56 +76785,71 @@ export default { 38 ], "order_by": [ - 3041, + 3077, "[steam_account_claims_order_by!]" ], "where": [ - 3032 + 3068 ] } ], "created_at": [ - 3421 + 3466 + ], + "friend_capacity": [ + 38 ], "id": [ - 3818 + 3863 ], "last_node": [ - 1113 + 1117 ], "last_node_id": [ - 70 + 74 ], "password": [ - 70 + 74 + ], + "role": [ + 74 + ], + "steam_level": [ + 38 + ], + "steamid64": [ + 173 ], "updated_at": [ - 3421 + 3466 ], "username": [ - 70 + 74 ], "__typename": [ - 70 + 74 ] }, "steam_accounts_aggregate": { "aggregate": [ - 3051 + 3087 ], "nodes": [ - 3049 + 3085 ], "__typename": [ - 70 + 74 ] }, "steam_accounts_aggregate_fields": { + "avg": [ + 3088 + ], "count": [ 38, { "columns": [ - 3062, + 3100, "[steam_accounts_select_column!]" ], "distinct": [ @@ -75366,130 +76858,227 @@ export default { } ], "max": [ - 3055 + 3093 ], "min": [ - 3056 + 3094 + ], + "stddev": [ + 3102 + ], + "stddev_pop": [ + 3103 + ], + "stddev_samp": [ + 3104 + ], + "sum": [ + 3107 + ], + "var_pop": [ + 3110 + ], + "var_samp": [ + 3111 + ], + "variance": [ + 3112 ], "__typename": [ - 70 + 74 + ] + }, + "steam_accounts_avg_fields": { + "friend_capacity": [ + 29 + ], + "steam_level": [ + 29 + ], + "steamid64": [ + 29 + ], + "__typename": [ + 74 ] }, "steam_accounts_bool_exp": { "_and": [ - 3052 + 3089 ], "_not": [ - 3052 + 3089 ], "_or": [ - 3052 + 3089 ], "claims": [ - 3032 + 3068 ], "claims_aggregate": [ - 3027 + 3063 ], "created_at": [ - 3422 + 3467 + ], + "friend_capacity": [ + 39 ], "id": [ - 3820 + 3865 ], "last_node": [ - 1125 + 1129 ], "last_node_id": [ - 72 + 76 ], "password": [ - 72 + 76 + ], + "role": [ + 76 + ], + "steam_level": [ + 39 + ], + "steamid64": [ + 175 ], "updated_at": [ - 3422 + 3467 ], "username": [ - 72 + 76 ], "__typename": [ - 70 + 74 ] }, "steam_accounts_constraint": {}, + "steam_accounts_inc_input": { + "friend_capacity": [ + 38 + ], + "steam_level": [ + 38 + ], + "steamid64": [ + 173 + ], + "__typename": [ + 74 + ] + }, "steam_accounts_insert_input": { "claims": [ - 3031 + 3067 ], "created_at": [ - 3421 + 3466 + ], + "friend_capacity": [ + 38 ], "id": [ - 3818 + 3863 ], "last_node": [ - 1137 + 1141 ], "last_node_id": [ - 70 + 74 ], "password": [ - 70 + 74 + ], + "role": [ + 74 + ], + "steam_level": [ + 38 + ], + "steamid64": [ + 173 ], "updated_at": [ - 3421 + 3466 ], "username": [ - 70 + 74 ], "__typename": [ - 70 + 74 ] }, "steam_accounts_max_fields": { "created_at": [ - 3421 + 3466 + ], + "friend_capacity": [ + 38 ], "id": [ - 3818 + 3863 ], "last_node_id": [ - 70 + 74 ], "password": [ - 70 + 74 + ], + "role": [ + 74 + ], + "steam_level": [ + 38 + ], + "steamid64": [ + 173 ], "updated_at": [ - 3421 + 3466 ], "username": [ - 70 + 74 ], "__typename": [ - 70 + 74 ] }, "steam_accounts_min_fields": { "created_at": [ - 3421 + 3466 + ], + "friend_capacity": [ + 38 ], "id": [ - 3818 + 3863 ], "last_node_id": [ - 70 + 74 ], "password": [ - 70 + 74 + ], + "role": [ + 74 + ], + "steam_level": [ + 38 + ], + "steamid64": [ + 173 ], "updated_at": [ - 3421 + 3466 ], "username": [ - 70 + 74 ], "__typename": [ - 70 + 74 ] }, "steam_accounts_mutation_response": { @@ -75497,199 +77086,336 @@ export default { 38 ], "returning": [ - 3049 + 3085 ], "__typename": [ - 70 + 74 ] }, "steam_accounts_obj_rel_insert_input": { "data": [ - 3054 + 3092 ], "on_conflict": [ - 3059 + 3097 ], "__typename": [ - 70 + 74 ] }, "steam_accounts_on_conflict": { "constraint": [ - 3053 + 3090 ], "update_columns": [ - 3066 + 3108 ], "where": [ - 3052 + 3089 ], "__typename": [ - 70 + 74 ] }, "steam_accounts_order_by": { "claims_aggregate": [ - 3030 + 3066 ], "created_at": [ - 2011 + 2015 + ], + "friend_capacity": [ + 2015 ], "id": [ - 2011 + 2015 ], "last_node": [ - 1139 + 1143 ], "last_node_id": [ - 2011 + 2015 ], "password": [ - 2011 + 2015 + ], + "role": [ + 2015 + ], + "steam_level": [ + 2015 + ], + "steamid64": [ + 2015 ], "updated_at": [ - 2011 + 2015 ], "username": [ - 2011 + 2015 ], "__typename": [ - 70 + 74 ] }, "steam_accounts_pk_columns_input": { "id": [ - 3818 + 3863 ], "__typename": [ - 70 + 74 ] }, "steam_accounts_select_column": {}, "steam_accounts_set_input": { "created_at": [ - 3421 + 3466 + ], + "friend_capacity": [ + 38 ], "id": [ - 3818 + 3863 ], "last_node_id": [ - 70 + 74 ], "password": [ - 70 + 74 + ], + "role": [ + 74 + ], + "steam_level": [ + 38 + ], + "steamid64": [ + 173 ], "updated_at": [ - 3421 + 3466 ], "username": [ - 70 + 74 ], "__typename": [ - 70 + 74 + ] + }, + "steam_accounts_stddev_fields": { + "friend_capacity": [ + 29 + ], + "steam_level": [ + 29 + ], + "steamid64": [ + 29 + ], + "__typename": [ + 74 + ] + }, + "steam_accounts_stddev_pop_fields": { + "friend_capacity": [ + 29 + ], + "steam_level": [ + 29 + ], + "steamid64": [ + 29 + ], + "__typename": [ + 74 + ] + }, + "steam_accounts_stddev_samp_fields": { + "friend_capacity": [ + 29 + ], + "steam_level": [ + 29 + ], + "steamid64": [ + 29 + ], + "__typename": [ + 74 ] }, "steam_accounts_stream_cursor_input": { "initial_value": [ - 3065 + 3106 ], "ordering": [ - 224 + 228 ], "__typename": [ - 70 + 74 ] }, "steam_accounts_stream_cursor_value_input": { "created_at": [ - 3421 + 3466 + ], + "friend_capacity": [ + 38 ], "id": [ - 3818 + 3863 ], "last_node_id": [ - 70 + 74 ], "password": [ - 70 + 74 + ], + "role": [ + 74 + ], + "steam_level": [ + 38 + ], + "steamid64": [ + 173 ], "updated_at": [ - 3421 + 3466 ], "username": [ - 70 + 74 ], "__typename": [ - 70 + 74 + ] + }, + "steam_accounts_sum_fields": { + "friend_capacity": [ + 38 + ], + "steam_level": [ + 38 + ], + "steamid64": [ + 173 + ], + "__typename": [ + 74 ] }, "steam_accounts_update_column": {}, "steam_accounts_updates": { + "_inc": [ + 3091 + ], "_set": [ - 3063 + 3101 ], "where": [ - 3052 + 3089 ], "__typename": [ - 70 + 74 + ] + }, + "steam_accounts_var_pop_fields": { + "friend_capacity": [ + 29 + ], + "steam_level": [ + 29 + ], + "steamid64": [ + 29 + ], + "__typename": [ + 74 + ] + }, + "steam_accounts_var_samp_fields": { + "friend_capacity": [ + 29 + ], + "steam_level": [ + 29 + ], + "steamid64": [ + 29 + ], + "__typename": [ + 74 + ] + }, + "steam_accounts_variance_fields": { + "friend_capacity": [ + 29 + ], + "steam_level": [ + 29 + ], + "steamid64": [ + 29 + ], + "__typename": [ + 74 ] }, "system_alerts": { "created_at": [ - 3421 + 3466 ], "created_by": [ - 169 + 173 ], "dismissible": [ 3 ], "expires_at": [ - 3421 + 3466 ], "id": [ - 3818 + 3863 ], "is_active": [ 3 ], "message": [ - 70 + 74 ], "title": [ - 70 + 74 ], "type": [ - 906 + 910 ], "updated_at": [ - 3421 + 3466 ], "__typename": [ - 70 + 74 ] }, "system_alerts_aggregate": { "aggregate": [ - 3070 + 3115 ], "nodes": [ - 3068 + 3113 ], "__typename": [ - 70 + 74 ] }, "system_alerts_aggregate_fields": { "avg": [ - 3071 + 3116 ], "count": [ 38, { "columns": [ - 3082, + 3127, "[system_alerts_select_column!]" ], "distinct": [ @@ -75698,34 +77424,34 @@ export default { } ], "max": [ - 3076 + 3121 ], "min": [ - 3077 + 3122 ], "stddev": [ - 3084 + 3129 ], "stddev_pop": [ - 3085 + 3130 ], "stddev_samp": [ - 3086 + 3131 ], "sum": [ - 3089 + 3134 ], "var_pop": [ - 3092 + 3137 ], "var_samp": [ - 3093 + 3138 ], "variance": [ - 3094 + 3139 ], "__typename": [ - 70 + 74 ] }, "system_alerts_avg_fields": { @@ -75733,147 +77459,147 @@ export default { 29 ], "__typename": [ - 70 + 74 ] }, "system_alerts_bool_exp": { "_and": [ - 3072 + 3117 ], "_not": [ - 3072 + 3117 ], "_or": [ - 3072 + 3117 ], "created_at": [ - 3422 + 3467 ], "created_by": [ - 171 + 175 ], "dismissible": [ 4 ], "expires_at": [ - 3422 + 3467 ], "id": [ - 3820 + 3865 ], "is_active": [ 4 ], "message": [ - 72 + 76 ], "title": [ - 72 + 76 ], "type": [ - 907 + 911 ], "updated_at": [ - 3422 + 3467 ], "__typename": [ - 70 + 74 ] }, "system_alerts_constraint": {}, "system_alerts_inc_input": { "created_by": [ - 169 + 173 ], "__typename": [ - 70 + 74 ] }, "system_alerts_insert_input": { "created_at": [ - 3421 + 3466 ], "created_by": [ - 169 + 173 ], "dismissible": [ 3 ], "expires_at": [ - 3421 + 3466 ], "id": [ - 3818 + 3863 ], "is_active": [ 3 ], "message": [ - 70 + 74 ], "title": [ - 70 + 74 ], "type": [ - 906 + 910 ], "updated_at": [ - 3421 + 3466 ], "__typename": [ - 70 + 74 ] }, "system_alerts_max_fields": { "created_at": [ - 3421 + 3466 ], "created_by": [ - 169 + 173 ], "expires_at": [ - 3421 + 3466 ], "id": [ - 3818 + 3863 ], "message": [ - 70 + 74 ], "title": [ - 70 + 74 ], "updated_at": [ - 3421 + 3466 ], "__typename": [ - 70 + 74 ] }, "system_alerts_min_fields": { "created_at": [ - 3421 + 3466 ], "created_by": [ - 169 + 173 ], "expires_at": [ - 3421 + 3466 ], "id": [ - 3818 + 3863 ], "message": [ - 70 + 74 ], "title": [ - 70 + 74 ], "updated_at": [ - 3421 + 3466 ], "__typename": [ - 70 + 74 ] }, "system_alerts_mutation_response": { @@ -75881,103 +77607,103 @@ export default { 38 ], "returning": [ - 3068 + 3113 ], "__typename": [ - 70 + 74 ] }, "system_alerts_on_conflict": { "constraint": [ - 3073 + 3118 ], "update_columns": [ - 3090 + 3135 ], "where": [ - 3072 + 3117 ], "__typename": [ - 70 + 74 ] }, "system_alerts_order_by": { "created_at": [ - 2011 + 2015 ], "created_by": [ - 2011 + 2015 ], "dismissible": [ - 2011 + 2015 ], "expires_at": [ - 2011 + 2015 ], "id": [ - 2011 + 2015 ], "is_active": [ - 2011 + 2015 ], "message": [ - 2011 + 2015 ], "title": [ - 2011 + 2015 ], "type": [ - 2011 + 2015 ], "updated_at": [ - 2011 + 2015 ], "__typename": [ - 70 + 74 ] }, "system_alerts_pk_columns_input": { "id": [ - 3818 + 3863 ], "__typename": [ - 70 + 74 ] }, "system_alerts_select_column": {}, "system_alerts_set_input": { "created_at": [ - 3421 + 3466 ], "created_by": [ - 169 + 173 ], "dismissible": [ 3 ], "expires_at": [ - 3421 + 3466 ], "id": [ - 3818 + 3863 ], "is_active": [ 3 ], "message": [ - 70 + 74 ], "title": [ - 70 + 74 ], "type": [ - 906 + 910 ], "updated_at": [ - 3421 + 3466 ], "__typename": [ - 70 + 74 ] }, "system_alerts_stddev_fields": { @@ -75985,7 +77711,7 @@ export default { 29 ], "__typename": [ - 70 + 74 ] }, "system_alerts_stddev_pop_fields": { @@ -75993,7 +77719,7 @@ export default { 29 ], "__typename": [ - 70 + 74 ] }, "system_alerts_stddev_samp_fields": { @@ -76001,76 +77727,76 @@ export default { 29 ], "__typename": [ - 70 + 74 ] }, "system_alerts_stream_cursor_input": { "initial_value": [ - 3088 + 3133 ], "ordering": [ - 224 + 228 ], "__typename": [ - 70 + 74 ] }, "system_alerts_stream_cursor_value_input": { "created_at": [ - 3421 + 3466 ], "created_by": [ - 169 + 173 ], "dismissible": [ 3 ], "expires_at": [ - 3421 + 3466 ], "id": [ - 3818 + 3863 ], "is_active": [ 3 ], "message": [ - 70 + 74 ], "title": [ - 70 + 74 ], "type": [ - 906 + 910 ], "updated_at": [ - 3421 + 3466 ], "__typename": [ - 70 + 74 ] }, "system_alerts_sum_fields": { "created_by": [ - 169 + 173 ], "__typename": [ - 70 + 74 ] }, "system_alerts_update_column": {}, "system_alerts_updates": { "_inc": [ - 3074 + 3119 ], "_set": [ - 3083 + 3128 ], "where": [ - 3072 + 3117 ], "__typename": [ - 70 + 74 ] }, "system_alerts_var_pop_fields": { @@ -76078,7 +77804,7 @@ export default { 29 ], "__typename": [ - 70 + 74 ] }, "system_alerts_var_samp_fields": { @@ -76086,7 +77812,7 @@ export default { 29 ], "__typename": [ - 70 + 74 ] }, "system_alerts_variance_fields": { @@ -76094,83 +77820,83 @@ export default { 29 ], "__typename": [ - 70 + 74 ] }, "team_invites": { "created_at": [ - 3421 + 3466 ], "id": [ - 3818 + 3863 ], "invited_by": [ - 2878 + 2914 ], "invited_by_player_steam_id": [ - 169 + 173 ], "player": [ - 2878 + 2914 ], "steam_id": [ - 169 + 173 ], "team": [ - 3378 + 3423 ], "team_id": [ - 3818 + 3863 ], "__typename": [ - 70 + 74 ] }, "team_invites_aggregate": { "aggregate": [ - 3099 + 3144 ], "nodes": [ - 3095 + 3140 ], "__typename": [ - 70 + 74 ] }, "team_invites_aggregate_bool_exp": { "count": [ - 3098 + 3143 ], "__typename": [ - 70 + 74 ] }, "team_invites_aggregate_bool_exp_count": { "arguments": [ - 3116 + 3161 ], "distinct": [ 3 ], "filter": [ - 3104 + 3149 ], "predicate": [ 39 ], "__typename": [ - 70 + 74 ] }, "team_invites_aggregate_fields": { "avg": [ - 3102 + 3147 ], "count": [ 38, { "columns": [ - 3116, + 3161, "[team_invites_select_column!]" ], "distinct": [ @@ -76179,83 +77905,83 @@ export default { } ], "max": [ - 3108 + 3153 ], "min": [ - 3110 + 3155 ], "stddev": [ - 3118 + 3163 ], "stddev_pop": [ - 3120 + 3165 ], "stddev_samp": [ - 3122 + 3167 ], "sum": [ - 3126 + 3171 ], "var_pop": [ - 3130 + 3175 ], "var_samp": [ - 3132 + 3177 ], "variance": [ - 3134 + 3179 ], "__typename": [ - 70 + 74 ] }, "team_invites_aggregate_order_by": { "avg": [ - 3103 + 3148 ], "count": [ - 2011 + 2015 ], "max": [ - 3109 + 3154 ], "min": [ - 3111 + 3156 ], "stddev": [ - 3119 + 3164 ], "stddev_pop": [ - 3121 + 3166 ], "stddev_samp": [ - 3123 + 3168 ], "sum": [ - 3127 + 3172 ], "var_pop": [ - 3131 + 3176 ], "var_samp": [ - 3133 + 3178 ], "variance": [ - 3135 + 3180 ], "__typename": [ - 70 + 74 ] }, "team_invites_arr_rel_insert_input": { "data": [ - 3107 + 3152 ], "on_conflict": [ - 3113 + 3158 ], "__typename": [ - 70 + 74 ] }, "team_invites_avg_fields": { @@ -76266,177 +77992,177 @@ export default { 29 ], "__typename": [ - 70 + 74 ] }, "team_invites_avg_order_by": { "invited_by_player_steam_id": [ - 2011 + 2015 ], "steam_id": [ - 2011 + 2015 ], "__typename": [ - 70 + 74 ] }, "team_invites_bool_exp": { "_and": [ - 3104 + 3149 ], "_not": [ - 3104 + 3149 ], "_or": [ - 3104 + 3149 ], "created_at": [ - 3422 + 3467 ], "id": [ - 3820 + 3865 ], "invited_by": [ - 2882 + 2918 ], "invited_by_player_steam_id": [ - 171 + 175 ], "player": [ - 2882 + 2918 ], "steam_id": [ - 171 + 175 ], "team": [ - 3387 + 3432 ], "team_id": [ - 3820 + 3865 ], "__typename": [ - 70 + 74 ] }, "team_invites_constraint": {}, "team_invites_inc_input": { "invited_by_player_steam_id": [ - 169 + 173 ], "steam_id": [ - 169 + 173 ], "__typename": [ - 70 + 74 ] }, "team_invites_insert_input": { "created_at": [ - 3421 + 3466 ], "id": [ - 3818 + 3863 ], "invited_by": [ - 2889 + 2925 ], "invited_by_player_steam_id": [ - 169 + 173 ], "player": [ - 2889 + 2925 ], "steam_id": [ - 169 + 173 ], "team": [ - 3396 + 3441 ], "team_id": [ - 3818 + 3863 ], "__typename": [ - 70 + 74 ] }, "team_invites_max_fields": { "created_at": [ - 3421 + 3466 ], "id": [ - 3818 + 3863 ], "invited_by_player_steam_id": [ - 169 + 173 ], "steam_id": [ - 169 + 173 ], "team_id": [ - 3818 + 3863 ], "__typename": [ - 70 + 74 ] }, "team_invites_max_order_by": { "created_at": [ - 2011 + 2015 ], "id": [ - 2011 + 2015 ], "invited_by_player_steam_id": [ - 2011 + 2015 ], "steam_id": [ - 2011 + 2015 ], "team_id": [ - 2011 + 2015 ], "__typename": [ - 70 + 74 ] }, "team_invites_min_fields": { "created_at": [ - 3421 + 3466 ], "id": [ - 3818 + 3863 ], "invited_by_player_steam_id": [ - 169 + 173 ], "steam_id": [ - 169 + 173 ], "team_id": [ - 3818 + 3863 ], "__typename": [ - 70 + 74 ] }, "team_invites_min_order_by": { "created_at": [ - 2011 + 2015 ], "id": [ - 2011 + 2015 ], "invited_by_player_steam_id": [ - 2011 + 2015 ], "steam_id": [ - 2011 + 2015 ], "team_id": [ - 2011 + 2015 ], "__typename": [ - 70 + 74 ] }, "team_invites_mutation_response": { @@ -76444,82 +78170,82 @@ export default { 38 ], "returning": [ - 3095 + 3140 ], "__typename": [ - 70 + 74 ] }, "team_invites_on_conflict": { "constraint": [ - 3105 + 3150 ], "update_columns": [ - 3128 + 3173 ], "where": [ - 3104 + 3149 ], "__typename": [ - 70 + 74 ] }, "team_invites_order_by": { "created_at": [ - 2011 + 2015 ], "id": [ - 2011 + 2015 ], "invited_by": [ - 2891 + 2927 ], "invited_by_player_steam_id": [ - 2011 + 2015 ], "player": [ - 2891 + 2927 ], "steam_id": [ - 2011 + 2015 ], "team": [ - 3398 + 3443 ], "team_id": [ - 2011 + 2015 ], "__typename": [ - 70 + 74 ] }, "team_invites_pk_columns_input": { "id": [ - 3818 + 3863 ], "__typename": [ - 70 + 74 ] }, "team_invites_select_column": {}, "team_invites_set_input": { "created_at": [ - 3421 + 3466 ], "id": [ - 3818 + 3863 ], "invited_by_player_steam_id": [ - 169 + 173 ], "steam_id": [ - 169 + 173 ], "team_id": [ - 3818 + 3863 ], "__typename": [ - 70 + 74 ] }, "team_invites_stddev_fields": { @@ -76530,18 +78256,18 @@ export default { 29 ], "__typename": [ - 70 + 74 ] }, "team_invites_stddev_order_by": { "invited_by_player_steam_id": [ - 2011 + 2015 ], "steam_id": [ - 2011 + 2015 ], "__typename": [ - 70 + 74 ] }, "team_invites_stddev_pop_fields": { @@ -76552,18 +78278,18 @@ export default { 29 ], "__typename": [ - 70 + 74 ] }, "team_invites_stddev_pop_order_by": { "invited_by_player_steam_id": [ - 2011 + 2015 ], "steam_id": [ - 2011 + 2015 ], "__typename": [ - 70 + 74 ] }, "team_invites_stddev_samp_fields": { @@ -76574,86 +78300,86 @@ export default { 29 ], "__typename": [ - 70 + 74 ] }, "team_invites_stddev_samp_order_by": { "invited_by_player_steam_id": [ - 2011 + 2015 ], "steam_id": [ - 2011 + 2015 ], "__typename": [ - 70 + 74 ] }, "team_invites_stream_cursor_input": { "initial_value": [ - 3125 + 3170 ], "ordering": [ - 224 + 228 ], "__typename": [ - 70 + 74 ] }, "team_invites_stream_cursor_value_input": { "created_at": [ - 3421 + 3466 ], "id": [ - 3818 + 3863 ], "invited_by_player_steam_id": [ - 169 + 173 ], "steam_id": [ - 169 + 173 ], "team_id": [ - 3818 + 3863 ], "__typename": [ - 70 + 74 ] }, "team_invites_sum_fields": { "invited_by_player_steam_id": [ - 169 + 173 ], "steam_id": [ - 169 + 173 ], "__typename": [ - 70 + 74 ] }, "team_invites_sum_order_by": { "invited_by_player_steam_id": [ - 2011 + 2015 ], "steam_id": [ - 2011 + 2015 ], "__typename": [ - 70 + 74 ] }, "team_invites_update_column": {}, "team_invites_updates": { "_inc": [ - 3106 + 3151 ], "_set": [ - 3117 + 3162 ], "where": [ - 3104 + 3149 ], "__typename": [ - 70 + 74 ] }, "team_invites_var_pop_fields": { @@ -76664,18 +78390,18 @@ export default { 29 ], "__typename": [ - 70 + 74 ] }, "team_invites_var_pop_order_by": { "invited_by_player_steam_id": [ - 2011 + 2015 ], "steam_id": [ - 2011 + 2015 ], "__typename": [ - 70 + 74 ] }, "team_invites_var_samp_fields": { @@ -76686,18 +78412,18 @@ export default { 29 ], "__typename": [ - 70 + 74 ] }, "team_invites_var_samp_order_by": { "invited_by_player_steam_id": [ - 2011 + 2015 ], "steam_id": [ - 2011 + 2015 ], "__typename": [ - 70 + 74 ] }, "team_invites_variance_fields": { @@ -76708,18 +78434,18 @@ export default { 29 ], "__typename": [ - 70 + 74 ] }, "team_invites_variance_order_by": { "invited_by_player_steam_id": [ - 2011 + 2015 ], "steam_id": [ - 2011 + 2015 ], "__typename": [ - 70 + 74 ] }, "team_roster": { @@ -76727,115 +78453,115 @@ export default { 3 ], "player": [ - 2878 + 2914 ], "player_steam_id": [ - 169 + 173 ], "role": [ - 926 + 930 ], "roster_image_url": [ - 70 + 74 ], "status": [ - 947 + 951 ], "team": [ - 3378 + 3423 ], "team_id": [ - 3818 + 3863 ], "__typename": [ - 70 + 74 ] }, "team_roster_aggregate": { "aggregate": [ - 3142 + 3187 ], "nodes": [ - 3136 + 3181 ], "__typename": [ - 70 + 74 ] }, "team_roster_aggregate_bool_exp": { "bool_and": [ - 3139 + 3184 ], "bool_or": [ - 3140 + 3185 ], "count": [ - 3141 + 3186 ], "__typename": [ - 70 + 74 ] }, "team_roster_aggregate_bool_exp_bool_and": { "arguments": [ - 3160 + 3205 ], "distinct": [ 3 ], "filter": [ - 3147 + 3192 ], "predicate": [ 4 ], "__typename": [ - 70 + 74 ] }, "team_roster_aggregate_bool_exp_bool_or": { "arguments": [ - 3161 + 3206 ], "distinct": [ 3 ], "filter": [ - 3147 + 3192 ], "predicate": [ 4 ], "__typename": [ - 70 + 74 ] }, "team_roster_aggregate_bool_exp_count": { "arguments": [ - 3159 + 3204 ], "distinct": [ 3 ], "filter": [ - 3147 + 3192 ], "predicate": [ 39 ], "__typename": [ - 70 + 74 ] }, "team_roster_aggregate_fields": { "avg": [ - 3145 + 3190 ], "count": [ 38, { "columns": [ - 3159, + 3204, "[team_roster_select_column!]" ], "distinct": [ @@ -76844,83 +78570,83 @@ export default { } ], "max": [ - 3151 + 3196 ], "min": [ - 3153 + 3198 ], "stddev": [ - 3163 + 3208 ], "stddev_pop": [ - 3165 + 3210 ], "stddev_samp": [ - 3167 + 3212 ], "sum": [ - 3171 + 3216 ], "var_pop": [ - 3175 + 3220 ], "var_samp": [ - 3177 + 3222 ], "variance": [ - 3179 + 3224 ], "__typename": [ - 70 + 74 ] }, "team_roster_aggregate_order_by": { "avg": [ - 3146 + 3191 ], "count": [ - 2011 + 2015 ], "max": [ - 3152 + 3197 ], "min": [ - 3154 + 3199 ], "stddev": [ - 3164 + 3209 ], "stddev_pop": [ - 3166 + 3211 ], "stddev_samp": [ - 3168 + 3213 ], "sum": [ - 3172 + 3217 ], "var_pop": [ - 3176 + 3221 ], "var_samp": [ - 3178 + 3223 ], "variance": [ - 3180 + 3225 ], "__typename": [ - 70 + 74 ] }, "team_roster_arr_rel_insert_input": { "data": [ - 3150 + 3195 ], "on_conflict": [ - 3156 + 3201 ], "__typename": [ - 70 + 74 ] }, "team_roster_avg_fields": { @@ -76928,62 +78654,62 @@ export default { 29 ], "__typename": [ - 70 + 74 ] }, "team_roster_avg_order_by": { "player_steam_id": [ - 2011 + 2015 ], "__typename": [ - 70 + 74 ] }, "team_roster_bool_exp": { "_and": [ - 3147 + 3192 ], "_not": [ - 3147 + 3192 ], "_or": [ - 3147 + 3192 ], "coach": [ 4 ], "player": [ - 2882 + 2918 ], "player_steam_id": [ - 171 + 175 ], "role": [ - 927 + 931 ], "roster_image_url": [ - 72 + 76 ], "status": [ - 948 + 952 ], "team": [ - 3387 + 3432 ], "team_id": [ - 3820 + 3865 ], "__typename": [ - 70 + 74 ] }, "team_roster_constraint": {}, "team_roster_inc_input": { "player_steam_id": [ - 169 + 173 ], "__typename": [ - 70 + 74 ] }, "team_roster_insert_input": { @@ -76991,84 +78717,84 @@ export default { 3 ], "player": [ - 2889 + 2925 ], "player_steam_id": [ - 169 + 173 ], "role": [ - 926 + 930 ], "roster_image_url": [ - 70 + 74 ], "status": [ - 947 + 951 ], "team": [ - 3396 + 3441 ], "team_id": [ - 3818 + 3863 ], "__typename": [ - 70 + 74 ] }, "team_roster_max_fields": { "player_steam_id": [ - 169 + 173 ], "roster_image_url": [ - 70 + 74 ], "team_id": [ - 3818 + 3863 ], "__typename": [ - 70 + 74 ] }, "team_roster_max_order_by": { "player_steam_id": [ - 2011 + 2015 ], "roster_image_url": [ - 2011 + 2015 ], "team_id": [ - 2011 + 2015 ], "__typename": [ - 70 + 74 ] }, "team_roster_min_fields": { "player_steam_id": [ - 169 + 173 ], "roster_image_url": [ - 70 + 74 ], "team_id": [ - 3818 + 3863 ], "__typename": [ - 70 + 74 ] }, "team_roster_min_order_by": { "player_steam_id": [ - 2011 + 2015 ], "roster_image_url": [ - 2011 + 2015 ], "team_id": [ - 2011 + 2015 ], "__typename": [ - 70 + 74 ] }, "team_roster_mutation_response": { @@ -77076,64 +78802,64 @@ export default { 38 ], "returning": [ - 3136 + 3181 ], "__typename": [ - 70 + 74 ] }, "team_roster_on_conflict": { "constraint": [ - 3148 + 3193 ], "update_columns": [ - 3173 + 3218 ], "where": [ - 3147 + 3192 ], "__typename": [ - 70 + 74 ] }, "team_roster_order_by": { "coach": [ - 2011 + 2015 ], "player": [ - 2891 + 2927 ], "player_steam_id": [ - 2011 + 2015 ], "role": [ - 2011 + 2015 ], "roster_image_url": [ - 2011 + 2015 ], "status": [ - 2011 + 2015 ], "team": [ - 3398 + 3443 ], "team_id": [ - 2011 + 2015 ], "__typename": [ - 70 + 74 ] }, "team_roster_pk_columns_input": { "player_steam_id": [ - 169 + 173 ], "team_id": [ - 3818 + 3863 ], "__typename": [ - 70 + 74 ] }, "team_roster_select_column": {}, @@ -77144,22 +78870,22 @@ export default { 3 ], "player_steam_id": [ - 169 + 173 ], "role": [ - 926 + 930 ], "roster_image_url": [ - 70 + 74 ], "status": [ - 947 + 951 ], "team_id": [ - 3818 + 3863 ], "__typename": [ - 70 + 74 ] }, "team_roster_stddev_fields": { @@ -77167,15 +78893,15 @@ export default { 29 ], "__typename": [ - 70 + 74 ] }, "team_roster_stddev_order_by": { "player_steam_id": [ - 2011 + 2015 ], "__typename": [ - 70 + 74 ] }, "team_roster_stddev_pop_fields": { @@ -77183,15 +78909,15 @@ export default { 29 ], "__typename": [ - 70 + 74 ] }, "team_roster_stddev_pop_order_by": { "player_steam_id": [ - 2011 + 2015 ], "__typename": [ - 70 + 74 ] }, "team_roster_stddev_samp_fields": { @@ -77199,26 +78925,26 @@ export default { 29 ], "__typename": [ - 70 + 74 ] }, "team_roster_stddev_samp_order_by": { "player_steam_id": [ - 2011 + 2015 ], "__typename": [ - 70 + 74 ] }, "team_roster_stream_cursor_input": { "initial_value": [ - 3170 + 3215 ], "ordering": [ - 224 + 228 ], "__typename": [ - 70 + 74 ] }, "team_roster_stream_cursor_value_input": { @@ -77226,53 +78952,53 @@ export default { 3 ], "player_steam_id": [ - 169 + 173 ], "role": [ - 926 + 930 ], "roster_image_url": [ - 70 + 74 ], "status": [ - 947 + 951 ], "team_id": [ - 3818 + 3863 ], "__typename": [ - 70 + 74 ] }, "team_roster_sum_fields": { "player_steam_id": [ - 169 + 173 ], "__typename": [ - 70 + 74 ] }, "team_roster_sum_order_by": { "player_steam_id": [ - 2011 + 2015 ], "__typename": [ - 70 + 74 ] }, "team_roster_update_column": {}, "team_roster_updates": { "_inc": [ - 3149 + 3194 ], "_set": [ - 3162 + 3207 ], "where": [ - 3147 + 3192 ], "__typename": [ - 70 + 74 ] }, "team_roster_var_pop_fields": { @@ -77280,15 +79006,15 @@ export default { 29 ], "__typename": [ - 70 + 74 ] }, "team_roster_var_pop_order_by": { "player_steam_id": [ - 2011 + 2015 ], "__typename": [ - 70 + 74 ] }, "team_roster_var_samp_fields": { @@ -77296,15 +79022,15 @@ export default { 29 ], "__typename": [ - 70 + 74 ] }, "team_roster_var_samp_order_by": { "player_steam_id": [ - 2011 + 2015 ], "__typename": [ - 70 + 74 ] }, "team_roster_variance_fields": { @@ -77312,20 +79038,20 @@ export default { 29 ], "__typename": [ - 70 + 74 ] }, "team_roster_variance_order_by": { "player_steam_id": [ - 2011 + 2015 ], "__typename": [ - 70 + 74 ] }, "team_scrim_alerts": { "created_at": [ - 3421 + 3466 ], "elo_max": [ 38 @@ -77337,44 +79063,44 @@ export default { 3 ], "id": [ - 3818 + 3863 ], "last_notified_at": [ - 3421 + 3466 ], "regions": [ - 70 + 74 ], "team": [ - 3378 + 3423 ], "team_id": [ - 3818 + 3863 ], "__typename": [ - 70 + 74 ] }, "team_scrim_alerts_aggregate": { "aggregate": [ - 3183 + 3228 ], "nodes": [ - 3181 + 3226 ], "__typename": [ - 70 + 74 ] }, "team_scrim_alerts_aggregate_fields": { "avg": [ - 3184 + 3229 ], "count": [ 38, { "columns": [ - 3195, + 3240, "[team_scrim_alerts_select_column!]" ], "distinct": [ @@ -77383,34 +79109,34 @@ export default { } ], "max": [ - 3189 + 3234 ], "min": [ - 3190 + 3235 ], "stddev": [ - 3197 + 3242 ], "stddev_pop": [ - 3198 + 3243 ], "stddev_samp": [ - 3199 + 3244 ], "sum": [ - 3202 + 3247 ], "var_pop": [ - 3205 + 3250 ], "var_samp": [ - 3206 + 3251 ], "variance": [ - 3207 + 3252 ], "__typename": [ - 70 + 74 ] }, "team_scrim_alerts_avg_fields": { @@ -77421,21 +79147,21 @@ export default { 29 ], "__typename": [ - 70 + 74 ] }, "team_scrim_alerts_bool_exp": { "_and": [ - 3185 + 3230 ], "_not": [ - 3185 + 3230 ], "_or": [ - 3185 + 3230 ], "created_at": [ - 3422 + 3467 ], "elo_max": [ 39 @@ -77447,22 +79173,22 @@ export default { 4 ], "id": [ - 3820 + 3865 ], "last_notified_at": [ - 3422 + 3467 ], "regions": [ - 71 + 75 ], "team": [ - 3387 + 3432 ], "team_id": [ - 3820 + 3865 ], "__typename": [ - 70 + 74 ] }, "team_scrim_alerts_constraint": {}, @@ -77474,12 +79200,12 @@ export default { 38 ], "__typename": [ - 70 + 74 ] }, "team_scrim_alerts_insert_input": { "created_at": [ - 3421 + 3466 ], "elo_max": [ 38 @@ -77491,27 +79217,27 @@ export default { 3 ], "id": [ - 3818 + 3863 ], "last_notified_at": [ - 3421 + 3466 ], "regions": [ - 70 + 74 ], "team": [ - 3396 + 3441 ], "team_id": [ - 3818 + 3863 ], "__typename": [ - 70 + 74 ] }, "team_scrim_alerts_max_fields": { "created_at": [ - 3421 + 3466 ], "elo_max": [ 38 @@ -77520,24 +79246,24 @@ export default { 38 ], "id": [ - 3818 + 3863 ], "last_notified_at": [ - 3421 + 3466 ], "regions": [ - 70 + 74 ], "team_id": [ - 3818 + 3863 ], "__typename": [ - 70 + 74 ] }, "team_scrim_alerts_min_fields": { "created_at": [ - 3421 + 3466 ], "elo_max": [ 38 @@ -77546,19 +79272,19 @@ export default { 38 ], "id": [ - 3818 + 3863 ], "last_notified_at": [ - 3421 + 3466 ], "regions": [ - 70 + 74 ], "team_id": [ - 3818 + 3863 ], "__typename": [ - 70 + 74 ] }, "team_scrim_alerts_mutation_response": { @@ -77566,70 +79292,70 @@ export default { 38 ], "returning": [ - 3181 + 3226 ], "__typename": [ - 70 + 74 ] }, "team_scrim_alerts_on_conflict": { "constraint": [ - 3186 + 3231 ], "update_columns": [ - 3203 + 3248 ], "where": [ - 3185 + 3230 ], "__typename": [ - 70 + 74 ] }, "team_scrim_alerts_order_by": { "created_at": [ - 2011 + 2015 ], "elo_max": [ - 2011 + 2015 ], "elo_min": [ - 2011 + 2015 ], "enabled": [ - 2011 + 2015 ], "id": [ - 2011 + 2015 ], "last_notified_at": [ - 2011 + 2015 ], "regions": [ - 2011 + 2015 ], "team": [ - 3398 + 3443 ], "team_id": [ - 2011 + 2015 ], "__typename": [ - 70 + 74 ] }, "team_scrim_alerts_pk_columns_input": { "id": [ - 3818 + 3863 ], "__typename": [ - 70 + 74 ] }, "team_scrim_alerts_select_column": {}, "team_scrim_alerts_set_input": { "created_at": [ - 3421 + 3466 ], "elo_max": [ 38 @@ -77641,19 +79367,19 @@ export default { 3 ], "id": [ - 3818 + 3863 ], "last_notified_at": [ - 3421 + 3466 ], "regions": [ - 70 + 74 ], "team_id": [ - 3818 + 3863 ], "__typename": [ - 70 + 74 ] }, "team_scrim_alerts_stddev_fields": { @@ -77664,7 +79390,7 @@ export default { 29 ], "__typename": [ - 70 + 74 ] }, "team_scrim_alerts_stddev_pop_fields": { @@ -77675,7 +79401,7 @@ export default { 29 ], "__typename": [ - 70 + 74 ] }, "team_scrim_alerts_stddev_samp_fields": { @@ -77686,23 +79412,23 @@ export default { 29 ], "__typename": [ - 70 + 74 ] }, "team_scrim_alerts_stream_cursor_input": { "initial_value": [ - 3201 + 3246 ], "ordering": [ - 224 + 228 ], "__typename": [ - 70 + 74 ] }, "team_scrim_alerts_stream_cursor_value_input": { "created_at": [ - 3421 + 3466 ], "elo_max": [ 38 @@ -77714,19 +79440,19 @@ export default { 3 ], "id": [ - 3818 + 3863 ], "last_notified_at": [ - 3421 + 3466 ], "regions": [ - 70 + 74 ], "team_id": [ - 3818 + 3863 ], "__typename": [ - 70 + 74 ] }, "team_scrim_alerts_sum_fields": { @@ -77737,22 +79463,22 @@ export default { 38 ], "__typename": [ - 70 + 74 ] }, "team_scrim_alerts_update_column": {}, "team_scrim_alerts_updates": { "_inc": [ - 3187 + 3232 ], "_set": [ - 3196 + 3241 ], "where": [ - 3185 + 3230 ], "__typename": [ - 70 + 74 ] }, "team_scrim_alerts_var_pop_fields": { @@ -77763,7 +79489,7 @@ export default { 29 ], "__typename": [ - 70 + 74 ] }, "team_scrim_alerts_var_samp_fields": { @@ -77774,7 +79500,7 @@ export default { 29 ], "__typename": [ - 70 + 74 ] }, "team_scrim_alerts_variance_fields": { @@ -77785,109 +79511,109 @@ export default { 29 ], "__typename": [ - 70 + 74 ] }, "team_scrim_availability": { "created_at": [ - 3421 + 3466 ], "ends_at": [ - 3421 + 3466 ], "id": [ - 3818 + 3863 ], "recurring_weekly": [ 3 ], "starts_at": [ - 3421 + 3466 ], "team": [ - 3378 + 3423 ], "team_id": [ - 3818 + 3863 ], "__typename": [ - 70 + 74 ] }, "team_scrim_availability_aggregate": { "aggregate": [ - 3214 + 3259 ], "nodes": [ - 3208 + 3253 ], "__typename": [ - 70 + 74 ] }, "team_scrim_availability_aggregate_bool_exp": { "bool_and": [ - 3211 + 3256 ], "bool_or": [ - 3212 + 3257 ], "count": [ - 3213 + 3258 ], "__typename": [ - 70 + 74 ] }, "team_scrim_availability_aggregate_bool_exp_bool_and": { "arguments": [ - 3229 + 3274 ], "distinct": [ 3 ], "filter": [ - 3217 + 3262 ], "predicate": [ 4 ], "__typename": [ - 70 + 74 ] }, "team_scrim_availability_aggregate_bool_exp_bool_or": { "arguments": [ - 3230 + 3275 ], "distinct": [ 3 ], "filter": [ - 3217 + 3262 ], "predicate": [ 4 ], "__typename": [ - 70 + 74 ] }, "team_scrim_availability_aggregate_bool_exp_count": { "arguments": [ - 3228 + 3273 ], "distinct": [ 3 ], "filter": [ - 3217 + 3262 ], "predicate": [ 39 ], "__typename": [ - 70 + 74 ] }, "team_scrim_availability_aggregate_fields": { @@ -77895,7 +79621,7 @@ export default { 38, { "columns": [ - 3228, + 3273, "[team_scrim_availability_select_column!]" ], "distinct": [ @@ -77904,180 +79630,180 @@ export default { } ], "max": [ - 3220 + 3265 ], "min": [ - 3222 + 3267 ], "__typename": [ - 70 + 74 ] }, "team_scrim_availability_aggregate_order_by": { "count": [ - 2011 + 2015 ], "max": [ - 3221 + 3266 ], "min": [ - 3223 + 3268 ], "__typename": [ - 70 + 74 ] }, "team_scrim_availability_arr_rel_insert_input": { "data": [ - 3219 + 3264 ], "on_conflict": [ - 3225 + 3270 ], "__typename": [ - 70 + 74 ] }, "team_scrim_availability_bool_exp": { "_and": [ - 3217 + 3262 ], "_not": [ - 3217 + 3262 ], "_or": [ - 3217 + 3262 ], "created_at": [ - 3422 + 3467 ], "ends_at": [ - 3422 + 3467 ], "id": [ - 3820 + 3865 ], "recurring_weekly": [ 4 ], "starts_at": [ - 3422 + 3467 ], "team": [ - 3387 + 3432 ], "team_id": [ - 3820 + 3865 ], "__typename": [ - 70 + 74 ] }, "team_scrim_availability_constraint": {}, "team_scrim_availability_insert_input": { "created_at": [ - 3421 + 3466 ], "ends_at": [ - 3421 + 3466 ], "id": [ - 3818 + 3863 ], "recurring_weekly": [ 3 ], "starts_at": [ - 3421 + 3466 ], "team": [ - 3396 + 3441 ], "team_id": [ - 3818 + 3863 ], "__typename": [ - 70 + 74 ] }, "team_scrim_availability_max_fields": { "created_at": [ - 3421 + 3466 ], "ends_at": [ - 3421 + 3466 ], "id": [ - 3818 + 3863 ], "starts_at": [ - 3421 + 3466 ], "team_id": [ - 3818 + 3863 ], "__typename": [ - 70 + 74 ] }, "team_scrim_availability_max_order_by": { "created_at": [ - 2011 + 2015 ], "ends_at": [ - 2011 + 2015 ], "id": [ - 2011 + 2015 ], "starts_at": [ - 2011 + 2015 ], "team_id": [ - 2011 + 2015 ], "__typename": [ - 70 + 74 ] }, "team_scrim_availability_min_fields": { "created_at": [ - 3421 + 3466 ], "ends_at": [ - 3421 + 3466 ], "id": [ - 3818 + 3863 ], "starts_at": [ - 3421 + 3466 ], "team_id": [ - 3818 + 3863 ], "__typename": [ - 70 + 74 ] }, "team_scrim_availability_min_order_by": { "created_at": [ - 2011 + 2015 ], "ends_at": [ - 2011 + 2015 ], "id": [ - 2011 + 2015 ], "starts_at": [ - 2011 + 2015 ], "team_id": [ - 2011 + 2015 ], "__typename": [ - 70 + 74 ] }, "team_scrim_availability_mutation_response": { @@ -78085,58 +79811,58 @@ export default { 38 ], "returning": [ - 3208 + 3253 ], "__typename": [ - 70 + 74 ] }, "team_scrim_availability_on_conflict": { "constraint": [ - 3218 + 3263 ], "update_columns": [ - 3234 + 3279 ], "where": [ - 3217 + 3262 ], "__typename": [ - 70 + 74 ] }, "team_scrim_availability_order_by": { "created_at": [ - 2011 + 2015 ], "ends_at": [ - 2011 + 2015 ], "id": [ - 2011 + 2015 ], "recurring_weekly": [ - 2011 + 2015 ], "starts_at": [ - 2011 + 2015 ], "team": [ - 3398 + 3443 ], "team_id": [ - 2011 + 2015 ], "__typename": [ - 70 + 74 ] }, "team_scrim_availability_pk_columns_input": { "id": [ - 3818 + 3863 ], "__typename": [ - 70 + 74 ] }, "team_scrim_availability_select_column": {}, @@ -78144,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": [ - 3421 + 3466 ], "ends_at": [ - 3421 + 3466 ], "id": [ - 3818 + 3863 ], "recurring_weekly": [ 3 ], "starts_at": [ - 3421 + 3466 ], "team_id": [ - 3818 + 3863 ], "__typename": [ - 70 + 74 ] }, "team_scrim_availability_stream_cursor_input": { "initial_value": [ - 3233 + 3278 ], "ordering": [ - 224 + 228 ], "__typename": [ - 70 + 74 ] }, "team_scrim_availability_stream_cursor_value_input": { "created_at": [ - 3421 + 3466 ], "ends_at": [ - 3421 + 3466 ], "id": [ - 3818 + 3863 ], "recurring_weekly": [ 3 ], "starts_at": [ - 3421 + 3466 ], "team_id": [ - 3818 + 3863 ], "__typename": [ - 70 + 74 ] }, "team_scrim_availability_update_column": {}, "team_scrim_availability_updates": { "_set": [ - 3231 + 3276 ], "where": [ - 3217 + 3262 ], "__typename": [ - 70 + 74 ] }, "team_scrim_request_proposals": { "created_at": [ - 3421 + 3466 ], "id": [ - 3818 + 3863 ], "proposed_by": [ - 2878 + 2914 ], "proposed_by_steam_id": [ - 169 + 173 ], "proposed_by_team": [ - 3378 + 3423 ], "proposed_by_team_id": [ - 3818 + 3863 ], "proposed_scheduled_at": [ - 3421 + 3466 ], "request": [ - 3277 + 3322 ], "request_id": [ - 3818 + 3863 ], "__typename": [ - 70 + 74 ] }, "team_scrim_request_proposals_aggregate": { "aggregate": [ - 3240 + 3285 ], "nodes": [ - 3236 + 3281 ], "__typename": [ - 70 + 74 ] }, "team_scrim_request_proposals_aggregate_bool_exp": { "count": [ - 3239 + 3284 ], "__typename": [ - 70 + 74 ] }, "team_scrim_request_proposals_aggregate_bool_exp_count": { "arguments": [ - 3257 + 3302 ], "distinct": [ 3 ], "filter": [ - 3245 + 3290 ], "predicate": [ 39 ], "__typename": [ - 70 + 74 ] }, "team_scrim_request_proposals_aggregate_fields": { "avg": [ - 3243 + 3288 ], "count": [ 38, { "columns": [ - 3257, + 3302, "[team_scrim_request_proposals_select_column!]" ], "distinct": [ @@ -78296,83 +80022,83 @@ export default { } ], "max": [ - 3249 + 3294 ], "min": [ - 3251 + 3296 ], "stddev": [ - 3259 + 3304 ], "stddev_pop": [ - 3261 + 3306 ], "stddev_samp": [ - 3263 + 3308 ], "sum": [ - 3267 + 3312 ], "var_pop": [ - 3271 + 3316 ], "var_samp": [ - 3273 + 3318 ], "variance": [ - 3275 + 3320 ], "__typename": [ - 70 + 74 ] }, "team_scrim_request_proposals_aggregate_order_by": { "avg": [ - 3244 + 3289 ], "count": [ - 2011 + 2015 ], "max": [ - 3250 + 3295 ], "min": [ - 3252 + 3297 ], "stddev": [ - 3260 + 3305 ], "stddev_pop": [ - 3262 + 3307 ], "stddev_samp": [ - 3264 + 3309 ], "sum": [ - 3268 + 3313 ], "var_pop": [ - 3272 + 3317 ], "var_samp": [ - 3274 + 3319 ], "variance": [ - 3276 + 3321 ], "__typename": [ - 70 + 74 ] }, "team_scrim_request_proposals_arr_rel_insert_input": { "data": [ - 3248 + 3293 ], "on_conflict": [ - 3254 + 3299 ], "__typename": [ - 70 + 74 ] }, "team_scrim_request_proposals_avg_fields": { @@ -78380,189 +80106,189 @@ export default { 29 ], "__typename": [ - 70 + 74 ] }, "team_scrim_request_proposals_avg_order_by": { "proposed_by_steam_id": [ - 2011 + 2015 ], "__typename": [ - 70 + 74 ] }, "team_scrim_request_proposals_bool_exp": { "_and": [ - 3245 + 3290 ], "_not": [ - 3245 + 3290 ], "_or": [ - 3245 + 3290 ], "created_at": [ - 3422 + 3467 ], "id": [ - 3820 + 3865 ], "proposed_by": [ - 2882 + 2918 ], "proposed_by_steam_id": [ - 171 + 175 ], "proposed_by_team": [ - 3387 + 3432 ], "proposed_by_team_id": [ - 3820 + 3865 ], "proposed_scheduled_at": [ - 3422 + 3467 ], "request": [ - 3288 + 3333 ], "request_id": [ - 3820 + 3865 ], "__typename": [ - 70 + 74 ] }, "team_scrim_request_proposals_constraint": {}, "team_scrim_request_proposals_inc_input": { "proposed_by_steam_id": [ - 169 + 173 ], "__typename": [ - 70 + 74 ] }, "team_scrim_request_proposals_insert_input": { "created_at": [ - 3421 + 3466 ], "id": [ - 3818 + 3863 ], "proposed_by": [ - 2889 + 2925 ], "proposed_by_steam_id": [ - 169 + 173 ], "proposed_by_team": [ - 3396 + 3441 ], "proposed_by_team_id": [ - 3818 + 3863 ], "proposed_scheduled_at": [ - 3421 + 3466 ], "request": [ - 3297 + 3342 ], "request_id": [ - 3818 + 3863 ], "__typename": [ - 70 + 74 ] }, "team_scrim_request_proposals_max_fields": { "created_at": [ - 3421 + 3466 ], "id": [ - 3818 + 3863 ], "proposed_by_steam_id": [ - 169 + 173 ], "proposed_by_team_id": [ - 3818 + 3863 ], "proposed_scheduled_at": [ - 3421 + 3466 ], "request_id": [ - 3818 + 3863 ], "__typename": [ - 70 + 74 ] }, "team_scrim_request_proposals_max_order_by": { "created_at": [ - 2011 + 2015 ], "id": [ - 2011 + 2015 ], "proposed_by_steam_id": [ - 2011 + 2015 ], "proposed_by_team_id": [ - 2011 + 2015 ], "proposed_scheduled_at": [ - 2011 + 2015 ], "request_id": [ - 2011 + 2015 ], "__typename": [ - 70 + 74 ] }, "team_scrim_request_proposals_min_fields": { "created_at": [ - 3421 + 3466 ], "id": [ - 3818 + 3863 ], "proposed_by_steam_id": [ - 169 + 173 ], "proposed_by_team_id": [ - 3818 + 3863 ], "proposed_scheduled_at": [ - 3421 + 3466 ], "request_id": [ - 3818 + 3863 ], "__typename": [ - 70 + 74 ] }, "team_scrim_request_proposals_min_order_by": { "created_at": [ - 2011 + 2015 ], "id": [ - 2011 + 2015 ], "proposed_by_steam_id": [ - 2011 + 2015 ], "proposed_by_team_id": [ - 2011 + 2015 ], "proposed_scheduled_at": [ - 2011 + 2015 ], "request_id": [ - 2011 + 2015 ], "__typename": [ - 70 + 74 ] }, "team_scrim_request_proposals_mutation_response": { @@ -78570,88 +80296,88 @@ export default { 38 ], "returning": [ - 3236 + 3281 ], "__typename": [ - 70 + 74 ] }, "team_scrim_request_proposals_on_conflict": { "constraint": [ - 3246 + 3291 ], "update_columns": [ - 3269 + 3314 ], "where": [ - 3245 + 3290 ], "__typename": [ - 70 + 74 ] }, "team_scrim_request_proposals_order_by": { "created_at": [ - 2011 + 2015 ], "id": [ - 2011 + 2015 ], "proposed_by": [ - 2891 + 2927 ], "proposed_by_steam_id": [ - 2011 + 2015 ], "proposed_by_team": [ - 3398 + 3443 ], "proposed_by_team_id": [ - 2011 + 2015 ], "proposed_scheduled_at": [ - 2011 + 2015 ], "request": [ - 3299 + 3344 ], "request_id": [ - 2011 + 2015 ], "__typename": [ - 70 + 74 ] }, "team_scrim_request_proposals_pk_columns_input": { "id": [ - 3818 + 3863 ], "__typename": [ - 70 + 74 ] }, "team_scrim_request_proposals_select_column": {}, "team_scrim_request_proposals_set_input": { "created_at": [ - 3421 + 3466 ], "id": [ - 3818 + 3863 ], "proposed_by_steam_id": [ - 169 + 173 ], "proposed_by_team_id": [ - 3818 + 3863 ], "proposed_scheduled_at": [ - 3421 + 3466 ], "request_id": [ - 3818 + 3863 ], "__typename": [ - 70 + 74 ] }, "team_scrim_request_proposals_stddev_fields": { @@ -78659,15 +80385,15 @@ export default { 29 ], "__typename": [ - 70 + 74 ] }, "team_scrim_request_proposals_stddev_order_by": { "proposed_by_steam_id": [ - 2011 + 2015 ], "__typename": [ - 70 + 74 ] }, "team_scrim_request_proposals_stddev_pop_fields": { @@ -78675,15 +80401,15 @@ export default { 29 ], "__typename": [ - 70 + 74 ] }, "team_scrim_request_proposals_stddev_pop_order_by": { "proposed_by_steam_id": [ - 2011 + 2015 ], "__typename": [ - 70 + 74 ] }, "team_scrim_request_proposals_stddev_samp_fields": { @@ -78691,80 +80417,80 @@ export default { 29 ], "__typename": [ - 70 + 74 ] }, "team_scrim_request_proposals_stddev_samp_order_by": { "proposed_by_steam_id": [ - 2011 + 2015 ], "__typename": [ - 70 + 74 ] }, "team_scrim_request_proposals_stream_cursor_input": { "initial_value": [ - 3266 + 3311 ], "ordering": [ - 224 + 228 ], "__typename": [ - 70 + 74 ] }, "team_scrim_request_proposals_stream_cursor_value_input": { "created_at": [ - 3421 + 3466 ], "id": [ - 3818 + 3863 ], "proposed_by_steam_id": [ - 169 + 173 ], "proposed_by_team_id": [ - 3818 + 3863 ], "proposed_scheduled_at": [ - 3421 + 3466 ], "request_id": [ - 3818 + 3863 ], "__typename": [ - 70 + 74 ] }, "team_scrim_request_proposals_sum_fields": { "proposed_by_steam_id": [ - 169 + 173 ], "__typename": [ - 70 + 74 ] }, "team_scrim_request_proposals_sum_order_by": { "proposed_by_steam_id": [ - 2011 + 2015 ], "__typename": [ - 70 + 74 ] }, "team_scrim_request_proposals_update_column": {}, "team_scrim_request_proposals_updates": { "_inc": [ - 3247 + 3292 ], "_set": [ - 3258 + 3303 ], "where": [ - 3245 + 3290 ], "__typename": [ - 70 + 74 ] }, "team_scrim_request_proposals_var_pop_fields": { @@ -78772,15 +80498,15 @@ export default { 29 ], "__typename": [ - 70 + 74 ] }, "team_scrim_request_proposals_var_pop_order_by": { "proposed_by_steam_id": [ - 2011 + 2015 ], "__typename": [ - 70 + 74 ] }, "team_scrim_request_proposals_var_samp_fields": { @@ -78788,15 +80514,15 @@ export default { 29 ], "__typename": [ - 70 + 74 ] }, "team_scrim_request_proposals_var_samp_order_by": { "proposed_by_steam_id": [ - 2011 + 2015 ], "__typename": [ - 70 + 74 ] }, "team_scrim_request_proposals_variance_fields": { @@ -78804,15 +80530,15 @@ export default { 29 ], "__typename": [ - 70 + 74 ] }, "team_scrim_request_proposals_variance_order_by": { "proposed_by_steam_id": [ - 2011 + 2015 ], "__typename": [ - 70 + 74 ] }, "team_scrim_requests": { @@ -78820,55 +80546,55 @@ export default { 3 ], "awaiting_team": [ - 3378 + 3423 ], "awaiting_team_id": [ - 3818 + 3863 ], "canceled_by_team_id": [ - 3818 + 3863 ], "canceled_late": [ 3 ], "created_at": [ - 3421 + 3466 ], "expires_at": [ - 3421 + 3466 ], "from_team": [ - 3378 + 3423 ], "from_team_checked_in": [ 3 ], "from_team_id": [ - 3818 + 3863 ], "id": [ - 3818 + 3863 ], "match": [ - 1826 + 1830 ], "match_id": [ - 3818 + 3863 ], "match_options": [ - 1706 + 1710 ], "match_options_id": [ - 3818 + 3863 ], "match_outcome": [ - 70 + 74 ], "proposals": [ - 3236, + 3281, { "distinct_on": [ - 3257, + 3302, "[team_scrim_request_proposals_select_column!]" ], "limit": [ @@ -78878,19 +80604,19 @@ export default { 38 ], "order_by": [ - 3255, + 3300, "[team_scrim_request_proposals_order_by!]" ], "where": [ - 3245 + 3290 ] } ], "proposals_aggregate": [ - 3237, + 3282, { "distinct_on": [ - 3257, + 3302, "[team_scrim_request_proposals_select_column!]" ], "limit": [ @@ -78900,130 +80626,130 @@ export default { 38 ], "order_by": [ - 3255, + 3300, "[team_scrim_request_proposals_order_by!]" ], "where": [ - 3245 + 3290 ] } ], "proposed_scheduled_at": [ - 3421 + 3466 ], "region": [ - 70 + 74 ], "requested_by": [ - 2878 + 2914 ], "requested_by_steam_id": [ - 169 + 173 ], "responded_at": [ - 3421 + 3466 ], "status": [ - 846 + 850 ], "to_team": [ - 3378 + 3423 ], "to_team_checked_in": [ 3 ], "to_team_id": [ - 3818 + 3863 ], "__typename": [ - 70 + 74 ] }, "team_scrim_requests_aggregate": { "aggregate": [ - 3283 + 3328 ], "nodes": [ - 3277 + 3322 ], "__typename": [ - 70 + 74 ] }, "team_scrim_requests_aggregate_bool_exp": { "bool_and": [ - 3280 + 3325 ], "bool_or": [ - 3281 + 3326 ], "count": [ - 3282 + 3327 ], "__typename": [ - 70 + 74 ] }, "team_scrim_requests_aggregate_bool_exp_bool_and": { "arguments": [ - 3302 + 3347 ], "distinct": [ 3 ], "filter": [ - 3288 + 3333 ], "predicate": [ 4 ], "__typename": [ - 70 + 74 ] }, "team_scrim_requests_aggregate_bool_exp_bool_or": { "arguments": [ - 3303 + 3348 ], "distinct": [ 3 ], "filter": [ - 3288 + 3333 ], "predicate": [ 4 ], "__typename": [ - 70 + 74 ] }, "team_scrim_requests_aggregate_bool_exp_count": { "arguments": [ - 3301 + 3346 ], "distinct": [ 3 ], "filter": [ - 3288 + 3333 ], "predicate": [ 39 ], "__typename": [ - 70 + 74 ] }, "team_scrim_requests_aggregate_fields": { "avg": [ - 3286 + 3331 ], "count": [ 38, { "columns": [ - 3301, + 3346, "[team_scrim_requests_select_column!]" ], "distinct": [ @@ -79032,83 +80758,83 @@ export default { } ], "max": [ - 3292 + 3337 ], "min": [ - 3294 + 3339 ], "stddev": [ - 3305 + 3350 ], "stddev_pop": [ - 3307 + 3352 ], "stddev_samp": [ - 3309 + 3354 ], "sum": [ - 3313 + 3358 ], "var_pop": [ - 3317 + 3362 ], "var_samp": [ - 3319 + 3364 ], "variance": [ - 3321 + 3366 ], "__typename": [ - 70 + 74 ] }, "team_scrim_requests_aggregate_order_by": { "avg": [ - 3287 + 3332 ], "count": [ - 2011 + 2015 ], "max": [ - 3293 + 3338 ], "min": [ - 3295 + 3340 ], "stddev": [ - 3306 + 3351 ], "stddev_pop": [ - 3308 + 3353 ], "stddev_samp": [ - 3310 + 3355 ], "sum": [ - 3314 + 3359 ], "var_pop": [ - 3318 + 3363 ], "var_samp": [ - 3320 + 3365 ], "variance": [ - 3322 + 3367 ], "__typename": [ - 70 + 74 ] }, "team_scrim_requests_arr_rel_insert_input": { "data": [ - 3291 + 3336 ], "on_conflict": [ - 3298 + 3343 ], "__typename": [ - 70 + 74 ] }, "team_scrim_requests_avg_fields": { @@ -79116,119 +80842,119 @@ export default { 29 ], "__typename": [ - 70 + 74 ] }, "team_scrim_requests_avg_order_by": { "requested_by_steam_id": [ - 2011 + 2015 ], "__typename": [ - 70 + 74 ] }, "team_scrim_requests_bool_exp": { "_and": [ - 3288 + 3333 ], "_not": [ - 3288 + 3333 ], "_or": [ - 3288 + 3333 ], "auto_generated": [ 4 ], "awaiting_team": [ - 3387 + 3432 ], "awaiting_team_id": [ - 3820 + 3865 ], "canceled_by_team_id": [ - 3820 + 3865 ], "canceled_late": [ 4 ], "created_at": [ - 3422 + 3467 ], "expires_at": [ - 3422 + 3467 ], "from_team": [ - 3387 + 3432 ], "from_team_checked_in": [ 4 ], "from_team_id": [ - 3820 + 3865 ], "id": [ - 3820 + 3865 ], "match": [ - 1835 + 1839 ], "match_id": [ - 3820 + 3865 ], "match_options": [ - 1710 + 1714 ], "match_options_id": [ - 3820 + 3865 ], "match_outcome": [ - 72 + 76 ], "proposals": [ - 3245 + 3290 ], "proposals_aggregate": [ - 3238 + 3283 ], "proposed_scheduled_at": [ - 3422 + 3467 ], "region": [ - 72 + 76 ], "requested_by": [ - 2882 + 2918 ], "requested_by_steam_id": [ - 171 + 175 ], "responded_at": [ - 3422 + 3467 ], "status": [ - 847 + 851 ], "to_team": [ - 3387 + 3432 ], "to_team_checked_in": [ 4 ], "to_team_id": [ - 3820 + 3865 ], "__typename": [ - 70 + 74 ] }, "team_scrim_requests_constraint": {}, "team_scrim_requests_inc_input": { "requested_by_steam_id": [ - 169 + 173 ], "__typename": [ - 70 + 74 ] }, "team_scrim_requests_insert_input": { @@ -79236,270 +80962,270 @@ export default { 3 ], "awaiting_team": [ - 3396 + 3441 ], "awaiting_team_id": [ - 3818 + 3863 ], "canceled_by_team_id": [ - 3818 + 3863 ], "canceled_late": [ 3 ], "created_at": [ - 3421 + 3466 ], "expires_at": [ - 3421 + 3466 ], "from_team": [ - 3396 + 3441 ], "from_team_checked_in": [ 3 ], "from_team_id": [ - 3818 + 3863 ], "id": [ - 3818 + 3863 ], "match": [ - 1844 + 1848 ], "match_id": [ - 3818 + 3863 ], "match_options": [ - 1717 + 1721 ], "match_options_id": [ - 3818 + 3863 ], "match_outcome": [ - 70 + 74 ], "proposals": [ - 3242 + 3287 ], "proposed_scheduled_at": [ - 3421 + 3466 ], "region": [ - 70 + 74 ], "requested_by": [ - 2889 + 2925 ], "requested_by_steam_id": [ - 169 + 173 ], "responded_at": [ - 3421 + 3466 ], "status": [ - 846 + 850 ], "to_team": [ - 3396 + 3441 ], "to_team_checked_in": [ 3 ], "to_team_id": [ - 3818 + 3863 ], "__typename": [ - 70 + 74 ] }, "team_scrim_requests_max_fields": { "awaiting_team_id": [ - 3818 + 3863 ], "canceled_by_team_id": [ - 3818 + 3863 ], "created_at": [ - 3421 + 3466 ], "expires_at": [ - 3421 + 3466 ], "from_team_id": [ - 3818 + 3863 ], "id": [ - 3818 + 3863 ], "match_id": [ - 3818 + 3863 ], "match_options_id": [ - 3818 + 3863 ], "match_outcome": [ - 70 + 74 ], "proposed_scheduled_at": [ - 3421 + 3466 ], "region": [ - 70 + 74 ], "requested_by_steam_id": [ - 169 + 173 ], "responded_at": [ - 3421 + 3466 ], "to_team_id": [ - 3818 + 3863 ], "__typename": [ - 70 + 74 ] }, "team_scrim_requests_max_order_by": { "awaiting_team_id": [ - 2011 + 2015 ], "canceled_by_team_id": [ - 2011 + 2015 ], "created_at": [ - 2011 + 2015 ], "expires_at": [ - 2011 + 2015 ], "from_team_id": [ - 2011 + 2015 ], "id": [ - 2011 + 2015 ], "match_id": [ - 2011 + 2015 ], "match_options_id": [ - 2011 + 2015 ], "match_outcome": [ - 2011 + 2015 ], "proposed_scheduled_at": [ - 2011 + 2015 ], "region": [ - 2011 + 2015 ], "requested_by_steam_id": [ - 2011 + 2015 ], "responded_at": [ - 2011 + 2015 ], "to_team_id": [ - 2011 + 2015 ], "__typename": [ - 70 + 74 ] }, "team_scrim_requests_min_fields": { "awaiting_team_id": [ - 3818 + 3863 ], "canceled_by_team_id": [ - 3818 + 3863 ], "created_at": [ - 3421 + 3466 ], "expires_at": [ - 3421 + 3466 ], "from_team_id": [ - 3818 + 3863 ], "id": [ - 3818 + 3863 ], "match_id": [ - 3818 + 3863 ], "match_options_id": [ - 3818 + 3863 ], "match_outcome": [ - 70 + 74 ], "proposed_scheduled_at": [ - 3421 + 3466 ], "region": [ - 70 + 74 ], "requested_by_steam_id": [ - 169 + 173 ], "responded_at": [ - 3421 + 3466 ], "to_team_id": [ - 3818 + 3863 ], "__typename": [ - 70 + 74 ] }, "team_scrim_requests_min_order_by": { "awaiting_team_id": [ - 2011 + 2015 ], "canceled_by_team_id": [ - 2011 + 2015 ], "created_at": [ - 2011 + 2015 ], "expires_at": [ - 2011 + 2015 ], "from_team_id": [ - 2011 + 2015 ], "id": [ - 2011 + 2015 ], "match_id": [ - 2011 + 2015 ], "match_options_id": [ - 2011 + 2015 ], "match_outcome": [ - 2011 + 2015 ], "proposed_scheduled_at": [ - 2011 + 2015 ], "region": [ - 2011 + 2015 ], "requested_by_steam_id": [ - 2011 + 2015 ], "responded_at": [ - 2011 + 2015 ], "to_team_id": [ - 2011 + 2015 ], "__typename": [ - 70 + 74 ] }, "team_scrim_requests_mutation_response": { @@ -79507,126 +81233,126 @@ export default { 38 ], "returning": [ - 3277 + 3322 ], "__typename": [ - 70 + 74 ] }, "team_scrim_requests_obj_rel_insert_input": { "data": [ - 3291 + 3336 ], "on_conflict": [ - 3298 + 3343 ], "__typename": [ - 70 + 74 ] }, "team_scrim_requests_on_conflict": { "constraint": [ - 3289 + 3334 ], "update_columns": [ - 3315 + 3360 ], "where": [ - 3288 + 3333 ], "__typename": [ - 70 + 74 ] }, "team_scrim_requests_order_by": { "auto_generated": [ - 2011 + 2015 ], "awaiting_team": [ - 3398 + 3443 ], "awaiting_team_id": [ - 2011 + 2015 ], "canceled_by_team_id": [ - 2011 + 2015 ], "canceled_late": [ - 2011 + 2015 ], "created_at": [ - 2011 + 2015 ], "expires_at": [ - 2011 + 2015 ], "from_team": [ - 3398 + 3443 ], "from_team_checked_in": [ - 2011 + 2015 ], "from_team_id": [ - 2011 + 2015 ], "id": [ - 2011 + 2015 ], "match": [ - 1846 + 1850 ], "match_id": [ - 2011 + 2015 ], "match_options": [ - 1719 + 1723 ], "match_options_id": [ - 2011 + 2015 ], "match_outcome": [ - 2011 + 2015 ], "proposals_aggregate": [ - 3241 + 3286 ], "proposed_scheduled_at": [ - 2011 + 2015 ], "region": [ - 2011 + 2015 ], "requested_by": [ - 2891 + 2927 ], "requested_by_steam_id": [ - 2011 + 2015 ], "responded_at": [ - 2011 + 2015 ], "status": [ - 2011 + 2015 ], "to_team": [ - 3398 + 3443 ], "to_team_checked_in": [ - 2011 + 2015 ], "to_team_id": [ - 2011 + 2015 ], "__typename": [ - 70 + 74 ] }, "team_scrim_requests_pk_columns_input": { "id": [ - 3818 + 3863 ], "__typename": [ - 70 + 74 ] }, "team_scrim_requests_select_column": {}, @@ -79637,61 +81363,61 @@ export default { 3 ], "awaiting_team_id": [ - 3818 + 3863 ], "canceled_by_team_id": [ - 3818 + 3863 ], "canceled_late": [ 3 ], "created_at": [ - 3421 + 3466 ], "expires_at": [ - 3421 + 3466 ], "from_team_checked_in": [ 3 ], "from_team_id": [ - 3818 + 3863 ], "id": [ - 3818 + 3863 ], "match_id": [ - 3818 + 3863 ], "match_options_id": [ - 3818 + 3863 ], "match_outcome": [ - 70 + 74 ], "proposed_scheduled_at": [ - 3421 + 3466 ], "region": [ - 70 + 74 ], "requested_by_steam_id": [ - 169 + 173 ], "responded_at": [ - 3421 + 3466 ], "status": [ - 846 + 850 ], "to_team_checked_in": [ 3 ], "to_team_id": [ - 3818 + 3863 ], "__typename": [ - 70 + 74 ] }, "team_scrim_requests_stddev_fields": { @@ -79699,15 +81425,15 @@ export default { 29 ], "__typename": [ - 70 + 74 ] }, "team_scrim_requests_stddev_order_by": { "requested_by_steam_id": [ - 2011 + 2015 ], "__typename": [ - 70 + 74 ] }, "team_scrim_requests_stddev_pop_fields": { @@ -79715,15 +81441,15 @@ export default { 29 ], "__typename": [ - 70 + 74 ] }, "team_scrim_requests_stddev_pop_order_by": { "requested_by_steam_id": [ - 2011 + 2015 ], "__typename": [ - 70 + 74 ] }, "team_scrim_requests_stddev_samp_fields": { @@ -79731,26 +81457,26 @@ export default { 29 ], "__typename": [ - 70 + 74 ] }, "team_scrim_requests_stddev_samp_order_by": { "requested_by_steam_id": [ - 2011 + 2015 ], "__typename": [ - 70 + 74 ] }, "team_scrim_requests_stream_cursor_input": { "initial_value": [ - 3312 + 3357 ], "ordering": [ - 224 + 228 ], "__typename": [ - 70 + 74 ] }, "team_scrim_requests_stream_cursor_value_input": { @@ -79758,92 +81484,92 @@ export default { 3 ], "awaiting_team_id": [ - 3818 + 3863 ], "canceled_by_team_id": [ - 3818 + 3863 ], "canceled_late": [ 3 ], "created_at": [ - 3421 + 3466 ], "expires_at": [ - 3421 + 3466 ], "from_team_checked_in": [ 3 ], "from_team_id": [ - 3818 + 3863 ], "id": [ - 3818 + 3863 ], "match_id": [ - 3818 + 3863 ], "match_options_id": [ - 3818 + 3863 ], "match_outcome": [ - 70 + 74 ], "proposed_scheduled_at": [ - 3421 + 3466 ], "region": [ - 70 + 74 ], "requested_by_steam_id": [ - 169 + 173 ], "responded_at": [ - 3421 + 3466 ], "status": [ - 846 + 850 ], "to_team_checked_in": [ 3 ], "to_team_id": [ - 3818 + 3863 ], "__typename": [ - 70 + 74 ] }, "team_scrim_requests_sum_fields": { "requested_by_steam_id": [ - 169 + 173 ], "__typename": [ - 70 + 74 ] }, "team_scrim_requests_sum_order_by": { "requested_by_steam_id": [ - 2011 + 2015 ], "__typename": [ - 70 + 74 ] }, "team_scrim_requests_update_column": {}, "team_scrim_requests_updates": { "_inc": [ - 3290 + 3335 ], "_set": [ - 3304 + 3349 ], "where": [ - 3288 + 3333 ], "__typename": [ - 70 + 74 ] }, "team_scrim_requests_var_pop_fields": { @@ -79851,15 +81577,15 @@ export default { 29 ], "__typename": [ - 70 + 74 ] }, "team_scrim_requests_var_pop_order_by": { "requested_by_steam_id": [ - 2011 + 2015 ], "__typename": [ - 70 + 74 ] }, "team_scrim_requests_var_samp_fields": { @@ -79867,15 +81593,15 @@ export default { 29 ], "__typename": [ - 70 + 74 ] }, "team_scrim_requests_var_samp_order_by": { "requested_by_steam_id": [ - 2011 + 2015 ], "__typename": [ - 70 + 74 ] }, "team_scrim_requests_variance_fields": { @@ -79883,15 +81609,15 @@ export default { 29 ], "__typename": [ - 70 + 74 ] }, "team_scrim_requests_variance_order_by": { "requested_by_steam_id": [ - 2011 + 2015 ], "__typename": [ - 70 + 74 ] }, "team_scrim_settings": { @@ -79899,7 +81625,7 @@ export default { 3 ], "created_at": [ - 3421 + 3466 ], "elo_max": [ 38 @@ -79911,50 +81637,50 @@ export default { 3 ], "id": [ - 3818 + 3863 ], "map_ids": [ - 3818 + 3863 ], "notes": [ - 70 + 74 ], "regions": [ - 70 + 74 ], "team": [ - 3378 + 3423 ], "team_id": [ - 3818 + 3863 ], "updated_at": [ - 3421 + 3466 ], "__typename": [ - 70 + 74 ] }, "team_scrim_settings_aggregate": { "aggregate": [ - 3325 + 3370 ], "nodes": [ - 3323 + 3368 ], "__typename": [ - 70 + 74 ] }, "team_scrim_settings_aggregate_fields": { "avg": [ - 3326 + 3371 ], "count": [ 38, { "columns": [ - 3338, + 3383, "[team_scrim_settings_select_column!]" ], "distinct": [ @@ -79963,34 +81689,34 @@ export default { } ], "max": [ - 3331 + 3376 ], "min": [ - 3332 + 3377 ], "stddev": [ - 3340 + 3385 ], "stddev_pop": [ - 3341 + 3386 ], "stddev_samp": [ - 3342 + 3387 ], "sum": [ - 3345 + 3390 ], "var_pop": [ - 3348 + 3393 ], "var_samp": [ - 3349 + 3394 ], "variance": [ - 3350 + 3395 ], "__typename": [ - 70 + 74 ] }, "team_scrim_settings_avg_fields": { @@ -80001,24 +81727,24 @@ export default { 29 ], "__typename": [ - 70 + 74 ] }, "team_scrim_settings_bool_exp": { "_and": [ - 3327 + 3372 ], "_not": [ - 3327 + 3372 ], "_or": [ - 3327 + 3372 ], "allow_outside_availability": [ 4 ], "created_at": [ - 3422 + 3467 ], "elo_max": [ 39 @@ -80030,28 +81756,28 @@ export default { 4 ], "id": [ - 3820 + 3865 ], "map_ids": [ - 3819 + 3864 ], "notes": [ - 72 + 76 ], "regions": [ - 71 + 75 ], "team": [ - 3387 + 3432 ], "team_id": [ - 3820 + 3865 ], "updated_at": [ - 3422 + 3467 ], "__typename": [ - 70 + 74 ] }, "team_scrim_settings_constraint": {}, @@ -80063,7 +81789,7 @@ export default { 38 ], "__typename": [ - 70 + 74 ] }, "team_scrim_settings_insert_input": { @@ -80071,7 +81797,7 @@ export default { 3 ], "created_at": [ - 3421 + 3466 ], "elo_max": [ 38 @@ -80083,33 +81809,33 @@ export default { 3 ], "id": [ - 3818 + 3863 ], "map_ids": [ - 3818 + 3863 ], "notes": [ - 70 + 74 ], "regions": [ - 70 + 74 ], "team": [ - 3396 + 3441 ], "team_id": [ - 3818 + 3863 ], "updated_at": [ - 3421 + 3466 ], "__typename": [ - 70 + 74 ] }, "team_scrim_settings_max_fields": { "created_at": [ - 3421 + 3466 ], "elo_max": [ 38 @@ -80118,30 +81844,30 @@ export default { 38 ], "id": [ - 3818 + 3863 ], "map_ids": [ - 3818 + 3863 ], "notes": [ - 70 + 74 ], "regions": [ - 70 + 74 ], "team_id": [ - 3818 + 3863 ], "updated_at": [ - 3421 + 3466 ], "__typename": [ - 70 + 74 ] }, "team_scrim_settings_min_fields": { "created_at": [ - 3421 + 3466 ], "elo_max": [ 38 @@ -80150,25 +81876,25 @@ export default { 38 ], "id": [ - 3818 + 3863 ], "map_ids": [ - 3818 + 3863 ], "notes": [ - 70 + 74 ], "regions": [ - 70 + 74 ], "team_id": [ - 3818 + 3863 ], "updated_at": [ - 3421 + 3466 ], "__typename": [ - 70 + 74 ] }, "team_scrim_settings_mutation_response": { @@ -80176,84 +81902,84 @@ export default { 38 ], "returning": [ - 3323 + 3368 ], "__typename": [ - 70 + 74 ] }, "team_scrim_settings_obj_rel_insert_input": { "data": [ - 3330 + 3375 ], "on_conflict": [ - 3335 + 3380 ], "__typename": [ - 70 + 74 ] }, "team_scrim_settings_on_conflict": { "constraint": [ - 3328 + 3373 ], "update_columns": [ - 3346 + 3391 ], "where": [ - 3327 + 3372 ], "__typename": [ - 70 + 74 ] }, "team_scrim_settings_order_by": { "allow_outside_availability": [ - 2011 + 2015 ], "created_at": [ - 2011 + 2015 ], "elo_max": [ - 2011 + 2015 ], "elo_min": [ - 2011 + 2015 ], "enabled": [ - 2011 + 2015 ], "id": [ - 2011 + 2015 ], "map_ids": [ - 2011 + 2015 ], "notes": [ - 2011 + 2015 ], "regions": [ - 2011 + 2015 ], "team": [ - 3398 + 3443 ], "team_id": [ - 2011 + 2015 ], "updated_at": [ - 2011 + 2015 ], "__typename": [ - 70 + 74 ] }, "team_scrim_settings_pk_columns_input": { "id": [ - 3818 + 3863 ], "__typename": [ - 70 + 74 ] }, "team_scrim_settings_select_column": {}, @@ -80262,7 +81988,7 @@ export default { 3 ], "created_at": [ - 3421 + 3466 ], "elo_max": [ 38 @@ -80274,25 +82000,25 @@ export default { 3 ], "id": [ - 3818 + 3863 ], "map_ids": [ - 3818 + 3863 ], "notes": [ - 70 + 74 ], "regions": [ - 70 + 74 ], "team_id": [ - 3818 + 3863 ], "updated_at": [ - 3421 + 3466 ], "__typename": [ - 70 + 74 ] }, "team_scrim_settings_stddev_fields": { @@ -80303,7 +82029,7 @@ export default { 29 ], "__typename": [ - 70 + 74 ] }, "team_scrim_settings_stddev_pop_fields": { @@ -80314,7 +82040,7 @@ export default { 29 ], "__typename": [ - 70 + 74 ] }, "team_scrim_settings_stddev_samp_fields": { @@ -80325,18 +82051,18 @@ export default { 29 ], "__typename": [ - 70 + 74 ] }, "team_scrim_settings_stream_cursor_input": { "initial_value": [ - 3344 + 3389 ], "ordering": [ - 224 + 228 ], "__typename": [ - 70 + 74 ] }, "team_scrim_settings_stream_cursor_value_input": { @@ -80344,7 +82070,7 @@ export default { 3 ], "created_at": [ - 3421 + 3466 ], "elo_max": [ 38 @@ -80356,25 +82082,25 @@ export default { 3 ], "id": [ - 3818 + 3863 ], "map_ids": [ - 3818 + 3863 ], "notes": [ - 70 + 74 ], "regions": [ - 70 + 74 ], "team_id": [ - 3818 + 3863 ], "updated_at": [ - 3421 + 3466 ], "__typename": [ - 70 + 74 ] }, "team_scrim_settings_sum_fields": { @@ -80385,22 +82111,22 @@ export default { 38 ], "__typename": [ - 70 + 74 ] }, "team_scrim_settings_update_column": {}, "team_scrim_settings_updates": { "_inc": [ - 3329 + 3374 ], "_set": [ - 3339 + 3384 ], "where": [ - 3327 + 3372 ], "__typename": [ - 70 + 74 ] }, "team_scrim_settings_var_pop_fields": { @@ -80411,7 +82137,7 @@ export default { 29 ], "__typename": [ - 70 + 74 ] }, "team_scrim_settings_var_samp_fields": { @@ -80422,7 +82148,7 @@ export default { 29 ], "__typename": [ - 70 + 74 ] }, "team_scrim_settings_variance_fields": { @@ -80433,55 +82159,55 @@ export default { 29 ], "__typename": [ - 70 + 74 ] }, "team_suggestions": { "created_at": [ - 3421 + 3466 ], "group_hash": [ - 70 + 74 ], "id": [ - 3818 + 3863 ], "last_notified_at": [ - 3421 + 3466 ], "member_steam_ids": [ - 169 + 173 ], "status": [ - 70 + 74 ], "together_count": [ 38 ], "__typename": [ - 70 + 74 ] }, "team_suggestions_aggregate": { "aggregate": [ - 3353 + 3398 ], "nodes": [ - 3351 + 3396 ], "__typename": [ - 70 + 74 ] }, "team_suggestions_aggregate_fields": { "avg": [ - 3354 + 3399 ], "count": [ 38, { "columns": [ - 3365, + 3410, "[team_suggestions_select_column!]" ], "distinct": [ @@ -80490,34 +82216,34 @@ export default { } ], "max": [ - 3359 + 3404 ], "min": [ - 3360 + 3405 ], "stddev": [ - 3367 + 3412 ], "stddev_pop": [ - 3368 + 3413 ], "stddev_samp": [ - 3369 + 3414 ], "sum": [ - 3372 + 3417 ], "var_pop": [ - 3375 + 3420 ], "var_samp": [ - 3376 + 3421 ], "variance": [ - 3377 + 3422 ], "__typename": [ - 70 + 74 ] }, "team_suggestions_avg_fields": { @@ -80525,42 +82251,42 @@ export default { 29 ], "__typename": [ - 70 + 74 ] }, "team_suggestions_bool_exp": { "_and": [ - 3355 + 3400 ], "_not": [ - 3355 + 3400 ], "_or": [ - 3355 + 3400 ], "created_at": [ - 3422 + 3467 ], "group_hash": [ - 72 + 76 ], "id": [ - 3820 + 3865 ], "last_notified_at": [ - 3422 + 3467 ], "member_steam_ids": [ - 170 + 174 ], "status": [ - 72 + 76 ], "together_count": [ 39 ], "__typename": [ - 70 + 74 ] }, "team_suggestions_constraint": {}, @@ -80569,85 +82295,85 @@ export default { 38 ], "__typename": [ - 70 + 74 ] }, "team_suggestions_insert_input": { "created_at": [ - 3421 + 3466 ], "group_hash": [ - 70 + 74 ], "id": [ - 3818 + 3863 ], "last_notified_at": [ - 3421 + 3466 ], "member_steam_ids": [ - 169 + 173 ], "status": [ - 70 + 74 ], "together_count": [ 38 ], "__typename": [ - 70 + 74 ] }, "team_suggestions_max_fields": { "created_at": [ - 3421 + 3466 ], "group_hash": [ - 70 + 74 ], "id": [ - 3818 + 3863 ], "last_notified_at": [ - 3421 + 3466 ], "member_steam_ids": [ - 169 + 173 ], "status": [ - 70 + 74 ], "together_count": [ 38 ], "__typename": [ - 70 + 74 ] }, "team_suggestions_min_fields": { "created_at": [ - 3421 + 3466 ], "group_hash": [ - 70 + 74 ], "id": [ - 3818 + 3863 ], "last_notified_at": [ - 3421 + 3466 ], "member_steam_ids": [ - 169 + 173 ], "status": [ - 70 + 74 ], "together_count": [ 38 ], "__typename": [ - 70 + 74 ] }, "team_suggestions_mutation_response": { @@ -80655,85 +82381,85 @@ export default { 38 ], "returning": [ - 3351 + 3396 ], "__typename": [ - 70 + 74 ] }, "team_suggestions_on_conflict": { "constraint": [ - 3356 + 3401 ], "update_columns": [ - 3373 + 3418 ], "where": [ - 3355 + 3400 ], "__typename": [ - 70 + 74 ] }, "team_suggestions_order_by": { "created_at": [ - 2011 + 2015 ], "group_hash": [ - 2011 + 2015 ], "id": [ - 2011 + 2015 ], "last_notified_at": [ - 2011 + 2015 ], "member_steam_ids": [ - 2011 + 2015 ], "status": [ - 2011 + 2015 ], "together_count": [ - 2011 + 2015 ], "__typename": [ - 70 + 74 ] }, "team_suggestions_pk_columns_input": { "id": [ - 3818 + 3863 ], "__typename": [ - 70 + 74 ] }, "team_suggestions_select_column": {}, "team_suggestions_set_input": { "created_at": [ - 3421 + 3466 ], "group_hash": [ - 70 + 74 ], "id": [ - 3818 + 3863 ], "last_notified_at": [ - 3421 + 3466 ], "member_steam_ids": [ - 169 + 173 ], "status": [ - 70 + 74 ], "together_count": [ 38 ], "__typename": [ - 70 + 74 ] }, "team_suggestions_stddev_fields": { @@ -80741,7 +82467,7 @@ export default { 29 ], "__typename": [ - 70 + 74 ] }, "team_suggestions_stddev_pop_fields": { @@ -80749,7 +82475,7 @@ export default { 29 ], "__typename": [ - 70 + 74 ] }, "team_suggestions_stddev_samp_fields": { @@ -80757,44 +82483,44 @@ export default { 29 ], "__typename": [ - 70 + 74 ] }, "team_suggestions_stream_cursor_input": { "initial_value": [ - 3371 + 3416 ], "ordering": [ - 224 + 228 ], "__typename": [ - 70 + 74 ] }, "team_suggestions_stream_cursor_value_input": { "created_at": [ - 3421 + 3466 ], "group_hash": [ - 70 + 74 ], "id": [ - 3818 + 3863 ], "last_notified_at": [ - 3421 + 3466 ], "member_steam_ids": [ - 169 + 173 ], "status": [ - 70 + 74 ], "together_count": [ 38 ], "__typename": [ - 70 + 74 ] }, "team_suggestions_sum_fields": { @@ -80802,22 +82528,22 @@ export default { 38 ], "__typename": [ - 70 + 74 ] }, "team_suggestions_update_column": {}, "team_suggestions_updates": { "_inc": [ - 3357 + 3402 ], "_set": [ - 3366 + 3411 ], "where": [ - 3355 + 3400 ], "__typename": [ - 70 + 74 ] }, "team_suggestions_var_pop_fields": { @@ -80825,7 +82551,7 @@ export default { 29 ], "__typename": [ - 70 + 74 ] }, "team_suggestions_var_samp_fields": { @@ -80833,7 +82559,7 @@ export default { 29 ], "__typename": [ - 70 + 74 ] }, "team_suggestions_variance_fields": { @@ -80841,12 +82567,12 @@ export default { 29 ], "__typename": [ - 70 + 74 ] }, "teams": { "avatar_url": [ - 70 + 74 ], "can_change_role": [ 3 @@ -80861,19 +82587,19 @@ export default { 3 ], "captain": [ - 2878 + 2914 ], "captain_steam_id": [ - 169 + 173 ], "id": [ - 3818 + 3863 ], "invites": [ - 3095, + 3140, { "distinct_on": [ - 3116, + 3161, "[team_invites_select_column!]" ], "limit": [ @@ -80883,19 +82609,19 @@ export default { 38 ], "order_by": [ - 3114, + 3159, "[team_invites_order_by!]" ], "where": [ - 3104 + 3149 ] } ], "invites_aggregate": [ - 3096, + 3141, { "distinct_on": [ - 3116, + 3161, "[team_invites_select_column!]" ], "limit": [ @@ -80905,19 +82631,19 @@ export default { 38 ], "order_by": [ - 3114, + 3159, "[team_invites_order_by!]" ], "where": [ - 3104 + 3149 ] } ], "match_lineups": [ - 1506, + 1510, { "distinct_on": [ - 1528, + 1532, "[match_lineups_select_column!]" ], "limit": [ @@ -80927,19 +82653,19 @@ export default { 38 ], "order_by": [ - 1526, + 1530, "[match_lineups_order_by!]" ], "where": [ - 1515 + 1519 ] } ], "match_lineups_aggregate": [ - 1507, + 1511, { "distinct_on": [ - 1528, + 1532, "[match_lineups_select_column!]" ], "limit": [ @@ -80949,19 +82675,19 @@ export default { 38 ], "order_by": [ - 1526, + 1530, "[match_lineups_order_by!]" ], "where": [ - 1515 + 1519 ] } ], "matches": [ - 1826, + 1830, { "distinct_on": [ - 1848, + 1852, "[matches_select_column!]" ], "limit": [ @@ -80971,37 +82697,37 @@ export default { 38 ], "order_by": [ - 1846, + 1850, "[matches_order_by!]" ], "where": [ - 1835 + 1839 ] } ], "name": [ - 70 + 74 ], "owner": [ - 2878 + 2914 ], "owner_steam_id": [ - 169 + 173 ], "ranks": [ - 4367 + 4412 ], "reputation": [ - 4387 + 4432 ], "role": [ - 70 + 74 ], "roster": [ - 3136, + 3181, { "distinct_on": [ - 3159, + 3204, "[team_roster_select_column!]" ], "limit": [ @@ -81011,19 +82737,19 @@ export default { 38 ], "order_by": [ - 3157, + 3202, "[team_roster_order_by!]" ], "where": [ - 3147 + 3192 ] } ], "roster_aggregate": [ - 3137, + 3182, { "distinct_on": [ - 3159, + 3204, "[team_roster_select_column!]" ], "limit": [ @@ -81033,19 +82759,19 @@ export default { 38 ], "order_by": [ - 3157, + 3202, "[team_roster_order_by!]" ], "where": [ - 3147 + 3192 ] } ], "scrim_availability": [ - 3208, + 3253, { "distinct_on": [ - 3228, + 3273, "[team_scrim_availability_select_column!]" ], "limit": [ @@ -81055,19 +82781,19 @@ export default { 38 ], "order_by": [ - 3226, + 3271, "[team_scrim_availability_order_by!]" ], "where": [ - 3217 + 3262 ] } ], "scrim_availability_aggregate": [ - 3209, + 3254, { "distinct_on": [ - 3228, + 3273, "[team_scrim_availability_select_column!]" ], "limit": [ @@ -81077,25 +82803,25 @@ export default { 38 ], "order_by": [ - 3226, + 3271, "[team_scrim_availability_order_by!]" ], "where": [ - 3217 + 3262 ] } ], "scrim_settings": [ - 3323 + 3368 ], "short_name": [ - 70 + 74 ], "tournament_teams": [ - 3643, + 3688, { "distinct_on": [ - 3665, + 3710, "[tournament_teams_select_column!]" ], "limit": [ @@ -81105,19 +82831,19 @@ export default { 38 ], "order_by": [ - 3663, + 3708, "[tournament_teams_order_by!]" ], "where": [ - 3652 + 3697 ] } ], "tournament_teams_aggregate": [ - 3644, + 3689, { "distinct_on": [ - 3665, + 3710, "[tournament_teams_select_column!]" ], "limit": [ @@ -81127,63 +82853,63 @@ export default { 38 ], "order_by": [ - 3663, + 3708, "[tournament_teams_order_by!]" ], "where": [ - 3652 + 3697 ] } ], "__typename": [ - 70 + 74 ] }, "teams_aggregate": { "aggregate": [ - 3382 + 3427 ], "nodes": [ - 3378 + 3423 ], "__typename": [ - 70 + 74 ] }, "teams_aggregate_bool_exp": { "count": [ - 3381 + 3426 ], "__typename": [ - 70 + 74 ] }, "teams_aggregate_bool_exp_count": { "arguments": [ - 3400 + 3445 ], "distinct": [ 3 ], "filter": [ - 3387 + 3432 ], "predicate": [ 39 ], "__typename": [ - 70 + 74 ] }, "teams_aggregate_fields": { "avg": [ - 3385 + 3430 ], "count": [ 38, { "columns": [ - 3400, + 3445, "[teams_select_column!]" ], "distinct": [ @@ -81192,83 +82918,83 @@ export default { } ], "max": [ - 3391 + 3436 ], "min": [ - 3393 + 3438 ], "stddev": [ - 3402 + 3447 ], "stddev_pop": [ - 3404 + 3449 ], "stddev_samp": [ - 3406 + 3451 ], "sum": [ - 3410 + 3455 ], "var_pop": [ - 3414 + 3459 ], "var_samp": [ - 3416 + 3461 ], "variance": [ - 3418 + 3463 ], "__typename": [ - 70 + 74 ] }, "teams_aggregate_order_by": { "avg": [ - 3386 + 3431 ], "count": [ - 2011 + 2015 ], "max": [ - 3392 + 3437 ], "min": [ - 3394 + 3439 ], "stddev": [ - 3403 + 3448 ], "stddev_pop": [ - 3405 + 3450 ], "stddev_samp": [ - 3407 + 3452 ], "sum": [ - 3411 + 3456 ], "var_pop": [ - 3415 + 3460 ], "var_samp": [ - 3417 + 3462 ], "variance": [ - 3419 + 3464 ], "__typename": [ - 70 + 74 ] }, "teams_arr_rel_insert_input": { "data": [ - 3390 + 3435 ], "on_conflict": [ - 3397 + 3442 ], "__typename": [ - 70 + 74 ] }, "teams_avg_fields": { @@ -81279,32 +83005,32 @@ export default { 29 ], "__typename": [ - 70 + 74 ] }, "teams_avg_order_by": { "captain_steam_id": [ - 2011 + 2015 ], "owner_steam_id": [ - 2011 + 2015 ], "__typename": [ - 70 + 74 ] }, "teams_bool_exp": { "_and": [ - 3387 + 3432 ], "_not": [ - 3387 + 3432 ], "_or": [ - 3387 + 3432 ], "avatar_url": [ - 72 + 76 ], "can_change_role": [ 4 @@ -81319,236 +83045,236 @@ export default { 4 ], "captain": [ - 2882 + 2918 ], "captain_steam_id": [ - 171 + 175 ], "id": [ - 3820 + 3865 ], "invites": [ - 3104 + 3149 ], "invites_aggregate": [ - 3097 + 3142 ], "match_lineups": [ - 1515 + 1519 ], "match_lineups_aggregate": [ - 1508 + 1512 ], "matches": [ - 1835 + 1839 ], "name": [ - 72 + 76 ], "owner": [ - 2882 + 2918 ], "owner_steam_id": [ - 171 + 175 ], "ranks": [ - 4371 + 4416 ], "reputation": [ - 4391 + 4436 ], "role": [ - 72 + 76 ], "roster": [ - 3147 + 3192 ], "roster_aggregate": [ - 3138 + 3183 ], "scrim_availability": [ - 3217 + 3262 ], "scrim_availability_aggregate": [ - 3210 + 3255 ], "scrim_settings": [ - 3327 + 3372 ], "short_name": [ - 72 + 76 ], "tournament_teams": [ - 3652 + 3697 ], "tournament_teams_aggregate": [ - 3645 + 3690 ], "__typename": [ - 70 + 74 ] }, "teams_constraint": {}, "teams_inc_input": { "captain_steam_id": [ - 169 + 173 ], "owner_steam_id": [ - 169 + 173 ], "__typename": [ - 70 + 74 ] }, "teams_insert_input": { "avatar_url": [ - 70 + 74 ], "captain": [ - 2889 + 2925 ], "captain_steam_id": [ - 169 + 173 ], "id": [ - 3818 + 3863 ], "invites": [ - 3101 + 3146 ], "match_lineups": [ - 1512 + 1516 ], "name": [ - 70 + 74 ], "owner": [ - 2889 + 2925 ], "owner_steam_id": [ - 169 + 173 ], "ranks": [ - 4375 + 4420 ], "reputation": [ - 4395 + 4440 ], "roster": [ - 3144 + 3189 ], "scrim_availability": [ - 3216 + 3261 ], "scrim_settings": [ - 3334 + 3379 ], "short_name": [ - 70 + 74 ], "tournament_teams": [ - 3649 + 3694 ], "__typename": [ - 70 + 74 ] }, "teams_max_fields": { "avatar_url": [ - 70 + 74 ], "captain_steam_id": [ - 169 + 173 ], "id": [ - 3818 + 3863 ], "name": [ - 70 + 74 ], "owner_steam_id": [ - 169 + 173 ], "role": [ - 70 + 74 ], "short_name": [ - 70 + 74 ], "__typename": [ - 70 + 74 ] }, "teams_max_order_by": { "avatar_url": [ - 2011 + 2015 ], "captain_steam_id": [ - 2011 + 2015 ], "id": [ - 2011 + 2015 ], "name": [ - 2011 + 2015 ], "owner_steam_id": [ - 2011 + 2015 ], "short_name": [ - 2011 + 2015 ], "__typename": [ - 70 + 74 ] }, "teams_min_fields": { "avatar_url": [ - 70 + 74 ], "captain_steam_id": [ - 169 + 173 ], "id": [ - 3818 + 3863 ], "name": [ - 70 + 74 ], "owner_steam_id": [ - 169 + 173 ], "role": [ - 70 + 74 ], "short_name": [ - 70 + 74 ], "__typename": [ - 70 + 74 ] }, "teams_min_order_by": { "avatar_url": [ - 2011 + 2015 ], "captain_steam_id": [ - 2011 + 2015 ], "id": [ - 2011 + 2015 ], "name": [ - 2011 + 2015 ], "owner_steam_id": [ - 2011 + 2015 ], "short_name": [ - 2011 + 2015 ], "__typename": [ - 70 + 74 ] }, "teams_mutation_response": { @@ -81556,138 +83282,138 @@ export default { 38 ], "returning": [ - 3378 + 3423 ], "__typename": [ - 70 + 74 ] }, "teams_obj_rel_insert_input": { "data": [ - 3390 + 3435 ], "on_conflict": [ - 3397 + 3442 ], "__typename": [ - 70 + 74 ] }, "teams_on_conflict": { "constraint": [ - 3388 + 3433 ], "update_columns": [ - 3412 + 3457 ], "where": [ - 3387 + 3432 ], "__typename": [ - 70 + 74 ] }, "teams_order_by": { "avatar_url": [ - 2011 + 2015 ], "can_change_role": [ - 2011 + 2015 ], "can_invite": [ - 2011 + 2015 ], "can_manage_scrims": [ - 2011 + 2015 ], "can_remove": [ - 2011 + 2015 ], "captain": [ - 2891 + 2927 ], "captain_steam_id": [ - 2011 + 2015 ], "id": [ - 2011 + 2015 ], "invites_aggregate": [ - 3100 + 3145 ], "match_lineups_aggregate": [ - 1511 + 1515 ], "matches_aggregate": [ - 1831 + 1835 ], "name": [ - 2011 + 2015 ], "owner": [ - 2891 + 2927 ], "owner_steam_id": [ - 2011 + 2015 ], "ranks": [ - 4376 + 4421 ], "reputation": [ - 4396 + 4441 ], "role": [ - 2011 + 2015 ], "roster_aggregate": [ - 3143 + 3188 ], "scrim_availability_aggregate": [ - 3215 + 3260 ], "scrim_settings": [ - 3336 + 3381 ], "short_name": [ - 2011 + 2015 ], "tournament_teams_aggregate": [ - 3648 + 3693 ], "__typename": [ - 70 + 74 ] }, "teams_pk_columns_input": { "id": [ - 3818 + 3863 ], "__typename": [ - 70 + 74 ] }, "teams_select_column": {}, "teams_set_input": { "avatar_url": [ - 70 + 74 ], "captain_steam_id": [ - 169 + 173 ], "id": [ - 3818 + 3863 ], "name": [ - 70 + 74 ], "owner_steam_id": [ - 169 + 173 ], "short_name": [ - 70 + 74 ], "__typename": [ - 70 + 74 ] }, "teams_stddev_fields": { @@ -81698,18 +83424,18 @@ export default { 29 ], "__typename": [ - 70 + 74 ] }, "teams_stddev_order_by": { "captain_steam_id": [ - 2011 + 2015 ], "owner_steam_id": [ - 2011 + 2015 ], "__typename": [ - 70 + 74 ] }, "teams_stddev_pop_fields": { @@ -81720,18 +83446,18 @@ export default { 29 ], "__typename": [ - 70 + 74 ] }, "teams_stddev_pop_order_by": { "captain_steam_id": [ - 2011 + 2015 ], "owner_steam_id": [ - 2011 + 2015 ], "__typename": [ - 70 + 74 ] }, "teams_stddev_samp_fields": { @@ -81742,89 +83468,89 @@ export default { 29 ], "__typename": [ - 70 + 74 ] }, "teams_stddev_samp_order_by": { "captain_steam_id": [ - 2011 + 2015 ], "owner_steam_id": [ - 2011 + 2015 ], "__typename": [ - 70 + 74 ] }, "teams_stream_cursor_input": { "initial_value": [ - 3409 + 3454 ], "ordering": [ - 224 + 228 ], "__typename": [ - 70 + 74 ] }, "teams_stream_cursor_value_input": { "avatar_url": [ - 70 + 74 ], "captain_steam_id": [ - 169 + 173 ], "id": [ - 3818 + 3863 ], "name": [ - 70 + 74 ], "owner_steam_id": [ - 169 + 173 ], "short_name": [ - 70 + 74 ], "__typename": [ - 70 + 74 ] }, "teams_sum_fields": { "captain_steam_id": [ - 169 + 173 ], "owner_steam_id": [ - 169 + 173 ], "__typename": [ - 70 + 74 ] }, "teams_sum_order_by": { "captain_steam_id": [ - 2011 + 2015 ], "owner_steam_id": [ - 2011 + 2015 ], "__typename": [ - 70 + 74 ] }, "teams_update_column": {}, "teams_updates": { "_inc": [ - 3389 + 3434 ], "_set": [ - 3401 + 3446 ], "where": [ - 3387 + 3432 ], "__typename": [ - 70 + 74 ] }, "teams_var_pop_fields": { @@ -81835,18 +83561,18 @@ export default { 29 ], "__typename": [ - 70 + 74 ] }, "teams_var_pop_order_by": { "captain_steam_id": [ - 2011 + 2015 ], "owner_steam_id": [ - 2011 + 2015 ], "__typename": [ - 70 + 74 ] }, "teams_var_samp_fields": { @@ -81857,18 +83583,18 @@ export default { 29 ], "__typename": [ - 70 + 74 ] }, "teams_var_samp_order_by": { "captain_steam_id": [ - 2011 + 2015 ], "owner_steam_id": [ - 2011 + 2015 ], "__typename": [ - 70 + 74 ] }, "teams_variance_fields": { @@ -81879,52 +83605,52 @@ export default { 29 ], "__typename": [ - 70 + 74 ] }, "teams_variance_order_by": { "captain_steam_id": [ - 2011 + 2015 ], "owner_steam_id": [ - 2011 + 2015 ], "__typename": [ - 70 + 74 ] }, "timestamp": {}, "timestamptz": {}, "timestamptz_comparison_exp": { "_eq": [ - 3421 + 3466 ], "_gt": [ - 3421 + 3466 ], "_gte": [ - 3421 + 3466 ], "_in": [ - 3421 + 3466 ], "_is_null": [ 3 ], "_lt": [ - 3421 + 3466 ], "_lte": [ - 3421 + 3466 ], "_neq": [ - 3421 + 3466 ], "_nin": [ - 3421 + 3466 ], "__typename": [ - 70 + 74 ] }, "tournament_brackets": { @@ -81932,13 +83658,13 @@ export default { 3 ], "created_at": [ - 3421 + 3466 ], "feeding_brackets": [ - 3423, + 3468, { "distinct_on": [ - 3447, + 3492, "[tournament_brackets_select_column!]" ], "limit": [ @@ -81948,11 +83674,11 @@ export default { 38 ], "order_by": [ - 3445, + 3490, "[tournament_brackets_order_by!]" ], "where": [ - 3434 + 3479 ] } ], @@ -81960,163 +83686,163 @@ export default { 3 ], "group": [ - 2009 + 2013 ], "id": [ - 3818 + 3863 ], "loser_bracket": [ - 3423 + 3468 ], "loser_parent_bracket_id": [ - 3818 + 3863 ], "match": [ - 1826 + 1830 ], "match_id": [ - 3818 + 3863 ], "match_number": [ 38 ], "match_options_id": [ - 3818 + 3863 ], "options": [ - 1706 + 1710 ], "parent_bracket": [ - 3423 + 3468 ], "parent_bracket_id": [ - 3818 + 3863 ], "path": [ - 70 + 74 ], "round": [ 38 ], "scheduled_at": [ - 3421 + 3466 ], "scheduled_eta": [ - 3421 + 3466 ], "stage": [ - 3510 + 3555 ], "team_1": [ - 3643 + 3688 ], "team_1_seed": [ 38 ], "team_2": [ - 3643 + 3688 ], "team_2_seed": [ 38 ], "tournament_stage_id": [ - 3818 + 3863 ], "tournament_team_id_1": [ - 3818 + 3863 ], "tournament_team_id_2": [ - 3818 + 3863 ], "__typename": [ - 70 + 74 ] }, "tournament_brackets_aggregate": { "aggregate": [ - 3429 + 3474 ], "nodes": [ - 3423 + 3468 ], "__typename": [ - 70 + 74 ] }, "tournament_brackets_aggregate_bool_exp": { "bool_and": [ - 3426 + 3471 ], "bool_or": [ - 3427 + 3472 ], "count": [ - 3428 + 3473 ], "__typename": [ - 70 + 74 ] }, "tournament_brackets_aggregate_bool_exp_bool_and": { "arguments": [ - 3448 + 3493 ], "distinct": [ 3 ], "filter": [ - 3434 + 3479 ], "predicate": [ 4 ], "__typename": [ - 70 + 74 ] }, "tournament_brackets_aggregate_bool_exp_bool_or": { "arguments": [ - 3449 + 3494 ], "distinct": [ 3 ], "filter": [ - 3434 + 3479 ], "predicate": [ 4 ], "__typename": [ - 70 + 74 ] }, "tournament_brackets_aggregate_bool_exp_count": { "arguments": [ - 3447 + 3492 ], "distinct": [ 3 ], "filter": [ - 3434 + 3479 ], "predicate": [ 39 ], "__typename": [ - 70 + 74 ] }, "tournament_brackets_aggregate_fields": { "avg": [ - 3432 + 3477 ], "count": [ 38, { "columns": [ - 3447, + 3492, "[tournament_brackets_select_column!]" ], "distinct": [ @@ -82125,83 +83851,83 @@ export default { } ], "max": [ - 3438 + 3483 ], "min": [ - 3440 + 3485 ], "stddev": [ - 3451 + 3496 ], "stddev_pop": [ - 3453 + 3498 ], "stddev_samp": [ - 3455 + 3500 ], "sum": [ - 3459 + 3504 ], "var_pop": [ - 3463 + 3508 ], "var_samp": [ - 3465 + 3510 ], "variance": [ - 3467 + 3512 ], "__typename": [ - 70 + 74 ] }, "tournament_brackets_aggregate_order_by": { "avg": [ - 3433 + 3478 ], "count": [ - 2011 + 2015 ], "max": [ - 3439 + 3484 ], "min": [ - 3441 + 3486 ], "stddev": [ - 3452 + 3497 ], "stddev_pop": [ - 3454 + 3499 ], "stddev_samp": [ - 3456 + 3501 ], "sum": [ - 3460 + 3505 ], "var_pop": [ - 3464 + 3509 ], "var_samp": [ - 3466 + 3511 ], "variance": [ - 3468 + 3513 ], "__typename": [ - 70 + 74 ] }, "tournament_brackets_arr_rel_insert_input": { "data": [ - 3437 + 3482 ], "on_conflict": [ - 3444 + 3489 ], "__typename": [ - 70 + 74 ] }, "tournament_brackets_avg_fields": { @@ -82221,128 +83947,128 @@ export default { 29 ], "__typename": [ - 70 + 74 ] }, "tournament_brackets_avg_order_by": { "group": [ - 2011 + 2015 ], "match_number": [ - 2011 + 2015 ], "round": [ - 2011 + 2015 ], "team_1_seed": [ - 2011 + 2015 ], "team_2_seed": [ - 2011 + 2015 ], "__typename": [ - 70 + 74 ] }, "tournament_brackets_bool_exp": { "_and": [ - 3434 + 3479 ], "_not": [ - 3434 + 3479 ], "_or": [ - 3434 + 3479 ], "bye": [ 4 ], "created_at": [ - 3422 + 3467 ], "feeding_brackets": [ - 3434 + 3479 ], "finished": [ 4 ], "group": [ - 2010 + 2014 ], "id": [ - 3820 + 3865 ], "loser_bracket": [ - 3434 + 3479 ], "loser_parent_bracket_id": [ - 3820 + 3865 ], "match": [ - 1835 + 1839 ], "match_id": [ - 3820 + 3865 ], "match_number": [ 39 ], "match_options_id": [ - 3820 + 3865 ], "options": [ - 1710 + 1714 ], "parent_bracket": [ - 3434 + 3479 ], "parent_bracket_id": [ - 3820 + 3865 ], "path": [ - 72 + 76 ], "round": [ 39 ], "scheduled_at": [ - 3422 + 3467 ], "scheduled_eta": [ - 3422 + 3467 ], "stage": [ - 3522 + 3567 ], "team_1": [ - 3652 + 3697 ], "team_1_seed": [ 39 ], "team_2": [ - 3652 + 3697 ], "team_2_seed": [ 39 ], "tournament_stage_id": [ - 3820 + 3865 ], "tournament_team_id_1": [ - 3820 + 3865 ], "tournament_team_id_2": [ - 3820 + 3865 ], "__typename": [ - 70 + 74 ] }, "tournament_brackets_constraint": {}, "tournament_brackets_inc_input": { "group": [ - 2009 + 2013 ], "match_number": [ 38 @@ -82357,7 +84083,7 @@ export default { 38 ], "__typename": [ - 70 + 74 ] }, "tournament_brackets_insert_input": { @@ -82365,120 +84091,120 @@ export default { 3 ], "created_at": [ - 3421 + 3466 ], "finished": [ 3 ], "group": [ - 2009 + 2013 ], "id": [ - 3818 + 3863 ], "loser_bracket": [ - 3443 + 3488 ], "loser_parent_bracket_id": [ - 3818 + 3863 ], "match": [ - 1844 + 1848 ], "match_id": [ - 3818 + 3863 ], "match_number": [ 38 ], "match_options_id": [ - 3818 + 3863 ], "options": [ - 1717 + 1721 ], "parent_bracket": [ - 3443 + 3488 ], "parent_bracket_id": [ - 3818 + 3863 ], "path": [ - 70 + 74 ], "round": [ 38 ], "scheduled_at": [ - 3421 + 3466 ], "scheduled_eta": [ - 3421 + 3466 ], "stage": [ - 3534 + 3579 ], "team_1": [ - 3661 + 3706 ], "team_1_seed": [ 38 ], "team_2": [ - 3661 + 3706 ], "team_2_seed": [ 38 ], "tournament_stage_id": [ - 3818 + 3863 ], "tournament_team_id_1": [ - 3818 + 3863 ], "tournament_team_id_2": [ - 3818 + 3863 ], "__typename": [ - 70 + 74 ] }, "tournament_brackets_max_fields": { "created_at": [ - 3421 + 3466 ], "group": [ - 2009 + 2013 ], "id": [ - 3818 + 3863 ], "loser_parent_bracket_id": [ - 3818 + 3863 ], "match_id": [ - 3818 + 3863 ], "match_number": [ 38 ], "match_options_id": [ - 3818 + 3863 ], "parent_bracket_id": [ - 3818 + 3863 ], "path": [ - 70 + 74 ], "round": [ 38 ], "scheduled_at": [ - 3421 + 3466 ], "scheduled_eta": [ - 3421 + 3466 ], "team_1_seed": [ 38 @@ -82487,110 +84213,110 @@ export default { 38 ], "tournament_stage_id": [ - 3818 + 3863 ], "tournament_team_id_1": [ - 3818 + 3863 ], "tournament_team_id_2": [ - 3818 + 3863 ], "__typename": [ - 70 + 74 ] }, "tournament_brackets_max_order_by": { "created_at": [ - 2011 + 2015 ], "group": [ - 2011 + 2015 ], "id": [ - 2011 + 2015 ], "loser_parent_bracket_id": [ - 2011 + 2015 ], "match_id": [ - 2011 + 2015 ], "match_number": [ - 2011 + 2015 ], "match_options_id": [ - 2011 + 2015 ], "parent_bracket_id": [ - 2011 + 2015 ], "path": [ - 2011 + 2015 ], "round": [ - 2011 + 2015 ], "scheduled_at": [ - 2011 + 2015 ], "scheduled_eta": [ - 2011 + 2015 ], "team_1_seed": [ - 2011 + 2015 ], "team_2_seed": [ - 2011 + 2015 ], "tournament_stage_id": [ - 2011 + 2015 ], "tournament_team_id_1": [ - 2011 + 2015 ], "tournament_team_id_2": [ - 2011 + 2015 ], "__typename": [ - 70 + 74 ] }, "tournament_brackets_min_fields": { "created_at": [ - 3421 + 3466 ], "group": [ - 2009 + 2013 ], "id": [ - 3818 + 3863 ], "loser_parent_bracket_id": [ - 3818 + 3863 ], "match_id": [ - 3818 + 3863 ], "match_number": [ 38 ], "match_options_id": [ - 3818 + 3863 ], "parent_bracket_id": [ - 3818 + 3863 ], "path": [ - 70 + 74 ], "round": [ 38 ], "scheduled_at": [ - 3421 + 3466 ], "scheduled_eta": [ - 3421 + 3466 ], "team_1_seed": [ 38 @@ -82599,72 +84325,72 @@ export default { 38 ], "tournament_stage_id": [ - 3818 + 3863 ], "tournament_team_id_1": [ - 3818 + 3863 ], "tournament_team_id_2": [ - 3818 + 3863 ], "__typename": [ - 70 + 74 ] }, "tournament_brackets_min_order_by": { "created_at": [ - 2011 + 2015 ], "group": [ - 2011 + 2015 ], "id": [ - 2011 + 2015 ], "loser_parent_bracket_id": [ - 2011 + 2015 ], "match_id": [ - 2011 + 2015 ], "match_number": [ - 2011 + 2015 ], "match_options_id": [ - 2011 + 2015 ], "parent_bracket_id": [ - 2011 + 2015 ], "path": [ - 2011 + 2015 ], "round": [ - 2011 + 2015 ], "scheduled_at": [ - 2011 + 2015 ], "scheduled_eta": [ - 2011 + 2015 ], "team_1_seed": [ - 2011 + 2015 ], "team_2_seed": [ - 2011 + 2015 ], "tournament_stage_id": [ - 2011 + 2015 ], "tournament_team_id_1": [ - 2011 + 2015 ], "tournament_team_id_2": [ - 2011 + 2015 ], "__typename": [ - 70 + 74 ] }, "tournament_brackets_mutation_response": { @@ -82672,129 +84398,129 @@ export default { 38 ], "returning": [ - 3423 + 3468 ], "__typename": [ - 70 + 74 ] }, "tournament_brackets_obj_rel_insert_input": { "data": [ - 3437 + 3482 ], "on_conflict": [ - 3444 + 3489 ], "__typename": [ - 70 + 74 ] }, "tournament_brackets_on_conflict": { "constraint": [ - 3435 + 3480 ], "update_columns": [ - 3461 + 3506 ], "where": [ - 3434 + 3479 ], "__typename": [ - 70 + 74 ] }, "tournament_brackets_order_by": { "bye": [ - 2011 + 2015 ], "created_at": [ - 2011 + 2015 ], "feeding_brackets_aggregate": [ - 3430 + 3475 ], "finished": [ - 2011 + 2015 ], "group": [ - 2011 + 2015 ], "id": [ - 2011 + 2015 ], "loser_bracket": [ - 3445 + 3490 ], "loser_parent_bracket_id": [ - 2011 + 2015 ], "match": [ - 1846 + 1850 ], "match_id": [ - 2011 + 2015 ], "match_number": [ - 2011 + 2015 ], "match_options_id": [ - 2011 + 2015 ], "options": [ - 1719 + 1723 ], "parent_bracket": [ - 3445 + 3490 ], "parent_bracket_id": [ - 2011 + 2015 ], "path": [ - 2011 + 2015 ], "round": [ - 2011 + 2015 ], "scheduled_at": [ - 2011 + 2015 ], "scheduled_eta": [ - 2011 + 2015 ], "stage": [ - 3536 + 3581 ], "team_1": [ - 3663 + 3708 ], "team_1_seed": [ - 2011 + 2015 ], "team_2": [ - 3663 + 3708 ], "team_2_seed": [ - 2011 + 2015 ], "tournament_stage_id": [ - 2011 + 2015 ], "tournament_team_id_1": [ - 2011 + 2015 ], "tournament_team_id_2": [ - 2011 + 2015 ], "__typename": [ - 70 + 74 ] }, "tournament_brackets_pk_columns_input": { "id": [ - 3818 + 3863 ], "__typename": [ - 70 + 74 ] }, "tournament_brackets_select_column": {}, @@ -82805,43 +84531,43 @@ export default { 3 ], "created_at": [ - 3421 + 3466 ], "finished": [ 3 ], "group": [ - 2009 + 2013 ], "id": [ - 3818 + 3863 ], "loser_parent_bracket_id": [ - 3818 + 3863 ], "match_id": [ - 3818 + 3863 ], "match_number": [ 38 ], "match_options_id": [ - 3818 + 3863 ], "parent_bracket_id": [ - 3818 + 3863 ], "path": [ - 70 + 74 ], "round": [ 38 ], "scheduled_at": [ - 3421 + 3466 ], "scheduled_eta": [ - 3421 + 3466 ], "team_1_seed": [ 38 @@ -82850,16 +84576,16 @@ export default { 38 ], "tournament_stage_id": [ - 3818 + 3863 ], "tournament_team_id_1": [ - 3818 + 3863 ], "tournament_team_id_2": [ - 3818 + 3863 ], "__typename": [ - 70 + 74 ] }, "tournament_brackets_stddev_fields": { @@ -82879,27 +84605,27 @@ export default { 29 ], "__typename": [ - 70 + 74 ] }, "tournament_brackets_stddev_order_by": { "group": [ - 2011 + 2015 ], "match_number": [ - 2011 + 2015 ], "round": [ - 2011 + 2015 ], "team_1_seed": [ - 2011 + 2015 ], "team_2_seed": [ - 2011 + 2015 ], "__typename": [ - 70 + 74 ] }, "tournament_brackets_stddev_pop_fields": { @@ -82919,27 +84645,27 @@ export default { 29 ], "__typename": [ - 70 + 74 ] }, "tournament_brackets_stddev_pop_order_by": { "group": [ - 2011 + 2015 ], "match_number": [ - 2011 + 2015 ], "round": [ - 2011 + 2015 ], "team_1_seed": [ - 2011 + 2015 ], "team_2_seed": [ - 2011 + 2015 ], "__typename": [ - 70 + 74 ] }, "tournament_brackets_stddev_samp_fields": { @@ -82959,38 +84685,38 @@ export default { 29 ], "__typename": [ - 70 + 74 ] }, "tournament_brackets_stddev_samp_order_by": { "group": [ - 2011 + 2015 ], "match_number": [ - 2011 + 2015 ], "round": [ - 2011 + 2015 ], "team_1_seed": [ - 2011 + 2015 ], "team_2_seed": [ - 2011 + 2015 ], "__typename": [ - 70 + 74 ] }, "tournament_brackets_stream_cursor_input": { "initial_value": [ - 3458 + 3503 ], "ordering": [ - 224 + 228 ], "__typename": [ - 70 + 74 ] }, "tournament_brackets_stream_cursor_value_input": { @@ -82998,43 +84724,43 @@ export default { 3 ], "created_at": [ - 3421 + 3466 ], "finished": [ 3 ], "group": [ - 2009 + 2013 ], "id": [ - 3818 + 3863 ], "loser_parent_bracket_id": [ - 3818 + 3863 ], "match_id": [ - 3818 + 3863 ], "match_number": [ 38 ], "match_options_id": [ - 3818 + 3863 ], "parent_bracket_id": [ - 3818 + 3863 ], "path": [ - 70 + 74 ], "round": [ 38 ], "scheduled_at": [ - 3421 + 3466 ], "scheduled_eta": [ - 3421 + 3466 ], "team_1_seed": [ 38 @@ -83043,21 +84769,21 @@ export default { 38 ], "tournament_stage_id": [ - 3818 + 3863 ], "tournament_team_id_1": [ - 3818 + 3863 ], "tournament_team_id_2": [ - 3818 + 3863 ], "__typename": [ - 70 + 74 ] }, "tournament_brackets_sum_fields": { "group": [ - 2009 + 2013 ], "match_number": [ 38 @@ -83072,42 +84798,42 @@ export default { 38 ], "__typename": [ - 70 + 74 ] }, "tournament_brackets_sum_order_by": { "group": [ - 2011 + 2015 ], "match_number": [ - 2011 + 2015 ], "round": [ - 2011 + 2015 ], "team_1_seed": [ - 2011 + 2015 ], "team_2_seed": [ - 2011 + 2015 ], "__typename": [ - 70 + 74 ] }, "tournament_brackets_update_column": {}, "tournament_brackets_updates": { "_inc": [ - 3436 + 3481 ], "_set": [ - 3450 + 3495 ], "where": [ - 3434 + 3479 ], "__typename": [ - 70 + 74 ] }, "tournament_brackets_var_pop_fields": { @@ -83127,27 +84853,27 @@ export default { 29 ], "__typename": [ - 70 + 74 ] }, "tournament_brackets_var_pop_order_by": { "group": [ - 2011 + 2015 ], "match_number": [ - 2011 + 2015 ], "round": [ - 2011 + 2015 ], "team_1_seed": [ - 2011 + 2015 ], "team_2_seed": [ - 2011 + 2015 ], "__typename": [ - 70 + 74 ] }, "tournament_brackets_var_samp_fields": { @@ -83167,27 +84893,27 @@ export default { 29 ], "__typename": [ - 70 + 74 ] }, "tournament_brackets_var_samp_order_by": { "group": [ - 2011 + 2015 ], "match_number": [ - 2011 + 2015 ], "round": [ - 2011 + 2015 ], "team_1_seed": [ - 2011 + 2015 ], "team_2_seed": [ - 2011 + 2015 ], "__typename": [ - 70 + 74 ] }, "tournament_brackets_variance_fields": { @@ -83207,91 +84933,91 @@ export default { 29 ], "__typename": [ - 70 + 74 ] }, "tournament_brackets_variance_order_by": { "group": [ - 2011 + 2015 ], "match_number": [ - 2011 + 2015 ], "round": [ - 2011 + 2015 ], "team_1_seed": [ - 2011 + 2015 ], "team_2_seed": [ - 2011 + 2015 ], "__typename": [ - 70 + 74 ] }, "tournament_organizers": { "organizer": [ - 2878 + 2914 ], "steam_id": [ - 169 + 173 ], "tournament": [ - 3772 + 3817 ], "tournament_id": [ - 3818 + 3863 ], "__typename": [ - 70 + 74 ] }, "tournament_organizers_aggregate": { "aggregate": [ - 3473 + 3518 ], "nodes": [ - 3469 + 3514 ], "__typename": [ - 70 + 74 ] }, "tournament_organizers_aggregate_bool_exp": { "count": [ - 3472 + 3517 ], "__typename": [ - 70 + 74 ] }, "tournament_organizers_aggregate_bool_exp_count": { "arguments": [ - 3490 + 3535 ], "distinct": [ 3 ], "filter": [ - 3478 + 3523 ], "predicate": [ 39 ], "__typename": [ - 70 + 74 ] }, "tournament_organizers_aggregate_fields": { "avg": [ - 3476 + 3521 ], "count": [ 38, { "columns": [ - 3490, + 3535, "[tournament_organizers_select_column!]" ], "distinct": [ @@ -83300,83 +85026,83 @@ export default { } ], "max": [ - 3482 + 3527 ], "min": [ - 3484 + 3529 ], "stddev": [ - 3492 + 3537 ], "stddev_pop": [ - 3494 + 3539 ], "stddev_samp": [ - 3496 + 3541 ], "sum": [ - 3500 + 3545 ], "var_pop": [ - 3504 + 3549 ], "var_samp": [ - 3506 + 3551 ], "variance": [ - 3508 + 3553 ], "__typename": [ - 70 + 74 ] }, "tournament_organizers_aggregate_order_by": { "avg": [ - 3477 + 3522 ], "count": [ - 2011 + 2015 ], "max": [ - 3483 + 3528 ], "min": [ - 3485 + 3530 ], "stddev": [ - 3493 + 3538 ], "stddev_pop": [ - 3495 + 3540 ], "stddev_samp": [ - 3497 + 3542 ], "sum": [ - 3501 + 3546 ], "var_pop": [ - 3505 + 3550 ], "var_samp": [ - 3507 + 3552 ], "variance": [ - 3509 + 3554 ], "__typename": [ - 70 + 74 ] }, "tournament_organizers_arr_rel_insert_input": { "data": [ - 3481 + 3526 ], "on_conflict": [ - 3487 + 3532 ], "__typename": [ - 70 + 74 ] }, "tournament_organizers_avg_fields": { @@ -83384,111 +85110,111 @@ export default { 29 ], "__typename": [ - 70 + 74 ] }, "tournament_organizers_avg_order_by": { "steam_id": [ - 2011 + 2015 ], "__typename": [ - 70 + 74 ] }, "tournament_organizers_bool_exp": { "_and": [ - 3478 + 3523 ], "_not": [ - 3478 + 3523 ], "_or": [ - 3478 + 3523 ], "organizer": [ - 2882 + 2918 ], "steam_id": [ - 171 + 175 ], "tournament": [ - 3783 + 3828 ], "tournament_id": [ - 3820 + 3865 ], "__typename": [ - 70 + 74 ] }, "tournament_organizers_constraint": {}, "tournament_organizers_inc_input": { "steam_id": [ - 169 + 173 ], "__typename": [ - 70 + 74 ] }, "tournament_organizers_insert_input": { "organizer": [ - 2889 + 2925 ], "steam_id": [ - 169 + 173 ], "tournament": [ - 3792 + 3837 ], "tournament_id": [ - 3818 + 3863 ], "__typename": [ - 70 + 74 ] }, "tournament_organizers_max_fields": { "steam_id": [ - 169 + 173 ], "tournament_id": [ - 3818 + 3863 ], "__typename": [ - 70 + 74 ] }, "tournament_organizers_max_order_by": { "steam_id": [ - 2011 + 2015 ], "tournament_id": [ - 2011 + 2015 ], "__typename": [ - 70 + 74 ] }, "tournament_organizers_min_fields": { "steam_id": [ - 169 + 173 ], "tournament_id": [ - 3818 + 3863 ], "__typename": [ - 70 + 74 ] }, "tournament_organizers_min_order_by": { "steam_id": [ - 2011 + 2015 ], "tournament_id": [ - 2011 + 2015 ], "__typename": [ - 70 + 74 ] }, "tournament_organizers_mutation_response": { @@ -83496,64 +85222,64 @@ export default { 38 ], "returning": [ - 3469 + 3514 ], "__typename": [ - 70 + 74 ] }, "tournament_organizers_on_conflict": { "constraint": [ - 3479 + 3524 ], "update_columns": [ - 3502 + 3547 ], "where": [ - 3478 + 3523 ], "__typename": [ - 70 + 74 ] }, "tournament_organizers_order_by": { "organizer": [ - 2891 + 2927 ], "steam_id": [ - 2011 + 2015 ], "tournament": [ - 3794 + 3839 ], "tournament_id": [ - 2011 + 2015 ], "__typename": [ - 70 + 74 ] }, "tournament_organizers_pk_columns_input": { "steam_id": [ - 169 + 173 ], "tournament_id": [ - 3818 + 3863 ], "__typename": [ - 70 + 74 ] }, "tournament_organizers_select_column": {}, "tournament_organizers_set_input": { "steam_id": [ - 169 + 173 ], "tournament_id": [ - 3818 + 3863 ], "__typename": [ - 70 + 74 ] }, "tournament_organizers_stddev_fields": { @@ -83561,15 +85287,15 @@ export default { 29 ], "__typename": [ - 70 + 74 ] }, "tournament_organizers_stddev_order_by": { "steam_id": [ - 2011 + 2015 ], "__typename": [ - 70 + 74 ] }, "tournament_organizers_stddev_pop_fields": { @@ -83577,15 +85303,15 @@ export default { 29 ], "__typename": [ - 70 + 74 ] }, "tournament_organizers_stddev_pop_order_by": { "steam_id": [ - 2011 + 2015 ], "__typename": [ - 70 + 74 ] }, "tournament_organizers_stddev_samp_fields": { @@ -83593,68 +85319,68 @@ export default { 29 ], "__typename": [ - 70 + 74 ] }, "tournament_organizers_stddev_samp_order_by": { "steam_id": [ - 2011 + 2015 ], "__typename": [ - 70 + 74 ] }, "tournament_organizers_stream_cursor_input": { "initial_value": [ - 3499 + 3544 ], "ordering": [ - 224 + 228 ], "__typename": [ - 70 + 74 ] }, "tournament_organizers_stream_cursor_value_input": { "steam_id": [ - 169 + 173 ], "tournament_id": [ - 3818 + 3863 ], "__typename": [ - 70 + 74 ] }, "tournament_organizers_sum_fields": { "steam_id": [ - 169 + 173 ], "__typename": [ - 70 + 74 ] }, "tournament_organizers_sum_order_by": { "steam_id": [ - 2011 + 2015 ], "__typename": [ - 70 + 74 ] }, "tournament_organizers_update_column": {}, "tournament_organizers_updates": { "_inc": [ - 3480 + 3525 ], "_set": [ - 3491 + 3536 ], "where": [ - 3478 + 3523 ], "__typename": [ - 70 + 74 ] }, "tournament_organizers_var_pop_fields": { @@ -83662,15 +85388,15 @@ export default { 29 ], "__typename": [ - 70 + 74 ] }, "tournament_organizers_var_pop_order_by": { "steam_id": [ - 2011 + 2015 ], "__typename": [ - 70 + 74 ] }, "tournament_organizers_var_samp_fields": { @@ -83678,15 +85404,15 @@ export default { 29 ], "__typename": [ - 70 + 74 ] }, "tournament_organizers_var_samp_order_by": { "steam_id": [ - 2011 + 2015 ], "__typename": [ - 70 + 74 ] }, "tournament_organizers_variance_fields": { @@ -83694,23 +85420,23 @@ export default { 29 ], "__typename": [ - 70 + 74 ] }, "tournament_organizers_variance_order_by": { "steam_id": [ - 2011 + 2015 ], "__typename": [ - 70 + 74 ] }, "tournament_stages": { "brackets": [ - 3423, + 3468, { "distinct_on": [ - 3447, + 3492, "[tournament_brackets_select_column!]" ], "limit": [ @@ -83720,19 +85446,19 @@ export default { 38 ], "order_by": [ - 3445, + 3490, "[tournament_brackets_order_by!]" ], "where": [ - 3434 + 3479 ] } ], "brackets_aggregate": [ - 3424, + 3469, { "distinct_on": [ - 3447, + 3492, "[tournament_brackets_select_column!]" ], "limit": [ @@ -83742,11 +85468,11 @@ export default { 38 ], "order_by": [ - 3445, + 3490, "[tournament_brackets_order_by!]" ], "where": [ - 3434 + 3479 ] } ], @@ -83757,16 +85483,16 @@ export default { 38 ], "e_tournament_stage_type": [ - 982 + 986 ], "groups": [ 38 ], "id": [ - 3818 + 3863 ], "match_options_id": [ - 3818 + 3863 ], "max_teams": [ 38 @@ -83775,16 +85501,16 @@ export default { 38 ], "options": [ - 1706 + 1710 ], "order": [ 38 ], "results": [ - 4407, + 4452, { "distinct_on": [ - 4439, + 4484, "[v_team_stage_results_select_column!]" ], "limit": [ @@ -83794,19 +85520,19 @@ export default { 38 ], "order_by": [ - 4437, + 4482, "[v_team_stage_results_order_by!]" ], "where": [ - 4426 + 4471 ] } ], "results_aggregate": [ - 4408, + 4453, { "distinct_on": [ - 4439, + 4484, "[v_team_stage_results_select_column!]" ], "limit": [ @@ -83816,19 +85542,19 @@ export default { 38 ], "order_by": [ - 4437, + 4482, "[v_team_stage_results_order_by!]" ], "where": [ - 4426 + 4471 ] } ], "settings": [ - 1235, + 1239, { "path": [ - 70 + 74 ] } ], @@ -83836,103 +85562,103 @@ export default { 3 ], "tournament": [ - 3772 + 3817 ], "tournament_id": [ - 3818 + 3863 ], "type": [ - 987 + 991 ], "__typename": [ - 70 + 74 ] }, "tournament_stages_aggregate": { "aggregate": [ - 3516 + 3561 ], "nodes": [ - 3510 + 3555 ], "__typename": [ - 70 + 74 ] }, "tournament_stages_aggregate_bool_exp": { "bool_and": [ - 3513 + 3558 ], "bool_or": [ - 3514 + 3559 ], "count": [ - 3515 + 3560 ], "__typename": [ - 70 + 74 ] }, "tournament_stages_aggregate_bool_exp_bool_and": { "arguments": [ - 3540 + 3585 ], "distinct": [ 3 ], "filter": [ - 3522 + 3567 ], "predicate": [ 4 ], "__typename": [ - 70 + 74 ] }, "tournament_stages_aggregate_bool_exp_bool_or": { "arguments": [ - 3541 + 3586 ], "distinct": [ 3 ], "filter": [ - 3522 + 3567 ], "predicate": [ 4 ], "__typename": [ - 70 + 74 ] }, "tournament_stages_aggregate_bool_exp_count": { "arguments": [ - 3539 + 3584 ], "distinct": [ 3 ], "filter": [ - 3522 + 3567 ], "predicate": [ 39 ], "__typename": [ - 70 + 74 ] }, "tournament_stages_aggregate_fields": { "avg": [ - 3520 + 3565 ], "count": [ 38, { "columns": [ - 3539, + 3584, "[tournament_stages_select_column!]" ], "distinct": [ @@ -83941,91 +85667,91 @@ export default { } ], "max": [ - 3529 + 3574 ], "min": [ - 3531 + 3576 ], "stddev": [ - 3543 + 3588 ], "stddev_pop": [ - 3545 + 3590 ], "stddev_samp": [ - 3547 + 3592 ], "sum": [ - 3551 + 3596 ], "var_pop": [ - 3555 + 3600 ], "var_samp": [ - 3557 + 3602 ], "variance": [ - 3559 + 3604 ], "__typename": [ - 70 + 74 ] }, "tournament_stages_aggregate_order_by": { "avg": [ - 3521 + 3566 ], "count": [ - 2011 + 2015 ], "max": [ - 3530 + 3575 ], "min": [ - 3532 + 3577 ], "stddev": [ - 3544 + 3589 ], "stddev_pop": [ - 3546 + 3591 ], "stddev_samp": [ - 3548 + 3593 ], "sum": [ - 3552 + 3597 ], "var_pop": [ - 3556 + 3601 ], "var_samp": [ - 3558 + 3603 ], "variance": [ - 3560 + 3605 ], "__typename": [ - 70 + 74 ] }, "tournament_stages_append_input": { "settings": [ - 1235 + 1239 ], "__typename": [ - 70 + 74 ] }, "tournament_stages_arr_rel_insert_input": { "data": [ - 3528 + 3573 ], "on_conflict": [ - 3535 + 3580 ], "__typename": [ - 70 + 74 ] }, "tournament_stages_avg_fields": { @@ -84048,47 +85774,47 @@ export default { 29 ], "__typename": [ - 70 + 74 ] }, "tournament_stages_avg_order_by": { "decider_best_of": [ - 2011 + 2015 ], "default_best_of": [ - 2011 + 2015 ], "groups": [ - 2011 + 2015 ], "max_teams": [ - 2011 + 2015 ], "min_teams": [ - 2011 + 2015 ], "order": [ - 2011 + 2015 ], "__typename": [ - 70 + 74 ] }, "tournament_stages_bool_exp": { "_and": [ - 3522 + 3567 ], "_not": [ - 3522 + 3567 ], "_or": [ - 3522 + 3567 ], "brackets": [ - 3434 + 3479 ], "brackets_aggregate": [ - 3425 + 3470 ], "decider_best_of": [ 39 @@ -84097,16 +85823,16 @@ export default { 39 ], "e_tournament_stage_type": [ - 985 + 989 ], "groups": [ 39 ], "id": [ - 3820 + 3865 ], "match_options_id": [ - 3820 + 3865 ], "max_teams": [ 39 @@ -84115,43 +85841,43 @@ export default { 39 ], "options": [ - 1710 + 1714 ], "order": [ 39 ], "results": [ - 4426 + 4471 ], "results_aggregate": [ - 4409 + 4454 ], "settings": [ - 1237 + 1241 ], "third_place_match": [ 4 ], "tournament": [ - 3783 + 3828 ], "tournament_id": [ - 3820 + 3865 ], "type": [ - 988 + 992 ], "__typename": [ - 70 + 74 ] }, "tournament_stages_constraint": {}, "tournament_stages_delete_at_path_input": { "settings": [ - 70 + 74 ], "__typename": [ - 70 + 74 ] }, "tournament_stages_delete_elem_input": { @@ -84159,15 +85885,15 @@ export default { 38 ], "__typename": [ - 70 + 74 ] }, "tournament_stages_delete_key_input": { "settings": [ - 70 + 74 ], "__typename": [ - 70 + 74 ] }, "tournament_stages_inc_input": { @@ -84190,12 +85916,12 @@ export default { 38 ], "__typename": [ - 70 + 74 ] }, "tournament_stages_insert_input": { "brackets": [ - 3431 + 3476 ], "decider_best_of": [ 38 @@ -84204,16 +85930,16 @@ export default { 38 ], "e_tournament_stage_type": [ - 993 + 997 ], "groups": [ 38 ], "id": [ - 3818 + 3863 ], "match_options_id": [ - 3818 + 3863 ], "max_teams": [ 38 @@ -84222,31 +85948,31 @@ export default { 38 ], "options": [ - 1717 + 1721 ], "order": [ 38 ], "results": [ - 4423 + 4468 ], "settings": [ - 1235 + 1239 ], "third_place_match": [ 3 ], "tournament": [ - 3792 + 3837 ], "tournament_id": [ - 3818 + 3863 ], "type": [ - 987 + 991 ], "__typename": [ - 70 + 74 ] }, "tournament_stages_max_fields": { @@ -84260,10 +85986,10 @@ export default { 38 ], "id": [ - 3818 + 3863 ], "match_options_id": [ - 3818 + 3863 ], "max_teams": [ 38 @@ -84275,42 +86001,42 @@ export default { 38 ], "tournament_id": [ - 3818 + 3863 ], "__typename": [ - 70 + 74 ] }, "tournament_stages_max_order_by": { "decider_best_of": [ - 2011 + 2015 ], "default_best_of": [ - 2011 + 2015 ], "groups": [ - 2011 + 2015 ], "id": [ - 2011 + 2015 ], "match_options_id": [ - 2011 + 2015 ], "max_teams": [ - 2011 + 2015 ], "min_teams": [ - 2011 + 2015 ], "order": [ - 2011 + 2015 ], "tournament_id": [ - 2011 + 2015 ], "__typename": [ - 70 + 74 ] }, "tournament_stages_min_fields": { @@ -84324,10 +86050,10 @@ export default { 38 ], "id": [ - 3818 + 3863 ], "match_options_id": [ - 3818 + 3863 ], "max_teams": [ 38 @@ -84339,42 +86065,42 @@ export default { 38 ], "tournament_id": [ - 3818 + 3863 ], "__typename": [ - 70 + 74 ] }, "tournament_stages_min_order_by": { "decider_best_of": [ - 2011 + 2015 ], "default_best_of": [ - 2011 + 2015 ], "groups": [ - 2011 + 2015 ], "id": [ - 2011 + 2015 ], "match_options_id": [ - 2011 + 2015 ], "max_teams": [ - 2011 + 2015 ], "min_teams": [ - 2011 + 2015 ], "order": [ - 2011 + 2015 ], "tournament_id": [ - 2011 + 2015 ], "__typename": [ - 70 + 74 ] }, "tournament_stages_mutation_response": { @@ -84382,107 +86108,107 @@ export default { 38 ], "returning": [ - 3510 + 3555 ], "__typename": [ - 70 + 74 ] }, "tournament_stages_obj_rel_insert_input": { "data": [ - 3528 + 3573 ], "on_conflict": [ - 3535 + 3580 ], "__typename": [ - 70 + 74 ] }, "tournament_stages_on_conflict": { "constraint": [ - 3523 + 3568 ], "update_columns": [ - 3553 + 3598 ], "where": [ - 3522 + 3567 ], "__typename": [ - 70 + 74 ] }, "tournament_stages_order_by": { "brackets_aggregate": [ - 3430 + 3475 ], "decider_best_of": [ - 2011 + 2015 ], "default_best_of": [ - 2011 + 2015 ], "e_tournament_stage_type": [ - 995 + 999 ], "groups": [ - 2011 + 2015 ], "id": [ - 2011 + 2015 ], "match_options_id": [ - 2011 + 2015 ], "max_teams": [ - 2011 + 2015 ], "min_teams": [ - 2011 + 2015 ], "options": [ - 1719 + 1723 ], "order": [ - 2011 + 2015 ], "results_aggregate": [ - 4422 + 4467 ], "settings": [ - 2011 + 2015 ], "third_place_match": [ - 2011 + 2015 ], "tournament": [ - 3794 + 3839 ], "tournament_id": [ - 2011 + 2015 ], "type": [ - 2011 + 2015 ], "__typename": [ - 70 + 74 ] }, "tournament_stages_pk_columns_input": { "id": [ - 3818 + 3863 ], "__typename": [ - 70 + 74 ] }, "tournament_stages_prepend_input": { "settings": [ - 1235 + 1239 ], "__typename": [ - 70 + 74 ] }, "tournament_stages_select_column": {}, @@ -84499,10 +86225,10 @@ export default { 38 ], "id": [ - 3818 + 3863 ], "match_options_id": [ - 3818 + 3863 ], "max_teams": [ 38 @@ -84514,19 +86240,19 @@ export default { 38 ], "settings": [ - 1235 + 1239 ], "third_place_match": [ 3 ], "tournament_id": [ - 3818 + 3863 ], "type": [ - 987 + 991 ], "__typename": [ - 70 + 74 ] }, "tournament_stages_stddev_fields": { @@ -84549,30 +86275,30 @@ export default { 29 ], "__typename": [ - 70 + 74 ] }, "tournament_stages_stddev_order_by": { "decider_best_of": [ - 2011 + 2015 ], "default_best_of": [ - 2011 + 2015 ], "groups": [ - 2011 + 2015 ], "max_teams": [ - 2011 + 2015 ], "min_teams": [ - 2011 + 2015 ], "order": [ - 2011 + 2015 ], "__typename": [ - 70 + 74 ] }, "tournament_stages_stddev_pop_fields": { @@ -84595,30 +86321,30 @@ export default { 29 ], "__typename": [ - 70 + 74 ] }, "tournament_stages_stddev_pop_order_by": { "decider_best_of": [ - 2011 + 2015 ], "default_best_of": [ - 2011 + 2015 ], "groups": [ - 2011 + 2015 ], "max_teams": [ - 2011 + 2015 ], "min_teams": [ - 2011 + 2015 ], "order": [ - 2011 + 2015 ], "__typename": [ - 70 + 74 ] }, "tournament_stages_stddev_samp_fields": { @@ -84641,41 +86367,41 @@ export default { 29 ], "__typename": [ - 70 + 74 ] }, "tournament_stages_stddev_samp_order_by": { "decider_best_of": [ - 2011 + 2015 ], "default_best_of": [ - 2011 + 2015 ], "groups": [ - 2011 + 2015 ], "max_teams": [ - 2011 + 2015 ], "min_teams": [ - 2011 + 2015 ], "order": [ - 2011 + 2015 ], "__typename": [ - 70 + 74 ] }, "tournament_stages_stream_cursor_input": { "initial_value": [ - 3550 + 3595 ], "ordering": [ - 224 + 228 ], "__typename": [ - 70 + 74 ] }, "tournament_stages_stream_cursor_value_input": { @@ -84689,10 +86415,10 @@ export default { 38 ], "id": [ - 3818 + 3863 ], "match_options_id": [ - 3818 + 3863 ], "max_teams": [ 38 @@ -84704,19 +86430,19 @@ export default { 38 ], "settings": [ - 1235 + 1239 ], "third_place_match": [ 3 ], "tournament_id": [ - 3818 + 3863 ], "type": [ - 987 + 991 ], "__typename": [ - 70 + 74 ] }, "tournament_stages_sum_fields": { @@ -84739,60 +86465,60 @@ export default { 38 ], "__typename": [ - 70 + 74 ] }, "tournament_stages_sum_order_by": { "decider_best_of": [ - 2011 + 2015 ], "default_best_of": [ - 2011 + 2015 ], "groups": [ - 2011 + 2015 ], "max_teams": [ - 2011 + 2015 ], "min_teams": [ - 2011 + 2015 ], "order": [ - 2011 + 2015 ], "__typename": [ - 70 + 74 ] }, "tournament_stages_update_column": {}, "tournament_stages_updates": { "_append": [ - 3518 + 3563 ], "_delete_at_path": [ - 3524 + 3569 ], "_delete_elem": [ - 3525 + 3570 ], "_delete_key": [ - 3526 + 3571 ], "_inc": [ - 3527 + 3572 ], "_prepend": [ - 3538 + 3583 ], "_set": [ - 3542 + 3587 ], "where": [ - 3522 + 3567 ], "__typename": [ - 70 + 74 ] }, "tournament_stages_var_pop_fields": { @@ -84815,30 +86541,30 @@ export default { 29 ], "__typename": [ - 70 + 74 ] }, "tournament_stages_var_pop_order_by": { "decider_best_of": [ - 2011 + 2015 ], "default_best_of": [ - 2011 + 2015 ], "groups": [ - 2011 + 2015 ], "max_teams": [ - 2011 + 2015 ], "min_teams": [ - 2011 + 2015 ], "order": [ - 2011 + 2015 ], "__typename": [ - 70 + 74 ] }, "tournament_stages_var_samp_fields": { @@ -84861,30 +86587,30 @@ export default { 29 ], "__typename": [ - 70 + 74 ] }, "tournament_stages_var_samp_order_by": { "decider_best_of": [ - 2011 + 2015 ], "default_best_of": [ - 2011 + 2015 ], "groups": [ - 2011 + 2015 ], "max_teams": [ - 2011 + 2015 ], "min_teams": [ - 2011 + 2015 ], "order": [ - 2011 + 2015 ], "__typename": [ - 70 + 74 ] }, "tournament_stages_variance_fields": { @@ -84907,106 +86633,106 @@ export default { 29 ], "__typename": [ - 70 + 74 ] }, "tournament_stages_variance_order_by": { "decider_best_of": [ - 2011 + 2015 ], "default_best_of": [ - 2011 + 2015 ], "groups": [ - 2011 + 2015 ], "max_teams": [ - 2011 + 2015 ], "min_teams": [ - 2011 + 2015 ], "order": [ - 2011 + 2015 ], "__typename": [ - 70 + 74 ] }, "tournament_team_invites": { "created_at": [ - 3421 + 3466 ], "id": [ - 3818 + 3863 ], "invited_by": [ - 2878 + 2914 ], "invited_by_player_steam_id": [ - 169 + 173 ], "player": [ - 2878 + 2914 ], "steam_id": [ - 169 + 173 ], "team": [ - 3643 + 3688 ], "tournament_team_id": [ - 3818 + 3863 ], "__typename": [ - 70 + 74 ] }, "tournament_team_invites_aggregate": { "aggregate": [ - 3565 + 3610 ], "nodes": [ - 3561 + 3606 ], "__typename": [ - 70 + 74 ] }, "tournament_team_invites_aggregate_bool_exp": { "count": [ - 3564 + 3609 ], "__typename": [ - 70 + 74 ] }, "tournament_team_invites_aggregate_bool_exp_count": { "arguments": [ - 3582 + 3627 ], "distinct": [ 3 ], "filter": [ - 3570 + 3615 ], "predicate": [ 39 ], "__typename": [ - 70 + 74 ] }, "tournament_team_invites_aggregate_fields": { "avg": [ - 3568 + 3613 ], "count": [ 38, { "columns": [ - 3582, + 3627, "[tournament_team_invites_select_column!]" ], "distinct": [ @@ -85015,83 +86741,83 @@ export default { } ], "max": [ - 3574 + 3619 ], "min": [ - 3576 + 3621 ], "stddev": [ - 3584 + 3629 ], "stddev_pop": [ - 3586 + 3631 ], "stddev_samp": [ - 3588 + 3633 ], "sum": [ - 3592 + 3637 ], "var_pop": [ - 3596 + 3641 ], "var_samp": [ - 3598 + 3643 ], "variance": [ - 3600 + 3645 ], "__typename": [ - 70 + 74 ] }, "tournament_team_invites_aggregate_order_by": { "avg": [ - 3569 + 3614 ], "count": [ - 2011 + 2015 ], "max": [ - 3575 + 3620 ], "min": [ - 3577 + 3622 ], "stddev": [ - 3585 + 3630 ], "stddev_pop": [ - 3587 + 3632 ], "stddev_samp": [ - 3589 + 3634 ], "sum": [ - 3593 + 3638 ], "var_pop": [ - 3597 + 3642 ], "var_samp": [ - 3599 + 3644 ], "variance": [ - 3601 + 3646 ], "__typename": [ - 70 + 74 ] }, "tournament_team_invites_arr_rel_insert_input": { "data": [ - 3573 + 3618 ], "on_conflict": [ - 3579 + 3624 ], "__typename": [ - 70 + 74 ] }, "tournament_team_invites_avg_fields": { @@ -85102,177 +86828,177 @@ export default { 29 ], "__typename": [ - 70 + 74 ] }, "tournament_team_invites_avg_order_by": { "invited_by_player_steam_id": [ - 2011 + 2015 ], "steam_id": [ - 2011 + 2015 ], "__typename": [ - 70 + 74 ] }, "tournament_team_invites_bool_exp": { "_and": [ - 3570 + 3615 ], "_not": [ - 3570 + 3615 ], "_or": [ - 3570 + 3615 ], "created_at": [ - 3422 + 3467 ], "id": [ - 3820 + 3865 ], "invited_by": [ - 2882 + 2918 ], "invited_by_player_steam_id": [ - 171 + 175 ], "player": [ - 2882 + 2918 ], "steam_id": [ - 171 + 175 ], "team": [ - 3652 + 3697 ], "tournament_team_id": [ - 3820 + 3865 ], "__typename": [ - 70 + 74 ] }, "tournament_team_invites_constraint": {}, "tournament_team_invites_inc_input": { "invited_by_player_steam_id": [ - 169 + 173 ], "steam_id": [ - 169 + 173 ], "__typename": [ - 70 + 74 ] }, "tournament_team_invites_insert_input": { "created_at": [ - 3421 + 3466 ], "id": [ - 3818 + 3863 ], "invited_by": [ - 2889 + 2925 ], "invited_by_player_steam_id": [ - 169 + 173 ], "player": [ - 2889 + 2925 ], "steam_id": [ - 169 + 173 ], "team": [ - 3661 + 3706 ], "tournament_team_id": [ - 3818 + 3863 ], "__typename": [ - 70 + 74 ] }, "tournament_team_invites_max_fields": { "created_at": [ - 3421 + 3466 ], "id": [ - 3818 + 3863 ], "invited_by_player_steam_id": [ - 169 + 173 ], "steam_id": [ - 169 + 173 ], "tournament_team_id": [ - 3818 + 3863 ], "__typename": [ - 70 + 74 ] }, "tournament_team_invites_max_order_by": { "created_at": [ - 2011 + 2015 ], "id": [ - 2011 + 2015 ], "invited_by_player_steam_id": [ - 2011 + 2015 ], "steam_id": [ - 2011 + 2015 ], "tournament_team_id": [ - 2011 + 2015 ], "__typename": [ - 70 + 74 ] }, "tournament_team_invites_min_fields": { "created_at": [ - 3421 + 3466 ], "id": [ - 3818 + 3863 ], "invited_by_player_steam_id": [ - 169 + 173 ], "steam_id": [ - 169 + 173 ], "tournament_team_id": [ - 3818 + 3863 ], "__typename": [ - 70 + 74 ] }, "tournament_team_invites_min_order_by": { "created_at": [ - 2011 + 2015 ], "id": [ - 2011 + 2015 ], "invited_by_player_steam_id": [ - 2011 + 2015 ], "steam_id": [ - 2011 + 2015 ], "tournament_team_id": [ - 2011 + 2015 ], "__typename": [ - 70 + 74 ] }, "tournament_team_invites_mutation_response": { @@ -85280,82 +87006,82 @@ export default { 38 ], "returning": [ - 3561 + 3606 ], "__typename": [ - 70 + 74 ] }, "tournament_team_invites_on_conflict": { "constraint": [ - 3571 + 3616 ], "update_columns": [ - 3594 + 3639 ], "where": [ - 3570 + 3615 ], "__typename": [ - 70 + 74 ] }, "tournament_team_invites_order_by": { "created_at": [ - 2011 + 2015 ], "id": [ - 2011 + 2015 ], "invited_by": [ - 2891 + 2927 ], "invited_by_player_steam_id": [ - 2011 + 2015 ], "player": [ - 2891 + 2927 ], "steam_id": [ - 2011 + 2015 ], "team": [ - 3663 + 3708 ], "tournament_team_id": [ - 2011 + 2015 ], "__typename": [ - 70 + 74 ] }, "tournament_team_invites_pk_columns_input": { "id": [ - 3818 + 3863 ], "__typename": [ - 70 + 74 ] }, "tournament_team_invites_select_column": {}, "tournament_team_invites_set_input": { "created_at": [ - 3421 + 3466 ], "id": [ - 3818 + 3863 ], "invited_by_player_steam_id": [ - 169 + 173 ], "steam_id": [ - 169 + 173 ], "tournament_team_id": [ - 3818 + 3863 ], "__typename": [ - 70 + 74 ] }, "tournament_team_invites_stddev_fields": { @@ -85366,18 +87092,18 @@ export default { 29 ], "__typename": [ - 70 + 74 ] }, "tournament_team_invites_stddev_order_by": { "invited_by_player_steam_id": [ - 2011 + 2015 ], "steam_id": [ - 2011 + 2015 ], "__typename": [ - 70 + 74 ] }, "tournament_team_invites_stddev_pop_fields": { @@ -85388,18 +87114,18 @@ export default { 29 ], "__typename": [ - 70 + 74 ] }, "tournament_team_invites_stddev_pop_order_by": { "invited_by_player_steam_id": [ - 2011 + 2015 ], "steam_id": [ - 2011 + 2015 ], "__typename": [ - 70 + 74 ] }, "tournament_team_invites_stddev_samp_fields": { @@ -85410,86 +87136,86 @@ export default { 29 ], "__typename": [ - 70 + 74 ] }, "tournament_team_invites_stddev_samp_order_by": { "invited_by_player_steam_id": [ - 2011 + 2015 ], "steam_id": [ - 2011 + 2015 ], "__typename": [ - 70 + 74 ] }, "tournament_team_invites_stream_cursor_input": { "initial_value": [ - 3591 + 3636 ], "ordering": [ - 224 + 228 ], "__typename": [ - 70 + 74 ] }, "tournament_team_invites_stream_cursor_value_input": { "created_at": [ - 3421 + 3466 ], "id": [ - 3818 + 3863 ], "invited_by_player_steam_id": [ - 169 + 173 ], "steam_id": [ - 169 + 173 ], "tournament_team_id": [ - 3818 + 3863 ], "__typename": [ - 70 + 74 ] }, "tournament_team_invites_sum_fields": { "invited_by_player_steam_id": [ - 169 + 173 ], "steam_id": [ - 169 + 173 ], "__typename": [ - 70 + 74 ] }, "tournament_team_invites_sum_order_by": { "invited_by_player_steam_id": [ - 2011 + 2015 ], "steam_id": [ - 2011 + 2015 ], "__typename": [ - 70 + 74 ] }, "tournament_team_invites_update_column": {}, "tournament_team_invites_updates": { "_inc": [ - 3572 + 3617 ], "_set": [ - 3583 + 3628 ], "where": [ - 3570 + 3615 ], "__typename": [ - 70 + 74 ] }, "tournament_team_invites_var_pop_fields": { @@ -85500,18 +87226,18 @@ export default { 29 ], "__typename": [ - 70 + 74 ] }, "tournament_team_invites_var_pop_order_by": { "invited_by_player_steam_id": [ - 2011 + 2015 ], "steam_id": [ - 2011 + 2015 ], "__typename": [ - 70 + 74 ] }, "tournament_team_invites_var_samp_fields": { @@ -85522,18 +87248,18 @@ export default { 29 ], "__typename": [ - 70 + 74 ] }, "tournament_team_invites_var_samp_order_by": { "invited_by_player_steam_id": [ - 2011 + 2015 ], "steam_id": [ - 2011 + 2015 ], "__typename": [ - 70 + 74 ] }, "tournament_team_invites_variance_fields": { @@ -85544,94 +87270,94 @@ export default { 29 ], "__typename": [ - 70 + 74 ] }, "tournament_team_invites_variance_order_by": { "invited_by_player_steam_id": [ - 2011 + 2015 ], "steam_id": [ - 2011 + 2015 ], "__typename": [ - 70 + 74 ] }, "tournament_team_roster": { "e_team_role": [ - 921 + 925 ], "player": [ - 2878 + 2914 ], "player_steam_id": [ - 169 + 173 ], "role": [ - 926 + 930 ], "tournament": [ - 3772 + 3817 ], "tournament_id": [ - 3818 + 3863 ], "tournament_team": [ - 3643 + 3688 ], "tournament_team_id": [ - 3818 + 3863 ], "__typename": [ - 70 + 74 ] }, "tournament_team_roster_aggregate": { "aggregate": [ - 3606 + 3651 ], "nodes": [ - 3602 + 3647 ], "__typename": [ - 70 + 74 ] }, "tournament_team_roster_aggregate_bool_exp": { "count": [ - 3605 + 3650 ], "__typename": [ - 70 + 74 ] }, "tournament_team_roster_aggregate_bool_exp_count": { "arguments": [ - 3623 + 3668 ], "distinct": [ 3 ], "filter": [ - 3611 + 3656 ], "predicate": [ 39 ], "__typename": [ - 70 + 74 ] }, "tournament_team_roster_aggregate_fields": { "avg": [ - 3609 + 3654 ], "count": [ 38, { "columns": [ - 3623, + 3668, "[tournament_team_roster_select_column!]" ], "distinct": [ @@ -85640,83 +87366,83 @@ export default { } ], "max": [ - 3615 + 3660 ], "min": [ - 3617 + 3662 ], "stddev": [ - 3625 + 3670 ], "stddev_pop": [ - 3627 + 3672 ], "stddev_samp": [ - 3629 + 3674 ], "sum": [ - 3633 + 3678 ], "var_pop": [ - 3637 + 3682 ], "var_samp": [ - 3639 + 3684 ], "variance": [ - 3641 + 3686 ], "__typename": [ - 70 + 74 ] }, "tournament_team_roster_aggregate_order_by": { "avg": [ - 3610 + 3655 ], "count": [ - 2011 + 2015 ], "max": [ - 3616 + 3661 ], "min": [ - 3618 + 3663 ], "stddev": [ - 3626 + 3671 ], "stddev_pop": [ - 3628 + 3673 ], "stddev_samp": [ - 3630 + 3675 ], "sum": [ - 3634 + 3679 ], "var_pop": [ - 3638 + 3683 ], "var_samp": [ - 3640 + 3685 ], "variance": [ - 3642 + 3687 ], "__typename": [ - 70 + 74 ] }, "tournament_team_roster_arr_rel_insert_input": { "data": [ - 3614 + 3659 ], "on_conflict": [ - 3620 + 3665 ], "__typename": [ - 70 + 74 ] }, "tournament_team_roster_avg_fields": { @@ -85724,147 +87450,147 @@ export default { 29 ], "__typename": [ - 70 + 74 ] }, "tournament_team_roster_avg_order_by": { "player_steam_id": [ - 2011 + 2015 ], "__typename": [ - 70 + 74 ] }, "tournament_team_roster_bool_exp": { "_and": [ - 3611 + 3656 ], "_not": [ - 3611 + 3656 ], "_or": [ - 3611 + 3656 ], "e_team_role": [ - 924 + 928 ], "player": [ - 2882 + 2918 ], "player_steam_id": [ - 171 + 175 ], "role": [ - 927 + 931 ], "tournament": [ - 3783 + 3828 ], "tournament_id": [ - 3820 + 3865 ], "tournament_team": [ - 3652 + 3697 ], "tournament_team_id": [ - 3820 + 3865 ], "__typename": [ - 70 + 74 ] }, "tournament_team_roster_constraint": {}, "tournament_team_roster_inc_input": { "player_steam_id": [ - 169 + 173 ], "__typename": [ - 70 + 74 ] }, "tournament_team_roster_insert_input": { "e_team_role": [ - 932 + 936 ], "player": [ - 2889 + 2925 ], "player_steam_id": [ - 169 + 173 ], "role": [ - 926 + 930 ], "tournament": [ - 3792 + 3837 ], "tournament_id": [ - 3818 + 3863 ], "tournament_team": [ - 3661 + 3706 ], "tournament_team_id": [ - 3818 + 3863 ], "__typename": [ - 70 + 74 ] }, "tournament_team_roster_max_fields": { "player_steam_id": [ - 169 + 173 ], "tournament_id": [ - 3818 + 3863 ], "tournament_team_id": [ - 3818 + 3863 ], "__typename": [ - 70 + 74 ] }, "tournament_team_roster_max_order_by": { "player_steam_id": [ - 2011 + 2015 ], "tournament_id": [ - 2011 + 2015 ], "tournament_team_id": [ - 2011 + 2015 ], "__typename": [ - 70 + 74 ] }, "tournament_team_roster_min_fields": { "player_steam_id": [ - 169 + 173 ], "tournament_id": [ - 3818 + 3863 ], "tournament_team_id": [ - 3818 + 3863 ], "__typename": [ - 70 + 74 ] }, "tournament_team_roster_min_order_by": { "player_steam_id": [ - 2011 + 2015 ], "tournament_id": [ - 2011 + 2015 ], "tournament_team_id": [ - 2011 + 2015 ], "__typename": [ - 70 + 74 ] }, "tournament_team_roster_mutation_response": { @@ -85872,82 +87598,82 @@ export default { 38 ], "returning": [ - 3602 + 3647 ], "__typename": [ - 70 + 74 ] }, "tournament_team_roster_on_conflict": { "constraint": [ - 3612 + 3657 ], "update_columns": [ - 3635 + 3680 ], "where": [ - 3611 + 3656 ], "__typename": [ - 70 + 74 ] }, "tournament_team_roster_order_by": { "e_team_role": [ - 934 + 938 ], "player": [ - 2891 + 2927 ], "player_steam_id": [ - 2011 + 2015 ], "role": [ - 2011 + 2015 ], "tournament": [ - 3794 + 3839 ], "tournament_id": [ - 2011 + 2015 ], "tournament_team": [ - 3663 + 3708 ], "tournament_team_id": [ - 2011 + 2015 ], "__typename": [ - 70 + 74 ] }, "tournament_team_roster_pk_columns_input": { "player_steam_id": [ - 169 + 173 ], "tournament_id": [ - 3818 + 3863 ], "__typename": [ - 70 + 74 ] }, "tournament_team_roster_select_column": {}, "tournament_team_roster_set_input": { "player_steam_id": [ - 169 + 173 ], "role": [ - 926 + 930 ], "tournament_id": [ - 3818 + 3863 ], "tournament_team_id": [ - 3818 + 3863 ], "__typename": [ - 70 + 74 ] }, "tournament_team_roster_stddev_fields": { @@ -85955,15 +87681,15 @@ export default { 29 ], "__typename": [ - 70 + 74 ] }, "tournament_team_roster_stddev_order_by": { "player_steam_id": [ - 2011 + 2015 ], "__typename": [ - 70 + 74 ] }, "tournament_team_roster_stddev_pop_fields": { @@ -85971,15 +87697,15 @@ export default { 29 ], "__typename": [ - 70 + 74 ] }, "tournament_team_roster_stddev_pop_order_by": { "player_steam_id": [ - 2011 + 2015 ], "__typename": [ - 70 + 74 ] }, "tournament_team_roster_stddev_samp_fields": { @@ -85987,74 +87713,74 @@ export default { 29 ], "__typename": [ - 70 + 74 ] }, "tournament_team_roster_stddev_samp_order_by": { "player_steam_id": [ - 2011 + 2015 ], "__typename": [ - 70 + 74 ] }, "tournament_team_roster_stream_cursor_input": { "initial_value": [ - 3632 + 3677 ], "ordering": [ - 224 + 228 ], "__typename": [ - 70 + 74 ] }, "tournament_team_roster_stream_cursor_value_input": { "player_steam_id": [ - 169 + 173 ], "role": [ - 926 + 930 ], "tournament_id": [ - 3818 + 3863 ], "tournament_team_id": [ - 3818 + 3863 ], "__typename": [ - 70 + 74 ] }, "tournament_team_roster_sum_fields": { "player_steam_id": [ - 169 + 173 ], "__typename": [ - 70 + 74 ] }, "tournament_team_roster_sum_order_by": { "player_steam_id": [ - 2011 + 2015 ], "__typename": [ - 70 + 74 ] }, "tournament_team_roster_update_column": {}, "tournament_team_roster_updates": { "_inc": [ - 3613 + 3658 ], "_set": [ - 3624 + 3669 ], "where": [ - 3611 + 3656 ], "__typename": [ - 70 + 74 ] }, "tournament_team_roster_var_pop_fields": { @@ -86062,15 +87788,15 @@ export default { 29 ], "__typename": [ - 70 + 74 ] }, "tournament_team_roster_var_pop_order_by": { "player_steam_id": [ - 2011 + 2015 ], "__typename": [ - 70 + 74 ] }, "tournament_team_roster_var_samp_fields": { @@ -86078,15 +87804,15 @@ export default { 29 ], "__typename": [ - 70 + 74 ] }, "tournament_team_roster_var_samp_order_by": { "player_steam_id": [ - 2011 + 2015 ], "__typename": [ - 70 + 74 ] }, "tournament_team_roster_variance_fields": { @@ -86094,15 +87820,15 @@ export default { 29 ], "__typename": [ - 70 + 74 ] }, "tournament_team_roster_variance_order_by": { "player_steam_id": [ - 2011 + 2015 ], "__typename": [ - 70 + 74 ] }, "tournament_teams": { @@ -86110,28 +87836,28 @@ export default { 3 ], "captain": [ - 2878 + 2914 ], "captain_steam_id": [ - 169 + 173 ], "created_at": [ - 3421 + 3466 ], "creator": [ - 2878 + 2914 ], "eligible_at": [ - 3421 + 3466 ], "id": [ - 3818 + 3863 ], "invites": [ - 3561, + 3606, { "distinct_on": [ - 3582, + 3627, "[tournament_team_invites_select_column!]" ], "limit": [ @@ -86141,19 +87867,19 @@ export default { 38 ], "order_by": [ - 3580, + 3625, "[tournament_team_invites_order_by!]" ], "where": [ - 3570 + 3615 ] } ], "invites_aggregate": [ - 3562, + 3607, { "distinct_on": [ - 3582, + 3627, "[tournament_team_invites_select_column!]" ], "limit": [ @@ -86163,28 +87889,28 @@ export default { 38 ], "order_by": [ - 3580, + 3625, "[tournament_team_invites_order_by!]" ], "where": [ - 3570 + 3615 ] } ], "name": [ - 70 + 74 ], "owner_steam_id": [ - 169 + 173 ], "results": [ - 4407 + 4452 ], "roster": [ - 3602, + 3647, { "distinct_on": [ - 3623, + 3668, "[tournament_team_roster_select_column!]" ], "limit": [ @@ -86194,19 +87920,19 @@ export default { 38 ], "order_by": [ - 3621, + 3666, "[tournament_team_roster_order_by!]" ], "where": [ - 3611 + 3656 ] } ], "roster_aggregate": [ - 3603, + 3648, { "distinct_on": [ - 3623, + 3668, "[tournament_team_roster_select_column!]" ], "limit": [ @@ -86216,11 +87942,11 @@ export default { 38 ], "order_by": [ - 3621, + 3666, "[tournament_team_roster_order_by!]" ], "where": [ - 3611 + 3656 ] } ], @@ -86228,69 +87954,69 @@ export default { 38 ], "short_name": [ - 70 + 74 ], "team": [ - 3378 + 3423 ], "team_id": [ - 3818 + 3863 ], "tournament": [ - 3772 + 3817 ], "tournament_id": [ - 3818 + 3863 ], "__typename": [ - 70 + 74 ] }, "tournament_teams_aggregate": { "aggregate": [ - 3647 + 3692 ], "nodes": [ - 3643 + 3688 ], "__typename": [ - 70 + 74 ] }, "tournament_teams_aggregate_bool_exp": { "count": [ - 3646 + 3691 ], "__typename": [ - 70 + 74 ] }, "tournament_teams_aggregate_bool_exp_count": { "arguments": [ - 3665 + 3710 ], "distinct": [ 3 ], "filter": [ - 3652 + 3697 ], "predicate": [ 39 ], "__typename": [ - 70 + 74 ] }, "tournament_teams_aggregate_fields": { "avg": [ - 3650 + 3695 ], "count": [ 38, { "columns": [ - 3665, + 3710, "[tournament_teams_select_column!]" ], "distinct": [ @@ -86299,83 +88025,83 @@ export default { } ], "max": [ - 3656 + 3701 ], "min": [ - 3658 + 3703 ], "stddev": [ - 3667 + 3712 ], "stddev_pop": [ - 3669 + 3714 ], "stddev_samp": [ - 3671 + 3716 ], "sum": [ - 3675 + 3720 ], "var_pop": [ - 3679 + 3724 ], "var_samp": [ - 3681 + 3726 ], "variance": [ - 3683 + 3728 ], "__typename": [ - 70 + 74 ] }, "tournament_teams_aggregate_order_by": { "avg": [ - 3651 + 3696 ], "count": [ - 2011 + 2015 ], "max": [ - 3657 + 3702 ], "min": [ - 3659 + 3704 ], "stddev": [ - 3668 + 3713 ], "stddev_pop": [ - 3670 + 3715 ], "stddev_samp": [ - 3672 + 3717 ], "sum": [ - 3676 + 3721 ], "var_pop": [ - 3680 + 3725 ], "var_samp": [ - 3682 + 3727 ], "variance": [ - 3684 + 3729 ], "__typename": [ - 70 + 74 ] }, "tournament_teams_arr_rel_insert_input": { "data": [ - 3655 + 3700 ], "on_conflict": [ - 3662 + 3707 ], "__typename": [ - 70 + 74 ] }, "tournament_teams_avg_fields": { @@ -86389,306 +88115,306 @@ export default { 29 ], "__typename": [ - 70 + 74 ] }, "tournament_teams_avg_order_by": { "captain_steam_id": [ - 2011 + 2015 ], "owner_steam_id": [ - 2011 + 2015 ], "seed": [ - 2011 + 2015 ], "__typename": [ - 70 + 74 ] }, "tournament_teams_bool_exp": { "_and": [ - 3652 + 3697 ], "_not": [ - 3652 + 3697 ], "_or": [ - 3652 + 3697 ], "can_manage": [ 4 ], "captain": [ - 2882 + 2918 ], "captain_steam_id": [ - 171 + 175 ], "created_at": [ - 3422 + 3467 ], "creator": [ - 2882 + 2918 ], "eligible_at": [ - 3422 + 3467 ], "id": [ - 3820 + 3865 ], "invites": [ - 3570 + 3615 ], "invites_aggregate": [ - 3563 + 3608 ], "name": [ - 72 + 76 ], "owner_steam_id": [ - 171 + 175 ], "results": [ - 4426 + 4471 ], "roster": [ - 3611 + 3656 ], "roster_aggregate": [ - 3604 + 3649 ], "seed": [ 39 ], "short_name": [ - 72 + 76 ], "team": [ - 3387 + 3432 ], "team_id": [ - 3820 + 3865 ], "tournament": [ - 3783 + 3828 ], "tournament_id": [ - 3820 + 3865 ], "__typename": [ - 70 + 74 ] }, "tournament_teams_constraint": {}, "tournament_teams_inc_input": { "captain_steam_id": [ - 169 + 173 ], "owner_steam_id": [ - 169 + 173 ], "seed": [ 38 ], "__typename": [ - 70 + 74 ] }, "tournament_teams_insert_input": { "captain": [ - 2889 + 2925 ], "captain_steam_id": [ - 169 + 173 ], "created_at": [ - 3421 + 3466 ], "creator": [ - 2889 + 2925 ], "eligible_at": [ - 3421 + 3466 ], "id": [ - 3818 + 3863 ], "invites": [ - 3567 + 3612 ], "name": [ - 70 + 74 ], "owner_steam_id": [ - 169 + 173 ], "results": [ - 4435 + 4480 ], "roster": [ - 3608 + 3653 ], "seed": [ 38 ], "short_name": [ - 70 + 74 ], "team": [ - 3396 + 3441 ], "team_id": [ - 3818 + 3863 ], "tournament": [ - 3792 + 3837 ], "tournament_id": [ - 3818 + 3863 ], "__typename": [ - 70 + 74 ] }, "tournament_teams_max_fields": { "captain_steam_id": [ - 169 + 173 ], "created_at": [ - 3421 + 3466 ], "eligible_at": [ - 3421 + 3466 ], "id": [ - 3818 + 3863 ], "name": [ - 70 + 74 ], "owner_steam_id": [ - 169 + 173 ], "seed": [ 38 ], "short_name": [ - 70 + 74 ], "team_id": [ - 3818 + 3863 ], "tournament_id": [ - 3818 + 3863 ], "__typename": [ - 70 + 74 ] }, "tournament_teams_max_order_by": { "captain_steam_id": [ - 2011 + 2015 ], "created_at": [ - 2011 + 2015 ], "eligible_at": [ - 2011 + 2015 ], "id": [ - 2011 + 2015 ], "name": [ - 2011 + 2015 ], "owner_steam_id": [ - 2011 + 2015 ], "seed": [ - 2011 + 2015 ], "short_name": [ - 2011 + 2015 ], "team_id": [ - 2011 + 2015 ], "tournament_id": [ - 2011 + 2015 ], "__typename": [ - 70 + 74 ] }, "tournament_teams_min_fields": { "captain_steam_id": [ - 169 + 173 ], "created_at": [ - 3421 + 3466 ], "eligible_at": [ - 3421 + 3466 ], "id": [ - 3818 + 3863 ], "name": [ - 70 + 74 ], "owner_steam_id": [ - 169 + 173 ], "seed": [ 38 ], "short_name": [ - 70 + 74 ], "team_id": [ - 3818 + 3863 ], "tournament_id": [ - 3818 + 3863 ], "__typename": [ - 70 + 74 ] }, "tournament_teams_min_order_by": { "captain_steam_id": [ - 2011 + 2015 ], "created_at": [ - 2011 + 2015 ], "eligible_at": [ - 2011 + 2015 ], "id": [ - 2011 + 2015 ], "name": [ - 2011 + 2015 ], "owner_steam_id": [ - 2011 + 2015 ], "seed": [ - 2011 + 2015 ], "short_name": [ - 2011 + 2015 ], "team_id": [ - 2011 + 2015 ], "tournament_id": [ - 2011 + 2015 ], "__typename": [ - 70 + 74 ] }, "tournament_teams_mutation_response": { @@ -86696,138 +88422,138 @@ export default { 38 ], "returning": [ - 3643 + 3688 ], "__typename": [ - 70 + 74 ] }, "tournament_teams_obj_rel_insert_input": { "data": [ - 3655 + 3700 ], "on_conflict": [ - 3662 + 3707 ], "__typename": [ - 70 + 74 ] }, "tournament_teams_on_conflict": { "constraint": [ - 3653 + 3698 ], "update_columns": [ - 3677 + 3722 ], "where": [ - 3652 + 3697 ], "__typename": [ - 70 + 74 ] }, "tournament_teams_order_by": { "can_manage": [ - 2011 + 2015 ], "captain": [ - 2891 + 2927 ], "captain_steam_id": [ - 2011 + 2015 ], "created_at": [ - 2011 + 2015 ], "creator": [ - 2891 + 2927 ], "eligible_at": [ - 2011 + 2015 ], "id": [ - 2011 + 2015 ], "invites_aggregate": [ - 3566 + 3611 ], "name": [ - 2011 + 2015 ], "owner_steam_id": [ - 2011 + 2015 ], "results": [ - 4437 + 4482 ], "roster_aggregate": [ - 3607 + 3652 ], "seed": [ - 2011 + 2015 ], "short_name": [ - 2011 + 2015 ], "team": [ - 3398 + 3443 ], "team_id": [ - 2011 + 2015 ], "tournament": [ - 3794 + 3839 ], "tournament_id": [ - 2011 + 2015 ], "__typename": [ - 70 + 74 ] }, "tournament_teams_pk_columns_input": { "id": [ - 3818 + 3863 ], "__typename": [ - 70 + 74 ] }, "tournament_teams_select_column": {}, "tournament_teams_set_input": { "captain_steam_id": [ - 169 + 173 ], "created_at": [ - 3421 + 3466 ], "eligible_at": [ - 3421 + 3466 ], "id": [ - 3818 + 3863 ], "name": [ - 70 + 74 ], "owner_steam_id": [ - 169 + 173 ], "seed": [ 38 ], "short_name": [ - 70 + 74 ], "team_id": [ - 3818 + 3863 ], "tournament_id": [ - 3818 + 3863 ], "__typename": [ - 70 + 74 ] }, "tournament_teams_stddev_fields": { @@ -86841,21 +88567,21 @@ export default { 29 ], "__typename": [ - 70 + 74 ] }, "tournament_teams_stddev_order_by": { "captain_steam_id": [ - 2011 + 2015 ], "owner_steam_id": [ - 2011 + 2015 ], "seed": [ - 2011 + 2015 ], "__typename": [ - 70 + 74 ] }, "tournament_teams_stddev_pop_fields": { @@ -86869,21 +88595,21 @@ export default { 29 ], "__typename": [ - 70 + 74 ] }, "tournament_teams_stddev_pop_order_by": { "captain_steam_id": [ - 2011 + 2015 ], "owner_steam_id": [ - 2011 + 2015 ], "seed": [ - 2011 + 2015 ], "__typename": [ - 70 + 74 ] }, "tournament_teams_stddev_samp_fields": { @@ -86897,110 +88623,110 @@ export default { 29 ], "__typename": [ - 70 + 74 ] }, "tournament_teams_stddev_samp_order_by": { "captain_steam_id": [ - 2011 + 2015 ], "owner_steam_id": [ - 2011 + 2015 ], "seed": [ - 2011 + 2015 ], "__typename": [ - 70 + 74 ] }, "tournament_teams_stream_cursor_input": { "initial_value": [ - 3674 + 3719 ], "ordering": [ - 224 + 228 ], "__typename": [ - 70 + 74 ] }, "tournament_teams_stream_cursor_value_input": { "captain_steam_id": [ - 169 + 173 ], "created_at": [ - 3421 + 3466 ], "eligible_at": [ - 3421 + 3466 ], "id": [ - 3818 + 3863 ], "name": [ - 70 + 74 ], "owner_steam_id": [ - 169 + 173 ], "seed": [ 38 ], "short_name": [ - 70 + 74 ], "team_id": [ - 3818 + 3863 ], "tournament_id": [ - 3818 + 3863 ], "__typename": [ - 70 + 74 ] }, "tournament_teams_sum_fields": { "captain_steam_id": [ - 169 + 173 ], "owner_steam_id": [ - 169 + 173 ], "seed": [ 38 ], "__typename": [ - 70 + 74 ] }, "tournament_teams_sum_order_by": { "captain_steam_id": [ - 2011 + 2015 ], "owner_steam_id": [ - 2011 + 2015 ], "seed": [ - 2011 + 2015 ], "__typename": [ - 70 + 74 ] }, "tournament_teams_update_column": {}, "tournament_teams_updates": { "_inc": [ - 3654 + 3699 ], "_set": [ - 3666 + 3711 ], "where": [ - 3652 + 3697 ], "__typename": [ - 70 + 74 ] }, "tournament_teams_var_pop_fields": { @@ -87014,21 +88740,21 @@ export default { 29 ], "__typename": [ - 70 + 74 ] }, "tournament_teams_var_pop_order_by": { "captain_steam_id": [ - 2011 + 2015 ], "owner_steam_id": [ - 2011 + 2015 ], "seed": [ - 2011 + 2015 ], "__typename": [ - 70 + 74 ] }, "tournament_teams_var_samp_fields": { @@ -87042,21 +88768,21 @@ export default { 29 ], "__typename": [ - 70 + 74 ] }, "tournament_teams_var_samp_order_by": { "captain_steam_id": [ - 2011 + 2015 ], "owner_steam_id": [ - 2011 + 2015 ], "seed": [ - 2011 + 2015 ], "__typename": [ - 70 + 74 ] }, "tournament_teams_variance_fields": { @@ -87070,29 +88796,29 @@ export default { 29 ], "__typename": [ - 70 + 74 ] }, "tournament_teams_variance_order_by": { "captain_steam_id": [ - 2011 + 2015 ], "owner_steam_id": [ - 2011 + 2015 ], "seed": [ - 2011 + 2015 ], "__typename": [ - 70 + 74 ] }, "tournament_trophies": { "created_at": [ - 3421 + 3466 ], "id": [ - 3818 + 3863 ], "manual": [ 3 @@ -87101,124 +88827,124 @@ export default { 38 ], "placement_tier": [ - 70 + 74 ], "player": [ - 2878 + 2914 ], "player_steam_id": [ - 169 + 173 ], "team": [ - 3378 + 3423 ], "team_id": [ - 3818 + 3863 ], "tournament": [ - 3772 + 3817 ], "tournament_id": [ - 3818 + 3863 ], "tournament_team": [ - 3643 + 3688 ], "tournament_team_id": [ - 3818 + 3863 ], "trophy_config": [ - 3730 + 3775 ], "__typename": [ - 70 + 74 ] }, "tournament_trophies_aggregate": { "aggregate": [ - 3691 + 3736 ], "nodes": [ - 3685 + 3730 ], "__typename": [ - 70 + 74 ] }, "tournament_trophies_aggregate_bool_exp": { "bool_and": [ - 3688 + 3733 ], "bool_or": [ - 3689 + 3734 ], "count": [ - 3690 + 3735 ], "__typename": [ - 70 + 74 ] }, "tournament_trophies_aggregate_bool_exp_bool_and": { "arguments": [ - 3709 + 3754 ], "distinct": [ 3 ], "filter": [ - 3696 + 3741 ], "predicate": [ 4 ], "__typename": [ - 70 + 74 ] }, "tournament_trophies_aggregate_bool_exp_bool_or": { "arguments": [ - 3710 + 3755 ], "distinct": [ 3 ], "filter": [ - 3696 + 3741 ], "predicate": [ 4 ], "__typename": [ - 70 + 74 ] }, "tournament_trophies_aggregate_bool_exp_count": { "arguments": [ - 3708 + 3753 ], "distinct": [ 3 ], "filter": [ - 3696 + 3741 ], "predicate": [ 39 ], "__typename": [ - 70 + 74 ] }, "tournament_trophies_aggregate_fields": { "avg": [ - 3694 + 3739 ], "count": [ 38, { "columns": [ - 3708, + 3753, "[tournament_trophies_select_column!]" ], "distinct": [ @@ -87227,83 +88953,83 @@ export default { } ], "max": [ - 3700 + 3745 ], "min": [ - 3702 + 3747 ], "stddev": [ - 3712 + 3757 ], "stddev_pop": [ - 3714 + 3759 ], "stddev_samp": [ - 3716 + 3761 ], "sum": [ - 3720 + 3765 ], "var_pop": [ - 3724 + 3769 ], "var_samp": [ - 3726 + 3771 ], "variance": [ - 3728 + 3773 ], "__typename": [ - 70 + 74 ] }, "tournament_trophies_aggregate_order_by": { "avg": [ - 3695 + 3740 ], "count": [ - 2011 + 2015 ], "max": [ - 3701 + 3746 ], "min": [ - 3703 + 3748 ], "stddev": [ - 3713 + 3758 ], "stddev_pop": [ - 3715 + 3760 ], "stddev_samp": [ - 3717 + 3762 ], "sum": [ - 3721 + 3766 ], "var_pop": [ - 3725 + 3770 ], "var_samp": [ - 3727 + 3772 ], "variance": [ - 3729 + 3774 ], "__typename": [ - 70 + 74 ] }, "tournament_trophies_arr_rel_insert_input": { "data": [ - 3699 + 3744 ], "on_conflict": [ - 3705 + 3750 ], "__typename": [ - 70 + 74 ] }, "tournament_trophies_avg_fields": { @@ -87314,35 +89040,35 @@ export default { 29 ], "__typename": [ - 70 + 74 ] }, "tournament_trophies_avg_order_by": { "placement": [ - 2011 + 2015 ], "player_steam_id": [ - 2011 + 2015 ], "__typename": [ - 70 + 74 ] }, "tournament_trophies_bool_exp": { "_and": [ - 3696 + 3741 ], "_not": [ - 3696 + 3741 ], "_or": [ - 3696 + 3741 ], "created_at": [ - 3422 + 3467 ], "id": [ - 3820 + 3865 ], "manual": [ 4 @@ -87351,37 +89077,37 @@ export default { 39 ], "placement_tier": [ - 72 + 76 ], "player": [ - 2882 + 2918 ], "player_steam_id": [ - 171 + 175 ], "team": [ - 3387 + 3432 ], "team_id": [ - 3820 + 3865 ], "tournament": [ - 3783 + 3828 ], "tournament_id": [ - 3820 + 3865 ], "tournament_team": [ - 3652 + 3697 ], "tournament_team_id": [ - 3820 + 3865 ], "trophy_config": [ - 3739 + 3784 ], "__typename": [ - 70 + 74 ] }, "tournament_trophies_constraint": {}, @@ -87390,18 +89116,18 @@ export default { 38 ], "player_steam_id": [ - 169 + 173 ], "__typename": [ - 70 + 74 ] }, "tournament_trophies_insert_input": { "created_at": [ - 3421 + 3466 ], "id": [ - 3818 + 3863 ], "manual": [ 3 @@ -87410,150 +89136,150 @@ export default { 38 ], "player": [ - 2889 + 2925 ], "player_steam_id": [ - 169 + 173 ], "team": [ - 3396 + 3441 ], "team_id": [ - 3818 + 3863 ], "tournament": [ - 3792 + 3837 ], "tournament_id": [ - 3818 + 3863 ], "tournament_team": [ - 3661 + 3706 ], "tournament_team_id": [ - 3818 + 3863 ], "trophy_config": [ - 3748 + 3793 ], "__typename": [ - 70 + 74 ] }, "tournament_trophies_max_fields": { "created_at": [ - 3421 + 3466 ], "id": [ - 3818 + 3863 ], "placement": [ 38 ], "placement_tier": [ - 70 + 74 ], "player_steam_id": [ - 169 + 173 ], "team_id": [ - 3818 + 3863 ], "tournament_id": [ - 3818 + 3863 ], "tournament_team_id": [ - 3818 + 3863 ], "__typename": [ - 70 + 74 ] }, "tournament_trophies_max_order_by": { "created_at": [ - 2011 + 2015 ], "id": [ - 2011 + 2015 ], "placement": [ - 2011 + 2015 ], "placement_tier": [ - 2011 + 2015 ], "player_steam_id": [ - 2011 + 2015 ], "team_id": [ - 2011 + 2015 ], "tournament_id": [ - 2011 + 2015 ], "tournament_team_id": [ - 2011 + 2015 ], "__typename": [ - 70 + 74 ] }, "tournament_trophies_min_fields": { "created_at": [ - 3421 + 3466 ], "id": [ - 3818 + 3863 ], "placement": [ 38 ], "placement_tier": [ - 70 + 74 ], "player_steam_id": [ - 169 + 173 ], "team_id": [ - 3818 + 3863 ], "tournament_id": [ - 3818 + 3863 ], "tournament_team_id": [ - 3818 + 3863 ], "__typename": [ - 70 + 74 ] }, "tournament_trophies_min_order_by": { "created_at": [ - 2011 + 2015 ], "id": [ - 2011 + 2015 ], "placement": [ - 2011 + 2015 ], "placement_tier": [ - 2011 + 2015 ], "player_steam_id": [ - 2011 + 2015 ], "team_id": [ - 2011 + 2015 ], "tournament_id": [ - 2011 + 2015 ], "tournament_team_id": [ - 2011 + 2015 ], "__typename": [ - 70 + 74 ] }, "tournament_trophies_mutation_response": { @@ -87561,79 +89287,79 @@ export default { 38 ], "returning": [ - 3685 + 3730 ], "__typename": [ - 70 + 74 ] }, "tournament_trophies_on_conflict": { "constraint": [ - 3697 + 3742 ], "update_columns": [ - 3722 + 3767 ], "where": [ - 3696 + 3741 ], "__typename": [ - 70 + 74 ] }, "tournament_trophies_order_by": { "created_at": [ - 2011 + 2015 ], "id": [ - 2011 + 2015 ], "manual": [ - 2011 + 2015 ], "placement": [ - 2011 + 2015 ], "placement_tier": [ - 2011 + 2015 ], "player": [ - 2891 + 2927 ], "player_steam_id": [ - 2011 + 2015 ], "team": [ - 3398 + 3443 ], "team_id": [ - 2011 + 2015 ], "tournament": [ - 3794 + 3839 ], "tournament_id": [ - 2011 + 2015 ], "tournament_team": [ - 3663 + 3708 ], "tournament_team_id": [ - 2011 + 2015 ], "trophy_config": [ - 3750 + 3795 ], "__typename": [ - 70 + 74 ] }, "tournament_trophies_pk_columns_input": { "id": [ - 3818 + 3863 ], "__typename": [ - 70 + 74 ] }, "tournament_trophies_select_column": {}, @@ -87641,10 +89367,10 @@ export default { "tournament_trophies_select_column_tournament_trophies_aggregate_bool_exp_bool_or_arguments_columns": {}, "tournament_trophies_set_input": { "created_at": [ - 3421 + 3466 ], "id": [ - 3818 + 3863 ], "manual": [ 3 @@ -87653,19 +89379,19 @@ export default { 38 ], "player_steam_id": [ - 169 + 173 ], "team_id": [ - 3818 + 3863 ], "tournament_id": [ - 3818 + 3863 ], "tournament_team_id": [ - 3818 + 3863 ], "__typename": [ - 70 + 74 ] }, "tournament_trophies_stddev_fields": { @@ -87676,18 +89402,18 @@ export default { 29 ], "__typename": [ - 70 + 74 ] }, "tournament_trophies_stddev_order_by": { "placement": [ - 2011 + 2015 ], "player_steam_id": [ - 2011 + 2015 ], "__typename": [ - 70 + 74 ] }, "tournament_trophies_stddev_pop_fields": { @@ -87698,18 +89424,18 @@ export default { 29 ], "__typename": [ - 70 + 74 ] }, "tournament_trophies_stddev_pop_order_by": { "placement": [ - 2011 + 2015 ], "player_steam_id": [ - 2011 + 2015 ], "__typename": [ - 70 + 74 ] }, "tournament_trophies_stddev_samp_fields": { @@ -87720,37 +89446,37 @@ export default { 29 ], "__typename": [ - 70 + 74 ] }, "tournament_trophies_stddev_samp_order_by": { "placement": [ - 2011 + 2015 ], "player_steam_id": [ - 2011 + 2015 ], "__typename": [ - 70 + 74 ] }, "tournament_trophies_stream_cursor_input": { "initial_value": [ - 3719 + 3764 ], "ordering": [ - 224 + 228 ], "__typename": [ - 70 + 74 ] }, "tournament_trophies_stream_cursor_value_input": { "created_at": [ - 3421 + 3466 ], "id": [ - 3818 + 3863 ], "manual": [ 3 @@ -87759,22 +89485,22 @@ export default { 38 ], "placement_tier": [ - 70 + 74 ], "player_steam_id": [ - 169 + 173 ], "team_id": [ - 3818 + 3863 ], "tournament_id": [ - 3818 + 3863 ], "tournament_team_id": [ - 3818 + 3863 ], "__typename": [ - 70 + 74 ] }, "tournament_trophies_sum_fields": { @@ -87782,36 +89508,36 @@ export default { 38 ], "player_steam_id": [ - 169 + 173 ], "__typename": [ - 70 + 74 ] }, "tournament_trophies_sum_order_by": { "placement": [ - 2011 + 2015 ], "player_steam_id": [ - 2011 + 2015 ], "__typename": [ - 70 + 74 ] }, "tournament_trophies_update_column": {}, "tournament_trophies_updates": { "_inc": [ - 3698 + 3743 ], "_set": [ - 3711 + 3756 ], "where": [ - 3696 + 3741 ], "__typename": [ - 70 + 74 ] }, "tournament_trophies_var_pop_fields": { @@ -87822,18 +89548,18 @@ export default { 29 ], "__typename": [ - 70 + 74 ] }, "tournament_trophies_var_pop_order_by": { "placement": [ - 2011 + 2015 ], "player_steam_id": [ - 2011 + 2015 ], "__typename": [ - 70 + 74 ] }, "tournament_trophies_var_samp_fields": { @@ -87844,18 +89570,18 @@ export default { 29 ], "__typename": [ - 70 + 74 ] }, "tournament_trophies_var_samp_order_by": { "placement": [ - 2011 + 2015 ], "player_steam_id": [ - 2011 + 2015 ], "__typename": [ - 70 + 74 ] }, "tournament_trophies_variance_fields": { @@ -87866,32 +89592,32 @@ export default { 29 ], "__typename": [ - 70 + 74 ] }, "tournament_trophies_variance_order_by": { "placement": [ - 2011 + 2015 ], "player_steam_id": [ - 2011 + 2015 ], "__typename": [ - 70 + 74 ] }, "tournament_trophy_configs": { "created_at": [ - 3421 + 3466 ], "custom_name": [ - 70 + 74 ], "id": [ - 3818 + 3863 ], "image_url": [ - 70 + 74 ], "placement": [ 38 @@ -87900,63 +89626,63 @@ export default { 38 ], "tournament": [ - 3772 + 3817 ], "tournament_id": [ - 3818 + 3863 ], "updated_at": [ - 3421 + 3466 ], "__typename": [ - 70 + 74 ] }, "tournament_trophy_configs_aggregate": { "aggregate": [ - 3734 + 3779 ], "nodes": [ - 3730 + 3775 ], "__typename": [ - 70 + 74 ] }, "tournament_trophy_configs_aggregate_bool_exp": { "count": [ - 3733 + 3778 ], "__typename": [ - 70 + 74 ] }, "tournament_trophy_configs_aggregate_bool_exp_count": { "arguments": [ - 3752 + 3797 ], "distinct": [ 3 ], "filter": [ - 3739 + 3784 ], "predicate": [ 39 ], "__typename": [ - 70 + 74 ] }, "tournament_trophy_configs_aggregate_fields": { "avg": [ - 3737 + 3782 ], "count": [ 38, { "columns": [ - 3752, + 3797, "[tournament_trophy_configs_select_column!]" ], "distinct": [ @@ -87965,83 +89691,83 @@ export default { } ], "max": [ - 3743 + 3788 ], "min": [ - 3745 + 3790 ], "stddev": [ - 3754 + 3799 ], "stddev_pop": [ - 3756 + 3801 ], "stddev_samp": [ - 3758 + 3803 ], "sum": [ - 3762 + 3807 ], "var_pop": [ - 3766 + 3811 ], "var_samp": [ - 3768 + 3813 ], "variance": [ - 3770 + 3815 ], "__typename": [ - 70 + 74 ] }, "tournament_trophy_configs_aggregate_order_by": { "avg": [ - 3738 + 3783 ], "count": [ - 2011 + 2015 ], "max": [ - 3744 + 3789 ], "min": [ - 3746 + 3791 ], "stddev": [ - 3755 + 3800 ], "stddev_pop": [ - 3757 + 3802 ], "stddev_samp": [ - 3759 + 3804 ], "sum": [ - 3763 + 3808 ], "var_pop": [ - 3767 + 3812 ], "var_samp": [ - 3769 + 3814 ], "variance": [ - 3771 + 3816 ], "__typename": [ - 70 + 74 ] }, "tournament_trophy_configs_arr_rel_insert_input": { "data": [ - 3742 + 3787 ], "on_conflict": [ - 3749 + 3794 ], "__typename": [ - 70 + 74 ] }, "tournament_trophy_configs_avg_fields": { @@ -88052,41 +89778,41 @@ export default { 29 ], "__typename": [ - 70 + 74 ] }, "tournament_trophy_configs_avg_order_by": { "placement": [ - 2011 + 2015 ], "silhouette": [ - 2011 + 2015 ], "__typename": [ - 70 + 74 ] }, "tournament_trophy_configs_bool_exp": { "_and": [ - 3739 + 3784 ], "_not": [ - 3739 + 3784 ], "_or": [ - 3739 + 3784 ], "created_at": [ - 3422 + 3467 ], "custom_name": [ - 72 + 76 ], "id": [ - 3820 + 3865 ], "image_url": [ - 72 + 76 ], "placement": [ 39 @@ -88095,16 +89821,16 @@ export default { 39 ], "tournament": [ - 3783 + 3828 ], "tournament_id": [ - 3820 + 3865 ], "updated_at": [ - 3422 + 3467 ], "__typename": [ - 70 + 74 ] }, "tournament_trophy_configs_constraint": {}, @@ -88116,21 +89842,21 @@ export default { 38 ], "__typename": [ - 70 + 74 ] }, "tournament_trophy_configs_insert_input": { "created_at": [ - 3421 + 3466 ], "custom_name": [ - 70 + 74 ], "id": [ - 3818 + 3863 ], "image_url": [ - 70 + 74 ], "placement": [ 38 @@ -88139,30 +89865,30 @@ export default { 38 ], "tournament": [ - 3792 + 3837 ], "tournament_id": [ - 3818 + 3863 ], "updated_at": [ - 3421 + 3466 ], "__typename": [ - 70 + 74 ] }, "tournament_trophy_configs_max_fields": { "created_at": [ - 3421 + 3466 ], "custom_name": [ - 70 + 74 ], "id": [ - 3818 + 3863 ], "image_url": [ - 70 + 74 ], "placement": [ 38 @@ -88171,56 +89897,56 @@ export default { 38 ], "tournament_id": [ - 3818 + 3863 ], "updated_at": [ - 3421 + 3466 ], "__typename": [ - 70 + 74 ] }, "tournament_trophy_configs_max_order_by": { "created_at": [ - 2011 + 2015 ], "custom_name": [ - 2011 + 2015 ], "id": [ - 2011 + 2015 ], "image_url": [ - 2011 + 2015 ], "placement": [ - 2011 + 2015 ], "silhouette": [ - 2011 + 2015 ], "tournament_id": [ - 2011 + 2015 ], "updated_at": [ - 2011 + 2015 ], "__typename": [ - 70 + 74 ] }, "tournament_trophy_configs_min_fields": { "created_at": [ - 3421 + 3466 ], "custom_name": [ - 70 + 74 ], "id": [ - 3818 + 3863 ], "image_url": [ - 70 + 74 ], "placement": [ 38 @@ -88229,42 +89955,42 @@ export default { 38 ], "tournament_id": [ - 3818 + 3863 ], "updated_at": [ - 3421 + 3466 ], "__typename": [ - 70 + 74 ] }, "tournament_trophy_configs_min_order_by": { "created_at": [ - 2011 + 2015 ], "custom_name": [ - 2011 + 2015 ], "id": [ - 2011 + 2015 ], "image_url": [ - 2011 + 2015 ], "placement": [ - 2011 + 2015 ], "silhouette": [ - 2011 + 2015 ], "tournament_id": [ - 2011 + 2015 ], "updated_at": [ - 2011 + 2015 ], "__typename": [ - 70 + 74 ] }, "tournament_trophy_configs_mutation_response": { @@ -88272,90 +89998,90 @@ export default { 38 ], "returning": [ - 3730 + 3775 ], "__typename": [ - 70 + 74 ] }, "tournament_trophy_configs_obj_rel_insert_input": { "data": [ - 3742 + 3787 ], "on_conflict": [ - 3749 + 3794 ], "__typename": [ - 70 + 74 ] }, "tournament_trophy_configs_on_conflict": { "constraint": [ - 3740 + 3785 ], "update_columns": [ - 3764 + 3809 ], "where": [ - 3739 + 3784 ], "__typename": [ - 70 + 74 ] }, "tournament_trophy_configs_order_by": { "created_at": [ - 2011 + 2015 ], "custom_name": [ - 2011 + 2015 ], "id": [ - 2011 + 2015 ], "image_url": [ - 2011 + 2015 ], "placement": [ - 2011 + 2015 ], "silhouette": [ - 2011 + 2015 ], "tournament": [ - 3794 + 3839 ], "tournament_id": [ - 2011 + 2015 ], "updated_at": [ - 2011 + 2015 ], "__typename": [ - 70 + 74 ] }, "tournament_trophy_configs_pk_columns_input": { "id": [ - 3818 + 3863 ], "__typename": [ - 70 + 74 ] }, "tournament_trophy_configs_select_column": {}, "tournament_trophy_configs_set_input": { "created_at": [ - 3421 + 3466 ], "custom_name": [ - 70 + 74 ], "id": [ - 3818 + 3863 ], "image_url": [ - 70 + 74 ], "placement": [ 38 @@ -88364,13 +90090,13 @@ export default { 38 ], "tournament_id": [ - 3818 + 3863 ], "updated_at": [ - 3421 + 3466 ], "__typename": [ - 70 + 74 ] }, "tournament_trophy_configs_stddev_fields": { @@ -88381,18 +90107,18 @@ export default { 29 ], "__typename": [ - 70 + 74 ] }, "tournament_trophy_configs_stddev_order_by": { "placement": [ - 2011 + 2015 ], "silhouette": [ - 2011 + 2015 ], "__typename": [ - 70 + 74 ] }, "tournament_trophy_configs_stddev_pop_fields": { @@ -88403,18 +90129,18 @@ export default { 29 ], "__typename": [ - 70 + 74 ] }, "tournament_trophy_configs_stddev_pop_order_by": { "placement": [ - 2011 + 2015 ], "silhouette": [ - 2011 + 2015 ], "__typename": [ - 70 + 74 ] }, "tournament_trophy_configs_stddev_samp_fields": { @@ -88425,43 +90151,43 @@ export default { 29 ], "__typename": [ - 70 + 74 ] }, "tournament_trophy_configs_stddev_samp_order_by": { "placement": [ - 2011 + 2015 ], "silhouette": [ - 2011 + 2015 ], "__typename": [ - 70 + 74 ] }, "tournament_trophy_configs_stream_cursor_input": { "initial_value": [ - 3761 + 3806 ], "ordering": [ - 224 + 228 ], "__typename": [ - 70 + 74 ] }, "tournament_trophy_configs_stream_cursor_value_input": { "created_at": [ - 3421 + 3466 ], "custom_name": [ - 70 + 74 ], "id": [ - 3818 + 3863 ], "image_url": [ - 70 + 74 ], "placement": [ 38 @@ -88470,13 +90196,13 @@ export default { 38 ], "tournament_id": [ - 3818 + 3863 ], "updated_at": [ - 3421 + 3466 ], "__typename": [ - 70 + 74 ] }, "tournament_trophy_configs_sum_fields": { @@ -88487,33 +90213,33 @@ export default { 38 ], "__typename": [ - 70 + 74 ] }, "tournament_trophy_configs_sum_order_by": { "placement": [ - 2011 + 2015 ], "silhouette": [ - 2011 + 2015 ], "__typename": [ - 70 + 74 ] }, "tournament_trophy_configs_update_column": {}, "tournament_trophy_configs_updates": { "_inc": [ - 3741 + 3786 ], "_set": [ - 3753 + 3798 ], "where": [ - 3739 + 3784 ], "__typename": [ - 70 + 74 ] }, "tournament_trophy_configs_var_pop_fields": { @@ -88524,18 +90250,18 @@ export default { 29 ], "__typename": [ - 70 + 74 ] }, "tournament_trophy_configs_var_pop_order_by": { "placement": [ - 2011 + 2015 ], "silhouette": [ - 2011 + 2015 ], "__typename": [ - 70 + 74 ] }, "tournament_trophy_configs_var_samp_fields": { @@ -88546,18 +90272,18 @@ export default { 29 ], "__typename": [ - 70 + 74 ] }, "tournament_trophy_configs_var_samp_order_by": { "placement": [ - 2011 + 2015 ], "silhouette": [ - 2011 + 2015 ], "__typename": [ - 70 + 74 ] }, "tournament_trophy_configs_variance_fields": { @@ -88568,23 +90294,23 @@ export default { 29 ], "__typename": [ - 70 + 74 ] }, "tournament_trophy_configs_variance_order_by": { "placement": [ - 2011 + 2015 ], "silhouette": [ - 2011 + 2015 ], "__typename": [ - 70 + 74 ] }, "tournaments": { "admin": [ - 2878 + 2914 ], "auto_start": [ 3 @@ -88614,13 +90340,13 @@ export default { 3 ], "created_at": [ - 3421 + 3466 ], "description": [ - 70 + 74 ], "discord_guild_id": [ - 70 + 74 ], "discord_notifications_enabled": [ 3 @@ -88662,22 +90388,22 @@ export default { 3 ], "discord_role_id": [ - 70 + 74 ], "discord_voice_enabled": [ 3 ], "discord_webhook": [ - 70 + 74 ], "e_tournament_status": [ - 1003 + 1007 ], "has_min_teams": [ 3 ], "id": [ - 3818 + 3863 ], "is_organizer": [ 3 @@ -88686,7 +90412,7 @@ export default { 3 ], "match_options_id": [ - 3818 + 3863 ], "max_players_per_lineup": [ 38 @@ -88695,19 +90421,19 @@ export default { 38 ], "name": [ - 70 + 74 ], "options": [ - 1706 + 1710 ], "organizer_steam_id": [ - 169 + 173 ], "organizers": [ - 3469, + 3514, { "distinct_on": [ - 3490, + 3535, "[tournament_organizers_select_column!]" ], "limit": [ @@ -88717,19 +90443,19 @@ export default { 38 ], "order_by": [ - 3488, + 3533, "[tournament_organizers_order_by!]" ], "where": [ - 3478 + 3523 ] } ], "organizers_aggregate": [ - 3470, + 3515, { "distinct_on": [ - 3490, + 3535, "[tournament_organizers_select_column!]" ], "limit": [ @@ -88739,19 +90465,19 @@ export default { 38 ], "order_by": [ - 3488, + 3533, "[tournament_organizers_order_by!]" ], "where": [ - 3478 + 3523 ] } ], "player_stats": [ - 4518, + 4563, { "distinct_on": [ - 4544, + 4589, "[v_tournament_player_stats_select_column!]" ], "limit": [ @@ -88761,19 +90487,19 @@ export default { 38 ], "order_by": [ - 4543, + 4588, "[v_tournament_player_stats_order_by!]" ], "where": [ - 4537 + 4582 ] } ], "player_stats_aggregate": [ - 4519, + 4564, { "distinct_on": [ - 4544, + 4589, "[v_tournament_player_stats_select_column!]" ], "limit": [ @@ -88783,19 +90509,19 @@ export default { 38 ], "order_by": [ - 4543, + 4588, "[v_tournament_player_stats_order_by!]" ], "where": [ - 4537 + 4582 ] } ], "results": [ - 4467, + 4512, { "distinct_on": [ - 4493, + 4538, "[v_team_tournament_results_select_column!]" ], "limit": [ @@ -88805,19 +90531,19 @@ export default { 38 ], "order_by": [ - 4492, + 4537, "[v_team_tournament_results_order_by!]" ], "where": [ - 4486 + 4531 ] } ], "results_aggregate": [ - 4468, + 4513, { "distinct_on": [ - 4493, + 4538, "[v_team_tournament_results_select_column!]" ], "limit": [ @@ -88827,19 +90553,19 @@ export default { 38 ], "order_by": [ - 4492, + 4537, "[v_team_tournament_results_order_by!]" ], "where": [ - 4486 + 4531 ] } ], "rosters": [ - 3602, + 3647, { "distinct_on": [ - 3623, + 3668, "[tournament_team_roster_select_column!]" ], "limit": [ @@ -88849,19 +90575,19 @@ export default { 38 ], "order_by": [ - 3621, + 3666, "[tournament_team_roster_order_by!]" ], "where": [ - 3611 + 3656 ] } ], "rosters_aggregate": [ - 3603, + 3648, { "distinct_on": [ - 3623, + 3668, "[tournament_team_roster_select_column!]" ], "limit": [ @@ -88871,19 +90597,19 @@ export default { 38 ], "order_by": [ - 3621, + 3666, "[tournament_team_roster_order_by!]" ], "where": [ - 3611 + 3656 ] } ], "stages": [ - 3510, + 3555, { "distinct_on": [ - 3539, + 3584, "[tournament_stages_select_column!]" ], "limit": [ @@ -88893,19 +90619,19 @@ export default { 38 ], "order_by": [ - 3536, + 3581, "[tournament_stages_order_by!]" ], "where": [ - 3522 + 3567 ] } ], "stages_aggregate": [ - 3511, + 3556, { "distinct_on": [ - 3539, + 3584, "[tournament_stages_select_column!]" ], "limit": [ @@ -88915,25 +90641,25 @@ export default { 38 ], "order_by": [ - 3536, + 3581, "[tournament_stages_order_by!]" ], "where": [ - 3522 + 3567 ] } ], "start": [ - 3421 + 3466 ], "status": [ - 1008 + 1012 ], "teams": [ - 3643, + 3688, { "distinct_on": [ - 3665, + 3710, "[tournament_teams_select_column!]" ], "limit": [ @@ -88943,19 +90669,19 @@ export default { 38 ], "order_by": [ - 3663, + 3708, "[tournament_teams_order_by!]" ], "where": [ - 3652 + 3697 ] } ], "teams_aggregate": [ - 3644, + 3689, { "distinct_on": [ - 3665, + 3710, "[tournament_teams_select_column!]" ], "limit": [ @@ -88965,19 +90691,19 @@ export default { 38 ], "order_by": [ - 3663, + 3708, "[tournament_teams_order_by!]" ], "where": [ - 3652 + 3697 ] } ], "trophies": [ - 3685, + 3730, { "distinct_on": [ - 3708, + 3753, "[tournament_trophies_select_column!]" ], "limit": [ @@ -88987,19 +90713,19 @@ export default { 38 ], "order_by": [ - 3706, + 3751, "[tournament_trophies_order_by!]" ], "where": [ - 3696 + 3741 ] } ], "trophies_aggregate": [ - 3686, + 3731, { "distinct_on": [ - 3708, + 3753, "[tournament_trophies_select_column!]" ], "limit": [ @@ -89009,11 +90735,11 @@ export default { 38 ], "order_by": [ - 3706, + 3751, "[tournament_trophies_order_by!]" ], "where": [ - 3696 + 3741 ] } ], @@ -89021,10 +90747,10 @@ export default { 3 ], "trophy_configs": [ - 3730, + 3775, { "distinct_on": [ - 3752, + 3797, "[tournament_trophy_configs_select_column!]" ], "limit": [ @@ -89034,19 +90760,19 @@ export default { 38 ], "order_by": [ - 3750, + 3795, "[tournament_trophy_configs_order_by!]" ], "where": [ - 3739 + 3784 ] } ], "trophy_configs_aggregate": [ - 3731, + 3776, { "distinct_on": [ - 3752, + 3797, "[tournament_trophy_configs_select_column!]" ], "limit": [ @@ -89056,103 +90782,103 @@ export default { 38 ], "order_by": [ - 3750, + 3795, "[tournament_trophy_configs_order_by!]" ], "where": [ - 3739 + 3784 ] } ], "__typename": [ - 70 + 74 ] }, "tournaments_aggregate": { "aggregate": [ - 3778 + 3823 ], "nodes": [ - 3772 + 3817 ], "__typename": [ - 70 + 74 ] }, "tournaments_aggregate_bool_exp": { "bool_and": [ - 3775 + 3820 ], "bool_or": [ - 3776 + 3821 ], "count": [ - 3777 + 3822 ], "__typename": [ - 70 + 74 ] }, "tournaments_aggregate_bool_exp_bool_and": { "arguments": [ - 3797 + 3842 ], "distinct": [ 3 ], "filter": [ - 3783 + 3828 ], "predicate": [ 4 ], "__typename": [ - 70 + 74 ] }, "tournaments_aggregate_bool_exp_bool_or": { "arguments": [ - 3798 + 3843 ], "distinct": [ 3 ], "filter": [ - 3783 + 3828 ], "predicate": [ 4 ], "__typename": [ - 70 + 74 ] }, "tournaments_aggregate_bool_exp_count": { "arguments": [ - 3796 + 3841 ], "distinct": [ 3 ], "filter": [ - 3783 + 3828 ], "predicate": [ 39 ], "__typename": [ - 70 + 74 ] }, "tournaments_aggregate_fields": { "avg": [ - 3781 + 3826 ], "count": [ 38, { "columns": [ - 3796, + 3841, "[tournaments_select_column!]" ], "distinct": [ @@ -89161,83 +90887,83 @@ export default { } ], "max": [ - 3787 + 3832 ], "min": [ - 3789 + 3834 ], "stddev": [ - 3800 + 3845 ], "stddev_pop": [ - 3802 + 3847 ], "stddev_samp": [ - 3804 + 3849 ], "sum": [ - 3808 + 3853 ], "var_pop": [ - 3812 + 3857 ], "var_samp": [ - 3814 + 3859 ], "variance": [ - 3816 + 3861 ], "__typename": [ - 70 + 74 ] }, "tournaments_aggregate_order_by": { "avg": [ - 3782 + 3827 ], "count": [ - 2011 + 2015 ], "max": [ - 3788 + 3833 ], "min": [ - 3790 + 3835 ], "stddev": [ - 3801 + 3846 ], "stddev_pop": [ - 3803 + 3848 ], "stddev_samp": [ - 3805 + 3850 ], "sum": [ - 3809 + 3854 ], "var_pop": [ - 3813 + 3858 ], "var_samp": [ - 3815 + 3860 ], "variance": [ - 3817 + 3862 ], "__typename": [ - 70 + 74 ] }, "tournaments_arr_rel_insert_input": { "data": [ - 3786 + 3831 ], "on_conflict": [ - 3793 + 3838 ], "__typename": [ - 70 + 74 ] }, "tournaments_avg_fields": { @@ -89251,29 +90977,29 @@ export default { 29 ], "__typename": [ - 70 + 74 ] }, "tournaments_avg_order_by": { "organizer_steam_id": [ - 2011 + 2015 ], "__typename": [ - 70 + 74 ] }, "tournaments_bool_exp": { "_and": [ - 3783 + 3828 ], "_not": [ - 3783 + 3828 ], "_or": [ - 3783 + 3828 ], "admin": [ - 2882 + 2918 ], "auto_start": [ 4 @@ -89303,13 +91029,13 @@ export default { 4 ], "created_at": [ - 3422 + 3467 ], "description": [ - 72 + 76 ], "discord_guild_id": [ - 72 + 76 ], "discord_notifications_enabled": [ 4 @@ -89351,22 +91077,22 @@ export default { 4 ], "discord_role_id": [ - 72 + 76 ], "discord_voice_enabled": [ 4 ], "discord_webhook": [ - 72 + 76 ], "e_tournament_status": [ - 1006 + 1010 ], "has_min_teams": [ 4 ], "id": [ - 3820 + 3865 ], "is_organizer": [ 4 @@ -89375,7 +91101,7 @@ export default { 4 ], "match_options_id": [ - 3820 + 3865 ], "max_players_per_lineup": [ 39 @@ -89384,99 +91110,99 @@ export default { 39 ], "name": [ - 72 + 76 ], "options": [ - 1710 + 1714 ], "organizer_steam_id": [ - 171 + 175 ], "organizers": [ - 3478 + 3523 ], "organizers_aggregate": [ - 3471 + 3516 ], "player_stats": [ - 4537 + 4582 ], "player_stats_aggregate": [ - 4520 + 4565 ], "results": [ - 4486 + 4531 ], "results_aggregate": [ - 4469 + 4514 ], "rosters": [ - 3611 + 3656 ], "rosters_aggregate": [ - 3604 + 3649 ], "stages": [ - 3522 + 3567 ], "stages_aggregate": [ - 3512 + 3557 ], "start": [ - 3422 + 3467 ], "status": [ - 1009 + 1013 ], "teams": [ - 3652 + 3697 ], "teams_aggregate": [ - 3645 + 3690 ], "trophies": [ - 3696 + 3741 ], "trophies_aggregate": [ - 3687 + 3732 ], "trophies_enabled": [ 4 ], "trophy_configs": [ - 3739 + 3784 ], "trophy_configs_aggregate": [ - 3732 + 3777 ], "__typename": [ - 70 + 74 ] }, "tournaments_constraint": {}, "tournaments_inc_input": { "organizer_steam_id": [ - 169 + 173 ], "__typename": [ - 70 + 74 ] }, "tournaments_insert_input": { "admin": [ - 2889 + 2925 ], "auto_start": [ 3 ], "created_at": [ - 3421 + 3466 ], "description": [ - 70 + 74 ], "discord_guild_id": [ - 70 + 74 ], "discord_notifications_enabled": [ 3 @@ -89518,90 +91244,90 @@ export default { 3 ], "discord_role_id": [ - 70 + 74 ], "discord_voice_enabled": [ 3 ], "discord_webhook": [ - 70 + 74 ], "e_tournament_status": [ - 1014 + 1018 ], "id": [ - 3818 + 3863 ], "match_options_id": [ - 3818 + 3863 ], "name": [ - 70 + 74 ], "options": [ - 1717 + 1721 ], "organizer_steam_id": [ - 169 + 173 ], "organizers": [ - 3475 + 3520 ], "player_stats": [ - 4534 + 4579 ], "results": [ - 4483 + 4528 ], "rosters": [ - 3608 + 3653 ], "stages": [ - 3519 + 3564 ], "start": [ - 3421 + 3466 ], "status": [ - 1008 + 1012 ], "teams": [ - 3649 + 3694 ], "trophies": [ - 3693 + 3738 ], "trophies_enabled": [ 3 ], "trophy_configs": [ - 3736 + 3781 ], "__typename": [ - 70 + 74 ] }, "tournaments_max_fields": { "created_at": [ - 3421 + 3466 ], "description": [ - 70 + 74 ], "discord_guild_id": [ - 70 + 74 ], "discord_role_id": [ - 70 + 74 ], "discord_webhook": [ - 70 + 74 ], "id": [ - 3818 + 3863 ], "match_options_id": [ - 3818 + 3863 ], "max_players_per_lineup": [ 38 @@ -89610,74 +91336,74 @@ export default { 38 ], "name": [ - 70 + 74 ], "organizer_steam_id": [ - 169 + 173 ], "start": [ - 3421 + 3466 ], "__typename": [ - 70 + 74 ] }, "tournaments_max_order_by": { "created_at": [ - 2011 + 2015 ], "description": [ - 2011 + 2015 ], "discord_guild_id": [ - 2011 + 2015 ], "discord_role_id": [ - 2011 + 2015 ], "discord_webhook": [ - 2011 + 2015 ], "id": [ - 2011 + 2015 ], "match_options_id": [ - 2011 + 2015 ], "name": [ - 2011 + 2015 ], "organizer_steam_id": [ - 2011 + 2015 ], "start": [ - 2011 + 2015 ], "__typename": [ - 70 + 74 ] }, "tournaments_min_fields": { "created_at": [ - 3421 + 3466 ], "description": [ - 70 + 74 ], "discord_guild_id": [ - 70 + 74 ], "discord_role_id": [ - 70 + 74 ], "discord_webhook": [ - 70 + 74 ], "id": [ - 3818 + 3863 ], "match_options_id": [ - 3818 + 3863 ], "max_players_per_lineup": [ 38 @@ -89686,51 +91412,51 @@ export default { 38 ], "name": [ - 70 + 74 ], "organizer_steam_id": [ - 169 + 173 ], "start": [ - 3421 + 3466 ], "__typename": [ - 70 + 74 ] }, "tournaments_min_order_by": { "created_at": [ - 2011 + 2015 ], "description": [ - 2011 + 2015 ], "discord_guild_id": [ - 2011 + 2015 ], "discord_role_id": [ - 2011 + 2015 ], "discord_webhook": [ - 2011 + 2015 ], "id": [ - 2011 + 2015 ], "match_options_id": [ - 2011 + 2015 ], "name": [ - 2011 + 2015 ], "organizer_steam_id": [ - 2011 + 2015 ], "start": [ - 2011 + 2015 ], "__typename": [ - 70 + 74 ] }, "tournaments_mutation_response": { @@ -89738,201 +91464,201 @@ export default { 38 ], "returning": [ - 3772 + 3817 ], "__typename": [ - 70 + 74 ] }, "tournaments_obj_rel_insert_input": { "data": [ - 3786 + 3831 ], "on_conflict": [ - 3793 + 3838 ], "__typename": [ - 70 + 74 ] }, "tournaments_on_conflict": { "constraint": [ - 3784 + 3829 ], "update_columns": [ - 3810 + 3855 ], "where": [ - 3783 + 3828 ], "__typename": [ - 70 + 74 ] }, "tournaments_order_by": { "admin": [ - 2891 + 2927 ], "auto_start": [ - 2011 + 2015 ], "can_cancel": [ - 2011 + 2015 ], "can_close_registration": [ - 2011 + 2015 ], "can_join": [ - 2011 + 2015 ], "can_open_registration": [ - 2011 + 2015 ], "can_pause": [ - 2011 + 2015 ], "can_resume": [ - 2011 + 2015 ], "can_setup": [ - 2011 + 2015 ], "can_start": [ - 2011 + 2015 ], "created_at": [ - 2011 + 2015 ], "description": [ - 2011 + 2015 ], "discord_guild_id": [ - 2011 + 2015 ], "discord_notifications_enabled": [ - 2011 + 2015 ], "discord_notify_Canceled": [ - 2011 + 2015 ], "discord_notify_Finished": [ - 2011 + 2015 ], "discord_notify_Forfeit": [ - 2011 + 2015 ], "discord_notify_Live": [ - 2011 + 2015 ], "discord_notify_MapPaused": [ - 2011 + 2015 ], "discord_notify_PickingPlayers": [ - 2011 + 2015 ], "discord_notify_Scheduled": [ - 2011 + 2015 ], "discord_notify_Surrendered": [ - 2011 + 2015 ], "discord_notify_Tie": [ - 2011 + 2015 ], "discord_notify_Veto": [ - 2011 + 2015 ], "discord_notify_WaitingForCheckIn": [ - 2011 + 2015 ], "discord_notify_WaitingForServer": [ - 2011 + 2015 ], "discord_role_id": [ - 2011 + 2015 ], "discord_voice_enabled": [ - 2011 + 2015 ], "discord_webhook": [ - 2011 + 2015 ], "e_tournament_status": [ - 1016 + 1020 ], "has_min_teams": [ - 2011 + 2015 ], "id": [ - 2011 + 2015 ], "is_organizer": [ - 2011 + 2015 ], "joined_tournament": [ - 2011 + 2015 ], "match_options_id": [ - 2011 + 2015 ], "max_players_per_lineup": [ - 2011 + 2015 ], "min_players_per_lineup": [ - 2011 + 2015 ], "name": [ - 2011 + 2015 ], "options": [ - 1719 + 1723 ], "organizer_steam_id": [ - 2011 + 2015 ], "organizers_aggregate": [ - 3474 + 3519 ], "player_stats_aggregate": [ - 4533 + 4578 ], "results_aggregate": [ - 4482 + 4527 ], "rosters_aggregate": [ - 3607 + 3652 ], "stages_aggregate": [ - 3517 + 3562 ], "start": [ - 2011 + 2015 ], "status": [ - 2011 + 2015 ], "teams_aggregate": [ - 3648 + 3693 ], "trophies_aggregate": [ - 3692 + 3737 ], "trophies_enabled": [ - 2011 + 2015 ], "trophy_configs_aggregate": [ - 3735 + 3780 ], "__typename": [ - 70 + 74 ] }, "tournaments_pk_columns_input": { "id": [ - 3818 + 3863 ], "__typename": [ - 70 + 74 ] }, "tournaments_select_column": {}, @@ -89943,13 +91669,13 @@ export default { 3 ], "created_at": [ - 3421 + 3466 ], "description": [ - 70 + 74 ], "discord_guild_id": [ - 70 + 74 ], "discord_notifications_enabled": [ 3 @@ -89991,37 +91717,37 @@ export default { 3 ], "discord_role_id": [ - 70 + 74 ], "discord_voice_enabled": [ 3 ], "discord_webhook": [ - 70 + 74 ], "id": [ - 3818 + 3863 ], "match_options_id": [ - 3818 + 3863 ], "name": [ - 70 + 74 ], "organizer_steam_id": [ - 169 + 173 ], "start": [ - 3421 + 3466 ], "status": [ - 1008 + 1012 ], "trophies_enabled": [ 3 ], "__typename": [ - 70 + 74 ] }, "tournaments_stddev_fields": { @@ -90035,15 +91761,15 @@ export default { 29 ], "__typename": [ - 70 + 74 ] }, "tournaments_stddev_order_by": { "organizer_steam_id": [ - 2011 + 2015 ], "__typename": [ - 70 + 74 ] }, "tournaments_stddev_pop_fields": { @@ -90057,15 +91783,15 @@ export default { 29 ], "__typename": [ - 70 + 74 ] }, "tournaments_stddev_pop_order_by": { "organizer_steam_id": [ - 2011 + 2015 ], "__typename": [ - 70 + 74 ] }, "tournaments_stddev_samp_fields": { @@ -90079,26 +91805,26 @@ export default { 29 ], "__typename": [ - 70 + 74 ] }, "tournaments_stddev_samp_order_by": { "organizer_steam_id": [ - 2011 + 2015 ], "__typename": [ - 70 + 74 ] }, "tournaments_stream_cursor_input": { "initial_value": [ - 3807 + 3852 ], "ordering": [ - 224 + 228 ], "__typename": [ - 70 + 74 ] }, "tournaments_stream_cursor_value_input": { @@ -90106,13 +91832,13 @@ export default { 3 ], "created_at": [ - 3421 + 3466 ], "description": [ - 70 + 74 ], "discord_guild_id": [ - 70 + 74 ], "discord_notifications_enabled": [ 3 @@ -90154,37 +91880,37 @@ export default { 3 ], "discord_role_id": [ - 70 + 74 ], "discord_voice_enabled": [ 3 ], "discord_webhook": [ - 70 + 74 ], "id": [ - 3818 + 3863 ], "match_options_id": [ - 3818 + 3863 ], "name": [ - 70 + 74 ], "organizer_steam_id": [ - 169 + 173 ], "start": [ - 3421 + 3466 ], "status": [ - 1008 + 1012 ], "trophies_enabled": [ 3 ], "__typename": [ - 70 + 74 ] }, "tournaments_sum_fields": { @@ -90195,33 +91921,33 @@ export default { 38 ], "organizer_steam_id": [ - 169 + 173 ], "__typename": [ - 70 + 74 ] }, "tournaments_sum_order_by": { "organizer_steam_id": [ - 2011 + 2015 ], "__typename": [ - 70 + 74 ] }, "tournaments_update_column": {}, "tournaments_updates": { "_inc": [ - 3785 + 3830 ], "_set": [ - 3799 + 3844 ], "where": [ - 3783 + 3828 ], "__typename": [ - 70 + 74 ] }, "tournaments_var_pop_fields": { @@ -90235,15 +91961,15 @@ export default { 29 ], "__typename": [ - 70 + 74 ] }, "tournaments_var_pop_order_by": { "organizer_steam_id": [ - 2011 + 2015 ], "__typename": [ - 70 + 74 ] }, "tournaments_var_samp_fields": { @@ -90257,15 +91983,15 @@ export default { 29 ], "__typename": [ - 70 + 74 ] }, "tournaments_var_samp_order_by": { "organizer_steam_id": [ - 2011 + 2015 ], "__typename": [ - 70 + 74 ] }, "tournaments_variance_fields": { @@ -90279,86 +92005,86 @@ export default { 29 ], "__typename": [ - 70 + 74 ] }, "tournaments_variance_order_by": { "organizer_steam_id": [ - 2011 + 2015 ], "__typename": [ - 70 + 74 ] }, "uuid": {}, "uuid_array_comparison_exp": { "_contained_in": [ - 3818 + 3863 ], "_contains": [ - 3818 + 3863 ], "_eq": [ - 3818 + 3863 ], "_gt": [ - 3818 + 3863 ], "_gte": [ - 3818 + 3863 ], "_in": [ - 3818 + 3863 ], "_is_null": [ 3 ], "_lt": [ - 3818 + 3863 ], "_lte": [ - 3818 + 3863 ], "_neq": [ - 3818 + 3863 ], "_nin": [ - 3818 + 3863 ], "__typename": [ - 70 + 74 ] }, "uuid_comparison_exp": { "_eq": [ - 3818 + 3863 ], "_gt": [ - 3818 + 3863 ], "_gte": [ - 3818 + 3863 ], "_in": [ - 3818 + 3863 ], "_is_null": [ 3 ], "_lt": [ - 3818 + 3863 ], "_lte": [ - 3818 + 3863 ], "_neq": [ - 3818 + 3863 ], "_nin": [ - 3818 + 3863 ], "__typename": [ - 70 + 74 ] }, "v_gpu_pool_status": { @@ -90405,29 +92131,29 @@ export default { 38 ], "__typename": [ - 70 + 74 ] }, "v_gpu_pool_status_aggregate": { "aggregate": [ - 3823 + 3868 ], "nodes": [ - 3821 + 3866 ], "__typename": [ - 70 + 74 ] }, "v_gpu_pool_status_aggregate_fields": { "avg": [ - 3824 + 3869 ], "count": [ 38, { "columns": [ - 3829, + 3874, "[v_gpu_pool_status_select_column!]" ], "distinct": [ @@ -90436,34 +92162,34 @@ export default { } ], "max": [ - 3826 + 3871 ], "min": [ - 3827 + 3872 ], "stddev": [ - 3830 + 3875 ], "stddev_pop": [ - 3831 + 3876 ], "stddev_samp": [ - 3832 + 3877 ], "sum": [ - 3835 + 3880 ], "var_pop": [ - 3836 + 3881 ], "var_samp": [ - 3837 + 3882 ], "variance": [ - 3838 + 3883 ], "__typename": [ - 70 + 74 ] }, "v_gpu_pool_status_avg_fields": { @@ -90498,18 +92224,18 @@ export default { 29 ], "__typename": [ - 70 + 74 ] }, "v_gpu_pool_status_bool_exp": { "_and": [ - 3825 + 3870 ], "_not": [ - 3825 + 3870 ], "_or": [ - 3825 + 3870 ], "demo_free_gpu_nodes": [ 39 @@ -90554,7 +92280,7 @@ export default { 39 ], "__typename": [ - 70 + 74 ] }, "v_gpu_pool_status_max_fields": { @@ -90589,7 +92315,7 @@ export default { 38 ], "__typename": [ - 70 + 74 ] }, "v_gpu_pool_status_min_fields": { @@ -90624,54 +92350,54 @@ export default { 38 ], "__typename": [ - 70 + 74 ] }, "v_gpu_pool_status_order_by": { "demo_free_gpu_nodes": [ - 2011 + 2015 ], "demo_in_progress": [ - 2011 + 2015 ], "demo_total_gpu_nodes": [ - 2011 + 2015 ], "free_gpu_nodes": [ - 2011 + 2015 ], "free_gpu_nodes_for_batch": [ - 2011 + 2015 ], "highlights_in_progress": [ - 2011 + 2015 ], "id": [ - 2011 + 2015 ], "live_in_progress": [ - 2011 + 2015 ], "registered_gpu_nodes": [ - 2011 + 2015 ], "rendering_total_gpu_nodes": [ - 2011 + 2015 ], "renders_paused_for_active_match": [ - 2011 + 2015 ], "streaming_free_gpu_nodes": [ - 2011 + 2015 ], "streaming_total_gpu_nodes": [ - 2011 + 2015 ], "total_gpu_nodes": [ - 2011 + 2015 ], "__typename": [ - 70 + 74 ] }, "v_gpu_pool_status_select_column": {}, @@ -90707,7 +92433,7 @@ export default { 29 ], "__typename": [ - 70 + 74 ] }, "v_gpu_pool_status_stddev_pop_fields": { @@ -90742,7 +92468,7 @@ export default { 29 ], "__typename": [ - 70 + 74 ] }, "v_gpu_pool_status_stddev_samp_fields": { @@ -90777,18 +92503,18 @@ export default { 29 ], "__typename": [ - 70 + 74 ] }, "v_gpu_pool_status_stream_cursor_input": { "initial_value": [ - 3834 + 3879 ], "ordering": [ - 224 + 228 ], "__typename": [ - 70 + 74 ] }, "v_gpu_pool_status_stream_cursor_value_input": { @@ -90835,7 +92561,7 @@ export default { 38 ], "__typename": [ - 70 + 74 ] }, "v_gpu_pool_status_sum_fields": { @@ -90870,7 +92596,7 @@ export default { 38 ], "__typename": [ - 70 + 74 ] }, "v_gpu_pool_status_var_pop_fields": { @@ -90905,7 +92631,7 @@ export default { 29 ], "__typename": [ - 70 + 74 ] }, "v_gpu_pool_status_var_samp_fields": { @@ -90940,7 +92666,7 @@ export default { 29 ], "__typename": [ - 70 + 74 ] }, "v_gpu_pool_status_variance_fields": { @@ -90975,7 +92701,7 @@ export default { 29 ], "__typename": [ - 70 + 74 ] }, "v_match_captains": { @@ -90983,50 +92709,50 @@ export default { 3 ], "discord_id": [ - 70 + 74 ], "id": [ - 3818 + 3863 ], "lineup": [ - 1506 + 1510 ], "match_lineup_id": [ - 3818 + 3863 ], "placeholder_name": [ - 70 + 74 ], "player": [ - 2878 + 2914 ], "steam_id": [ - 169 + 173 ], "__typename": [ - 70 + 74 ] }, "v_match_captains_aggregate": { "aggregate": [ - 3841 + 3886 ], "nodes": [ - 3839 + 3884 ], "__typename": [ - 70 + 74 ] }, "v_match_captains_aggregate_fields": { "avg": [ - 3842 + 3887 ], "count": [ 38, { "columns": [ - 3851, + 3896, "[v_match_captains_select_column!]" ], "distinct": [ @@ -91035,34 +92761,34 @@ export default { } ], "max": [ - 3846 + 3891 ], "min": [ - 3847 + 3892 ], "stddev": [ - 3853 + 3898 ], "stddev_pop": [ - 3854 + 3899 ], "stddev_samp": [ - 3855 + 3900 ], "sum": [ - 3858 + 3903 ], "var_pop": [ - 3860 + 3905 ], "var_samp": [ - 3861 + 3906 ], "variance": [ - 3862 + 3907 ], "__typename": [ - 70 + 74 ] }, "v_match_captains_avg_fields": { @@ -91070,53 +92796,53 @@ export default { 29 ], "__typename": [ - 70 + 74 ] }, "v_match_captains_bool_exp": { "_and": [ - 3843 + 3888 ], "_not": [ - 3843 + 3888 ], "_or": [ - 3843 + 3888 ], "captain": [ 4 ], "discord_id": [ - 72 + 76 ], "id": [ - 3820 + 3865 ], "lineup": [ - 1515 + 1519 ], "match_lineup_id": [ - 3820 + 3865 ], "placeholder_name": [ - 72 + 76 ], "player": [ - 2882 + 2918 ], "steam_id": [ - 171 + 175 ], "__typename": [ - 70 + 74 ] }, "v_match_captains_inc_input": { "steam_id": [ - 169 + 173 ], "__typename": [ - 70 + 74 ] }, "v_match_captains_insert_input": { @@ -91124,68 +92850,68 @@ export default { 3 ], "discord_id": [ - 70 + 74 ], "id": [ - 3818 + 3863 ], "lineup": [ - 1524 + 1528 ], "match_lineup_id": [ - 3818 + 3863 ], "placeholder_name": [ - 70 + 74 ], "player": [ - 2889 + 2925 ], "steam_id": [ - 169 + 173 ], "__typename": [ - 70 + 74 ] }, "v_match_captains_max_fields": { "discord_id": [ - 70 + 74 ], "id": [ - 3818 + 3863 ], "match_lineup_id": [ - 3818 + 3863 ], "placeholder_name": [ - 70 + 74 ], "steam_id": [ - 169 + 173 ], "__typename": [ - 70 + 74 ] }, "v_match_captains_min_fields": { "discord_id": [ - 70 + 74 ], "id": [ - 3818 + 3863 ], "match_lineup_id": [ - 3818 + 3863 ], "placeholder_name": [ - 70 + 74 ], "steam_id": [ - 169 + 173 ], "__typename": [ - 70 + 74 ] }, "v_match_captains_mutation_response": { @@ -91193,47 +92919,47 @@ export default { 38 ], "returning": [ - 3839 + 3884 ], "__typename": [ - 70 + 74 ] }, "v_match_captains_obj_rel_insert_input": { "data": [ - 3845 + 3890 ], "__typename": [ - 70 + 74 ] }, "v_match_captains_order_by": { "captain": [ - 2011 + 2015 ], "discord_id": [ - 2011 + 2015 ], "id": [ - 2011 + 2015 ], "lineup": [ - 1526 + 1530 ], "match_lineup_id": [ - 2011 + 2015 ], "placeholder_name": [ - 2011 + 2015 ], "player": [ - 2891 + 2927 ], "steam_id": [ - 2011 + 2015 ], "__typename": [ - 70 + 74 ] }, "v_match_captains_select_column": {}, @@ -91242,22 +92968,22 @@ export default { 3 ], "discord_id": [ - 70 + 74 ], "id": [ - 3818 + 3863 ], "match_lineup_id": [ - 3818 + 3863 ], "placeholder_name": [ - 70 + 74 ], "steam_id": [ - 169 + 173 ], "__typename": [ - 70 + 74 ] }, "v_match_captains_stddev_fields": { @@ -91265,7 +92991,7 @@ export default { 29 ], "__typename": [ - 70 + 74 ] }, "v_match_captains_stddev_pop_fields": { @@ -91273,7 +92999,7 @@ export default { 29 ], "__typename": [ - 70 + 74 ] }, "v_match_captains_stddev_samp_fields": { @@ -91281,18 +93007,18 @@ export default { 29 ], "__typename": [ - 70 + 74 ] }, "v_match_captains_stream_cursor_input": { "initial_value": [ - 3857 + 3902 ], "ordering": [ - 224 + 228 ], "__typename": [ - 70 + 74 ] }, "v_match_captains_stream_cursor_value_input": { @@ -91300,44 +93026,44 @@ export default { 3 ], "discord_id": [ - 70 + 74 ], "id": [ - 3818 + 3863 ], "match_lineup_id": [ - 3818 + 3863 ], "placeholder_name": [ - 70 + 74 ], "steam_id": [ - 169 + 173 ], "__typename": [ - 70 + 74 ] }, "v_match_captains_sum_fields": { "steam_id": [ - 169 + 173 ], "__typename": [ - 70 + 74 ] }, "v_match_captains_updates": { "_inc": [ - 3844 + 3889 ], "_set": [ - 3852 + 3897 ], "where": [ - 3843 + 3888 ], "__typename": [ - 70 + 74 ] }, "v_match_captains_var_pop_fields": { @@ -91345,7 +93071,7 @@ export default { 29 ], "__typename": [ - 70 + 74 ] }, "v_match_captains_var_samp_fields": { @@ -91353,7 +93079,7 @@ export default { 29 ], "__typename": [ - 70 + 74 ] }, "v_match_captains_variance_fields": { @@ -91361,7 +93087,7 @@ export default { 29 ], "__typename": [ - 70 + 74 ] }, "v_match_clutches": { @@ -91369,90 +93095,90 @@ export default { 38 ], "clutcher": [ - 2878 + 2914 ], "clutcher_steam_id": [ - 169 + 173 ], "kills_in_clutch": [ 38 ], "match": [ - 1826 + 1830 ], "match_id": [ - 3818 + 3863 ], "match_lineup": [ - 1506 + 1510 ], "match_lineup_id": [ - 3818 + 3863 ], "match_map": [ - 1664 + 1668 ], "match_map_id": [ - 3818 + 3863 ], "outcome": [ - 70 + 74 ], "round": [ 38 ], "side": [ - 70 + 74 ], "__typename": [ - 70 + 74 ] }, "v_match_clutches_aggregate": { "aggregate": [ - 3867 + 3912 ], "nodes": [ - 3863 + 3908 ], "__typename": [ - 70 + 74 ] }, "v_match_clutches_aggregate_bool_exp": { "count": [ - 3866 + 3911 ], "__typename": [ - 70 + 74 ] }, "v_match_clutches_aggregate_bool_exp_count": { "arguments": [ - 3879 + 3924 ], "distinct": [ 3 ], "filter": [ - 3872 + 3917 ], "predicate": [ 39 ], "__typename": [ - 70 + 74 ] }, "v_match_clutches_aggregate_fields": { "avg": [ - 3870 + 3915 ], "count": [ 38, { "columns": [ - 3879, + 3924, "[v_match_clutches_select_column!]" ], "distinct": [ @@ -91461,80 +93187,80 @@ export default { } ], "max": [ - 3874 + 3919 ], "min": [ - 3876 + 3921 ], "stddev": [ - 3880 + 3925 ], "stddev_pop": [ - 3882 + 3927 ], "stddev_samp": [ - 3884 + 3929 ], "sum": [ - 3888 + 3933 ], "var_pop": [ - 3890 + 3935 ], "var_samp": [ - 3892 + 3937 ], "variance": [ - 3894 + 3939 ], "__typename": [ - 70 + 74 ] }, "v_match_clutches_aggregate_order_by": { "avg": [ - 3871 + 3916 ], "count": [ - 2011 + 2015 ], "max": [ - 3875 + 3920 ], "min": [ - 3877 + 3922 ], "stddev": [ - 3881 + 3926 ], "stddev_pop": [ - 3883 + 3928 ], "stddev_samp": [ - 3885 + 3930 ], "sum": [ - 3889 + 3934 ], "var_pop": [ - 3891 + 3936 ], "var_samp": [ - 3893 + 3938 ], "variance": [ - 3895 + 3940 ], "__typename": [ - 70 + 74 ] }, "v_match_clutches_arr_rel_insert_input": { "data": [ - 3873 + 3918 ], "__typename": [ - 70 + 74 ] }, "v_match_clutches_avg_fields": { @@ -91551,77 +93277,77 @@ export default { 29 ], "__typename": [ - 70 + 74 ] }, "v_match_clutches_avg_order_by": { "against_count": [ - 2011 + 2015 ], "clutcher_steam_id": [ - 2011 + 2015 ], "kills_in_clutch": [ - 2011 + 2015 ], "round": [ - 2011 + 2015 ], "__typename": [ - 70 + 74 ] }, "v_match_clutches_bool_exp": { "_and": [ - 3872 + 3917 ], "_not": [ - 3872 + 3917 ], "_or": [ - 3872 + 3917 ], "against_count": [ 39 ], "clutcher": [ - 2882 + 2918 ], "clutcher_steam_id": [ - 171 + 175 ], "kills_in_clutch": [ 39 ], "match": [ - 1835 + 1839 ], "match_id": [ - 3820 + 3865 ], "match_lineup": [ - 1515 + 1519 ], "match_lineup_id": [ - 3820 + 3865 ], "match_map": [ - 1673 + 1677 ], "match_map_id": [ - 3820 + 3865 ], "outcome": [ - 72 + 76 ], "round": [ 39 ], "side": [ - 72 + 76 ], "__typename": [ - 70 + 74 ] }, "v_match_clutches_insert_input": { @@ -91629,43 +93355,43 @@ export default { 38 ], "clutcher": [ - 2889 + 2925 ], "clutcher_steam_id": [ - 169 + 173 ], "kills_in_clutch": [ 38 ], "match": [ - 1844 + 1848 ], "match_id": [ - 3818 + 3863 ], "match_lineup": [ - 1524 + 1528 ], "match_lineup_id": [ - 3818 + 3863 ], "match_map": [ - 1682 + 1686 ], "match_map_id": [ - 3818 + 3863 ], "outcome": [ - 70 + 74 ], "round": [ 38 ], "side": [ - 70 + 74 ], "__typename": [ - 70 + 74 ] }, "v_match_clutches_max_fields": { @@ -91673,63 +93399,63 @@ export default { 38 ], "clutcher_steam_id": [ - 169 + 173 ], "kills_in_clutch": [ 38 ], "match_id": [ - 3818 + 3863 ], "match_lineup_id": [ - 3818 + 3863 ], "match_map_id": [ - 3818 + 3863 ], "outcome": [ - 70 + 74 ], "round": [ 38 ], "side": [ - 70 + 74 ], "__typename": [ - 70 + 74 ] }, "v_match_clutches_max_order_by": { "against_count": [ - 2011 + 2015 ], "clutcher_steam_id": [ - 2011 + 2015 ], "kills_in_clutch": [ - 2011 + 2015 ], "match_id": [ - 2011 + 2015 ], "match_lineup_id": [ - 2011 + 2015 ], "match_map_id": [ - 2011 + 2015 ], "outcome": [ - 2011 + 2015 ], "round": [ - 2011 + 2015 ], "side": [ - 2011 + 2015 ], "__typename": [ - 70 + 74 ] }, "v_match_clutches_min_fields": { @@ -91737,107 +93463,107 @@ export default { 38 ], "clutcher_steam_id": [ - 169 + 173 ], "kills_in_clutch": [ 38 ], "match_id": [ - 3818 + 3863 ], "match_lineup_id": [ - 3818 + 3863 ], "match_map_id": [ - 3818 + 3863 ], "outcome": [ - 70 + 74 ], "round": [ 38 ], "side": [ - 70 + 74 ], "__typename": [ - 70 + 74 ] }, "v_match_clutches_min_order_by": { "against_count": [ - 2011 + 2015 ], "clutcher_steam_id": [ - 2011 + 2015 ], "kills_in_clutch": [ - 2011 + 2015 ], "match_id": [ - 2011 + 2015 ], "match_lineup_id": [ - 2011 + 2015 ], "match_map_id": [ - 2011 + 2015 ], "outcome": [ - 2011 + 2015 ], "round": [ - 2011 + 2015 ], "side": [ - 2011 + 2015 ], "__typename": [ - 70 + 74 ] }, "v_match_clutches_order_by": { "against_count": [ - 2011 + 2015 ], "clutcher": [ - 2891 + 2927 ], "clutcher_steam_id": [ - 2011 + 2015 ], "kills_in_clutch": [ - 2011 + 2015 ], "match": [ - 1846 + 1850 ], "match_id": [ - 2011 + 2015 ], "match_lineup": [ - 1526 + 1530 ], "match_lineup_id": [ - 2011 + 2015 ], "match_map": [ - 1684 + 1688 ], "match_map_id": [ - 2011 + 2015 ], "outcome": [ - 2011 + 2015 ], "round": [ - 2011 + 2015 ], "side": [ - 2011 + 2015 ], "__typename": [ - 70 + 74 ] }, "v_match_clutches_select_column": {}, @@ -91855,24 +93581,24 @@ export default { 29 ], "__typename": [ - 70 + 74 ] }, "v_match_clutches_stddev_order_by": { "against_count": [ - 2011 + 2015 ], "clutcher_steam_id": [ - 2011 + 2015 ], "kills_in_clutch": [ - 2011 + 2015 ], "round": [ - 2011 + 2015 ], "__typename": [ - 70 + 74 ] }, "v_match_clutches_stddev_pop_fields": { @@ -91889,24 +93615,24 @@ export default { 29 ], "__typename": [ - 70 + 74 ] }, "v_match_clutches_stddev_pop_order_by": { "against_count": [ - 2011 + 2015 ], "clutcher_steam_id": [ - 2011 + 2015 ], "kills_in_clutch": [ - 2011 + 2015 ], "round": [ - 2011 + 2015 ], "__typename": [ - 70 + 74 ] }, "v_match_clutches_stddev_samp_fields": { @@ -91923,35 +93649,35 @@ export default { 29 ], "__typename": [ - 70 + 74 ] }, "v_match_clutches_stddev_samp_order_by": { "against_count": [ - 2011 + 2015 ], "clutcher_steam_id": [ - 2011 + 2015 ], "kills_in_clutch": [ - 2011 + 2015 ], "round": [ - 2011 + 2015 ], "__typename": [ - 70 + 74 ] }, "v_match_clutches_stream_cursor_input": { "initial_value": [ - 3887 + 3932 ], "ordering": [ - 224 + 228 ], "__typename": [ - 70 + 74 ] }, "v_match_clutches_stream_cursor_value_input": { @@ -91959,31 +93685,31 @@ export default { 38 ], "clutcher_steam_id": [ - 169 + 173 ], "kills_in_clutch": [ 38 ], "match_id": [ - 3818 + 3863 ], "match_lineup_id": [ - 3818 + 3863 ], "match_map_id": [ - 3818 + 3863 ], "outcome": [ - 70 + 74 ], "round": [ 38 ], "side": [ - 70 + 74 ], "__typename": [ - 70 + 74 ] }, "v_match_clutches_sum_fields": { @@ -91991,7 +93717,7 @@ export default { 38 ], "clutcher_steam_id": [ - 169 + 173 ], "kills_in_clutch": [ 38 @@ -92000,24 +93726,24 @@ export default { 38 ], "__typename": [ - 70 + 74 ] }, "v_match_clutches_sum_order_by": { "against_count": [ - 2011 + 2015 ], "clutcher_steam_id": [ - 2011 + 2015 ], "kills_in_clutch": [ - 2011 + 2015 ], "round": [ - 2011 + 2015 ], "__typename": [ - 70 + 74 ] }, "v_match_clutches_var_pop_fields": { @@ -92034,24 +93760,24 @@ export default { 29 ], "__typename": [ - 70 + 74 ] }, "v_match_clutches_var_pop_order_by": { "against_count": [ - 2011 + 2015 ], "clutcher_steam_id": [ - 2011 + 2015 ], "kills_in_clutch": [ - 2011 + 2015 ], "round": [ - 2011 + 2015 ], "__typename": [ - 70 + 74 ] }, "v_match_clutches_var_samp_fields": { @@ -92068,24 +93794,24 @@ export default { 29 ], "__typename": [ - 70 + 74 ] }, "v_match_clutches_var_samp_order_by": { "against_count": [ - 2011 + 2015 ], "clutcher_steam_id": [ - 2011 + 2015 ], "kills_in_clutch": [ - 2011 + 2015 ], "round": [ - 2011 + 2015 ], "__typename": [ - 70 + 74 ] }, "v_match_clutches_variance_fields": { @@ -92102,81 +93828,81 @@ export default { 29 ], "__typename": [ - 70 + 74 ] }, "v_match_clutches_variance_order_by": { "against_count": [ - 2011 + 2015 ], "clutcher_steam_id": [ - 2011 + 2015 ], "kills_in_clutch": [ - 2011 + 2015 ], "round": [ - 2011 + 2015 ], "__typename": [ - 70 + 74 ] }, "v_match_kill_pairs": { "killer_side": [ - 70 + 74 ], "killer_steam_id": [ - 169 + 173 ], "kills": [ 38 ], "match": [ - 1826 + 1830 ], "match_id": [ - 3818 + 3863 ], "match_map": [ - 1664 + 1668 ], "match_map_id": [ - 3818 + 3863 ], "victim_side": [ - 70 + 74 ], "victim_steam_id": [ - 169 + 173 ], "weapon": [ - 70 + 74 ], "__typename": [ - 70 + 74 ] }, "v_match_kill_pairs_aggregate": { "aggregate": [ - 3898 + 3943 ], "nodes": [ - 3896 + 3941 ], "__typename": [ - 70 + 74 ] }, "v_match_kill_pairs_aggregate_fields": { "avg": [ - 3899 + 3944 ], "count": [ 38, { "columns": [ - 3904, + 3949, "[v_match_kill_pairs_select_column!]" ], "distinct": [ @@ -92185,34 +93911,34 @@ export default { } ], "max": [ - 3901 + 3946 ], "min": [ - 3902 + 3947 ], "stddev": [ - 3905 + 3950 ], "stddev_pop": [ - 3906 + 3951 ], "stddev_samp": [ - 3907 + 3952 ], "sum": [ - 3910 + 3955 ], "var_pop": [ - 3911 + 3956 ], "var_samp": [ - 3912 + 3957 ], "variance": [ - 3913 + 3958 ], "__typename": [ - 70 + 74 ] }, "v_match_kill_pairs_avg_fields": { @@ -92226,144 +93952,144 @@ export default { 29 ], "__typename": [ - 70 + 74 ] }, "v_match_kill_pairs_bool_exp": { "_and": [ - 3900 + 3945 ], "_not": [ - 3900 + 3945 ], "_or": [ - 3900 + 3945 ], "killer_side": [ - 72 + 76 ], "killer_steam_id": [ - 171 + 175 ], "kills": [ 39 ], "match": [ - 1835 + 1839 ], "match_id": [ - 3820 + 3865 ], "match_map": [ - 1673 + 1677 ], "match_map_id": [ - 3820 + 3865 ], "victim_side": [ - 72 + 76 ], "victim_steam_id": [ - 171 + 175 ], "weapon": [ - 72 + 76 ], "__typename": [ - 70 + 74 ] }, "v_match_kill_pairs_max_fields": { "killer_side": [ - 70 + 74 ], "killer_steam_id": [ - 169 + 173 ], "kills": [ 38 ], "match_id": [ - 3818 + 3863 ], "match_map_id": [ - 3818 + 3863 ], "victim_side": [ - 70 + 74 ], "victim_steam_id": [ - 169 + 173 ], "weapon": [ - 70 + 74 ], "__typename": [ - 70 + 74 ] }, "v_match_kill_pairs_min_fields": { "killer_side": [ - 70 + 74 ], "killer_steam_id": [ - 169 + 173 ], "kills": [ 38 ], "match_id": [ - 3818 + 3863 ], "match_map_id": [ - 3818 + 3863 ], "victim_side": [ - 70 + 74 ], "victim_steam_id": [ - 169 + 173 ], "weapon": [ - 70 + 74 ], "__typename": [ - 70 + 74 ] }, "v_match_kill_pairs_order_by": { "killer_side": [ - 2011 + 2015 ], "killer_steam_id": [ - 2011 + 2015 ], "kills": [ - 2011 + 2015 ], "match": [ - 1846 + 1850 ], "match_id": [ - 2011 + 2015 ], "match_map": [ - 1684 + 1688 ], "match_map_id": [ - 2011 + 2015 ], "victim_side": [ - 2011 + 2015 ], "victim_steam_id": [ - 2011 + 2015 ], "weapon": [ - 2011 + 2015 ], "__typename": [ - 70 + 74 ] }, "v_match_kill_pairs_select_column": {}, @@ -92378,7 +94104,7 @@ export default { 29 ], "__typename": [ - 70 + 74 ] }, "v_match_kill_pairs_stddev_pop_fields": { @@ -92392,7 +94118,7 @@ export default { 29 ], "__typename": [ - 70 + 74 ] }, "v_match_kill_pairs_stddev_samp_fields": { @@ -92406,61 +94132,61 @@ export default { 29 ], "__typename": [ - 70 + 74 ] }, "v_match_kill_pairs_stream_cursor_input": { "initial_value": [ - 3909 + 3954 ], "ordering": [ - 224 + 228 ], "__typename": [ - 70 + 74 ] }, "v_match_kill_pairs_stream_cursor_value_input": { "killer_side": [ - 70 + 74 ], "killer_steam_id": [ - 169 + 173 ], "kills": [ 38 ], "match_id": [ - 3818 + 3863 ], "match_map_id": [ - 3818 + 3863 ], "victim_side": [ - 70 + 74 ], "victim_steam_id": [ - 169 + 173 ], "weapon": [ - 70 + 74 ], "__typename": [ - 70 + 74 ] }, "v_match_kill_pairs_sum_fields": { "killer_steam_id": [ - 169 + 173 ], "kills": [ 38 ], "victim_steam_id": [ - 169 + 173 ], "__typename": [ - 70 + 74 ] }, "v_match_kill_pairs_var_pop_fields": { @@ -92474,7 +94200,7 @@ export default { 29 ], "__typename": [ - 70 + 74 ] }, "v_match_kill_pairs_var_samp_fields": { @@ -92488,7 +94214,7 @@ export default { 29 ], "__typename": [ - 70 + 74 ] }, "v_match_kill_pairs_variance_fields": { @@ -92502,64 +94228,64 @@ export default { 29 ], "__typename": [ - 70 + 74 ] }, "v_match_lineup_buy_types": { "match": [ - 1826 + 1830 ], "match_id": [ - 3818 + 3863 ], "match_lineup": [ - 1506 + 1510 ], "match_lineup_id": [ - 3818 + 3863 ], "match_map": [ - 1664 + 1668 ], "match_map_id": [ - 3818 + 3863 ], "matchup": [ - 70 + 74 ], "rounds": [ 38 ], "side": [ - 70 + 74 ], "wins": [ 38 ], "__typename": [ - 70 + 74 ] }, "v_match_lineup_buy_types_aggregate": { "aggregate": [ - 3916 + 3961 ], "nodes": [ - 3914 + 3959 ], "__typename": [ - 70 + 74 ] }, "v_match_lineup_buy_types_aggregate_fields": { "avg": [ - 3917 + 3962 ], "count": [ 38, { "columns": [ - 3922, + 3967, "[v_match_lineup_buy_types_select_column!]" ], "distinct": [ @@ -92568,34 +94294,34 @@ export default { } ], "max": [ - 3919 + 3964 ], "min": [ - 3920 + 3965 ], "stddev": [ - 3923 + 3968 ], "stddev_pop": [ - 3924 + 3969 ], "stddev_samp": [ - 3925 + 3970 ], "sum": [ - 3928 + 3973 ], "var_pop": [ - 3929 + 3974 ], "var_samp": [ - 3930 + 3975 ], "variance": [ - 3931 + 3976 ], "__typename": [ - 70 + 74 ] }, "v_match_lineup_buy_types_avg_fields": { @@ -92606,138 +94332,138 @@ export default { 29 ], "__typename": [ - 70 + 74 ] }, "v_match_lineup_buy_types_bool_exp": { "_and": [ - 3918 + 3963 ], "_not": [ - 3918 + 3963 ], "_or": [ - 3918 + 3963 ], "match": [ - 1835 + 1839 ], "match_id": [ - 3820 + 3865 ], "match_lineup": [ - 1515 + 1519 ], "match_lineup_id": [ - 3820 + 3865 ], "match_map": [ - 1673 + 1677 ], "match_map_id": [ - 3820 + 3865 ], "matchup": [ - 72 + 76 ], "rounds": [ 39 ], "side": [ - 72 + 76 ], "wins": [ 39 ], "__typename": [ - 70 + 74 ] }, "v_match_lineup_buy_types_max_fields": { "match_id": [ - 3818 + 3863 ], "match_lineup_id": [ - 3818 + 3863 ], "match_map_id": [ - 3818 + 3863 ], "matchup": [ - 70 + 74 ], "rounds": [ 38 ], "side": [ - 70 + 74 ], "wins": [ 38 ], "__typename": [ - 70 + 74 ] }, "v_match_lineup_buy_types_min_fields": { "match_id": [ - 3818 + 3863 ], "match_lineup_id": [ - 3818 + 3863 ], "match_map_id": [ - 3818 + 3863 ], "matchup": [ - 70 + 74 ], "rounds": [ 38 ], "side": [ - 70 + 74 ], "wins": [ 38 ], "__typename": [ - 70 + 74 ] }, "v_match_lineup_buy_types_order_by": { "match": [ - 1846 + 1850 ], "match_id": [ - 2011 + 2015 ], "match_lineup": [ - 1526 + 1530 ], "match_lineup_id": [ - 2011 + 2015 ], "match_map": [ - 1684 + 1688 ], "match_map_id": [ - 2011 + 2015 ], "matchup": [ - 2011 + 2015 ], "rounds": [ - 2011 + 2015 ], "side": [ - 2011 + 2015 ], "wins": [ - 2011 + 2015 ], "__typename": [ - 70 + 74 ] }, "v_match_lineup_buy_types_select_column": {}, @@ -92749,7 +94475,7 @@ export default { 29 ], "__typename": [ - 70 + 74 ] }, "v_match_lineup_buy_types_stddev_pop_fields": { @@ -92760,7 +94486,7 @@ export default { 29 ], "__typename": [ - 70 + 74 ] }, "v_match_lineup_buy_types_stddev_samp_fields": { @@ -92771,44 +94497,44 @@ export default { 29 ], "__typename": [ - 70 + 74 ] }, "v_match_lineup_buy_types_stream_cursor_input": { "initial_value": [ - 3927 + 3972 ], "ordering": [ - 224 + 228 ], "__typename": [ - 70 + 74 ] }, "v_match_lineup_buy_types_stream_cursor_value_input": { "match_id": [ - 3818 + 3863 ], "match_lineup_id": [ - 3818 + 3863 ], "match_map_id": [ - 3818 + 3863 ], "matchup": [ - 70 + 74 ], "rounds": [ 38 ], "side": [ - 70 + 74 ], "wins": [ 38 ], "__typename": [ - 70 + 74 ] }, "v_match_lineup_buy_types_sum_fields": { @@ -92819,7 +94545,7 @@ export default { 38 ], "__typename": [ - 70 + 74 ] }, "v_match_lineup_buy_types_var_pop_fields": { @@ -92830,7 +94556,7 @@ export default { 29 ], "__typename": [ - 70 + 74 ] }, "v_match_lineup_buy_types_var_samp_fields": { @@ -92841,7 +94567,7 @@ export default { 29 ], "__typename": [ - 70 + 74 ] }, "v_match_lineup_buy_types_variance_fields": { @@ -92852,7 +94578,7 @@ export default { 29 ], "__typename": [ - 70 + 74 ] }, "v_match_lineup_map_stats": { @@ -92869,22 +94595,22 @@ export default { 38 ], "match": [ - 1826 + 1830 ], "match_id": [ - 3818 + 3863 ], "match_lineup": [ - 1506 + 1510 ], "match_lineup_id": [ - 3818 + 3863 ], "match_map": [ - 1664 + 1668 ], "match_map_id": [ - 3818 + 3863 ], "opening_attempts": [ 38 @@ -92905,7 +94631,7 @@ export default { 38 ], "side": [ - 70 + 74 ], "won_buy_eco": [ 38 @@ -92920,29 +94646,29 @@ export default { 38 ], "__typename": [ - 70 + 74 ] }, "v_match_lineup_map_stats_aggregate": { "aggregate": [ - 3934 + 3979 ], "nodes": [ - 3932 + 3977 ], "__typename": [ - 70 + 74 ] }, "v_match_lineup_map_stats_aggregate_fields": { "avg": [ - 3935 + 3980 ], "count": [ 38, { "columns": [ - 3940, + 3985, "[v_match_lineup_map_stats_select_column!]" ], "distinct": [ @@ -92951,34 +94677,34 @@ export default { } ], "max": [ - 3937 + 3982 ], "min": [ - 3938 + 3983 ], "stddev": [ - 3941 + 3986 ], "stddev_pop": [ - 3942 + 3987 ], "stddev_samp": [ - 3943 + 3988 ], "sum": [ - 3946 + 3991 ], "var_pop": [ - 3947 + 3992 ], "var_samp": [ - 3948 + 3993 ], "variance": [ - 3949 + 3994 ], "__typename": [ - 70 + 74 ] }, "v_match_lineup_map_stats_avg_fields": { @@ -93025,18 +94751,18 @@ export default { 29 ], "__typename": [ - 70 + 74 ] }, "v_match_lineup_map_stats_bool_exp": { "_and": [ - 3936 + 3981 ], "_not": [ - 3936 + 3981 ], "_or": [ - 3936 + 3981 ], "man_adv_rounds": [ 39 @@ -93051,22 +94777,22 @@ export default { 39 ], "match": [ - 1835 + 1839 ], "match_id": [ - 3820 + 3865 ], "match_lineup": [ - 1515 + 1519 ], "match_lineup_id": [ - 3820 + 3865 ], "match_map": [ - 1673 + 1677 ], "match_map_id": [ - 3820 + 3865 ], "opening_attempts": [ 39 @@ -93087,7 +94813,7 @@ export default { 39 ], "side": [ - 72 + 76 ], "won_buy_eco": [ 39 @@ -93102,7 +94828,7 @@ export default { 39 ], "__typename": [ - 70 + 74 ] }, "v_match_lineup_map_stats_max_fields": { @@ -93119,13 +94845,13 @@ export default { 38 ], "match_id": [ - 3818 + 3863 ], "match_lineup_id": [ - 3818 + 3863 ], "match_map_id": [ - 3818 + 3863 ], "opening_attempts": [ 38 @@ -93146,7 +94872,7 @@ export default { 38 ], "side": [ - 70 + 74 ], "won_buy_eco": [ 38 @@ -93161,7 +94887,7 @@ export default { 38 ], "__typename": [ - 70 + 74 ] }, "v_match_lineup_map_stats_min_fields": { @@ -93178,13 +94904,13 @@ export default { 38 ], "match_id": [ - 3818 + 3863 ], "match_lineup_id": [ - 3818 + 3863 ], "match_map_id": [ - 3818 + 3863 ], "opening_attempts": [ 38 @@ -93205,7 +94931,7 @@ export default { 38 ], "side": [ - 70 + 74 ], "won_buy_eco": [ 38 @@ -93220,75 +94946,75 @@ export default { 38 ], "__typename": [ - 70 + 74 ] }, "v_match_lineup_map_stats_order_by": { "man_adv_rounds": [ - 2011 + 2015 ], "man_adv_wins": [ - 2011 + 2015 ], "man_dis_rounds": [ - 2011 + 2015 ], "man_dis_wins": [ - 2011 + 2015 ], "match": [ - 1846 + 1850 ], "match_id": [ - 2011 + 2015 ], "match_lineup": [ - 1526 + 1530 ], "match_lineup_id": [ - 2011 + 2015 ], "match_map": [ - 1684 + 1688 ], "match_map_id": [ - 2011 + 2015 ], "opening_attempts": [ - 2011 + 2015 ], "opening_wins": [ - 2011 + 2015 ], "pistol_rounds": [ - 2011 + 2015 ], "pistol_wins": [ - 2011 + 2015 ], "round_wins": [ - 2011 + 2015 ], "rounds": [ - 2011 + 2015 ], "side": [ - 2011 + 2015 ], "won_buy_eco": [ - 2011 + 2015 ], "won_buy_force": [ - 2011 + 2015 ], "won_buy_full": [ - 2011 + 2015 ], "won_buy_pistol": [ - 2011 + 2015 ], "__typename": [ - 70 + 74 ] }, "v_match_lineup_map_stats_select_column": {}, @@ -93336,7 +95062,7 @@ export default { 29 ], "__typename": [ - 70 + 74 ] }, "v_match_lineup_map_stats_stddev_pop_fields": { @@ -93383,7 +95109,7 @@ export default { 29 ], "__typename": [ - 70 + 74 ] }, "v_match_lineup_map_stats_stddev_samp_fields": { @@ -93430,18 +95156,18 @@ export default { 29 ], "__typename": [ - 70 + 74 ] }, "v_match_lineup_map_stats_stream_cursor_input": { "initial_value": [ - 3945 + 3990 ], "ordering": [ - 224 + 228 ], "__typename": [ - 70 + 74 ] }, "v_match_lineup_map_stats_stream_cursor_value_input": { @@ -93458,13 +95184,13 @@ export default { 38 ], "match_id": [ - 3818 + 3863 ], "match_lineup_id": [ - 3818 + 3863 ], "match_map_id": [ - 3818 + 3863 ], "opening_attempts": [ 38 @@ -93485,7 +95211,7 @@ export default { 38 ], "side": [ - 70 + 74 ], "won_buy_eco": [ 38 @@ -93500,7 +95226,7 @@ export default { 38 ], "__typename": [ - 70 + 74 ] }, "v_match_lineup_map_stats_sum_fields": { @@ -93547,7 +95273,7 @@ export default { 38 ], "__typename": [ - 70 + 74 ] }, "v_match_lineup_map_stats_var_pop_fields": { @@ -93594,7 +95320,7 @@ export default { 29 ], "__typename": [ - 70 + 74 ] }, "v_match_lineup_map_stats_var_samp_fields": { @@ -93641,7 +95367,7 @@ export default { 29 ], "__typename": [ - 70 + 74 ] }, "v_match_lineup_map_stats_variance_fields": { @@ -93688,7 +95414,7 @@ export default { 29 ], "__typename": [ - 70 + 74 ] }, "v_match_map_backup_rounds": { @@ -93696,35 +95422,35 @@ export default { 3 ], "match_map_id": [ - 3818 + 3863 ], "round": [ 38 ], "__typename": [ - 70 + 74 ] }, "v_match_map_backup_rounds_aggregate": { "aggregate": [ - 3952 + 3997 ], "nodes": [ - 3950 + 3995 ], "__typename": [ - 70 + 74 ] }, "v_match_map_backup_rounds_aggregate_fields": { "avg": [ - 3953 + 3998 ], "count": [ 38, { "columns": [ - 3961, + 4006, "[v_match_map_backup_rounds_select_column!]" ], "distinct": [ @@ -93733,34 +95459,34 @@ export default { } ], "max": [ - 3957 + 4002 ], "min": [ - 3958 + 4003 ], "stddev": [ - 3963 + 4008 ], "stddev_pop": [ - 3964 + 4009 ], "stddev_samp": [ - 3965 + 4010 ], "sum": [ - 3968 + 4013 ], "var_pop": [ - 3970 + 4015 ], "var_samp": [ - 3971 + 4016 ], "variance": [ - 3972 + 4017 ], "__typename": [ - 70 + 74 ] }, "v_match_map_backup_rounds_avg_fields": { @@ -93768,30 +95494,30 @@ export default { 29 ], "__typename": [ - 70 + 74 ] }, "v_match_map_backup_rounds_bool_exp": { "_and": [ - 3954 + 3999 ], "_not": [ - 3954 + 3999 ], "_or": [ - 3954 + 3999 ], "has_backup_file": [ 4 ], "match_map_id": [ - 3820 + 3865 ], "round": [ 39 ], "__typename": [ - 70 + 74 ] }, "v_match_map_backup_rounds_inc_input": { @@ -93799,7 +95525,7 @@ export default { 38 ], "__typename": [ - 70 + 74 ] }, "v_match_map_backup_rounds_insert_input": { @@ -93807,35 +95533,35 @@ export default { 3 ], "match_map_id": [ - 3818 + 3863 ], "round": [ 38 ], "__typename": [ - 70 + 74 ] }, "v_match_map_backup_rounds_max_fields": { "match_map_id": [ - 3818 + 3863 ], "round": [ 38 ], "__typename": [ - 70 + 74 ] }, "v_match_map_backup_rounds_min_fields": { "match_map_id": [ - 3818 + 3863 ], "round": [ 38 ], "__typename": [ - 70 + 74 ] }, "v_match_map_backup_rounds_mutation_response": { @@ -93843,24 +95569,24 @@ export default { 38 ], "returning": [ - 3950 + 3995 ], "__typename": [ - 70 + 74 ] }, "v_match_map_backup_rounds_order_by": { "has_backup_file": [ - 2011 + 2015 ], "match_map_id": [ - 2011 + 2015 ], "round": [ - 2011 + 2015 ], "__typename": [ - 70 + 74 ] }, "v_match_map_backup_rounds_select_column": {}, @@ -93869,13 +95595,13 @@ export default { 3 ], "match_map_id": [ - 3818 + 3863 ], "round": [ 38 ], "__typename": [ - 70 + 74 ] }, "v_match_map_backup_rounds_stddev_fields": { @@ -93883,7 +95609,7 @@ export default { 29 ], "__typename": [ - 70 + 74 ] }, "v_match_map_backup_rounds_stddev_pop_fields": { @@ -93891,7 +95617,7 @@ export default { 29 ], "__typename": [ - 70 + 74 ] }, "v_match_map_backup_rounds_stddev_samp_fields": { @@ -93899,18 +95625,18 @@ export default { 29 ], "__typename": [ - 70 + 74 ] }, "v_match_map_backup_rounds_stream_cursor_input": { "initial_value": [ - 3967 + 4012 ], "ordering": [ - 224 + 228 ], "__typename": [ - 70 + 74 ] }, "v_match_map_backup_rounds_stream_cursor_value_input": { @@ -93918,13 +95644,13 @@ export default { 3 ], "match_map_id": [ - 3818 + 3863 ], "round": [ 38 ], "__typename": [ - 70 + 74 ] }, "v_match_map_backup_rounds_sum_fields": { @@ -93932,21 +95658,21 @@ export default { 38 ], "__typename": [ - 70 + 74 ] }, "v_match_map_backup_rounds_updates": { "_inc": [ - 3955 + 4000 ], "_set": [ - 3962 + 4007 ], "where": [ - 3954 + 3999 ], "__typename": [ - 70 + 74 ] }, "v_match_map_backup_rounds_var_pop_fields": { @@ -93954,7 +95680,7 @@ export default { 29 ], "__typename": [ - 70 + 74 ] }, "v_match_map_backup_rounds_var_samp_fields": { @@ -93962,7 +95688,7 @@ export default { 29 ], "__typename": [ - 70 + 74 ] }, "v_match_map_backup_rounds_variance_fields": { @@ -93970,7 +95696,7 @@ export default { 29 ], "__typename": [ - 70 + 74 ] }, "v_match_player_buy_types": { @@ -93981,62 +95707,62 @@ export default { 38 ], "match": [ - 1826 + 1830 ], "match_id": [ - 3818 + 3863 ], "match_lineup": [ - 1506 + 1510 ], "match_lineup_id": [ - 3818 + 3863 ], "match_map": [ - 1664 + 1668 ], "match_map_id": [ - 3818 + 3863 ], "matchup": [ - 70 + 74 ], "player": [ - 2878 + 2914 ], "rounds": [ 38 ], "side": [ - 70 + 74 ], "steam_id": [ - 169 + 173 ], "__typename": [ - 70 + 74 ] }, "v_match_player_buy_types_aggregate": { "aggregate": [ - 3975 + 4020 ], "nodes": [ - 3973 + 4018 ], "__typename": [ - 70 + 74 ] }, "v_match_player_buy_types_aggregate_fields": { "avg": [ - 3976 + 4021 ], "count": [ 38, { "columns": [ - 3981, + 4026, "[v_match_player_buy_types_select_column!]" ], "distinct": [ @@ -94045,34 +95771,34 @@ export default { } ], "max": [ - 3978 + 4023 ], "min": [ - 3979 + 4024 ], "stddev": [ - 3982 + 4027 ], "stddev_pop": [ - 3983 + 4028 ], "stddev_samp": [ - 3984 + 4029 ], "sum": [ - 3987 + 4032 ], "var_pop": [ - 3988 + 4033 ], "var_samp": [ - 3989 + 4034 ], "variance": [ - 3990 + 4035 ], "__typename": [ - 70 + 74 ] }, "v_match_player_buy_types_avg_fields": { @@ -94089,18 +95815,18 @@ export default { 29 ], "__typename": [ - 70 + 74 ] }, "v_match_player_buy_types_bool_exp": { "_and": [ - 3977 + 4022 ], "_not": [ - 3977 + 4022 ], "_or": [ - 3977 + 4022 ], "deaths": [ 39 @@ -94109,40 +95835,40 @@ export default { 39 ], "match": [ - 1835 + 1839 ], "match_id": [ - 3820 + 3865 ], "match_lineup": [ - 1515 + 1519 ], "match_lineup_id": [ - 3820 + 3865 ], "match_map": [ - 1673 + 1677 ], "match_map_id": [ - 3820 + 3865 ], "matchup": [ - 72 + 76 ], "player": [ - 2882 + 2918 ], "rounds": [ 39 ], "side": [ - 72 + 76 ], "steam_id": [ - 171 + 175 ], "__typename": [ - 70 + 74 ] }, "v_match_player_buy_types_max_fields": { @@ -94153,28 +95879,28 @@ export default { 38 ], "match_id": [ - 3818 + 3863 ], "match_lineup_id": [ - 3818 + 3863 ], "match_map_id": [ - 3818 + 3863 ], "matchup": [ - 70 + 74 ], "rounds": [ 38 ], "side": [ - 70 + 74 ], "steam_id": [ - 169 + 173 ], "__typename": [ - 70 + 74 ] }, "v_match_player_buy_types_min_fields": { @@ -94185,72 +95911,72 @@ export default { 38 ], "match_id": [ - 3818 + 3863 ], "match_lineup_id": [ - 3818 + 3863 ], "match_map_id": [ - 3818 + 3863 ], "matchup": [ - 70 + 74 ], "rounds": [ 38 ], "side": [ - 70 + 74 ], "steam_id": [ - 169 + 173 ], "__typename": [ - 70 + 74 ] }, "v_match_player_buy_types_order_by": { "deaths": [ - 2011 + 2015 ], "kills": [ - 2011 + 2015 ], "match": [ - 1846 + 1850 ], "match_id": [ - 2011 + 2015 ], "match_lineup": [ - 1526 + 1530 ], "match_lineup_id": [ - 2011 + 2015 ], "match_map": [ - 1684 + 1688 ], "match_map_id": [ - 2011 + 2015 ], "matchup": [ - 2011 + 2015 ], "player": [ - 2891 + 2927 ], "rounds": [ - 2011 + 2015 ], "side": [ - 2011 + 2015 ], "steam_id": [ - 2011 + 2015 ], "__typename": [ - 70 + 74 ] }, "v_match_player_buy_types_select_column": {}, @@ -94268,7 +95994,7 @@ export default { 29 ], "__typename": [ - 70 + 74 ] }, "v_match_player_buy_types_stddev_pop_fields": { @@ -94285,7 +96011,7 @@ export default { 29 ], "__typename": [ - 70 + 74 ] }, "v_match_player_buy_types_stddev_samp_fields": { @@ -94302,18 +96028,18 @@ export default { 29 ], "__typename": [ - 70 + 74 ] }, "v_match_player_buy_types_stream_cursor_input": { "initial_value": [ - 3986 + 4031 ], "ordering": [ - 224 + 228 ], "__typename": [ - 70 + 74 ] }, "v_match_player_buy_types_stream_cursor_value_input": { @@ -94324,28 +96050,28 @@ export default { 38 ], "match_id": [ - 3818 + 3863 ], "match_lineup_id": [ - 3818 + 3863 ], "match_map_id": [ - 3818 + 3863 ], "matchup": [ - 70 + 74 ], "rounds": [ 38 ], "side": [ - 70 + 74 ], "steam_id": [ - 169 + 173 ], "__typename": [ - 70 + 74 ] }, "v_match_player_buy_types_sum_fields": { @@ -94359,10 +96085,10 @@ export default { 38 ], "steam_id": [ - 169 + 173 ], "__typename": [ - 70 + 74 ] }, "v_match_player_buy_types_var_pop_fields": { @@ -94379,7 +96105,7 @@ export default { 29 ], "__typename": [ - 70 + 74 ] }, "v_match_player_buy_types_var_samp_fields": { @@ -94396,7 +96122,7 @@ export default { 29 ], "__typename": [ - 70 + 74 ] }, "v_match_player_buy_types_variance_fields": { @@ -94413,7 +96139,7 @@ export default { 29 ], "__typename": [ - 70 + 74 ] }, "v_match_player_opening_duels": { @@ -94424,31 +96150,31 @@ export default { 38 ], "match": [ - 1826 + 1830 ], "match_id": [ - 3818 + 3863 ], "match_lineup": [ - 1506 + 1510 ], "match_lineup_id": [ - 3818 + 3863 ], "match_map": [ - 1664 + 1668 ], "match_map_id": [ - 3818 + 3863 ], "player": [ - 2878 + 2914 ], "side": [ - 70 + 74 ], "steam_id": [ - 169 + 173 ], "traded_deaths": [ 38 @@ -94457,54 +96183,54 @@ export default { 38 ], "__typename": [ - 70 + 74 ] }, "v_match_player_opening_duels_aggregate": { "aggregate": [ - 3995 + 4040 ], "nodes": [ - 3991 + 4036 ], "__typename": [ - 70 + 74 ] }, "v_match_player_opening_duels_aggregate_bool_exp": { "count": [ - 3994 + 4039 ], "__typename": [ - 70 + 74 ] }, "v_match_player_opening_duels_aggregate_bool_exp_count": { "arguments": [ - 4007 + 4052 ], "distinct": [ 3 ], "filter": [ - 4000 + 4045 ], "predicate": [ 39 ], "__typename": [ - 70 + 74 ] }, "v_match_player_opening_duels_aggregate_fields": { "avg": [ - 3998 + 4043 ], "count": [ 38, { "columns": [ - 4007, + 4052, "[v_match_player_opening_duels_select_column!]" ], "distinct": [ @@ -94513,80 +96239,80 @@ export default { } ], "max": [ - 4002 + 4047 ], "min": [ - 4004 + 4049 ], "stddev": [ - 4008 + 4053 ], "stddev_pop": [ - 4010 + 4055 ], "stddev_samp": [ - 4012 + 4057 ], "sum": [ - 4016 + 4061 ], "var_pop": [ - 4018 + 4063 ], "var_samp": [ - 4020 + 4065 ], "variance": [ - 4022 + 4067 ], "__typename": [ - 70 + 74 ] }, "v_match_player_opening_duels_aggregate_order_by": { "avg": [ - 3999 + 4044 ], "count": [ - 2011 + 2015 ], "max": [ - 4003 + 4048 ], "min": [ - 4005 + 4050 ], "stddev": [ - 4009 + 4054 ], "stddev_pop": [ - 4011 + 4056 ], "stddev_samp": [ - 4013 + 4058 ], "sum": [ - 4017 + 4062 ], "var_pop": [ - 4019 + 4064 ], "var_samp": [ - 4021 + 4066 ], "variance": [ - 4023 + 4068 ], "__typename": [ - 70 + 74 ] }, "v_match_player_opening_duels_arr_rel_insert_input": { "data": [ - 4001 + 4046 ], "__typename": [ - 70 + 74 ] }, "v_match_player_opening_duels_avg_fields": { @@ -94606,38 +96332,38 @@ export default { 29 ], "__typename": [ - 70 + 74 ] }, "v_match_player_opening_duels_avg_order_by": { "attempts": [ - 2011 + 2015 ], "deaths": [ - 2011 + 2015 ], "steam_id": [ - 2011 + 2015 ], "traded_deaths": [ - 2011 + 2015 ], "wins": [ - 2011 + 2015 ], "__typename": [ - 70 + 74 ] }, "v_match_player_opening_duels_bool_exp": { "_and": [ - 4000 + 4045 ], "_not": [ - 4000 + 4045 ], "_or": [ - 4000 + 4045 ], "attempts": [ 39 @@ -94646,31 +96372,31 @@ export default { 39 ], "match": [ - 1835 + 1839 ], "match_id": [ - 3820 + 3865 ], "match_lineup": [ - 1515 + 1519 ], "match_lineup_id": [ - 3820 + 3865 ], "match_map": [ - 1673 + 1677 ], "match_map_id": [ - 3820 + 3865 ], "player": [ - 2882 + 2918 ], "side": [ - 72 + 76 ], "steam_id": [ - 171 + 175 ], "traded_deaths": [ 39 @@ -94679,7 +96405,7 @@ export default { 39 ], "__typename": [ - 70 + 74 ] }, "v_match_player_opening_duels_insert_input": { @@ -94690,31 +96416,31 @@ export default { 38 ], "match": [ - 1844 + 1848 ], "match_id": [ - 3818 + 3863 ], "match_lineup": [ - 1524 + 1528 ], "match_lineup_id": [ - 3818 + 3863 ], "match_map": [ - 1682 + 1686 ], "match_map_id": [ - 3818 + 3863 ], "player": [ - 2889 + 2925 ], "side": [ - 70 + 74 ], "steam_id": [ - 169 + 173 ], "traded_deaths": [ 38 @@ -94723,7 +96449,7 @@ export default { 38 ], "__typename": [ - 70 + 74 ] }, "v_match_player_opening_duels_max_fields": { @@ -94734,19 +96460,19 @@ export default { 38 ], "match_id": [ - 3818 + 3863 ], "match_lineup_id": [ - 3818 + 3863 ], "match_map_id": [ - 3818 + 3863 ], "side": [ - 70 + 74 ], "steam_id": [ - 169 + 173 ], "traded_deaths": [ 38 @@ -94755,39 +96481,39 @@ export default { 38 ], "__typename": [ - 70 + 74 ] }, "v_match_player_opening_duels_max_order_by": { "attempts": [ - 2011 + 2015 ], "deaths": [ - 2011 + 2015 ], "match_id": [ - 2011 + 2015 ], "match_lineup_id": [ - 2011 + 2015 ], "match_map_id": [ - 2011 + 2015 ], "side": [ - 2011 + 2015 ], "steam_id": [ - 2011 + 2015 ], "traded_deaths": [ - 2011 + 2015 ], "wins": [ - 2011 + 2015 ], "__typename": [ - 70 + 74 ] }, "v_match_player_opening_duels_min_fields": { @@ -94798,19 +96524,19 @@ export default { 38 ], "match_id": [ - 3818 + 3863 ], "match_lineup_id": [ - 3818 + 3863 ], "match_map_id": [ - 3818 + 3863 ], "side": [ - 70 + 74 ], "steam_id": [ - 169 + 173 ], "traded_deaths": [ 38 @@ -94819,83 +96545,83 @@ export default { 38 ], "__typename": [ - 70 + 74 ] }, "v_match_player_opening_duels_min_order_by": { "attempts": [ - 2011 + 2015 ], "deaths": [ - 2011 + 2015 ], "match_id": [ - 2011 + 2015 ], "match_lineup_id": [ - 2011 + 2015 ], "match_map_id": [ - 2011 + 2015 ], "side": [ - 2011 + 2015 ], "steam_id": [ - 2011 + 2015 ], "traded_deaths": [ - 2011 + 2015 ], "wins": [ - 2011 + 2015 ], "__typename": [ - 70 + 74 ] }, "v_match_player_opening_duels_order_by": { "attempts": [ - 2011 + 2015 ], "deaths": [ - 2011 + 2015 ], "match": [ - 1846 + 1850 ], "match_id": [ - 2011 + 2015 ], "match_lineup": [ - 1526 + 1530 ], "match_lineup_id": [ - 2011 + 2015 ], "match_map": [ - 1684 + 1688 ], "match_map_id": [ - 2011 + 2015 ], "player": [ - 2891 + 2927 ], "side": [ - 2011 + 2015 ], "steam_id": [ - 2011 + 2015 ], "traded_deaths": [ - 2011 + 2015 ], "wins": [ - 2011 + 2015 ], "__typename": [ - 70 + 74 ] }, "v_match_player_opening_duels_select_column": {}, @@ -94916,27 +96642,27 @@ export default { 29 ], "__typename": [ - 70 + 74 ] }, "v_match_player_opening_duels_stddev_order_by": { "attempts": [ - 2011 + 2015 ], "deaths": [ - 2011 + 2015 ], "steam_id": [ - 2011 + 2015 ], "traded_deaths": [ - 2011 + 2015 ], "wins": [ - 2011 + 2015 ], "__typename": [ - 70 + 74 ] }, "v_match_player_opening_duels_stddev_pop_fields": { @@ -94956,27 +96682,27 @@ export default { 29 ], "__typename": [ - 70 + 74 ] }, "v_match_player_opening_duels_stddev_pop_order_by": { "attempts": [ - 2011 + 2015 ], "deaths": [ - 2011 + 2015 ], "steam_id": [ - 2011 + 2015 ], "traded_deaths": [ - 2011 + 2015 ], "wins": [ - 2011 + 2015 ], "__typename": [ - 70 + 74 ] }, "v_match_player_opening_duels_stddev_samp_fields": { @@ -94996,38 +96722,38 @@ export default { 29 ], "__typename": [ - 70 + 74 ] }, "v_match_player_opening_duels_stddev_samp_order_by": { "attempts": [ - 2011 + 2015 ], "deaths": [ - 2011 + 2015 ], "steam_id": [ - 2011 + 2015 ], "traded_deaths": [ - 2011 + 2015 ], "wins": [ - 2011 + 2015 ], "__typename": [ - 70 + 74 ] }, "v_match_player_opening_duels_stream_cursor_input": { "initial_value": [ - 4015 + 4060 ], "ordering": [ - 224 + 228 ], "__typename": [ - 70 + 74 ] }, "v_match_player_opening_duels_stream_cursor_value_input": { @@ -95038,19 +96764,19 @@ export default { 38 ], "match_id": [ - 3818 + 3863 ], "match_lineup_id": [ - 3818 + 3863 ], "match_map_id": [ - 3818 + 3863 ], "side": [ - 70 + 74 ], "steam_id": [ - 169 + 173 ], "traded_deaths": [ 38 @@ -95059,7 +96785,7 @@ export default { 38 ], "__typename": [ - 70 + 74 ] }, "v_match_player_opening_duels_sum_fields": { @@ -95070,7 +96796,7 @@ export default { 38 ], "steam_id": [ - 169 + 173 ], "traded_deaths": [ 38 @@ -95079,27 +96805,27 @@ export default { 38 ], "__typename": [ - 70 + 74 ] }, "v_match_player_opening_duels_sum_order_by": { "attempts": [ - 2011 + 2015 ], "deaths": [ - 2011 + 2015 ], "steam_id": [ - 2011 + 2015 ], "traded_deaths": [ - 2011 + 2015 ], "wins": [ - 2011 + 2015 ], "__typename": [ - 70 + 74 ] }, "v_match_player_opening_duels_var_pop_fields": { @@ -95119,27 +96845,27 @@ export default { 29 ], "__typename": [ - 70 + 74 ] }, "v_match_player_opening_duels_var_pop_order_by": { "attempts": [ - 2011 + 2015 ], "deaths": [ - 2011 + 2015 ], "steam_id": [ - 2011 + 2015 ], "traded_deaths": [ - 2011 + 2015 ], "wins": [ - 2011 + 2015 ], "__typename": [ - 70 + 74 ] }, "v_match_player_opening_duels_var_samp_fields": { @@ -95159,27 +96885,27 @@ export default { 29 ], "__typename": [ - 70 + 74 ] }, "v_match_player_opening_duels_var_samp_order_by": { "attempts": [ - 2011 + 2015 ], "deaths": [ - 2011 + 2015 ], "steam_id": [ - 2011 + 2015 ], "traded_deaths": [ - 2011 + 2015 ], "wins": [ - 2011 + 2015 ], "__typename": [ - 70 + 74 ] }, "v_match_player_opening_duels_variance_fields": { @@ -95199,69 +96925,69 @@ export default { 29 ], "__typename": [ - 70 + 74 ] }, "v_match_player_opening_duels_variance_order_by": { "attempts": [ - 2011 + 2015 ], "deaths": [ - 2011 + 2015 ], "steam_id": [ - 2011 + 2015 ], "traded_deaths": [ - 2011 + 2015 ], "wins": [ - 2011 + 2015 ], "__typename": [ - 70 + 74 ] }, "v_player_arch_nemesis": { "attacker_id": [ - 169 + 173 ], "kill_count": [ - 169 + 173 ], "nemsis": [ - 2878 + 2914 ], "player": [ - 2878 + 2914 ], "victim_id": [ - 169 + 173 ], "__typename": [ - 70 + 74 ] }, "v_player_arch_nemesis_aggregate": { "aggregate": [ - 4026 + 4071 ], "nodes": [ - 4024 + 4069 ], "__typename": [ - 70 + 74 ] }, "v_player_arch_nemesis_aggregate_fields": { "avg": [ - 4027 + 4072 ], "count": [ 38, { "columns": [ - 4032, + 4077, "[v_player_arch_nemesis_select_column!]" ], "distinct": [ @@ -95270,34 +96996,34 @@ export default { } ], "max": [ - 4029 + 4074 ], "min": [ - 4030 + 4075 ], "stddev": [ - 4033 + 4078 ], "stddev_pop": [ - 4034 + 4079 ], "stddev_samp": [ - 4035 + 4080 ], "sum": [ - 4038 + 4083 ], "var_pop": [ - 4039 + 4084 ], "var_samp": [ - 4040 + 4085 ], "variance": [ - 4041 + 4086 ], "__typename": [ - 70 + 74 ] }, "v_player_arch_nemesis_avg_fields": { @@ -95311,84 +97037,84 @@ export default { 29 ], "__typename": [ - 70 + 74 ] }, "v_player_arch_nemesis_bool_exp": { "_and": [ - 4028 + 4073 ], "_not": [ - 4028 + 4073 ], "_or": [ - 4028 + 4073 ], "attacker_id": [ - 171 + 175 ], "kill_count": [ - 171 + 175 ], "nemsis": [ - 2882 + 2918 ], "player": [ - 2882 + 2918 ], "victim_id": [ - 171 + 175 ], "__typename": [ - 70 + 74 ] }, "v_player_arch_nemesis_max_fields": { "attacker_id": [ - 169 + 173 ], "kill_count": [ - 169 + 173 ], "victim_id": [ - 169 + 173 ], "__typename": [ - 70 + 74 ] }, "v_player_arch_nemesis_min_fields": { "attacker_id": [ - 169 + 173 ], "kill_count": [ - 169 + 173 ], "victim_id": [ - 169 + 173 ], "__typename": [ - 70 + 74 ] }, "v_player_arch_nemesis_order_by": { "attacker_id": [ - 2011 + 2015 ], "kill_count": [ - 2011 + 2015 ], "nemsis": [ - 2891 + 2927 ], "player": [ - 2891 + 2927 ], "victim_id": [ - 2011 + 2015 ], "__typename": [ - 70 + 74 ] }, "v_player_arch_nemesis_select_column": {}, @@ -95403,7 +97129,7 @@ export default { 29 ], "__typename": [ - 70 + 74 ] }, "v_player_arch_nemesis_stddev_pop_fields": { @@ -95417,7 +97143,7 @@ export default { 29 ], "__typename": [ - 70 + 74 ] }, "v_player_arch_nemesis_stddev_samp_fields": { @@ -95431,46 +97157,46 @@ export default { 29 ], "__typename": [ - 70 + 74 ] }, "v_player_arch_nemesis_stream_cursor_input": { "initial_value": [ - 4037 + 4082 ], "ordering": [ - 224 + 228 ], "__typename": [ - 70 + 74 ] }, "v_player_arch_nemesis_stream_cursor_value_input": { "attacker_id": [ - 169 + 173 ], "kill_count": [ - 169 + 173 ], "victim_id": [ - 169 + 173 ], "__typename": [ - 70 + 74 ] }, "v_player_arch_nemesis_sum_fields": { "attacker_id": [ - 169 + 173 ], "kill_count": [ - 169 + 173 ], "victim_id": [ - 169 + 173 ], "__typename": [ - 70 + 74 ] }, "v_player_arch_nemesis_var_pop_fields": { @@ -95484,7 +97210,7 @@ export default { 29 ], "__typename": [ - 70 + 74 ] }, "v_player_arch_nemesis_var_samp_fields": { @@ -95498,7 +97224,7 @@ export default { 29 ], "__typename": [ - 70 + 74 ] }, "v_player_arch_nemesis_variance_fields": { @@ -95512,49 +97238,49 @@ export default { 29 ], "__typename": [ - 70 + 74 ] }, "v_player_damage": { "avg_damage_per_round": [ - 169 + 173 ], "player": [ - 2878 + 2914 ], "player_steam_id": [ - 169 + 173 ], "total_damage": [ - 169 + 173 ], "total_rounds": [ - 169 + 173 ], "__typename": [ - 70 + 74 ] }, "v_player_damage_aggregate": { "aggregate": [ - 4044 + 4089 ], "nodes": [ - 4042 + 4087 ], "__typename": [ - 70 + 74 ] }, "v_player_damage_aggregate_fields": { "avg": [ - 4045 + 4090 ], "count": [ 38, { "columns": [ - 4050, + 4095, "[v_player_damage_select_column!]" ], "distinct": [ @@ -95563,34 +97289,34 @@ export default { } ], "max": [ - 4047 + 4092 ], "min": [ - 4048 + 4093 ], "stddev": [ - 4051 + 4096 ], "stddev_pop": [ - 4052 + 4097 ], "stddev_samp": [ - 4053 + 4098 ], "sum": [ - 4056 + 4101 ], "var_pop": [ - 4057 + 4102 ], "var_samp": [ - 4058 + 4103 ], "variance": [ - 4059 + 4104 ], "__typename": [ - 70 + 74 ] }, "v_player_damage_avg_fields": { @@ -95607,90 +97333,90 @@ export default { 29 ], "__typename": [ - 70 + 74 ] }, "v_player_damage_bool_exp": { "_and": [ - 4046 + 4091 ], "_not": [ - 4046 + 4091 ], "_or": [ - 4046 + 4091 ], "avg_damage_per_round": [ - 171 + 175 ], "player": [ - 2882 + 2918 ], "player_steam_id": [ - 171 + 175 ], "total_damage": [ - 171 + 175 ], "total_rounds": [ - 171 + 175 ], "__typename": [ - 70 + 74 ] }, "v_player_damage_max_fields": { "avg_damage_per_round": [ - 169 + 173 ], "player_steam_id": [ - 169 + 173 ], "total_damage": [ - 169 + 173 ], "total_rounds": [ - 169 + 173 ], "__typename": [ - 70 + 74 ] }, "v_player_damage_min_fields": { "avg_damage_per_round": [ - 169 + 173 ], "player_steam_id": [ - 169 + 173 ], "total_damage": [ - 169 + 173 ], "total_rounds": [ - 169 + 173 ], "__typename": [ - 70 + 74 ] }, "v_player_damage_order_by": { "avg_damage_per_round": [ - 2011 + 2015 ], "player": [ - 2891 + 2927 ], "player_steam_id": [ - 2011 + 2015 ], "total_damage": [ - 2011 + 2015 ], "total_rounds": [ - 2011 + 2015 ], "__typename": [ - 70 + 74 ] }, "v_player_damage_select_column": {}, @@ -95708,7 +97434,7 @@ export default { 29 ], "__typename": [ - 70 + 74 ] }, "v_player_damage_stddev_pop_fields": { @@ -95725,7 +97451,7 @@ export default { 29 ], "__typename": [ - 70 + 74 ] }, "v_player_damage_stddev_samp_fields": { @@ -95742,52 +97468,52 @@ export default { 29 ], "__typename": [ - 70 + 74 ] }, "v_player_damage_stream_cursor_input": { "initial_value": [ - 4055 + 4100 ], "ordering": [ - 224 + 228 ], "__typename": [ - 70 + 74 ] }, "v_player_damage_stream_cursor_value_input": { "avg_damage_per_round": [ - 169 + 173 ], "player_steam_id": [ - 169 + 173 ], "total_damage": [ - 169 + 173 ], "total_rounds": [ - 169 + 173 ], "__typename": [ - 70 + 74 ] }, "v_player_damage_sum_fields": { "avg_damage_per_round": [ - 169 + 173 ], "player_steam_id": [ - 169 + 173 ], "total_damage": [ - 169 + 173 ], "total_rounds": [ - 169 + 173 ], "__typename": [ - 70 + 74 ] }, "v_player_damage_var_pop_fields": { @@ -95804,7 +97530,7 @@ export default { 29 ], "__typename": [ - 70 + 74 ] }, "v_player_damage_var_samp_fields": { @@ -95821,7 +97547,7 @@ export default { 29 ], "__typename": [ - 70 + 74 ] }, "v_player_damage_variance_fields": { @@ -95838,12 +97564,12 @@ export default { 29 ], "__typename": [ - 70 + 74 ] }, "v_player_elo": { "actual_score": [ - 1084 + 1088 ], "assists": [ 38 @@ -95855,7 +97581,7 @@ export default { 38 ], "damage_percent": [ - 1084 + 1088 ], "deaths": [ 38 @@ -95864,16 +97590,16 @@ export default { 38 ], "expected_score": [ - 1084 + 1088 ], "impact": [ - 1084 + 1088 ], "k_factor": [ 38 ], "kda": [ - 1084 + 1088 ], "kills": [ 38 @@ -95885,275 +97611,275 @@ export default { 38 ], "match": [ - 1826 + 1830 ], "match_created_at": [ - 3421 + 3466 ], "match_id": [ - 3818 + 3863 ], "match_result": [ - 70 + 74 ], "opponent_team_elo_avg": [ - 1084 + 1088 ], "performance_multiplier": [ - 1084 + 1088 ], "player_name": [ - 70 + 74 ], "player_steam_id": [ - 169 + 173 ], "player_team_elo_avg": [ - 1084 + 1088 ], "series_multiplier": [ 38 ], "team_avg_kda": [ - 1084 + 1088 ], "type": [ - 70 + 74 ], "updated_elo": [ 38 ], "__typename": [ - 70 + 74 ] }, "v_player_elo_aggregate": { "aggregate": [ - 4074 + 4119 ], "nodes": [ - 4060 + 4105 ], "__typename": [ - 70 + 74 ] }, "v_player_elo_aggregate_bool_exp": { "avg": [ - 4063 + 4108 ], "corr": [ - 4064 + 4109 ], "count": [ - 4066 + 4111 ], "covar_samp": [ - 4067 + 4112 ], "max": [ - 4069 + 4114 ], "min": [ - 4070 + 4115 ], "stddev_samp": [ - 4071 + 4116 ], "sum": [ - 4072 + 4117 ], "var_samp": [ - 4073 + 4118 ], "__typename": [ - 70 + 74 ] }, "v_player_elo_aggregate_bool_exp_avg": { "arguments": [ - 4087 + 4132 ], "distinct": [ 3 ], "filter": [ - 4079 + 4124 ], "predicate": [ - 1085 + 1089 ], "__typename": [ - 70 + 74 ] }, "v_player_elo_aggregate_bool_exp_corr": { "arguments": [ - 4065 + 4110 ], "distinct": [ 3 ], "filter": [ - 4079 + 4124 ], "predicate": [ - 1085 + 1089 ], "__typename": [ - 70 + 74 ] }, "v_player_elo_aggregate_bool_exp_corr_arguments": { "X": [ - 4088 + 4133 ], "Y": [ - 4088 + 4133 ], "__typename": [ - 70 + 74 ] }, "v_player_elo_aggregate_bool_exp_count": { "arguments": [ - 4086 + 4131 ], "distinct": [ 3 ], "filter": [ - 4079 + 4124 ], "predicate": [ 39 ], "__typename": [ - 70 + 74 ] }, "v_player_elo_aggregate_bool_exp_covar_samp": { "arguments": [ - 4068 + 4113 ], "distinct": [ 3 ], "filter": [ - 4079 + 4124 ], "predicate": [ - 1085 + 1089 ], "__typename": [ - 70 + 74 ] }, "v_player_elo_aggregate_bool_exp_covar_samp_arguments": { "X": [ - 4089 + 4134 ], "Y": [ - 4089 + 4134 ], "__typename": [ - 70 + 74 ] }, "v_player_elo_aggregate_bool_exp_max": { "arguments": [ - 4090 + 4135 ], "distinct": [ 3 ], "filter": [ - 4079 + 4124 ], "predicate": [ - 1085 + 1089 ], "__typename": [ - 70 + 74 ] }, "v_player_elo_aggregate_bool_exp_min": { "arguments": [ - 4091 + 4136 ], "distinct": [ 3 ], "filter": [ - 4079 + 4124 ], "predicate": [ - 1085 + 1089 ], "__typename": [ - 70 + 74 ] }, "v_player_elo_aggregate_bool_exp_stddev_samp": { "arguments": [ - 4092 + 4137 ], "distinct": [ 3 ], "filter": [ - 4079 + 4124 ], "predicate": [ - 1085 + 1089 ], "__typename": [ - 70 + 74 ] }, "v_player_elo_aggregate_bool_exp_sum": { "arguments": [ - 4093 + 4138 ], "distinct": [ 3 ], "filter": [ - 4079 + 4124 ], "predicate": [ - 1085 + 1089 ], "__typename": [ - 70 + 74 ] }, "v_player_elo_aggregate_bool_exp_var_samp": { "arguments": [ - 4094 + 4139 ], "distinct": [ 3 ], "filter": [ - 4079 + 4124 ], "predicate": [ - 1085 + 1089 ], "__typename": [ - 70 + 74 ] }, "v_player_elo_aggregate_fields": { "avg": [ - 4077 + 4122 ], "count": [ 38, { "columns": [ - 4086, + 4131, "[v_player_elo_select_column!]" ], "distinct": [ @@ -96162,80 +97888,80 @@ export default { } ], "max": [ - 4081 + 4126 ], "min": [ - 4083 + 4128 ], "stddev": [ - 4095 + 4140 ], "stddev_pop": [ - 4097 + 4142 ], "stddev_samp": [ - 4099 + 4144 ], "sum": [ - 4103 + 4148 ], "var_pop": [ - 4105 + 4150 ], "var_samp": [ - 4107 + 4152 ], "variance": [ - 4109 + 4154 ], "__typename": [ - 70 + 74 ] }, "v_player_elo_aggregate_order_by": { "avg": [ - 4078 + 4123 ], "count": [ - 2011 + 2015 ], "max": [ - 4082 + 4127 ], "min": [ - 4084 + 4129 ], "stddev": [ - 4096 + 4141 ], "stddev_pop": [ - 4098 + 4143 ], "stddev_samp": [ - 4100 + 4145 ], "sum": [ - 4104 + 4149 ], "var_pop": [ - 4106 + 4151 ], "var_samp": [ - 4108 + 4153 ], "variance": [ - 4110 + 4155 ], "__typename": [ - 70 + 74 ] }, "v_player_elo_arr_rel_insert_input": { "data": [ - 4080 + 4125 ], "__typename": [ - 70 + 74 ] }, "v_player_elo_avg_fields": { @@ -96303,89 +98029,89 @@ export default { 29 ], "__typename": [ - 70 + 74 ] }, "v_player_elo_avg_order_by": { "actual_score": [ - 2011 + 2015 ], "assists": [ - 2011 + 2015 ], "current_elo": [ - 2011 + 2015 ], "damage": [ - 2011 + 2015 ], "damage_percent": [ - 2011 + 2015 ], "deaths": [ - 2011 + 2015 ], "elo_change": [ - 2011 + 2015 ], "expected_score": [ - 2011 + 2015 ], "impact": [ - 2011 + 2015 ], "k_factor": [ - 2011 + 2015 ], "kda": [ - 2011 + 2015 ], "kills": [ - 2011 + 2015 ], "map_losses": [ - 2011 + 2015 ], "map_wins": [ - 2011 + 2015 ], "opponent_team_elo_avg": [ - 2011 + 2015 ], "performance_multiplier": [ - 2011 + 2015 ], "player_steam_id": [ - 2011 + 2015 ], "player_team_elo_avg": [ - 2011 + 2015 ], "series_multiplier": [ - 2011 + 2015 ], "team_avg_kda": [ - 2011 + 2015 ], "updated_elo": [ - 2011 + 2015 ], "__typename": [ - 70 + 74 ] }, "v_player_elo_bool_exp": { "_and": [ - 4079 + 4124 ], "_not": [ - 4079 + 4124 ], "_or": [ - 4079 + 4124 ], "actual_score": [ - 1085 + 1089 ], "assists": [ 39 @@ -96397,7 +98123,7 @@ export default { 39 ], "damage_percent": [ - 1085 + 1089 ], "deaths": [ 39 @@ -96406,16 +98132,16 @@ export default { 39 ], "expected_score": [ - 1085 + 1089 ], "impact": [ - 1085 + 1089 ], "k_factor": [ 39 ], "kda": [ - 1085 + 1089 ], "kills": [ 39 @@ -96427,51 +98153,51 @@ export default { 39 ], "match": [ - 1835 + 1839 ], "match_created_at": [ - 3422 + 3467 ], "match_id": [ - 3820 + 3865 ], "match_result": [ - 72 + 76 ], "opponent_team_elo_avg": [ - 1085 + 1089 ], "performance_multiplier": [ - 1085 + 1089 ], "player_name": [ - 72 + 76 ], "player_steam_id": [ - 171 + 175 ], "player_team_elo_avg": [ - 1085 + 1089 ], "series_multiplier": [ 39 ], "team_avg_kda": [ - 1085 + 1089 ], "type": [ - 72 + 76 ], "updated_elo": [ 39 ], "__typename": [ - 70 + 74 ] }, "v_player_elo_insert_input": { "actual_score": [ - 1084 + 1088 ], "assists": [ 38 @@ -96483,7 +98209,7 @@ export default { 38 ], "damage_percent": [ - 1084 + 1088 ], "deaths": [ 38 @@ -96492,16 +98218,16 @@ export default { 38 ], "expected_score": [ - 1084 + 1088 ], "impact": [ - 1084 + 1088 ], "k_factor": [ 38 ], "kda": [ - 1084 + 1088 ], "kills": [ 38 @@ -96513,51 +98239,51 @@ export default { 38 ], "match": [ - 1844 + 1848 ], "match_created_at": [ - 3421 + 3466 ], "match_id": [ - 3818 + 3863 ], "match_result": [ - 70 + 74 ], "opponent_team_elo_avg": [ - 1084 + 1088 ], "performance_multiplier": [ - 1084 + 1088 ], "player_name": [ - 70 + 74 ], "player_steam_id": [ - 169 + 173 ], "player_team_elo_avg": [ - 1084 + 1088 ], "series_multiplier": [ 38 ], "team_avg_kda": [ - 1084 + 1088 ], "type": [ - 70 + 74 ], "updated_elo": [ 38 ], "__typename": [ - 70 + 74 ] }, "v_player_elo_max_fields": { "actual_score": [ - 1084 + 1088 ], "assists": [ 38 @@ -96569,7 +98295,7 @@ export default { 38 ], "damage_percent": [ - 1084 + 1088 ], "deaths": [ 38 @@ -96578,16 +98304,16 @@ export default { 38 ], "expected_score": [ - 1084 + 1088 ], "impact": [ - 1084 + 1088 ], "k_factor": [ 38 ], "kda": [ - 1084 + 1088 ], "kills": [ 38 @@ -96599,131 +98325,131 @@ export default { 38 ], "match_created_at": [ - 3421 + 3466 ], "match_id": [ - 3818 + 3863 ], "match_result": [ - 70 + 74 ], "opponent_team_elo_avg": [ - 1084 + 1088 ], "performance_multiplier": [ - 1084 + 1088 ], "player_name": [ - 70 + 74 ], "player_steam_id": [ - 169 + 173 ], "player_team_elo_avg": [ - 1084 + 1088 ], "series_multiplier": [ 38 ], "team_avg_kda": [ - 1084 + 1088 ], "type": [ - 70 + 74 ], "updated_elo": [ 38 ], "__typename": [ - 70 + 74 ] }, "v_player_elo_max_order_by": { "actual_score": [ - 2011 + 2015 ], "assists": [ - 2011 + 2015 ], "current_elo": [ - 2011 + 2015 ], "damage": [ - 2011 + 2015 ], "damage_percent": [ - 2011 + 2015 ], "deaths": [ - 2011 + 2015 ], "elo_change": [ - 2011 + 2015 ], "expected_score": [ - 2011 + 2015 ], "impact": [ - 2011 + 2015 ], "k_factor": [ - 2011 + 2015 ], "kda": [ - 2011 + 2015 ], "kills": [ - 2011 + 2015 ], "map_losses": [ - 2011 + 2015 ], "map_wins": [ - 2011 + 2015 ], "match_created_at": [ - 2011 + 2015 ], "match_id": [ - 2011 + 2015 ], "match_result": [ - 2011 + 2015 ], "opponent_team_elo_avg": [ - 2011 + 2015 ], "performance_multiplier": [ - 2011 + 2015 ], "player_name": [ - 2011 + 2015 ], "player_steam_id": [ - 2011 + 2015 ], "player_team_elo_avg": [ - 2011 + 2015 ], "series_multiplier": [ - 2011 + 2015 ], "team_avg_kda": [ - 2011 + 2015 ], "type": [ - 2011 + 2015 ], "updated_elo": [ - 2011 + 2015 ], "__typename": [ - 70 + 74 ] }, "v_player_elo_min_fields": { "actual_score": [ - 1084 + 1088 ], "assists": [ 38 @@ -96735,7 +98461,7 @@ export default { 38 ], "damage_percent": [ - 1084 + 1088 ], "deaths": [ 38 @@ -96744,16 +98470,16 @@ export default { 38 ], "expected_score": [ - 1084 + 1088 ], "impact": [ - 1084 + 1088 ], "k_factor": [ 38 ], "kda": [ - 1084 + 1088 ], "kills": [ 38 @@ -96765,212 +98491,212 @@ export default { 38 ], "match_created_at": [ - 3421 + 3466 ], "match_id": [ - 3818 + 3863 ], "match_result": [ - 70 + 74 ], "opponent_team_elo_avg": [ - 1084 + 1088 ], "performance_multiplier": [ - 1084 + 1088 ], "player_name": [ - 70 + 74 ], "player_steam_id": [ - 169 + 173 ], "player_team_elo_avg": [ - 1084 + 1088 ], "series_multiplier": [ 38 ], "team_avg_kda": [ - 1084 + 1088 ], "type": [ - 70 + 74 ], "updated_elo": [ 38 ], "__typename": [ - 70 + 74 ] }, "v_player_elo_min_order_by": { "actual_score": [ - 2011 + 2015 ], "assists": [ - 2011 + 2015 ], "current_elo": [ - 2011 + 2015 ], "damage": [ - 2011 + 2015 ], "damage_percent": [ - 2011 + 2015 ], "deaths": [ - 2011 + 2015 ], "elo_change": [ - 2011 + 2015 ], "expected_score": [ - 2011 + 2015 ], "impact": [ - 2011 + 2015 ], "k_factor": [ - 2011 + 2015 ], "kda": [ - 2011 + 2015 ], "kills": [ - 2011 + 2015 ], "map_losses": [ - 2011 + 2015 ], "map_wins": [ - 2011 + 2015 ], "match_created_at": [ - 2011 + 2015 ], "match_id": [ - 2011 + 2015 ], "match_result": [ - 2011 + 2015 ], "opponent_team_elo_avg": [ - 2011 + 2015 ], "performance_multiplier": [ - 2011 + 2015 ], "player_name": [ - 2011 + 2015 ], "player_steam_id": [ - 2011 + 2015 ], "player_team_elo_avg": [ - 2011 + 2015 ], "series_multiplier": [ - 2011 + 2015 ], "team_avg_kda": [ - 2011 + 2015 ], "type": [ - 2011 + 2015 ], "updated_elo": [ - 2011 + 2015 ], "__typename": [ - 70 + 74 ] }, "v_player_elo_order_by": { "actual_score": [ - 2011 + 2015 ], "assists": [ - 2011 + 2015 ], "current_elo": [ - 2011 + 2015 ], "damage": [ - 2011 + 2015 ], "damage_percent": [ - 2011 + 2015 ], "deaths": [ - 2011 + 2015 ], "elo_change": [ - 2011 + 2015 ], "expected_score": [ - 2011 + 2015 ], "impact": [ - 2011 + 2015 ], "k_factor": [ - 2011 + 2015 ], "kda": [ - 2011 + 2015 ], "kills": [ - 2011 + 2015 ], "map_losses": [ - 2011 + 2015 ], "map_wins": [ - 2011 + 2015 ], "match": [ - 1846 + 1850 ], "match_created_at": [ - 2011 + 2015 ], "match_id": [ - 2011 + 2015 ], "match_result": [ - 2011 + 2015 ], "opponent_team_elo_avg": [ - 2011 + 2015 ], "performance_multiplier": [ - 2011 + 2015 ], "player_name": [ - 2011 + 2015 ], "player_steam_id": [ - 2011 + 2015 ], "player_team_elo_avg": [ - 2011 + 2015 ], "series_multiplier": [ - 2011 + 2015 ], "team_avg_kda": [ - 2011 + 2015 ], "type": [ - 2011 + 2015 ], "updated_elo": [ - 2011 + 2015 ], "__typename": [ - 70 + 74 ] }, "v_player_elo_select_column": {}, @@ -97047,75 +98773,75 @@ export default { 29 ], "__typename": [ - 70 + 74 ] }, "v_player_elo_stddev_order_by": { "actual_score": [ - 2011 + 2015 ], "assists": [ - 2011 + 2015 ], "current_elo": [ - 2011 + 2015 ], "damage": [ - 2011 + 2015 ], "damage_percent": [ - 2011 + 2015 ], "deaths": [ - 2011 + 2015 ], "elo_change": [ - 2011 + 2015 ], "expected_score": [ - 2011 + 2015 ], "impact": [ - 2011 + 2015 ], "k_factor": [ - 2011 + 2015 ], "kda": [ - 2011 + 2015 ], "kills": [ - 2011 + 2015 ], "map_losses": [ - 2011 + 2015 ], "map_wins": [ - 2011 + 2015 ], "opponent_team_elo_avg": [ - 2011 + 2015 ], "performance_multiplier": [ - 2011 + 2015 ], "player_steam_id": [ - 2011 + 2015 ], "player_team_elo_avg": [ - 2011 + 2015 ], "series_multiplier": [ - 2011 + 2015 ], "team_avg_kda": [ - 2011 + 2015 ], "updated_elo": [ - 2011 + 2015 ], "__typename": [ - 70 + 74 ] }, "v_player_elo_stddev_pop_fields": { @@ -97183,75 +98909,75 @@ export default { 29 ], "__typename": [ - 70 + 74 ] }, "v_player_elo_stddev_pop_order_by": { "actual_score": [ - 2011 + 2015 ], "assists": [ - 2011 + 2015 ], "current_elo": [ - 2011 + 2015 ], "damage": [ - 2011 + 2015 ], "damage_percent": [ - 2011 + 2015 ], "deaths": [ - 2011 + 2015 ], "elo_change": [ - 2011 + 2015 ], "expected_score": [ - 2011 + 2015 ], "impact": [ - 2011 + 2015 ], "k_factor": [ - 2011 + 2015 ], "kda": [ - 2011 + 2015 ], "kills": [ - 2011 + 2015 ], "map_losses": [ - 2011 + 2015 ], "map_wins": [ - 2011 + 2015 ], "opponent_team_elo_avg": [ - 2011 + 2015 ], "performance_multiplier": [ - 2011 + 2015 ], "player_steam_id": [ - 2011 + 2015 ], "player_team_elo_avg": [ - 2011 + 2015 ], "series_multiplier": [ - 2011 + 2015 ], "team_avg_kda": [ - 2011 + 2015 ], "updated_elo": [ - 2011 + 2015 ], "__typename": [ - 70 + 74 ] }, "v_player_elo_stddev_samp_fields": { @@ -97319,91 +99045,91 @@ export default { 29 ], "__typename": [ - 70 + 74 ] }, "v_player_elo_stddev_samp_order_by": { "actual_score": [ - 2011 + 2015 ], "assists": [ - 2011 + 2015 ], "current_elo": [ - 2011 + 2015 ], "damage": [ - 2011 + 2015 ], "damage_percent": [ - 2011 + 2015 ], "deaths": [ - 2011 + 2015 ], "elo_change": [ - 2011 + 2015 ], "expected_score": [ - 2011 + 2015 ], "impact": [ - 2011 + 2015 ], "k_factor": [ - 2011 + 2015 ], "kda": [ - 2011 + 2015 ], "kills": [ - 2011 + 2015 ], "map_losses": [ - 2011 + 2015 ], "map_wins": [ - 2011 + 2015 ], "opponent_team_elo_avg": [ - 2011 + 2015 ], "performance_multiplier": [ - 2011 + 2015 ], "player_steam_id": [ - 2011 + 2015 ], "player_team_elo_avg": [ - 2011 + 2015 ], "series_multiplier": [ - 2011 + 2015 ], "team_avg_kda": [ - 2011 + 2015 ], "updated_elo": [ - 2011 + 2015 ], "__typename": [ - 70 + 74 ] }, "v_player_elo_stream_cursor_input": { "initial_value": [ - 4102 + 4147 ], "ordering": [ - 224 + 228 ], "__typename": [ - 70 + 74 ] }, "v_player_elo_stream_cursor_value_input": { "actual_score": [ - 1084 + 1088 ], "assists": [ 38 @@ -97415,7 +99141,7 @@ export default { 38 ], "damage_percent": [ - 1084 + 1088 ], "deaths": [ 38 @@ -97424,16 +99150,16 @@ export default { 38 ], "expected_score": [ - 1084 + 1088 ], "impact": [ - 1084 + 1088 ], "k_factor": [ 38 ], "kda": [ - 1084 + 1088 ], "kills": [ 38 @@ -97445,48 +99171,48 @@ export default { 38 ], "match_created_at": [ - 3421 + 3466 ], "match_id": [ - 3818 + 3863 ], "match_result": [ - 70 + 74 ], "opponent_team_elo_avg": [ - 1084 + 1088 ], "performance_multiplier": [ - 1084 + 1088 ], "player_name": [ - 70 + 74 ], "player_steam_id": [ - 169 + 173 ], "player_team_elo_avg": [ - 1084 + 1088 ], "series_multiplier": [ 38 ], "team_avg_kda": [ - 1084 + 1088 ], "type": [ - 70 + 74 ], "updated_elo": [ 38 ], "__typename": [ - 70 + 74 ] }, "v_player_elo_sum_fields": { "actual_score": [ - 1084 + 1088 ], "assists": [ 38 @@ -97498,7 +99224,7 @@ export default { 38 ], "damage_percent": [ - 1084 + 1088 ], "deaths": [ 38 @@ -97507,16 +99233,16 @@ export default { 38 ], "expected_score": [ - 1084 + 1088 ], "impact": [ - 1084 + 1088 ], "k_factor": [ 38 ], "kda": [ - 1084 + 1088 ], "kills": [ 38 @@ -97528,96 +99254,96 @@ export default { 38 ], "opponent_team_elo_avg": [ - 1084 + 1088 ], "performance_multiplier": [ - 1084 + 1088 ], "player_steam_id": [ - 169 + 173 ], "player_team_elo_avg": [ - 1084 + 1088 ], "series_multiplier": [ 38 ], "team_avg_kda": [ - 1084 + 1088 ], "updated_elo": [ 38 ], "__typename": [ - 70 + 74 ] }, "v_player_elo_sum_order_by": { "actual_score": [ - 2011 + 2015 ], "assists": [ - 2011 + 2015 ], "current_elo": [ - 2011 + 2015 ], "damage": [ - 2011 + 2015 ], "damage_percent": [ - 2011 + 2015 ], "deaths": [ - 2011 + 2015 ], "elo_change": [ - 2011 + 2015 ], "expected_score": [ - 2011 + 2015 ], "impact": [ - 2011 + 2015 ], "k_factor": [ - 2011 + 2015 ], "kda": [ - 2011 + 2015 ], "kills": [ - 2011 + 2015 ], "map_losses": [ - 2011 + 2015 ], "map_wins": [ - 2011 + 2015 ], "opponent_team_elo_avg": [ - 2011 + 2015 ], "performance_multiplier": [ - 2011 + 2015 ], "player_steam_id": [ - 2011 + 2015 ], "player_team_elo_avg": [ - 2011 + 2015 ], "series_multiplier": [ - 2011 + 2015 ], "team_avg_kda": [ - 2011 + 2015 ], "updated_elo": [ - 2011 + 2015 ], "__typename": [ - 70 + 74 ] }, "v_player_elo_var_pop_fields": { @@ -97685,75 +99411,75 @@ export default { 29 ], "__typename": [ - 70 + 74 ] }, "v_player_elo_var_pop_order_by": { "actual_score": [ - 2011 + 2015 ], "assists": [ - 2011 + 2015 ], "current_elo": [ - 2011 + 2015 ], "damage": [ - 2011 + 2015 ], "damage_percent": [ - 2011 + 2015 ], "deaths": [ - 2011 + 2015 ], "elo_change": [ - 2011 + 2015 ], "expected_score": [ - 2011 + 2015 ], "impact": [ - 2011 + 2015 ], "k_factor": [ - 2011 + 2015 ], "kda": [ - 2011 + 2015 ], "kills": [ - 2011 + 2015 ], "map_losses": [ - 2011 + 2015 ], "map_wins": [ - 2011 + 2015 ], "opponent_team_elo_avg": [ - 2011 + 2015 ], "performance_multiplier": [ - 2011 + 2015 ], "player_steam_id": [ - 2011 + 2015 ], "player_team_elo_avg": [ - 2011 + 2015 ], "series_multiplier": [ - 2011 + 2015 ], "team_avg_kda": [ - 2011 + 2015 ], "updated_elo": [ - 2011 + 2015 ], "__typename": [ - 70 + 74 ] }, "v_player_elo_var_samp_fields": { @@ -97821,75 +99547,75 @@ export default { 29 ], "__typename": [ - 70 + 74 ] }, "v_player_elo_var_samp_order_by": { "actual_score": [ - 2011 + 2015 ], "assists": [ - 2011 + 2015 ], "current_elo": [ - 2011 + 2015 ], "damage": [ - 2011 + 2015 ], "damage_percent": [ - 2011 + 2015 ], "deaths": [ - 2011 + 2015 ], "elo_change": [ - 2011 + 2015 ], "expected_score": [ - 2011 + 2015 ], "impact": [ - 2011 + 2015 ], "k_factor": [ - 2011 + 2015 ], "kda": [ - 2011 + 2015 ], "kills": [ - 2011 + 2015 ], "map_losses": [ - 2011 + 2015 ], "map_wins": [ - 2011 + 2015 ], "opponent_team_elo_avg": [ - 2011 + 2015 ], "performance_multiplier": [ - 2011 + 2015 ], "player_steam_id": [ - 2011 + 2015 ], "player_team_elo_avg": [ - 2011 + 2015 ], "series_multiplier": [ - 2011 + 2015 ], "team_avg_kda": [ - 2011 + 2015 ], "updated_elo": [ - 2011 + 2015 ], "__typename": [ - 70 + 74 ] }, "v_player_elo_variance_fields": { @@ -97957,120 +99683,120 @@ export default { 29 ], "__typename": [ - 70 + 74 ] }, "v_player_elo_variance_order_by": { "actual_score": [ - 2011 + 2015 ], "assists": [ - 2011 + 2015 ], "current_elo": [ - 2011 + 2015 ], "damage": [ - 2011 + 2015 ], "damage_percent": [ - 2011 + 2015 ], "deaths": [ - 2011 + 2015 ], "elo_change": [ - 2011 + 2015 ], "expected_score": [ - 2011 + 2015 ], "impact": [ - 2011 + 2015 ], "k_factor": [ - 2011 + 2015 ], "kda": [ - 2011 + 2015 ], "kills": [ - 2011 + 2015 ], "map_losses": [ - 2011 + 2015 ], "map_wins": [ - 2011 + 2015 ], "opponent_team_elo_avg": [ - 2011 + 2015 ], "performance_multiplier": [ - 2011 + 2015 ], "player_steam_id": [ - 2011 + 2015 ], "player_team_elo_avg": [ - 2011 + 2015 ], "series_multiplier": [ - 2011 + 2015 ], "team_avg_kda": [ - 2011 + 2015 ], "updated_elo": [ - 2011 + 2015 ], "__typename": [ - 70 + 74 ] }, "v_player_map_losses": { "map": [ - 1344 + 1348 ], "map_id": [ - 3818 + 3863 ], "match": [ - 1826 + 1830 ], "match_id": [ - 3818 + 3863 ], "started_at": [ - 3421 + 3466 ], "steam_id": [ - 169 + 173 ], "__typename": [ - 70 + 74 ] }, "v_player_map_losses_aggregate": { "aggregate": [ - 4113 + 4158 ], "nodes": [ - 4111 + 4156 ], "__typename": [ - 70 + 74 ] }, "v_player_map_losses_aggregate_fields": { "avg": [ - 4114 + 4159 ], "count": [ 38, { "columns": [ - 4119, + 4164, "[v_player_map_losses_select_column!]" ], "distinct": [ @@ -98079,34 +99805,34 @@ export default { } ], "max": [ - 4116 + 4161 ], "min": [ - 4117 + 4162 ], "stddev": [ - 4120 + 4165 ], "stddev_pop": [ - 4121 + 4166 ], "stddev_samp": [ - 4122 + 4167 ], "sum": [ - 4125 + 4170 ], "var_pop": [ - 4126 + 4171 ], "var_samp": [ - 4127 + 4172 ], "variance": [ - 4128 + 4173 ], "__typename": [ - 70 + 74 ] }, "v_player_map_losses_avg_fields": { @@ -98114,96 +99840,96 @@ export default { 29 ], "__typename": [ - 70 + 74 ] }, "v_player_map_losses_bool_exp": { "_and": [ - 4115 + 4160 ], "_not": [ - 4115 + 4160 ], "_or": [ - 4115 + 4160 ], "map": [ - 1353 + 1357 ], "map_id": [ - 3820 + 3865 ], "match": [ - 1835 + 1839 ], "match_id": [ - 3820 + 3865 ], "started_at": [ - 3422 + 3467 ], "steam_id": [ - 171 + 175 ], "__typename": [ - 70 + 74 ] }, "v_player_map_losses_max_fields": { "map_id": [ - 3818 + 3863 ], "match_id": [ - 3818 + 3863 ], "started_at": [ - 3421 + 3466 ], "steam_id": [ - 169 + 173 ], "__typename": [ - 70 + 74 ] }, "v_player_map_losses_min_fields": { "map_id": [ - 3818 + 3863 ], "match_id": [ - 3818 + 3863 ], "started_at": [ - 3421 + 3466 ], "steam_id": [ - 169 + 173 ], "__typename": [ - 70 + 74 ] }, "v_player_map_losses_order_by": { "map": [ - 1363 + 1367 ], "map_id": [ - 2011 + 2015 ], "match": [ - 1846 + 1850 ], "match_id": [ - 2011 + 2015 ], "started_at": [ - 2011 + 2015 ], "steam_id": [ - 2011 + 2015 ], "__typename": [ - 70 + 74 ] }, "v_player_map_losses_select_column": {}, @@ -98212,7 +99938,7 @@ export default { 29 ], "__typename": [ - 70 + 74 ] }, "v_player_map_losses_stddev_pop_fields": { @@ -98220,7 +99946,7 @@ export default { 29 ], "__typename": [ - 70 + 74 ] }, "v_player_map_losses_stddev_samp_fields": { @@ -98228,43 +99954,43 @@ export default { 29 ], "__typename": [ - 70 + 74 ] }, "v_player_map_losses_stream_cursor_input": { "initial_value": [ - 4124 + 4169 ], "ordering": [ - 224 + 228 ], "__typename": [ - 70 + 74 ] }, "v_player_map_losses_stream_cursor_value_input": { "map_id": [ - 3818 + 3863 ], "match_id": [ - 3818 + 3863 ], "started_at": [ - 3421 + 3466 ], "steam_id": [ - 169 + 173 ], "__typename": [ - 70 + 74 ] }, "v_player_map_losses_sum_fields": { "steam_id": [ - 169 + 173 ], "__typename": [ - 70 + 74 ] }, "v_player_map_losses_var_pop_fields": { @@ -98272,7 +99998,7 @@ export default { 29 ], "__typename": [ - 70 + 74 ] }, "v_player_map_losses_var_samp_fields": { @@ -98280,7 +100006,7 @@ export default { 29 ], "__typename": [ - 70 + 74 ] }, "v_player_map_losses_variance_fields": { @@ -98288,52 +100014,52 @@ export default { 29 ], "__typename": [ - 70 + 74 ] }, "v_player_map_wins": { "map": [ - 1344 + 1348 ], "map_id": [ - 3818 + 3863 ], "match": [ - 1826 + 1830 ], "match_id": [ - 3818 + 3863 ], "started_at": [ - 3421 + 3466 ], "steam_id": [ - 169 + 173 ], "__typename": [ - 70 + 74 ] }, "v_player_map_wins_aggregate": { "aggregate": [ - 4131 + 4176 ], "nodes": [ - 4129 + 4174 ], "__typename": [ - 70 + 74 ] }, "v_player_map_wins_aggregate_fields": { "avg": [ - 4132 + 4177 ], "count": [ 38, { "columns": [ - 4137, + 4182, "[v_player_map_wins_select_column!]" ], "distinct": [ @@ -98342,34 +100068,34 @@ export default { } ], "max": [ - 4134 + 4179 ], "min": [ - 4135 + 4180 ], "stddev": [ - 4138 + 4183 ], "stddev_pop": [ - 4139 + 4184 ], "stddev_samp": [ - 4140 + 4185 ], "sum": [ - 4143 + 4188 ], "var_pop": [ - 4144 + 4189 ], "var_samp": [ - 4145 + 4190 ], "variance": [ - 4146 + 4191 ], "__typename": [ - 70 + 74 ] }, "v_player_map_wins_avg_fields": { @@ -98377,96 +100103,96 @@ export default { 29 ], "__typename": [ - 70 + 74 ] }, "v_player_map_wins_bool_exp": { "_and": [ - 4133 + 4178 ], "_not": [ - 4133 + 4178 ], "_or": [ - 4133 + 4178 ], "map": [ - 1353 + 1357 ], "map_id": [ - 3820 + 3865 ], "match": [ - 1835 + 1839 ], "match_id": [ - 3820 + 3865 ], "started_at": [ - 3422 + 3467 ], "steam_id": [ - 171 + 175 ], "__typename": [ - 70 + 74 ] }, "v_player_map_wins_max_fields": { "map_id": [ - 3818 + 3863 ], "match_id": [ - 3818 + 3863 ], "started_at": [ - 3421 + 3466 ], "steam_id": [ - 169 + 173 ], "__typename": [ - 70 + 74 ] }, "v_player_map_wins_min_fields": { "map_id": [ - 3818 + 3863 ], "match_id": [ - 3818 + 3863 ], "started_at": [ - 3421 + 3466 ], "steam_id": [ - 169 + 173 ], "__typename": [ - 70 + 74 ] }, "v_player_map_wins_order_by": { "map": [ - 1363 + 1367 ], "map_id": [ - 2011 + 2015 ], "match": [ - 1846 + 1850 ], "match_id": [ - 2011 + 2015 ], "started_at": [ - 2011 + 2015 ], "steam_id": [ - 2011 + 2015 ], "__typename": [ - 70 + 74 ] }, "v_player_map_wins_select_column": {}, @@ -98475,7 +100201,7 @@ export default { 29 ], "__typename": [ - 70 + 74 ] }, "v_player_map_wins_stddev_pop_fields": { @@ -98483,7 +100209,7 @@ export default { 29 ], "__typename": [ - 70 + 74 ] }, "v_player_map_wins_stddev_samp_fields": { @@ -98491,43 +100217,43 @@ export default { 29 ], "__typename": [ - 70 + 74 ] }, "v_player_map_wins_stream_cursor_input": { "initial_value": [ - 4142 + 4187 ], "ordering": [ - 224 + 228 ], "__typename": [ - 70 + 74 ] }, "v_player_map_wins_stream_cursor_value_input": { "map_id": [ - 3818 + 3863 ], "match_id": [ - 3818 + 3863 ], "started_at": [ - 3421 + 3466 ], "steam_id": [ - 169 + 173 ], "__typename": [ - 70 + 74 ] }, "v_player_map_wins_sum_fields": { "steam_id": [ - 169 + 173 ], "__typename": [ - 70 + 74 ] }, "v_player_map_wins_var_pop_fields": { @@ -98535,7 +100261,7 @@ export default { 29 ], "__typename": [ - 70 + 74 ] }, "v_player_map_wins_var_samp_fields": { @@ -98543,7 +100269,7 @@ export default { 29 ], "__typename": [ - 70 + 74 ] }, "v_player_map_wins_variance_fields": { @@ -98551,67 +100277,67 @@ export default { 29 ], "__typename": [ - 70 + 74 ] }, "v_player_match_head_to_head": { "attacked": [ - 2878 + 2914 ], "attacked_steam_id": [ - 169 + 173 ], "attacker": [ - 2878 + 2914 ], "attacker_steam_id": [ - 169 + 173 ], "damage_dealt": [ 38 ], "flash_count": [ - 169 + 173 ], "headshot_kills": [ - 169 + 173 ], "hits": [ - 169 + 173 ], "kills": [ - 169 + 173 ], "match": [ - 1826 + 1830 ], "match_id": [ - 3818 + 3863 ], "__typename": [ - 70 + 74 ] }, "v_player_match_head_to_head_aggregate": { "aggregate": [ - 4149 + 4194 ], "nodes": [ - 4147 + 4192 ], "__typename": [ - 70 + 74 ] }, "v_player_match_head_to_head_aggregate_fields": { "avg": [ - 4150 + 4195 ], "count": [ 38, { "columns": [ - 4155, + 4200, "[v_player_match_head_to_head_select_column!]" ], "distinct": [ @@ -98620,34 +100346,34 @@ export default { } ], "max": [ - 4152 + 4197 ], "min": [ - 4153 + 4198 ], "stddev": [ - 4156 + 4201 ], "stddev_pop": [ - 4157 + 4202 ], "stddev_samp": [ - 4158 + 4203 ], "sum": [ - 4161 + 4206 ], "var_pop": [ - 4162 + 4207 ], "var_samp": [ - 4163 + 4208 ], "variance": [ - 4164 + 4209 ], "__typename": [ - 70 + 74 ] }, "v_player_match_head_to_head_avg_fields": { @@ -98673,150 +100399,150 @@ export default { 29 ], "__typename": [ - 70 + 74 ] }, "v_player_match_head_to_head_bool_exp": { "_and": [ - 4151 + 4196 ], "_not": [ - 4151 + 4196 ], "_or": [ - 4151 + 4196 ], "attacked": [ - 2882 + 2918 ], "attacked_steam_id": [ - 171 + 175 ], "attacker": [ - 2882 + 2918 ], "attacker_steam_id": [ - 171 + 175 ], "damage_dealt": [ 39 ], "flash_count": [ - 171 + 175 ], "headshot_kills": [ - 171 + 175 ], "hits": [ - 171 + 175 ], "kills": [ - 171 + 175 ], "match": [ - 1835 + 1839 ], "match_id": [ - 3820 + 3865 ], "__typename": [ - 70 + 74 ] }, "v_player_match_head_to_head_max_fields": { "attacked_steam_id": [ - 169 + 173 ], "attacker_steam_id": [ - 169 + 173 ], "damage_dealt": [ 38 ], "flash_count": [ - 169 + 173 ], "headshot_kills": [ - 169 + 173 ], "hits": [ - 169 + 173 ], "kills": [ - 169 + 173 ], "match_id": [ - 3818 + 3863 ], "__typename": [ - 70 + 74 ] }, "v_player_match_head_to_head_min_fields": { "attacked_steam_id": [ - 169 + 173 ], "attacker_steam_id": [ - 169 + 173 ], "damage_dealt": [ 38 ], "flash_count": [ - 169 + 173 ], "headshot_kills": [ - 169 + 173 ], "hits": [ - 169 + 173 ], "kills": [ - 169 + 173 ], "match_id": [ - 3818 + 3863 ], "__typename": [ - 70 + 74 ] }, "v_player_match_head_to_head_order_by": { "attacked": [ - 2891 + 2927 ], "attacked_steam_id": [ - 2011 + 2015 ], "attacker": [ - 2891 + 2927 ], "attacker_steam_id": [ - 2011 + 2015 ], "damage_dealt": [ - 2011 + 2015 ], "flash_count": [ - 2011 + 2015 ], "headshot_kills": [ - 2011 + 2015 ], "hits": [ - 2011 + 2015 ], "kills": [ - 2011 + 2015 ], "match": [ - 1846 + 1850 ], "match_id": [ - 2011 + 2015 ], "__typename": [ - 70 + 74 ] }, "v_player_match_head_to_head_select_column": {}, @@ -98843,7 +100569,7 @@ export default { 29 ], "__typename": [ - 70 + 74 ] }, "v_player_match_head_to_head_stddev_pop_fields": { @@ -98869,7 +100595,7 @@ export default { 29 ], "__typename": [ - 70 + 74 ] }, "v_player_match_head_to_head_stddev_samp_fields": { @@ -98895,73 +100621,73 @@ export default { 29 ], "__typename": [ - 70 + 74 ] }, "v_player_match_head_to_head_stream_cursor_input": { "initial_value": [ - 4160 + 4205 ], "ordering": [ - 224 + 228 ], "__typename": [ - 70 + 74 ] }, "v_player_match_head_to_head_stream_cursor_value_input": { "attacked_steam_id": [ - 169 + 173 ], "attacker_steam_id": [ - 169 + 173 ], "damage_dealt": [ 38 ], "flash_count": [ - 169 + 173 ], "headshot_kills": [ - 169 + 173 ], "hits": [ - 169 + 173 ], "kills": [ - 169 + 173 ], "match_id": [ - 3818 + 3863 ], "__typename": [ - 70 + 74 ] }, "v_player_match_head_to_head_sum_fields": { "attacked_steam_id": [ - 169 + 173 ], "attacker_steam_id": [ - 169 + 173 ], "damage_dealt": [ 38 ], "flash_count": [ - 169 + 173 ], "headshot_kills": [ - 169 + 173 ], "hits": [ - 169 + 173 ], "kills": [ - 169 + 173 ], "__typename": [ - 70 + 74 ] }, "v_player_match_head_to_head_var_pop_fields": { @@ -98987,7 +100713,7 @@ export default { 29 ], "__typename": [ - 70 + 74 ] }, "v_player_match_head_to_head_var_samp_fields": { @@ -99013,7 +100739,7 @@ export default { 29 ], "__typename": [ - 70 + 74 ] }, "v_player_match_head_to_head_variance_fields": { @@ -99039,98 +100765,98 @@ export default { 29 ], "__typename": [ - 70 + 74 ] }, "v_player_match_map_hltv": { "adr": [ - 2009 + 2013 ], "apr": [ - 2009 + 2013 ], "dpr": [ - 2009 + 2013 ], "hltv_rating": [ - 2009 + 2013 ], "kast_pct": [ - 2009 + 2013 ], "kpr": [ - 2009 + 2013 ], "match": [ - 1826 + 1830 ], "match_id": [ - 3818 + 3863 ], "match_map": [ - 1664 + 1668 ], "match_map_id": [ - 3818 + 3863 ], "player": [ - 2878 + 2914 ], "rounds_played": [ 38 ], "steam_id": [ - 169 + 173 ], "__typename": [ - 70 + 74 ] }, "v_player_match_map_hltv_aggregate": { "aggregate": [ - 4169 + 4214 ], "nodes": [ - 4165 + 4210 ], "__typename": [ - 70 + 74 ] }, "v_player_match_map_hltv_aggregate_bool_exp": { "count": [ - 4168 + 4213 ], "__typename": [ - 70 + 74 ] }, "v_player_match_map_hltv_aggregate_bool_exp_count": { "arguments": [ - 4183 + 4228 ], "distinct": [ 3 ], "filter": [ - 4174 + 4219 ], "predicate": [ 39 ], "__typename": [ - 70 + 74 ] }, "v_player_match_map_hltv_aggregate_fields": { "avg": [ - 4172 + 4217 ], "count": [ 38, { "columns": [ - 4183, + 4228, "[v_player_match_map_hltv_select_column!]" ], "distinct": [ @@ -99139,80 +100865,80 @@ export default { } ], "max": [ - 4177 + 4222 ], "min": [ - 4179 + 4224 ], "stddev": [ - 4185 + 4230 ], "stddev_pop": [ - 4187 + 4232 ], "stddev_samp": [ - 4189 + 4234 ], "sum": [ - 4193 + 4238 ], "var_pop": [ - 4196 + 4241 ], "var_samp": [ - 4198 + 4243 ], "variance": [ - 4200 + 4245 ], "__typename": [ - 70 + 74 ] }, "v_player_match_map_hltv_aggregate_order_by": { "avg": [ - 4173 + 4218 ], "count": [ - 2011 + 2015 ], "max": [ - 4178 + 4223 ], "min": [ - 4180 + 4225 ], "stddev": [ - 4186 + 4231 ], "stddev_pop": [ - 4188 + 4233 ], "stddev_samp": [ - 4190 + 4235 ], "sum": [ - 4194 + 4239 ], "var_pop": [ - 4197 + 4242 ], "var_samp": [ - 4199 + 4244 ], "variance": [ - 4201 + 4246 ], "__typename": [ - 70 + 74 ] }, "v_player_match_map_hltv_arr_rel_insert_input": { "data": [ - 4176 + 4221 ], "__typename": [ - 70 + 74 ] }, "v_player_match_map_hltv_avg_fields": { @@ -99241,302 +100967,302 @@ export default { 29 ], "__typename": [ - 70 + 74 ] }, "v_player_match_map_hltv_avg_order_by": { "adr": [ - 2011 + 2015 ], "apr": [ - 2011 + 2015 ], "dpr": [ - 2011 + 2015 ], "hltv_rating": [ - 2011 + 2015 ], "kast_pct": [ - 2011 + 2015 ], "kpr": [ - 2011 + 2015 ], "rounds_played": [ - 2011 + 2015 ], "steam_id": [ - 2011 + 2015 ], "__typename": [ - 70 + 74 ] }, "v_player_match_map_hltv_bool_exp": { "_and": [ - 4174 + 4219 ], "_not": [ - 4174 + 4219 ], "_or": [ - 4174 + 4219 ], "adr": [ - 2010 + 2014 ], "apr": [ - 2010 + 2014 ], "dpr": [ - 2010 + 2014 ], "hltv_rating": [ - 2010 + 2014 ], "kast_pct": [ - 2010 + 2014 ], "kpr": [ - 2010 + 2014 ], "match": [ - 1835 + 1839 ], "match_id": [ - 3820 + 3865 ], "match_map": [ - 1673 + 1677 ], "match_map_id": [ - 3820 + 3865 ], "player": [ - 2882 + 2918 ], "rounds_played": [ 39 ], "steam_id": [ - 171 + 175 ], "__typename": [ - 70 + 74 ] }, "v_player_match_map_hltv_inc_input": { "adr": [ - 2009 + 2013 ], "apr": [ - 2009 + 2013 ], "dpr": [ - 2009 + 2013 ], "hltv_rating": [ - 2009 + 2013 ], "kast_pct": [ - 2009 + 2013 ], "kpr": [ - 2009 + 2013 ], "rounds_played": [ 38 ], "steam_id": [ - 169 + 173 ], "__typename": [ - 70 + 74 ] }, "v_player_match_map_hltv_insert_input": { "adr": [ - 2009 + 2013 ], "apr": [ - 2009 + 2013 ], "dpr": [ - 2009 + 2013 ], "hltv_rating": [ - 2009 + 2013 ], "kast_pct": [ - 2009 + 2013 ], "kpr": [ - 2009 + 2013 ], "match": [ - 1844 + 1848 ], "match_id": [ - 3818 + 3863 ], "match_map": [ - 1682 + 1686 ], "match_map_id": [ - 3818 + 3863 ], "player": [ - 2889 + 2925 ], "rounds_played": [ 38 ], "steam_id": [ - 169 + 173 ], "__typename": [ - 70 + 74 ] }, "v_player_match_map_hltv_max_fields": { "adr": [ - 2009 + 2013 ], "apr": [ - 2009 + 2013 ], "dpr": [ - 2009 + 2013 ], "hltv_rating": [ - 2009 + 2013 ], "kast_pct": [ - 2009 + 2013 ], "kpr": [ - 2009 + 2013 ], "match_id": [ - 3818 + 3863 ], "match_map_id": [ - 3818 + 3863 ], "rounds_played": [ 38 ], "steam_id": [ - 169 + 173 ], "__typename": [ - 70 + 74 ] }, "v_player_match_map_hltv_max_order_by": { "adr": [ - 2011 + 2015 ], "apr": [ - 2011 + 2015 ], "dpr": [ - 2011 + 2015 ], "hltv_rating": [ - 2011 + 2015 ], "kast_pct": [ - 2011 + 2015 ], "kpr": [ - 2011 + 2015 ], "match_id": [ - 2011 + 2015 ], "match_map_id": [ - 2011 + 2015 ], "rounds_played": [ - 2011 + 2015 ], "steam_id": [ - 2011 + 2015 ], "__typename": [ - 70 + 74 ] }, "v_player_match_map_hltv_min_fields": { "adr": [ - 2009 + 2013 ], "apr": [ - 2009 + 2013 ], "dpr": [ - 2009 + 2013 ], "hltv_rating": [ - 2009 + 2013 ], "kast_pct": [ - 2009 + 2013 ], "kpr": [ - 2009 + 2013 ], "match_id": [ - 3818 + 3863 ], "match_map_id": [ - 3818 + 3863 ], "rounds_played": [ 38 ], "steam_id": [ - 169 + 173 ], "__typename": [ - 70 + 74 ] }, "v_player_match_map_hltv_min_order_by": { "adr": [ - 2011 + 2015 ], "apr": [ - 2011 + 2015 ], "dpr": [ - 2011 + 2015 ], "hltv_rating": [ - 2011 + 2015 ], "kast_pct": [ - 2011 + 2015 ], "kpr": [ - 2011 + 2015 ], "match_id": [ - 2011 + 2015 ], "match_map_id": [ - 2011 + 2015 ], "rounds_played": [ - 2011 + 2015 ], "steam_id": [ - 2011 + 2015 ], "__typename": [ - 70 + 74 ] }, "v_player_match_map_hltv_mutation_response": { @@ -99544,90 +101270,90 @@ export default { 38 ], "returning": [ - 4165 + 4210 ], "__typename": [ - 70 + 74 ] }, "v_player_match_map_hltv_order_by": { "adr": [ - 2011 + 2015 ], "apr": [ - 2011 + 2015 ], "dpr": [ - 2011 + 2015 ], "hltv_rating": [ - 2011 + 2015 ], "kast_pct": [ - 2011 + 2015 ], "kpr": [ - 2011 + 2015 ], "match": [ - 1846 + 1850 ], "match_id": [ - 2011 + 2015 ], "match_map": [ - 1684 + 1688 ], "match_map_id": [ - 2011 + 2015 ], "player": [ - 2891 + 2927 ], "rounds_played": [ - 2011 + 2015 ], "steam_id": [ - 2011 + 2015 ], "__typename": [ - 70 + 74 ] }, "v_player_match_map_hltv_select_column": {}, "v_player_match_map_hltv_set_input": { "adr": [ - 2009 + 2013 ], "apr": [ - 2009 + 2013 ], "dpr": [ - 2009 + 2013 ], "hltv_rating": [ - 2009 + 2013 ], "kast_pct": [ - 2009 + 2013 ], "kpr": [ - 2009 + 2013 ], "match_id": [ - 3818 + 3863 ], "match_map_id": [ - 3818 + 3863 ], "rounds_played": [ 38 ], "steam_id": [ - 169 + 173 ], "__typename": [ - 70 + 74 ] }, "v_player_match_map_hltv_stddev_fields": { @@ -99656,36 +101382,36 @@ export default { 29 ], "__typename": [ - 70 + 74 ] }, "v_player_match_map_hltv_stddev_order_by": { "adr": [ - 2011 + 2015 ], "apr": [ - 2011 + 2015 ], "dpr": [ - 2011 + 2015 ], "hltv_rating": [ - 2011 + 2015 ], "kast_pct": [ - 2011 + 2015 ], "kpr": [ - 2011 + 2015 ], "rounds_played": [ - 2011 + 2015 ], "steam_id": [ - 2011 + 2015 ], "__typename": [ - 70 + 74 ] }, "v_player_match_map_hltv_stddev_pop_fields": { @@ -99714,36 +101440,36 @@ export default { 29 ], "__typename": [ - 70 + 74 ] }, "v_player_match_map_hltv_stddev_pop_order_by": { "adr": [ - 2011 + 2015 ], "apr": [ - 2011 + 2015 ], "dpr": [ - 2011 + 2015 ], "hltv_rating": [ - 2011 + 2015 ], "kast_pct": [ - 2011 + 2015 ], "kpr": [ - 2011 + 2015 ], "rounds_played": [ - 2011 + 2015 ], "steam_id": [ - 2011 + 2015 ], "__typename": [ - 70 + 74 ] }, "v_player_match_map_hltv_stddev_samp_fields": { @@ -99772,154 +101498,154 @@ export default { 29 ], "__typename": [ - 70 + 74 ] }, "v_player_match_map_hltv_stddev_samp_order_by": { "adr": [ - 2011 + 2015 ], "apr": [ - 2011 + 2015 ], "dpr": [ - 2011 + 2015 ], "hltv_rating": [ - 2011 + 2015 ], "kast_pct": [ - 2011 + 2015 ], "kpr": [ - 2011 + 2015 ], "rounds_played": [ - 2011 + 2015 ], "steam_id": [ - 2011 + 2015 ], "__typename": [ - 70 + 74 ] }, "v_player_match_map_hltv_stream_cursor_input": { "initial_value": [ - 4192 + 4237 ], "ordering": [ - 224 + 228 ], "__typename": [ - 70 + 74 ] }, "v_player_match_map_hltv_stream_cursor_value_input": { "adr": [ - 2009 + 2013 ], "apr": [ - 2009 + 2013 ], "dpr": [ - 2009 + 2013 ], "hltv_rating": [ - 2009 + 2013 ], "kast_pct": [ - 2009 + 2013 ], "kpr": [ - 2009 + 2013 ], "match_id": [ - 3818 + 3863 ], "match_map_id": [ - 3818 + 3863 ], "rounds_played": [ 38 ], "steam_id": [ - 169 + 173 ], "__typename": [ - 70 + 74 ] }, "v_player_match_map_hltv_sum_fields": { "adr": [ - 2009 + 2013 ], "apr": [ - 2009 + 2013 ], "dpr": [ - 2009 + 2013 ], "hltv_rating": [ - 2009 + 2013 ], "kast_pct": [ - 2009 + 2013 ], "kpr": [ - 2009 + 2013 ], "rounds_played": [ 38 ], "steam_id": [ - 169 + 173 ], "__typename": [ - 70 + 74 ] }, "v_player_match_map_hltv_sum_order_by": { "adr": [ - 2011 + 2015 ], "apr": [ - 2011 + 2015 ], "dpr": [ - 2011 + 2015 ], "hltv_rating": [ - 2011 + 2015 ], "kast_pct": [ - 2011 + 2015 ], "kpr": [ - 2011 + 2015 ], "rounds_played": [ - 2011 + 2015 ], "steam_id": [ - 2011 + 2015 ], "__typename": [ - 70 + 74 ] }, "v_player_match_map_hltv_updates": { "_inc": [ - 4175 + 4220 ], "_set": [ - 4184 + 4229 ], "where": [ - 4174 + 4219 ], "__typename": [ - 70 + 74 ] }, "v_player_match_map_hltv_var_pop_fields": { @@ -99948,36 +101674,36 @@ export default { 29 ], "__typename": [ - 70 + 74 ] }, "v_player_match_map_hltv_var_pop_order_by": { "adr": [ - 2011 + 2015 ], "apr": [ - 2011 + 2015 ], "dpr": [ - 2011 + 2015 ], "hltv_rating": [ - 2011 + 2015 ], "kast_pct": [ - 2011 + 2015 ], "kpr": [ - 2011 + 2015 ], "rounds_played": [ - 2011 + 2015 ], "steam_id": [ - 2011 + 2015 ], "__typename": [ - 70 + 74 ] }, "v_player_match_map_hltv_var_samp_fields": { @@ -100006,36 +101732,36 @@ export default { 29 ], "__typename": [ - 70 + 74 ] }, "v_player_match_map_hltv_var_samp_order_by": { "adr": [ - 2011 + 2015 ], "apr": [ - 2011 + 2015 ], "dpr": [ - 2011 + 2015 ], "hltv_rating": [ - 2011 + 2015 ], "kast_pct": [ - 2011 + 2015 ], "kpr": [ - 2011 + 2015 ], "rounds_played": [ - 2011 + 2015 ], "steam_id": [ - 2011 + 2015 ], "__typename": [ - 70 + 74 ] }, "v_player_match_map_hltv_variance_fields": { @@ -100064,86 +101790,86 @@ export default { 29 ], "__typename": [ - 70 + 74 ] }, "v_player_match_map_hltv_variance_order_by": { "adr": [ - 2011 + 2015 ], "apr": [ - 2011 + 2015 ], "dpr": [ - 2011 + 2015 ], "hltv_rating": [ - 2011 + 2015 ], "kast_pct": [ - 2011 + 2015 ], "kpr": [ - 2011 + 2015 ], "rounds_played": [ - 2011 + 2015 ], "steam_id": [ - 2011 + 2015 ], "__typename": [ - 70 + 74 ] }, "v_player_match_map_roles": { "adr": [ - 2009 + 2013 ], "awp_kills": [ 38 ], "awp_share": [ - 2009 + 2013 ], "deaths": [ 38 ], "dpr": [ - 2009 + 2013 ], "entry_rate": [ - 2009 + 2013 ], "flash_assists": [ 38 ], "hltv_rating": [ - 2009 + 2013 ], "kast_pct": [ - 2009 + 2013 ], "kills": [ 38 ], "kpr": [ - 2009 + 2013 ], "lineup_id": [ - 3818 + 3863 ], "match": [ - 1826 + 1830 ], "match_id": [ - 3818 + 3863 ], "match_map": [ - 1664 + 1668 ], "match_map_id": [ - 3818 + 3863 ], "open_deaths": [ 38 @@ -100155,19 +101881,19 @@ export default { 38 ], "player": [ - 2878 + 2914 ], "role": [ - 70 + 74 ], "rounds": [ 38 ], "steam_id": [ - 169 + 173 ], "support_idx": [ - 2009 + 2013 ], "total_kills": [ 38 @@ -100182,29 +101908,29 @@ export default { 38 ], "__typename": [ - 70 + 74 ] }, "v_player_match_map_roles_aggregate": { "aggregate": [ - 4204 + 4249 ], "nodes": [ - 4202 + 4247 ], "__typename": [ - 70 + 74 ] }, "v_player_match_map_roles_aggregate_fields": { "avg": [ - 4205 + 4250 ], "count": [ 38, { "columns": [ - 4210, + 4255, "[v_player_match_map_roles_select_column!]" ], "distinct": [ @@ -100213,34 +101939,34 @@ export default { } ], "max": [ - 4207 + 4252 ], "min": [ - 4208 + 4253 ], "stddev": [ - 4211 + 4256 ], "stddev_pop": [ - 4212 + 4257 ], "stddev_samp": [ - 4213 + 4258 ], "sum": [ - 4216 + 4261 ], "var_pop": [ - 4217 + 4262 ], "var_samp": [ - 4218 + 4263 ], "variance": [ - 4219 + 4264 ], "__typename": [ - 70 + 74 ] }, "v_player_match_map_roles_avg_fields": { @@ -100308,66 +102034,66 @@ export default { 29 ], "__typename": [ - 70 + 74 ] }, "v_player_match_map_roles_bool_exp": { "_and": [ - 4206 + 4251 ], "_not": [ - 4206 + 4251 ], "_or": [ - 4206 + 4251 ], "adr": [ - 2010 + 2014 ], "awp_kills": [ 39 ], "awp_share": [ - 2010 + 2014 ], "deaths": [ 39 ], "dpr": [ - 2010 + 2014 ], "entry_rate": [ - 2010 + 2014 ], "flash_assists": [ 39 ], "hltv_rating": [ - 2010 + 2014 ], "kast_pct": [ - 2010 + 2014 ], "kills": [ 39 ], "kpr": [ - 2010 + 2014 ], "lineup_id": [ - 3820 + 3865 ], "match": [ - 1835 + 1839 ], "match_id": [ - 3820 + 3865 ], "match_map": [ - 1673 + 1677 ], "match_map_id": [ - 3820 + 3865 ], "open_deaths": [ 39 @@ -100379,19 +102105,19 @@ export default { 39 ], "player": [ - 2882 + 2918 ], "role": [ - 72 + 76 ], "rounds": [ 39 ], "steam_id": [ - 171 + 175 ], "support_idx": [ - 2010 + 2014 ], "total_kills": [ 39 @@ -100406,51 +102132,51 @@ export default { 39 ], "__typename": [ - 70 + 74 ] }, "v_player_match_map_roles_max_fields": { "adr": [ - 2009 + 2013 ], "awp_kills": [ 38 ], "awp_share": [ - 2009 + 2013 ], "deaths": [ 38 ], "dpr": [ - 2009 + 2013 ], "entry_rate": [ - 2009 + 2013 ], "flash_assists": [ 38 ], "hltv_rating": [ - 2009 + 2013 ], "kast_pct": [ - 2009 + 2013 ], "kills": [ 38 ], "kpr": [ - 2009 + 2013 ], "lineup_id": [ - 3818 + 3863 ], "match_id": [ - 3818 + 3863 ], "match_map_id": [ - 3818 + 3863 ], "open_deaths": [ 38 @@ -100462,16 +102188,16 @@ export default { 38 ], "role": [ - 70 + 74 ], "rounds": [ 38 ], "steam_id": [ - 169 + 173 ], "support_idx": [ - 2009 + 2013 ], "total_kills": [ 38 @@ -100486,51 +102212,51 @@ export default { 38 ], "__typename": [ - 70 + 74 ] }, "v_player_match_map_roles_min_fields": { "adr": [ - 2009 + 2013 ], "awp_kills": [ 38 ], "awp_share": [ - 2009 + 2013 ], "deaths": [ 38 ], "dpr": [ - 2009 + 2013 ], "entry_rate": [ - 2009 + 2013 ], "flash_assists": [ 38 ], "hltv_rating": [ - 2009 + 2013 ], "kast_pct": [ - 2009 + 2013 ], "kills": [ 38 ], "kpr": [ - 2009 + 2013 ], "lineup_id": [ - 3818 + 3863 ], "match_id": [ - 3818 + 3863 ], "match_map_id": [ - 3818 + 3863 ], "open_deaths": [ 38 @@ -100542,16 +102268,16 @@ export default { 38 ], "role": [ - 70 + 74 ], "rounds": [ 38 ], "steam_id": [ - 169 + 173 ], "support_idx": [ - 2009 + 2013 ], "total_kills": [ 38 @@ -100566,96 +102292,96 @@ export default { 38 ], "__typename": [ - 70 + 74 ] }, "v_player_match_map_roles_order_by": { "adr": [ - 2011 + 2015 ], "awp_kills": [ - 2011 + 2015 ], "awp_share": [ - 2011 + 2015 ], "deaths": [ - 2011 + 2015 ], "dpr": [ - 2011 + 2015 ], "entry_rate": [ - 2011 + 2015 ], "flash_assists": [ - 2011 + 2015 ], "hltv_rating": [ - 2011 + 2015 ], "kast_pct": [ - 2011 + 2015 ], "kills": [ - 2011 + 2015 ], "kpr": [ - 2011 + 2015 ], "lineup_id": [ - 2011 + 2015 ], "match": [ - 1846 + 1850 ], "match_id": [ - 2011 + 2015 ], "match_map": [ - 1684 + 1688 ], "match_map_id": [ - 2011 + 2015 ], "open_deaths": [ - 2011 + 2015 ], "open_kills": [ - 2011 + 2015 ], "opening_attempts": [ - 2011 + 2015 ], "player": [ - 2891 + 2927 ], "role": [ - 2011 + 2015 ], "rounds": [ - 2011 + 2015 ], "steam_id": [ - 2011 + 2015 ], "support_idx": [ - 2011 + 2015 ], "total_kills": [ - 2011 + 2015 ], "trade_kill_successes": [ - 2011 + 2015 ], "traded_death_successes": [ - 2011 + 2015 ], "util_damage": [ - 2011 + 2015 ], "__typename": [ - 70 + 74 ] }, "v_player_match_map_roles_select_column": {}, @@ -100724,7 +102450,7 @@ export default { 29 ], "__typename": [ - 70 + 74 ] }, "v_player_match_map_roles_stddev_pop_fields": { @@ -100792,7 +102518,7 @@ export default { 29 ], "__typename": [ - 70 + 74 ] }, "v_player_match_map_roles_stddev_samp_fields": { @@ -100860,62 +102586,62 @@ export default { 29 ], "__typename": [ - 70 + 74 ] }, "v_player_match_map_roles_stream_cursor_input": { "initial_value": [ - 4215 + 4260 ], "ordering": [ - 224 + 228 ], "__typename": [ - 70 + 74 ] }, "v_player_match_map_roles_stream_cursor_value_input": { "adr": [ - 2009 + 2013 ], "awp_kills": [ 38 ], "awp_share": [ - 2009 + 2013 ], "deaths": [ 38 ], "dpr": [ - 2009 + 2013 ], "entry_rate": [ - 2009 + 2013 ], "flash_assists": [ 38 ], "hltv_rating": [ - 2009 + 2013 ], "kast_pct": [ - 2009 + 2013 ], "kills": [ 38 ], "kpr": [ - 2009 + 2013 ], "lineup_id": [ - 3818 + 3863 ], "match_id": [ - 3818 + 3863 ], "match_map_id": [ - 3818 + 3863 ], "open_deaths": [ 38 @@ -100927,16 +102653,16 @@ export default { 38 ], "role": [ - 70 + 74 ], "rounds": [ 38 ], "steam_id": [ - 169 + 173 ], "support_idx": [ - 2009 + 2013 ], "total_kills": [ 38 @@ -100951,42 +102677,42 @@ export default { 38 ], "__typename": [ - 70 + 74 ] }, "v_player_match_map_roles_sum_fields": { "adr": [ - 2009 + 2013 ], "awp_kills": [ 38 ], "awp_share": [ - 2009 + 2013 ], "deaths": [ 38 ], "dpr": [ - 2009 + 2013 ], "entry_rate": [ - 2009 + 2013 ], "flash_assists": [ 38 ], "hltv_rating": [ - 2009 + 2013 ], "kast_pct": [ - 2009 + 2013 ], "kills": [ 38 ], "kpr": [ - 2009 + 2013 ], "open_deaths": [ 38 @@ -101001,10 +102727,10 @@ export default { 38 ], "steam_id": [ - 169 + 173 ], "support_idx": [ - 2009 + 2013 ], "total_kills": [ 38 @@ -101019,7 +102745,7 @@ export default { 38 ], "__typename": [ - 70 + 74 ] }, "v_player_match_map_roles_var_pop_fields": { @@ -101087,7 +102813,7 @@ export default { 29 ], "__typename": [ - 70 + 74 ] }, "v_player_match_map_roles_var_samp_fields": { @@ -101155,7 +102881,7 @@ export default { 29 ], "__typename": [ - 70 + 74 ] }, "v_player_match_map_roles_variance_fields": { @@ -101223,7 +102949,7 @@ export default { 29 ], "__typename": [ - 70 + 74 ] }, "v_player_match_performance": { @@ -101237,56 +102963,56 @@ export default { 38 ], "map": [ - 1344 + 1348 ], "map_id": [ - 3818 + 3863 ], "match": [ - 1826 + 1830 ], "match_created_at": [ - 3421 + 3466 ], "match_id": [ - 3818 + 3863 ], "match_result": [ - 70 + 74 ], "player_steam_id": [ - 169 + 173 ], "source": [ - 70 + 74 ], "type": [ - 70 + 74 ], "__typename": [ - 70 + 74 ] }, "v_player_match_performance_aggregate": { "aggregate": [ - 4222 + 4267 ], "nodes": [ - 4220 + 4265 ], "__typename": [ - 70 + 74 ] }, "v_player_match_performance_aggregate_fields": { "avg": [ - 4223 + 4268 ], "count": [ 38, { "columns": [ - 4228, + 4273, "[v_player_match_performance_select_column!]" ], "distinct": [ @@ -101295,34 +103021,34 @@ export default { } ], "max": [ - 4225 + 4270 ], "min": [ - 4226 + 4271 ], "stddev": [ - 4229 + 4274 ], "stddev_pop": [ - 4230 + 4275 ], "stddev_samp": [ - 4231 + 4276 ], "sum": [ - 4234 + 4279 ], "var_pop": [ - 4235 + 4280 ], "var_samp": [ - 4236 + 4281 ], "variance": [ - 4237 + 4282 ], "__typename": [ - 70 + 74 ] }, "v_player_match_performance_avg_fields": { @@ -101339,18 +103065,18 @@ export default { 29 ], "__typename": [ - 70 + 74 ] }, "v_player_match_performance_bool_exp": { "_and": [ - 4224 + 4269 ], "_not": [ - 4224 + 4269 ], "_or": [ - 4224 + 4269 ], "assists": [ 39 @@ -101362,34 +103088,34 @@ export default { 39 ], "map": [ - 1353 + 1357 ], "map_id": [ - 3820 + 3865 ], "match": [ - 1835 + 1839 ], "match_created_at": [ - 3422 + 3467 ], "match_id": [ - 3820 + 3865 ], "match_result": [ - 72 + 76 ], "player_steam_id": [ - 171 + 175 ], "source": [ - 72 + 76 ], "type": [ - 72 + 76 ], "__typename": [ - 70 + 74 ] }, "v_player_match_performance_max_fields": { @@ -101403,28 +103129,28 @@ export default { 38 ], "map_id": [ - 3818 + 3863 ], "match_created_at": [ - 3421 + 3466 ], "match_id": [ - 3818 + 3863 ], "match_result": [ - 70 + 74 ], "player_steam_id": [ - 169 + 173 ], "source": [ - 70 + 74 ], "type": [ - 70 + 74 ], "__typename": [ - 70 + 74 ] }, "v_player_match_performance_min_fields": { @@ -101438,69 +103164,69 @@ export default { 38 ], "map_id": [ - 3818 + 3863 ], "match_created_at": [ - 3421 + 3466 ], "match_id": [ - 3818 + 3863 ], "match_result": [ - 70 + 74 ], "player_steam_id": [ - 169 + 173 ], "source": [ - 70 + 74 ], "type": [ - 70 + 74 ], "__typename": [ - 70 + 74 ] }, "v_player_match_performance_order_by": { "assists": [ - 2011 + 2015 ], "deaths": [ - 2011 + 2015 ], "kills": [ - 2011 + 2015 ], "map": [ - 1363 + 1367 ], "map_id": [ - 2011 + 2015 ], "match": [ - 1846 + 1850 ], "match_created_at": [ - 2011 + 2015 ], "match_id": [ - 2011 + 2015 ], "match_result": [ - 2011 + 2015 ], "player_steam_id": [ - 2011 + 2015 ], "source": [ - 2011 + 2015 ], "type": [ - 2011 + 2015 ], "__typename": [ - 70 + 74 ] }, "v_player_match_performance_select_column": {}, @@ -101518,7 +103244,7 @@ export default { 29 ], "__typename": [ - 70 + 74 ] }, "v_player_match_performance_stddev_pop_fields": { @@ -101535,7 +103261,7 @@ export default { 29 ], "__typename": [ - 70 + 74 ] }, "v_player_match_performance_stddev_samp_fields": { @@ -101552,18 +103278,18 @@ export default { 29 ], "__typename": [ - 70 + 74 ] }, "v_player_match_performance_stream_cursor_input": { "initial_value": [ - 4233 + 4278 ], "ordering": [ - 224 + 228 ], "__typename": [ - 70 + 74 ] }, "v_player_match_performance_stream_cursor_value_input": { @@ -101577,28 +103303,28 @@ export default { 38 ], "map_id": [ - 3818 + 3863 ], "match_created_at": [ - 3421 + 3466 ], "match_id": [ - 3818 + 3863 ], "match_result": [ - 70 + 74 ], "player_steam_id": [ - 169 + 173 ], "source": [ - 70 + 74 ], "type": [ - 70 + 74 ], "__typename": [ - 70 + 74 ] }, "v_player_match_performance_sum_fields": { @@ -101612,10 +103338,10 @@ export default { 38 ], "player_steam_id": [ - 169 + 173 ], "__typename": [ - 70 + 74 ] }, "v_player_match_performance_var_pop_fields": { @@ -101632,7 +103358,7 @@ export default { 29 ], "__typename": [ - 70 + 74 ] }, "v_player_match_performance_var_samp_fields": { @@ -101649,7 +103375,7 @@ export default { 29 ], "__typename": [ - 70 + 74 ] }, "v_player_match_performance_variance_fields": { @@ -101666,64 +103392,64 @@ export default { 29 ], "__typename": [ - 70 + 74 ] }, "v_player_match_rating": { "adr": [ - 2009 + 2013 ], "dpr": [ - 2009 + 2013 ], "hltv_rating": [ - 2009 + 2013 ], "kast_pct": [ - 2009 + 2013 ], "kpr": [ - 2009 + 2013 ], "match": [ - 1826 + 1830 ], "match_id": [ - 3818 + 3863 ], "player": [ - 2878 + 2914 ], "rounds_played": [ 38 ], "steam_id": [ - 169 + 173 ], "__typename": [ - 70 + 74 ] }, "v_player_match_rating_aggregate": { "aggregate": [ - 4240 + 4285 ], "nodes": [ - 4238 + 4283 ], "__typename": [ - 70 + 74 ] }, "v_player_match_rating_aggregate_fields": { "avg": [ - 4241 + 4286 ], "count": [ 38, { "columns": [ - 4246, + 4291, "[v_player_match_rating_select_column!]" ], "distinct": [ @@ -101732,34 +103458,34 @@ export default { } ], "max": [ - 4243 + 4288 ], "min": [ - 4244 + 4289 ], "stddev": [ - 4247 + 4292 ], "stddev_pop": [ - 4248 + 4293 ], "stddev_samp": [ - 4249 + 4294 ], "sum": [ - 4252 + 4297 ], "var_pop": [ - 4253 + 4298 ], "var_samp": [ - 4254 + 4299 ], "variance": [ - 4255 + 4300 ], "__typename": [ - 70 + 74 ] }, "v_player_match_rating_avg_fields": { @@ -101785,144 +103511,144 @@ export default { 29 ], "__typename": [ - 70 + 74 ] }, "v_player_match_rating_bool_exp": { "_and": [ - 4242 + 4287 ], "_not": [ - 4242 + 4287 ], "_or": [ - 4242 + 4287 ], "adr": [ - 2010 + 2014 ], "dpr": [ - 2010 + 2014 ], "hltv_rating": [ - 2010 + 2014 ], "kast_pct": [ - 2010 + 2014 ], "kpr": [ - 2010 + 2014 ], "match": [ - 1835 + 1839 ], "match_id": [ - 3820 + 3865 ], "player": [ - 2882 + 2918 ], "rounds_played": [ 39 ], "steam_id": [ - 171 + 175 ], "__typename": [ - 70 + 74 ] }, "v_player_match_rating_max_fields": { "adr": [ - 2009 + 2013 ], "dpr": [ - 2009 + 2013 ], "hltv_rating": [ - 2009 + 2013 ], "kast_pct": [ - 2009 + 2013 ], "kpr": [ - 2009 + 2013 ], "match_id": [ - 3818 + 3863 ], "rounds_played": [ 38 ], "steam_id": [ - 169 + 173 ], "__typename": [ - 70 + 74 ] }, "v_player_match_rating_min_fields": { "adr": [ - 2009 + 2013 ], "dpr": [ - 2009 + 2013 ], "hltv_rating": [ - 2009 + 2013 ], "kast_pct": [ - 2009 + 2013 ], "kpr": [ - 2009 + 2013 ], "match_id": [ - 3818 + 3863 ], "rounds_played": [ 38 ], "steam_id": [ - 169 + 173 ], "__typename": [ - 70 + 74 ] }, "v_player_match_rating_order_by": { "adr": [ - 2011 + 2015 ], "dpr": [ - 2011 + 2015 ], "hltv_rating": [ - 2011 + 2015 ], "kast_pct": [ - 2011 + 2015 ], "kpr": [ - 2011 + 2015 ], "match": [ - 1846 + 1850 ], "match_id": [ - 2011 + 2015 ], "player": [ - 2891 + 2927 ], "rounds_played": [ - 2011 + 2015 ], "steam_id": [ - 2011 + 2015 ], "__typename": [ - 70 + 74 ] }, "v_player_match_rating_select_column": {}, @@ -101949,7 +103675,7 @@ export default { 29 ], "__typename": [ - 70 + 74 ] }, "v_player_match_rating_stddev_pop_fields": { @@ -101975,7 +103701,7 @@ export default { 29 ], "__typename": [ - 70 + 74 ] }, "v_player_match_rating_stddev_samp_fields": { @@ -102001,73 +103727,73 @@ export default { 29 ], "__typename": [ - 70 + 74 ] }, "v_player_match_rating_stream_cursor_input": { "initial_value": [ - 4251 + 4296 ], "ordering": [ - 224 + 228 ], "__typename": [ - 70 + 74 ] }, "v_player_match_rating_stream_cursor_value_input": { "adr": [ - 2009 + 2013 ], "dpr": [ - 2009 + 2013 ], "hltv_rating": [ - 2009 + 2013 ], "kast_pct": [ - 2009 + 2013 ], "kpr": [ - 2009 + 2013 ], "match_id": [ - 3818 + 3863 ], "rounds_played": [ 38 ], "steam_id": [ - 169 + 173 ], "__typename": [ - 70 + 74 ] }, "v_player_match_rating_sum_fields": { "adr": [ - 2009 + 2013 ], "dpr": [ - 2009 + 2013 ], "hltv_rating": [ - 2009 + 2013 ], "kast_pct": [ - 2009 + 2013 ], "kpr": [ - 2009 + 2013 ], "rounds_played": [ 38 ], "steam_id": [ - 169 + 173 ], "__typename": [ - 70 + 74 ] }, "v_player_match_rating_var_pop_fields": { @@ -102093,7 +103819,7 @@ export default { 29 ], "__typename": [ - 70 + 74 ] }, "v_player_match_rating_var_samp_fields": { @@ -102119,7 +103845,7 @@ export default { 29 ], "__typename": [ - 70 + 74 ] }, "v_player_match_rating_variance_fields": { @@ -102145,71 +103871,71 @@ export default { 29 ], "__typename": [ - 70 + 74 ] }, "v_player_multi_kills": { "attacker_steam_id": [ - 169 + 173 ], "kills": [ - 169 + 173 ], "match_id": [ - 3818 + 3863 ], "round": [ 38 ], "__typename": [ - 70 + 74 ] }, "v_player_multi_kills_aggregate": { "aggregate": [ - 4260 + 4305 ], "nodes": [ - 4256 + 4301 ], "__typename": [ - 70 + 74 ] }, "v_player_multi_kills_aggregate_bool_exp": { "count": [ - 4259 + 4304 ], "__typename": [ - 70 + 74 ] }, "v_player_multi_kills_aggregate_bool_exp_count": { "arguments": [ - 4272 + 4317 ], "distinct": [ 3 ], "filter": [ - 4265 + 4310 ], "predicate": [ 39 ], "__typename": [ - 70 + 74 ] }, "v_player_multi_kills_aggregate_fields": { "avg": [ - 4263 + 4308 ], "count": [ 38, { "columns": [ - 4272, + 4317, "[v_player_multi_kills_select_column!]" ], "distinct": [ @@ -102218,80 +103944,80 @@ export default { } ], "max": [ - 4267 + 4312 ], "min": [ - 4269 + 4314 ], "stddev": [ - 4273 + 4318 ], "stddev_pop": [ - 4275 + 4320 ], "stddev_samp": [ - 4277 + 4322 ], "sum": [ - 4281 + 4326 ], "var_pop": [ - 4283 + 4328 ], "var_samp": [ - 4285 + 4330 ], "variance": [ - 4287 + 4332 ], "__typename": [ - 70 + 74 ] }, "v_player_multi_kills_aggregate_order_by": { "avg": [ - 4264 + 4309 ], "count": [ - 2011 + 2015 ], "max": [ - 4268 + 4313 ], "min": [ - 4270 + 4315 ], "stddev": [ - 4274 + 4319 ], "stddev_pop": [ - 4276 + 4321 ], "stddev_samp": [ - 4278 + 4323 ], "sum": [ - 4282 + 4327 ], "var_pop": [ - 4284 + 4329 ], "var_samp": [ - 4286 + 4331 ], "variance": [ - 4288 + 4333 ], "__typename": [ - 70 + 74 ] }, "v_player_multi_kills_arr_rel_insert_input": { "data": [ - 4266 + 4311 ], "__typename": [ - 70 + 74 ] }, "v_player_multi_kills_avg_fields": { @@ -102305,149 +104031,149 @@ export default { 29 ], "__typename": [ - 70 + 74 ] }, "v_player_multi_kills_avg_order_by": { "attacker_steam_id": [ - 2011 + 2015 ], "kills": [ - 2011 + 2015 ], "round": [ - 2011 + 2015 ], "__typename": [ - 70 + 74 ] }, "v_player_multi_kills_bool_exp": { "_and": [ - 4265 + 4310 ], "_not": [ - 4265 + 4310 ], "_or": [ - 4265 + 4310 ], "attacker_steam_id": [ - 171 + 175 ], "kills": [ - 171 + 175 ], "match_id": [ - 3820 + 3865 ], "round": [ 39 ], "__typename": [ - 70 + 74 ] }, "v_player_multi_kills_insert_input": { "attacker_steam_id": [ - 169 + 173 ], "kills": [ - 169 + 173 ], "match_id": [ - 3818 + 3863 ], "round": [ 38 ], "__typename": [ - 70 + 74 ] }, "v_player_multi_kills_max_fields": { "attacker_steam_id": [ - 169 + 173 ], "kills": [ - 169 + 173 ], "match_id": [ - 3818 + 3863 ], "round": [ 38 ], "__typename": [ - 70 + 74 ] }, "v_player_multi_kills_max_order_by": { "attacker_steam_id": [ - 2011 + 2015 ], "kills": [ - 2011 + 2015 ], "match_id": [ - 2011 + 2015 ], "round": [ - 2011 + 2015 ], "__typename": [ - 70 + 74 ] }, "v_player_multi_kills_min_fields": { "attacker_steam_id": [ - 169 + 173 ], "kills": [ - 169 + 173 ], "match_id": [ - 3818 + 3863 ], "round": [ 38 ], "__typename": [ - 70 + 74 ] }, "v_player_multi_kills_min_order_by": { "attacker_steam_id": [ - 2011 + 2015 ], "kills": [ - 2011 + 2015 ], "match_id": [ - 2011 + 2015 ], "round": [ - 2011 + 2015 ], "__typename": [ - 70 + 74 ] }, "v_player_multi_kills_order_by": { "attacker_steam_id": [ - 2011 + 2015 ], "kills": [ - 2011 + 2015 ], "match_id": [ - 2011 + 2015 ], "round": [ - 2011 + 2015 ], "__typename": [ - 70 + 74 ] }, "v_player_multi_kills_select_column": {}, @@ -102462,21 +104188,21 @@ export default { 29 ], "__typename": [ - 70 + 74 ] }, "v_player_multi_kills_stddev_order_by": { "attacker_steam_id": [ - 2011 + 2015 ], "kills": [ - 2011 + 2015 ], "round": [ - 2011 + 2015 ], "__typename": [ - 70 + 74 ] }, "v_player_multi_kills_stddev_pop_fields": { @@ -102490,21 +104216,21 @@ export default { 29 ], "__typename": [ - 70 + 74 ] }, "v_player_multi_kills_stddev_pop_order_by": { "attacker_steam_id": [ - 2011 + 2015 ], "kills": [ - 2011 + 2015 ], "round": [ - 2011 + 2015 ], "__typename": [ - 70 + 74 ] }, "v_player_multi_kills_stddev_samp_fields": { @@ -102518,77 +104244,77 @@ export default { 29 ], "__typename": [ - 70 + 74 ] }, "v_player_multi_kills_stddev_samp_order_by": { "attacker_steam_id": [ - 2011 + 2015 ], "kills": [ - 2011 + 2015 ], "round": [ - 2011 + 2015 ], "__typename": [ - 70 + 74 ] }, "v_player_multi_kills_stream_cursor_input": { "initial_value": [ - 4280 + 4325 ], "ordering": [ - 224 + 228 ], "__typename": [ - 70 + 74 ] }, "v_player_multi_kills_stream_cursor_value_input": { "attacker_steam_id": [ - 169 + 173 ], "kills": [ - 169 + 173 ], "match_id": [ - 3818 + 3863 ], "round": [ 38 ], "__typename": [ - 70 + 74 ] }, "v_player_multi_kills_sum_fields": { "attacker_steam_id": [ - 169 + 173 ], "kills": [ - 169 + 173 ], "round": [ 38 ], "__typename": [ - 70 + 74 ] }, "v_player_multi_kills_sum_order_by": { "attacker_steam_id": [ - 2011 + 2015 ], "kills": [ - 2011 + 2015 ], "round": [ - 2011 + 2015 ], "__typename": [ - 70 + 74 ] }, "v_player_multi_kills_var_pop_fields": { @@ -102602,21 +104328,21 @@ export default { 29 ], "__typename": [ - 70 + 74 ] }, "v_player_multi_kills_var_pop_order_by": { "attacker_steam_id": [ - 2011 + 2015 ], "kills": [ - 2011 + 2015 ], "round": [ - 2011 + 2015 ], "__typename": [ - 70 + 74 ] }, "v_player_multi_kills_var_samp_fields": { @@ -102630,21 +104356,21 @@ export default { 29 ], "__typename": [ - 70 + 74 ] }, "v_player_multi_kills_var_samp_order_by": { "attacker_steam_id": [ - 2011 + 2015 ], "kills": [ - 2011 + 2015 ], "round": [ - 2011 + 2015 ], "__typename": [ - 70 + 74 ] }, "v_player_multi_kills_variance_fields": { @@ -102658,66 +104384,66 @@ export default { 29 ], "__typename": [ - 70 + 74 ] }, "v_player_multi_kills_variance_order_by": { "attacker_steam_id": [ - 2011 + 2015 ], "kills": [ - 2011 + 2015 ], "round": [ - 2011 + 2015 ], "__typename": [ - 70 + 74 ] }, "v_player_weapon_damage": { "damage": [ - 169 + 173 ], "hits": [ - 169 + 173 ], "player_steam_id": [ - 169 + 173 ], "source": [ - 70 + 74 ], "type": [ - 70 + 74 ], "with": [ - 70 + 74 ], "__typename": [ - 70 + 74 ] }, "v_player_weapon_damage_aggregate": { "aggregate": [ - 4291 + 4336 ], "nodes": [ - 4289 + 4334 ], "__typename": [ - 70 + 74 ] }, "v_player_weapon_damage_aggregate_fields": { "avg": [ - 4292 + 4337 ], "count": [ 38, { "columns": [ - 4297, + 4342, "[v_player_weapon_damage_select_column!]" ], "distinct": [ @@ -102726,34 +104452,34 @@ export default { } ], "max": [ - 4294 + 4339 ], "min": [ - 4295 + 4340 ], "stddev": [ - 4298 + 4343 ], "stddev_pop": [ - 4299 + 4344 ], "stddev_samp": [ - 4300 + 4345 ], "sum": [ - 4303 + 4348 ], "var_pop": [ - 4304 + 4349 ], "var_samp": [ - 4305 + 4350 ], "variance": [ - 4306 + 4351 ], "__typename": [ - 70 + 74 ] }, "v_player_weapon_damage_avg_fields": { @@ -102767,108 +104493,108 @@ export default { 29 ], "__typename": [ - 70 + 74 ] }, "v_player_weapon_damage_bool_exp": { "_and": [ - 4293 + 4338 ], "_not": [ - 4293 + 4338 ], "_or": [ - 4293 + 4338 ], "damage": [ - 171 + 175 ], "hits": [ - 171 + 175 ], "player_steam_id": [ - 171 + 175 ], "source": [ - 72 + 76 ], "type": [ - 72 + 76 ], "with": [ - 72 + 76 ], "__typename": [ - 70 + 74 ] }, "v_player_weapon_damage_max_fields": { "damage": [ - 169 + 173 ], "hits": [ - 169 + 173 ], "player_steam_id": [ - 169 + 173 ], "source": [ - 70 + 74 ], "type": [ - 70 + 74 ], "with": [ - 70 + 74 ], "__typename": [ - 70 + 74 ] }, "v_player_weapon_damage_min_fields": { "damage": [ - 169 + 173 ], "hits": [ - 169 + 173 ], "player_steam_id": [ - 169 + 173 ], "source": [ - 70 + 74 ], "type": [ - 70 + 74 ], "with": [ - 70 + 74 ], "__typename": [ - 70 + 74 ] }, "v_player_weapon_damage_order_by": { "damage": [ - 2011 + 2015 ], "hits": [ - 2011 + 2015 ], "player_steam_id": [ - 2011 + 2015 ], "source": [ - 2011 + 2015 ], "type": [ - 2011 + 2015 ], "with": [ - 2011 + 2015 ], "__typename": [ - 70 + 74 ] }, "v_player_weapon_damage_select_column": {}, @@ -102883,7 +104609,7 @@ export default { 29 ], "__typename": [ - 70 + 74 ] }, "v_player_weapon_damage_stddev_pop_fields": { @@ -102897,7 +104623,7 @@ export default { 29 ], "__typename": [ - 70 + 74 ] }, "v_player_weapon_damage_stddev_samp_fields": { @@ -102911,55 +104637,55 @@ export default { 29 ], "__typename": [ - 70 + 74 ] }, "v_player_weapon_damage_stream_cursor_input": { "initial_value": [ - 4302 + 4347 ], "ordering": [ - 224 + 228 ], "__typename": [ - 70 + 74 ] }, "v_player_weapon_damage_stream_cursor_value_input": { "damage": [ - 169 + 173 ], "hits": [ - 169 + 173 ], "player_steam_id": [ - 169 + 173 ], "source": [ - 70 + 74 ], "type": [ - 70 + 74 ], "with": [ - 70 + 74 ], "__typename": [ - 70 + 74 ] }, "v_player_weapon_damage_sum_fields": { "damage": [ - 169 + 173 ], "hits": [ - 169 + 173 ], "player_steam_id": [ - 169 + 173 ], "__typename": [ - 70 + 74 ] }, "v_player_weapon_damage_var_pop_fields": { @@ -102973,7 +104699,7 @@ export default { 29 ], "__typename": [ - 70 + 74 ] }, "v_player_weapon_damage_var_samp_fields": { @@ -102987,7 +104713,7 @@ export default { 29 ], "__typename": [ - 70 + 74 ] }, "v_player_weapon_damage_variance_fields": { @@ -103001,52 +104727,52 @@ export default { 29 ], "__typename": [ - 70 + 74 ] }, "v_player_weapon_kills": { "kill_count": [ - 169 + 173 ], "player_steam_id": [ - 169 + 173 ], "rounds": [ - 169 + 173 ], "source": [ - 70 + 74 ], "type": [ - 70 + 74 ], "with": [ - 70 + 74 ], "__typename": [ - 70 + 74 ] }, "v_player_weapon_kills_aggregate": { "aggregate": [ - 4309 + 4354 ], "nodes": [ - 4307 + 4352 ], "__typename": [ - 70 + 74 ] }, "v_player_weapon_kills_aggregate_fields": { "avg": [ - 4310 + 4355 ], "count": [ 38, { "columns": [ - 4315, + 4360, "[v_player_weapon_kills_select_column!]" ], "distinct": [ @@ -103055,34 +104781,34 @@ export default { } ], "max": [ - 4312 + 4357 ], "min": [ - 4313 + 4358 ], "stddev": [ - 4316 + 4361 ], "stddev_pop": [ - 4317 + 4362 ], "stddev_samp": [ - 4318 + 4363 ], "sum": [ - 4321 + 4366 ], "var_pop": [ - 4322 + 4367 ], "var_samp": [ - 4323 + 4368 ], "variance": [ - 4324 + 4369 ], "__typename": [ - 70 + 74 ] }, "v_player_weapon_kills_avg_fields": { @@ -103096,108 +104822,108 @@ export default { 29 ], "__typename": [ - 70 + 74 ] }, "v_player_weapon_kills_bool_exp": { "_and": [ - 4311 + 4356 ], "_not": [ - 4311 + 4356 ], "_or": [ - 4311 + 4356 ], "kill_count": [ - 171 + 175 ], "player_steam_id": [ - 171 + 175 ], "rounds": [ - 171 + 175 ], "source": [ - 72 + 76 ], "type": [ - 72 + 76 ], "with": [ - 72 + 76 ], "__typename": [ - 70 + 74 ] }, "v_player_weapon_kills_max_fields": { "kill_count": [ - 169 + 173 ], "player_steam_id": [ - 169 + 173 ], "rounds": [ - 169 + 173 ], "source": [ - 70 + 74 ], "type": [ - 70 + 74 ], "with": [ - 70 + 74 ], "__typename": [ - 70 + 74 ] }, "v_player_weapon_kills_min_fields": { "kill_count": [ - 169 + 173 ], "player_steam_id": [ - 169 + 173 ], "rounds": [ - 169 + 173 ], "source": [ - 70 + 74 ], "type": [ - 70 + 74 ], "with": [ - 70 + 74 ], "__typename": [ - 70 + 74 ] }, "v_player_weapon_kills_order_by": { "kill_count": [ - 2011 + 2015 ], "player_steam_id": [ - 2011 + 2015 ], "rounds": [ - 2011 + 2015 ], "source": [ - 2011 + 2015 ], "type": [ - 2011 + 2015 ], "with": [ - 2011 + 2015 ], "__typename": [ - 70 + 74 ] }, "v_player_weapon_kills_select_column": {}, @@ -103212,7 +104938,7 @@ export default { 29 ], "__typename": [ - 70 + 74 ] }, "v_player_weapon_kills_stddev_pop_fields": { @@ -103226,7 +104952,7 @@ export default { 29 ], "__typename": [ - 70 + 74 ] }, "v_player_weapon_kills_stddev_samp_fields": { @@ -103240,55 +104966,55 @@ export default { 29 ], "__typename": [ - 70 + 74 ] }, "v_player_weapon_kills_stream_cursor_input": { "initial_value": [ - 4320 + 4365 ], "ordering": [ - 224 + 228 ], "__typename": [ - 70 + 74 ] }, "v_player_weapon_kills_stream_cursor_value_input": { "kill_count": [ - 169 + 173 ], "player_steam_id": [ - 169 + 173 ], "rounds": [ - 169 + 173 ], "source": [ - 70 + 74 ], "type": [ - 70 + 74 ], "with": [ - 70 + 74 ], "__typename": [ - 70 + 74 ] }, "v_player_weapon_kills_sum_fields": { "kill_count": [ - 169 + 173 ], "player_steam_id": [ - 169 + 173 ], "rounds": [ - 169 + 173 ], "__typename": [ - 70 + 74 ] }, "v_player_weapon_kills_var_pop_fields": { @@ -103302,7 +105028,7 @@ export default { 29 ], "__typename": [ - 70 + 74 ] }, "v_player_weapon_kills_var_samp_fields": { @@ -103316,7 +105042,7 @@ export default { 29 ], "__typename": [ - 70 + 74 ] }, "v_player_weapon_kills_variance_fields": { @@ -103330,7 +105056,7 @@ export default { 29 ], "__typename": [ - 70 + 74 ] }, "v_pool_maps": { @@ -103338,110 +105064,110 @@ export default { 3 ], "id": [ - 3818 + 3863 ], "label": [ - 70 + 74 ], "map_pool": [ - 1325 + 1329 ], "map_pool_id": [ - 3818 + 3863 ], "name": [ - 70 + 74 ], "patch": [ - 70 + 74 ], "poster": [ - 70 + 74 ], "type": [ - 70 + 74 ], "workshop_map_id": [ - 70 + 74 ], "__typename": [ - 70 + 74 ] }, "v_pool_maps_aggregate": { "aggregate": [ - 4331 + 4376 ], "nodes": [ - 4325 + 4370 ], "__typename": [ - 70 + 74 ] }, "v_pool_maps_aggregate_bool_exp": { "bool_and": [ - 4328 + 4373 ], "bool_or": [ - 4329 + 4374 ], "count": [ - 4330 + 4375 ], "__typename": [ - 70 + 74 ] }, "v_pool_maps_aggregate_bool_exp_bool_and": { "arguments": [ - 4343 + 4388 ], "distinct": [ 3 ], "filter": [ - 4334 + 4379 ], "predicate": [ 4 ], "__typename": [ - 70 + 74 ] }, "v_pool_maps_aggregate_bool_exp_bool_or": { "arguments": [ - 4344 + 4389 ], "distinct": [ 3 ], "filter": [ - 4334 + 4379 ], "predicate": [ 4 ], "__typename": [ - 70 + 74 ] }, "v_pool_maps_aggregate_bool_exp_count": { "arguments": [ - 4342 + 4387 ], "distinct": [ 3 ], "filter": [ - 4334 + 4379 ], "predicate": [ 39 ], "__typename": [ - 70 + 74 ] }, "v_pool_maps_aggregate_fields": { @@ -103449,7 +105175,7 @@ export default { 38, { "columns": [ - 4342, + 4387, "[v_pool_maps_select_column!]" ], "distinct": [ @@ -103458,79 +105184,79 @@ export default { } ], "max": [ - 4336 + 4381 ], "min": [ - 4338 + 4383 ], "__typename": [ - 70 + 74 ] }, "v_pool_maps_aggregate_order_by": { "count": [ - 2011 + 2015 ], "max": [ - 4337 + 4382 ], "min": [ - 4339 + 4384 ], "__typename": [ - 70 + 74 ] }, "v_pool_maps_arr_rel_insert_input": { "data": [ - 4335 + 4380 ], "__typename": [ - 70 + 74 ] }, "v_pool_maps_bool_exp": { "_and": [ - 4334 + 4379 ], "_not": [ - 4334 + 4379 ], "_or": [ - 4334 + 4379 ], "active_pool": [ 4 ], "id": [ - 3820 + 3865 ], "label": [ - 72 + 76 ], "map_pool": [ - 1328 + 1332 ], "map_pool_id": [ - 3820 + 3865 ], "name": [ - 72 + 76 ], "patch": [ - 72 + 76 ], "poster": [ - 72 + 76 ], "type": [ - 72 + 76 ], "workshop_map_id": [ - 72 + 76 ], "__typename": [ - 70 + 74 ] }, "v_pool_maps_insert_input": { @@ -103538,150 +105264,150 @@ export default { 3 ], "id": [ - 3818 + 3863 ], "label": [ - 70 + 74 ], "map_pool": [ - 1334 + 1338 ], "map_pool_id": [ - 3818 + 3863 ], "name": [ - 70 + 74 ], "patch": [ - 70 + 74 ], "poster": [ - 70 + 74 ], "type": [ - 70 + 74 ], "workshop_map_id": [ - 70 + 74 ], "__typename": [ - 70 + 74 ] }, "v_pool_maps_max_fields": { "id": [ - 3818 + 3863 ], "label": [ - 70 + 74 ], "map_pool_id": [ - 3818 + 3863 ], "name": [ - 70 + 74 ], "patch": [ - 70 + 74 ], "poster": [ - 70 + 74 ], "type": [ - 70 + 74 ], "workshop_map_id": [ - 70 + 74 ], "__typename": [ - 70 + 74 ] }, "v_pool_maps_max_order_by": { "id": [ - 2011 + 2015 ], "label": [ - 2011 + 2015 ], "map_pool_id": [ - 2011 + 2015 ], "name": [ - 2011 + 2015 ], "patch": [ - 2011 + 2015 ], "poster": [ - 2011 + 2015 ], "type": [ - 2011 + 2015 ], "workshop_map_id": [ - 2011 + 2015 ], "__typename": [ - 70 + 74 ] }, "v_pool_maps_min_fields": { "id": [ - 3818 + 3863 ], "label": [ - 70 + 74 ], "map_pool_id": [ - 3818 + 3863 ], "name": [ - 70 + 74 ], "patch": [ - 70 + 74 ], "poster": [ - 70 + 74 ], "type": [ - 70 + 74 ], "workshop_map_id": [ - 70 + 74 ], "__typename": [ - 70 + 74 ] }, "v_pool_maps_min_order_by": { "id": [ - 2011 + 2015 ], "label": [ - 2011 + 2015 ], "map_pool_id": [ - 2011 + 2015 ], "name": [ - 2011 + 2015 ], "patch": [ - 2011 + 2015 ], "poster": [ - 2011 + 2015 ], "type": [ - 2011 + 2015 ], "workshop_map_id": [ - 2011 + 2015 ], "__typename": [ - 70 + 74 ] }, "v_pool_maps_mutation_response": { @@ -103689,45 +105415,45 @@ export default { 38 ], "returning": [ - 4325 + 4370 ], "__typename": [ - 70 + 74 ] }, "v_pool_maps_order_by": { "active_pool": [ - 2011 + 2015 ], "id": [ - 2011 + 2015 ], "label": [ - 2011 + 2015 ], "map_pool": [ - 1336 + 1340 ], "map_pool_id": [ - 2011 + 2015 ], "name": [ - 2011 + 2015 ], "patch": [ - 2011 + 2015 ], "poster": [ - 2011 + 2015 ], "type": [ - 2011 + 2015 ], "workshop_map_id": [ - 2011 + 2015 ], "__typename": [ - 70 + 74 ] }, "v_pool_maps_select_column": {}, @@ -103738,42 +105464,42 @@ export default { 3 ], "id": [ - 3818 + 3863 ], "label": [ - 70 + 74 ], "map_pool_id": [ - 3818 + 3863 ], "name": [ - 70 + 74 ], "patch": [ - 70 + 74 ], "poster": [ - 70 + 74 ], "type": [ - 70 + 74 ], "workshop_map_id": [ - 70 + 74 ], "__typename": [ - 70 + 74 ] }, "v_pool_maps_stream_cursor_input": { "initial_value": [ - 4347 + 4392 ], "ordering": [ - 224 + 228 ], "__typename": [ - 70 + 74 ] }, "v_pool_maps_stream_cursor_value_input": { @@ -103781,42 +105507,42 @@ export default { 3 ], "id": [ - 3818 + 3863 ], "label": [ - 70 + 74 ], "map_pool_id": [ - 3818 + 3863 ], "name": [ - 70 + 74 ], "patch": [ - 70 + 74 ], "poster": [ - 70 + 74 ], "type": [ - 70 + 74 ], "workshop_map_id": [ - 70 + 74 ], "__typename": [ - 70 + 74 ] }, "v_pool_maps_updates": { "_set": [ - 4345 + 4390 ], "where": [ - 4334 + 4379 ], "__typename": [ - 70 + 74 ] }, "v_steam_account_pool_status": { @@ -103833,29 +105559,29 @@ export default { 38 ], "__typename": [ - 70 + 74 ] }, "v_steam_account_pool_status_aggregate": { "aggregate": [ - 4351 + 4396 ], "nodes": [ - 4349 + 4394 ], "__typename": [ - 70 + 74 ] }, "v_steam_account_pool_status_aggregate_fields": { "avg": [ - 4352 + 4397 ], "count": [ 38, { "columns": [ - 4357, + 4402, "[v_steam_account_pool_status_select_column!]" ], "distinct": [ @@ -103864,34 +105590,34 @@ export default { } ], "max": [ - 4354 + 4399 ], "min": [ - 4355 + 4400 ], "stddev": [ - 4358 + 4403 ], "stddev_pop": [ - 4359 + 4404 ], "stddev_samp": [ - 4360 + 4405 ], "sum": [ - 4363 + 4408 ], "var_pop": [ - 4364 + 4409 ], "var_samp": [ - 4365 + 4410 ], "variance": [ - 4366 + 4411 ], "__typename": [ - 70 + 74 ] }, "v_steam_account_pool_status_avg_fields": { @@ -103908,18 +105634,18 @@ export default { 29 ], "__typename": [ - 70 + 74 ] }, "v_steam_account_pool_status_bool_exp": { "_and": [ - 4353 + 4398 ], "_not": [ - 4353 + 4398 ], "_or": [ - 4353 + 4398 ], "busy_accounts": [ 39 @@ -103934,7 +105660,7 @@ export default { 39 ], "__typename": [ - 70 + 74 ] }, "v_steam_account_pool_status_max_fields": { @@ -103951,7 +105677,7 @@ export default { 38 ], "__typename": [ - 70 + 74 ] }, "v_steam_account_pool_status_min_fields": { @@ -103968,24 +105694,24 @@ export default { 38 ], "__typename": [ - 70 + 74 ] }, "v_steam_account_pool_status_order_by": { "busy_accounts": [ - 2011 + 2015 ], "free_accounts": [ - 2011 + 2015 ], "id": [ - 2011 + 2015 ], "total_accounts": [ - 2011 + 2015 ], "__typename": [ - 70 + 74 ] }, "v_steam_account_pool_status_select_column": {}, @@ -104003,7 +105729,7 @@ export default { 29 ], "__typename": [ - 70 + 74 ] }, "v_steam_account_pool_status_stddev_pop_fields": { @@ -104020,7 +105746,7 @@ export default { 29 ], "__typename": [ - 70 + 74 ] }, "v_steam_account_pool_status_stddev_samp_fields": { @@ -104037,18 +105763,18 @@ export default { 29 ], "__typename": [ - 70 + 74 ] }, "v_steam_account_pool_status_stream_cursor_input": { "initial_value": [ - 4362 + 4407 ], "ordering": [ - 224 + 228 ], "__typename": [ - 70 + 74 ] }, "v_steam_account_pool_status_stream_cursor_value_input": { @@ -104065,7 +105791,7 @@ export default { 38 ], "__typename": [ - 70 + 74 ] }, "v_steam_account_pool_status_sum_fields": { @@ -104082,7 +105808,7 @@ export default { 38 ], "__typename": [ - 70 + 74 ] }, "v_steam_account_pool_status_var_pop_fields": { @@ -104099,7 +105825,7 @@ export default { 29 ], "__typename": [ - 70 + 74 ] }, "v_steam_account_pool_status_var_samp_fields": { @@ -104116,7 +105842,7 @@ export default { 29 ], "__typename": [ - 70 + 74 ] }, "v_steam_account_pool_status_variance_fields": { @@ -104133,7 +105859,7 @@ export default { 29 ], "__typename": [ - 70 + 74 ] }, "v_team_ranks": { @@ -104144,7 +105870,7 @@ export default { 38 ], "avg_faceit_level": [ - 1084 + 1088 ], "avg_premier": [ 38 @@ -104156,38 +105882,38 @@ export default { 38 ], "roster_size": [ - 169 + 173 ], "team": [ - 3378 + 3423 ], "team_id": [ - 3818 + 3863 ], "__typename": [ - 70 + 74 ] }, "v_team_ranks_aggregate": { "aggregate": [ - 4369 + 4414 ], "nodes": [ - 4367 + 4412 ], "__typename": [ - 70 + 74 ] }, "v_team_ranks_aggregate_fields": { "avg": [ - 4370 + 4415 ], "count": [ 38, { "columns": [ - 4377, + 4422, "[v_team_ranks_select_column!]" ], "distinct": [ @@ -104196,34 +105922,34 @@ export default { } ], "max": [ - 4373 + 4418 ], "min": [ - 4374 + 4419 ], "stddev": [ - 4378 + 4423 ], "stddev_pop": [ - 4379 + 4424 ], "stddev_samp": [ - 4380 + 4425 ], "sum": [ - 4383 + 4428 ], "var_pop": [ - 4384 + 4429 ], "var_samp": [ - 4385 + 4430 ], "variance": [ - 4386 + 4431 ], "__typename": [ - 70 + 74 ] }, "v_team_ranks_avg_fields": { @@ -104249,18 +105975,18 @@ export default { 29 ], "__typename": [ - 70 + 74 ] }, "v_team_ranks_bool_exp": { "_and": [ - 4371 + 4416 ], "_not": [ - 4371 + 4416 ], "_or": [ - 4371 + 4416 ], "avg_elo": [ 39 @@ -104269,7 +105995,7 @@ export default { 39 ], "avg_faceit_level": [ - 1085 + 1089 ], "avg_premier": [ 39 @@ -104281,16 +106007,16 @@ export default { 39 ], "roster_size": [ - 171 + 175 ], "team": [ - 3387 + 3432 ], "team_id": [ - 3820 + 3865 ], "__typename": [ - 70 + 74 ] }, "v_team_ranks_insert_input": { @@ -104301,7 +106027,7 @@ export default { 38 ], "avg_faceit_level": [ - 1084 + 1088 ], "avg_premier": [ 38 @@ -104313,16 +106039,16 @@ export default { 38 ], "roster_size": [ - 169 + 173 ], "team": [ - 3396 + 3441 ], "team_id": [ - 3818 + 3863 ], "__typename": [ - 70 + 74 ] }, "v_team_ranks_max_fields": { @@ -104333,7 +106059,7 @@ export default { 38 ], "avg_faceit_level": [ - 1084 + 1088 ], "avg_premier": [ 38 @@ -104345,13 +106071,13 @@ export default { 38 ], "roster_size": [ - 169 + 173 ], "team_id": [ - 3818 + 3863 ], "__typename": [ - 70 + 74 ] }, "v_team_ranks_min_fields": { @@ -104362,7 +106088,7 @@ export default { 38 ], "avg_faceit_level": [ - 1084 + 1088 ], "avg_premier": [ 38 @@ -104374,53 +106100,53 @@ export default { 38 ], "roster_size": [ - 169 + 173 ], "team_id": [ - 3818 + 3863 ], "__typename": [ - 70 + 74 ] }, "v_team_ranks_obj_rel_insert_input": { "data": [ - 4372 + 4417 ], "__typename": [ - 70 + 74 ] }, "v_team_ranks_order_by": { "avg_elo": [ - 2011 + 2015 ], "avg_faceit_elo": [ - 2011 + 2015 ], "avg_faceit_level": [ - 2011 + 2015 ], "avg_premier": [ - 2011 + 2015 ], "max_elo": [ - 2011 + 2015 ], "min_elo": [ - 2011 + 2015 ], "roster_size": [ - 2011 + 2015 ], "team": [ - 3398 + 3443 ], "team_id": [ - 2011 + 2015 ], "__typename": [ - 70 + 74 ] }, "v_team_ranks_select_column": {}, @@ -104447,7 +106173,7 @@ export default { 29 ], "__typename": [ - 70 + 74 ] }, "v_team_ranks_stddev_pop_fields": { @@ -104473,7 +106199,7 @@ export default { 29 ], "__typename": [ - 70 + 74 ] }, "v_team_ranks_stddev_samp_fields": { @@ -104499,18 +106225,18 @@ export default { 29 ], "__typename": [ - 70 + 74 ] }, "v_team_ranks_stream_cursor_input": { "initial_value": [ - 4382 + 4427 ], "ordering": [ - 224 + 228 ], "__typename": [ - 70 + 74 ] }, "v_team_ranks_stream_cursor_value_input": { @@ -104521,7 +106247,7 @@ export default { 38 ], "avg_faceit_level": [ - 1084 + 1088 ], "avg_premier": [ 38 @@ -104533,13 +106259,13 @@ export default { 38 ], "roster_size": [ - 169 + 173 ], "team_id": [ - 3818 + 3863 ], "__typename": [ - 70 + 74 ] }, "v_team_ranks_sum_fields": { @@ -104550,7 +106276,7 @@ export default { 38 ], "avg_faceit_level": [ - 1084 + 1088 ], "avg_premier": [ 38 @@ -104562,10 +106288,10 @@ export default { 38 ], "roster_size": [ - 169 + 173 ], "__typename": [ - 70 + 74 ] }, "v_team_ranks_var_pop_fields": { @@ -104591,7 +106317,7 @@ export default { 29 ], "__typename": [ - 70 + 74 ] }, "v_team_ranks_var_samp_fields": { @@ -104617,7 +106343,7 @@ export default { 29 ], "__typename": [ - 70 + 74 ] }, "v_team_ranks_variance_fields": { @@ -104643,52 +106369,52 @@ export default { 29 ], "__typename": [ - 70 + 74 ] }, "v_team_reputation": { "late_cancels": [ - 169 + 173 ], "no_shows": [ - 169 + 173 ], "reliability_pct": [ - 2009 + 2013 ], "scrims_completed": [ - 169 + 173 ], "team": [ - 3378 + 3423 ], "team_id": [ - 3818 + 3863 ], "__typename": [ - 70 + 74 ] }, "v_team_reputation_aggregate": { "aggregate": [ - 4389 + 4434 ], "nodes": [ - 4387 + 4432 ], "__typename": [ - 70 + 74 ] }, "v_team_reputation_aggregate_fields": { "avg": [ - 4390 + 4435 ], "count": [ 38, { "columns": [ - 4397, + 4442, "[v_team_reputation_select_column!]" ], "distinct": [ @@ -104697,34 +106423,34 @@ export default { } ], "max": [ - 4393 + 4438 ], "min": [ - 4394 + 4439 ], "stddev": [ - 4398 + 4443 ], "stddev_pop": [ - 4399 + 4444 ], "stddev_samp": [ - 4400 + 4445 ], "sum": [ - 4403 + 4448 ], "var_pop": [ - 4404 + 4449 ], "var_samp": [ - 4405 + 4450 ], "variance": [ - 4406 + 4451 ], "__typename": [ - 70 + 74 ] }, "v_team_reputation_avg_fields": { @@ -104741,133 +106467,133 @@ export default { 29 ], "__typename": [ - 70 + 74 ] }, "v_team_reputation_bool_exp": { "_and": [ - 4391 + 4436 ], "_not": [ - 4391 + 4436 ], "_or": [ - 4391 + 4436 ], "late_cancels": [ - 171 + 175 ], "no_shows": [ - 171 + 175 ], "reliability_pct": [ - 2010 + 2014 ], "scrims_completed": [ - 171 + 175 ], "team": [ - 3387 + 3432 ], "team_id": [ - 3820 + 3865 ], "__typename": [ - 70 + 74 ] }, "v_team_reputation_insert_input": { "late_cancels": [ - 169 + 173 ], "no_shows": [ - 169 + 173 ], "reliability_pct": [ - 2009 + 2013 ], "scrims_completed": [ - 169 + 173 ], "team": [ - 3396 + 3441 ], "team_id": [ - 3818 + 3863 ], "__typename": [ - 70 + 74 ] }, "v_team_reputation_max_fields": { "late_cancels": [ - 169 + 173 ], "no_shows": [ - 169 + 173 ], "reliability_pct": [ - 2009 + 2013 ], "scrims_completed": [ - 169 + 173 ], "team_id": [ - 3818 + 3863 ], "__typename": [ - 70 + 74 ] }, "v_team_reputation_min_fields": { "late_cancels": [ - 169 + 173 ], "no_shows": [ - 169 + 173 ], "reliability_pct": [ - 2009 + 2013 ], "scrims_completed": [ - 169 + 173 ], "team_id": [ - 3818 + 3863 ], "__typename": [ - 70 + 74 ] }, "v_team_reputation_obj_rel_insert_input": { "data": [ - 4392 + 4437 ], "__typename": [ - 70 + 74 ] }, "v_team_reputation_order_by": { "late_cancels": [ - 2011 + 2015 ], "no_shows": [ - 2011 + 2015 ], "reliability_pct": [ - 2011 + 2015 ], "scrims_completed": [ - 2011 + 2015 ], "team": [ - 3398 + 3443 ], "team_id": [ - 2011 + 2015 ], "__typename": [ - 70 + 74 ] }, "v_team_reputation_select_column": {}, @@ -104885,7 +106611,7 @@ export default { 29 ], "__typename": [ - 70 + 74 ] }, "v_team_reputation_stddev_pop_fields": { @@ -104902,7 +106628,7 @@ export default { 29 ], "__typename": [ - 70 + 74 ] }, "v_team_reputation_stddev_samp_fields": { @@ -104919,55 +106645,55 @@ export default { 29 ], "__typename": [ - 70 + 74 ] }, "v_team_reputation_stream_cursor_input": { "initial_value": [ - 4402 + 4447 ], "ordering": [ - 224 + 228 ], "__typename": [ - 70 + 74 ] }, "v_team_reputation_stream_cursor_value_input": { "late_cancels": [ - 169 + 173 ], "no_shows": [ - 169 + 173 ], "reliability_pct": [ - 2009 + 2013 ], "scrims_completed": [ - 169 + 173 ], "team_id": [ - 3818 + 3863 ], "__typename": [ - 70 + 74 ] }, "v_team_reputation_sum_fields": { "late_cancels": [ - 169 + 173 ], "no_shows": [ - 169 + 173 ], "reliability_pct": [ - 2009 + 2013 ], "scrims_completed": [ - 169 + 173 ], "__typename": [ - 70 + 74 ] }, "v_team_reputation_var_pop_fields": { @@ -104984,7 +106710,7 @@ export default { 29 ], "__typename": [ - 70 + 74 ] }, "v_team_reputation_var_samp_fields": { @@ -105001,7 +106727,7 @@ export default { 29 ], "__typename": [ - 70 + 74 ] }, "v_team_reputation_variance_fields": { @@ -105018,7 +106744,7 @@ export default { 29 ], "__typename": [ - 70 + 74 ] }, "v_team_stage_results": { @@ -105059,13 +106785,13 @@ export default { 38 ], "stage": [ - 3510 + 3555 ], "team": [ - 3643 + 3688 ], "team_kdr": [ - 1084 + 1088 ], "total_deaths": [ 38 @@ -105074,245 +106800,245 @@ export default { 38 ], "tournament_stage_id": [ - 3818 + 3863 ], "tournament_team_id": [ - 3818 + 3863 ], "wins": [ 38 ], "__typename": [ - 70 + 74 ] }, "v_team_stage_results_aggregate": { "aggregate": [ - 4421 + 4466 ], "nodes": [ - 4407 + 4452 ], "__typename": [ - 70 + 74 ] }, "v_team_stage_results_aggregate_bool_exp": { "avg": [ - 4410 + 4455 ], "corr": [ - 4411 + 4456 ], "count": [ - 4413 + 4458 ], "covar_samp": [ - 4414 + 4459 ], "max": [ - 4416 + 4461 ], "min": [ - 4417 + 4462 ], "stddev_samp": [ - 4418 + 4463 ], "sum": [ - 4419 + 4464 ], "var_samp": [ - 4420 + 4465 ], "__typename": [ - 70 + 74 ] }, "v_team_stage_results_aggregate_bool_exp_avg": { "arguments": [ - 4440 + 4485 ], "distinct": [ 3 ], "filter": [ - 4426 + 4471 ], "predicate": [ - 1085 + 1089 ], "__typename": [ - 70 + 74 ] }, "v_team_stage_results_aggregate_bool_exp_corr": { "arguments": [ - 4412 + 4457 ], "distinct": [ 3 ], "filter": [ - 4426 + 4471 ], "predicate": [ - 1085 + 1089 ], "__typename": [ - 70 + 74 ] }, "v_team_stage_results_aggregate_bool_exp_corr_arguments": { "X": [ - 4441 + 4486 ], "Y": [ - 4441 + 4486 ], "__typename": [ - 70 + 74 ] }, "v_team_stage_results_aggregate_bool_exp_count": { "arguments": [ - 4439 + 4484 ], "distinct": [ 3 ], "filter": [ - 4426 + 4471 ], "predicate": [ 39 ], "__typename": [ - 70 + 74 ] }, "v_team_stage_results_aggregate_bool_exp_covar_samp": { "arguments": [ - 4415 + 4460 ], "distinct": [ 3 ], "filter": [ - 4426 + 4471 ], "predicate": [ - 1085 + 1089 ], "__typename": [ - 70 + 74 ] }, "v_team_stage_results_aggregate_bool_exp_covar_samp_arguments": { "X": [ - 4442 + 4487 ], "Y": [ - 4442 + 4487 ], "__typename": [ - 70 + 74 ] }, "v_team_stage_results_aggregate_bool_exp_max": { "arguments": [ - 4443 + 4488 ], "distinct": [ 3 ], "filter": [ - 4426 + 4471 ], "predicate": [ - 1085 + 1089 ], "__typename": [ - 70 + 74 ] }, "v_team_stage_results_aggregate_bool_exp_min": { "arguments": [ - 4444 + 4489 ], "distinct": [ 3 ], "filter": [ - 4426 + 4471 ], "predicate": [ - 1085 + 1089 ], "__typename": [ - 70 + 74 ] }, "v_team_stage_results_aggregate_bool_exp_stddev_samp": { "arguments": [ - 4445 + 4490 ], "distinct": [ 3 ], "filter": [ - 4426 + 4471 ], "predicate": [ - 1085 + 1089 ], "__typename": [ - 70 + 74 ] }, "v_team_stage_results_aggregate_bool_exp_sum": { "arguments": [ - 4446 + 4491 ], "distinct": [ 3 ], "filter": [ - 4426 + 4471 ], "predicate": [ - 1085 + 1089 ], "__typename": [ - 70 + 74 ] }, "v_team_stage_results_aggregate_bool_exp_var_samp": { "arguments": [ - 4447 + 4492 ], "distinct": [ 3 ], "filter": [ - 4426 + 4471 ], "predicate": [ - 1085 + 1089 ], "__typename": [ - 70 + 74 ] }, "v_team_stage_results_aggregate_fields": { "avg": [ - 4424 + 4469 ], "count": [ 38, { "columns": [ - 4439, + 4484, "[v_team_stage_results_select_column!]" ], "distinct": [ @@ -105321,83 +107047,83 @@ export default { } ], "max": [ - 4430 + 4475 ], "min": [ - 4432 + 4477 ], "stddev": [ - 4449 + 4494 ], "stddev_pop": [ - 4451 + 4496 ], "stddev_samp": [ - 4453 + 4498 ], "sum": [ - 4457 + 4502 ], "var_pop": [ - 4461 + 4506 ], "var_samp": [ - 4463 + 4508 ], "variance": [ - 4465 + 4510 ], "__typename": [ - 70 + 74 ] }, "v_team_stage_results_aggregate_order_by": { "avg": [ - 4425 + 4470 ], "count": [ - 2011 + 2015 ], "max": [ - 4431 + 4476 ], "min": [ - 4433 + 4478 ], "stddev": [ - 4450 + 4495 ], "stddev_pop": [ - 4452 + 4497 ], "stddev_samp": [ - 4454 + 4499 ], "sum": [ - 4458 + 4503 ], "var_pop": [ - 4462 + 4507 ], "var_samp": [ - 4464 + 4509 ], "variance": [ - 4466 + 4511 ], "__typename": [ - 70 + 74 ] }, "v_team_stage_results_arr_rel_insert_input": { "data": [ - 4429 + 4474 ], "on_conflict": [ - 4436 + 4481 ], "__typename": [ - 70 + 74 ] }, "v_team_stage_results_avg_fields": { @@ -105450,71 +107176,71 @@ export default { 29 ], "__typename": [ - 70 + 74 ] }, "v_team_stage_results_avg_order_by": { "group_number": [ - 2011 + 2015 ], "head_to_head_match_wins": [ - 2011 + 2015 ], "head_to_head_rounds_won": [ - 2011 + 2015 ], "losses": [ - 2011 + 2015 ], "maps_lost": [ - 2011 + 2015 ], "maps_won": [ - 2011 + 2015 ], "matches_played": [ - 2011 + 2015 ], "matches_remaining": [ - 2011 + 2015 ], "placement": [ - 2011 + 2015 ], "rank": [ - 2011 + 2015 ], "rounds_lost": [ - 2011 + 2015 ], "rounds_won": [ - 2011 + 2015 ], "team_kdr": [ - 2011 + 2015 ], "total_deaths": [ - 2011 + 2015 ], "total_kills": [ - 2011 + 2015 ], "wins": [ - 2011 + 2015 ], "__typename": [ - 70 + 74 ] }, "v_team_stage_results_bool_exp": { "_and": [ - 4426 + 4471 ], "_not": [ - 4426 + 4471 ], "_or": [ - 4426 + 4471 ], "group_number": [ 39 @@ -105553,13 +107279,13 @@ export default { 39 ], "stage": [ - 3522 + 3567 ], "team": [ - 3652 + 3697 ], "team_kdr": [ - 1085 + 1089 ], "total_deaths": [ 39 @@ -105568,16 +107294,16 @@ export default { 39 ], "tournament_stage_id": [ - 3820 + 3865 ], "tournament_team_id": [ - 3820 + 3865 ], "wins": [ 39 ], "__typename": [ - 70 + 74 ] }, "v_team_stage_results_constraint": {}, @@ -105619,7 +107345,7 @@ export default { 38 ], "team_kdr": [ - 1084 + 1088 ], "total_deaths": [ 38 @@ -105631,7 +107357,7 @@ export default { 38 ], "__typename": [ - 70 + 74 ] }, "v_team_stage_results_insert_input": { @@ -105672,13 +107398,13 @@ export default { 38 ], "stage": [ - 3534 + 3579 ], "team": [ - 3661 + 3706 ], "team_kdr": [ - 1084 + 1088 ], "total_deaths": [ 38 @@ -105687,16 +107413,16 @@ export default { 38 ], "tournament_stage_id": [ - 3818 + 3863 ], "tournament_team_id": [ - 3818 + 3863 ], "wins": [ 38 ], "__typename": [ - 70 + 74 ] }, "v_team_stage_results_max_fields": { @@ -105737,7 +107463,7 @@ export default { 38 ], "team_kdr": [ - 1084 + 1088 ], "total_deaths": [ 38 @@ -105746,75 +107472,75 @@ export default { 38 ], "tournament_stage_id": [ - 3818 + 3863 ], "tournament_team_id": [ - 3818 + 3863 ], "wins": [ 38 ], "__typename": [ - 70 + 74 ] }, "v_team_stage_results_max_order_by": { "group_number": [ - 2011 + 2015 ], "head_to_head_match_wins": [ - 2011 + 2015 ], "head_to_head_rounds_won": [ - 2011 + 2015 ], "losses": [ - 2011 + 2015 ], "maps_lost": [ - 2011 + 2015 ], "maps_won": [ - 2011 + 2015 ], "matches_played": [ - 2011 + 2015 ], "matches_remaining": [ - 2011 + 2015 ], "placement": [ - 2011 + 2015 ], "rank": [ - 2011 + 2015 ], "rounds_lost": [ - 2011 + 2015 ], "rounds_won": [ - 2011 + 2015 ], "team_kdr": [ - 2011 + 2015 ], "total_deaths": [ - 2011 + 2015 ], "total_kills": [ - 2011 + 2015 ], "tournament_stage_id": [ - 2011 + 2015 ], "tournament_team_id": [ - 2011 + 2015 ], "wins": [ - 2011 + 2015 ], "__typename": [ - 70 + 74 ] }, "v_team_stage_results_min_fields": { @@ -105855,7 +107581,7 @@ export default { 38 ], "team_kdr": [ - 1084 + 1088 ], "total_deaths": [ 38 @@ -105864,75 +107590,75 @@ export default { 38 ], "tournament_stage_id": [ - 3818 + 3863 ], "tournament_team_id": [ - 3818 + 3863 ], "wins": [ 38 ], "__typename": [ - 70 + 74 ] }, "v_team_stage_results_min_order_by": { "group_number": [ - 2011 + 2015 ], "head_to_head_match_wins": [ - 2011 + 2015 ], "head_to_head_rounds_won": [ - 2011 + 2015 ], "losses": [ - 2011 + 2015 ], "maps_lost": [ - 2011 + 2015 ], "maps_won": [ - 2011 + 2015 ], "matches_played": [ - 2011 + 2015 ], "matches_remaining": [ - 2011 + 2015 ], "placement": [ - 2011 + 2015 ], "rank": [ - 2011 + 2015 ], "rounds_lost": [ - 2011 + 2015 ], "rounds_won": [ - 2011 + 2015 ], "team_kdr": [ - 2011 + 2015 ], "total_deaths": [ - 2011 + 2015 ], "total_kills": [ - 2011 + 2015 ], "tournament_stage_id": [ - 2011 + 2015 ], "tournament_team_id": [ - 2011 + 2015 ], "wins": [ - 2011 + 2015 ], "__typename": [ - 70 + 74 ] }, "v_team_stage_results_mutation_response": { @@ -105940,111 +107666,111 @@ export default { 38 ], "returning": [ - 4407 + 4452 ], "__typename": [ - 70 + 74 ] }, "v_team_stage_results_obj_rel_insert_input": { "data": [ - 4429 + 4474 ], "on_conflict": [ - 4436 + 4481 ], "__typename": [ - 70 + 74 ] }, "v_team_stage_results_on_conflict": { "constraint": [ - 4427 + 4472 ], "update_columns": [ - 4459 + 4504 ], "where": [ - 4426 + 4471 ], "__typename": [ - 70 + 74 ] }, "v_team_stage_results_order_by": { "group_number": [ - 2011 + 2015 ], "head_to_head_match_wins": [ - 2011 + 2015 ], "head_to_head_rounds_won": [ - 2011 + 2015 ], "losses": [ - 2011 + 2015 ], "maps_lost": [ - 2011 + 2015 ], "maps_won": [ - 2011 + 2015 ], "matches_played": [ - 2011 + 2015 ], "matches_remaining": [ - 2011 + 2015 ], "placement": [ - 2011 + 2015 ], "rank": [ - 2011 + 2015 ], "rounds_lost": [ - 2011 + 2015 ], "rounds_won": [ - 2011 + 2015 ], "stage": [ - 3536 + 3581 ], "team": [ - 3663 + 3708 ], "team_kdr": [ - 2011 + 2015 ], "total_deaths": [ - 2011 + 2015 ], "total_kills": [ - 2011 + 2015 ], "tournament_stage_id": [ - 2011 + 2015 ], "tournament_team_id": [ - 2011 + 2015 ], "wins": [ - 2011 + 2015 ], "__typename": [ - 70 + 74 ] }, "v_team_stage_results_pk_columns_input": { "tournament_stage_id": [ - 3818 + 3863 ], "tournament_team_id": [ - 3818 + 3863 ], "__typename": [ - 70 + 74 ] }, "v_team_stage_results_select_column": {}, @@ -106094,7 +107820,7 @@ export default { 38 ], "team_kdr": [ - 1084 + 1088 ], "total_deaths": [ 38 @@ -106103,16 +107829,16 @@ export default { 38 ], "tournament_stage_id": [ - 3818 + 3863 ], "tournament_team_id": [ - 3818 + 3863 ], "wins": [ 38 ], "__typename": [ - 70 + 74 ] }, "v_team_stage_results_stddev_fields": { @@ -106165,60 +107891,60 @@ export default { 29 ], "__typename": [ - 70 + 74 ] }, "v_team_stage_results_stddev_order_by": { "group_number": [ - 2011 + 2015 ], "head_to_head_match_wins": [ - 2011 + 2015 ], "head_to_head_rounds_won": [ - 2011 + 2015 ], "losses": [ - 2011 + 2015 ], "maps_lost": [ - 2011 + 2015 ], "maps_won": [ - 2011 + 2015 ], "matches_played": [ - 2011 + 2015 ], "matches_remaining": [ - 2011 + 2015 ], "placement": [ - 2011 + 2015 ], "rank": [ - 2011 + 2015 ], "rounds_lost": [ - 2011 + 2015 ], "rounds_won": [ - 2011 + 2015 ], "team_kdr": [ - 2011 + 2015 ], "total_deaths": [ - 2011 + 2015 ], "total_kills": [ - 2011 + 2015 ], "wins": [ - 2011 + 2015 ], "__typename": [ - 70 + 74 ] }, "v_team_stage_results_stddev_pop_fields": { @@ -106271,60 +107997,60 @@ export default { 29 ], "__typename": [ - 70 + 74 ] }, "v_team_stage_results_stddev_pop_order_by": { "group_number": [ - 2011 + 2015 ], "head_to_head_match_wins": [ - 2011 + 2015 ], "head_to_head_rounds_won": [ - 2011 + 2015 ], "losses": [ - 2011 + 2015 ], "maps_lost": [ - 2011 + 2015 ], "maps_won": [ - 2011 + 2015 ], "matches_played": [ - 2011 + 2015 ], "matches_remaining": [ - 2011 + 2015 ], "placement": [ - 2011 + 2015 ], "rank": [ - 2011 + 2015 ], "rounds_lost": [ - 2011 + 2015 ], "rounds_won": [ - 2011 + 2015 ], "team_kdr": [ - 2011 + 2015 ], "total_deaths": [ - 2011 + 2015 ], "total_kills": [ - 2011 + 2015 ], "wins": [ - 2011 + 2015 ], "__typename": [ - 70 + 74 ] }, "v_team_stage_results_stddev_samp_fields": { @@ -106377,71 +108103,71 @@ export default { 29 ], "__typename": [ - 70 + 74 ] }, "v_team_stage_results_stddev_samp_order_by": { "group_number": [ - 2011 + 2015 ], "head_to_head_match_wins": [ - 2011 + 2015 ], "head_to_head_rounds_won": [ - 2011 + 2015 ], "losses": [ - 2011 + 2015 ], "maps_lost": [ - 2011 + 2015 ], "maps_won": [ - 2011 + 2015 ], "matches_played": [ - 2011 + 2015 ], "matches_remaining": [ - 2011 + 2015 ], "placement": [ - 2011 + 2015 ], "rank": [ - 2011 + 2015 ], "rounds_lost": [ - 2011 + 2015 ], "rounds_won": [ - 2011 + 2015 ], "team_kdr": [ - 2011 + 2015 ], "total_deaths": [ - 2011 + 2015 ], "total_kills": [ - 2011 + 2015 ], "wins": [ - 2011 + 2015 ], "__typename": [ - 70 + 74 ] }, "v_team_stage_results_stream_cursor_input": { "initial_value": [ - 4456 + 4501 ], "ordering": [ - 224 + 228 ], "__typename": [ - 70 + 74 ] }, "v_team_stage_results_stream_cursor_value_input": { @@ -106482,7 +108208,7 @@ export default { 38 ], "team_kdr": [ - 1084 + 1088 ], "total_deaths": [ 38 @@ -106491,16 +108217,16 @@ export default { 38 ], "tournament_stage_id": [ - 3818 + 3863 ], "tournament_team_id": [ - 3818 + 3863 ], "wins": [ 38 ], "__typename": [ - 70 + 74 ] }, "v_team_stage_results_sum_fields": { @@ -106541,7 +108267,7 @@ export default { 38 ], "team_kdr": [ - 1084 + 1088 ], "total_deaths": [ 38 @@ -106553,75 +108279,75 @@ export default { 38 ], "__typename": [ - 70 + 74 ] }, "v_team_stage_results_sum_order_by": { "group_number": [ - 2011 + 2015 ], "head_to_head_match_wins": [ - 2011 + 2015 ], "head_to_head_rounds_won": [ - 2011 + 2015 ], "losses": [ - 2011 + 2015 ], "maps_lost": [ - 2011 + 2015 ], "maps_won": [ - 2011 + 2015 ], "matches_played": [ - 2011 + 2015 ], "matches_remaining": [ - 2011 + 2015 ], "placement": [ - 2011 + 2015 ], "rank": [ - 2011 + 2015 ], "rounds_lost": [ - 2011 + 2015 ], "rounds_won": [ - 2011 + 2015 ], "team_kdr": [ - 2011 + 2015 ], "total_deaths": [ - 2011 + 2015 ], "total_kills": [ - 2011 + 2015 ], "wins": [ - 2011 + 2015 ], "__typename": [ - 70 + 74 ] }, "v_team_stage_results_update_column": {}, "v_team_stage_results_updates": { "_inc": [ - 4428 + 4473 ], "_set": [ - 4448 + 4493 ], "where": [ - 4426 + 4471 ], "__typename": [ - 70 + 74 ] }, "v_team_stage_results_var_pop_fields": { @@ -106674,60 +108400,60 @@ export default { 29 ], "__typename": [ - 70 + 74 ] }, "v_team_stage_results_var_pop_order_by": { "group_number": [ - 2011 + 2015 ], "head_to_head_match_wins": [ - 2011 + 2015 ], "head_to_head_rounds_won": [ - 2011 + 2015 ], "losses": [ - 2011 + 2015 ], "maps_lost": [ - 2011 + 2015 ], "maps_won": [ - 2011 + 2015 ], "matches_played": [ - 2011 + 2015 ], "matches_remaining": [ - 2011 + 2015 ], "placement": [ - 2011 + 2015 ], "rank": [ - 2011 + 2015 ], "rounds_lost": [ - 2011 + 2015 ], "rounds_won": [ - 2011 + 2015 ], "team_kdr": [ - 2011 + 2015 ], "total_deaths": [ - 2011 + 2015 ], "total_kills": [ - 2011 + 2015 ], "wins": [ - 2011 + 2015 ], "__typename": [ - 70 + 74 ] }, "v_team_stage_results_var_samp_fields": { @@ -106780,60 +108506,60 @@ export default { 29 ], "__typename": [ - 70 + 74 ] }, "v_team_stage_results_var_samp_order_by": { "group_number": [ - 2011 + 2015 ], "head_to_head_match_wins": [ - 2011 + 2015 ], "head_to_head_rounds_won": [ - 2011 + 2015 ], "losses": [ - 2011 + 2015 ], "maps_lost": [ - 2011 + 2015 ], "maps_won": [ - 2011 + 2015 ], "matches_played": [ - 2011 + 2015 ], "matches_remaining": [ - 2011 + 2015 ], "placement": [ - 2011 + 2015 ], "rank": [ - 2011 + 2015 ], "rounds_lost": [ - 2011 + 2015 ], "rounds_won": [ - 2011 + 2015 ], "team_kdr": [ - 2011 + 2015 ], "total_deaths": [ - 2011 + 2015 ], "total_kills": [ - 2011 + 2015 ], "wins": [ - 2011 + 2015 ], "__typename": [ - 70 + 74 ] }, "v_team_stage_results_variance_fields": { @@ -106886,60 +108612,60 @@ export default { 29 ], "__typename": [ - 70 + 74 ] }, "v_team_stage_results_variance_order_by": { "group_number": [ - 2011 + 2015 ], "head_to_head_match_wins": [ - 2011 + 2015 ], "head_to_head_rounds_won": [ - 2011 + 2015 ], "losses": [ - 2011 + 2015 ], "maps_lost": [ - 2011 + 2015 ], "maps_won": [ - 2011 + 2015 ], "matches_played": [ - 2011 + 2015 ], "matches_remaining": [ - 2011 + 2015 ], "placement": [ - 2011 + 2015 ], "rank": [ - 2011 + 2015 ], "rounds_lost": [ - 2011 + 2015 ], "rounds_won": [ - 2011 + 2015 ], "team_kdr": [ - 2011 + 2015 ], "total_deaths": [ - 2011 + 2015 ], "total_kills": [ - 2011 + 2015 ], "wins": [ - 2011 + 2015 ], "__typename": [ - 70 + 74 ] }, "v_team_tournament_results": { @@ -106971,10 +108697,10 @@ export default { 38 ], "team": [ - 3643 + 3688 ], "team_kdr": [ - 1084 + 1088 ], "total_deaths": [ 38 @@ -106983,248 +108709,248 @@ export default { 38 ], "tournament": [ - 3772 + 3817 ], "tournament_id": [ - 3818 + 3863 ], "tournament_team_id": [ - 3818 + 3863 ], "wins": [ 38 ], "__typename": [ - 70 + 74 ] }, "v_team_tournament_results_aggregate": { "aggregate": [ - 4481 + 4526 ], "nodes": [ - 4467 + 4512 ], "__typename": [ - 70 + 74 ] }, "v_team_tournament_results_aggregate_bool_exp": { "avg": [ - 4470 + 4515 ], "corr": [ - 4471 + 4516 ], "count": [ - 4473 + 4518 ], "covar_samp": [ - 4474 + 4519 ], "max": [ - 4476 + 4521 ], "min": [ - 4477 + 4522 ], "stddev_samp": [ - 4478 + 4523 ], "sum": [ - 4479 + 4524 ], "var_samp": [ - 4480 + 4525 ], "__typename": [ - 70 + 74 ] }, "v_team_tournament_results_aggregate_bool_exp_avg": { "arguments": [ - 4494 + 4539 ], "distinct": [ 3 ], "filter": [ - 4486 + 4531 ], "predicate": [ - 1085 + 1089 ], "__typename": [ - 70 + 74 ] }, "v_team_tournament_results_aggregate_bool_exp_corr": { "arguments": [ - 4472 + 4517 ], "distinct": [ 3 ], "filter": [ - 4486 + 4531 ], "predicate": [ - 1085 + 1089 ], "__typename": [ - 70 + 74 ] }, "v_team_tournament_results_aggregate_bool_exp_corr_arguments": { "X": [ - 4495 + 4540 ], "Y": [ - 4495 + 4540 ], "__typename": [ - 70 + 74 ] }, "v_team_tournament_results_aggregate_bool_exp_count": { "arguments": [ - 4493 + 4538 ], "distinct": [ 3 ], "filter": [ - 4486 + 4531 ], "predicate": [ 39 ], "__typename": [ - 70 + 74 ] }, "v_team_tournament_results_aggregate_bool_exp_covar_samp": { "arguments": [ - 4475 + 4520 ], "distinct": [ 3 ], "filter": [ - 4486 + 4531 ], "predicate": [ - 1085 + 1089 ], "__typename": [ - 70 + 74 ] }, "v_team_tournament_results_aggregate_bool_exp_covar_samp_arguments": { "X": [ - 4496 + 4541 ], "Y": [ - 4496 + 4541 ], "__typename": [ - 70 + 74 ] }, "v_team_tournament_results_aggregate_bool_exp_max": { "arguments": [ - 4497 + 4542 ], "distinct": [ 3 ], "filter": [ - 4486 + 4531 ], "predicate": [ - 1085 + 1089 ], "__typename": [ - 70 + 74 ] }, "v_team_tournament_results_aggregate_bool_exp_min": { "arguments": [ - 4498 + 4543 ], "distinct": [ 3 ], "filter": [ - 4486 + 4531 ], "predicate": [ - 1085 + 1089 ], "__typename": [ - 70 + 74 ] }, "v_team_tournament_results_aggregate_bool_exp_stddev_samp": { "arguments": [ - 4499 + 4544 ], "distinct": [ 3 ], "filter": [ - 4486 + 4531 ], "predicate": [ - 1085 + 1089 ], "__typename": [ - 70 + 74 ] }, "v_team_tournament_results_aggregate_bool_exp_sum": { "arguments": [ - 4500 + 4545 ], "distinct": [ 3 ], "filter": [ - 4486 + 4531 ], "predicate": [ - 1085 + 1089 ], "__typename": [ - 70 + 74 ] }, "v_team_tournament_results_aggregate_bool_exp_var_samp": { "arguments": [ - 4501 + 4546 ], "distinct": [ 3 ], "filter": [ - 4486 + 4531 ], "predicate": [ - 1085 + 1089 ], "__typename": [ - 70 + 74 ] }, "v_team_tournament_results_aggregate_fields": { "avg": [ - 4484 + 4529 ], "count": [ 38, { "columns": [ - 4493, + 4538, "[v_team_tournament_results_select_column!]" ], "distinct": [ @@ -107233,80 +108959,80 @@ export default { } ], "max": [ - 4488 + 4533 ], "min": [ - 4490 + 4535 ], "stddev": [ - 4502 + 4547 ], "stddev_pop": [ - 4504 + 4549 ], "stddev_samp": [ - 4506 + 4551 ], "sum": [ - 4510 + 4555 ], "var_pop": [ - 4512 + 4557 ], "var_samp": [ - 4514 + 4559 ], "variance": [ - 4516 + 4561 ], "__typename": [ - 70 + 74 ] }, "v_team_tournament_results_aggregate_order_by": { "avg": [ - 4485 + 4530 ], "count": [ - 2011 + 2015 ], "max": [ - 4489 + 4534 ], "min": [ - 4491 + 4536 ], "stddev": [ - 4503 + 4548 ], "stddev_pop": [ - 4505 + 4550 ], "stddev_samp": [ - 4507 + 4552 ], "sum": [ - 4511 + 4556 ], "var_pop": [ - 4513 + 4558 ], "var_samp": [ - 4515 + 4560 ], "variance": [ - 4517 + 4562 ], "__typename": [ - 70 + 74 ] }, "v_team_tournament_results_arr_rel_insert_input": { "data": [ - 4487 + 4532 ], "__typename": [ - 70 + 74 ] }, "v_team_tournament_results_avg_fields": { @@ -107350,62 +109076,62 @@ export default { 29 ], "__typename": [ - 70 + 74 ] }, "v_team_tournament_results_avg_order_by": { "head_to_head_match_wins": [ - 2011 + 2015 ], "head_to_head_rounds_won": [ - 2011 + 2015 ], "losses": [ - 2011 + 2015 ], "maps_lost": [ - 2011 + 2015 ], "maps_won": [ - 2011 + 2015 ], "matches_played": [ - 2011 + 2015 ], "matches_remaining": [ - 2011 + 2015 ], "rounds_lost": [ - 2011 + 2015 ], "rounds_won": [ - 2011 + 2015 ], "team_kdr": [ - 2011 + 2015 ], "total_deaths": [ - 2011 + 2015 ], "total_kills": [ - 2011 + 2015 ], "wins": [ - 2011 + 2015 ], "__typename": [ - 70 + 74 ] }, "v_team_tournament_results_bool_exp": { "_and": [ - 4486 + 4531 ], "_not": [ - 4486 + 4531 ], "_or": [ - 4486 + 4531 ], "head_to_head_match_wins": [ 39 @@ -107435,10 +109161,10 @@ export default { 39 ], "team": [ - 3652 + 3697 ], "team_kdr": [ - 1085 + 1089 ], "total_deaths": [ 39 @@ -107447,19 +109173,19 @@ export default { 39 ], "tournament": [ - 3783 + 3828 ], "tournament_id": [ - 3820 + 3865 ], "tournament_team_id": [ - 3820 + 3865 ], "wins": [ 39 ], "__typename": [ - 70 + 74 ] }, "v_team_tournament_results_insert_input": { @@ -107491,10 +109217,10 @@ export default { 38 ], "team": [ - 3661 + 3706 ], "team_kdr": [ - 1084 + 1088 ], "total_deaths": [ 38 @@ -107503,19 +109229,19 @@ export default { 38 ], "tournament": [ - 3792 + 3837 ], "tournament_id": [ - 3818 + 3863 ], "tournament_team_id": [ - 3818 + 3863 ], "wins": [ 38 ], "__typename": [ - 70 + 74 ] }, "v_team_tournament_results_max_fields": { @@ -107547,7 +109273,7 @@ export default { 38 ], "team_kdr": [ - 1084 + 1088 ], "total_deaths": [ 38 @@ -107556,66 +109282,66 @@ export default { 38 ], "tournament_id": [ - 3818 + 3863 ], "tournament_team_id": [ - 3818 + 3863 ], "wins": [ 38 ], "__typename": [ - 70 + 74 ] }, "v_team_tournament_results_max_order_by": { "head_to_head_match_wins": [ - 2011 + 2015 ], "head_to_head_rounds_won": [ - 2011 + 2015 ], "losses": [ - 2011 + 2015 ], "maps_lost": [ - 2011 + 2015 ], "maps_won": [ - 2011 + 2015 ], "matches_played": [ - 2011 + 2015 ], "matches_remaining": [ - 2011 + 2015 ], "rounds_lost": [ - 2011 + 2015 ], "rounds_won": [ - 2011 + 2015 ], "team_kdr": [ - 2011 + 2015 ], "total_deaths": [ - 2011 + 2015 ], "total_kills": [ - 2011 + 2015 ], "tournament_id": [ - 2011 + 2015 ], "tournament_team_id": [ - 2011 + 2015 ], "wins": [ - 2011 + 2015 ], "__typename": [ - 70 + 74 ] }, "v_team_tournament_results_min_fields": { @@ -107647,7 +109373,7 @@ export default { 38 ], "team_kdr": [ - 1084 + 1088 ], "total_deaths": [ 38 @@ -107656,122 +109382,122 @@ export default { 38 ], "tournament_id": [ - 3818 + 3863 ], "tournament_team_id": [ - 3818 + 3863 ], "wins": [ 38 ], "__typename": [ - 70 + 74 ] }, "v_team_tournament_results_min_order_by": { "head_to_head_match_wins": [ - 2011 + 2015 ], "head_to_head_rounds_won": [ - 2011 + 2015 ], "losses": [ - 2011 + 2015 ], "maps_lost": [ - 2011 + 2015 ], "maps_won": [ - 2011 + 2015 ], "matches_played": [ - 2011 + 2015 ], "matches_remaining": [ - 2011 + 2015 ], "rounds_lost": [ - 2011 + 2015 ], "rounds_won": [ - 2011 + 2015 ], "team_kdr": [ - 2011 + 2015 ], "total_deaths": [ - 2011 + 2015 ], "total_kills": [ - 2011 + 2015 ], "tournament_id": [ - 2011 + 2015 ], "tournament_team_id": [ - 2011 + 2015 ], "wins": [ - 2011 + 2015 ], "__typename": [ - 70 + 74 ] }, "v_team_tournament_results_order_by": { "head_to_head_match_wins": [ - 2011 + 2015 ], "head_to_head_rounds_won": [ - 2011 + 2015 ], "losses": [ - 2011 + 2015 ], "maps_lost": [ - 2011 + 2015 ], "maps_won": [ - 2011 + 2015 ], "matches_played": [ - 2011 + 2015 ], "matches_remaining": [ - 2011 + 2015 ], "rounds_lost": [ - 2011 + 2015 ], "rounds_won": [ - 2011 + 2015 ], "team": [ - 3663 + 3708 ], "team_kdr": [ - 2011 + 2015 ], "total_deaths": [ - 2011 + 2015 ], "total_kills": [ - 2011 + 2015 ], "tournament": [ - 3794 + 3839 ], "tournament_id": [ - 2011 + 2015 ], "tournament_team_id": [ - 2011 + 2015 ], "wins": [ - 2011 + 2015 ], "__typename": [ - 70 + 74 ] }, "v_team_tournament_results_select_column": {}, @@ -107824,51 +109550,51 @@ export default { 29 ], "__typename": [ - 70 + 74 ] }, "v_team_tournament_results_stddev_order_by": { "head_to_head_match_wins": [ - 2011 + 2015 ], "head_to_head_rounds_won": [ - 2011 + 2015 ], "losses": [ - 2011 + 2015 ], "maps_lost": [ - 2011 + 2015 ], "maps_won": [ - 2011 + 2015 ], "matches_played": [ - 2011 + 2015 ], "matches_remaining": [ - 2011 + 2015 ], "rounds_lost": [ - 2011 + 2015 ], "rounds_won": [ - 2011 + 2015 ], "team_kdr": [ - 2011 + 2015 ], "total_deaths": [ - 2011 + 2015 ], "total_kills": [ - 2011 + 2015 ], "wins": [ - 2011 + 2015 ], "__typename": [ - 70 + 74 ] }, "v_team_tournament_results_stddev_pop_fields": { @@ -107912,51 +109638,51 @@ export default { 29 ], "__typename": [ - 70 + 74 ] }, "v_team_tournament_results_stddev_pop_order_by": { "head_to_head_match_wins": [ - 2011 + 2015 ], "head_to_head_rounds_won": [ - 2011 + 2015 ], "losses": [ - 2011 + 2015 ], "maps_lost": [ - 2011 + 2015 ], "maps_won": [ - 2011 + 2015 ], "matches_played": [ - 2011 + 2015 ], "matches_remaining": [ - 2011 + 2015 ], "rounds_lost": [ - 2011 + 2015 ], "rounds_won": [ - 2011 + 2015 ], "team_kdr": [ - 2011 + 2015 ], "total_deaths": [ - 2011 + 2015 ], "total_kills": [ - 2011 + 2015 ], "wins": [ - 2011 + 2015 ], "__typename": [ - 70 + 74 ] }, "v_team_tournament_results_stddev_samp_fields": { @@ -108000,62 +109726,62 @@ export default { 29 ], "__typename": [ - 70 + 74 ] }, "v_team_tournament_results_stddev_samp_order_by": { "head_to_head_match_wins": [ - 2011 + 2015 ], "head_to_head_rounds_won": [ - 2011 + 2015 ], "losses": [ - 2011 + 2015 ], "maps_lost": [ - 2011 + 2015 ], "maps_won": [ - 2011 + 2015 ], "matches_played": [ - 2011 + 2015 ], "matches_remaining": [ - 2011 + 2015 ], "rounds_lost": [ - 2011 + 2015 ], "rounds_won": [ - 2011 + 2015 ], "team_kdr": [ - 2011 + 2015 ], "total_deaths": [ - 2011 + 2015 ], "total_kills": [ - 2011 + 2015 ], "wins": [ - 2011 + 2015 ], "__typename": [ - 70 + 74 ] }, "v_team_tournament_results_stream_cursor_input": { "initial_value": [ - 4509 + 4554 ], "ordering": [ - 224 + 228 ], "__typename": [ - 70 + 74 ] }, "v_team_tournament_results_stream_cursor_value_input": { @@ -108087,7 +109813,7 @@ export default { 38 ], "team_kdr": [ - 1084 + 1088 ], "total_deaths": [ 38 @@ -108096,16 +109822,16 @@ export default { 38 ], "tournament_id": [ - 3818 + 3863 ], "tournament_team_id": [ - 3818 + 3863 ], "wins": [ 38 ], "__typename": [ - 70 + 74 ] }, "v_team_tournament_results_sum_fields": { @@ -108137,7 +109863,7 @@ export default { 38 ], "team_kdr": [ - 1084 + 1088 ], "total_deaths": [ 38 @@ -108149,51 +109875,51 @@ export default { 38 ], "__typename": [ - 70 + 74 ] }, "v_team_tournament_results_sum_order_by": { "head_to_head_match_wins": [ - 2011 + 2015 ], "head_to_head_rounds_won": [ - 2011 + 2015 ], "losses": [ - 2011 + 2015 ], "maps_lost": [ - 2011 + 2015 ], "maps_won": [ - 2011 + 2015 ], "matches_played": [ - 2011 + 2015 ], "matches_remaining": [ - 2011 + 2015 ], "rounds_lost": [ - 2011 + 2015 ], "rounds_won": [ - 2011 + 2015 ], "team_kdr": [ - 2011 + 2015 ], "total_deaths": [ - 2011 + 2015 ], "total_kills": [ - 2011 + 2015 ], "wins": [ - 2011 + 2015 ], "__typename": [ - 70 + 74 ] }, "v_team_tournament_results_var_pop_fields": { @@ -108237,51 +109963,51 @@ export default { 29 ], "__typename": [ - 70 + 74 ] }, "v_team_tournament_results_var_pop_order_by": { "head_to_head_match_wins": [ - 2011 + 2015 ], "head_to_head_rounds_won": [ - 2011 + 2015 ], "losses": [ - 2011 + 2015 ], "maps_lost": [ - 2011 + 2015 ], "maps_won": [ - 2011 + 2015 ], "matches_played": [ - 2011 + 2015 ], "matches_remaining": [ - 2011 + 2015 ], "rounds_lost": [ - 2011 + 2015 ], "rounds_won": [ - 2011 + 2015 ], "team_kdr": [ - 2011 + 2015 ], "total_deaths": [ - 2011 + 2015 ], "total_kills": [ - 2011 + 2015 ], "wins": [ - 2011 + 2015 ], "__typename": [ - 70 + 74 ] }, "v_team_tournament_results_var_samp_fields": { @@ -108325,51 +110051,51 @@ export default { 29 ], "__typename": [ - 70 + 74 ] }, "v_team_tournament_results_var_samp_order_by": { "head_to_head_match_wins": [ - 2011 + 2015 ], "head_to_head_rounds_won": [ - 2011 + 2015 ], "losses": [ - 2011 + 2015 ], "maps_lost": [ - 2011 + 2015 ], "maps_won": [ - 2011 + 2015 ], "matches_played": [ - 2011 + 2015 ], "matches_remaining": [ - 2011 + 2015 ], "rounds_lost": [ - 2011 + 2015 ], "rounds_won": [ - 2011 + 2015 ], "team_kdr": [ - 2011 + 2015 ], "total_deaths": [ - 2011 + 2015 ], "total_kills": [ - 2011 + 2015 ], "wins": [ - 2011 + 2015 ], "__typename": [ - 70 + 74 ] }, "v_team_tournament_results_variance_fields": { @@ -108413,51 +110139,51 @@ export default { 29 ], "__typename": [ - 70 + 74 ] }, "v_team_tournament_results_variance_order_by": { "head_to_head_match_wins": [ - 2011 + 2015 ], "head_to_head_rounds_won": [ - 2011 + 2015 ], "losses": [ - 2011 + 2015 ], "maps_lost": [ - 2011 + 2015 ], "maps_won": [ - 2011 + 2015 ], "matches_played": [ - 2011 + 2015 ], "matches_remaining": [ - 2011 + 2015 ], "rounds_lost": [ - 2011 + 2015 ], "rounds_won": [ - 2011 + 2015 ], "team_kdr": [ - 2011 + 2015 ], "total_deaths": [ - 2011 + 2015 ], "total_kills": [ - 2011 + 2015 ], "wins": [ - 2011 + 2015 ], "__typename": [ - 70 + 74 ] }, "v_tournament_player_stats": { @@ -108468,13 +110194,13 @@ export default { 38 ], "headshot_percentage": [ - 1084 + 1088 ], "headshots": [ 38 ], "kdr": [ - 1084 + 1088 ], "kills": [ 38 @@ -108483,248 +110209,248 @@ export default { 38 ], "player": [ - 2878 + 2914 ], "player_steam_id": [ - 169 + 173 ], "tournament": [ - 3772 + 3817 ], "tournament_id": [ - 3818 + 3863 ], "__typename": [ - 70 + 74 ] }, "v_tournament_player_stats_aggregate": { "aggregate": [ - 4532 + 4577 ], "nodes": [ - 4518 + 4563 ], "__typename": [ - 70 + 74 ] }, "v_tournament_player_stats_aggregate_bool_exp": { "avg": [ - 4521 + 4566 ], "corr": [ - 4522 + 4567 ], "count": [ - 4524 + 4569 ], "covar_samp": [ - 4525 + 4570 ], "max": [ - 4527 + 4572 ], "min": [ - 4528 + 4573 ], "stddev_samp": [ - 4529 + 4574 ], "sum": [ - 4530 + 4575 ], "var_samp": [ - 4531 + 4576 ], "__typename": [ - 70 + 74 ] }, "v_tournament_player_stats_aggregate_bool_exp_avg": { "arguments": [ - 4545 + 4590 ], "distinct": [ 3 ], "filter": [ - 4537 + 4582 ], "predicate": [ - 1085 + 1089 ], "__typename": [ - 70 + 74 ] }, "v_tournament_player_stats_aggregate_bool_exp_corr": { "arguments": [ - 4523 + 4568 ], "distinct": [ 3 ], "filter": [ - 4537 + 4582 ], "predicate": [ - 1085 + 1089 ], "__typename": [ - 70 + 74 ] }, "v_tournament_player_stats_aggregate_bool_exp_corr_arguments": { "X": [ - 4546 + 4591 ], "Y": [ - 4546 + 4591 ], "__typename": [ - 70 + 74 ] }, "v_tournament_player_stats_aggregate_bool_exp_count": { "arguments": [ - 4544 + 4589 ], "distinct": [ 3 ], "filter": [ - 4537 + 4582 ], "predicate": [ 39 ], "__typename": [ - 70 + 74 ] }, "v_tournament_player_stats_aggregate_bool_exp_covar_samp": { "arguments": [ - 4526 + 4571 ], "distinct": [ 3 ], "filter": [ - 4537 + 4582 ], "predicate": [ - 1085 + 1089 ], "__typename": [ - 70 + 74 ] }, "v_tournament_player_stats_aggregate_bool_exp_covar_samp_arguments": { "X": [ - 4547 + 4592 ], "Y": [ - 4547 + 4592 ], "__typename": [ - 70 + 74 ] }, "v_tournament_player_stats_aggregate_bool_exp_max": { "arguments": [ - 4548 + 4593 ], "distinct": [ 3 ], "filter": [ - 4537 + 4582 ], "predicate": [ - 1085 + 1089 ], "__typename": [ - 70 + 74 ] }, "v_tournament_player_stats_aggregate_bool_exp_min": { "arguments": [ - 4549 + 4594 ], "distinct": [ 3 ], "filter": [ - 4537 + 4582 ], "predicate": [ - 1085 + 1089 ], "__typename": [ - 70 + 74 ] }, "v_tournament_player_stats_aggregate_bool_exp_stddev_samp": { "arguments": [ - 4550 + 4595 ], "distinct": [ 3 ], "filter": [ - 4537 + 4582 ], "predicate": [ - 1085 + 1089 ], "__typename": [ - 70 + 74 ] }, "v_tournament_player_stats_aggregate_bool_exp_sum": { "arguments": [ - 4551 + 4596 ], "distinct": [ 3 ], "filter": [ - 4537 + 4582 ], "predicate": [ - 1085 + 1089 ], "__typename": [ - 70 + 74 ] }, "v_tournament_player_stats_aggregate_bool_exp_var_samp": { "arguments": [ - 4552 + 4597 ], "distinct": [ 3 ], "filter": [ - 4537 + 4582 ], "predicate": [ - 1085 + 1089 ], "__typename": [ - 70 + 74 ] }, "v_tournament_player_stats_aggregate_fields": { "avg": [ - 4535 + 4580 ], "count": [ 38, { "columns": [ - 4544, + 4589, "[v_tournament_player_stats_select_column!]" ], "distinct": [ @@ -108733,80 +110459,80 @@ export default { } ], "max": [ - 4539 + 4584 ], "min": [ - 4541 + 4586 ], "stddev": [ - 4553 + 4598 ], "stddev_pop": [ - 4555 + 4600 ], "stddev_samp": [ - 4557 + 4602 ], "sum": [ - 4561 + 4606 ], "var_pop": [ - 4563 + 4608 ], "var_samp": [ - 4565 + 4610 ], "variance": [ - 4567 + 4612 ], "__typename": [ - 70 + 74 ] }, "v_tournament_player_stats_aggregate_order_by": { "avg": [ - 4536 + 4581 ], "count": [ - 2011 + 2015 ], "max": [ - 4540 + 4585 ], "min": [ - 4542 + 4587 ], "stddev": [ - 4554 + 4599 ], "stddev_pop": [ - 4556 + 4601 ], "stddev_samp": [ - 4558 + 4603 ], "sum": [ - 4562 + 4607 ], "var_pop": [ - 4564 + 4609 ], "var_samp": [ - 4566 + 4611 ], "variance": [ - 4568 + 4613 ], "__typename": [ - 70 + 74 ] }, "v_tournament_player_stats_arr_rel_insert_input": { "data": [ - 4538 + 4583 ], "__typename": [ - 70 + 74 ] }, "v_tournament_player_stats_avg_fields": { @@ -108835,47 +110561,47 @@ export default { 29 ], "__typename": [ - 70 + 74 ] }, "v_tournament_player_stats_avg_order_by": { "assists": [ - 2011 + 2015 ], "deaths": [ - 2011 + 2015 ], "headshot_percentage": [ - 2011 + 2015 ], "headshots": [ - 2011 + 2015 ], "kdr": [ - 2011 + 2015 ], "kills": [ - 2011 + 2015 ], "matches_played": [ - 2011 + 2015 ], "player_steam_id": [ - 2011 + 2015 ], "__typename": [ - 70 + 74 ] }, "v_tournament_player_stats_bool_exp": { "_and": [ - 4537 + 4582 ], "_not": [ - 4537 + 4582 ], "_or": [ - 4537 + 4582 ], "assists": [ 39 @@ -108884,13 +110610,13 @@ export default { 39 ], "headshot_percentage": [ - 1085 + 1089 ], "headshots": [ 39 ], "kdr": [ - 1085 + 1089 ], "kills": [ 39 @@ -108899,19 +110625,19 @@ export default { 39 ], "player": [ - 2882 + 2918 ], "player_steam_id": [ - 171 + 175 ], "tournament": [ - 3783 + 3828 ], "tournament_id": [ - 3820 + 3865 ], "__typename": [ - 70 + 74 ] }, "v_tournament_player_stats_insert_input": { @@ -108922,13 +110648,13 @@ export default { 38 ], "headshot_percentage": [ - 1084 + 1088 ], "headshots": [ 38 ], "kdr": [ - 1084 + 1088 ], "kills": [ 38 @@ -108937,19 +110663,19 @@ export default { 38 ], "player": [ - 2889 + 2925 ], "player_steam_id": [ - 169 + 173 ], "tournament": [ - 3792 + 3837 ], "tournament_id": [ - 3818 + 3863 ], "__typename": [ - 70 + 74 ] }, "v_tournament_player_stats_max_fields": { @@ -108960,13 +110686,13 @@ export default { 38 ], "headshot_percentage": [ - 1084 + 1088 ], "headshots": [ 38 ], "kdr": [ - 1084 + 1088 ], "kills": [ 38 @@ -108975,45 +110701,45 @@ export default { 38 ], "player_steam_id": [ - 169 + 173 ], "tournament_id": [ - 3818 + 3863 ], "__typename": [ - 70 + 74 ] }, "v_tournament_player_stats_max_order_by": { "assists": [ - 2011 + 2015 ], "deaths": [ - 2011 + 2015 ], "headshot_percentage": [ - 2011 + 2015 ], "headshots": [ - 2011 + 2015 ], "kdr": [ - 2011 + 2015 ], "kills": [ - 2011 + 2015 ], "matches_played": [ - 2011 + 2015 ], "player_steam_id": [ - 2011 + 2015 ], "tournament_id": [ - 2011 + 2015 ], "__typename": [ - 70 + 74 ] }, "v_tournament_player_stats_min_fields": { @@ -109024,13 +110750,13 @@ export default { 38 ], "headshot_percentage": [ - 1084 + 1088 ], "headshots": [ 38 ], "kdr": [ - 1084 + 1088 ], "kills": [ 38 @@ -109039,83 +110765,83 @@ export default { 38 ], "player_steam_id": [ - 169 + 173 ], "tournament_id": [ - 3818 + 3863 ], "__typename": [ - 70 + 74 ] }, "v_tournament_player_stats_min_order_by": { "assists": [ - 2011 + 2015 ], "deaths": [ - 2011 + 2015 ], "headshot_percentage": [ - 2011 + 2015 ], "headshots": [ - 2011 + 2015 ], "kdr": [ - 2011 + 2015 ], "kills": [ - 2011 + 2015 ], "matches_played": [ - 2011 + 2015 ], "player_steam_id": [ - 2011 + 2015 ], "tournament_id": [ - 2011 + 2015 ], "__typename": [ - 70 + 74 ] }, "v_tournament_player_stats_order_by": { "assists": [ - 2011 + 2015 ], "deaths": [ - 2011 + 2015 ], "headshot_percentage": [ - 2011 + 2015 ], "headshots": [ - 2011 + 2015 ], "kdr": [ - 2011 + 2015 ], "kills": [ - 2011 + 2015 ], "matches_played": [ - 2011 + 2015 ], "player": [ - 2891 + 2927 ], "player_steam_id": [ - 2011 + 2015 ], "tournament": [ - 3794 + 3839 ], "tournament_id": [ - 2011 + 2015 ], "__typename": [ - 70 + 74 ] }, "v_tournament_player_stats_select_column": {}, @@ -109153,36 +110879,36 @@ export default { 29 ], "__typename": [ - 70 + 74 ] }, "v_tournament_player_stats_stddev_order_by": { "assists": [ - 2011 + 2015 ], "deaths": [ - 2011 + 2015 ], "headshot_percentage": [ - 2011 + 2015 ], "headshots": [ - 2011 + 2015 ], "kdr": [ - 2011 + 2015 ], "kills": [ - 2011 + 2015 ], "matches_played": [ - 2011 + 2015 ], "player_steam_id": [ - 2011 + 2015 ], "__typename": [ - 70 + 74 ] }, "v_tournament_player_stats_stddev_pop_fields": { @@ -109211,36 +110937,36 @@ export default { 29 ], "__typename": [ - 70 + 74 ] }, "v_tournament_player_stats_stddev_pop_order_by": { "assists": [ - 2011 + 2015 ], "deaths": [ - 2011 + 2015 ], "headshot_percentage": [ - 2011 + 2015 ], "headshots": [ - 2011 + 2015 ], "kdr": [ - 2011 + 2015 ], "kills": [ - 2011 + 2015 ], "matches_played": [ - 2011 + 2015 ], "player_steam_id": [ - 2011 + 2015 ], "__typename": [ - 70 + 74 ] }, "v_tournament_player_stats_stddev_samp_fields": { @@ -109269,47 +110995,47 @@ export default { 29 ], "__typename": [ - 70 + 74 ] }, "v_tournament_player_stats_stddev_samp_order_by": { "assists": [ - 2011 + 2015 ], "deaths": [ - 2011 + 2015 ], "headshot_percentage": [ - 2011 + 2015 ], "headshots": [ - 2011 + 2015 ], "kdr": [ - 2011 + 2015 ], "kills": [ - 2011 + 2015 ], "matches_played": [ - 2011 + 2015 ], "player_steam_id": [ - 2011 + 2015 ], "__typename": [ - 70 + 74 ] }, "v_tournament_player_stats_stream_cursor_input": { "initial_value": [ - 4560 + 4605 ], "ordering": [ - 224 + 228 ], "__typename": [ - 70 + 74 ] }, "v_tournament_player_stats_stream_cursor_value_input": { @@ -109320,13 +111046,13 @@ export default { 38 ], "headshot_percentage": [ - 1084 + 1088 ], "headshots": [ 38 ], "kdr": [ - 1084 + 1088 ], "kills": [ 38 @@ -109335,13 +111061,13 @@ export default { 38 ], "player_steam_id": [ - 169 + 173 ], "tournament_id": [ - 3818 + 3863 ], "__typename": [ - 70 + 74 ] }, "v_tournament_player_stats_sum_fields": { @@ -109352,13 +111078,13 @@ export default { 38 ], "headshot_percentage": [ - 1084 + 1088 ], "headshots": [ 38 ], "kdr": [ - 1084 + 1088 ], "kills": [ 38 @@ -109367,39 +111093,39 @@ export default { 38 ], "player_steam_id": [ - 169 + 173 ], "__typename": [ - 70 + 74 ] }, "v_tournament_player_stats_sum_order_by": { "assists": [ - 2011 + 2015 ], "deaths": [ - 2011 + 2015 ], "headshot_percentage": [ - 2011 + 2015 ], "headshots": [ - 2011 + 2015 ], "kdr": [ - 2011 + 2015 ], "kills": [ - 2011 + 2015 ], "matches_played": [ - 2011 + 2015 ], "player_steam_id": [ - 2011 + 2015 ], "__typename": [ - 70 + 74 ] }, "v_tournament_player_stats_var_pop_fields": { @@ -109428,36 +111154,36 @@ export default { 29 ], "__typename": [ - 70 + 74 ] }, "v_tournament_player_stats_var_pop_order_by": { "assists": [ - 2011 + 2015 ], "deaths": [ - 2011 + 2015 ], "headshot_percentage": [ - 2011 + 2015 ], "headshots": [ - 2011 + 2015 ], "kdr": [ - 2011 + 2015 ], "kills": [ - 2011 + 2015 ], "matches_played": [ - 2011 + 2015 ], "player_steam_id": [ - 2011 + 2015 ], "__typename": [ - 70 + 74 ] }, "v_tournament_player_stats_var_samp_fields": { @@ -109486,36 +111212,36 @@ export default { 29 ], "__typename": [ - 70 + 74 ] }, "v_tournament_player_stats_var_samp_order_by": { "assists": [ - 2011 + 2015 ], "deaths": [ - 2011 + 2015 ], "headshot_percentage": [ - 2011 + 2015 ], "headshots": [ - 2011 + 2015 ], "kdr": [ - 2011 + 2015 ], "kills": [ - 2011 + 2015 ], "matches_played": [ - 2011 + 2015 ], "player_steam_id": [ - 2011 + 2015 ], "__typename": [ - 70 + 74 ] }, "v_tournament_player_stats_variance_fields": { @@ -109544,44 +111270,44 @@ export default { 29 ], "__typename": [ - 70 + 74 ] }, "v_tournament_player_stats_variance_order_by": { "assists": [ - 2011 + 2015 ], "deaths": [ - 2011 + 2015 ], "headshot_percentage": [ - 2011 + 2015 ], "headshots": [ - 2011 + 2015 ], "kdr": [ - 2011 + 2015 ], "kills": [ - 2011 + 2015 ], "matches_played": [ - 2011 + 2015 ], "player_steam_id": [ - 2011 + 2015 ], "__typename": [ - 70 + 74 ] }, "Query": { "_map_pool": [ - 83, + 87, { "distinct_on": [ - 95, + 99, "[_map_pool_select_column!]" ], "limit": [ @@ -109591,19 +111317,19 @@ export default { 38 ], "order_by": [ - 93, + 97, "[_map_pool_order_by!]" ], "where": [ - 86 + 90 ] } ], "_map_pool_aggregate": [ - 84, + 88, { "distinct_on": [ - 95, + 99, "[_map_pool_select_column!]" ], "limit": [ @@ -109613,32 +111339,32 @@ export default { 38 ], "order_by": [ - 93, + 97, "[_map_pool_order_by!]" ], "where": [ - 86 + 90 ] } ], "_map_pool_by_pk": [ - 83, + 87, { "map_id": [ - 3818, + 3863, "uuid!" ], "map_pool_id": [ - 3818, + 3863, "uuid!" ] } ], "abandoned_matches": [ - 101, + 105, { "distinct_on": [ - 122, + 126, "[abandoned_matches_select_column!]" ], "limit": [ @@ -109648,19 +111374,19 @@ export default { 38 ], "order_by": [ - 120, + 124, "[abandoned_matches_order_by!]" ], "where": [ - 110 + 114 ] } ], "abandoned_matches_aggregate": [ - 102, + 106, { "distinct_on": [ - 122, + 126, "[abandoned_matches_select_column!]" ], "limit": [ @@ -109670,28 +111396,28 @@ export default { 38 ], "order_by": [ - 120, + 124, "[abandoned_matches_order_by!]" ], "where": [ - 110 + 114 ] } ], "abandoned_matches_by_pk": [ - 101, + 105, { "id": [ - 3818, + 3863, "uuid!" ] } ], "api_keys": [ - 142, + 146, { "distinct_on": [ - 156, + 160, "[api_keys_select_column!]" ], "limit": [ @@ -109701,19 +111427,19 @@ export default { 38 ], "order_by": [ - 154, + 158, "[api_keys_order_by!]" ], "where": [ - 146 + 150 ] } ], "api_keys_aggregate": [ - 143, + 147, { "distinct_on": [ - 156, + 160, "[api_keys_select_column!]" ], "limit": [ @@ -109723,28 +111449,28 @@ export default { 38 ], "order_by": [ - 154, + 158, "[api_keys_order_by!]" ], "where": [ - 146 + 150 ] } ], "api_keys_by_pk": [ - 142, + 146, { "id": [ - 3818, + 3863, "uuid!" ] } ], "clip_render_jobs": [ - 174, + 178, { "distinct_on": [ - 202, + 206, "[clip_render_jobs_select_column!]" ], "limit": [ @@ -109754,19 +111480,19 @@ export default { 38 ], "order_by": [ - 199, + 203, "[clip_render_jobs_order_by!]" ], "where": [ - 186 + 190 ] } ], "clip_render_jobs_aggregate": [ - 175, + 179, { "distinct_on": [ - 202, + 206, "[clip_render_jobs_select_column!]" ], "limit": [ @@ -109776,19 +111502,19 @@ export default { 38 ], "order_by": [ - 199, + 203, "[clip_render_jobs_order_by!]" ], "where": [ - 186 + 190 ] } ], "clip_render_jobs_by_pk": [ - 174, + 178, { "id": [ - 3818, + 3863, "uuid!" ] } @@ -109797,10 +111523,10 @@ export default { 17 ], "db_backups": [ - 225, + 229, { "distinct_on": [ - 239, + 243, "[db_backups_select_column!]" ], "limit": [ @@ -109810,19 +111536,19 @@ export default { 38 ], "order_by": [ - 237, + 241, "[db_backups_order_by!]" ], "where": [ - 229 + 233 ] } ], "db_backups_aggregate": [ - 226, + 230, { "distinct_on": [ - 239, + 243, "[db_backups_select_column!]" ], "limit": [ @@ -109832,28 +111558,28 @@ export default { 38 ], "order_by": [ - 237, + 241, "[db_backups_order_by!]" ], "where": [ - 229 + 233 ] } ], "db_backups_by_pk": [ - 225, + 229, { "id": [ - 3818, + 3863, "uuid!" ] } ], "draft_game_picks": [ - 252, + 256, { "distinct_on": [ - 275, + 279, "[draft_game_picks_select_column!]" ], "limit": [ @@ -109863,19 +111589,19 @@ export default { 38 ], "order_by": [ - 273, + 277, "[draft_game_picks_order_by!]" ], "where": [ - 263 + 267 ] } ], "draft_game_picks_aggregate": [ - 253, + 257, { "distinct_on": [ - 275, + 279, "[draft_game_picks_select_column!]" ], "limit": [ @@ -109885,28 +111611,28 @@ export default { 38 ], "order_by": [ - 273, + 277, "[draft_game_picks_order_by!]" ], "where": [ - 263 + 267 ] } ], "draft_game_picks_by_pk": [ - 252, + 256, { "id": [ - 3818, + 3863, "uuid!" ] } ], "draft_game_players": [ - 297, + 301, { "distinct_on": [ - 320, + 324, "[draft_game_players_select_column!]" ], "limit": [ @@ -109916,19 +111642,19 @@ export default { 38 ], "order_by": [ - 318, + 322, "[draft_game_players_order_by!]" ], "where": [ - 308 + 312 ] } ], "draft_game_players_aggregate": [ - 298, + 302, { "distinct_on": [ - 320, + 324, "[draft_game_players_select_column!]" ], "limit": [ @@ -109938,32 +111664,32 @@ export default { 38 ], "order_by": [ - 318, + 322, "[draft_game_players_order_by!]" ], "where": [ - 308 + 312 ] } ], "draft_game_players_by_pk": [ - 297, + 301, { "draft_game_id": [ - 3818, + 3863, "uuid!" ], "steam_id": [ - 169, + 173, "bigint!" ] } ], "draft_games": [ - 342, + 346, { "distinct_on": [ - 366, + 370, "[draft_games_select_column!]" ], "limit": [ @@ -109973,19 +111699,19 @@ export default { 38 ], "order_by": [ - 364, + 368, "[draft_games_order_by!]" ], "where": [ - 353 + 357 ] } ], "draft_games_aggregate": [ - 343, + 347, { "distinct_on": [ - 366, + 370, "[draft_games_select_column!]" ], "limit": [ @@ -109995,28 +111721,28 @@ export default { 38 ], "order_by": [ - 364, + 368, "[draft_games_order_by!]" ], "where": [ - 353 + 357 ] } ], "draft_games_by_pk": [ - 342, + 346, { "id": [ - 3818, + 3863, "uuid!" ] } ], "e_check_in_settings": [ - 388, + 392, { "distinct_on": [ - 402, + 406, "[e_check_in_settings_select_column!]" ], "limit": [ @@ -110026,19 +111752,19 @@ export default { 38 ], "order_by": [ - 400, + 404, "[e_check_in_settings_order_by!]" ], "where": [ - 391 + 395 ] } ], "e_check_in_settings_aggregate": [ - 389, + 393, { "distinct_on": [ - 402, + 406, "[e_check_in_settings_select_column!]" ], "limit": [ @@ -110048,28 +111774,28 @@ export default { 38 ], "order_by": [ - 400, + 404, "[e_check_in_settings_order_by!]" ], "where": [ - 391 + 395 ] } ], "e_check_in_settings_by_pk": [ - 388, + 392, { "value": [ - 70, + 74, "String!" ] } ], "e_draft_game_captain_selection": [ - 408, + 412, { "distinct_on": [ - 423, + 427, "[e_draft_game_captain_selection_select_column!]" ], "limit": [ @@ -110079,19 +111805,19 @@ export default { 38 ], "order_by": [ - 421, + 425, "[e_draft_game_captain_selection_order_by!]" ], "where": [ - 411 + 415 ] } ], "e_draft_game_captain_selection_aggregate": [ - 409, + 413, { "distinct_on": [ - 423, + 427, "[e_draft_game_captain_selection_select_column!]" ], "limit": [ @@ -110101,28 +111827,28 @@ export default { 38 ], "order_by": [ - 421, + 425, "[e_draft_game_captain_selection_order_by!]" ], "where": [ - 411 + 415 ] } ], "e_draft_game_captain_selection_by_pk": [ - 408, + 412, { "value": [ - 70, + 74, "String!" ] } ], "e_draft_game_draft_order": [ - 429, + 433, { "distinct_on": [ - 444, + 448, "[e_draft_game_draft_order_select_column!]" ], "limit": [ @@ -110132,19 +111858,19 @@ export default { 38 ], "order_by": [ - 442, + 446, "[e_draft_game_draft_order_order_by!]" ], "where": [ - 432 + 436 ] } ], "e_draft_game_draft_order_aggregate": [ - 430, + 434, { "distinct_on": [ - 444, + 448, "[e_draft_game_draft_order_select_column!]" ], "limit": [ @@ -110154,28 +111880,28 @@ export default { 38 ], "order_by": [ - 442, + 446, "[e_draft_game_draft_order_order_by!]" ], "where": [ - 432 + 436 ] } ], "e_draft_game_draft_order_by_pk": [ - 429, + 433, { "value": [ - 70, + 74, "String!" ] } ], "e_draft_game_mode": [ - 450, + 454, { "distinct_on": [ - 465, + 469, "[e_draft_game_mode_select_column!]" ], "limit": [ @@ -110185,19 +111911,19 @@ export default { 38 ], "order_by": [ - 463, + 467, "[e_draft_game_mode_order_by!]" ], "where": [ - 453 + 457 ] } ], "e_draft_game_mode_aggregate": [ - 451, + 455, { "distinct_on": [ - 465, + 469, "[e_draft_game_mode_select_column!]" ], "limit": [ @@ -110207,28 +111933,28 @@ export default { 38 ], "order_by": [ - 463, + 467, "[e_draft_game_mode_order_by!]" ], "where": [ - 453 + 457 ] } ], "e_draft_game_mode_by_pk": [ - 450, + 454, { "value": [ - 70, + 74, "String!" ] } ], "e_draft_game_player_status": [ - 471, + 475, { "distinct_on": [ - 486, + 490, "[e_draft_game_player_status_select_column!]" ], "limit": [ @@ -110238,19 +111964,19 @@ export default { 38 ], "order_by": [ - 484, + 488, "[e_draft_game_player_status_order_by!]" ], "where": [ - 474 + 478 ] } ], "e_draft_game_player_status_aggregate": [ - 472, + 476, { "distinct_on": [ - 486, + 490, "[e_draft_game_player_status_select_column!]" ], "limit": [ @@ -110260,28 +111986,28 @@ export default { 38 ], "order_by": [ - 484, + 488, "[e_draft_game_player_status_order_by!]" ], "where": [ - 474 + 478 ] } ], "e_draft_game_player_status_by_pk": [ - 471, + 475, { "value": [ - 70, + 74, "String!" ] } ], "e_draft_game_status": [ - 492, + 496, { "distinct_on": [ - 507, + 511, "[e_draft_game_status_select_column!]" ], "limit": [ @@ -110291,19 +112017,19 @@ export default { 38 ], "order_by": [ - 505, + 509, "[e_draft_game_status_order_by!]" ], "where": [ - 495 + 499 ] } ], "e_draft_game_status_aggregate": [ - 493, + 497, { "distinct_on": [ - 507, + 511, "[e_draft_game_status_select_column!]" ], "limit": [ @@ -110313,28 +112039,28 @@ export default { 38 ], "order_by": [ - 505, + 509, "[e_draft_game_status_order_by!]" ], "where": [ - 495 + 499 ] } ], "e_draft_game_status_by_pk": [ - 492, + 496, { "value": [ - 70, + 74, "String!" ] } ], "e_friend_status": [ - 513, + 517, { "distinct_on": [ - 528, + 532, "[e_friend_status_select_column!]" ], "limit": [ @@ -110344,19 +112070,19 @@ export default { 38 ], "order_by": [ - 526, + 530, "[e_friend_status_order_by!]" ], "where": [ - 516 + 520 ] } ], "e_friend_status_aggregate": [ - 514, + 518, { "distinct_on": [ - 528, + 532, "[e_friend_status_select_column!]" ], "limit": [ @@ -110366,28 +112092,28 @@ export default { 38 ], "order_by": [ - 526, + 530, "[e_friend_status_order_by!]" ], "where": [ - 516 + 520 ] } ], "e_friend_status_by_pk": [ - 513, + 517, { "value": [ - 70, + 74, "String!" ] } ], "e_game_cfg_types": [ - 534, + 538, { "distinct_on": [ - 548, + 552, "[e_game_cfg_types_select_column!]" ], "limit": [ @@ -110397,19 +112123,19 @@ export default { 38 ], "order_by": [ - 546, + 550, "[e_game_cfg_types_order_by!]" ], "where": [ - 537 + 541 ] } ], "e_game_cfg_types_aggregate": [ - 535, + 539, { "distinct_on": [ - 548, + 552, "[e_game_cfg_types_select_column!]" ], "limit": [ @@ -110419,28 +112145,28 @@ export default { 38 ], "order_by": [ - 546, + 550, "[e_game_cfg_types_order_by!]" ], "where": [ - 537 + 541 ] } ], "e_game_cfg_types_by_pk": [ - 534, + 538, { "value": [ - 70, + 74, "String!" ] } ], "e_game_server_node_statuses": [ - 554, + 558, { "distinct_on": [ - 569, + 573, "[e_game_server_node_statuses_select_column!]" ], "limit": [ @@ -110450,19 +112176,19 @@ export default { 38 ], "order_by": [ - 567, + 571, "[e_game_server_node_statuses_order_by!]" ], "where": [ - 557 + 561 ] } ], "e_game_server_node_statuses_aggregate": [ - 555, + 559, { "distinct_on": [ - 569, + 573, "[e_game_server_node_statuses_select_column!]" ], "limit": [ @@ -110472,28 +112198,28 @@ export default { 38 ], "order_by": [ - 567, + 571, "[e_game_server_node_statuses_order_by!]" ], "where": [ - 557 + 561 ] } ], "e_game_server_node_statuses_by_pk": [ - 554, + 558, { "value": [ - 70, + 74, "String!" ] } ], "e_lobby_access": [ - 575, + 579, { "distinct_on": [ - 590, + 594, "[e_lobby_access_select_column!]" ], "limit": [ @@ -110503,19 +112229,19 @@ export default { 38 ], "order_by": [ - 588, + 592, "[e_lobby_access_order_by!]" ], "where": [ - 578 + 582 ] } ], "e_lobby_access_aggregate": [ - 576, + 580, { "distinct_on": [ - 590, + 594, "[e_lobby_access_select_column!]" ], "limit": [ @@ -110525,28 +112251,28 @@ export default { 38 ], "order_by": [ - 588, + 592, "[e_lobby_access_order_by!]" ], "where": [ - 578 + 582 ] } ], "e_lobby_access_by_pk": [ - 575, + 579, { "value": [ - 70, + 74, "String!" ] } ], "e_lobby_player_status": [ - 596, + 600, { "distinct_on": [ - 610, + 614, "[e_lobby_player_status_select_column!]" ], "limit": [ @@ -110556,19 +112282,19 @@ export default { 38 ], "order_by": [ - 608, + 612, "[e_lobby_player_status_order_by!]" ], "where": [ - 599 + 603 ] } ], "e_lobby_player_status_aggregate": [ - 597, + 601, { "distinct_on": [ - 610, + 614, "[e_lobby_player_status_select_column!]" ], "limit": [ @@ -110578,28 +112304,28 @@ export default { 38 ], "order_by": [ - 608, + 612, "[e_lobby_player_status_order_by!]" ], "where": [ - 599 + 603 ] } ], "e_lobby_player_status_by_pk": [ - 596, + 600, { "value": [ - 70, + 74, "String!" ] } ], "e_map_pool_types": [ - 616, + 620, { "distinct_on": [ - 631, + 635, "[e_map_pool_types_select_column!]" ], "limit": [ @@ -110609,19 +112335,19 @@ export default { 38 ], "order_by": [ - 629, + 633, "[e_map_pool_types_order_by!]" ], "where": [ - 619 + 623 ] } ], "e_map_pool_types_aggregate": [ - 617, + 621, { "distinct_on": [ - 631, + 635, "[e_map_pool_types_select_column!]" ], "limit": [ @@ -110631,28 +112357,28 @@ export default { 38 ], "order_by": [ - 629, + 633, "[e_map_pool_types_order_by!]" ], "where": [ - 619 + 623 ] } ], "e_map_pool_types_by_pk": [ - 616, + 620, { "value": [ - 70, + 74, "String!" ] } ], "e_match_clip_visibility": [ - 637, + 641, { "distinct_on": [ - 651, + 655, "[e_match_clip_visibility_select_column!]" ], "limit": [ @@ -110662,19 +112388,19 @@ export default { 38 ], "order_by": [ - 649, + 653, "[e_match_clip_visibility_order_by!]" ], "where": [ - 640 + 644 ] } ], "e_match_clip_visibility_aggregate": [ - 638, + 642, { "distinct_on": [ - 651, + 655, "[e_match_clip_visibility_select_column!]" ], "limit": [ @@ -110684,28 +112410,28 @@ export default { 38 ], "order_by": [ - 649, + 653, "[e_match_clip_visibility_order_by!]" ], "where": [ - 640 + 644 ] } ], "e_match_clip_visibility_by_pk": [ - 637, + 641, { "value": [ - 70, + 74, "String!" ] } ], "e_match_map_status": [ - 657, + 661, { "distinct_on": [ - 672, + 676, "[e_match_map_status_select_column!]" ], "limit": [ @@ -110715,19 +112441,19 @@ export default { 38 ], "order_by": [ - 670, + 674, "[e_match_map_status_order_by!]" ], "where": [ - 660 + 664 ] } ], "e_match_map_status_aggregate": [ - 658, + 662, { "distinct_on": [ - 672, + 676, "[e_match_map_status_select_column!]" ], "limit": [ @@ -110737,28 +112463,28 @@ export default { 38 ], "order_by": [ - 670, + 674, "[e_match_map_status_order_by!]" ], "where": [ - 660 + 664 ] } ], "e_match_map_status_by_pk": [ - 657, + 661, { "value": [ - 70, + 74, "String!" ] } ], "e_match_mode": [ - 678, + 682, { "distinct_on": [ - 692, + 696, "[e_match_mode_select_column!]" ], "limit": [ @@ -110768,19 +112494,19 @@ export default { 38 ], "order_by": [ - 690, + 694, "[e_match_mode_order_by!]" ], "where": [ - 681 + 685 ] } ], "e_match_mode_aggregate": [ - 679, + 683, { "distinct_on": [ - 692, + 696, "[e_match_mode_select_column!]" ], "limit": [ @@ -110790,28 +112516,28 @@ export default { 38 ], "order_by": [ - 690, + 694, "[e_match_mode_order_by!]" ], "where": [ - 681 + 685 ] } ], "e_match_mode_by_pk": [ - 678, + 682, { "value": [ - 70, + 74, "String!" ] } ], "e_match_status": [ - 698, + 702, { "distinct_on": [ - 713, + 717, "[e_match_status_select_column!]" ], "limit": [ @@ -110821,19 +112547,19 @@ export default { 38 ], "order_by": [ - 711, + 715, "[e_match_status_order_by!]" ], "where": [ - 701 + 705 ] } ], "e_match_status_aggregate": [ - 699, + 703, { "distinct_on": [ - 713, + 717, "[e_match_status_select_column!]" ], "limit": [ @@ -110843,28 +112569,28 @@ export default { 38 ], "order_by": [ - 711, + 715, "[e_match_status_order_by!]" ], "where": [ - 701 + 705 ] } ], "e_match_status_by_pk": [ - 698, + 702, { "value": [ - 70, + 74, "String!" ] } ], "e_match_types": [ - 719, + 723, { "distinct_on": [ - 734, + 738, "[e_match_types_select_column!]" ], "limit": [ @@ -110874,19 +112600,19 @@ export default { 38 ], "order_by": [ - 732, + 736, "[e_match_types_order_by!]" ], "where": [ - 722 + 726 ] } ], "e_match_types_aggregate": [ - 720, + 724, { "distinct_on": [ - 734, + 738, "[e_match_types_select_column!]" ], "limit": [ @@ -110896,28 +112622,28 @@ export default { 38 ], "order_by": [ - 732, + 736, "[e_match_types_order_by!]" ], "where": [ - 722 + 726 ] } ], "e_match_types_by_pk": [ - 719, + 723, { "value": [ - 70, + 74, "String!" ] } ], "e_notification_types": [ - 740, + 744, { "distinct_on": [ - 754, + 758, "[e_notification_types_select_column!]" ], "limit": [ @@ -110927,19 +112653,19 @@ export default { 38 ], "order_by": [ - 752, + 756, "[e_notification_types_order_by!]" ], "where": [ - 743 + 747 ] } ], "e_notification_types_aggregate": [ - 741, + 745, { "distinct_on": [ - 754, + 758, "[e_notification_types_select_column!]" ], "limit": [ @@ -110949,28 +112675,28 @@ export default { 38 ], "order_by": [ - 752, + 756, "[e_notification_types_order_by!]" ], "where": [ - 743 + 747 ] } ], "e_notification_types_by_pk": [ - 740, + 744, { "value": [ - 70, + 74, "String!" ] } ], "e_objective_types": [ - 760, + 764, { "distinct_on": [ - 774, + 778, "[e_objective_types_select_column!]" ], "limit": [ @@ -110980,19 +112706,19 @@ export default { 38 ], "order_by": [ - 772, + 776, "[e_objective_types_order_by!]" ], "where": [ - 763 + 767 ] } ], "e_objective_types_aggregate": [ - 761, + 765, { "distinct_on": [ - 774, + 778, "[e_objective_types_select_column!]" ], "limit": [ @@ -111002,28 +112728,28 @@ export default { 38 ], "order_by": [ - 772, + 776, "[e_objective_types_order_by!]" ], "where": [ - 763 + 767 ] } ], "e_objective_types_by_pk": [ - 760, + 764, { "value": [ - 70, + 74, "String!" ] } ], "e_player_roles": [ - 780, + 784, { "distinct_on": [ - 794, + 798, "[e_player_roles_select_column!]" ], "limit": [ @@ -111033,19 +112759,19 @@ export default { 38 ], "order_by": [ - 792, + 796, "[e_player_roles_order_by!]" ], "where": [ - 783 + 787 ] } ], "e_player_roles_aggregate": [ - 781, + 785, { "distinct_on": [ - 794, + 798, "[e_player_roles_select_column!]" ], "limit": [ @@ -111055,28 +112781,28 @@ export default { 38 ], "order_by": [ - 792, + 796, "[e_player_roles_order_by!]" ], "where": [ - 783 + 787 ] } ], "e_player_roles_by_pk": [ - 780, + 784, { "value": [ - 70, + 74, "String!" ] } ], "e_ready_settings": [ - 800, + 804, { "distinct_on": [ - 814, + 818, "[e_ready_settings_select_column!]" ], "limit": [ @@ -111086,19 +112812,19 @@ export default { 38 ], "order_by": [ - 812, + 816, "[e_ready_settings_order_by!]" ], "where": [ - 803 + 807 ] } ], "e_ready_settings_aggregate": [ - 801, + 805, { "distinct_on": [ - 814, + 818, "[e_ready_settings_select_column!]" ], "limit": [ @@ -111108,28 +112834,28 @@ export default { 38 ], "order_by": [ - 812, + 816, "[e_ready_settings_order_by!]" ], "where": [ - 803 + 807 ] } ], "e_ready_settings_by_pk": [ - 800, + 804, { "value": [ - 70, + 74, "String!" ] } ], "e_sanction_types": [ - 820, + 824, { "distinct_on": [ - 835, + 839, "[e_sanction_types_select_column!]" ], "limit": [ @@ -111139,19 +112865,19 @@ export default { 38 ], "order_by": [ - 833, + 837, "[e_sanction_types_order_by!]" ], "where": [ - 823 + 827 ] } ], "e_sanction_types_aggregate": [ - 821, + 825, { "distinct_on": [ - 835, + 839, "[e_sanction_types_select_column!]" ], "limit": [ @@ -111161,28 +112887,28 @@ export default { 38 ], "order_by": [ - 833, + 837, "[e_sanction_types_order_by!]" ], "where": [ - 823 + 827 ] } ], "e_sanction_types_by_pk": [ - 820, + 824, { "value": [ - 70, + 74, "String!" ] } ], "e_scrim_request_statuses": [ - 841, + 845, { "distinct_on": [ - 855, + 859, "[e_scrim_request_statuses_select_column!]" ], "limit": [ @@ -111192,19 +112918,19 @@ export default { 38 ], "order_by": [ - 853, + 857, "[e_scrim_request_statuses_order_by!]" ], "where": [ - 844 + 848 ] } ], "e_scrim_request_statuses_aggregate": [ - 842, + 846, { "distinct_on": [ - 855, + 859, "[e_scrim_request_statuses_select_column!]" ], "limit": [ @@ -111214,28 +112940,28 @@ export default { 38 ], "order_by": [ - 853, + 857, "[e_scrim_request_statuses_order_by!]" ], "where": [ - 844 + 848 ] } ], "e_scrim_request_statuses_by_pk": [ - 841, + 845, { "value": [ - 70, + 74, "String!" ] } ], "e_server_types": [ - 861, + 865, { "distinct_on": [ - 875, + 879, "[e_server_types_select_column!]" ], "limit": [ @@ -111245,19 +112971,19 @@ export default { 38 ], "order_by": [ - 873, + 877, "[e_server_types_order_by!]" ], "where": [ - 864 + 868 ] } ], "e_server_types_aggregate": [ - 862, + 866, { "distinct_on": [ - 875, + 879, "[e_server_types_select_column!]" ], "limit": [ @@ -111267,28 +112993,28 @@ export default { 38 ], "order_by": [ - 873, + 877, "[e_server_types_order_by!]" ], "where": [ - 864 + 868 ] } ], "e_server_types_by_pk": [ - 861, + 865, { "value": [ - 70, + 74, "String!" ] } ], "e_sides": [ - 881, + 885, { "distinct_on": [ - 895, + 899, "[e_sides_select_column!]" ], "limit": [ @@ -111298,19 +113024,19 @@ export default { 38 ], "order_by": [ - 893, + 897, "[e_sides_order_by!]" ], "where": [ - 884 + 888 ] } ], "e_sides_aggregate": [ - 882, + 886, { "distinct_on": [ - 895, + 899, "[e_sides_select_column!]" ], "limit": [ @@ -111320,28 +113046,28 @@ export default { 38 ], "order_by": [ - 893, + 897, "[e_sides_order_by!]" ], "where": [ - 884 + 888 ] } ], "e_sides_by_pk": [ - 881, + 885, { "value": [ - 70, + 74, "String!" ] } ], "e_system_alert_types": [ - 901, + 905, { "distinct_on": [ - 915, + 919, "[e_system_alert_types_select_column!]" ], "limit": [ @@ -111351,19 +113077,19 @@ export default { 38 ], "order_by": [ - 913, + 917, "[e_system_alert_types_order_by!]" ], "where": [ - 904 + 908 ] } ], "e_system_alert_types_aggregate": [ - 902, + 906, { "distinct_on": [ - 915, + 919, "[e_system_alert_types_select_column!]" ], "limit": [ @@ -111373,28 +113099,28 @@ export default { 38 ], "order_by": [ - 913, + 917, "[e_system_alert_types_order_by!]" ], "where": [ - 904 + 908 ] } ], "e_system_alert_types_by_pk": [ - 901, + 905, { "value": [ - 70, + 74, "String!" ] } ], "e_team_roles": [ - 921, + 925, { "distinct_on": [ - 936, + 940, "[e_team_roles_select_column!]" ], "limit": [ @@ -111404,19 +113130,19 @@ export default { 38 ], "order_by": [ - 934, + 938, "[e_team_roles_order_by!]" ], "where": [ - 924 + 928 ] } ], "e_team_roles_aggregate": [ - 922, + 926, { "distinct_on": [ - 936, + 940, "[e_team_roles_select_column!]" ], "limit": [ @@ -111426,28 +113152,28 @@ export default { 38 ], "order_by": [ - 934, + 938, "[e_team_roles_order_by!]" ], "where": [ - 924 + 928 ] } ], "e_team_roles_by_pk": [ - 921, + 925, { "value": [ - 70, + 74, "String!" ] } ], "e_team_roster_statuses": [ - 942, + 946, { "distinct_on": [ - 956, + 960, "[e_team_roster_statuses_select_column!]" ], "limit": [ @@ -111457,19 +113183,19 @@ export default { 38 ], "order_by": [ - 954, + 958, "[e_team_roster_statuses_order_by!]" ], "where": [ - 945 + 949 ] } ], "e_team_roster_statuses_aggregate": [ - 943, + 947, { "distinct_on": [ - 956, + 960, "[e_team_roster_statuses_select_column!]" ], "limit": [ @@ -111479,28 +113205,28 @@ export default { 38 ], "order_by": [ - 954, + 958, "[e_team_roster_statuses_order_by!]" ], "where": [ - 945 + 949 ] } ], "e_team_roster_statuses_by_pk": [ - 942, + 946, { "value": [ - 70, + 74, "String!" ] } ], "e_timeout_settings": [ - 962, + 966, { "distinct_on": [ - 976, + 980, "[e_timeout_settings_select_column!]" ], "limit": [ @@ -111510,19 +113236,19 @@ export default { 38 ], "order_by": [ - 974, + 978, "[e_timeout_settings_order_by!]" ], "where": [ - 965 + 969 ] } ], "e_timeout_settings_aggregate": [ - 963, + 967, { "distinct_on": [ - 976, + 980, "[e_timeout_settings_select_column!]" ], "limit": [ @@ -111532,28 +113258,28 @@ export default { 38 ], "order_by": [ - 974, + 978, "[e_timeout_settings_order_by!]" ], "where": [ - 965 + 969 ] } ], "e_timeout_settings_by_pk": [ - 962, + 966, { "value": [ - 70, + 74, "String!" ] } ], "e_tournament_stage_types": [ - 982, + 986, { "distinct_on": [ - 997, + 1001, "[e_tournament_stage_types_select_column!]" ], "limit": [ @@ -111563,19 +113289,19 @@ export default { 38 ], "order_by": [ - 995, + 999, "[e_tournament_stage_types_order_by!]" ], "where": [ - 985 + 989 ] } ], "e_tournament_stage_types_aggregate": [ - 983, + 987, { "distinct_on": [ - 997, + 1001, "[e_tournament_stage_types_select_column!]" ], "limit": [ @@ -111585,28 +113311,28 @@ export default { 38 ], "order_by": [ - 995, + 999, "[e_tournament_stage_types_order_by!]" ], "where": [ - 985 + 989 ] } ], "e_tournament_stage_types_by_pk": [ - 982, + 986, { "value": [ - 70, + 74, "String!" ] } ], "e_tournament_status": [ - 1003, + 1007, { "distinct_on": [ - 1018, + 1022, "[e_tournament_status_select_column!]" ], "limit": [ @@ -111616,19 +113342,19 @@ export default { 38 ], "order_by": [ - 1016, + 1020, "[e_tournament_status_order_by!]" ], "where": [ - 1006 + 1010 ] } ], "e_tournament_status_aggregate": [ - 1004, + 1008, { "distinct_on": [ - 1018, + 1022, "[e_tournament_status_select_column!]" ], "limit": [ @@ -111638,28 +113364,28 @@ export default { 38 ], "order_by": [ - 1016, + 1020, "[e_tournament_status_order_by!]" ], "where": [ - 1006 + 1010 ] } ], "e_tournament_status_by_pk": [ - 1003, + 1007, { "value": [ - 70, + 74, "String!" ] } ], "e_utility_types": [ - 1024, + 1028, { "distinct_on": [ - 1038, + 1042, "[e_utility_types_select_column!]" ], "limit": [ @@ -111669,19 +113395,19 @@ export default { 38 ], "order_by": [ - 1036, + 1040, "[e_utility_types_order_by!]" ], "where": [ - 1027 + 1031 ] } ], "e_utility_types_aggregate": [ - 1025, + 1029, { "distinct_on": [ - 1038, + 1042, "[e_utility_types_select_column!]" ], "limit": [ @@ -111691,28 +113417,28 @@ export default { 38 ], "order_by": [ - 1036, + 1040, "[e_utility_types_order_by!]" ], "where": [ - 1027 + 1031 ] } ], "e_utility_types_by_pk": [ - 1024, + 1028, { "value": [ - 70, + 74, "String!" ] } ], "e_veto_pick_types": [ - 1044, + 1048, { "distinct_on": [ - 1058, + 1062, "[e_veto_pick_types_select_column!]" ], "limit": [ @@ -111722,19 +113448,19 @@ export default { 38 ], "order_by": [ - 1056, + 1060, "[e_veto_pick_types_order_by!]" ], "where": [ - 1047 + 1051 ] } ], "e_veto_pick_types_aggregate": [ - 1045, + 1049, { "distinct_on": [ - 1058, + 1062, "[e_veto_pick_types_select_column!]" ], "limit": [ @@ -111744,28 +113470,28 @@ export default { 38 ], "order_by": [ - 1056, + 1060, "[e_veto_pick_types_order_by!]" ], "where": [ - 1047 + 1051 ] } ], "e_veto_pick_types_by_pk": [ - 1044, + 1048, { "value": [ - 70, + 74, "String!" ] } ], "e_winning_reasons": [ - 1064, + 1068, { "distinct_on": [ - 1078, + 1082, "[e_winning_reasons_select_column!]" ], "limit": [ @@ -111775,19 +113501,19 @@ export default { 38 ], "order_by": [ - 1076, + 1080, "[e_winning_reasons_order_by!]" ], "where": [ - 1067 + 1071 ] } ], "e_winning_reasons_aggregate": [ - 1065, + 1069, { "distinct_on": [ - 1078, + 1082, "[e_winning_reasons_select_column!]" ], "limit": [ @@ -111797,28 +113523,28 @@ export default { 38 ], "order_by": [ - 1076, + 1080, "[e_winning_reasons_order_by!]" ], "where": [ - 1067 + 1071 ] } ], "e_winning_reasons_by_pk": [ - 1064, + 1068, { "value": [ - 70, + 74, "String!" ] } ], "friends": [ - 1086, + 1090, { "distinct_on": [ - 1100, + 1104, "[friends_select_column!]" ], "limit": [ @@ -111828,19 +113554,19 @@ export default { 38 ], "order_by": [ - 1098, + 1102, "[friends_order_by!]" ], "where": [ - 1090 + 1094 ] } ], "friends_aggregate": [ - 1087, + 1091, { "distinct_on": [ - 1100, + 1104, "[friends_select_column!]" ], "limit": [ @@ -111850,32 +113576,32 @@ export default { 38 ], "order_by": [ - 1098, + 1102, "[friends_order_by!]" ], "where": [ - 1090 + 1094 ] } ], "friends_by_pk": [ - 1086, + 1090, { "other_player_steam_id": [ - 169, + 173, "bigint!" ], "player_steam_id": [ - 169, + 173, "bigint!" ] } ], "game_server_nodes": [ - 1113, + 1117, { "distinct_on": [ - 1142, + 1146, "[game_server_nodes_select_column!]" ], "limit": [ @@ -111885,19 +113611,19 @@ export default { 38 ], "order_by": [ - 1139, + 1143, "[game_server_nodes_order_by!]" ], "where": [ - 1125 + 1129 ] } ], "game_server_nodes_aggregate": [ - 1114, + 1118, { "distinct_on": [ - 1142, + 1146, "[game_server_nodes_select_column!]" ], "limit": [ @@ -111907,28 +113633,28 @@ export default { 38 ], "order_by": [ - 1139, + 1143, "[game_server_nodes_order_by!]" ], "where": [ - 1125 + 1129 ] } ], "game_server_nodes_by_pk": [ - 1113, + 1117, { "id": [ - 70, + 74, "String!" ] } ], "game_versions": [ - 1164, + 1168, { "distinct_on": [ - 1184, + 1188, "[game_versions_select_column!]" ], "limit": [ @@ -111938,19 +113664,19 @@ export default { 38 ], "order_by": [ - 1181, + 1185, "[game_versions_order_by!]" ], "where": [ - 1169 + 1173 ] } ], "game_versions_aggregate": [ - 1165, + 1169, { "distinct_on": [ - 1184, + 1188, "[game_versions_select_column!]" ], "limit": [ @@ -111960,16 +113686,16 @@ export default { 38 ], "order_by": [ - 1181, + 1185, "[game_versions_order_by!]" ], "where": [ - 1169 + 1173 ] } ], "game_versions_by_pk": [ - 1164, + 1168, { "build_id": [ 38, @@ -111978,10 +113704,10 @@ export default { } ], "gamedata_signature_validations": [ - 1197, + 1201, { "distinct_on": [ - 1216, + 1220, "[gamedata_signature_validations_select_column!]" ], "limit": [ @@ -111991,19 +113717,19 @@ export default { 38 ], "order_by": [ - 1213, + 1217, "[gamedata_signature_validations_order_by!]" ], "where": [ - 1202 + 1206 ] } ], "gamedata_signature_validations_aggregate": [ - 1198, + 1202, { "distinct_on": [ - 1216, + 1220, "[gamedata_signature_validations_select_column!]" ], "limit": [ @@ -112013,19 +113739,19 @@ export default { 38 ], "order_by": [ - 1213, + 1217, "[gamedata_signature_validations_order_by!]" ], "where": [ - 1202 + 1206 ] } ], "gamedata_signature_validations_by_pk": [ - 1197, + 1201, { "id": [ - 3818, + 3863, "uuid!" ] } @@ -112052,7 +113778,7 @@ export default { 64, { "serverId": [ - 70, + 74, "String!" ] } @@ -112061,11 +113787,11 @@ export default { 34, { "match_map_id": [ - 3818, + 3863, "uuid!" ], "target_steam_id": [ - 70, + 74, "String!" ] } @@ -112074,7 +113800,7 @@ export default { 36, { "schemas": [ - 70, + 74, "[String!]" ] } @@ -112083,7 +113809,7 @@ export default { 37, { "schemas": [ - 70, + 74, "[String!]" ] } @@ -112092,7 +113818,7 @@ export default { 50, { "node": [ - 70, + 74, "String!" ] } @@ -112101,7 +113827,7 @@ export default { 56, { "queryid": [ - 70, + 74, "String!" ] } @@ -112110,50 +113836,50 @@ export default { 57 ], "getSchemas": [ - 70 + 74 ], "getServiceStats": [ 54 ], "getStorageStats": [ - 68, + 72, { "schemas": [ - 70, + 74, "[String!]" ] } ], "getTableIOStats": [ - 74, + 78, { "schemas": [ - 70, + 74, "[String!]" ] } ], "getTableStats": [ - 76, + 80, { "schemas": [ - 70, + 74, "[String!]" ] } ], "getTimescaleStats": [ - 80 + 84 ], "get_leaderboard": [ - 1238, + 1242, { "args": [ - 1229, + 1233, "get_leaderboard_args!" ], "distinct_on": [ - 1249, + 1253, "[leaderboard_entries_select_column!]" ], "limit": [ @@ -112163,23 +113889,23 @@ export default { 38 ], "order_by": [ - 1248, + 1252, "[leaderboard_entries_order_by!]" ], "where": [ - 1242 + 1246 ] } ], "get_leaderboard_aggregate": [ - 1239, + 1243, { "args": [ - 1229, + 1233, "get_leaderboard_args!" ], "distinct_on": [ - 1249, + 1253, "[leaderboard_entries_select_column!]" ], "limit": [ @@ -112189,23 +113915,23 @@ export default { 38 ], "order_by": [ - 1248, + 1252, "[leaderboard_entries_order_by!]" ], "where": [ - 1242 + 1246 ] } ], "get_player_leaderboard_rank": [ - 2452, + 2456, { "args": [ - 1230, + 1234, "get_player_leaderboard_rank_args!" ], "distinct_on": [ - 2463, + 2467, "[player_leaderboard_rank_select_column!]" ], "limit": [ @@ -112215,23 +113941,23 @@ export default { 38 ], "order_by": [ - 2462, + 2466, "[player_leaderboard_rank_order_by!]" ], "where": [ - 2456 + 2460 ] } ], "get_player_leaderboard_rank_aggregate": [ - 2453, + 2457, { "args": [ - 1230, + 1234, "get_player_leaderboard_rank_args!" ], "distinct_on": [ - 2463, + 2467, "[player_leaderboard_rank_select_column!]" ], "limit": [ @@ -112241,19 +113967,19 @@ export default { 38 ], "order_by": [ - 2462, + 2466, "[player_leaderboard_rank_order_by!]" ], "where": [ - 2456 + 2460 ] } ], "leaderboard_entries": [ - 1238, + 1242, { "distinct_on": [ - 1249, + 1253, "[leaderboard_entries_select_column!]" ], "limit": [ @@ -112263,19 +113989,19 @@ export default { 38 ], "order_by": [ - 1248, + 1252, "[leaderboard_entries_order_by!]" ], "where": [ - 1242 + 1246 ] } ], "leaderboard_entries_aggregate": [ - 1239, + 1243, { "distinct_on": [ - 1249, + 1253, "[leaderboard_entries_select_column!]" ], "limit": [ @@ -112285,11 +114011,11 @@ export default { 38 ], "order_by": [ - 1248, + 1252, "[leaderboard_entries_order_by!]" ], "where": [ - 1242 + 1246 ] } ], @@ -112297,22 +114023,22 @@ export default { 28, { "node_id": [ - 70, + 74, "String!" ], "path": [ - 70 + 74 ], "server_id": [ - 70 + 74 ] } ], "lobbies": [ - 1261, + 1265, { "distinct_on": [ - 1274, + 1278, "[lobbies_select_column!]" ], "limit": [ @@ -112322,19 +114048,19 @@ export default { 38 ], "order_by": [ - 1272, + 1276, "[lobbies_order_by!]" ], "where": [ - 1264 + 1268 ] } ], "lobbies_aggregate": [ - 1262, + 1266, { "distinct_on": [ - 1274, + 1278, "[lobbies_select_column!]" ], "limit": [ @@ -112344,28 +114070,28 @@ export default { 38 ], "order_by": [ - 1272, + 1276, "[lobbies_order_by!]" ], "where": [ - 1264 + 1268 ] } ], "lobbies_by_pk": [ - 1261, + 1265, { "id": [ - 3818, + 3863, "uuid!" ] } ], "lobby_players": [ - 1280, + 1284, { "distinct_on": [ - 1303, + 1307, "[lobby_players_select_column!]" ], "limit": [ @@ -112375,19 +114101,19 @@ export default { 38 ], "order_by": [ - 1301, + 1305, "[lobby_players_order_by!]" ], "where": [ - 1291 + 1295 ] } ], "lobby_players_aggregate": [ - 1281, + 1285, { "distinct_on": [ - 1303, + 1307, "[lobby_players_select_column!]" ], "limit": [ @@ -112397,32 +114123,32 @@ export default { 38 ], "order_by": [ - 1301, + 1305, "[lobby_players_order_by!]" ], "where": [ - 1291 + 1295 ] } ], "lobby_players_by_pk": [ - 1280, + 1284, { "lobby_id": [ - 3818, + 3863, "uuid!" ], "steam_id": [ - 169, + 173, "bigint!" ] } ], "map_pools": [ - 1325, + 1329, { "distinct_on": [ - 1338, + 1342, "[map_pools_select_column!]" ], "limit": [ @@ -112432,19 +114158,19 @@ export default { 38 ], "order_by": [ - 1336, + 1340, "[map_pools_order_by!]" ], "where": [ - 1328 + 1332 ] } ], "map_pools_aggregate": [ - 1326, + 1330, { "distinct_on": [ - 1338, + 1342, "[map_pools_select_column!]" ], "limit": [ @@ -112454,28 +114180,28 @@ export default { 38 ], "order_by": [ - 1336, + 1340, "[map_pools_order_by!]" ], "where": [ - 1328 + 1332 ] } ], "map_pools_by_pk": [ - 1325, + 1329, { "id": [ - 3818, + 3863, "uuid!" ] } ], "maps": [ - 1344, + 1348, { "distinct_on": [ - 1365, + 1369, "[maps_select_column!]" ], "limit": [ @@ -112485,19 +114211,19 @@ export default { 38 ], "order_by": [ - 1363, + 1367, "[maps_order_by!]" ], "where": [ - 1353 + 1357 ] } ], "maps_aggregate": [ - 1345, + 1349, { "distinct_on": [ - 1365, + 1369, "[maps_select_column!]" ], "limit": [ @@ -112507,28 +114233,28 @@ export default { 38 ], "order_by": [ - 1363, + 1367, "[maps_order_by!]" ], "where": [ - 1353 + 1357 ] } ], "maps_by_pk": [ - 1344, + 1348, { "id": [ - 3818, + 3863, "uuid!" ] } ], "match_clips": [ - 1373, + 1377, { "distinct_on": [ - 1395, + 1399, "[match_clips_select_column!]" ], "limit": [ @@ -112538,19 +114264,19 @@ export default { 38 ], "order_by": [ - 1393, + 1397, "[match_clips_order_by!]" ], "where": [ - 1382 + 1386 ] } ], "match_clips_aggregate": [ - 1374, + 1378, { "distinct_on": [ - 1395, + 1399, "[match_clips_select_column!]" ], "limit": [ @@ -112560,28 +114286,28 @@ export default { 38 ], "order_by": [ - 1393, + 1397, "[match_clips_order_by!]" ], "where": [ - 1382 + 1386 ] } ], "match_clips_by_pk": [ - 1373, + 1377, { "id": [ - 3818, + 3863, "uuid!" ] } ], "match_demo_sessions": [ - 1415, + 1419, { "distinct_on": [ - 1441, + 1445, "[match_demo_sessions_select_column!]" ], "limit": [ @@ -112591,19 +114317,19 @@ export default { 38 ], "order_by": [ - 1438, + 1442, "[match_demo_sessions_order_by!]" ], "where": [ - 1425 + 1429 ] } ], "match_demo_sessions_aggregate": [ - 1416, + 1420, { "distinct_on": [ - 1441, + 1445, "[match_demo_sessions_select_column!]" ], "limit": [ @@ -112613,28 +114339,28 @@ export default { 38 ], "order_by": [ - 1438, + 1442, "[match_demo_sessions_order_by!]" ], "where": [ - 1425 + 1429 ] } ], "match_demo_sessions_by_pk": [ - 1415, + 1419, { "id": [ - 3818, + 3863, "uuid!" ] } ], "match_lineup_players": [ - 1461, + 1465, { "distinct_on": [ - 1484, + 1488, "[match_lineup_players_select_column!]" ], "limit": [ @@ -112644,19 +114370,19 @@ export default { 38 ], "order_by": [ - 1482, + 1486, "[match_lineup_players_order_by!]" ], "where": [ - 1472 + 1476 ] } ], "match_lineup_players_aggregate": [ - 1462, + 1466, { "distinct_on": [ - 1484, + 1488, "[match_lineup_players_select_column!]" ], "limit": [ @@ -112666,28 +114392,28 @@ export default { 38 ], "order_by": [ - 1482, + 1486, "[match_lineup_players_order_by!]" ], "where": [ - 1472 + 1476 ] } ], "match_lineup_players_by_pk": [ - 1461, + 1465, { "id": [ - 3818, + 3863, "uuid!" ] } ], "match_lineups": [ - 1506, + 1510, { "distinct_on": [ - 1528, + 1532, "[match_lineups_select_column!]" ], "limit": [ @@ -112697,19 +114423,19 @@ export default { 38 ], "order_by": [ - 1526, + 1530, "[match_lineups_order_by!]" ], "where": [ - 1515 + 1519 ] } ], "match_lineups_aggregate": [ - 1507, + 1511, { "distinct_on": [ - 1528, + 1532, "[match_lineups_select_column!]" ], "limit": [ @@ -112719,28 +114445,28 @@ export default { 38 ], "order_by": [ - 1526, + 1530, "[match_lineups_order_by!]" ], "where": [ - 1515 + 1519 ] } ], "match_lineups_by_pk": [ - 1506, + 1510, { "id": [ - 3818, + 3863, "uuid!" ] } ], "match_map_demos": [ - 1548, + 1552, { "distinct_on": [ - 1577, + 1581, "[match_map_demos_select_column!]" ], "limit": [ @@ -112750,19 +114476,19 @@ export default { 38 ], "order_by": [ - 1574, + 1578, "[match_map_demos_order_by!]" ], "where": [ - 1560 + 1564 ] } ], "match_map_demos_aggregate": [ - 1549, + 1553, { "distinct_on": [ - 1577, + 1581, "[match_map_demos_select_column!]" ], "limit": [ @@ -112772,28 +114498,28 @@ export default { 38 ], "order_by": [ - 1574, + 1578, "[match_map_demos_order_by!]" ], "where": [ - 1560 + 1564 ] } ], "match_map_demos_by_pk": [ - 1548, + 1552, { "id": [ - 3818, + 3863, "uuid!" ] } ], "match_map_rounds": [ - 1599, + 1603, { "distinct_on": [ - 1620, + 1624, "[match_map_rounds_select_column!]" ], "limit": [ @@ -112803,19 +114529,19 @@ export default { 38 ], "order_by": [ - 1618, + 1622, "[match_map_rounds_order_by!]" ], "where": [ - 1608 + 1612 ] } ], "match_map_rounds_aggregate": [ - 1600, + 1604, { "distinct_on": [ - 1620, + 1624, "[match_map_rounds_select_column!]" ], "limit": [ @@ -112825,28 +114551,28 @@ export default { 38 ], "order_by": [ - 1618, + 1622, "[match_map_rounds_order_by!]" ], "where": [ - 1608 + 1612 ] } ], "match_map_rounds_by_pk": [ - 1599, + 1603, { "id": [ - 3818, + 3863, "uuid!" ] } ], "match_map_veto_picks": [ - 1640, + 1644, { "distinct_on": [ - 1658, + 1662, "[match_map_veto_picks_select_column!]" ], "limit": [ @@ -112856,19 +114582,19 @@ export default { 38 ], "order_by": [ - 1656, + 1660, "[match_map_veto_picks_order_by!]" ], "where": [ - 1647 + 1651 ] } ], "match_map_veto_picks_aggregate": [ - 1641, + 1645, { "distinct_on": [ - 1658, + 1662, "[match_map_veto_picks_select_column!]" ], "limit": [ @@ -112878,28 +114604,28 @@ export default { 38 ], "order_by": [ - 1656, + 1660, "[match_map_veto_picks_order_by!]" ], "where": [ - 1647 + 1651 ] } ], "match_map_veto_picks_by_pk": [ - 1640, + 1644, { "id": [ - 3818, + 3863, "uuid!" ] } ], "match_maps": [ - 1664, + 1668, { "distinct_on": [ - 1686, + 1690, "[match_maps_select_column!]" ], "limit": [ @@ -112909,19 +114635,19 @@ export default { 38 ], "order_by": [ - 1684, + 1688, "[match_maps_order_by!]" ], "where": [ - 1673 + 1677 ] } ], "match_maps_aggregate": [ - 1665, + 1669, { "distinct_on": [ - 1686, + 1690, "[match_maps_select_column!]" ], "limit": [ @@ -112931,28 +114657,28 @@ export default { 38 ], "order_by": [ - 1684, + 1688, "[match_maps_order_by!]" ], "where": [ - 1673 + 1677 ] } ], "match_maps_by_pk": [ - 1664, + 1668, { "id": [ - 3818, + 3863, "uuid!" ] } ], "match_options": [ - 1706, + 1710, { "distinct_on": [ - 1721, + 1725, "[match_options_select_column!]" ], "limit": [ @@ -112962,19 +114688,19 @@ export default { 38 ], "order_by": [ - 1719, + 1723, "[match_options_order_by!]" ], "where": [ - 1710 + 1714 ] } ], "match_options_aggregate": [ - 1707, + 1711, { "distinct_on": [ - 1721, + 1725, "[match_options_select_column!]" ], "limit": [ @@ -112984,28 +114710,28 @@ export default { 38 ], "order_by": [ - 1719, + 1723, "[match_options_order_by!]" ], "where": [ - 1710 + 1714 ] } ], "match_options_by_pk": [ - 1706, + 1710, { "id": [ - 3818, + 3863, "uuid!" ] } ], "match_region_veto_picks": [ - 1734, + 1738, { "distinct_on": [ - 1752, + 1756, "[match_region_veto_picks_select_column!]" ], "limit": [ @@ -113015,19 +114741,19 @@ export default { 38 ], "order_by": [ - 1750, + 1754, "[match_region_veto_picks_order_by!]" ], "where": [ - 1741 + 1745 ] } ], "match_region_veto_picks_aggregate": [ - 1735, + 1739, { "distinct_on": [ - 1752, + 1756, "[match_region_veto_picks_select_column!]" ], "limit": [ @@ -113037,28 +114763,28 @@ export default { 38 ], "order_by": [ - 1750, + 1754, "[match_region_veto_picks_order_by!]" ], "where": [ - 1741 + 1745 ] } ], "match_region_veto_picks_by_pk": [ - 1734, + 1738, { "id": [ - 3818, + 3863, "uuid!" ] } ], "match_streams": [ - 1758, + 1762, { "distinct_on": [ - 1786, + 1790, "[match_streams_select_column!]" ], "limit": [ @@ -113068,19 +114794,19 @@ export default { 38 ], "order_by": [ - 1783, + 1787, "[match_streams_order_by!]" ], "where": [ - 1770 + 1774 ] } ], "match_streams_aggregate": [ - 1759, + 1763, { "distinct_on": [ - 1786, + 1790, "[match_streams_select_column!]" ], "limit": [ @@ -113090,28 +114816,28 @@ export default { 38 ], "order_by": [ - 1783, + 1787, "[match_streams_order_by!]" ], "where": [ - 1770 + 1774 ] } ], "match_streams_by_pk": [ - 1758, + 1762, { "id": [ - 3818, + 3863, "uuid!" ] } ], "match_type_cfgs": [ - 1808, + 1812, { "distinct_on": [ - 1820, + 1824, "[match_type_cfgs_select_column!]" ], "limit": [ @@ -113121,19 +114847,19 @@ export default { 38 ], "order_by": [ - 1818, + 1822, "[match_type_cfgs_order_by!]" ], "where": [ - 1811 + 1815 ] } ], "match_type_cfgs_aggregate": [ - 1809, + 1813, { "distinct_on": [ - 1820, + 1824, "[match_type_cfgs_select_column!]" ], "limit": [ @@ -113143,28 +114869,28 @@ export default { 38 ], "order_by": [ - 1818, + 1822, "[match_type_cfgs_order_by!]" ], "where": [ - 1811 + 1815 ] } ], "match_type_cfgs_by_pk": [ - 1808, + 1812, { "type": [ - 539, + 543, "e_game_cfg_types_enum!" ] } ], "matches": [ - 1826, + 1830, { "distinct_on": [ - 1848, + 1852, "[matches_select_column!]" ], "limit": [ @@ -113174,19 +114900,19 @@ export default { 38 ], "order_by": [ - 1846, + 1850, "[matches_order_by!]" ], "where": [ - 1835 + 1839 ] } ], "matches_aggregate": [ - 1827, + 1831, { "distinct_on": [ - 1848, + 1852, "[matches_select_column!]" ], "limit": [ @@ -113196,19 +114922,19 @@ export default { 38 ], "order_by": [ - 1846, + 1850, "[matches_order_by!]" ], "where": [ - 1835 + 1839 ] } ], "matches_by_pk": [ - 1826, + 1830, { "id": [ - 3818, + 3863, "uuid!" ] } @@ -113217,10 +114943,10 @@ export default { 45 ], "migration_hashes_hashes": [ - 1868, + 1872, { "distinct_on": [ - 1880, + 1884, "[migration_hashes_hashes_select_column!]" ], "limit": [ @@ -113230,19 +114956,19 @@ export default { 38 ], "order_by": [ - 1878, + 1882, "[migration_hashes_hashes_order_by!]" ], "where": [ - 1871 + 1875 ] } ], "migration_hashes_hashes_aggregate": [ - 1869, + 1873, { "distinct_on": [ - 1880, + 1884, "[migration_hashes_hashes_select_column!]" ], "limit": [ @@ -113252,28 +114978,28 @@ export default { 38 ], "order_by": [ - 1878, + 1882, "[migration_hashes_hashes_order_by!]" ], "where": [ - 1871 + 1875 ] } ], "migration_hashes_hashes_by_pk": [ - 1868, + 1872, { "name": [ - 70, + 74, "String!" ] } ], "my_friends": [ - 1886, + 1890, { "distinct_on": [ - 1911, + 1915, "[my_friends_select_column!]" ], "limit": [ @@ -113283,19 +115009,19 @@ export default { 38 ], "order_by": [ - 1909, + 1913, "[my_friends_order_by!]" ], "where": [ - 1898 + 1902 ] } ], "my_friends_aggregate": [ - 1887, + 1891, { "distinct_on": [ - 1911, + 1915, "[my_friends_select_column!]" ], "limit": [ @@ -113305,11 +115031,11 @@ export default { 38 ], "order_by": [ - 1909, + 1913, "[my_friends_order_by!]" ], "where": [ - 1898 + 1902 ] } ], @@ -113317,7 +115043,7 @@ export default { 48, { "id": [ - 3818, + 3863, "uuid!" ] } @@ -113326,10 +115052,10 @@ export default { 48 ], "news_articles": [ - 1932, + 1936, { "distinct_on": [ - 1946, + 1950, "[news_articles_select_column!]" ], "limit": [ @@ -113339,19 +115065,19 @@ export default { 38 ], "order_by": [ - 1944, + 1948, "[news_articles_order_by!]" ], "where": [ - 1936 + 1940 ] } ], "news_articles_aggregate": [ - 1933, + 1937, { "distinct_on": [ - 1946, + 1950, "[news_articles_select_column!]" ], "limit": [ @@ -113361,28 +115087,28 @@ export default { 38 ], "order_by": [ - 1944, + 1948, "[news_articles_order_by!]" ], "where": [ - 1936 + 1940 ] } ], "news_articles_by_pk": [ - 1932, + 1936, { "id": [ - 3818, + 3863, "uuid!" ] } ], "notifications": [ - 1959, + 1963, { "distinct_on": [ - 1987, + 1991, "[notifications_select_column!]" ], "limit": [ @@ -113392,19 +115118,19 @@ export default { 38 ], "order_by": [ - 1984, + 1988, "[notifications_order_by!]" ], "where": [ - 1971 + 1975 ] } ], "notifications_aggregate": [ - 1960, + 1964, { "distinct_on": [ - 1987, + 1991, "[notifications_select_column!]" ], "limit": [ @@ -113414,28 +115140,28 @@ export default { 38 ], "order_by": [ - 1984, + 1988, "[notifications_order_by!]" ], "where": [ - 1971 + 1975 ] } ], "notifications_by_pk": [ - 1959, + 1963, { "id": [ - 3818, + 3863, "uuid!" ] } ], "pending_match_import_players": [ - 2012, + 2016, { "distinct_on": [ - 2033, + 2037, "[pending_match_import_players_select_column!]" ], "limit": [ @@ -113445,19 +115171,19 @@ export default { 38 ], "order_by": [ - 2031, + 2035, "[pending_match_import_players_order_by!]" ], "where": [ - 2021 + 2025 ] } ], "pending_match_import_players_aggregate": [ - 2013, + 2017, { "distinct_on": [ - 2033, + 2037, "[pending_match_import_players_select_column!]" ], "limit": [ @@ -113467,32 +115193,32 @@ export default { 38 ], "order_by": [ - 2031, + 2035, "[pending_match_import_players_order_by!]" ], "where": [ - 2021 + 2025 ] } ], "pending_match_import_players_by_pk": [ - 2012, + 2016, { "steam_id": [ - 169, + 173, "bigint!" ], "valve_match_id": [ - 2009, + 2013, "numeric!" ] } ], "pending_match_imports": [ - 2053, + 2057, { "distinct_on": [ - 2068, + 2072, "[pending_match_imports_select_column!]" ], "limit": [ @@ -113502,19 +115228,19 @@ export default { 38 ], "order_by": [ - 2066, + 2070, "[pending_match_imports_order_by!]" ], "where": [ - 2057 + 2061 ] } ], "pending_match_imports_aggregate": [ - 2054, + 2058, { "distinct_on": [ - 2068, + 2072, "[pending_match_imports_select_column!]" ], "limit": [ @@ -113524,28 +115250,28 @@ export default { 38 ], "order_by": [ - 2066, + 2070, "[pending_match_imports_order_by!]" ], "where": [ - 2057 + 2061 ] } ], "pending_match_imports_by_pk": [ - 2053, + 2057, { "valve_match_id": [ - 2009, + 2013, "numeric!" ] } ], "player_aim_stats_demo": [ - 2081, + 2085, { "distinct_on": [ - 2095, + 2099, "[player_aim_stats_demo_select_column!]" ], "limit": [ @@ -113555,19 +115281,19 @@ export default { 38 ], "order_by": [ - 2093, + 2097, "[player_aim_stats_demo_order_by!]" ], "where": [ - 2085 + 2089 ] } ], "player_aim_stats_demo_aggregate": [ - 2082, + 2086, { "distinct_on": [ - 2095, + 2099, "[player_aim_stats_demo_select_column!]" ], "limit": [ @@ -113577,32 +115303,32 @@ export default { 38 ], "order_by": [ - 2093, + 2097, "[player_aim_stats_demo_order_by!]" ], "where": [ - 2085 + 2089 ] } ], "player_aim_stats_demo_by_pk": [ - 2081, + 2085, { "attacker_steam_id": [ - 169, + 173, "bigint!" ], "match_map_id": [ - 3818, + 3863, "uuid!" ] } ], "player_aim_weapon_stats": [ - 2108, + 2112, { "distinct_on": [ - 2129, + 2133, "[player_aim_weapon_stats_select_column!]" ], "limit": [ @@ -113612,19 +115338,19 @@ export default { 38 ], "order_by": [ - 2127, + 2131, "[player_aim_weapon_stats_order_by!]" ], "where": [ - 2117 + 2121 ] } ], "player_aim_weapon_stats_aggregate": [ - 2109, + 2113, { "distinct_on": [ - 2129, + 2133, "[player_aim_weapon_stats_select_column!]" ], "limit": [ @@ -113634,36 +115360,36 @@ export default { 38 ], "order_by": [ - 2127, + 2131, "[player_aim_weapon_stats_order_by!]" ], "where": [ - 2117 + 2121 ] } ], "player_aim_weapon_stats_by_pk": [ - 2108, + 2112, { "match_map_id": [ - 3818, + 3863, "uuid!" ], "steam_id": [ - 169, + 173, "bigint!" ], "weapon_class": [ - 70, + 74, "String!" ] } ], "player_assists": [ - 2149, + 2153, { "distinct_on": [ - 2172, + 2176, "[player_assists_select_column!]" ], "limit": [ @@ -113673,19 +115399,19 @@ export default { 38 ], "order_by": [ - 2170, + 2174, "[player_assists_order_by!]" ], "where": [ - 2160 + 2164 ] } ], "player_assists_aggregate": [ - 2150, + 2154, { "distinct_on": [ - 2172, + 2176, "[player_assists_select_column!]" ], "limit": [ @@ -113695,40 +115421,40 @@ export default { 38 ], "order_by": [ - 2170, + 2174, "[player_assists_order_by!]" ], "where": [ - 2160 + 2164 ] } ], "player_assists_by_pk": [ - 2149, + 2153, { "attacked_steam_id": [ - 169, + 173, "bigint!" ], "attacker_steam_id": [ - 169, + 173, "bigint!" ], "match_map_id": [ - 3818, + 3863, "uuid!" ], "time": [ - 3421, + 3466, "timestamptz!" ] } ], "player_career_stats_v": [ - 2194, + 2198, { "distinct_on": [ - 2202, + 2206, "[player_career_stats_v_select_column!]" ], "limit": [ @@ -113738,19 +115464,19 @@ export default { 38 ], "order_by": [ - 2201, + 2205, "[player_career_stats_v_order_by!]" ], "where": [ - 2198 + 2202 ] } ], "player_career_stats_v_aggregate": [ - 2195, + 2199, { "distinct_on": [ - 2202, + 2206, "[player_career_stats_v_select_column!]" ], "limit": [ @@ -113760,19 +115486,19 @@ export default { 38 ], "order_by": [ - 2201, + 2205, "[player_career_stats_v_order_by!]" ], "where": [ - 2198 + 2202 ] } ], "player_damages": [ - 2212, + 2216, { "distinct_on": [ - 2233, + 2237, "[player_damages_select_column!]" ], "limit": [ @@ -113782,19 +115508,19 @@ export default { 38 ], "order_by": [ - 2231, + 2235, "[player_damages_order_by!]" ], "where": [ - 2221 + 2225 ] } ], "player_damages_aggregate": [ - 2213, + 2217, { "distinct_on": [ - 2233, + 2237, "[player_damages_select_column!]" ], "limit": [ @@ -113804,36 +115530,36 @@ export default { 38 ], "order_by": [ - 2231, + 2235, "[player_damages_order_by!]" ], "where": [ - 2221 + 2225 ] } ], "player_damages_by_pk": [ - 2212, + 2216, { "id": [ - 3818, + 3863, "uuid!" ], "match_map_id": [ - 3818, + 3863, "uuid!" ], "time": [ - 3421, + 3466, "timestamptz!" ] } ], "player_elo": [ - 2253, + 2257, { "distinct_on": [ - 2267, + 2271, "[player_elo_select_column!]" ], "limit": [ @@ -113843,19 +115569,19 @@ export default { 38 ], "order_by": [ - 2265, + 2269, "[player_elo_order_by!]" ], "where": [ - 2257 + 2261 ] } ], "player_elo_aggregate": [ - 2254, + 2258, { "distinct_on": [ - 2267, + 2271, "[player_elo_select_column!]" ], "limit": [ @@ -113865,36 +115591,36 @@ export default { 38 ], "order_by": [ - 2265, + 2269, "[player_elo_order_by!]" ], "where": [ - 2257 + 2261 ] } ], "player_elo_by_pk": [ - 2253, + 2257, { "match_id": [ - 3818, + 3863, "uuid!" ], "steam_id": [ - 169, + 173, "bigint!" ], "type": [ - 724, + 728, "e_match_types_enum!" ] } ], "player_faceit_rank_history": [ - 2280, + 2284, { "distinct_on": [ - 2301, + 2305, "[player_faceit_rank_history_select_column!]" ], "limit": [ @@ -113904,19 +115630,19 @@ export default { 38 ], "order_by": [ - 2299, + 2303, "[player_faceit_rank_history_order_by!]" ], "where": [ - 2289 + 2293 ] } ], "player_faceit_rank_history_aggregate": [ - 2281, + 2285, { "distinct_on": [ - 2301, + 2305, "[player_faceit_rank_history_select_column!]" ], "limit": [ @@ -113926,28 +115652,28 @@ export default { 38 ], "order_by": [ - 2299, + 2303, "[player_faceit_rank_history_order_by!]" ], "where": [ - 2289 + 2293 ] } ], "player_faceit_rank_history_by_pk": [ - 2280, + 2284, { "id": [ - 3818, + 3863, "uuid!" ] } ], "player_flashes": [ - 2321, + 2325, { "distinct_on": [ - 2344, + 2348, "[player_flashes_select_column!]" ], "limit": [ @@ -113957,19 +115683,19 @@ export default { 38 ], "order_by": [ - 2342, + 2346, "[player_flashes_order_by!]" ], "where": [ - 2332 + 2336 ] } ], "player_flashes_aggregate": [ - 2322, + 2326, { "distinct_on": [ - 2344, + 2348, "[player_flashes_select_column!]" ], "limit": [ @@ -113979,40 +115705,40 @@ export default { 38 ], "order_by": [ - 2342, + 2346, "[player_flashes_order_by!]" ], "where": [ - 2332 + 2336 ] } ], "player_flashes_by_pk": [ - 2321, + 2325, { "attacked_steam_id": [ - 169, + 173, "bigint!" ], "attacker_steam_id": [ - 169, + 173, "bigint!" ], "match_map_id": [ - 3818, + 3863, "uuid!" ], "time": [ - 3421, + 3466, "timestamptz!" ] } ], "player_kills": [ - 2366, + 2370, { "distinct_on": [ - 2430, + 2434, "[player_kills_select_column!]" ], "limit": [ @@ -114022,19 +115748,19 @@ export default { 38 ], "order_by": [ - 2428, + 2432, "[player_kills_order_by!]" ], "where": [ - 2377 + 2381 ] } ], "player_kills_aggregate": [ - 2367, + 2371, { "distinct_on": [ - 2430, + 2434, "[player_kills_select_column!]" ], "limit": [ @@ -114044,40 +115770,40 @@ export default { 38 ], "order_by": [ - 2428, + 2432, "[player_kills_order_by!]" ], "where": [ - 2377 + 2381 ] } ], "player_kills_by_pk": [ - 2366, + 2370, { "attacked_steam_id": [ - 169, + 173, "bigint!" ], "attacker_steam_id": [ - 169, + 173, "bigint!" ], "match_map_id": [ - 3818, + 3863, "uuid!" ], "time": [ - 3421, + 3466, "timestamptz!" ] } ], "player_kills_by_weapon": [ - 2378, + 2382, { "distinct_on": [ - 2399, + 2403, "[player_kills_by_weapon_select_column!]" ], "limit": [ @@ -114087,19 +115813,19 @@ export default { 38 ], "order_by": [ - 2397, + 2401, "[player_kills_by_weapon_order_by!]" ], "where": [ - 2387 + 2391 ] } ], "player_kills_by_weapon_aggregate": [ - 2379, + 2383, { "distinct_on": [ - 2399, + 2403, "[player_kills_by_weapon_select_column!]" ], "limit": [ @@ -114109,32 +115835,32 @@ export default { 38 ], "order_by": [ - 2397, + 2401, "[player_kills_by_weapon_order_by!]" ], "where": [ - 2387 + 2391 ] } ], "player_kills_by_weapon_by_pk": [ - 2378, + 2382, { "player_steam_id": [ - 169, + 173, "bigint!" ], "with": [ - 70, + 74, "String!" ] } ], "player_leaderboard_rank": [ - 2452, + 2456, { "distinct_on": [ - 2463, + 2467, "[player_leaderboard_rank_select_column!]" ], "limit": [ @@ -114144,19 +115870,19 @@ export default { 38 ], "order_by": [ - 2462, + 2466, "[player_leaderboard_rank_order_by!]" ], "where": [ - 2456 + 2460 ] } ], "player_leaderboard_rank_aggregate": [ - 2453, + 2457, { "distinct_on": [ - 2463, + 2467, "[player_leaderboard_rank_select_column!]" ], "limit": [ @@ -114166,19 +115892,19 @@ export default { 38 ], "order_by": [ - 2462, + 2466, "[player_leaderboard_rank_order_by!]" ], "where": [ - 2456 + 2460 ] } ], "player_match_map_stats": [ - 2475, + 2479, { "distinct_on": [ - 2496, + 2500, "[player_match_map_stats_select_column!]" ], "limit": [ @@ -114188,19 +115914,19 @@ export default { 38 ], "order_by": [ - 2494, + 2498, "[player_match_map_stats_order_by!]" ], "where": [ - 2484 + 2488 ] } ], "player_match_map_stats_aggregate": [ - 2476, + 2480, { "distinct_on": [ - 2496, + 2500, "[player_match_map_stats_select_column!]" ], "limit": [ @@ -114210,32 +115936,32 @@ export default { 38 ], "order_by": [ - 2494, + 2498, "[player_match_map_stats_order_by!]" ], "where": [ - 2484 + 2488 ] } ], "player_match_map_stats_by_pk": [ - 2475, + 2479, { "match_map_id": [ - 3818, + 3863, "uuid!" ], "steam_id": [ - 169, + 173, "bigint!" ] } ], "player_match_performance_v": [ - 2516, + 2520, { "distinct_on": [ - 2524, + 2528, "[player_match_performance_v_select_column!]" ], "limit": [ @@ -114245,19 +115971,19 @@ export default { 38 ], "order_by": [ - 2523, + 2527, "[player_match_performance_v_order_by!]" ], "where": [ - 2520 + 2524 ] } ], "player_match_performance_v_aggregate": [ - 2517, + 2521, { "distinct_on": [ - 2524, + 2528, "[player_match_performance_v_select_column!]" ], "limit": [ @@ -114267,19 +115993,19 @@ export default { 38 ], "order_by": [ - 2523, + 2527, "[player_match_performance_v_order_by!]" ], "where": [ - 2520 + 2524 ] } ], "player_match_stats_v": [ - 2534, + 2538, { "distinct_on": [ - 2550, + 2554, "[player_match_stats_v_select_column!]" ], "limit": [ @@ -114289,19 +116015,19 @@ export default { 38 ], "order_by": [ - 2549, + 2553, "[player_match_stats_v_order_by!]" ], "where": [ - 2543 + 2547 ] } ], "player_match_stats_v_aggregate": [ - 2535, + 2539, { "distinct_on": [ - 2550, + 2554, "[player_match_stats_v_select_column!]" ], "limit": [ @@ -114311,19 +116037,19 @@ export default { 38 ], "order_by": [ - 2549, + 2553, "[player_match_stats_v_order_by!]" ], "where": [ - 2543 + 2547 ] } ], "player_objectives": [ - 2567, + 2571, { "distinct_on": [ - 2588, + 2592, "[player_objectives_select_column!]" ], "limit": [ @@ -114333,19 +116059,19 @@ export default { 38 ], "order_by": [ - 2586, + 2590, "[player_objectives_order_by!]" ], "where": [ - 2576 + 2580 ] } ], "player_objectives_aggregate": [ - 2568, + 2572, { "distinct_on": [ - 2588, + 2592, "[player_objectives_select_column!]" ], "limit": [ @@ -114355,36 +116081,36 @@ export default { 38 ], "order_by": [ - 2586, + 2590, "[player_objectives_order_by!]" ], "where": [ - 2576 + 2580 ] } ], "player_objectives_by_pk": [ - 2567, + 2571, { "match_map_id": [ - 3818, + 3863, "uuid!" ], "player_steam_id": [ - 169, + 173, "bigint!" ], "time": [ - 3421, + 3466, "timestamptz!" ] } ], "player_performance_v": [ - 2608, + 2612, { "distinct_on": [ - 2616, + 2620, "[player_performance_v_select_column!]" ], "limit": [ @@ -114394,19 +116120,19 @@ export default { 38 ], "order_by": [ - 2615, + 2619, "[player_performance_v_order_by!]" ], "where": [ - 2612 + 2616 ] } ], "player_performance_v_aggregate": [ - 2609, + 2613, { "distinct_on": [ - 2616, + 2620, "[player_performance_v_select_column!]" ], "limit": [ @@ -114416,19 +116142,19 @@ export default { 38 ], "order_by": [ - 2615, + 2619, "[player_performance_v_order_by!]" ], "where": [ - 2612 + 2616 ] } ], "player_premier_rank_history": [ - 2626, + 2630, { "distinct_on": [ - 2647, + 2651, "[player_premier_rank_history_select_column!]" ], "limit": [ @@ -114438,19 +116164,19 @@ export default { 38 ], "order_by": [ - 2645, + 2649, "[player_premier_rank_history_order_by!]" ], "where": [ - 2635 + 2639 ] } ], "player_premier_rank_history_aggregate": [ - 2627, + 2631, { "distinct_on": [ - 2647, + 2651, "[player_premier_rank_history_select_column!]" ], "limit": [ @@ -114460,28 +116186,28 @@ export default { 38 ], "order_by": [ - 2645, + 2649, "[player_premier_rank_history_order_by!]" ], "where": [ - 2635 + 2639 ] } ], "player_premier_rank_history_by_pk": [ - 2626, + 2630, { "id": [ - 3818, + 3863, "uuid!" ] } ], "player_sanctions": [ - 2667, + 2671, { "distinct_on": [ - 2688, + 2692, "[player_sanctions_select_column!]" ], "limit": [ @@ -114491,19 +116217,19 @@ export default { 38 ], "order_by": [ - 2686, + 2690, "[player_sanctions_order_by!]" ], "where": [ - 2676 + 2680 ] } ], "player_sanctions_aggregate": [ - 2668, + 2672, { "distinct_on": [ - 2688, + 2692, "[player_sanctions_select_column!]" ], "limit": [ @@ -114513,32 +116239,32 @@ export default { 38 ], "order_by": [ - 2686, + 2690, "[player_sanctions_order_by!]" ], "where": [ - 2676 + 2680 ] } ], "player_sanctions_by_pk": [ - 2667, + 2671, { "created_at": [ - 3421, + 3466, "timestamptz!" ], "id": [ - 3818, + 3863, "uuid!" ] } ], "player_stats": [ - 2708, + 2712, { "distinct_on": [ - 2723, + 2727, "[player_stats_select_column!]" ], "limit": [ @@ -114548,19 +116274,19 @@ export default { 38 ], "order_by": [ - 2721, + 2725, "[player_stats_order_by!]" ], "where": [ - 2712 + 2716 ] } ], "player_stats_aggregate": [ - 2709, + 2713, { "distinct_on": [ - 2723, + 2727, "[player_stats_select_column!]" ], "limit": [ @@ -114570,28 +116296,81 @@ export default { 38 ], "order_by": [ - 2721, + 2725, "[player_stats_order_by!]" ], "where": [ - 2712 + 2716 ] } ], "player_stats_by_pk": [ - 2708, + 2712, { "player_steam_id": [ - 169, + 173, + "bigint!" + ] + } + ], + "player_steam_bot_friend": [ + 2740, + { + "distinct_on": [ + 2759, + "[player_steam_bot_friend_select_column!]" + ], + "limit": [ + 38 + ], + "offset": [ + 38 + ], + "order_by": [ + 2756, + "[player_steam_bot_friend_order_by!]" + ], + "where": [ + 2745 + ] + } + ], + "player_steam_bot_friend_aggregate": [ + 2741, + { + "distinct_on": [ + 2759, + "[player_steam_bot_friend_select_column!]" + ], + "limit": [ + 38 + ], + "offset": [ + 38 + ], + "order_by": [ + 2756, + "[player_steam_bot_friend_order_by!]" + ], + "where": [ + 2745 + ] + } + ], + "player_steam_bot_friend_by_pk": [ + 2740, + { + "steam_id": [ + 173, "bigint!" ] } ], "player_steam_match_auth": [ - 2736, + 2772, { "distinct_on": [ - 2750, + 2786, "[player_steam_match_auth_select_column!]" ], "limit": [ @@ -114601,19 +116380,19 @@ export default { 38 ], "order_by": [ - 2748, + 2784, "[player_steam_match_auth_order_by!]" ], "where": [ - 2740 + 2776 ] } ], "player_steam_match_auth_aggregate": [ - 2737, + 2773, { "distinct_on": [ - 2750, + 2786, "[player_steam_match_auth_select_column!]" ], "limit": [ @@ -114623,28 +116402,28 @@ export default { 38 ], "order_by": [ - 2748, + 2784, "[player_steam_match_auth_order_by!]" ], "where": [ - 2740 + 2776 ] } ], "player_steam_match_auth_by_pk": [ - 2736, + 2772, { "steam_id": [ - 169, + 173, "bigint!" ] } ], "player_unused_utility": [ - 2763, + 2799, { "distinct_on": [ - 2784, + 2820, "[player_unused_utility_select_column!]" ], "limit": [ @@ -114654,19 +116433,19 @@ export default { 38 ], "order_by": [ - 2782, + 2818, "[player_unused_utility_order_by!]" ], "where": [ - 2772 + 2808 ] } ], "player_unused_utility_aggregate": [ - 2764, + 2800, { "distinct_on": [ - 2784, + 2820, "[player_unused_utility_select_column!]" ], "limit": [ @@ -114676,32 +116455,32 @@ export default { 38 ], "order_by": [ - 2782, + 2818, "[player_unused_utility_order_by!]" ], "where": [ - 2772 + 2808 ] } ], "player_unused_utility_by_pk": [ - 2763, + 2799, { "match_map_id": [ - 3818, + 3863, "uuid!" ], "player_steam_id": [ - 169, + 173, "bigint!" ] } ], "player_utility": [ - 2804, + 2840, { "distinct_on": [ - 2825, + 2861, "[player_utility_select_column!]" ], "limit": [ @@ -114711,19 +116490,19 @@ export default { 38 ], "order_by": [ - 2823, + 2859, "[player_utility_order_by!]" ], "where": [ - 2813 + 2849 ] } ], "player_utility_aggregate": [ - 2805, + 2841, { "distinct_on": [ - 2825, + 2861, "[player_utility_select_column!]" ], "limit": [ @@ -114733,36 +116512,36 @@ export default { 38 ], "order_by": [ - 2823, + 2859, "[player_utility_order_by!]" ], "where": [ - 2813 + 2849 ] } ], "player_utility_by_pk": [ - 2804, + 2840, { "attacker_steam_id": [ - 169, + 173, "bigint!" ], "match_map_id": [ - 3818, + 3863, "uuid!" ], "time": [ - 3421, + 3466, "timestamptz!" ] } ], "player_weapon_stats_v": [ - 2845, + 2881, { "distinct_on": [ - 2861, + 2897, "[player_weapon_stats_v_select_column!]" ], "limit": [ @@ -114772,19 +116551,19 @@ export default { 38 ], "order_by": [ - 2860, + 2896, "[player_weapon_stats_v_order_by!]" ], "where": [ - 2854 + 2890 ] } ], "player_weapon_stats_v_aggregate": [ - 2846, + 2882, { "distinct_on": [ - 2861, + 2897, "[player_weapon_stats_v_select_column!]" ], "limit": [ @@ -114794,19 +116573,19 @@ export default { 38 ], "order_by": [ - 2860, + 2896, "[player_weapon_stats_v_order_by!]" ], "where": [ - 2854 + 2890 ] } ], "players": [ - 2878, + 2914, { "distinct_on": [ - 2893, + 2929, "[players_select_column!]" ], "limit": [ @@ -114816,19 +116595,19 @@ export default { 38 ], "order_by": [ - 2891, + 2927, "[players_order_by!]" ], "where": [ - 2882 + 2918 ] } ], "players_aggregate": [ - 2879, + 2915, { "distinct_on": [ - 2893, + 2929, "[players_select_column!]" ], "limit": [ @@ -114838,28 +116617,28 @@ export default { 38 ], "order_by": [ - 2891, + 2927, "[players_order_by!]" ], "where": [ - 2882 + 2918 ] } ], "players_by_pk": [ - 2878, + 2914, { "steam_id": [ - 169, + 173, "bigint!" ] } ], "plugin_versions": [ - 2906, + 2942, { "distinct_on": [ - 2920, + 2956, "[plugin_versions_select_column!]" ], "limit": [ @@ -114869,19 +116648,19 @@ export default { 38 ], "order_by": [ - 2918, + 2954, "[plugin_versions_order_by!]" ], "where": [ - 2910 + 2946 ] } ], "plugin_versions_aggregate": [ - 2907, + 2943, { "distinct_on": [ - 2920, + 2956, "[plugin_versions_select_column!]" ], "limit": [ @@ -114891,19 +116670,19 @@ export default { 38 ], "order_by": [ - 2918, + 2954, "[plugin_versions_order_by!]" ], "where": [ - 2910 + 2946 ] } ], "plugin_versions_by_pk": [ - 2906, + 2942, { "version": [ - 70, + 74, "String!" ] } @@ -114912,15 +116691,15 @@ export default { 26, { "file_path": [ - 70, + 74, "String!" ], "node_id": [ - 70, + 74, "String!" ], "server_id": [ - 70 + 74 ] } ], @@ -114928,16 +116707,16 @@ export default { 63, { "team_id": [ - 3818, + 3863, "uuid!" ] } ], "server_regions": [ - 2934, + 2970, { "distinct_on": [ - 2948, + 2984, "[server_regions_select_column!]" ], "limit": [ @@ -114947,19 +116726,19 @@ export default { 38 ], "order_by": [ - 2946, + 2982, "[server_regions_order_by!]" ], "where": [ - 2938 + 2974 ] } ], "server_regions_aggregate": [ - 2935, + 2971, { "distinct_on": [ - 2948, + 2984, "[server_regions_select_column!]" ], "limit": [ @@ -114969,28 +116748,28 @@ export default { 38 ], "order_by": [ - 2946, + 2982, "[server_regions_order_by!]" ], "where": [ - 2938 + 2974 ] } ], "server_regions_by_pk": [ - 2934, + 2970, { "value": [ - 70, + 74, "String!" ] } ], "servers": [ - 2961, + 2997, { "distinct_on": [ - 2985, + 3021, "[servers_select_column!]" ], "limit": [ @@ -115000,19 +116779,19 @@ export default { 38 ], "order_by": [ - 2983, + 3019, "[servers_order_by!]" ], "where": [ - 2972 + 3008 ] } ], "servers_aggregate": [ - 2962, + 2998, { "distinct_on": [ - 2985, + 3021, "[servers_select_column!]" ], "limit": [ @@ -115022,28 +116801,28 @@ export default { 38 ], "order_by": [ - 2983, + 3019, "[servers_order_by!]" ], "where": [ - 2972 + 3008 ] } ], "servers_by_pk": [ - 2961, + 2997, { "id": [ - 3818, + 3863, "uuid!" ] } ], "settings": [ - 3007, + 3043, { "distinct_on": [ - 3019, + 3055, "[settings_select_column!]" ], "limit": [ @@ -115053,19 +116832,19 @@ export default { 38 ], "order_by": [ - 3017, + 3053, "[settings_order_by!]" ], "where": [ - 3010 + 3046 ] } ], "settings_aggregate": [ - 3008, + 3044, { "distinct_on": [ - 3019, + 3055, "[settings_select_column!]" ], "limit": [ @@ -115075,28 +116854,31 @@ export default { 38 ], "order_by": [ - 3017, + 3053, "[settings_order_by!]" ], "where": [ - 3010 + 3046 ] } ], "settings_by_pk": [ - 3007, + 3043, { "name": [ - 70, + 74, "String!" ] } ], + "steamPresenceAdminStatus": [ + 68 + ], "steam_account_claims": [ - 3025, + 3061, { "distinct_on": [ - 3043, + 3079, "[steam_account_claims_select_column!]" ], "limit": [ @@ -115106,19 +116888,19 @@ export default { 38 ], "order_by": [ - 3041, + 3077, "[steam_account_claims_order_by!]" ], "where": [ - 3032 + 3068 ] } ], "steam_account_claims_aggregate": [ - 3026, + 3062, { "distinct_on": [ - 3043, + 3079, "[steam_account_claims_select_column!]" ], "limit": [ @@ -115128,28 +116910,28 @@ export default { 38 ], "order_by": [ - 3041, + 3077, "[steam_account_claims_order_by!]" ], "where": [ - 3032 + 3068 ] } ], "steam_account_claims_by_pk": [ - 3025, + 3061, { "id": [ - 3818, + 3863, "uuid!" ] } ], "steam_accounts": [ - 3049, + 3085, { "distinct_on": [ - 3062, + 3100, "[steam_accounts_select_column!]" ], "limit": [ @@ -115159,19 +116941,19 @@ export default { 38 ], "order_by": [ - 3060, + 3098, "[steam_accounts_order_by!]" ], "where": [ - 3052 + 3089 ] } ], "steam_accounts_aggregate": [ - 3050, + 3086, { "distinct_on": [ - 3062, + 3100, "[steam_accounts_select_column!]" ], "limit": [ @@ -115181,28 +116963,28 @@ export default { 38 ], "order_by": [ - 3060, + 3098, "[steam_accounts_order_by!]" ], "where": [ - 3052 + 3089 ] } ], "steam_accounts_by_pk": [ - 3049, + 3085, { "id": [ - 3818, + 3863, "uuid!" ] } ], "system_alerts": [ - 3068, + 3113, { "distinct_on": [ - 3082, + 3127, "[system_alerts_select_column!]" ], "limit": [ @@ -115212,19 +116994,19 @@ export default { 38 ], "order_by": [ - 3080, + 3125, "[system_alerts_order_by!]" ], "where": [ - 3072 + 3117 ] } ], "system_alerts_aggregate": [ - 3069, + 3114, { "distinct_on": [ - 3082, + 3127, "[system_alerts_select_column!]" ], "limit": [ @@ -115234,28 +117016,28 @@ export default { 38 ], "order_by": [ - 3080, + 3125, "[system_alerts_order_by!]" ], "where": [ - 3072 + 3117 ] } ], "system_alerts_by_pk": [ - 3068, + 3113, { "id": [ - 3818, + 3863, "uuid!" ] } ], "team_invites": [ - 3095, + 3140, { "distinct_on": [ - 3116, + 3161, "[team_invites_select_column!]" ], "limit": [ @@ -115265,19 +117047,19 @@ export default { 38 ], "order_by": [ - 3114, + 3159, "[team_invites_order_by!]" ], "where": [ - 3104 + 3149 ] } ], "team_invites_aggregate": [ - 3096, + 3141, { "distinct_on": [ - 3116, + 3161, "[team_invites_select_column!]" ], "limit": [ @@ -115287,28 +117069,28 @@ export default { 38 ], "order_by": [ - 3114, + 3159, "[team_invites_order_by!]" ], "where": [ - 3104 + 3149 ] } ], "team_invites_by_pk": [ - 3095, + 3140, { "id": [ - 3818, + 3863, "uuid!" ] } ], "team_roster": [ - 3136, + 3181, { "distinct_on": [ - 3159, + 3204, "[team_roster_select_column!]" ], "limit": [ @@ -115318,19 +117100,19 @@ export default { 38 ], "order_by": [ - 3157, + 3202, "[team_roster_order_by!]" ], "where": [ - 3147 + 3192 ] } ], "team_roster_aggregate": [ - 3137, + 3182, { "distinct_on": [ - 3159, + 3204, "[team_roster_select_column!]" ], "limit": [ @@ -115340,32 +117122,32 @@ export default { 38 ], "order_by": [ - 3157, + 3202, "[team_roster_order_by!]" ], "where": [ - 3147 + 3192 ] } ], "team_roster_by_pk": [ - 3136, + 3181, { "player_steam_id": [ - 169, + 173, "bigint!" ], "team_id": [ - 3818, + 3863, "uuid!" ] } ], "team_scrim_alerts": [ - 3181, + 3226, { "distinct_on": [ - 3195, + 3240, "[team_scrim_alerts_select_column!]" ], "limit": [ @@ -115375,19 +117157,19 @@ export default { 38 ], "order_by": [ - 3193, + 3238, "[team_scrim_alerts_order_by!]" ], "where": [ - 3185 + 3230 ] } ], "team_scrim_alerts_aggregate": [ - 3182, + 3227, { "distinct_on": [ - 3195, + 3240, "[team_scrim_alerts_select_column!]" ], "limit": [ @@ -115397,28 +117179,28 @@ export default { 38 ], "order_by": [ - 3193, + 3238, "[team_scrim_alerts_order_by!]" ], "where": [ - 3185 + 3230 ] } ], "team_scrim_alerts_by_pk": [ - 3181, + 3226, { "id": [ - 3818, + 3863, "uuid!" ] } ], "team_scrim_availability": [ - 3208, + 3253, { "distinct_on": [ - 3228, + 3273, "[team_scrim_availability_select_column!]" ], "limit": [ @@ -115428,19 +117210,19 @@ export default { 38 ], "order_by": [ - 3226, + 3271, "[team_scrim_availability_order_by!]" ], "where": [ - 3217 + 3262 ] } ], "team_scrim_availability_aggregate": [ - 3209, + 3254, { "distinct_on": [ - 3228, + 3273, "[team_scrim_availability_select_column!]" ], "limit": [ @@ -115450,28 +117232,28 @@ export default { 38 ], "order_by": [ - 3226, + 3271, "[team_scrim_availability_order_by!]" ], "where": [ - 3217 + 3262 ] } ], "team_scrim_availability_by_pk": [ - 3208, + 3253, { "id": [ - 3818, + 3863, "uuid!" ] } ], "team_scrim_request_proposals": [ - 3236, + 3281, { "distinct_on": [ - 3257, + 3302, "[team_scrim_request_proposals_select_column!]" ], "limit": [ @@ -115481,19 +117263,19 @@ export default { 38 ], "order_by": [ - 3255, + 3300, "[team_scrim_request_proposals_order_by!]" ], "where": [ - 3245 + 3290 ] } ], "team_scrim_request_proposals_aggregate": [ - 3237, + 3282, { "distinct_on": [ - 3257, + 3302, "[team_scrim_request_proposals_select_column!]" ], "limit": [ @@ -115503,28 +117285,28 @@ export default { 38 ], "order_by": [ - 3255, + 3300, "[team_scrim_request_proposals_order_by!]" ], "where": [ - 3245 + 3290 ] } ], "team_scrim_request_proposals_by_pk": [ - 3236, + 3281, { "id": [ - 3818, + 3863, "uuid!" ] } ], "team_scrim_requests": [ - 3277, + 3322, { "distinct_on": [ - 3301, + 3346, "[team_scrim_requests_select_column!]" ], "limit": [ @@ -115534,19 +117316,19 @@ export default { 38 ], "order_by": [ - 3299, + 3344, "[team_scrim_requests_order_by!]" ], "where": [ - 3288 + 3333 ] } ], "team_scrim_requests_aggregate": [ - 3278, + 3323, { "distinct_on": [ - 3301, + 3346, "[team_scrim_requests_select_column!]" ], "limit": [ @@ -115556,28 +117338,28 @@ export default { 38 ], "order_by": [ - 3299, + 3344, "[team_scrim_requests_order_by!]" ], "where": [ - 3288 + 3333 ] } ], "team_scrim_requests_by_pk": [ - 3277, + 3322, { "id": [ - 3818, + 3863, "uuid!" ] } ], "team_scrim_settings": [ - 3323, + 3368, { "distinct_on": [ - 3338, + 3383, "[team_scrim_settings_select_column!]" ], "limit": [ @@ -115587,19 +117369,19 @@ export default { 38 ], "order_by": [ - 3336, + 3381, "[team_scrim_settings_order_by!]" ], "where": [ - 3327 + 3372 ] } ], "team_scrim_settings_aggregate": [ - 3324, + 3369, { "distinct_on": [ - 3338, + 3383, "[team_scrim_settings_select_column!]" ], "limit": [ @@ -115609,28 +117391,28 @@ export default { 38 ], "order_by": [ - 3336, + 3381, "[team_scrim_settings_order_by!]" ], "where": [ - 3327 + 3372 ] } ], "team_scrim_settings_by_pk": [ - 3323, + 3368, { "id": [ - 3818, + 3863, "uuid!" ] } ], "team_suggestions": [ - 3351, + 3396, { "distinct_on": [ - 3365, + 3410, "[team_suggestions_select_column!]" ], "limit": [ @@ -115640,19 +117422,19 @@ export default { 38 ], "order_by": [ - 3363, + 3408, "[team_suggestions_order_by!]" ], "where": [ - 3355 + 3400 ] } ], "team_suggestions_aggregate": [ - 3352, + 3397, { "distinct_on": [ - 3365, + 3410, "[team_suggestions_select_column!]" ], "limit": [ @@ -115662,28 +117444,28 @@ export default { 38 ], "order_by": [ - 3363, + 3408, "[team_suggestions_order_by!]" ], "where": [ - 3355 + 3400 ] } ], "team_suggestions_by_pk": [ - 3351, + 3396, { "id": [ - 3818, + 3863, "uuid!" ] } ], "teams": [ - 3378, + 3423, { "distinct_on": [ - 3400, + 3445, "[teams_select_column!]" ], "limit": [ @@ -115693,19 +117475,19 @@ export default { 38 ], "order_by": [ - 3398, + 3443, "[teams_order_by!]" ], "where": [ - 3387 + 3432 ] } ], "teams_aggregate": [ - 3379, + 3424, { "distinct_on": [ - 3400, + 3445, "[teams_select_column!]" ], "limit": [ @@ -115715,31 +117497,31 @@ export default { 38 ], "order_by": [ - 3398, + 3443, "[teams_order_by!]" ], "where": [ - 3387 + 3432 ] } ], "teams_by_pk": [ - 3378, + 3423, { "id": [ - 3818, + 3863, "uuid!" ] } ], "telemetryStats": [ - 77 + 81 ], "tournament_brackets": [ - 3423, + 3468, { "distinct_on": [ - 3447, + 3492, "[tournament_brackets_select_column!]" ], "limit": [ @@ -115749,19 +117531,19 @@ export default { 38 ], "order_by": [ - 3445, + 3490, "[tournament_brackets_order_by!]" ], "where": [ - 3434 + 3479 ] } ], "tournament_brackets_aggregate": [ - 3424, + 3469, { "distinct_on": [ - 3447, + 3492, "[tournament_brackets_select_column!]" ], "limit": [ @@ -115771,28 +117553,28 @@ export default { 38 ], "order_by": [ - 3445, + 3490, "[tournament_brackets_order_by!]" ], "where": [ - 3434 + 3479 ] } ], "tournament_brackets_by_pk": [ - 3423, + 3468, { "id": [ - 3818, + 3863, "uuid!" ] } ], "tournament_organizers": [ - 3469, + 3514, { "distinct_on": [ - 3490, + 3535, "[tournament_organizers_select_column!]" ], "limit": [ @@ -115802,19 +117584,19 @@ export default { 38 ], "order_by": [ - 3488, + 3533, "[tournament_organizers_order_by!]" ], "where": [ - 3478 + 3523 ] } ], "tournament_organizers_aggregate": [ - 3470, + 3515, { "distinct_on": [ - 3490, + 3535, "[tournament_organizers_select_column!]" ], "limit": [ @@ -115824,32 +117606,32 @@ export default { 38 ], "order_by": [ - 3488, + 3533, "[tournament_organizers_order_by!]" ], "where": [ - 3478 + 3523 ] } ], "tournament_organizers_by_pk": [ - 3469, + 3514, { "steam_id": [ - 169, + 173, "bigint!" ], "tournament_id": [ - 3818, + 3863, "uuid!" ] } ], "tournament_stages": [ - 3510, + 3555, { "distinct_on": [ - 3539, + 3584, "[tournament_stages_select_column!]" ], "limit": [ @@ -115859,19 +117641,19 @@ export default { 38 ], "order_by": [ - 3536, + 3581, "[tournament_stages_order_by!]" ], "where": [ - 3522 + 3567 ] } ], "tournament_stages_aggregate": [ - 3511, + 3556, { "distinct_on": [ - 3539, + 3584, "[tournament_stages_select_column!]" ], "limit": [ @@ -115881,28 +117663,28 @@ export default { 38 ], "order_by": [ - 3536, + 3581, "[tournament_stages_order_by!]" ], "where": [ - 3522 + 3567 ] } ], "tournament_stages_by_pk": [ - 3510, + 3555, { "id": [ - 3818, + 3863, "uuid!" ] } ], "tournament_team_invites": [ - 3561, + 3606, { "distinct_on": [ - 3582, + 3627, "[tournament_team_invites_select_column!]" ], "limit": [ @@ -115912,19 +117694,19 @@ export default { 38 ], "order_by": [ - 3580, + 3625, "[tournament_team_invites_order_by!]" ], "where": [ - 3570 + 3615 ] } ], "tournament_team_invites_aggregate": [ - 3562, + 3607, { "distinct_on": [ - 3582, + 3627, "[tournament_team_invites_select_column!]" ], "limit": [ @@ -115934,28 +117716,28 @@ export default { 38 ], "order_by": [ - 3580, + 3625, "[tournament_team_invites_order_by!]" ], "where": [ - 3570 + 3615 ] } ], "tournament_team_invites_by_pk": [ - 3561, + 3606, { "id": [ - 3818, + 3863, "uuid!" ] } ], "tournament_team_roster": [ - 3602, + 3647, { "distinct_on": [ - 3623, + 3668, "[tournament_team_roster_select_column!]" ], "limit": [ @@ -115965,19 +117747,19 @@ export default { 38 ], "order_by": [ - 3621, + 3666, "[tournament_team_roster_order_by!]" ], "where": [ - 3611 + 3656 ] } ], "tournament_team_roster_aggregate": [ - 3603, + 3648, { "distinct_on": [ - 3623, + 3668, "[tournament_team_roster_select_column!]" ], "limit": [ @@ -115987,32 +117769,32 @@ export default { 38 ], "order_by": [ - 3621, + 3666, "[tournament_team_roster_order_by!]" ], "where": [ - 3611 + 3656 ] } ], "tournament_team_roster_by_pk": [ - 3602, + 3647, { "player_steam_id": [ - 169, + 173, "bigint!" ], "tournament_id": [ - 3818, + 3863, "uuid!" ] } ], "tournament_teams": [ - 3643, + 3688, { "distinct_on": [ - 3665, + 3710, "[tournament_teams_select_column!]" ], "limit": [ @@ -116022,19 +117804,19 @@ export default { 38 ], "order_by": [ - 3663, + 3708, "[tournament_teams_order_by!]" ], "where": [ - 3652 + 3697 ] } ], "tournament_teams_aggregate": [ - 3644, + 3689, { "distinct_on": [ - 3665, + 3710, "[tournament_teams_select_column!]" ], "limit": [ @@ -116044,28 +117826,28 @@ export default { 38 ], "order_by": [ - 3663, + 3708, "[tournament_teams_order_by!]" ], "where": [ - 3652 + 3697 ] } ], "tournament_teams_by_pk": [ - 3643, + 3688, { "id": [ - 3818, + 3863, "uuid!" ] } ], "tournament_trophies": [ - 3685, + 3730, { "distinct_on": [ - 3708, + 3753, "[tournament_trophies_select_column!]" ], "limit": [ @@ -116075,19 +117857,19 @@ export default { 38 ], "order_by": [ - 3706, + 3751, "[tournament_trophies_order_by!]" ], "where": [ - 3696 + 3741 ] } ], "tournament_trophies_aggregate": [ - 3686, + 3731, { "distinct_on": [ - 3708, + 3753, "[tournament_trophies_select_column!]" ], "limit": [ @@ -116097,28 +117879,28 @@ export default { 38 ], "order_by": [ - 3706, + 3751, "[tournament_trophies_order_by!]" ], "where": [ - 3696 + 3741 ] } ], "tournament_trophies_by_pk": [ - 3685, + 3730, { "id": [ - 3818, + 3863, "uuid!" ] } ], "tournament_trophy_configs": [ - 3730, + 3775, { "distinct_on": [ - 3752, + 3797, "[tournament_trophy_configs_select_column!]" ], "limit": [ @@ -116128,19 +117910,19 @@ export default { 38 ], "order_by": [ - 3750, + 3795, "[tournament_trophy_configs_order_by!]" ], "where": [ - 3739 + 3784 ] } ], "tournament_trophy_configs_aggregate": [ - 3731, + 3776, { "distinct_on": [ - 3752, + 3797, "[tournament_trophy_configs_select_column!]" ], "limit": [ @@ -116150,28 +117932,28 @@ export default { 38 ], "order_by": [ - 3750, + 3795, "[tournament_trophy_configs_order_by!]" ], "where": [ - 3739 + 3784 ] } ], "tournament_trophy_configs_by_pk": [ - 3730, + 3775, { "id": [ - 3818, + 3863, "uuid!" ] } ], "tournaments": [ - 3772, + 3817, { "distinct_on": [ - 3796, + 3841, "[tournaments_select_column!]" ], "limit": [ @@ -116181,19 +117963,19 @@ export default { 38 ], "order_by": [ - 3794, + 3839, "[tournaments_order_by!]" ], "where": [ - 3783 + 3828 ] } ], "tournaments_aggregate": [ - 3773, + 3818, { "distinct_on": [ - 3796, + 3841, "[tournaments_select_column!]" ], "limit": [ @@ -116203,28 +117985,28 @@ export default { 38 ], "order_by": [ - 3794, + 3839, "[tournaments_order_by!]" ], "where": [ - 3783 + 3828 ] } ], "tournaments_by_pk": [ - 3772, + 3817, { "id": [ - 3818, + 3863, "uuid!" ] } ], "v_gpu_pool_status": [ - 3821, + 3866, { "distinct_on": [ - 3829, + 3874, "[v_gpu_pool_status_select_column!]" ], "limit": [ @@ -116234,19 +118016,19 @@ export default { 38 ], "order_by": [ - 3828, + 3873, "[v_gpu_pool_status_order_by!]" ], "where": [ - 3825 + 3870 ] } ], "v_gpu_pool_status_aggregate": [ - 3822, + 3867, { "distinct_on": [ - 3829, + 3874, "[v_gpu_pool_status_select_column!]" ], "limit": [ @@ -116256,19 +118038,19 @@ export default { 38 ], "order_by": [ - 3828, + 3873, "[v_gpu_pool_status_order_by!]" ], "where": [ - 3825 + 3870 ] } ], "v_match_captains": [ - 3839, + 3884, { "distinct_on": [ - 3851, + 3896, "[v_match_captains_select_column!]" ], "limit": [ @@ -116278,19 +118060,19 @@ export default { 38 ], "order_by": [ - 3850, + 3895, "[v_match_captains_order_by!]" ], "where": [ - 3843 + 3888 ] } ], "v_match_captains_aggregate": [ - 3840, + 3885, { "distinct_on": [ - 3851, + 3896, "[v_match_captains_select_column!]" ], "limit": [ @@ -116300,19 +118082,19 @@ export default { 38 ], "order_by": [ - 3850, + 3895, "[v_match_captains_order_by!]" ], "where": [ - 3843 + 3888 ] } ], "v_match_clutches": [ - 3863, + 3908, { "distinct_on": [ - 3879, + 3924, "[v_match_clutches_select_column!]" ], "limit": [ @@ -116322,19 +118104,19 @@ export default { 38 ], "order_by": [ - 3878, + 3923, "[v_match_clutches_order_by!]" ], "where": [ - 3872 + 3917 ] } ], "v_match_clutches_aggregate": [ - 3864, + 3909, { "distinct_on": [ - 3879, + 3924, "[v_match_clutches_select_column!]" ], "limit": [ @@ -116344,19 +118126,19 @@ export default { 38 ], "order_by": [ - 3878, + 3923, "[v_match_clutches_order_by!]" ], "where": [ - 3872 + 3917 ] } ], "v_match_kill_pairs": [ - 3896, + 3941, { "distinct_on": [ - 3904, + 3949, "[v_match_kill_pairs_select_column!]" ], "limit": [ @@ -116366,19 +118148,19 @@ export default { 38 ], "order_by": [ - 3903, + 3948, "[v_match_kill_pairs_order_by!]" ], "where": [ - 3900 + 3945 ] } ], "v_match_kill_pairs_aggregate": [ - 3897, + 3942, { "distinct_on": [ - 3904, + 3949, "[v_match_kill_pairs_select_column!]" ], "limit": [ @@ -116388,19 +118170,19 @@ export default { 38 ], "order_by": [ - 3903, + 3948, "[v_match_kill_pairs_order_by!]" ], "where": [ - 3900 + 3945 ] } ], "v_match_lineup_buy_types": [ - 3914, + 3959, { "distinct_on": [ - 3922, + 3967, "[v_match_lineup_buy_types_select_column!]" ], "limit": [ @@ -116410,19 +118192,19 @@ export default { 38 ], "order_by": [ - 3921, + 3966, "[v_match_lineup_buy_types_order_by!]" ], "where": [ - 3918 + 3963 ] } ], "v_match_lineup_buy_types_aggregate": [ - 3915, + 3960, { "distinct_on": [ - 3922, + 3967, "[v_match_lineup_buy_types_select_column!]" ], "limit": [ @@ -116432,19 +118214,19 @@ export default { 38 ], "order_by": [ - 3921, + 3966, "[v_match_lineup_buy_types_order_by!]" ], "where": [ - 3918 + 3963 ] } ], "v_match_lineup_map_stats": [ - 3932, + 3977, { "distinct_on": [ - 3940, + 3985, "[v_match_lineup_map_stats_select_column!]" ], "limit": [ @@ -116454,19 +118236,19 @@ export default { 38 ], "order_by": [ - 3939, + 3984, "[v_match_lineup_map_stats_order_by!]" ], "where": [ - 3936 + 3981 ] } ], "v_match_lineup_map_stats_aggregate": [ - 3933, + 3978, { "distinct_on": [ - 3940, + 3985, "[v_match_lineup_map_stats_select_column!]" ], "limit": [ @@ -116476,19 +118258,19 @@ export default { 38 ], "order_by": [ - 3939, + 3984, "[v_match_lineup_map_stats_order_by!]" ], "where": [ - 3936 + 3981 ] } ], "v_match_map_backup_rounds": [ - 3950, + 3995, { "distinct_on": [ - 3961, + 4006, "[v_match_map_backup_rounds_select_column!]" ], "limit": [ @@ -116498,19 +118280,19 @@ export default { 38 ], "order_by": [ - 3960, + 4005, "[v_match_map_backup_rounds_order_by!]" ], "where": [ - 3954 + 3999 ] } ], "v_match_map_backup_rounds_aggregate": [ - 3951, + 3996, { "distinct_on": [ - 3961, + 4006, "[v_match_map_backup_rounds_select_column!]" ], "limit": [ @@ -116520,19 +118302,19 @@ export default { 38 ], "order_by": [ - 3960, + 4005, "[v_match_map_backup_rounds_order_by!]" ], "where": [ - 3954 + 3999 ] } ], "v_match_player_buy_types": [ - 3973, + 4018, { "distinct_on": [ - 3981, + 4026, "[v_match_player_buy_types_select_column!]" ], "limit": [ @@ -116542,19 +118324,19 @@ export default { 38 ], "order_by": [ - 3980, + 4025, "[v_match_player_buy_types_order_by!]" ], "where": [ - 3977 + 4022 ] } ], "v_match_player_buy_types_aggregate": [ - 3974, + 4019, { "distinct_on": [ - 3981, + 4026, "[v_match_player_buy_types_select_column!]" ], "limit": [ @@ -116564,19 +118346,19 @@ export default { 38 ], "order_by": [ - 3980, + 4025, "[v_match_player_buy_types_order_by!]" ], "where": [ - 3977 + 4022 ] } ], "v_match_player_opening_duels": [ - 3991, + 4036, { "distinct_on": [ - 4007, + 4052, "[v_match_player_opening_duels_select_column!]" ], "limit": [ @@ -116586,19 +118368,19 @@ export default { 38 ], "order_by": [ - 4006, + 4051, "[v_match_player_opening_duels_order_by!]" ], "where": [ - 4000 + 4045 ] } ], "v_match_player_opening_duels_aggregate": [ - 3992, + 4037, { "distinct_on": [ - 4007, + 4052, "[v_match_player_opening_duels_select_column!]" ], "limit": [ @@ -116608,19 +118390,19 @@ export default { 38 ], "order_by": [ - 4006, + 4051, "[v_match_player_opening_duels_order_by!]" ], "where": [ - 4000 + 4045 ] } ], "v_player_arch_nemesis": [ - 4024, + 4069, { "distinct_on": [ - 4032, + 4077, "[v_player_arch_nemesis_select_column!]" ], "limit": [ @@ -116630,19 +118412,19 @@ export default { 38 ], "order_by": [ - 4031, + 4076, "[v_player_arch_nemesis_order_by!]" ], "where": [ - 4028 + 4073 ] } ], "v_player_arch_nemesis_aggregate": [ - 4025, + 4070, { "distinct_on": [ - 4032, + 4077, "[v_player_arch_nemesis_select_column!]" ], "limit": [ @@ -116652,19 +118434,19 @@ export default { 38 ], "order_by": [ - 4031, + 4076, "[v_player_arch_nemesis_order_by!]" ], "where": [ - 4028 + 4073 ] } ], "v_player_damage": [ - 4042, + 4087, { "distinct_on": [ - 4050, + 4095, "[v_player_damage_select_column!]" ], "limit": [ @@ -116674,19 +118456,19 @@ export default { 38 ], "order_by": [ - 4049, + 4094, "[v_player_damage_order_by!]" ], "where": [ - 4046 + 4091 ] } ], "v_player_damage_aggregate": [ - 4043, + 4088, { "distinct_on": [ - 4050, + 4095, "[v_player_damage_select_column!]" ], "limit": [ @@ -116696,19 +118478,19 @@ export default { 38 ], "order_by": [ - 4049, + 4094, "[v_player_damage_order_by!]" ], "where": [ - 4046 + 4091 ] } ], "v_player_elo": [ - 4060, + 4105, { "distinct_on": [ - 4086, + 4131, "[v_player_elo_select_column!]" ], "limit": [ @@ -116718,19 +118500,19 @@ export default { 38 ], "order_by": [ - 4085, + 4130, "[v_player_elo_order_by!]" ], "where": [ - 4079 + 4124 ] } ], "v_player_elo_aggregate": [ - 4061, + 4106, { "distinct_on": [ - 4086, + 4131, "[v_player_elo_select_column!]" ], "limit": [ @@ -116740,19 +118522,19 @@ export default { 38 ], "order_by": [ - 4085, + 4130, "[v_player_elo_order_by!]" ], "where": [ - 4079 + 4124 ] } ], "v_player_map_losses": [ - 4111, + 4156, { "distinct_on": [ - 4119, + 4164, "[v_player_map_losses_select_column!]" ], "limit": [ @@ -116762,19 +118544,19 @@ export default { 38 ], "order_by": [ - 4118, + 4163, "[v_player_map_losses_order_by!]" ], "where": [ - 4115 + 4160 ] } ], "v_player_map_losses_aggregate": [ - 4112, + 4157, { "distinct_on": [ - 4119, + 4164, "[v_player_map_losses_select_column!]" ], "limit": [ @@ -116784,19 +118566,19 @@ export default { 38 ], "order_by": [ - 4118, + 4163, "[v_player_map_losses_order_by!]" ], "where": [ - 4115 + 4160 ] } ], "v_player_map_wins": [ - 4129, + 4174, { "distinct_on": [ - 4137, + 4182, "[v_player_map_wins_select_column!]" ], "limit": [ @@ -116806,19 +118588,19 @@ export default { 38 ], "order_by": [ - 4136, + 4181, "[v_player_map_wins_order_by!]" ], "where": [ - 4133 + 4178 ] } ], "v_player_map_wins_aggregate": [ - 4130, + 4175, { "distinct_on": [ - 4137, + 4182, "[v_player_map_wins_select_column!]" ], "limit": [ @@ -116828,19 +118610,19 @@ export default { 38 ], "order_by": [ - 4136, + 4181, "[v_player_map_wins_order_by!]" ], "where": [ - 4133 + 4178 ] } ], "v_player_match_head_to_head": [ - 4147, + 4192, { "distinct_on": [ - 4155, + 4200, "[v_player_match_head_to_head_select_column!]" ], "limit": [ @@ -116850,19 +118632,19 @@ export default { 38 ], "order_by": [ - 4154, + 4199, "[v_player_match_head_to_head_order_by!]" ], "where": [ - 4151 + 4196 ] } ], "v_player_match_head_to_head_aggregate": [ - 4148, + 4193, { "distinct_on": [ - 4155, + 4200, "[v_player_match_head_to_head_select_column!]" ], "limit": [ @@ -116872,19 +118654,19 @@ export default { 38 ], "order_by": [ - 4154, + 4199, "[v_player_match_head_to_head_order_by!]" ], "where": [ - 4151 + 4196 ] } ], "v_player_match_map_hltv": [ - 4165, + 4210, { "distinct_on": [ - 4183, + 4228, "[v_player_match_map_hltv_select_column!]" ], "limit": [ @@ -116894,19 +118676,19 @@ export default { 38 ], "order_by": [ - 4182, + 4227, "[v_player_match_map_hltv_order_by!]" ], "where": [ - 4174 + 4219 ] } ], "v_player_match_map_hltv_aggregate": [ - 4166, + 4211, { "distinct_on": [ - 4183, + 4228, "[v_player_match_map_hltv_select_column!]" ], "limit": [ @@ -116916,19 +118698,19 @@ export default { 38 ], "order_by": [ - 4182, + 4227, "[v_player_match_map_hltv_order_by!]" ], "where": [ - 4174 + 4219 ] } ], "v_player_match_map_roles": [ - 4202, + 4247, { "distinct_on": [ - 4210, + 4255, "[v_player_match_map_roles_select_column!]" ], "limit": [ @@ -116938,19 +118720,19 @@ export default { 38 ], "order_by": [ - 4209, + 4254, "[v_player_match_map_roles_order_by!]" ], "where": [ - 4206 + 4251 ] } ], "v_player_match_map_roles_aggregate": [ - 4203, + 4248, { "distinct_on": [ - 4210, + 4255, "[v_player_match_map_roles_select_column!]" ], "limit": [ @@ -116960,19 +118742,19 @@ export default { 38 ], "order_by": [ - 4209, + 4254, "[v_player_match_map_roles_order_by!]" ], "where": [ - 4206 + 4251 ] } ], "v_player_match_performance": [ - 4220, + 4265, { "distinct_on": [ - 4228, + 4273, "[v_player_match_performance_select_column!]" ], "limit": [ @@ -116982,19 +118764,19 @@ export default { 38 ], "order_by": [ - 4227, + 4272, "[v_player_match_performance_order_by!]" ], "where": [ - 4224 + 4269 ] } ], "v_player_match_performance_aggregate": [ - 4221, + 4266, { "distinct_on": [ - 4228, + 4273, "[v_player_match_performance_select_column!]" ], "limit": [ @@ -117004,19 +118786,19 @@ export default { 38 ], "order_by": [ - 4227, + 4272, "[v_player_match_performance_order_by!]" ], "where": [ - 4224 + 4269 ] } ], "v_player_match_rating": [ - 4238, + 4283, { "distinct_on": [ - 4246, + 4291, "[v_player_match_rating_select_column!]" ], "limit": [ @@ -117026,19 +118808,19 @@ export default { 38 ], "order_by": [ - 4245, + 4290, "[v_player_match_rating_order_by!]" ], "where": [ - 4242 + 4287 ] } ], "v_player_match_rating_aggregate": [ - 4239, + 4284, { "distinct_on": [ - 4246, + 4291, "[v_player_match_rating_select_column!]" ], "limit": [ @@ -117048,19 +118830,19 @@ export default { 38 ], "order_by": [ - 4245, + 4290, "[v_player_match_rating_order_by!]" ], "where": [ - 4242 + 4287 ] } ], "v_player_multi_kills": [ - 4256, + 4301, { "distinct_on": [ - 4272, + 4317, "[v_player_multi_kills_select_column!]" ], "limit": [ @@ -117070,19 +118852,19 @@ export default { 38 ], "order_by": [ - 4271, + 4316, "[v_player_multi_kills_order_by!]" ], "where": [ - 4265 + 4310 ] } ], "v_player_multi_kills_aggregate": [ - 4257, + 4302, { "distinct_on": [ - 4272, + 4317, "[v_player_multi_kills_select_column!]" ], "limit": [ @@ -117092,19 +118874,19 @@ export default { 38 ], "order_by": [ - 4271, + 4316, "[v_player_multi_kills_order_by!]" ], "where": [ - 4265 + 4310 ] } ], "v_player_weapon_damage": [ - 4289, + 4334, { "distinct_on": [ - 4297, + 4342, "[v_player_weapon_damage_select_column!]" ], "limit": [ @@ -117114,19 +118896,19 @@ export default { 38 ], "order_by": [ - 4296, + 4341, "[v_player_weapon_damage_order_by!]" ], "where": [ - 4293 + 4338 ] } ], "v_player_weapon_damage_aggregate": [ - 4290, + 4335, { "distinct_on": [ - 4297, + 4342, "[v_player_weapon_damage_select_column!]" ], "limit": [ @@ -117136,19 +118918,19 @@ export default { 38 ], "order_by": [ - 4296, + 4341, "[v_player_weapon_damage_order_by!]" ], "where": [ - 4293 + 4338 ] } ], "v_player_weapon_kills": [ - 4307, + 4352, { "distinct_on": [ - 4315, + 4360, "[v_player_weapon_kills_select_column!]" ], "limit": [ @@ -117158,19 +118940,19 @@ export default { 38 ], "order_by": [ - 4314, + 4359, "[v_player_weapon_kills_order_by!]" ], "where": [ - 4311 + 4356 ] } ], "v_player_weapon_kills_aggregate": [ - 4308, + 4353, { "distinct_on": [ - 4315, + 4360, "[v_player_weapon_kills_select_column!]" ], "limit": [ @@ -117180,19 +118962,19 @@ export default { 38 ], "order_by": [ - 4314, + 4359, "[v_player_weapon_kills_order_by!]" ], "where": [ - 4311 + 4356 ] } ], "v_pool_maps": [ - 4325, + 4370, { "distinct_on": [ - 4342, + 4387, "[v_pool_maps_select_column!]" ], "limit": [ @@ -117202,19 +118984,19 @@ export default { 38 ], "order_by": [ - 4341, + 4386, "[v_pool_maps_order_by!]" ], "where": [ - 4334 + 4379 ] } ], "v_pool_maps_aggregate": [ - 4326, + 4371, { "distinct_on": [ - 4342, + 4387, "[v_pool_maps_select_column!]" ], "limit": [ @@ -117224,19 +119006,19 @@ export default { 38 ], "order_by": [ - 4341, + 4386, "[v_pool_maps_order_by!]" ], "where": [ - 4334 + 4379 ] } ], "v_steam_account_pool_status": [ - 4349, + 4394, { "distinct_on": [ - 4357, + 4402, "[v_steam_account_pool_status_select_column!]" ], "limit": [ @@ -117246,19 +119028,19 @@ export default { 38 ], "order_by": [ - 4356, + 4401, "[v_steam_account_pool_status_order_by!]" ], "where": [ - 4353 + 4398 ] } ], "v_steam_account_pool_status_aggregate": [ - 4350, + 4395, { "distinct_on": [ - 4357, + 4402, "[v_steam_account_pool_status_select_column!]" ], "limit": [ @@ -117268,19 +119050,19 @@ export default { 38 ], "order_by": [ - 4356, + 4401, "[v_steam_account_pool_status_order_by!]" ], "where": [ - 4353 + 4398 ] } ], "v_team_ranks": [ - 4367, + 4412, { "distinct_on": [ - 4377, + 4422, "[v_team_ranks_select_column!]" ], "limit": [ @@ -117290,19 +119072,19 @@ export default { 38 ], "order_by": [ - 4376, + 4421, "[v_team_ranks_order_by!]" ], "where": [ - 4371 + 4416 ] } ], "v_team_ranks_aggregate": [ - 4368, + 4413, { "distinct_on": [ - 4377, + 4422, "[v_team_ranks_select_column!]" ], "limit": [ @@ -117312,19 +119094,19 @@ export default { 38 ], "order_by": [ - 4376, + 4421, "[v_team_ranks_order_by!]" ], "where": [ - 4371 + 4416 ] } ], "v_team_reputation": [ - 4387, + 4432, { "distinct_on": [ - 4397, + 4442, "[v_team_reputation_select_column!]" ], "limit": [ @@ -117334,19 +119116,19 @@ export default { 38 ], "order_by": [ - 4396, + 4441, "[v_team_reputation_order_by!]" ], "where": [ - 4391 + 4436 ] } ], "v_team_reputation_aggregate": [ - 4388, + 4433, { "distinct_on": [ - 4397, + 4442, "[v_team_reputation_select_column!]" ], "limit": [ @@ -117356,19 +119138,19 @@ export default { 38 ], "order_by": [ - 4396, + 4441, "[v_team_reputation_order_by!]" ], "where": [ - 4391 + 4436 ] } ], "v_team_stage_results": [ - 4407, + 4452, { "distinct_on": [ - 4439, + 4484, "[v_team_stage_results_select_column!]" ], "limit": [ @@ -117378,19 +119160,19 @@ export default { 38 ], "order_by": [ - 4437, + 4482, "[v_team_stage_results_order_by!]" ], "where": [ - 4426 + 4471 ] } ], "v_team_stage_results_aggregate": [ - 4408, + 4453, { "distinct_on": [ - 4439, + 4484, "[v_team_stage_results_select_column!]" ], "limit": [ @@ -117400,32 +119182,32 @@ export default { 38 ], "order_by": [ - 4437, + 4482, "[v_team_stage_results_order_by!]" ], "where": [ - 4426 + 4471 ] } ], "v_team_stage_results_by_pk": [ - 4407, + 4452, { "tournament_stage_id": [ - 3818, + 3863, "uuid!" ], "tournament_team_id": [ - 3818, + 3863, "uuid!" ] } ], "v_team_tournament_results": [ - 4467, + 4512, { "distinct_on": [ - 4493, + 4538, "[v_team_tournament_results_select_column!]" ], "limit": [ @@ -117435,19 +119217,19 @@ export default { 38 ], "order_by": [ - 4492, + 4537, "[v_team_tournament_results_order_by!]" ], "where": [ - 4486 + 4531 ] } ], "v_team_tournament_results_aggregate": [ - 4468, + 4513, { "distinct_on": [ - 4493, + 4538, "[v_team_tournament_results_select_column!]" ], "limit": [ @@ -117457,19 +119239,19 @@ export default { 38 ], "order_by": [ - 4492, + 4537, "[v_team_tournament_results_order_by!]" ], "where": [ - 4486 + 4531 ] } ], "v_tournament_player_stats": [ - 4518, + 4563, { "distinct_on": [ - 4544, + 4589, "[v_tournament_player_stats_select_column!]" ], "limit": [ @@ -117479,19 +119261,19 @@ export default { 38 ], "order_by": [ - 4543, + 4588, "[v_tournament_player_stats_order_by!]" ], "where": [ - 4537 + 4582 ] } ], "v_tournament_player_stats_aggregate": [ - 4519, + 4564, { "distinct_on": [ - 4544, + 4589, "[v_tournament_player_stats_select_column!]" ], "limit": [ @@ -117501,16 +119283,16 @@ export default { 38 ], "order_by": [ - 4543, + 4588, "[v_tournament_player_stats_order_by!]" ], "where": [ - 4537 + 4582 ] } ], "__typename": [ - 70 + 74 ] }, "Mutation": { @@ -117518,176 +119300,195 @@ export default { 55, { "match_id": [ - 3818, + 3863, "uuid!" ] } ], "ResetTournamentMatch": [ - 73, + 77, { "match_id": [ - 3818, + 3863, "uuid!" ], "reset_status": [ - 70 + 74 ], "scheduled_at": [ - 3421 + 3466 ], "winning_lineup_id": [ - 3818 + 3863 ] } ], "acceptInvite": [ - 73, + 77, { "invite_id": [ - 3818, + 3863, "uuid!" ], "type": [ - 70, + 74, "String!" ] } ], "addDraftPlayer": [ - 73, + 77, { "draftGameId": [ - 3818, + 3863, "uuid!" ], "steamId": [ - 70, + 74, + "String!" + ] + } + ], + "addSteamPresenceBotAccount": [ + 77, + { + "bot_secret": [ + 74, + "String!" + ], + "friend_capacity": [ + 38 + ], + "username": [ + 74, "String!" ] } ], "approveNameChange": [ - 73, + 77, { "name": [ - 70, + 74, "String!" ], "steam_id": [ - 169, + 173, "bigint!" ] } ], + "assignSteamPresenceBot": [ + 70 + ], "attachDemo": [ - 82 + 86 ], "bakeShaders": [ - 73, + 77, { "game_server_node_id": [ - 3818, + 3863, "uuid!" ] } ], "callForOrganizer": [ - 73, + 77, { "match_id": [ - 70, + 74, "String!" ] } ], "cancelBakeShaders": [ - 73, + 77, { "game_server_node_id": [ - 3818, + 3863, "uuid!" ] } ], "cancelClipRender": [ - 73, + 77, { "job_id": [ - 3818, + 3863, "uuid!" ] } ], "cancelClipRenderBatch": [ - 73, + 77, { "match_map_id": [ - 3818, + 3863, "uuid!" ] } ], "cancelMatch": [ - 73, + 77, { "match_id": [ - 3818, + 3863, "uuid!" ] } ], "cancelReparseAllDemos": [ - 73 + 77 ], "cancelScrimRequest": [ - 73, + 77, { "request_id": [ - 3818, + 3863, "uuid!" ] } ], "checkIntoMatch": [ - 73, + 77, { "match_id": [ - 3818, + 3863, "uuid!" ] } ], "clearClipRenderBatch": [ - 73, + 77, { "match_map_id": [ - 3818, + 3863, "uuid!" ] } ], "clearFinishedClipRenders": [ - 73 + 77 ], "clearPendingMatchImport": [ 53, { "valve_match_id": [ - 70, + 74, "String!" ] } ], "counterScrimRequest": [ - 73, + 77, { "proposed_scheduled_at": [ - 3421, + 3466, "timestamptz!" ], "request_id": [ - 3818, + 3863, "uuid!" ] } @@ -117696,7 +119497,7 @@ export default { 2, { "label": [ - 70, + 74, "String!" ] } @@ -117708,25 +119509,25 @@ export default { 38 ], "match_map_id": [ - 3818, + 3863, "uuid!" ], "preset": [ - 70, + 74, "String!" ], "resolution": [ - 70 + 74 ], "target_name": [ - 70 + 74 ], "target_steam_id": [ - 70, + 74, "String!" ], "title": [ - 70 + 74 ] } ], @@ -117740,10 +119541,10 @@ export default { } ], "createClips": [ - 73, + 77, { "match_id": [ - 3818, + 3863, "uuid!" ] } @@ -117752,7 +119553,7 @@ export default { 14, { "settings": [ - 1235, + 1239, "jsonb!" ] } @@ -117769,54 +119570,54 @@ export default { "ScheduledLineupInput!" ], "options": [ - 1235, + 1239, "jsonb!" ], "scheduled_at": [ - 70, + 74, "String!" ] } ], "createServerDirectory": [ - 73, + 77, { "dir_path": [ - 70, + 74, "String!" ], "node_id": [ - 70, + 74, "String!" ], "server_id": [ - 70 + 74 ] } ], "deleteClip": [ - 73, + 77, { "clip_id": [ - 3818, + 3863, "uuid!" ] } ], "deleteMatch": [ - 73, + 77, { "match_id": [ - 70, + 74, "String!" ] } ], "deleteNewsPost": [ - 73, + 77, { "id": [ - 3818, + 3863, "uuid!" ] } @@ -117825,851 +119626,851 @@ export default { 19, { "keys": [ - 70, + 74, "[String!]" ] } ], "deleteServerItem": [ - 73, + 77, { "node_id": [ - 70, + 74, "String!" ], "path": [ - 70, + 74, "String!" ], "server_id": [ - 70 + 74 ] } ], "deleteTournament": [ - 73, + 77, { "tournament_id": [ - 3818, + 3863, "uuid!" ] } ], "delete__map_pool": [ - 91, + 95, { "where": [ - 86, + 90, "_map_pool_bool_exp!" ] } ], "delete__map_pool_by_pk": [ - 83, + 87, { "map_id": [ - 3818, + 3863, "uuid!" ], "map_pool_id": [ - 3818, + 3863, "uuid!" ] } ], "delete_abandoned_matches": [ - 118, + 122, { "where": [ - 110, + 114, "abandoned_matches_bool_exp!" ] } ], "delete_abandoned_matches_by_pk": [ - 101, + 105, { "id": [ - 3818, + 3863, "uuid!" ] } ], "delete_api_keys": [ - 152, + 156, { "where": [ - 146, + 150, "api_keys_bool_exp!" ] } ], "delete_api_keys_by_pk": [ - 142, + 146, { "id": [ - 3818, + 3863, "uuid!" ] } ], "delete_clip_render_jobs": [ - 197, + 201, { "where": [ - 186, + 190, "clip_render_jobs_bool_exp!" ] } ], "delete_clip_render_jobs_by_pk": [ - 174, + 178, { "id": [ - 3818, + 3863, "uuid!" ] } ], "delete_db_backups": [ - 235, + 239, { "where": [ - 229, + 233, "db_backups_bool_exp!" ] } ], "delete_db_backups_by_pk": [ - 225, + 229, { "id": [ - 3818, + 3863, "uuid!" ] } ], "delete_draft_game_picks": [ - 271, + 275, { "where": [ - 263, + 267, "draft_game_picks_bool_exp!" ] } ], "delete_draft_game_picks_by_pk": [ - 252, + 256, { "id": [ - 3818, + 3863, "uuid!" ] } ], "delete_draft_game_players": [ - 316, + 320, { "where": [ - 308, + 312, "draft_game_players_bool_exp!" ] } ], "delete_draft_game_players_by_pk": [ - 297, + 301, { "draft_game_id": [ - 3818, + 3863, "uuid!" ], "steam_id": [ - 169, + 173, "bigint!" ] } ], "delete_draft_games": [ - 361, + 365, { "where": [ - 353, + 357, "draft_games_bool_exp!" ] } ], "delete_draft_games_by_pk": [ - 342, + 346, { "id": [ - 3818, + 3863, "uuid!" ] } ], "delete_e_check_in_settings": [ - 398, + 402, { "where": [ - 391, + 395, "e_check_in_settings_bool_exp!" ] } ], "delete_e_check_in_settings_by_pk": [ - 388, + 392, { "value": [ - 70, + 74, "String!" ] } ], "delete_e_draft_game_captain_selection": [ - 418, + 422, { "where": [ - 411, + 415, "e_draft_game_captain_selection_bool_exp!" ] } ], "delete_e_draft_game_captain_selection_by_pk": [ - 408, + 412, { "value": [ - 70, + 74, "String!" ] } ], "delete_e_draft_game_draft_order": [ - 439, + 443, { "where": [ - 432, + 436, "e_draft_game_draft_order_bool_exp!" ] } ], "delete_e_draft_game_draft_order_by_pk": [ - 429, + 433, { "value": [ - 70, + 74, "String!" ] } ], "delete_e_draft_game_mode": [ - 460, + 464, { "where": [ - 453, + 457, "e_draft_game_mode_bool_exp!" ] } ], "delete_e_draft_game_mode_by_pk": [ - 450, + 454, { "value": [ - 70, + 74, "String!" ] } ], "delete_e_draft_game_player_status": [ - 481, + 485, { "where": [ - 474, + 478, "e_draft_game_player_status_bool_exp!" ] } ], "delete_e_draft_game_player_status_by_pk": [ - 471, + 475, { "value": [ - 70, + 74, "String!" ] } ], "delete_e_draft_game_status": [ - 502, + 506, { "where": [ - 495, + 499, "e_draft_game_status_bool_exp!" ] } ], "delete_e_draft_game_status_by_pk": [ - 492, + 496, { "value": [ - 70, + 74, "String!" ] } ], "delete_e_friend_status": [ - 523, + 527, { "where": [ - 516, + 520, "e_friend_status_bool_exp!" ] } ], "delete_e_friend_status_by_pk": [ - 513, + 517, { "value": [ - 70, + 74, "String!" ] } ], "delete_e_game_cfg_types": [ - 544, + 548, { "where": [ - 537, + 541, "e_game_cfg_types_bool_exp!" ] } ], "delete_e_game_cfg_types_by_pk": [ - 534, + 538, { "value": [ - 70, + 74, "String!" ] } ], "delete_e_game_server_node_statuses": [ - 564, + 568, { "where": [ - 557, + 561, "e_game_server_node_statuses_bool_exp!" ] } ], "delete_e_game_server_node_statuses_by_pk": [ - 554, + 558, { "value": [ - 70, + 74, "String!" ] } ], "delete_e_lobby_access": [ - 585, + 589, { "where": [ - 578, + 582, "e_lobby_access_bool_exp!" ] } ], "delete_e_lobby_access_by_pk": [ - 575, + 579, { "value": [ - 70, + 74, "String!" ] } ], "delete_e_lobby_player_status": [ - 606, + 610, { "where": [ - 599, + 603, "e_lobby_player_status_bool_exp!" ] } ], "delete_e_lobby_player_status_by_pk": [ - 596, + 600, { "value": [ - 70, + 74, "String!" ] } ], "delete_e_map_pool_types": [ - 626, + 630, { "where": [ - 619, + 623, "e_map_pool_types_bool_exp!" ] } ], "delete_e_map_pool_types_by_pk": [ - 616, + 620, { "value": [ - 70, + 74, "String!" ] } ], "delete_e_match_clip_visibility": [ - 647, + 651, { "where": [ - 640, + 644, "e_match_clip_visibility_bool_exp!" ] } ], "delete_e_match_clip_visibility_by_pk": [ - 637, + 641, { "value": [ - 70, + 74, "String!" ] } ], "delete_e_match_map_status": [ - 667, + 671, { "where": [ - 660, + 664, "e_match_map_status_bool_exp!" ] } ], "delete_e_match_map_status_by_pk": [ - 657, + 661, { "value": [ - 70, + 74, "String!" ] } ], "delete_e_match_mode": [ - 688, + 692, { "where": [ - 681, + 685, "e_match_mode_bool_exp!" ] } ], "delete_e_match_mode_by_pk": [ - 678, + 682, { "value": [ - 70, + 74, "String!" ] } ], "delete_e_match_status": [ - 708, + 712, { "where": [ - 701, + 705, "e_match_status_bool_exp!" ] } ], "delete_e_match_status_by_pk": [ - 698, + 702, { "value": [ - 70, + 74, "String!" ] } ], "delete_e_match_types": [ - 729, + 733, { "where": [ - 722, + 726, "e_match_types_bool_exp!" ] } ], "delete_e_match_types_by_pk": [ - 719, + 723, { "value": [ - 70, + 74, "String!" ] } ], "delete_e_notification_types": [ - 750, + 754, { "where": [ - 743, + 747, "e_notification_types_bool_exp!" ] } ], "delete_e_notification_types_by_pk": [ - 740, + 744, { "value": [ - 70, + 74, "String!" ] } ], "delete_e_objective_types": [ - 770, + 774, { "where": [ - 763, + 767, "e_objective_types_bool_exp!" ] } ], "delete_e_objective_types_by_pk": [ - 760, + 764, { "value": [ - 70, + 74, "String!" ] } ], "delete_e_player_roles": [ - 790, + 794, { "where": [ - 783, + 787, "e_player_roles_bool_exp!" ] } ], "delete_e_player_roles_by_pk": [ - 780, + 784, { "value": [ - 70, + 74, "String!" ] } ], "delete_e_ready_settings": [ - 810, + 814, { "where": [ - 803, + 807, "e_ready_settings_bool_exp!" ] } ], "delete_e_ready_settings_by_pk": [ - 800, + 804, { "value": [ - 70, + 74, "String!" ] } ], "delete_e_sanction_types": [ - 830, + 834, { "where": [ - 823, + 827, "e_sanction_types_bool_exp!" ] } ], "delete_e_sanction_types_by_pk": [ - 820, + 824, { "value": [ - 70, + 74, "String!" ] } ], "delete_e_scrim_request_statuses": [ - 851, + 855, { "where": [ - 844, + 848, "e_scrim_request_statuses_bool_exp!" ] } ], "delete_e_scrim_request_statuses_by_pk": [ - 841, + 845, { "value": [ - 70, + 74, "String!" ] } ], "delete_e_server_types": [ - 871, + 875, { "where": [ - 864, + 868, "e_server_types_bool_exp!" ] } ], "delete_e_server_types_by_pk": [ - 861, + 865, { "value": [ - 70, + 74, "String!" ] } ], "delete_e_sides": [ - 891, + 895, { "where": [ - 884, + 888, "e_sides_bool_exp!" ] } ], "delete_e_sides_by_pk": [ - 881, + 885, { "value": [ - 70, + 74, "String!" ] } ], "delete_e_system_alert_types": [ - 911, + 915, { "where": [ - 904, + 908, "e_system_alert_types_bool_exp!" ] } ], "delete_e_system_alert_types_by_pk": [ - 901, + 905, { "value": [ - 70, + 74, "String!" ] } ], "delete_e_team_roles": [ - 931, + 935, { "where": [ - 924, + 928, "e_team_roles_bool_exp!" ] } ], "delete_e_team_roles_by_pk": [ - 921, + 925, { "value": [ - 70, + 74, "String!" ] } ], "delete_e_team_roster_statuses": [ - 952, + 956, { "where": [ - 945, + 949, "e_team_roster_statuses_bool_exp!" ] } ], "delete_e_team_roster_statuses_by_pk": [ - 942, + 946, { "value": [ - 70, + 74, "String!" ] } ], "delete_e_timeout_settings": [ - 972, + 976, { "where": [ - 965, + 969, "e_timeout_settings_bool_exp!" ] } ], "delete_e_timeout_settings_by_pk": [ - 962, + 966, { "value": [ - 70, + 74, "String!" ] } ], "delete_e_tournament_stage_types": [ - 992, + 996, { "where": [ - 985, + 989, "e_tournament_stage_types_bool_exp!" ] } ], "delete_e_tournament_stage_types_by_pk": [ - 982, + 986, { "value": [ - 70, + 74, "String!" ] } ], "delete_e_tournament_status": [ - 1013, + 1017, { "where": [ - 1006, + 1010, "e_tournament_status_bool_exp!" ] } ], "delete_e_tournament_status_by_pk": [ - 1003, + 1007, { "value": [ - 70, + 74, "String!" ] } ], "delete_e_utility_types": [ - 1034, + 1038, { "where": [ - 1027, + 1031, "e_utility_types_bool_exp!" ] } ], "delete_e_utility_types_by_pk": [ - 1024, + 1028, { "value": [ - 70, + 74, "String!" ] } ], "delete_e_veto_pick_types": [ - 1054, + 1058, { "where": [ - 1047, + 1051, "e_veto_pick_types_bool_exp!" ] } ], "delete_e_veto_pick_types_by_pk": [ - 1044, + 1048, { "value": [ - 70, + 74, "String!" ] } ], "delete_e_winning_reasons": [ - 1074, + 1078, { "where": [ - 1067, + 1071, "e_winning_reasons_bool_exp!" ] } ], "delete_e_winning_reasons_by_pk": [ - 1064, + 1068, { "value": [ - 70, + 74, "String!" ] } ], "delete_friends": [ - 1096, + 1100, { "where": [ - 1090, + 1094, "friends_bool_exp!" ] } ], "delete_friends_by_pk": [ - 1086, + 1090, { "other_player_steam_id": [ - 169, + 173, "bigint!" ], "player_steam_id": [ - 169, + 173, "bigint!" ] } ], "delete_game_server_nodes": [ - 1136, + 1140, { "where": [ - 1125, + 1129, "game_server_nodes_bool_exp!" ] } ], "delete_game_server_nodes_by_pk": [ - 1113, + 1117, { "id": [ - 70, + 74, "String!" ] } ], "delete_game_versions": [ - 1178, + 1182, { "where": [ - 1169, + 1173, "game_versions_bool_exp!" ] } ], "delete_game_versions_by_pk": [ - 1164, + 1168, { "build_id": [ 38, @@ -118678,1416 +120479,1434 @@ export default { } ], "delete_gamedata_signature_validations": [ - 1211, + 1215, { "where": [ - 1202, + 1206, "gamedata_signature_validations_bool_exp!" ] } ], "delete_gamedata_signature_validations_by_pk": [ - 1197, + 1201, { "id": [ - 3818, + 3863, "uuid!" ] } ], "delete_leaderboard_entries": [ - 1247, + 1251, { "where": [ - 1242, + 1246, "leaderboard_entries_bool_exp!" ] } ], "delete_lobbies": [ - 1269, + 1273, { "where": [ - 1264, + 1268, "lobbies_bool_exp!" ] } ], "delete_lobbies_by_pk": [ - 1261, + 1265, { "id": [ - 3818, + 3863, "uuid!" ] } ], "delete_lobby_players": [ - 1299, + 1303, { "where": [ - 1291, + 1295, "lobby_players_bool_exp!" ] } ], "delete_lobby_players_by_pk": [ - 1280, + 1284, { "lobby_id": [ - 3818, + 3863, "uuid!" ], "steam_id": [ - 169, + 173, "bigint!" ] } ], "delete_map_pools": [ - 1333, + 1337, { "where": [ - 1328, + 1332, "map_pools_bool_exp!" ] } ], "delete_map_pools_by_pk": [ - 1325, + 1329, { "id": [ - 3818, + 3863, "uuid!" ] } ], "delete_maps": [ - 1360, + 1364, { "where": [ - 1353, + 1357, "maps_bool_exp!" ] } ], "delete_maps_by_pk": [ - 1344, + 1348, { "id": [ - 3818, + 3863, "uuid!" ] } ], "delete_match_clips": [ - 1390, + 1394, { "where": [ - 1382, + 1386, "match_clips_bool_exp!" ] } ], "delete_match_clips_by_pk": [ - 1373, + 1377, { "id": [ - 3818, + 3863, "uuid!" ] } ], "delete_match_demo_sessions": [ - 1436, + 1440, { "where": [ - 1425, + 1429, "match_demo_sessions_bool_exp!" ] } ], "delete_match_demo_sessions_by_pk": [ - 1415, + 1419, { "id": [ - 3818, + 3863, "uuid!" ] } ], "delete_match_lineup_players": [ - 1480, + 1484, { "where": [ - 1472, + 1476, "match_lineup_players_bool_exp!" ] } ], "delete_match_lineup_players_by_pk": [ - 1461, + 1465, { "id": [ - 3818, + 3863, "uuid!" ] } ], "delete_match_lineups": [ - 1523, + 1527, { "where": [ - 1515, + 1519, "match_lineups_bool_exp!" ] } ], "delete_match_lineups_by_pk": [ - 1506, + 1510, { "id": [ - 3818, + 3863, "uuid!" ] } ], "delete_match_map_demos": [ - 1571, + 1575, { "where": [ - 1560, + 1564, "match_map_demos_bool_exp!" ] } ], "delete_match_map_demos_by_pk": [ - 1548, + 1552, { "id": [ - 3818, + 3863, "uuid!" ] } ], "delete_match_map_rounds": [ - 1616, + 1620, { "where": [ - 1608, + 1612, "match_map_rounds_bool_exp!" ] } ], "delete_match_map_rounds_by_pk": [ - 1599, + 1603, { "id": [ - 3818, + 3863, "uuid!" ] } ], "delete_match_map_veto_picks": [ - 1654, + 1658, { "where": [ - 1647, + 1651, "match_map_veto_picks_bool_exp!" ] } ], "delete_match_map_veto_picks_by_pk": [ - 1640, + 1644, { "id": [ - 3818, + 3863, "uuid!" ] } ], "delete_match_maps": [ - 1681, + 1685, { "where": [ - 1673, + 1677, "match_maps_bool_exp!" ] } ], "delete_match_maps_by_pk": [ - 1664, + 1668, { "id": [ - 3818, + 3863, "uuid!" ] } ], "delete_match_options": [ - 1716, + 1720, { "where": [ - 1710, + 1714, "match_options_bool_exp!" ] } ], "delete_match_options_by_pk": [ - 1706, + 1710, { "id": [ - 3818, + 3863, "uuid!" ] } ], "delete_match_region_veto_picks": [ - 1748, + 1752, { "where": [ - 1741, + 1745, "match_region_veto_picks_bool_exp!" ] } ], "delete_match_region_veto_picks_by_pk": [ - 1734, + 1738, { "id": [ - 3818, + 3863, "uuid!" ] } ], "delete_match_streams": [ - 1781, + 1785, { "where": [ - 1770, + 1774, "match_streams_bool_exp!" ] } ], "delete_match_streams_by_pk": [ - 1758, + 1762, { "id": [ - 3818, + 3863, "uuid!" ] } ], "delete_match_type_cfgs": [ - 1816, + 1820, { "where": [ - 1811, + 1815, "match_type_cfgs_bool_exp!" ] } ], "delete_match_type_cfgs_by_pk": [ - 1808, + 1812, { "type": [ - 539, + 543, "e_game_cfg_types_enum!" ] } ], "delete_matches": [ - 1843, + 1847, { "where": [ - 1835, + 1839, "matches_bool_exp!" ] } ], "delete_matches_by_pk": [ - 1826, + 1830, { "id": [ - 3818, + 3863, "uuid!" ] } ], "delete_migration_hashes_hashes": [ - 1876, + 1880, { "where": [ - 1871, + 1875, "migration_hashes_hashes_bool_exp!" ] } ], "delete_migration_hashes_hashes_by_pk": [ - 1868, + 1872, { "name": [ - 70, + 74, "String!" ] } ], "delete_my_friends": [ - 1908, + 1912, { "where": [ - 1898, + 1902, "my_friends_bool_exp!" ] } ], "delete_news_articles": [ - 1942, + 1946, { "where": [ - 1936, + 1940, "news_articles_bool_exp!" ] } ], "delete_news_articles_by_pk": [ - 1932, + 1936, { "id": [ - 3818, + 3863, "uuid!" ] } ], "delete_notifications": [ - 1982, + 1986, { "where": [ - 1971, + 1975, "notifications_bool_exp!" ] } ], "delete_notifications_by_pk": [ - 1959, + 1963, { "id": [ - 3818, + 3863, "uuid!" ] } ], "delete_pending_match_import_players": [ - 2029, + 2033, { "where": [ - 2021, + 2025, "pending_match_import_players_bool_exp!" ] } ], "delete_pending_match_import_players_by_pk": [ - 2012, + 2016, { "steam_id": [ - 169, + 173, "bigint!" ], "valve_match_id": [ - 2009, + 2013, "numeric!" ] } ], "delete_pending_match_imports": [ - 2063, + 2067, { "where": [ - 2057, + 2061, "pending_match_imports_bool_exp!" ] } ], "delete_pending_match_imports_by_pk": [ - 2053, + 2057, { "valve_match_id": [ - 2009, + 2013, "numeric!" ] } ], "delete_player_aim_stats_demo": [ - 2091, + 2095, { "where": [ - 2085, + 2089, "player_aim_stats_demo_bool_exp!" ] } ], "delete_player_aim_stats_demo_by_pk": [ - 2081, + 2085, { "attacker_steam_id": [ - 169, + 173, "bigint!" ], "match_map_id": [ - 3818, + 3863, "uuid!" ] } ], "delete_player_aim_weapon_stats": [ - 2125, + 2129, { "where": [ - 2117, + 2121, "player_aim_weapon_stats_bool_exp!" ] } ], "delete_player_aim_weapon_stats_by_pk": [ - 2108, + 2112, { "match_map_id": [ - 3818, + 3863, "uuid!" ], "steam_id": [ - 169, + 173, "bigint!" ], "weapon_class": [ - 70, + 74, "String!" ] } ], "delete_player_assists": [ - 2168, + 2172, { "where": [ - 2160, + 2164, "player_assists_bool_exp!" ] } ], "delete_player_assists_by_pk": [ - 2149, + 2153, { "attacked_steam_id": [ - 169, + 173, "bigint!" ], "attacker_steam_id": [ - 169, + 173, "bigint!" ], "match_map_id": [ - 3818, + 3863, "uuid!" ], "time": [ - 3421, + 3466, "timestamptz!" ] } ], "delete_player_damages": [ - 2229, + 2233, { "where": [ - 2221, + 2225, "player_damages_bool_exp!" ] } ], "delete_player_damages_by_pk": [ - 2212, + 2216, { "id": [ - 3818, + 3863, "uuid!" ], "match_map_id": [ - 3818, + 3863, "uuid!" ], "time": [ - 3421, + 3466, "timestamptz!" ] } ], "delete_player_elo": [ - 2263, + 2267, { "where": [ - 2257, + 2261, "player_elo_bool_exp!" ] } ], "delete_player_elo_by_pk": [ - 2253, + 2257, { "match_id": [ - 3818, + 3863, "uuid!" ], "steam_id": [ - 169, + 173, "bigint!" ], "type": [ - 724, + 728, "e_match_types_enum!" ] } ], "delete_player_faceit_rank_history": [ - 2297, + 2301, { "where": [ - 2289, + 2293, "player_faceit_rank_history_bool_exp!" ] } ], "delete_player_faceit_rank_history_by_pk": [ - 2280, + 2284, { "id": [ - 3818, + 3863, "uuid!" ] } ], "delete_player_flashes": [ - 2340, + 2344, { "where": [ - 2332, + 2336, "player_flashes_bool_exp!" ] } ], "delete_player_flashes_by_pk": [ - 2321, + 2325, { "attacked_steam_id": [ - 169, + 173, "bigint!" ], "attacker_steam_id": [ - 169, + 173, "bigint!" ], "match_map_id": [ - 3818, + 3863, "uuid!" ], "time": [ - 3421, + 3466, "timestamptz!" ] } ], "delete_player_kills": [ - 2426, + 2430, { "where": [ - 2377, + 2381, "player_kills_bool_exp!" ] } ], "delete_player_kills_by_pk": [ - 2366, + 2370, { "attacked_steam_id": [ - 169, + 173, "bigint!" ], "attacker_steam_id": [ - 169, + 173, "bigint!" ], "match_map_id": [ - 3818, + 3863, "uuid!" ], "time": [ - 3421, + 3466, "timestamptz!" ] } ], "delete_player_kills_by_weapon": [ - 2395, + 2399, { "where": [ - 2387, + 2391, "player_kills_by_weapon_bool_exp!" ] } ], "delete_player_kills_by_weapon_by_pk": [ - 2378, + 2382, { "player_steam_id": [ - 169, + 173, "bigint!" ], "with": [ - 70, + 74, "String!" ] } ], "delete_player_leaderboard_rank": [ - 2461, + 2465, { "where": [ - 2456, + 2460, "player_leaderboard_rank_bool_exp!" ] } ], "delete_player_match_map_stats": [ - 2492, + 2496, { "where": [ - 2484, + 2488, "player_match_map_stats_bool_exp!" ] } ], "delete_player_match_map_stats_by_pk": [ - 2475, + 2479, { "match_map_id": [ - 3818, + 3863, "uuid!" ], "steam_id": [ - 169, + 173, "bigint!" ] } ], "delete_player_objectives": [ - 2584, + 2588, { "where": [ - 2576, + 2580, "player_objectives_bool_exp!" ] } ], "delete_player_objectives_by_pk": [ - 2567, + 2571, { "match_map_id": [ - 3818, + 3863, "uuid!" ], "player_steam_id": [ - 169, + 173, "bigint!" ], "time": [ - 3421, + 3466, "timestamptz!" ] } ], "delete_player_premier_rank_history": [ - 2643, + 2647, { "where": [ - 2635, + 2639, "player_premier_rank_history_bool_exp!" ] } ], "delete_player_premier_rank_history_by_pk": [ - 2626, + 2630, { "id": [ - 3818, + 3863, "uuid!" ] } ], "delete_player_sanctions": [ - 2684, + 2688, { "where": [ - 2676, + 2680, "player_sanctions_bool_exp!" ] } ], "delete_player_sanctions_by_pk": [ - 2667, + 2671, { "created_at": [ - 3421, + 3466, "timestamptz!" ], "id": [ - 3818, + 3863, "uuid!" ] } ], "delete_player_stats": [ - 2718, + 2722, { "where": [ - 2712, + 2716, "player_stats_bool_exp!" ] } ], "delete_player_stats_by_pk": [ - 2708, + 2712, { "player_steam_id": [ - 169, + 173, + "bigint!" + ] + } + ], + "delete_player_steam_bot_friend": [ + 2754, + { + "where": [ + 2745, + "player_steam_bot_friend_bool_exp!" + ] + } + ], + "delete_player_steam_bot_friend_by_pk": [ + 2740, + { + "steam_id": [ + 173, "bigint!" ] } ], "delete_player_steam_match_auth": [ - 2746, + 2782, { "where": [ - 2740, + 2776, "player_steam_match_auth_bool_exp!" ] } ], "delete_player_steam_match_auth_by_pk": [ - 2736, + 2772, { "steam_id": [ - 169, + 173, "bigint!" ] } ], "delete_player_unused_utility": [ - 2780, + 2816, { "where": [ - 2772, + 2808, "player_unused_utility_bool_exp!" ] } ], "delete_player_unused_utility_by_pk": [ - 2763, + 2799, { "match_map_id": [ - 3818, + 3863, "uuid!" ], "player_steam_id": [ - 169, + 173, "bigint!" ] } ], "delete_player_utility": [ - 2821, + 2857, { "where": [ - 2813, + 2849, "player_utility_bool_exp!" ] } ], "delete_player_utility_by_pk": [ - 2804, + 2840, { "attacker_steam_id": [ - 169, + 173, "bigint!" ], "match_map_id": [ - 3818, + 3863, "uuid!" ], "time": [ - 3421, + 3466, "timestamptz!" ] } ], "delete_players": [ - 2888, + 2924, { "where": [ - 2882, + 2918, "players_bool_exp!" ] } ], "delete_players_by_pk": [ - 2878, + 2914, { "steam_id": [ - 169, + 173, "bigint!" ] } ], "delete_plugin_versions": [ - 2916, + 2952, { "where": [ - 2910, + 2946, "plugin_versions_bool_exp!" ] } ], "delete_plugin_versions_by_pk": [ - 2906, + 2942, { "version": [ - 70, + 74, "String!" ] } ], "delete_server_regions": [ - 2943, + 2979, { "where": [ - 2938, + 2974, "server_regions_bool_exp!" ] } ], "delete_server_regions_by_pk": [ - 2934, + 2970, { "value": [ - 70, + 74, "String!" ] } ], "delete_servers": [ - 2980, + 3016, { "where": [ - 2972, + 3008, "servers_bool_exp!" ] } ], "delete_servers_by_pk": [ - 2961, + 2997, { "id": [ - 3818, + 3863, "uuid!" ] } ], "delete_settings": [ - 3015, + 3051, { "where": [ - 3010, + 3046, "settings_bool_exp!" ] } ], "delete_settings_by_pk": [ - 3007, + 3043, { "name": [ - 70, + 74, "String!" ] } ], "delete_steam_account_claims": [ - 3039, + 3075, { "where": [ - 3032, + 3068, "steam_account_claims_bool_exp!" ] } ], "delete_steam_account_claims_by_pk": [ - 3025, + 3061, { "id": [ - 3818, + 3863, "uuid!" ] } ], "delete_steam_accounts": [ - 3057, + 3095, { "where": [ - 3052, + 3089, "steam_accounts_bool_exp!" ] } ], "delete_steam_accounts_by_pk": [ - 3049, + 3085, { "id": [ - 3818, + 3863, "uuid!" ] } ], "delete_system_alerts": [ - 3078, + 3123, { "where": [ - 3072, + 3117, "system_alerts_bool_exp!" ] } ], "delete_system_alerts_by_pk": [ - 3068, + 3113, { "id": [ - 3818, + 3863, "uuid!" ] } ], "delete_team_invites": [ - 3112, + 3157, { "where": [ - 3104, + 3149, "team_invites_bool_exp!" ] } ], "delete_team_invites_by_pk": [ - 3095, + 3140, { "id": [ - 3818, + 3863, "uuid!" ] } ], "delete_team_roster": [ - 3155, + 3200, { "where": [ - 3147, + 3192, "team_roster_bool_exp!" ] } ], "delete_team_roster_by_pk": [ - 3136, + 3181, { "player_steam_id": [ - 169, + 173, "bigint!" ], "team_id": [ - 3818, + 3863, "uuid!" ] } ], "delete_team_scrim_alerts": [ - 3191, + 3236, { "where": [ - 3185, + 3230, "team_scrim_alerts_bool_exp!" ] } ], "delete_team_scrim_alerts_by_pk": [ - 3181, + 3226, { "id": [ - 3818, + 3863, "uuid!" ] } ], "delete_team_scrim_availability": [ - 3224, + 3269, { "where": [ - 3217, + 3262, "team_scrim_availability_bool_exp!" ] } ], "delete_team_scrim_availability_by_pk": [ - 3208, + 3253, { "id": [ - 3818, + 3863, "uuid!" ] } ], "delete_team_scrim_request_proposals": [ - 3253, + 3298, { "where": [ - 3245, + 3290, "team_scrim_request_proposals_bool_exp!" ] } ], "delete_team_scrim_request_proposals_by_pk": [ - 3236, + 3281, { "id": [ - 3818, + 3863, "uuid!" ] } ], "delete_team_scrim_requests": [ - 3296, + 3341, { "where": [ - 3288, + 3333, "team_scrim_requests_bool_exp!" ] } ], "delete_team_scrim_requests_by_pk": [ - 3277, + 3322, { "id": [ - 3818, + 3863, "uuid!" ] } ], "delete_team_scrim_settings": [ - 3333, + 3378, { "where": [ - 3327, + 3372, "team_scrim_settings_bool_exp!" ] } ], "delete_team_scrim_settings_by_pk": [ - 3323, + 3368, { "id": [ - 3818, + 3863, "uuid!" ] } ], "delete_team_suggestions": [ - 3361, + 3406, { "where": [ - 3355, + 3400, "team_suggestions_bool_exp!" ] } ], "delete_team_suggestions_by_pk": [ - 3351, + 3396, { "id": [ - 3818, + 3863, "uuid!" ] } ], "delete_teams": [ - 3395, + 3440, { "where": [ - 3387, + 3432, "teams_bool_exp!" ] } ], "delete_teams_by_pk": [ - 3378, + 3423, { "id": [ - 3818, + 3863, "uuid!" ] } ], "delete_tournament_brackets": [ - 3442, + 3487, { "where": [ - 3434, + 3479, "tournament_brackets_bool_exp!" ] } ], "delete_tournament_brackets_by_pk": [ - 3423, + 3468, { "id": [ - 3818, + 3863, "uuid!" ] } ], "delete_tournament_organizers": [ - 3486, + 3531, { "where": [ - 3478, + 3523, "tournament_organizers_bool_exp!" ] } ], "delete_tournament_organizers_by_pk": [ - 3469, + 3514, { "steam_id": [ - 169, + 173, "bigint!" ], "tournament_id": [ - 3818, + 3863, "uuid!" ] } ], "delete_tournament_stages": [ - 3533, + 3578, { "where": [ - 3522, + 3567, "tournament_stages_bool_exp!" ] } ], "delete_tournament_stages_by_pk": [ - 3510, + 3555, { "id": [ - 3818, + 3863, "uuid!" ] } ], "delete_tournament_team_invites": [ - 3578, + 3623, { "where": [ - 3570, + 3615, "tournament_team_invites_bool_exp!" ] } ], "delete_tournament_team_invites_by_pk": [ - 3561, + 3606, { "id": [ - 3818, + 3863, "uuid!" ] } ], "delete_tournament_team_roster": [ - 3619, + 3664, { "where": [ - 3611, + 3656, "tournament_team_roster_bool_exp!" ] } ], "delete_tournament_team_roster_by_pk": [ - 3602, + 3647, { "player_steam_id": [ - 169, + 173, "bigint!" ], "tournament_id": [ - 3818, + 3863, "uuid!" ] } ], "delete_tournament_teams": [ - 3660, + 3705, { "where": [ - 3652, + 3697, "tournament_teams_bool_exp!" ] } ], "delete_tournament_teams_by_pk": [ - 3643, + 3688, { "id": [ - 3818, + 3863, "uuid!" ] } ], "delete_tournament_trophies": [ - 3704, + 3749, { "where": [ - 3696, + 3741, "tournament_trophies_bool_exp!" ] } ], "delete_tournament_trophies_by_pk": [ - 3685, + 3730, { "id": [ - 3818, + 3863, "uuid!" ] } ], "delete_tournament_trophy_configs": [ - 3747, + 3792, { "where": [ - 3739, + 3784, "tournament_trophy_configs_bool_exp!" ] } ], "delete_tournament_trophy_configs_by_pk": [ - 3730, + 3775, { "id": [ - 3818, + 3863, "uuid!" ] } ], "delete_tournaments": [ - 3791, + 3836, { "where": [ - 3783, + 3828, "tournaments_bool_exp!" ] } ], "delete_tournaments_by_pk": [ - 3772, + 3817, { "id": [ - 3818, + 3863, "uuid!" ] } ], "delete_v_match_captains": [ - 3848, + 3893, { "where": [ - 3843, + 3888, "v_match_captains_bool_exp!" ] } ], "delete_v_match_map_backup_rounds": [ - 3959, + 4004, { "where": [ - 3954, + 3999, "v_match_map_backup_rounds_bool_exp!" ] } ], "delete_v_player_match_map_hltv": [ - 4181, + 4226, { "where": [ - 4174, + 4219, "v_player_match_map_hltv_bool_exp!" ] } ], "delete_v_pool_maps": [ - 4340, + 4385, { "where": [ - 4334, + 4379, "v_pool_maps_bool_exp!" ] } ], "delete_v_team_stage_results": [ - 4434, + 4479, { "where": [ - 4426, + 4471, "v_team_stage_results_bool_exp!" ] } ], "delete_v_team_stage_results_by_pk": [ - 4407, + 4452, { "tournament_stage_id": [ - 3818, + 3863, "uuid!" ], "tournament_team_id": [ - 3818, + 3863, "uuid!" ] } ], "denyInvite": [ - 73, + 77, { "invite_id": [ - 3818, + 3863, "uuid!" ], "type": [ - 70, + 74, "String!" ] } ], "forfeitMatch": [ - 73, + 77, { "match_id": [ - 3818, + 3863, "uuid!" ], "winning_lineup_id": [ - 3818, + 3863, "uuid!" ] } @@ -120096,7 +121915,7 @@ export default { 43, { "match_id": [ - 3818, + 3863, "uuid!" ] } @@ -120105,2840 +121924,2864 @@ export default { 31 ], "insert__map_pool": [ - 91, + 95, { "objects": [ - 88, + 92, "[_map_pool_insert_input!]!" ], "on_conflict": [ - 92 + 96 ] } ], "insert__map_pool_one": [ - 83, + 87, { "object": [ - 88, + 92, "_map_pool_insert_input!" ], "on_conflict": [ - 92 + 96 ] } ], "insert_abandoned_matches": [ - 118, + 122, { "objects": [ - 113, + 117, "[abandoned_matches_insert_input!]!" ], "on_conflict": [ - 119 + 123 ] } ], "insert_abandoned_matches_one": [ - 101, + 105, { "object": [ - 113, + 117, "abandoned_matches_insert_input!" ], "on_conflict": [ - 119 + 123 ] } ], "insert_api_keys": [ - 152, + 156, { "objects": [ - 149, + 153, "[api_keys_insert_input!]!" ], "on_conflict": [ - 153 + 157 ] } ], "insert_api_keys_one": [ - 142, + 146, { "object": [ - 149, + 153, "api_keys_insert_input!" ], "on_conflict": [ - 153 + 157 ] } ], "insert_clip_render_jobs": [ - 197, + 201, { "objects": [ - 192, + 196, "[clip_render_jobs_insert_input!]!" ], "on_conflict": [ - 198 + 202 ] } ], "insert_clip_render_jobs_one": [ - 174, + 178, { "object": [ - 192, + 196, "clip_render_jobs_insert_input!" ], "on_conflict": [ - 198 + 202 ] } ], "insert_db_backups": [ - 235, + 239, { "objects": [ - 232, + 236, "[db_backups_insert_input!]!" ], "on_conflict": [ - 236 + 240 ] } ], "insert_db_backups_one": [ - 225, + 229, { "object": [ - 232, + 236, "db_backups_insert_input!" ], "on_conflict": [ - 236 + 240 ] } ], "insert_draft_game_picks": [ - 271, + 275, { "objects": [ - 266, + 270, "[draft_game_picks_insert_input!]!" ], "on_conflict": [ - 272 + 276 ] } ], "insert_draft_game_picks_one": [ - 252, + 256, { "object": [ - 266, + 270, "draft_game_picks_insert_input!" ], "on_conflict": [ - 272 + 276 ] } ], "insert_draft_game_players": [ - 316, + 320, { "objects": [ - 311, + 315, "[draft_game_players_insert_input!]!" ], "on_conflict": [ - 317 + 321 ] } ], "insert_draft_game_players_one": [ - 297, + 301, { "object": [ - 311, + 315, "draft_game_players_insert_input!" ], "on_conflict": [ - 317 + 321 ] } ], "insert_draft_games": [ - 361, + 365, { "objects": [ - 356, + 360, "[draft_games_insert_input!]!" ], "on_conflict": [ - 363 + 367 ] } ], "insert_draft_games_one": [ - 342, + 346, { "object": [ - 356, + 360, "draft_games_insert_input!" ], "on_conflict": [ - 363 + 367 ] } ], "insert_e_check_in_settings": [ - 398, + 402, { "objects": [ - 395, + 399, "[e_check_in_settings_insert_input!]!" ], "on_conflict": [ - 399 + 403 ] } ], "insert_e_check_in_settings_one": [ - 388, + 392, { "object": [ - 395, + 399, "e_check_in_settings_insert_input!" ], "on_conflict": [ - 399 + 403 ] } ], "insert_e_draft_game_captain_selection": [ - 418, + 422, { "objects": [ - 415, + 419, "[e_draft_game_captain_selection_insert_input!]!" ], "on_conflict": [ - 420 + 424 ] } ], "insert_e_draft_game_captain_selection_one": [ - 408, + 412, { "object": [ - 415, + 419, "e_draft_game_captain_selection_insert_input!" ], "on_conflict": [ - 420 + 424 ] } ], "insert_e_draft_game_draft_order": [ - 439, + 443, { "objects": [ - 436, + 440, "[e_draft_game_draft_order_insert_input!]!" ], "on_conflict": [ - 441 + 445 ] } ], "insert_e_draft_game_draft_order_one": [ - 429, + 433, { "object": [ - 436, + 440, "e_draft_game_draft_order_insert_input!" ], "on_conflict": [ - 441 + 445 ] } ], "insert_e_draft_game_mode": [ - 460, + 464, { "objects": [ - 457, + 461, "[e_draft_game_mode_insert_input!]!" ], "on_conflict": [ - 462 + 466 ] } ], "insert_e_draft_game_mode_one": [ - 450, + 454, { "object": [ - 457, + 461, "e_draft_game_mode_insert_input!" ], "on_conflict": [ - 462 + 466 ] } ], "insert_e_draft_game_player_status": [ - 481, + 485, { "objects": [ - 478, + 482, "[e_draft_game_player_status_insert_input!]!" ], "on_conflict": [ - 483 + 487 ] } ], "insert_e_draft_game_player_status_one": [ - 471, + 475, { "object": [ - 478, + 482, "e_draft_game_player_status_insert_input!" ], "on_conflict": [ - 483 + 487 ] } ], "insert_e_draft_game_status": [ - 502, + 506, { "objects": [ - 499, + 503, "[e_draft_game_status_insert_input!]!" ], "on_conflict": [ - 504 + 508 ] } ], "insert_e_draft_game_status_one": [ - 492, + 496, { "object": [ - 499, + 503, "e_draft_game_status_insert_input!" ], "on_conflict": [ - 504 + 508 ] } ], "insert_e_friend_status": [ - 523, + 527, { "objects": [ - 520, + 524, "[e_friend_status_insert_input!]!" ], "on_conflict": [ - 525 + 529 ] } ], "insert_e_friend_status_one": [ - 513, + 517, { "object": [ - 520, + 524, "e_friend_status_insert_input!" ], "on_conflict": [ - 525 + 529 ] } ], "insert_e_game_cfg_types": [ - 544, + 548, { "objects": [ - 541, + 545, "[e_game_cfg_types_insert_input!]!" ], "on_conflict": [ - 545 + 549 ] } ], "insert_e_game_cfg_types_one": [ - 534, + 538, { "object": [ - 541, + 545, "e_game_cfg_types_insert_input!" ], "on_conflict": [ - 545 + 549 ] } ], "insert_e_game_server_node_statuses": [ - 564, + 568, { "objects": [ - 561, + 565, "[e_game_server_node_statuses_insert_input!]!" ], "on_conflict": [ - 566 + 570 ] } ], "insert_e_game_server_node_statuses_one": [ - 554, + 558, { "object": [ - 561, + 565, "e_game_server_node_statuses_insert_input!" ], "on_conflict": [ - 566 + 570 ] } ], "insert_e_lobby_access": [ - 585, + 589, { "objects": [ - 582, + 586, "[e_lobby_access_insert_input!]!" ], "on_conflict": [ - 587 + 591 ] } ], "insert_e_lobby_access_one": [ - 575, + 579, { "object": [ - 582, + 586, "e_lobby_access_insert_input!" ], "on_conflict": [ - 587 + 591 ] } ], "insert_e_lobby_player_status": [ - 606, + 610, { "objects": [ - 603, + 607, "[e_lobby_player_status_insert_input!]!" ], "on_conflict": [ - 607 + 611 ] } ], "insert_e_lobby_player_status_one": [ - 596, + 600, { "object": [ - 603, + 607, "e_lobby_player_status_insert_input!" ], "on_conflict": [ - 607 + 611 ] } ], "insert_e_map_pool_types": [ - 626, + 630, { "objects": [ - 623, + 627, "[e_map_pool_types_insert_input!]!" ], "on_conflict": [ - 628 + 632 ] } ], "insert_e_map_pool_types_one": [ - 616, + 620, { "object": [ - 623, + 627, "e_map_pool_types_insert_input!" ], "on_conflict": [ - 628 + 632 ] } ], "insert_e_match_clip_visibility": [ - 647, + 651, { "objects": [ - 644, + 648, "[e_match_clip_visibility_insert_input!]!" ], "on_conflict": [ - 648 + 652 ] } ], "insert_e_match_clip_visibility_one": [ - 637, + 641, { "object": [ - 644, + 648, "e_match_clip_visibility_insert_input!" ], "on_conflict": [ - 648 + 652 ] } ], "insert_e_match_map_status": [ - 667, + 671, { "objects": [ - 664, + 668, "[e_match_map_status_insert_input!]!" ], "on_conflict": [ - 669 + 673 ] } ], "insert_e_match_map_status_one": [ - 657, + 661, { "object": [ - 664, + 668, "e_match_map_status_insert_input!" ], "on_conflict": [ - 669 + 673 ] } ], "insert_e_match_mode": [ - 688, + 692, { "objects": [ - 685, + 689, "[e_match_mode_insert_input!]!" ], "on_conflict": [ - 689 + 693 ] } ], "insert_e_match_mode_one": [ - 678, + 682, { "object": [ - 685, + 689, "e_match_mode_insert_input!" ], "on_conflict": [ - 689 + 693 ] } ], "insert_e_match_status": [ - 708, + 712, { "objects": [ - 705, + 709, "[e_match_status_insert_input!]!" ], "on_conflict": [ - 710 + 714 ] } ], "insert_e_match_status_one": [ - 698, + 702, { "object": [ - 705, + 709, "e_match_status_insert_input!" ], "on_conflict": [ - 710 + 714 ] } ], "insert_e_match_types": [ - 729, + 733, { "objects": [ - 726, + 730, "[e_match_types_insert_input!]!" ], "on_conflict": [ - 731 + 735 ] } ], "insert_e_match_types_one": [ - 719, + 723, { "object": [ - 726, + 730, "e_match_types_insert_input!" ], "on_conflict": [ - 731 + 735 ] } ], "insert_e_notification_types": [ - 750, + 754, { "objects": [ - 747, + 751, "[e_notification_types_insert_input!]!" ], "on_conflict": [ - 751 + 755 ] } ], "insert_e_notification_types_one": [ - 740, + 744, { "object": [ - 747, + 751, "e_notification_types_insert_input!" ], "on_conflict": [ - 751 + 755 ] } ], "insert_e_objective_types": [ - 770, + 774, { "objects": [ - 767, + 771, "[e_objective_types_insert_input!]!" ], "on_conflict": [ - 771 + 775 ] } ], "insert_e_objective_types_one": [ - 760, + 764, { "object": [ - 767, + 771, "e_objective_types_insert_input!" ], "on_conflict": [ - 771 + 775 ] } ], "insert_e_player_roles": [ - 790, + 794, { "objects": [ - 787, + 791, "[e_player_roles_insert_input!]!" ], "on_conflict": [ - 791 + 795 ] } ], "insert_e_player_roles_one": [ - 780, + 784, { "object": [ - 787, + 791, "e_player_roles_insert_input!" ], "on_conflict": [ - 791 + 795 ] } ], "insert_e_ready_settings": [ - 810, + 814, { "objects": [ - 807, + 811, "[e_ready_settings_insert_input!]!" ], "on_conflict": [ - 811 + 815 ] } ], "insert_e_ready_settings_one": [ - 800, + 804, { "object": [ - 807, + 811, "e_ready_settings_insert_input!" ], "on_conflict": [ - 811 + 815 ] } ], "insert_e_sanction_types": [ - 830, + 834, { "objects": [ - 827, + 831, "[e_sanction_types_insert_input!]!" ], "on_conflict": [ - 832 + 836 ] } ], "insert_e_sanction_types_one": [ - 820, + 824, { "object": [ - 827, + 831, "e_sanction_types_insert_input!" ], "on_conflict": [ - 832 + 836 ] } ], "insert_e_scrim_request_statuses": [ - 851, + 855, { "objects": [ - 848, + 852, "[e_scrim_request_statuses_insert_input!]!" ], "on_conflict": [ - 852 + 856 ] } ], "insert_e_scrim_request_statuses_one": [ - 841, + 845, { "object": [ - 848, + 852, "e_scrim_request_statuses_insert_input!" ], "on_conflict": [ - 852 + 856 ] } ], "insert_e_server_types": [ - 871, + 875, { "objects": [ - 868, + 872, "[e_server_types_insert_input!]!" ], "on_conflict": [ - 872 + 876 ] } ], "insert_e_server_types_one": [ - 861, + 865, { "object": [ - 868, + 872, "e_server_types_insert_input!" ], "on_conflict": [ - 872 + 876 ] } ], "insert_e_sides": [ - 891, + 895, { "objects": [ - 888, + 892, "[e_sides_insert_input!]!" ], "on_conflict": [ - 892 + 896 ] } ], "insert_e_sides_one": [ - 881, + 885, { "object": [ - 888, + 892, "e_sides_insert_input!" ], "on_conflict": [ - 892 + 896 ] } ], "insert_e_system_alert_types": [ - 911, + 915, { "objects": [ - 908, + 912, "[e_system_alert_types_insert_input!]!" ], "on_conflict": [ - 912 + 916 ] } ], "insert_e_system_alert_types_one": [ - 901, + 905, { "object": [ - 908, + 912, "e_system_alert_types_insert_input!" ], "on_conflict": [ - 912 + 916 ] } ], "insert_e_team_roles": [ - 931, + 935, { "objects": [ - 928, + 932, "[e_team_roles_insert_input!]!" ], "on_conflict": [ - 933 + 937 ] } ], "insert_e_team_roles_one": [ - 921, + 925, { "object": [ - 928, + 932, "e_team_roles_insert_input!" ], "on_conflict": [ - 933 + 937 ] } ], "insert_e_team_roster_statuses": [ - 952, + 956, { "objects": [ - 949, + 953, "[e_team_roster_statuses_insert_input!]!" ], "on_conflict": [ - 953 + 957 ] } ], "insert_e_team_roster_statuses_one": [ - 942, + 946, { "object": [ - 949, + 953, "e_team_roster_statuses_insert_input!" ], "on_conflict": [ - 953 + 957 ] } ], "insert_e_timeout_settings": [ - 972, + 976, { "objects": [ - 969, + 973, "[e_timeout_settings_insert_input!]!" ], "on_conflict": [ - 973 + 977 ] } ], "insert_e_timeout_settings_one": [ - 962, + 966, { "object": [ - 969, + 973, "e_timeout_settings_insert_input!" ], "on_conflict": [ - 973 + 977 ] } ], "insert_e_tournament_stage_types": [ - 992, + 996, { "objects": [ - 989, + 993, "[e_tournament_stage_types_insert_input!]!" ], "on_conflict": [ - 994 + 998 ] } ], "insert_e_tournament_stage_types_one": [ - 982, + 986, { "object": [ - 989, + 993, "e_tournament_stage_types_insert_input!" ], "on_conflict": [ - 994 + 998 ] } ], "insert_e_tournament_status": [ - 1013, + 1017, { "objects": [ - 1010, + 1014, "[e_tournament_status_insert_input!]!" ], "on_conflict": [ - 1015 + 1019 ] } ], "insert_e_tournament_status_one": [ - 1003, + 1007, { "object": [ - 1010, + 1014, "e_tournament_status_insert_input!" ], "on_conflict": [ - 1015 + 1019 ] } ], "insert_e_utility_types": [ - 1034, + 1038, { "objects": [ - 1031, + 1035, "[e_utility_types_insert_input!]!" ], "on_conflict": [ - 1035 + 1039 ] } ], "insert_e_utility_types_one": [ - 1024, + 1028, { "object": [ - 1031, + 1035, "e_utility_types_insert_input!" ], "on_conflict": [ - 1035 + 1039 ] } ], "insert_e_veto_pick_types": [ - 1054, + 1058, { "objects": [ - 1051, + 1055, "[e_veto_pick_types_insert_input!]!" ], "on_conflict": [ - 1055 + 1059 ] } ], "insert_e_veto_pick_types_one": [ - 1044, + 1048, { "object": [ - 1051, + 1055, "e_veto_pick_types_insert_input!" ], "on_conflict": [ - 1055 + 1059 ] } ], "insert_e_winning_reasons": [ - 1074, + 1078, { "objects": [ - 1071, + 1075, "[e_winning_reasons_insert_input!]!" ], "on_conflict": [ - 1075 + 1079 ] } ], "insert_e_winning_reasons_one": [ - 1064, + 1068, { "object": [ - 1071, + 1075, "e_winning_reasons_insert_input!" ], "on_conflict": [ - 1075 + 1079 ] } ], "insert_friends": [ - 1096, + 1100, { "objects": [ - 1093, + 1097, "[friends_insert_input!]!" ], "on_conflict": [ - 1097 + 1101 ] } ], "insert_friends_one": [ - 1086, + 1090, { "object": [ - 1093, + 1097, "friends_insert_input!" ], "on_conflict": [ - 1097 + 1101 ] } ], "insert_game_server_nodes": [ - 1136, + 1140, { "objects": [ - 1131, + 1135, "[game_server_nodes_insert_input!]!" ], "on_conflict": [ - 1138 + 1142 ] } ], "insert_game_server_nodes_one": [ - 1113, + 1117, { "object": [ - 1131, + 1135, "game_server_nodes_insert_input!" ], "on_conflict": [ - 1138 + 1142 ] } ], "insert_game_versions": [ - 1178, + 1182, { "objects": [ - 1175, + 1179, "[game_versions_insert_input!]!" ], "on_conflict": [ - 1180 + 1184 ] } ], "insert_game_versions_one": [ - 1164, + 1168, { "object": [ - 1175, + 1179, "game_versions_insert_input!" ], "on_conflict": [ - 1180 + 1184 ] } ], "insert_gamedata_signature_validations": [ - 1211, + 1215, { "objects": [ - 1208, + 1212, "[gamedata_signature_validations_insert_input!]!" ], "on_conflict": [ - 1212 + 1216 ] } ], "insert_gamedata_signature_validations_one": [ - 1197, + 1201, { "object": [ - 1208, + 1212, "gamedata_signature_validations_insert_input!" ], "on_conflict": [ - 1212 + 1216 ] } ], "insert_leaderboard_entries": [ - 1247, + 1251, { "objects": [ - 1244, + 1248, "[leaderboard_entries_insert_input!]!" ] } ], "insert_leaderboard_entries_one": [ - 1238, + 1242, { "object": [ - 1244, + 1248, "leaderboard_entries_insert_input!" ] } ], "insert_lobbies": [ - 1269, + 1273, { "objects": [ - 1266, + 1270, "[lobbies_insert_input!]!" ], "on_conflict": [ - 1271 + 1275 ] } ], "insert_lobbies_one": [ - 1261, + 1265, { "object": [ - 1266, + 1270, "lobbies_insert_input!" ], "on_conflict": [ - 1271 + 1275 ] } ], "insert_lobby_players": [ - 1299, + 1303, { "objects": [ - 1294, + 1298, "[lobby_players_insert_input!]!" ], "on_conflict": [ - 1300 + 1304 ] } ], "insert_lobby_players_one": [ - 1280, + 1284, { "object": [ - 1294, + 1298, "lobby_players_insert_input!" ], "on_conflict": [ - 1300 + 1304 ] } ], "insert_map_pools": [ - 1333, + 1337, { "objects": [ - 1330, + 1334, "[map_pools_insert_input!]!" ], "on_conflict": [ - 1335 + 1339 ] } ], "insert_map_pools_one": [ - 1325, + 1329, { "object": [ - 1330, + 1334, "map_pools_insert_input!" ], "on_conflict": [ - 1335 + 1339 ] } ], "insert_maps": [ - 1360, + 1364, { "objects": [ - 1355, + 1359, "[maps_insert_input!]!" ], "on_conflict": [ - 1362 + 1366 ] } ], "insert_maps_one": [ - 1344, + 1348, { "object": [ - 1355, + 1359, "maps_insert_input!" ], "on_conflict": [ - 1362 + 1366 ] } ], "insert_match_clips": [ - 1390, + 1394, { "objects": [ - 1385, + 1389, "[match_clips_insert_input!]!" ], "on_conflict": [ - 1392 + 1396 ] } ], "insert_match_clips_one": [ - 1373, + 1377, { "object": [ - 1385, + 1389, "match_clips_insert_input!" ], "on_conflict": [ - 1392 + 1396 ] } ], "insert_match_demo_sessions": [ - 1436, + 1440, { "objects": [ - 1431, + 1435, "[match_demo_sessions_insert_input!]!" ], "on_conflict": [ - 1437 + 1441 ] } ], "insert_match_demo_sessions_one": [ - 1415, + 1419, { "object": [ - 1431, + 1435, "match_demo_sessions_insert_input!" ], "on_conflict": [ - 1437 + 1441 ] } ], "insert_match_lineup_players": [ - 1480, + 1484, { "objects": [ - 1475, + 1479, "[match_lineup_players_insert_input!]!" ], "on_conflict": [ - 1481 + 1485 ] } ], "insert_match_lineup_players_one": [ - 1461, + 1465, { "object": [ - 1475, + 1479, "match_lineup_players_insert_input!" ], "on_conflict": [ - 1481 + 1485 ] } ], "insert_match_lineups": [ - 1523, + 1527, { "objects": [ - 1518, + 1522, "[match_lineups_insert_input!]!" ], "on_conflict": [ - 1525 + 1529 ] } ], "insert_match_lineups_one": [ - 1506, + 1510, { "object": [ - 1518, + 1522, "match_lineups_insert_input!" ], "on_conflict": [ - 1525 + 1529 ] } ], "insert_match_map_demos": [ - 1571, + 1575, { "objects": [ - 1566, + 1570, "[match_map_demos_insert_input!]!" ], "on_conflict": [ - 1573 + 1577 ] } ], "insert_match_map_demos_one": [ - 1548, + 1552, { "object": [ - 1566, + 1570, "match_map_demos_insert_input!" ], "on_conflict": [ - 1573 + 1577 ] } ], "insert_match_map_rounds": [ - 1616, + 1620, { "objects": [ - 1611, + 1615, "[match_map_rounds_insert_input!]!" ], "on_conflict": [ - 1617 + 1621 ] } ], "insert_match_map_rounds_one": [ - 1599, + 1603, { "object": [ - 1611, + 1615, "match_map_rounds_insert_input!" ], "on_conflict": [ - 1617 + 1621 ] } ], "insert_match_map_veto_picks": [ - 1654, + 1658, { "objects": [ - 1649, + 1653, "[match_map_veto_picks_insert_input!]!" ], "on_conflict": [ - 1655 + 1659 ] } ], "insert_match_map_veto_picks_one": [ - 1640, + 1644, { "object": [ - 1649, + 1653, "match_map_veto_picks_insert_input!" ], "on_conflict": [ - 1655 + 1659 ] } ], "insert_match_maps": [ - 1681, + 1685, { "objects": [ - 1676, + 1680, "[match_maps_insert_input!]!" ], "on_conflict": [ - 1683 + 1687 ] } ], "insert_match_maps_one": [ - 1664, + 1668, { "object": [ - 1676, + 1680, "match_maps_insert_input!" ], "on_conflict": [ - 1683 + 1687 ] } ], "insert_match_options": [ - 1716, + 1720, { "objects": [ - 1713, + 1717, "[match_options_insert_input!]!" ], "on_conflict": [ - 1718 + 1722 ] } ], "insert_match_options_one": [ - 1706, + 1710, { "object": [ - 1713, + 1717, "match_options_insert_input!" ], "on_conflict": [ - 1718 + 1722 ] } ], "insert_match_region_veto_picks": [ - 1748, + 1752, { "objects": [ - 1743, + 1747, "[match_region_veto_picks_insert_input!]!" ], "on_conflict": [ - 1749 + 1753 ] } ], "insert_match_region_veto_picks_one": [ - 1734, + 1738, { "object": [ - 1743, + 1747, "match_region_veto_picks_insert_input!" ], "on_conflict": [ - 1749 + 1753 ] } ], "insert_match_streams": [ - 1781, + 1785, { "objects": [ - 1776, + 1780, "[match_streams_insert_input!]!" ], "on_conflict": [ - 1782 + 1786 ] } ], "insert_match_streams_one": [ - 1758, + 1762, { "object": [ - 1776, + 1780, "match_streams_insert_input!" ], "on_conflict": [ - 1782 + 1786 ] } ], "insert_match_type_cfgs": [ - 1816, + 1820, { "objects": [ - 1813, + 1817, "[match_type_cfgs_insert_input!]!" ], "on_conflict": [ - 1817 + 1821 ] } ], "insert_match_type_cfgs_one": [ - 1808, + 1812, { "object": [ - 1813, + 1817, "match_type_cfgs_insert_input!" ], "on_conflict": [ - 1817 + 1821 ] } ], "insert_matches": [ - 1843, + 1847, { "objects": [ - 1838, + 1842, "[matches_insert_input!]!" ], "on_conflict": [ - 1845 + 1849 ] } ], "insert_matches_one": [ - 1826, + 1830, { "object": [ - 1838, + 1842, "matches_insert_input!" ], "on_conflict": [ - 1845 + 1849 ] } ], "insert_migration_hashes_hashes": [ - 1876, + 1880, { "objects": [ - 1873, + 1877, "[migration_hashes_hashes_insert_input!]!" ], "on_conflict": [ - 1877 + 1881 ] } ], "insert_migration_hashes_hashes_one": [ - 1868, + 1872, { "object": [ - 1873, + 1877, "migration_hashes_hashes_insert_input!" ], "on_conflict": [ - 1877 + 1881 ] } ], "insert_my_friends": [ - 1908, + 1912, { "objects": [ - 1903, + 1907, "[my_friends_insert_input!]!" ] } ], "insert_my_friends_one": [ - 1886, + 1890, { "object": [ - 1903, + 1907, "my_friends_insert_input!" ] } ], "insert_news_articles": [ - 1942, + 1946, { "objects": [ - 1939, + 1943, "[news_articles_insert_input!]!" ], "on_conflict": [ - 1943 + 1947 ] } ], "insert_news_articles_one": [ - 1932, + 1936, { "object": [ - 1939, + 1943, "news_articles_insert_input!" ], "on_conflict": [ - 1943 + 1947 ] } ], "insert_notifications": [ - 1982, + 1986, { "objects": [ - 1977, + 1981, "[notifications_insert_input!]!" ], "on_conflict": [ - 1983 + 1987 ] } ], "insert_notifications_one": [ - 1959, + 1963, { "object": [ - 1977, + 1981, "notifications_insert_input!" ], "on_conflict": [ - 1983 + 1987 ] } ], "insert_pending_match_import_players": [ - 2029, + 2033, { "objects": [ - 2024, + 2028, "[pending_match_import_players_insert_input!]!" ], "on_conflict": [ - 2030 + 2034 ] } ], "insert_pending_match_import_players_one": [ - 2012, + 2016, { "object": [ - 2024, + 2028, "pending_match_import_players_insert_input!" ], "on_conflict": [ - 2030 + 2034 ] } ], "insert_pending_match_imports": [ - 2063, + 2067, { "objects": [ - 2060, + 2064, "[pending_match_imports_insert_input!]!" ], "on_conflict": [ - 2065 + 2069 ] } ], "insert_pending_match_imports_one": [ - 2053, + 2057, { "object": [ - 2060, + 2064, "pending_match_imports_insert_input!" ], "on_conflict": [ - 2065 + 2069 ] } ], "insert_player_aim_stats_demo": [ - 2091, + 2095, { "objects": [ - 2088, + 2092, "[player_aim_stats_demo_insert_input!]!" ], "on_conflict": [ - 2092 + 2096 ] } ], "insert_player_aim_stats_demo_one": [ - 2081, + 2085, { "object": [ - 2088, + 2092, "player_aim_stats_demo_insert_input!" ], "on_conflict": [ - 2092 + 2096 ] } ], "insert_player_aim_weapon_stats": [ - 2125, + 2129, { "objects": [ - 2120, + 2124, "[player_aim_weapon_stats_insert_input!]!" ], "on_conflict": [ - 2126 + 2130 ] } ], "insert_player_aim_weapon_stats_one": [ - 2108, + 2112, { "object": [ - 2120, + 2124, "player_aim_weapon_stats_insert_input!" ], "on_conflict": [ - 2126 + 2130 ] } ], "insert_player_assists": [ - 2168, + 2172, { "objects": [ - 2163, + 2167, "[player_assists_insert_input!]!" ], "on_conflict": [ - 2169 + 2173 ] } ], "insert_player_assists_one": [ - 2149, + 2153, { "object": [ - 2163, + 2167, "player_assists_insert_input!" ], "on_conflict": [ - 2169 + 2173 ] } ], "insert_player_damages": [ - 2229, + 2233, { "objects": [ - 2224, + 2228, "[player_damages_insert_input!]!" ], "on_conflict": [ - 2230 + 2234 ] } ], "insert_player_damages_one": [ - 2212, + 2216, { "object": [ - 2224, + 2228, "player_damages_insert_input!" ], "on_conflict": [ - 2230 + 2234 ] } ], "insert_player_elo": [ - 2263, + 2267, { "objects": [ - 2260, + 2264, "[player_elo_insert_input!]!" ], "on_conflict": [ - 2264 + 2268 ] } ], "insert_player_elo_one": [ - 2253, + 2257, { "object": [ - 2260, + 2264, "player_elo_insert_input!" ], "on_conflict": [ - 2264 + 2268 ] } ], "insert_player_faceit_rank_history": [ - 2297, + 2301, { "objects": [ - 2292, + 2296, "[player_faceit_rank_history_insert_input!]!" ], "on_conflict": [ - 2298 + 2302 ] } ], "insert_player_faceit_rank_history_one": [ - 2280, + 2284, { "object": [ - 2292, + 2296, "player_faceit_rank_history_insert_input!" ], "on_conflict": [ - 2298 + 2302 ] } ], "insert_player_flashes": [ - 2340, + 2344, { "objects": [ - 2335, + 2339, "[player_flashes_insert_input!]!" ], "on_conflict": [ - 2341 + 2345 ] } ], "insert_player_flashes_one": [ - 2321, + 2325, { "object": [ - 2335, + 2339, "player_flashes_insert_input!" ], "on_conflict": [ - 2341 + 2345 ] } ], "insert_player_kills": [ - 2426, + 2430, { "objects": [ - 2421, + 2425, "[player_kills_insert_input!]!" ], "on_conflict": [ - 2427 + 2431 ] } ], "insert_player_kills_by_weapon": [ - 2395, + 2399, { "objects": [ - 2390, + 2394, "[player_kills_by_weapon_insert_input!]!" ], "on_conflict": [ - 2396 + 2400 ] } ], "insert_player_kills_by_weapon_one": [ - 2378, + 2382, { "object": [ - 2390, + 2394, "player_kills_by_weapon_insert_input!" ], "on_conflict": [ - 2396 + 2400 ] } ], "insert_player_kills_one": [ - 2366, + 2370, { "object": [ - 2421, + 2425, "player_kills_insert_input!" ], "on_conflict": [ - 2427 + 2431 ] } ], "insert_player_leaderboard_rank": [ - 2461, + 2465, { "objects": [ - 2458, + 2462, "[player_leaderboard_rank_insert_input!]!" ] } ], "insert_player_leaderboard_rank_one": [ - 2452, + 2456, { "object": [ - 2458, + 2462, "player_leaderboard_rank_insert_input!" ] } ], "insert_player_match_map_stats": [ - 2492, + 2496, { "objects": [ - 2487, + 2491, "[player_match_map_stats_insert_input!]!" ], "on_conflict": [ - 2493 + 2497 ] } ], "insert_player_match_map_stats_one": [ - 2475, + 2479, { "object": [ - 2487, + 2491, "player_match_map_stats_insert_input!" ], "on_conflict": [ - 2493 + 2497 ] } ], "insert_player_objectives": [ - 2584, + 2588, { "objects": [ - 2579, + 2583, "[player_objectives_insert_input!]!" ], "on_conflict": [ - 2585 + 2589 ] } ], "insert_player_objectives_one": [ - 2567, + 2571, { "object": [ - 2579, + 2583, "player_objectives_insert_input!" ], "on_conflict": [ - 2585 + 2589 ] } ], "insert_player_premier_rank_history": [ - 2643, + 2647, { "objects": [ - 2638, + 2642, "[player_premier_rank_history_insert_input!]!" ], "on_conflict": [ - 2644 + 2648 ] } ], "insert_player_premier_rank_history_one": [ - 2626, + 2630, { "object": [ - 2638, + 2642, "player_premier_rank_history_insert_input!" ], "on_conflict": [ - 2644 + 2648 ] } ], "insert_player_sanctions": [ - 2684, + 2688, { "objects": [ - 2679, + 2683, "[player_sanctions_insert_input!]!" ], "on_conflict": [ - 2685 + 2689 ] } ], "insert_player_sanctions_one": [ - 2667, + 2671, { "object": [ - 2679, + 2683, "player_sanctions_insert_input!" ], "on_conflict": [ - 2685 + 2689 ] } ], "insert_player_stats": [ - 2718, + 2722, { "objects": [ - 2715, + 2719, "[player_stats_insert_input!]!" ], "on_conflict": [ - 2720 + 2724 ] } ], "insert_player_stats_one": [ - 2708, + 2712, { "object": [ - 2715, + 2719, "player_stats_insert_input!" ], "on_conflict": [ - 2720 + 2724 + ] + } + ], + "insert_player_steam_bot_friend": [ + 2754, + { + "objects": [ + 2751, + "[player_steam_bot_friend_insert_input!]!" + ], + "on_conflict": [ + 2755 + ] + } + ], + "insert_player_steam_bot_friend_one": [ + 2740, + { + "object": [ + 2751, + "player_steam_bot_friend_insert_input!" + ], + "on_conflict": [ + 2755 ] } ], "insert_player_steam_match_auth": [ - 2746, + 2782, { "objects": [ - 2743, + 2779, "[player_steam_match_auth_insert_input!]!" ], "on_conflict": [ - 2747 + 2783 ] } ], "insert_player_steam_match_auth_one": [ - 2736, + 2772, { "object": [ - 2743, + 2779, "player_steam_match_auth_insert_input!" ], "on_conflict": [ - 2747 + 2783 ] } ], "insert_player_unused_utility": [ - 2780, + 2816, { "objects": [ - 2775, + 2811, "[player_unused_utility_insert_input!]!" ], "on_conflict": [ - 2781 + 2817 ] } ], "insert_player_unused_utility_one": [ - 2763, + 2799, { "object": [ - 2775, + 2811, "player_unused_utility_insert_input!" ], "on_conflict": [ - 2781 + 2817 ] } ], "insert_player_utility": [ - 2821, + 2857, { "objects": [ - 2816, + 2852, "[player_utility_insert_input!]!" ], "on_conflict": [ - 2822 + 2858 ] } ], "insert_player_utility_one": [ - 2804, + 2840, { "object": [ - 2816, + 2852, "player_utility_insert_input!" ], "on_conflict": [ - 2822 + 2858 ] } ], "insert_players": [ - 2888, + 2924, { "objects": [ - 2885, + 2921, "[players_insert_input!]!" ], "on_conflict": [ - 2890 + 2926 ] } ], "insert_players_one": [ - 2878, + 2914, { "object": [ - 2885, + 2921, "players_insert_input!" ], "on_conflict": [ - 2890 + 2926 ] } ], "insert_plugin_versions": [ - 2916, + 2952, { "objects": [ - 2913, + 2949, "[plugin_versions_insert_input!]!" ], "on_conflict": [ - 2917 + 2953 ] } ], "insert_plugin_versions_one": [ - 2906, + 2942, { "object": [ - 2913, + 2949, "plugin_versions_insert_input!" ], "on_conflict": [ - 2917 + 2953 ] } ], "insert_server_regions": [ - 2943, + 2979, { "objects": [ - 2940, + 2976, "[server_regions_insert_input!]!" ], "on_conflict": [ - 2945 + 2981 ] } ], "insert_server_regions_one": [ - 2934, + 2970, { "object": [ - 2940, + 2976, "server_regions_insert_input!" ], "on_conflict": [ - 2945 + 2981 ] } ], "insert_servers": [ - 2980, + 3016, { "objects": [ - 2975, + 3011, "[servers_insert_input!]!" ], "on_conflict": [ - 2982 + 3018 ] } ], "insert_servers_one": [ - 2961, + 2997, { "object": [ - 2975, + 3011, "servers_insert_input!" ], "on_conflict": [ - 2982 + 3018 ] } ], "insert_settings": [ - 3015, + 3051, { "objects": [ - 3012, + 3048, "[settings_insert_input!]!" ], "on_conflict": [ - 3016 + 3052 ] } ], "insert_settings_one": [ - 3007, + 3043, { "object": [ - 3012, + 3048, "settings_insert_input!" ], "on_conflict": [ - 3016 + 3052 ] } ], "insert_steam_account_claims": [ - 3039, + 3075, { "objects": [ - 3034, + 3070, "[steam_account_claims_insert_input!]!" ], "on_conflict": [ - 3040 + 3076 ] } ], "insert_steam_account_claims_one": [ - 3025, + 3061, { "object": [ - 3034, + 3070, "steam_account_claims_insert_input!" ], "on_conflict": [ - 3040 + 3076 ] } ], "insert_steam_accounts": [ - 3057, + 3095, { "objects": [ - 3054, + 3092, "[steam_accounts_insert_input!]!" ], "on_conflict": [ - 3059 + 3097 ] } ], "insert_steam_accounts_one": [ - 3049, + 3085, { "object": [ - 3054, + 3092, "steam_accounts_insert_input!" ], "on_conflict": [ - 3059 + 3097 ] } ], "insert_system_alerts": [ - 3078, + 3123, { "objects": [ - 3075, + 3120, "[system_alerts_insert_input!]!" ], "on_conflict": [ - 3079 + 3124 ] } ], "insert_system_alerts_one": [ - 3068, + 3113, { "object": [ - 3075, + 3120, "system_alerts_insert_input!" ], "on_conflict": [ - 3079 + 3124 ] } ], "insert_team_invites": [ - 3112, + 3157, { "objects": [ - 3107, + 3152, "[team_invites_insert_input!]!" ], "on_conflict": [ - 3113 + 3158 ] } ], "insert_team_invites_one": [ - 3095, + 3140, { "object": [ - 3107, + 3152, "team_invites_insert_input!" ], "on_conflict": [ - 3113 + 3158 ] } ], "insert_team_roster": [ - 3155, + 3200, { "objects": [ - 3150, + 3195, "[team_roster_insert_input!]!" ], "on_conflict": [ - 3156 + 3201 ] } ], "insert_team_roster_one": [ - 3136, + 3181, { "object": [ - 3150, + 3195, "team_roster_insert_input!" ], "on_conflict": [ - 3156 + 3201 ] } ], "insert_team_scrim_alerts": [ - 3191, + 3236, { "objects": [ - 3188, + 3233, "[team_scrim_alerts_insert_input!]!" ], "on_conflict": [ - 3192 + 3237 ] } ], "insert_team_scrim_alerts_one": [ - 3181, + 3226, { "object": [ - 3188, + 3233, "team_scrim_alerts_insert_input!" ], "on_conflict": [ - 3192 + 3237 ] } ], "insert_team_scrim_availability": [ - 3224, + 3269, { "objects": [ - 3219, + 3264, "[team_scrim_availability_insert_input!]!" ], "on_conflict": [ - 3225 + 3270 ] } ], "insert_team_scrim_availability_one": [ - 3208, + 3253, { "object": [ - 3219, + 3264, "team_scrim_availability_insert_input!" ], "on_conflict": [ - 3225 + 3270 ] } ], "insert_team_scrim_request_proposals": [ - 3253, + 3298, { "objects": [ - 3248, + 3293, "[team_scrim_request_proposals_insert_input!]!" ], "on_conflict": [ - 3254 + 3299 ] } ], "insert_team_scrim_request_proposals_one": [ - 3236, + 3281, { "object": [ - 3248, + 3293, "team_scrim_request_proposals_insert_input!" ], "on_conflict": [ - 3254 + 3299 ] } ], "insert_team_scrim_requests": [ - 3296, + 3341, { "objects": [ - 3291, + 3336, "[team_scrim_requests_insert_input!]!" ], "on_conflict": [ - 3298 + 3343 ] } ], "insert_team_scrim_requests_one": [ - 3277, + 3322, { "object": [ - 3291, + 3336, "team_scrim_requests_insert_input!" ], "on_conflict": [ - 3298 + 3343 ] } ], "insert_team_scrim_settings": [ - 3333, + 3378, { "objects": [ - 3330, + 3375, "[team_scrim_settings_insert_input!]!" ], "on_conflict": [ - 3335 + 3380 ] } ], "insert_team_scrim_settings_one": [ - 3323, + 3368, { "object": [ - 3330, + 3375, "team_scrim_settings_insert_input!" ], "on_conflict": [ - 3335 + 3380 ] } ], "insert_team_suggestions": [ - 3361, + 3406, { "objects": [ - 3358, + 3403, "[team_suggestions_insert_input!]!" ], "on_conflict": [ - 3362 + 3407 ] } ], "insert_team_suggestions_one": [ - 3351, + 3396, { "object": [ - 3358, + 3403, "team_suggestions_insert_input!" ], "on_conflict": [ - 3362 + 3407 ] } ], "insert_teams": [ - 3395, + 3440, { "objects": [ - 3390, + 3435, "[teams_insert_input!]!" ], "on_conflict": [ - 3397 + 3442 ] } ], "insert_teams_one": [ - 3378, + 3423, { "object": [ - 3390, + 3435, "teams_insert_input!" ], "on_conflict": [ - 3397 + 3442 ] } ], "insert_tournament_brackets": [ - 3442, + 3487, { "objects": [ - 3437, + 3482, "[tournament_brackets_insert_input!]!" ], "on_conflict": [ - 3444 + 3489 ] } ], "insert_tournament_brackets_one": [ - 3423, + 3468, { "object": [ - 3437, + 3482, "tournament_brackets_insert_input!" ], "on_conflict": [ - 3444 + 3489 ] } ], "insert_tournament_organizers": [ - 3486, + 3531, { "objects": [ - 3481, + 3526, "[tournament_organizers_insert_input!]!" ], "on_conflict": [ - 3487 + 3532 ] } ], "insert_tournament_organizers_one": [ - 3469, + 3514, { "object": [ - 3481, + 3526, "tournament_organizers_insert_input!" ], "on_conflict": [ - 3487 + 3532 ] } ], "insert_tournament_stages": [ - 3533, + 3578, { "objects": [ - 3528, + 3573, "[tournament_stages_insert_input!]!" ], "on_conflict": [ - 3535 + 3580 ] } ], "insert_tournament_stages_one": [ - 3510, + 3555, { "object": [ - 3528, + 3573, "tournament_stages_insert_input!" ], "on_conflict": [ - 3535 + 3580 ] } ], "insert_tournament_team_invites": [ - 3578, + 3623, { "objects": [ - 3573, + 3618, "[tournament_team_invites_insert_input!]!" ], "on_conflict": [ - 3579 + 3624 ] } ], "insert_tournament_team_invites_one": [ - 3561, + 3606, { "object": [ - 3573, + 3618, "tournament_team_invites_insert_input!" ], "on_conflict": [ - 3579 + 3624 ] } ], "insert_tournament_team_roster": [ - 3619, + 3664, { "objects": [ - 3614, + 3659, "[tournament_team_roster_insert_input!]!" ], "on_conflict": [ - 3620 + 3665 ] } ], "insert_tournament_team_roster_one": [ - 3602, + 3647, { "object": [ - 3614, + 3659, "tournament_team_roster_insert_input!" ], "on_conflict": [ - 3620 + 3665 ] } ], "insert_tournament_teams": [ - 3660, + 3705, { "objects": [ - 3655, + 3700, "[tournament_teams_insert_input!]!" ], "on_conflict": [ - 3662 + 3707 ] } ], "insert_tournament_teams_one": [ - 3643, + 3688, { "object": [ - 3655, + 3700, "tournament_teams_insert_input!" ], "on_conflict": [ - 3662 + 3707 ] } ], "insert_tournament_trophies": [ - 3704, + 3749, { "objects": [ - 3699, + 3744, "[tournament_trophies_insert_input!]!" ], "on_conflict": [ - 3705 + 3750 ] } ], "insert_tournament_trophies_one": [ - 3685, + 3730, { "object": [ - 3699, + 3744, "tournament_trophies_insert_input!" ], "on_conflict": [ - 3705 + 3750 ] } ], "insert_tournament_trophy_configs": [ - 3747, + 3792, { "objects": [ - 3742, + 3787, "[tournament_trophy_configs_insert_input!]!" ], "on_conflict": [ - 3749 + 3794 ] } ], "insert_tournament_trophy_configs_one": [ - 3730, + 3775, { "object": [ - 3742, + 3787, "tournament_trophy_configs_insert_input!" ], "on_conflict": [ - 3749 + 3794 ] } ], "insert_tournaments": [ - 3791, + 3836, { "objects": [ - 3786, + 3831, "[tournaments_insert_input!]!" ], "on_conflict": [ - 3793 + 3838 ] } ], "insert_tournaments_one": [ - 3772, + 3817, { "object": [ - 3786, + 3831, "tournaments_insert_input!" ], "on_conflict": [ - 3793 + 3838 ] } ], "insert_v_match_captains": [ - 3848, + 3893, { "objects": [ - 3845, + 3890, "[v_match_captains_insert_input!]!" ] } ], "insert_v_match_captains_one": [ - 3839, + 3884, { "object": [ - 3845, + 3890, "v_match_captains_insert_input!" ] } ], "insert_v_match_map_backup_rounds": [ - 3959, + 4004, { "objects": [ - 3956, + 4001, "[v_match_map_backup_rounds_insert_input!]!" ] } ], "insert_v_match_map_backup_rounds_one": [ - 3950, + 3995, { "object": [ - 3956, + 4001, "v_match_map_backup_rounds_insert_input!" ] } ], "insert_v_player_match_map_hltv": [ - 4181, + 4226, { "objects": [ - 4176, + 4221, "[v_player_match_map_hltv_insert_input!]!" ] } ], "insert_v_player_match_map_hltv_one": [ - 4165, + 4210, { "object": [ - 4176, + 4221, "v_player_match_map_hltv_insert_input!" ] } ], "insert_v_pool_maps": [ - 4340, + 4385, { "objects": [ - 4335, + 4380, "[v_pool_maps_insert_input!]!" ] } ], "insert_v_pool_maps_one": [ - 4325, + 4370, { "object": [ - 4335, + 4380, "v_pool_maps_insert_input!" ] } ], "insert_v_team_stage_results": [ - 4434, + 4479, { "objects": [ - 4429, + 4474, "[v_team_stage_results_insert_input!]!" ], "on_conflict": [ - 4436 + 4481 ] } ], "insert_v_team_stage_results_one": [ - 4407, + 4452, { "object": [ - 4429, + 4474, "v_team_stage_results_insert_input!" ], "on_conflict": [ - 4436 + 4481 ] } ], "joinDraftGame": [ - 73, + 77, { "draftGameId": [ - 3818, + 3863, "uuid!" ], "inviteCode": [ - 70 + 74 ] } ], "joinDraftGameAsParty": [ - 73, + 77, { "draftGameId": [ - 3818, + 3863, "uuid!" ], "inviteCode": [ - 70 + 74 ] } ], @@ -122946,23 +124789,23 @@ export default { 40, { "reason": [ - 70 + 74 ], "serverId": [ - 70, + 74, "String!" ], "steam_id": [ - 70, + 74, "String!" ] } ], "leaveLineup": [ - 73, + 77, { "match_id": [ - 70, + 74, "String!" ] } @@ -122971,37 +124814,37 @@ export default { 66, { "auth_code": [ - 70, + 74, "String!" ], "share_code": [ - 70, + 74, "String!" ] } ], "loadFixtures": [ - 73 + 77 ], "logout": [ - 73 + 77 ], "moveServerItem": [ - 73, + 77, { "dest_path": [ - 70, + 74, "String!" ], "node_id": [ - 70, + 74, "String!" ], "server_id": [ - 70 + 74 ], "source_path": [ - 70, + 74, "String!" ] } @@ -123010,10 +124853,10 @@ export default { 52 ], "pauseClipRenderBatch": [ - 73, + 77, { "match_map_id": [ - 3818, + 3863, "uuid!" ] } @@ -123025,11 +124868,11 @@ export default { 22, { "draftGameId": [ - 3818, + 3863, "uuid!" ], "inviteCode": [ - 70 + 74 ] } ], @@ -123040,55 +124883,55 @@ export default { 38 ], "match_map_id": [ - 3818, + 3863, "uuid!" ], "preset": [ - 70, + 74, "String!" ], "resolution": [ - 70 + 74 ], "target_name": [ - 70 + 74 ], "target_steam_id": [ - 70, + 74, "String!" ], "title": [ - 70 + 74 ] } ], "randomizeTeams": [ - 73, + 77, { "match_id": [ - 3818, + 3863, "uuid!" ] } ], "rebootMatchServer": [ - 73, + 77, { "match_id": [ - 3818, + 3863, "uuid!" ] } ], "recalculate_tournament_trophies": [ - 3685, + 3730, { "args": [ - 2933, + 2969, "recalculate_tournament_trophies_args!" ], "distinct_on": [ - 3708, + 3753, "[tournament_trophies_select_column!]" ], "limit": [ @@ -123098,73 +124941,82 @@ export default { 38 ], "order_by": [ - 3706, + 3751, "[tournament_trophies_order_by!]" ], "where": [ - 3696 + 3741 ] } ], "reconnectLive": [ - 73, + 77, { "match_id": [ - 3818, + 3863, "uuid!" ] } ], "refreshAllPlayers": [ - 73 + 77 ], "refreshFaceitRank": [ - 73, + 77, { "steam_id": [ - 70, + 74, "String!" ] } ], "refreshLiveHud": [ - 73, + 77, { "match_id": [ - 3818, + 3863, "uuid!" ] } ], "registerName": [ - 73, + 77, { "name": [ - 70, + 74, "String!" ] } ], "removeFixtures": [ - 73 + 77 + ], + "removeSteamPresenceBotAccount": [ + 77, + { + "account_id": [ + 74, + "String!" + ] + } ], "renameServerItem": [ - 73, + 77, { "new_path": [ - 70, + 74, "String!" ], "node_id": [ - 70, + 74, "String!" ], "old_path": [ - 70, + 74, "String!" ], "server_id": [ - 70 + 74 ] } ], @@ -123175,94 +125027,94 @@ export default { 59 ], "reparseDemo": [ - 73, + 77, { "match_map_id": [ - 3818, + 3863, "uuid!" ] } ], "reparseMatchDemos": [ - 73, + 77, { "match_id": [ - 3818, + 3863, "uuid!" ] } ], "requestNameChange": [ - 73, + 77, { "name": [ - 70, + 74, "String!" ], "steam_id": [ - 169, + 173, "bigint!" ] } ], "requeueClipRender": [ - 73, + 77, { "job_id": [ - 3818, + 3863, "uuid!" ] } ], "respondDraftInvite": [ - 73, + 77, { "accept": [ 3, "Boolean!" ], "draftGameId": [ - 3818, + 3863, "uuid!" ] } ], "respondToScrimRequest": [ - 73, + 77, { "accept": [ 3, "Boolean!" ], "request_id": [ - 3818, + 3863, "uuid!" ] } ], "restartService": [ - 73, + 77, { "service": [ - 70, + 74, "String!" ] } ], "resumeClipRenderBatch": [ - 73, + 77, { "match_map_id": [ - 3818, + 3863, "uuid!" ] } ], "retryClipRenderBatch": [ - 73, + 77, { "match_map_id": [ - 3818, + 3863, "uuid!" ], "only_failed": [ @@ -123274,7 +125126,7 @@ export default { 53, { "valve_match_id": [ - 70, + 74, "String!" ] } @@ -123286,17 +125138,17 @@ export default { 29 ], "reason": [ - 70 + 74 ], "serverId": [ - 70 + 74 ], "steam_id": [ - 70, + 74, "String!" ], "type": [ - 70, + 74, "String!" ] } @@ -123305,20 +125157,20 @@ export default { 48, { "content_markdown": [ - 70, + 74, "String!" ], "cover_image_url": [ - 70 + 74 ], "id": [ - 3818 + 3863 ], "teaser": [ - 70 + 74 ], "title": [ - 70, + 74, "String!" ] } @@ -123327,95 +125179,95 @@ export default { 61 ], "scanSteamBans": [ - 73 + 77 ], "scheduleMatch": [ - 73, + 77, { "match_id": [ - 3818, + 3863, "uuid!" ], "time": [ - 3421 + 3466 ] } ], "sendScrimRequest": [ - 73, + 77, { "best_of": [ 38 ], "from_team_id": [ - 3818, + 3863, "uuid!" ], "proposed_scheduled_at": [ - 3421, + 3466, "timestamptz!" ], "region": [ - 70 + 74 ], "to_team_id": [ - 3818, + 3863, "uuid!" ] } ], "setGameNodeSchedulingState": [ - 73, + 77, { "enabled": [ 3, "Boolean!" ], "game_server_node_id": [ - 70, + 74, "String!" ] } ], "setHudMode": [ - 73, + 77, { "match_id": [ - 3818, + 3863, "uuid!" ], "mode": [ - 70, + 74, "String!" ] } ], "setMapWinner": [ - 73, + 77, { "match_id": [ - 3818, + 3863, "uuid!" ], "match_map_id": [ - 3818, + 3863, "uuid!" ], "winning_lineup_id": [ - 3818, + 3863, "uuid!" ] } ], "setMatchWinner": [ - 73, + 77, { "match_id": [ - 3818, + 3863, "uuid!" ], "winning_lineup_id": [ - 3818, + 3863, "uuid!" ] } @@ -123424,11 +125276,11 @@ export default { 48, { "id": [ - 3818, + 3863, "uuid!" ], "status": [ - 70, + 74, "String!" ] } @@ -123437,45 +125289,45 @@ export default { 65 ], "skipShaders": [ - 73, + 77, { "match_id": [ - 3818, + 3863, "uuid!" ] } ], "specAutodirector": [ - 73, + 77, { "enabled": [ 3, "Boolean!" ], "match_id": [ - 3818, + 3863, "uuid!" ] } ], "specClick": [ - 73, + 77, { "button": [ - 70, + 74, "String!" ], "match_id": [ - 3818, + 3863, "uuid!" ] } ], "specHud": [ - 73, + 77, { "match_id": [ - 3818, + 3863, "uuid!" ], "visible": [ @@ -123485,41 +125337,41 @@ export default { } ], "specHudSides": [ - 73, + 77, { "match_id": [ - 3818, + 3863, "uuid!" ] } ], "specJump": [ - 73, + 77, { "match_id": [ - 3818, + 3863, "uuid!" ] } ], "specPlayer": [ - 73, + 77, { "accountid": [ 38, "Int!" ], "match_id": [ - 3818, + 3863, "uuid!" ] } ], "specScoreboard": [ - 73, + 77, { "match_id": [ - 3818, + 3863, "uuid!" ], "show": [ @@ -123529,10 +125381,10 @@ export default { } ], "specSlot": [ - 73, + 77, { "match_id": [ - 3818, + 3863, "uuid!" ], "slot": [ @@ -123542,4768 +125394,4856 @@ export default { } ], "specXray": [ - 73, + 77, { "enabled": [ 3, "Boolean!" ], "match_id": [ - 3818, + 3863, "uuid!" ] } ], "startLive": [ - 73, + 77, { "match_id": [ - 3818, + 3863, "uuid!" ], "mode": [ - 70, + 74, "String!" ] } ], "startMatch": [ - 73, + 77, { "match_id": [ - 3818, + 3863, "uuid!" ], "server_id": [ - 3818 + 3863 ] } ], "stopGpuSession": [ - 73, + 77, { "game_server_node_id": [ - 3818, + 3863, "uuid!" ] } ], "stopLive": [ - 73, + 77, { "match_id": [ - 3818, + 3863, "uuid!" ] } ], "stopWatchDemo": [ - 73, + 77, { "match_map_id": [ - 3818, + 3863, "uuid!" ] } ], + "submitSteamPresenceSteamGuard": [ + 77, + { + "account_id": [ + 74, + "String!" + ], + "code": [ + 74, + "String!" + ] + } + ], "swapLineups": [ - 73, + 77, { "match_id": [ - 3818, + 3863, "uuid!" ] } ], "switchLineup": [ - 73, + 77, { "match_id": [ - 70, + 74, "String!" ] } ], "switchLiveMatch": [ - 73, + 77, { "from_match_id": [ - 3818, + 3863, "uuid!" ], "mode": [ - 70, + 74, "String!" ], "to_match_id": [ - 3818, + 3863, "uuid!" ] } ], "syncSteamFriends": [ - 73 + 77 ], "testFaceitIntegration": [ 24 ], "testUpload": [ - 78 + 82 ], "unlinkDiscord": [ - 73 + 77 ], "unlinkSteamMatchHistory": [ - 73 + 77 ], "unsanctionServerPlayer": [ 60, { "serverId": [ - 70 + 74 ], "steam_id": [ - 70, + 74, "String!" ], "type": [ - 70, + 74, "String!" ] } ], "updateClip": [ - 73, + 77, { "clip_id": [ - 3818, + 3863, "uuid!" ], "target_steam_id": [ - 70 + 74 ], "title": [ - 70 + 74 ], "visibility": [ - 70 + 74 ] } ], "updateCs": [ - 73, + 77, { "game": [ - 70 + 74 ], "game_server_node_id": [ - 3818 + 3863 ] } ], "updateDraftGame": [ - 73, + 77, { "draftGameId": [ - 3818, + 3863, "uuid!" ], "settings": [ - 1235, + 1239, "jsonb!" ] } ], "updateServices": [ - 73 + 77 ], "update__map_pool": [ - 91, + 95, { "_set": [ - 96 + 100 ], "where": [ - 86, + 90, "_map_pool_bool_exp!" ] } ], "update__map_pool_by_pk": [ - 83, + 87, { "_set": [ - 96 + 100 ], "pk_columns": [ - 94, + 98, "_map_pool_pk_columns_input!" ] } ], "update__map_pool_many": [ - 91, + 95, { "updates": [ - 100, + 104, "[_map_pool_updates!]!" ] } ], "update_abandoned_matches": [ - 118, + 122, { "_inc": [ - 112 + 116 ], "_set": [ - 123 + 127 ], "where": [ - 110, + 114, "abandoned_matches_bool_exp!" ] } ], "update_abandoned_matches_by_pk": [ - 101, + 105, { "_inc": [ - 112 + 116 ], "_set": [ - 123 + 127 ], "pk_columns": [ - 121, + 125, "abandoned_matches_pk_columns_input!" ] } ], "update_abandoned_matches_many": [ - 118, + 122, { "updates": [ - 135, + 139, "[abandoned_matches_updates!]!" ] } ], "update_api_keys": [ - 152, + 156, { "_inc": [ - 148 + 152 ], "_set": [ - 157 + 161 ], "where": [ - 146, + 150, "api_keys_bool_exp!" ] } ], "update_api_keys_by_pk": [ - 142, + 146, { "_inc": [ - 148 + 152 ], "_set": [ - 157 + 161 ], "pk_columns": [ - 155, + 159, "api_keys_pk_columns_input!" ] } ], "update_api_keys_many": [ - 152, + 156, { "updates": [ - 165, + 169, "[api_keys_updates!]!" ] } ], "update_clip_render_jobs": [ - 197, + 201, { "_append": [ - 182 + 186 ], "_delete_at_path": [ - 188 + 192 ], "_delete_elem": [ - 189 + 193 ], "_delete_key": [ - 190 + 194 ], "_inc": [ - 191 + 195 ], "_prepend": [ - 201 + 205 ], "_set": [ - 205 + 209 ], "where": [ - 186, + 190, "clip_render_jobs_bool_exp!" ] } ], "update_clip_render_jobs_by_pk": [ - 174, + 178, { "_append": [ - 182 + 186 ], "_delete_at_path": [ - 188 + 192 ], "_delete_elem": [ - 189 + 193 ], "_delete_key": [ - 190 + 194 ], "_inc": [ - 191 + 195 ], "_prepend": [ - 201 + 205 ], "_set": [ - 205 + 209 ], "pk_columns": [ - 200, + 204, "clip_render_jobs_pk_columns_input!" ] } ], "update_clip_render_jobs_many": [ - 197, + 201, { "updates": [ - 217, + 221, "[clip_render_jobs_updates!]!" ] } ], "update_db_backups": [ - 235, + 239, { "_inc": [ - 231 + 235 ], "_set": [ - 240 + 244 ], "where": [ - 229, + 233, "db_backups_bool_exp!" ] } ], "update_db_backups_by_pk": [ - 225, + 229, { "_inc": [ - 231 + 235 ], "_set": [ - 240 + 244 ], "pk_columns": [ - 238, + 242, "db_backups_pk_columns_input!" ] } ], "update_db_backups_many": [ - 235, + 239, { "updates": [ - 248, + 252, "[db_backups_updates!]!" ] } ], "update_draft_game_picks": [ - 271, + 275, { "_inc": [ - 265 + 269 ], "_set": [ - 278 + 282 ], "where": [ - 263, + 267, "draft_game_picks_bool_exp!" ] } ], "update_draft_game_picks_by_pk": [ - 252, + 256, { "_inc": [ - 265 + 269 ], "_set": [ - 278 + 282 ], "pk_columns": [ - 274, + 278, "draft_game_picks_pk_columns_input!" ] } ], "update_draft_game_picks_many": [ - 271, + 275, { "updates": [ - 290, + 294, "[draft_game_picks_updates!]!" ] } ], "update_draft_game_players": [ - 316, + 320, { "_inc": [ - 310 + 314 ], "_set": [ - 323 + 327 ], "where": [ - 308, + 312, "draft_game_players_bool_exp!" ] } ], "update_draft_game_players_by_pk": [ - 297, + 301, { "_inc": [ - 310 + 314 ], "_set": [ - 323 + 327 ], "pk_columns": [ - 319, + 323, "draft_game_players_pk_columns_input!" ] } ], "update_draft_game_players_many": [ - 316, + 320, { "updates": [ - 335, + 339, "[draft_game_players_updates!]!" ] } ], "update_draft_games": [ - 361, + 365, { "_inc": [ - 355 + 359 ], "_set": [ - 369 + 373 ], "where": [ - 353, + 357, "draft_games_bool_exp!" ] } ], "update_draft_games_by_pk": [ - 342, + 346, { "_inc": [ - 355 + 359 ], "_set": [ - 369 + 373 ], "pk_columns": [ - 365, + 369, "draft_games_pk_columns_input!" ] } ], "update_draft_games_many": [ - 361, + 365, { "updates": [ - 381, + 385, "[draft_games_updates!]!" ] } ], "update_e_check_in_settings": [ - 398, + 402, { "_set": [ - 403 + 407 ], "where": [ - 391, + 395, "e_check_in_settings_bool_exp!" ] } ], "update_e_check_in_settings_by_pk": [ - 388, + 392, { "_set": [ - 403 + 407 ], "pk_columns": [ - 401, + 405, "e_check_in_settings_pk_columns_input!" ] } ], "update_e_check_in_settings_many": [ - 398, + 402, { "updates": [ - 407, + 411, "[e_check_in_settings_updates!]!" ] } ], "update_e_draft_game_captain_selection": [ - 418, + 422, { "_set": [ - 424 + 428 ], "where": [ - 411, + 415, "e_draft_game_captain_selection_bool_exp!" ] } ], "update_e_draft_game_captain_selection_by_pk": [ - 408, + 412, { "_set": [ - 424 + 428 ], "pk_columns": [ - 422, + 426, "e_draft_game_captain_selection_pk_columns_input!" ] } ], "update_e_draft_game_captain_selection_many": [ - 418, + 422, { "updates": [ - 428, + 432, "[e_draft_game_captain_selection_updates!]!" ] } ], "update_e_draft_game_draft_order": [ - 439, + 443, { "_set": [ - 445 + 449 ], "where": [ - 432, + 436, "e_draft_game_draft_order_bool_exp!" ] } ], "update_e_draft_game_draft_order_by_pk": [ - 429, + 433, { "_set": [ - 445 + 449 ], "pk_columns": [ - 443, + 447, "e_draft_game_draft_order_pk_columns_input!" ] } ], "update_e_draft_game_draft_order_many": [ - 439, + 443, { "updates": [ - 449, + 453, "[e_draft_game_draft_order_updates!]!" ] } ], "update_e_draft_game_mode": [ - 460, + 464, { "_set": [ - 466 + 470 ], "where": [ - 453, + 457, "e_draft_game_mode_bool_exp!" ] } ], "update_e_draft_game_mode_by_pk": [ - 450, + 454, { "_set": [ - 466 + 470 ], "pk_columns": [ - 464, + 468, "e_draft_game_mode_pk_columns_input!" ] } ], "update_e_draft_game_mode_many": [ - 460, + 464, { "updates": [ - 470, + 474, "[e_draft_game_mode_updates!]!" ] } ], "update_e_draft_game_player_status": [ - 481, + 485, { "_set": [ - 487 + 491 ], "where": [ - 474, + 478, "e_draft_game_player_status_bool_exp!" ] } ], "update_e_draft_game_player_status_by_pk": [ - 471, + 475, { "_set": [ - 487 + 491 ], "pk_columns": [ - 485, + 489, "e_draft_game_player_status_pk_columns_input!" ] } ], "update_e_draft_game_player_status_many": [ - 481, + 485, { "updates": [ - 491, + 495, "[e_draft_game_player_status_updates!]!" ] } ], "update_e_draft_game_status": [ - 502, + 506, { "_set": [ - 508 + 512 ], "where": [ - 495, + 499, "e_draft_game_status_bool_exp!" ] } ], "update_e_draft_game_status_by_pk": [ - 492, + 496, { "_set": [ - 508 + 512 ], "pk_columns": [ - 506, + 510, "e_draft_game_status_pk_columns_input!" ] } ], "update_e_draft_game_status_many": [ - 502, + 506, { "updates": [ - 512, + 516, "[e_draft_game_status_updates!]!" ] } ], "update_e_friend_status": [ - 523, + 527, { "_set": [ - 529 + 533 ], "where": [ - 516, + 520, "e_friend_status_bool_exp!" ] } ], "update_e_friend_status_by_pk": [ - 513, + 517, { "_set": [ - 529 + 533 ], "pk_columns": [ - 527, + 531, "e_friend_status_pk_columns_input!" ] } ], "update_e_friend_status_many": [ - 523, + 527, { "updates": [ - 533, + 537, "[e_friend_status_updates!]!" ] } ], "update_e_game_cfg_types": [ - 544, + 548, { "_set": [ - 549 + 553 ], "where": [ - 537, + 541, "e_game_cfg_types_bool_exp!" ] } ], "update_e_game_cfg_types_by_pk": [ - 534, + 538, { "_set": [ - 549 + 553 ], "pk_columns": [ - 547, + 551, "e_game_cfg_types_pk_columns_input!" ] } ], "update_e_game_cfg_types_many": [ - 544, + 548, { "updates": [ - 553, + 557, "[e_game_cfg_types_updates!]!" ] } ], "update_e_game_server_node_statuses": [ - 564, + 568, { "_set": [ - 570 + 574 ], "where": [ - 557, + 561, "e_game_server_node_statuses_bool_exp!" ] } ], "update_e_game_server_node_statuses_by_pk": [ - 554, + 558, { "_set": [ - 570 + 574 ], "pk_columns": [ - 568, + 572, "e_game_server_node_statuses_pk_columns_input!" ] } ], "update_e_game_server_node_statuses_many": [ - 564, + 568, { "updates": [ - 574, + 578, "[e_game_server_node_statuses_updates!]!" ] } ], "update_e_lobby_access": [ - 585, + 589, { "_set": [ - 591 + 595 ], "where": [ - 578, + 582, "e_lobby_access_bool_exp!" ] } ], "update_e_lobby_access_by_pk": [ - 575, + 579, { "_set": [ - 591 + 595 ], "pk_columns": [ - 589, + 593, "e_lobby_access_pk_columns_input!" ] } ], "update_e_lobby_access_many": [ - 585, + 589, { "updates": [ - 595, + 599, "[e_lobby_access_updates!]!" ] } ], "update_e_lobby_player_status": [ - 606, + 610, { "_set": [ - 611 + 615 ], "where": [ - 599, + 603, "e_lobby_player_status_bool_exp!" ] } ], "update_e_lobby_player_status_by_pk": [ - 596, + 600, { "_set": [ - 611 + 615 ], "pk_columns": [ - 609, + 613, "e_lobby_player_status_pk_columns_input!" ] } ], "update_e_lobby_player_status_many": [ - 606, + 610, { "updates": [ - 615, + 619, "[e_lobby_player_status_updates!]!" ] } ], "update_e_map_pool_types": [ - 626, + 630, { "_set": [ - 632 + 636 ], "where": [ - 619, + 623, "e_map_pool_types_bool_exp!" ] } ], "update_e_map_pool_types_by_pk": [ - 616, + 620, { "_set": [ - 632 + 636 ], "pk_columns": [ - 630, + 634, "e_map_pool_types_pk_columns_input!" ] } ], "update_e_map_pool_types_many": [ - 626, + 630, { "updates": [ - 636, + 640, "[e_map_pool_types_updates!]!" ] } ], "update_e_match_clip_visibility": [ - 647, + 651, { "_set": [ - 652 + 656 ], "where": [ - 640, + 644, "e_match_clip_visibility_bool_exp!" ] } ], "update_e_match_clip_visibility_by_pk": [ - 637, + 641, { "_set": [ - 652 + 656 ], "pk_columns": [ - 650, + 654, "e_match_clip_visibility_pk_columns_input!" ] } ], "update_e_match_clip_visibility_many": [ - 647, + 651, { "updates": [ - 656, + 660, "[e_match_clip_visibility_updates!]!" ] } ], "update_e_match_map_status": [ - 667, + 671, { "_set": [ - 673 + 677 ], "where": [ - 660, + 664, "e_match_map_status_bool_exp!" ] } ], "update_e_match_map_status_by_pk": [ - 657, + 661, { "_set": [ - 673 + 677 ], "pk_columns": [ - 671, + 675, "e_match_map_status_pk_columns_input!" ] } ], "update_e_match_map_status_many": [ - 667, + 671, { "updates": [ - 677, + 681, "[e_match_map_status_updates!]!" ] } ], "update_e_match_mode": [ - 688, + 692, { "_set": [ - 693 + 697 ], "where": [ - 681, + 685, "e_match_mode_bool_exp!" ] } ], "update_e_match_mode_by_pk": [ - 678, + 682, { "_set": [ - 693 + 697 ], "pk_columns": [ - 691, + 695, "e_match_mode_pk_columns_input!" ] } ], "update_e_match_mode_many": [ - 688, + 692, { "updates": [ - 697, + 701, "[e_match_mode_updates!]!" ] } ], "update_e_match_status": [ - 708, + 712, { "_set": [ - 714 + 718 ], "where": [ - 701, + 705, "e_match_status_bool_exp!" ] } ], "update_e_match_status_by_pk": [ - 698, + 702, { "_set": [ - 714 + 718 ], "pk_columns": [ - 712, + 716, "e_match_status_pk_columns_input!" ] } ], "update_e_match_status_many": [ - 708, + 712, { "updates": [ - 718, + 722, "[e_match_status_updates!]!" ] } ], "update_e_match_types": [ - 729, + 733, { "_set": [ - 735 + 739 ], "where": [ - 722, + 726, "e_match_types_bool_exp!" ] } ], "update_e_match_types_by_pk": [ - 719, + 723, { "_set": [ - 735 + 739 ], "pk_columns": [ - 733, + 737, "e_match_types_pk_columns_input!" ] } ], "update_e_match_types_many": [ - 729, + 733, { "updates": [ - 739, + 743, "[e_match_types_updates!]!" ] } ], "update_e_notification_types": [ - 750, + 754, { "_set": [ - 755 + 759 ], "where": [ - 743, + 747, "e_notification_types_bool_exp!" ] } ], "update_e_notification_types_by_pk": [ - 740, + 744, { "_set": [ - 755 + 759 ], "pk_columns": [ - 753, + 757, "e_notification_types_pk_columns_input!" ] } ], "update_e_notification_types_many": [ - 750, + 754, { "updates": [ - 759, + 763, "[e_notification_types_updates!]!" ] } ], "update_e_objective_types": [ - 770, + 774, { "_set": [ - 775 + 779 ], "where": [ - 763, + 767, "e_objective_types_bool_exp!" ] } ], "update_e_objective_types_by_pk": [ - 760, + 764, { "_set": [ - 775 + 779 ], "pk_columns": [ - 773, + 777, "e_objective_types_pk_columns_input!" ] } ], "update_e_objective_types_many": [ - 770, + 774, { "updates": [ - 779, + 783, "[e_objective_types_updates!]!" ] } ], "update_e_player_roles": [ - 790, + 794, { "_set": [ - 795 + 799 ], "where": [ - 783, + 787, "e_player_roles_bool_exp!" ] } ], "update_e_player_roles_by_pk": [ - 780, + 784, { "_set": [ - 795 + 799 ], "pk_columns": [ - 793, + 797, "e_player_roles_pk_columns_input!" ] } ], "update_e_player_roles_many": [ - 790, + 794, { "updates": [ - 799, + 803, "[e_player_roles_updates!]!" ] } ], "update_e_ready_settings": [ - 810, + 814, { "_set": [ - 815 + 819 ], "where": [ - 803, + 807, "e_ready_settings_bool_exp!" ] } ], "update_e_ready_settings_by_pk": [ - 800, + 804, { "_set": [ - 815 + 819 ], "pk_columns": [ - 813, + 817, "e_ready_settings_pk_columns_input!" ] } ], "update_e_ready_settings_many": [ - 810, + 814, { "updates": [ - 819, + 823, "[e_ready_settings_updates!]!" ] } ], "update_e_sanction_types": [ - 830, + 834, { "_set": [ - 836 + 840 ], "where": [ - 823, + 827, "e_sanction_types_bool_exp!" ] } ], "update_e_sanction_types_by_pk": [ - 820, + 824, { "_set": [ - 836 + 840 ], "pk_columns": [ - 834, + 838, "e_sanction_types_pk_columns_input!" ] } ], "update_e_sanction_types_many": [ - 830, + 834, { "updates": [ - 840, + 844, "[e_sanction_types_updates!]!" ] } ], "update_e_scrim_request_statuses": [ - 851, + 855, { "_set": [ - 856 + 860 ], "where": [ - 844, + 848, "e_scrim_request_statuses_bool_exp!" ] } ], "update_e_scrim_request_statuses_by_pk": [ - 841, + 845, { "_set": [ - 856 + 860 ], "pk_columns": [ - 854, + 858, "e_scrim_request_statuses_pk_columns_input!" ] } ], "update_e_scrim_request_statuses_many": [ - 851, + 855, { "updates": [ - 860, + 864, "[e_scrim_request_statuses_updates!]!" ] } ], "update_e_server_types": [ - 871, + 875, { "_set": [ - 876 + 880 ], "where": [ - 864, + 868, "e_server_types_bool_exp!" ] } ], "update_e_server_types_by_pk": [ - 861, + 865, { "_set": [ - 876 + 880 ], "pk_columns": [ - 874, + 878, "e_server_types_pk_columns_input!" ] } ], "update_e_server_types_many": [ - 871, + 875, { "updates": [ - 880, + 884, "[e_server_types_updates!]!" ] } ], "update_e_sides": [ - 891, + 895, { "_set": [ - 896 + 900 ], "where": [ - 884, + 888, "e_sides_bool_exp!" ] } ], "update_e_sides_by_pk": [ - 881, + 885, { "_set": [ - 896 + 900 ], "pk_columns": [ - 894, + 898, "e_sides_pk_columns_input!" ] } ], "update_e_sides_many": [ - 891, + 895, { "updates": [ - 900, + 904, "[e_sides_updates!]!" ] } ], "update_e_system_alert_types": [ - 911, + 915, { "_set": [ - 916 + 920 ], "where": [ - 904, + 908, "e_system_alert_types_bool_exp!" ] } ], "update_e_system_alert_types_by_pk": [ - 901, + 905, { "_set": [ - 916 + 920 ], "pk_columns": [ - 914, + 918, "e_system_alert_types_pk_columns_input!" ] } ], "update_e_system_alert_types_many": [ - 911, + 915, { "updates": [ - 920, + 924, "[e_system_alert_types_updates!]!" ] } ], "update_e_team_roles": [ - 931, + 935, { "_set": [ - 937 + 941 ], "where": [ - 924, + 928, "e_team_roles_bool_exp!" ] } ], "update_e_team_roles_by_pk": [ - 921, + 925, { "_set": [ - 937 + 941 ], "pk_columns": [ - 935, + 939, "e_team_roles_pk_columns_input!" ] } ], "update_e_team_roles_many": [ - 931, + 935, { "updates": [ - 941, + 945, "[e_team_roles_updates!]!" ] } ], "update_e_team_roster_statuses": [ - 952, + 956, { "_set": [ - 957 + 961 ], "where": [ - 945, + 949, "e_team_roster_statuses_bool_exp!" ] } ], "update_e_team_roster_statuses_by_pk": [ - 942, + 946, { "_set": [ - 957 + 961 ], "pk_columns": [ - 955, + 959, "e_team_roster_statuses_pk_columns_input!" ] } ], "update_e_team_roster_statuses_many": [ - 952, + 956, { "updates": [ - 961, + 965, "[e_team_roster_statuses_updates!]!" ] } ], "update_e_timeout_settings": [ - 972, + 976, { "_set": [ - 977 + 981 ], "where": [ - 965, + 969, "e_timeout_settings_bool_exp!" ] } ], "update_e_timeout_settings_by_pk": [ - 962, + 966, { "_set": [ - 977 + 981 ], "pk_columns": [ - 975, + 979, "e_timeout_settings_pk_columns_input!" ] } ], "update_e_timeout_settings_many": [ - 972, + 976, { "updates": [ - 981, + 985, "[e_timeout_settings_updates!]!" ] } ], "update_e_tournament_stage_types": [ - 992, + 996, { "_set": [ - 998 + 1002 ], "where": [ - 985, + 989, "e_tournament_stage_types_bool_exp!" ] } ], "update_e_tournament_stage_types_by_pk": [ - 982, + 986, { "_set": [ - 998 + 1002 ], "pk_columns": [ - 996, + 1000, "e_tournament_stage_types_pk_columns_input!" ] } ], "update_e_tournament_stage_types_many": [ - 992, + 996, { "updates": [ - 1002, + 1006, "[e_tournament_stage_types_updates!]!" ] } ], "update_e_tournament_status": [ - 1013, + 1017, { "_set": [ - 1019 + 1023 ], "where": [ - 1006, + 1010, "e_tournament_status_bool_exp!" ] } ], "update_e_tournament_status_by_pk": [ - 1003, + 1007, { "_set": [ - 1019 + 1023 ], "pk_columns": [ - 1017, + 1021, "e_tournament_status_pk_columns_input!" ] } ], "update_e_tournament_status_many": [ - 1013, + 1017, { "updates": [ - 1023, + 1027, "[e_tournament_status_updates!]!" ] } ], "update_e_utility_types": [ - 1034, + 1038, { "_set": [ - 1039 + 1043 ], "where": [ - 1027, + 1031, "e_utility_types_bool_exp!" ] } ], "update_e_utility_types_by_pk": [ - 1024, + 1028, { "_set": [ - 1039 + 1043 ], "pk_columns": [ - 1037, + 1041, "e_utility_types_pk_columns_input!" ] } ], "update_e_utility_types_many": [ - 1034, + 1038, { "updates": [ - 1043, + 1047, "[e_utility_types_updates!]!" ] } ], "update_e_veto_pick_types": [ - 1054, + 1058, { "_set": [ - 1059 + 1063 ], "where": [ - 1047, + 1051, "e_veto_pick_types_bool_exp!" ] } ], "update_e_veto_pick_types_by_pk": [ - 1044, + 1048, { "_set": [ - 1059 + 1063 ], "pk_columns": [ - 1057, + 1061, "e_veto_pick_types_pk_columns_input!" ] } ], "update_e_veto_pick_types_many": [ - 1054, + 1058, { "updates": [ - 1063, + 1067, "[e_veto_pick_types_updates!]!" ] } ], "update_e_winning_reasons": [ - 1074, + 1078, { "_set": [ - 1079 + 1083 ], "where": [ - 1067, + 1071, "e_winning_reasons_bool_exp!" ] } ], "update_e_winning_reasons_by_pk": [ - 1064, + 1068, { "_set": [ - 1079 + 1083 ], "pk_columns": [ - 1077, + 1081, "e_winning_reasons_pk_columns_input!" ] } ], "update_e_winning_reasons_many": [ - 1074, + 1078, { "updates": [ - 1083, + 1087, "[e_winning_reasons_updates!]!" ] } ], "update_friends": [ - 1096, + 1100, { "_inc": [ - 1092 + 1096 ], "_set": [ - 1101 + 1105 ], "where": [ - 1090, + 1094, "friends_bool_exp!" ] } ], "update_friends_by_pk": [ - 1086, + 1090, { "_inc": [ - 1092 + 1096 ], "_set": [ - 1101 + 1105 ], "pk_columns": [ - 1099, + 1103, "friends_pk_columns_input!" ] } ], "update_friends_many": [ - 1096, + 1100, { "updates": [ - 1109, + 1113, "[friends_updates!]!" ] } ], "update_game_server_nodes": [ - 1136, + 1140, { "_append": [ - 1121 + 1125 ], "_delete_at_path": [ - 1127 + 1131 ], "_delete_elem": [ - 1128 + 1132 ], "_delete_key": [ - 1129 + 1133 ], "_inc": [ - 1130 + 1134 ], "_prepend": [ - 1141 + 1145 ], "_set": [ - 1145 + 1149 ], "where": [ - 1125, + 1129, "game_server_nodes_bool_exp!" ] } ], "update_game_server_nodes_by_pk": [ - 1113, + 1117, { "_append": [ - 1121 + 1125 ], "_delete_at_path": [ - 1127 + 1131 ], "_delete_elem": [ - 1128 + 1132 ], "_delete_key": [ - 1129 + 1133 ], "_inc": [ - 1130 + 1134 ], "_prepend": [ - 1141 + 1145 ], "_set": [ - 1145 + 1149 ], "pk_columns": [ - 1140, + 1144, "game_server_nodes_pk_columns_input!" ] } ], "update_game_server_nodes_many": [ - 1136, + 1140, { "updates": [ - 1157, + 1161, "[game_server_nodes_updates!]!" ] } ], "update_game_versions": [ - 1178, + 1182, { "_append": [ - 1167 + 1171 ], "_delete_at_path": [ - 1171 + 1175 ], "_delete_elem": [ - 1172 + 1176 ], "_delete_key": [ - 1173 + 1177 ], "_inc": [ - 1174 + 1178 ], "_prepend": [ - 1183 + 1187 ], "_set": [ - 1185 + 1189 ], "where": [ - 1169, + 1173, "game_versions_bool_exp!" ] } ], "update_game_versions_by_pk": [ - 1164, + 1168, { "_append": [ - 1167 + 1171 ], "_delete_at_path": [ - 1171 + 1175 ], "_delete_elem": [ - 1172 + 1176 ], "_delete_key": [ - 1173 + 1177 ], "_inc": [ - 1174 + 1178 ], "_prepend": [ - 1183 + 1187 ], "_set": [ - 1185 + 1189 ], "pk_columns": [ - 1182, + 1186, "game_versions_pk_columns_input!" ] } ], "update_game_versions_many": [ - 1178, + 1182, { "updates": [ - 1193, + 1197, "[game_versions_updates!]!" ] } ], "update_gamedata_signature_validations": [ - 1211, + 1215, { "_append": [ - 1200 + 1204 ], "_delete_at_path": [ - 1204 + 1208 ], "_delete_elem": [ - 1205 + 1209 ], "_delete_key": [ - 1206 + 1210 ], "_inc": [ - 1207 + 1211 ], "_prepend": [ - 1215 + 1219 ], "_set": [ - 1217 + 1221 ], "where": [ - 1202, + 1206, "gamedata_signature_validations_bool_exp!" ] } ], "update_gamedata_signature_validations_by_pk": [ - 1197, + 1201, { "_append": [ - 1200 + 1204 ], "_delete_at_path": [ - 1204 + 1208 ], "_delete_elem": [ - 1205 + 1209 ], "_delete_key": [ - 1206 + 1210 ], "_inc": [ - 1207 + 1211 ], "_prepend": [ - 1215 + 1219 ], "_set": [ - 1217 + 1221 ], "pk_columns": [ - 1214, + 1218, "gamedata_signature_validations_pk_columns_input!" ] } ], "update_gamedata_signature_validations_many": [ - 1211, + 1215, { "updates": [ - 1225, + 1229, "[gamedata_signature_validations_updates!]!" ] } ], "update_leaderboard_entries": [ - 1247, + 1251, { "_inc": [ - 1243 + 1247 ], "_set": [ - 1250 + 1254 ], "where": [ - 1242, + 1246, "leaderboard_entries_bool_exp!" ] } ], "update_leaderboard_entries_many": [ - 1247, + 1251, { "updates": [ - 1257, + 1261, "[leaderboard_entries_updates!]!" ] } ], "update_lobbies": [ - 1269, + 1273, { "_set": [ - 1275 + 1279 ], "where": [ - 1264, + 1268, "lobbies_bool_exp!" ] } ], "update_lobbies_by_pk": [ - 1261, + 1265, { "_set": [ - 1275 + 1279 ], "pk_columns": [ - 1273, + 1277, "lobbies_pk_columns_input!" ] } ], "update_lobbies_many": [ - 1269, + 1273, { "updates": [ - 1279, + 1283, "[lobbies_updates!]!" ] } ], "update_lobby_players": [ - 1299, + 1303, { "_inc": [ - 1293 + 1297 ], "_set": [ - 1306 + 1310 ], "where": [ - 1291, + 1295, "lobby_players_bool_exp!" ] } ], "update_lobby_players_by_pk": [ - 1280, + 1284, { "_inc": [ - 1293 + 1297 ], "_set": [ - 1306 + 1310 ], "pk_columns": [ - 1302, + 1306, "lobby_players_pk_columns_input!" ] } ], "update_lobby_players_many": [ - 1299, + 1303, { "updates": [ - 1318, + 1322, "[lobby_players_updates!]!" ] } ], "update_map_pools": [ - 1333, + 1337, { "_set": [ - 1339 + 1343 ], "where": [ - 1328, + 1332, "map_pools_bool_exp!" ] } ], "update_map_pools_by_pk": [ - 1325, + 1329, { "_set": [ - 1339 + 1343 ], "pk_columns": [ - 1337, + 1341, "map_pools_pk_columns_input!" ] } ], "update_map_pools_many": [ - 1333, + 1337, { "updates": [ - 1343, + 1347, "[map_pools_updates!]!" ] } ], "update_maps": [ - 1360, + 1364, { "_set": [ - 1368 + 1372 ], "where": [ - 1353, + 1357, "maps_bool_exp!" ] } ], "update_maps_by_pk": [ - 1344, + 1348, { "_set": [ - 1368 + 1372 ], "pk_columns": [ - 1364, + 1368, "maps_pk_columns_input!" ] } ], "update_maps_many": [ - 1360, + 1364, { "updates": [ - 1372, + 1376, "[maps_updates!]!" ] } ], "update_match_clips": [ - 1390, + 1394, { "_inc": [ - 1384 + 1388 ], "_set": [ - 1396 + 1400 ], "where": [ - 1382, + 1386, "match_clips_bool_exp!" ] } ], "update_match_clips_by_pk": [ - 1373, + 1377, { "_inc": [ - 1384 + 1388 ], "_set": [ - 1396 + 1400 ], "pk_columns": [ - 1394, + 1398, "match_clips_pk_columns_input!" ] } ], "update_match_clips_many": [ - 1390, + 1394, { "updates": [ - 1408, + 1412, "[match_clips_updates!]!" ] } ], "update_match_demo_sessions": [ - 1436, + 1440, { "_append": [ - 1421 + 1425 ], "_delete_at_path": [ - 1427 + 1431 ], "_delete_elem": [ - 1428 + 1432 ], "_delete_key": [ - 1429 + 1433 ], "_inc": [ - 1430 + 1434 ], "_prepend": [ - 1440 + 1444 ], "_set": [ - 1442 + 1446 ], "where": [ - 1425, + 1429, "match_demo_sessions_bool_exp!" ] } ], "update_match_demo_sessions_by_pk": [ - 1415, + 1419, { "_append": [ - 1421 + 1425 ], "_delete_at_path": [ - 1427 + 1431 ], "_delete_elem": [ - 1428 + 1432 ], "_delete_key": [ - 1429 + 1433 ], "_inc": [ - 1430 + 1434 ], "_prepend": [ - 1440 + 1444 ], "_set": [ - 1442 + 1446 ], "pk_columns": [ - 1439, + 1443, "match_demo_sessions_pk_columns_input!" ] } ], "update_match_demo_sessions_many": [ - 1436, + 1440, { "updates": [ - 1454, + 1458, "[match_demo_sessions_updates!]!" ] } ], "update_match_lineup_players": [ - 1480, + 1484, { "_inc": [ - 1474 + 1478 ], "_set": [ - 1487 + 1491 ], "where": [ - 1472, + 1476, "match_lineup_players_bool_exp!" ] } ], "update_match_lineup_players_by_pk": [ - 1461, + 1465, { "_inc": [ - 1474 + 1478 ], "_set": [ - 1487 + 1491 ], "pk_columns": [ - 1483, + 1487, "match_lineup_players_pk_columns_input!" ] } ], "update_match_lineup_players_many": [ - 1480, + 1484, { "updates": [ - 1499, + 1503, "[match_lineup_players_updates!]!" ] } ], "update_match_lineups": [ - 1523, + 1527, { "_inc": [ - 1517 + 1521 ], "_set": [ - 1529 + 1533 ], "where": [ - 1515, + 1519, "match_lineups_bool_exp!" ] } ], "update_match_lineups_by_pk": [ - 1506, + 1510, { "_inc": [ - 1517 + 1521 ], "_set": [ - 1529 + 1533 ], "pk_columns": [ - 1527, + 1531, "match_lineups_pk_columns_input!" ] } ], "update_match_lineups_many": [ - 1523, + 1527, { "updates": [ - 1541, + 1545, "[match_lineups_updates!]!" ] } ], "update_match_map_demos": [ - 1571, + 1575, { "_append": [ - 1556 + 1560 ], "_delete_at_path": [ - 1562 + 1566 ], "_delete_elem": [ - 1563 + 1567 ], "_delete_key": [ - 1564 + 1568 ], "_inc": [ - 1565 + 1569 ], "_prepend": [ - 1576 + 1580 ], "_set": [ - 1580 + 1584 ], "where": [ - 1560, + 1564, "match_map_demos_bool_exp!" ] } ], "update_match_map_demos_by_pk": [ - 1548, + 1552, { "_append": [ - 1556 + 1560 ], "_delete_at_path": [ - 1562 + 1566 ], "_delete_elem": [ - 1563 + 1567 ], "_delete_key": [ - 1564 + 1568 ], "_inc": [ - 1565 + 1569 ], "_prepend": [ - 1576 + 1580 ], "_set": [ - 1580 + 1584 ], "pk_columns": [ - 1575, + 1579, "match_map_demos_pk_columns_input!" ] } ], "update_match_map_demos_many": [ - 1571, + 1575, { "updates": [ - 1592, + 1596, "[match_map_demos_updates!]!" ] } ], "update_match_map_rounds": [ - 1616, + 1620, { "_inc": [ - 1610 + 1614 ], "_set": [ - 1621 + 1625 ], "where": [ - 1608, + 1612, "match_map_rounds_bool_exp!" ] } ], "update_match_map_rounds_by_pk": [ - 1599, + 1603, { "_inc": [ - 1610 + 1614 ], "_set": [ - 1621 + 1625 ], "pk_columns": [ - 1619, + 1623, "match_map_rounds_pk_columns_input!" ] } ], "update_match_map_rounds_many": [ - 1616, + 1620, { "updates": [ - 1633, + 1637, "[match_map_rounds_updates!]!" ] } ], "update_match_map_veto_picks": [ - 1654, + 1658, { "_set": [ - 1659 + 1663 ], "where": [ - 1647, + 1651, "match_map_veto_picks_bool_exp!" ] } ], "update_match_map_veto_picks_by_pk": [ - 1640, + 1644, { "_set": [ - 1659 + 1663 ], "pk_columns": [ - 1657, + 1661, "match_map_veto_picks_pk_columns_input!" ] } ], "update_match_map_veto_picks_many": [ - 1654, + 1658, { "updates": [ - 1663, + 1667, "[match_map_veto_picks_updates!]!" ] } ], "update_match_maps": [ - 1681, + 1685, { "_inc": [ - 1675 + 1679 ], "_set": [ - 1687 + 1691 ], "where": [ - 1673, + 1677, "match_maps_bool_exp!" ] } ], "update_match_maps_by_pk": [ - 1664, + 1668, { "_inc": [ - 1675 + 1679 ], "_set": [ - 1687 + 1691 ], "pk_columns": [ - 1685, + 1689, "match_maps_pk_columns_input!" ] } ], "update_match_maps_many": [ - 1681, + 1685, { "updates": [ - 1699, + 1703, "[match_maps_updates!]!" ] } ], "update_match_options": [ - 1716, + 1720, { "_inc": [ - 1712 + 1716 ], "_set": [ - 1722 + 1726 ], "where": [ - 1710, + 1714, "match_options_bool_exp!" ] } ], "update_match_options_by_pk": [ - 1706, + 1710, { "_inc": [ - 1712 + 1716 ], "_set": [ - 1722 + 1726 ], "pk_columns": [ - 1720, + 1724, "match_options_pk_columns_input!" ] } ], "update_match_options_many": [ - 1716, + 1720, { "updates": [ - 1730, + 1734, "[match_options_updates!]!" ] } ], "update_match_region_veto_picks": [ - 1748, + 1752, { "_set": [ - 1753 + 1757 ], "where": [ - 1741, + 1745, "match_region_veto_picks_bool_exp!" ] } ], "update_match_region_veto_picks_by_pk": [ - 1734, + 1738, { "_set": [ - 1753 + 1757 ], "pk_columns": [ - 1751, + 1755, "match_region_veto_picks_pk_columns_input!" ] } ], "update_match_region_veto_picks_many": [ - 1748, + 1752, { "updates": [ - 1757, + 1761, "[match_region_veto_picks_updates!]!" ] } ], "update_match_streams": [ - 1781, + 1785, { "_append": [ - 1766 + 1770 ], "_delete_at_path": [ - 1772 + 1776 ], "_delete_elem": [ - 1773 + 1777 ], "_delete_key": [ - 1774 + 1778 ], "_inc": [ - 1775 + 1779 ], "_prepend": [ - 1785 + 1789 ], "_set": [ - 1789 + 1793 ], "where": [ - 1770, + 1774, "match_streams_bool_exp!" ] } ], "update_match_streams_by_pk": [ - 1758, + 1762, { "_append": [ - 1766 + 1770 ], "_delete_at_path": [ - 1772 + 1776 ], "_delete_elem": [ - 1773 + 1777 ], "_delete_key": [ - 1774 + 1778 ], "_inc": [ - 1775 + 1779 ], "_prepend": [ - 1785 + 1789 ], "_set": [ - 1789 + 1793 ], "pk_columns": [ - 1784, + 1788, "match_streams_pk_columns_input!" ] } ], "update_match_streams_many": [ - 1781, + 1785, { "updates": [ - 1801, + 1805, "[match_streams_updates!]!" ] } ], "update_match_type_cfgs": [ - 1816, + 1820, { "_set": [ - 1821 + 1825 ], "where": [ - 1811, + 1815, "match_type_cfgs_bool_exp!" ] } ], "update_match_type_cfgs_by_pk": [ - 1808, + 1812, { "_set": [ - 1821 + 1825 ], "pk_columns": [ - 1819, + 1823, "match_type_cfgs_pk_columns_input!" ] } ], "update_match_type_cfgs_many": [ - 1816, + 1820, { "updates": [ - 1825, + 1829, "[match_type_cfgs_updates!]!" ] } ], "update_matches": [ - 1843, + 1847, { "_inc": [ - 1837 + 1841 ], "_set": [ - 1849 + 1853 ], "where": [ - 1835, + 1839, "matches_bool_exp!" ] } ], "update_matches_by_pk": [ - 1826, + 1830, { "_inc": [ - 1837 + 1841 ], "_set": [ - 1849 + 1853 ], "pk_columns": [ - 1847, + 1851, "matches_pk_columns_input!" ] } ], "update_matches_many": [ - 1843, + 1847, { "updates": [ - 1861, + 1865, "[matches_updates!]!" ] } ], "update_migration_hashes_hashes": [ - 1876, + 1880, { "_set": [ - 1881 + 1885 ], "where": [ - 1871, + 1875, "migration_hashes_hashes_bool_exp!" ] } ], "update_migration_hashes_hashes_by_pk": [ - 1868, + 1872, { "_set": [ - 1881 + 1885 ], "pk_columns": [ - 1879, + 1883, "migration_hashes_hashes_pk_columns_input!" ] } ], "update_migration_hashes_hashes_many": [ - 1876, + 1880, { "updates": [ - 1885, + 1889, "[migration_hashes_hashes_updates!]!" ] } ], "update_my_friends": [ - 1908, + 1912, { "_append": [ - 1894 + 1898 ], "_delete_at_path": [ - 1899 + 1903 ], "_delete_elem": [ - 1900 + 1904 ], "_delete_key": [ - 1901 + 1905 ], "_inc": [ - 1902 + 1906 ], "_prepend": [ - 1910 + 1914 ], "_set": [ - 1914 + 1918 ], "where": [ - 1898, + 1902, "my_friends_bool_exp!" ] } ], "update_my_friends_many": [ - 1908, + 1912, { "updates": [ - 1925, + 1929, "[my_friends_updates!]!" ] } ], "update_news_articles": [ - 1942, + 1946, { "_inc": [ - 1938 + 1942 ], "_set": [ - 1947 + 1951 ], "where": [ - 1936, + 1940, "news_articles_bool_exp!" ] } ], "update_news_articles_by_pk": [ - 1932, + 1936, { "_inc": [ - 1938 + 1942 ], "_set": [ - 1947 + 1951 ], "pk_columns": [ - 1945, + 1949, "news_articles_pk_columns_input!" ] } ], "update_news_articles_many": [ - 1942, + 1946, { "updates": [ - 1955, + 1959, "[news_articles_updates!]!" ] } ], "update_notifications": [ - 1982, + 1986, { "_append": [ - 1967 + 1971 ], "_delete_at_path": [ - 1973 + 1977 ], "_delete_elem": [ - 1974 + 1978 ], "_delete_key": [ - 1975 + 1979 ], "_inc": [ - 1976 + 1980 ], "_prepend": [ - 1986 + 1990 ], "_set": [ - 1990 + 1994 ], "where": [ - 1971, + 1975, "notifications_bool_exp!" ] } ], "update_notifications_by_pk": [ - 1959, + 1963, { "_append": [ - 1967 + 1971 ], "_delete_at_path": [ - 1973 + 1977 ], "_delete_elem": [ - 1974 + 1978 ], "_delete_key": [ - 1975 + 1979 ], "_inc": [ - 1976 + 1980 ], "_prepend": [ - 1986 + 1990 ], "_set": [ - 1990 + 1994 ], "pk_columns": [ - 1985, + 1989, "notifications_pk_columns_input!" ] } ], "update_notifications_many": [ - 1982, + 1986, { "updates": [ - 2002, + 2006, "[notifications_updates!]!" ] } ], "update_pending_match_import_players": [ - 2029, + 2033, { "_inc": [ - 2023 + 2027 ], "_set": [ - 2034 + 2038 ], "where": [ - 2021, + 2025, "pending_match_import_players_bool_exp!" ] } ], "update_pending_match_import_players_by_pk": [ - 2012, + 2016, { "_inc": [ - 2023 + 2027 ], "_set": [ - 2034 + 2038 ], "pk_columns": [ - 2032, + 2036, "pending_match_import_players_pk_columns_input!" ] } ], "update_pending_match_import_players_many": [ - 2029, + 2033, { "updates": [ - 2046, + 2050, "[pending_match_import_players_updates!]!" ] } ], "update_pending_match_imports": [ - 2063, + 2067, { "_inc": [ - 2059 + 2063 ], "_set": [ - 2069 + 2073 ], "where": [ - 2057, + 2061, "pending_match_imports_bool_exp!" ] } ], "update_pending_match_imports_by_pk": [ - 2053, + 2057, { "_inc": [ - 2059 + 2063 ], "_set": [ - 2069 + 2073 ], "pk_columns": [ - 2067, + 2071, "pending_match_imports_pk_columns_input!" ] } ], "update_pending_match_imports_many": [ - 2063, + 2067, { "updates": [ - 2077, + 2081, "[pending_match_imports_updates!]!" ] } ], "update_player_aim_stats_demo": [ - 2091, + 2095, { "_inc": [ - 2087 + 2091 ], "_set": [ - 2096 + 2100 ], "where": [ - 2085, + 2089, "player_aim_stats_demo_bool_exp!" ] } ], "update_player_aim_stats_demo_by_pk": [ - 2081, + 2085, { "_inc": [ - 2087 + 2091 ], "_set": [ - 2096 + 2100 ], "pk_columns": [ - 2094, + 2098, "player_aim_stats_demo_pk_columns_input!" ] } ], "update_player_aim_stats_demo_many": [ - 2091, + 2095, { "updates": [ - 2104, + 2108, "[player_aim_stats_demo_updates!]!" ] } ], "update_player_aim_weapon_stats": [ - 2125, + 2129, { "_inc": [ - 2119 + 2123 ], "_set": [ - 2130 + 2134 ], "where": [ - 2117, + 2121, "player_aim_weapon_stats_bool_exp!" ] } ], "update_player_aim_weapon_stats_by_pk": [ - 2108, + 2112, { "_inc": [ - 2119 + 2123 ], "_set": [ - 2130 + 2134 ], "pk_columns": [ - 2128, + 2132, "player_aim_weapon_stats_pk_columns_input!" ] } ], "update_player_aim_weapon_stats_many": [ - 2125, + 2129, { "updates": [ - 2142, + 2146, "[player_aim_weapon_stats_updates!]!" ] } ], "update_player_assists": [ - 2168, + 2172, { "_inc": [ - 2162 + 2166 ], "_set": [ - 2175 + 2179 ], "where": [ - 2160, + 2164, "player_assists_bool_exp!" ] } ], "update_player_assists_by_pk": [ - 2149, + 2153, { "_inc": [ - 2162 + 2166 ], "_set": [ - 2175 + 2179 ], "pk_columns": [ - 2171, + 2175, "player_assists_pk_columns_input!" ] } ], "update_player_assists_many": [ - 2168, + 2172, { "updates": [ - 2187, + 2191, "[player_assists_updates!]!" ] } ], "update_player_damages": [ - 2229, + 2233, { "_inc": [ - 2223 + 2227 ], "_set": [ - 2234 + 2238 ], "where": [ - 2221, + 2225, "player_damages_bool_exp!" ] } ], "update_player_damages_by_pk": [ - 2212, + 2216, { "_inc": [ - 2223 + 2227 ], "_set": [ - 2234 + 2238 ], "pk_columns": [ - 2232, + 2236, "player_damages_pk_columns_input!" ] } ], "update_player_damages_many": [ - 2229, + 2233, { "updates": [ - 2246, + 2250, "[player_damages_updates!]!" ] } ], "update_player_elo": [ - 2263, + 2267, { "_inc": [ - 2259 + 2263 ], "_set": [ - 2268 + 2272 ], "where": [ - 2257, + 2261, "player_elo_bool_exp!" ] } ], "update_player_elo_by_pk": [ - 2253, + 2257, { "_inc": [ - 2259 + 2263 ], "_set": [ - 2268 + 2272 ], "pk_columns": [ - 2266, + 2270, "player_elo_pk_columns_input!" ] } ], "update_player_elo_many": [ - 2263, + 2267, { "updates": [ - 2276, + 2280, "[player_elo_updates!]!" ] } ], "update_player_faceit_rank_history": [ - 2297, + 2301, { "_inc": [ - 2291 + 2295 ], "_set": [ - 2302 + 2306 ], "where": [ - 2289, + 2293, "player_faceit_rank_history_bool_exp!" ] } ], "update_player_faceit_rank_history_by_pk": [ - 2280, + 2284, { "_inc": [ - 2291 + 2295 ], "_set": [ - 2302 + 2306 ], "pk_columns": [ - 2300, + 2304, "player_faceit_rank_history_pk_columns_input!" ] } ], "update_player_faceit_rank_history_many": [ - 2297, + 2301, { "updates": [ - 2314, + 2318, "[player_faceit_rank_history_updates!]!" ] } ], "update_player_flashes": [ - 2340, + 2344, { "_inc": [ - 2334 + 2338 ], "_set": [ - 2347 + 2351 ], "where": [ - 2332, + 2336, "player_flashes_bool_exp!" ] } ], "update_player_flashes_by_pk": [ - 2321, + 2325, { "_inc": [ - 2334 + 2338 ], "_set": [ - 2347 + 2351 ], "pk_columns": [ - 2343, + 2347, "player_flashes_pk_columns_input!" ] } ], "update_player_flashes_many": [ - 2340, + 2344, { "updates": [ - 2359, + 2363, "[player_flashes_updates!]!" ] } ], "update_player_kills": [ - 2426, + 2430, { "_inc": [ - 2420 + 2424 ], "_set": [ - 2433 + 2437 ], "where": [ - 2377, + 2381, "player_kills_bool_exp!" ] } ], "update_player_kills_by_pk": [ - 2366, + 2370, { "_inc": [ - 2420 + 2424 ], "_set": [ - 2433 + 2437 ], "pk_columns": [ - 2429, + 2433, "player_kills_pk_columns_input!" ] } ], "update_player_kills_by_weapon": [ - 2395, + 2399, { "_inc": [ - 2389 + 2393 ], "_set": [ - 2400 + 2404 ], "where": [ - 2387, + 2391, "player_kills_by_weapon_bool_exp!" ] } ], "update_player_kills_by_weapon_by_pk": [ - 2378, + 2382, { "_inc": [ - 2389 + 2393 ], "_set": [ - 2400 + 2404 ], "pk_columns": [ - 2398, + 2402, "player_kills_by_weapon_pk_columns_input!" ] } ], "update_player_kills_by_weapon_many": [ - 2395, + 2399, { "updates": [ - 2412, + 2416, "[player_kills_by_weapon_updates!]!" ] } ], "update_player_kills_many": [ - 2426, + 2430, { "updates": [ - 2445, + 2449, "[player_kills_updates!]!" ] } ], "update_player_leaderboard_rank": [ - 2461, + 2465, { "_inc": [ - 2457 + 2461 ], "_set": [ - 2464 + 2468 ], "where": [ - 2456, + 2460, "player_leaderboard_rank_bool_exp!" ] } ], "update_player_leaderboard_rank_many": [ - 2461, + 2465, { "updates": [ - 2471, + 2475, "[player_leaderboard_rank_updates!]!" ] } ], "update_player_match_map_stats": [ - 2492, + 2496, { "_inc": [ - 2486 + 2490 ], "_set": [ - 2497 + 2501 ], "where": [ - 2484, + 2488, "player_match_map_stats_bool_exp!" ] } ], "update_player_match_map_stats_by_pk": [ - 2475, + 2479, { "_inc": [ - 2486 + 2490 ], "_set": [ - 2497 + 2501 ], "pk_columns": [ - 2495, + 2499, "player_match_map_stats_pk_columns_input!" ] } ], "update_player_match_map_stats_many": [ - 2492, + 2496, { "updates": [ - 2509, + 2513, "[player_match_map_stats_updates!]!" ] } ], "update_player_objectives": [ - 2584, + 2588, { "_inc": [ - 2578 + 2582 ], "_set": [ - 2589 + 2593 ], "where": [ - 2576, + 2580, "player_objectives_bool_exp!" ] } ], "update_player_objectives_by_pk": [ - 2567, + 2571, { "_inc": [ - 2578 + 2582 ], "_set": [ - 2589 + 2593 ], "pk_columns": [ - 2587, + 2591, "player_objectives_pk_columns_input!" ] } ], "update_player_objectives_many": [ - 2584, + 2588, { "updates": [ - 2601, + 2605, "[player_objectives_updates!]!" ] } ], "update_player_premier_rank_history": [ - 2643, + 2647, { "_inc": [ - 2637 + 2641 ], "_set": [ - 2648 + 2652 ], "where": [ - 2635, + 2639, "player_premier_rank_history_bool_exp!" ] } ], "update_player_premier_rank_history_by_pk": [ - 2626, + 2630, { "_inc": [ - 2637 + 2641 ], "_set": [ - 2648 + 2652 ], "pk_columns": [ - 2646, + 2650, "player_premier_rank_history_pk_columns_input!" ] } ], "update_player_premier_rank_history_many": [ - 2643, + 2647, { "updates": [ - 2660, + 2664, "[player_premier_rank_history_updates!]!" ] } ], "update_player_sanctions": [ - 2684, + 2688, { "_inc": [ - 2678 + 2682 ], "_set": [ - 2689 + 2693 ], "where": [ - 2676, + 2680, "player_sanctions_bool_exp!" ] } ], "update_player_sanctions_by_pk": [ - 2667, + 2671, { "_inc": [ - 2678 + 2682 ], "_set": [ - 2689 + 2693 ], "pk_columns": [ - 2687, + 2691, "player_sanctions_pk_columns_input!" ] } ], "update_player_sanctions_many": [ - 2684, + 2688, { "updates": [ - 2701, + 2705, "[player_sanctions_updates!]!" ] } ], "update_player_stats": [ - 2718, + 2722, { "_inc": [ - 2714 + 2718 ], "_set": [ - 2724 + 2728 ], "where": [ - 2712, + 2716, "player_stats_bool_exp!" ] } ], "update_player_stats_by_pk": [ - 2708, + 2712, { "_inc": [ - 2714 + 2718 ], "_set": [ - 2724 + 2728 ], "pk_columns": [ - 2722, + 2726, "player_stats_pk_columns_input!" ] } ], "update_player_stats_many": [ - 2718, + 2722, { "updates": [ - 2732, + 2736, "[player_stats_updates!]!" ] } ], + "update_player_steam_bot_friend": [ + 2754, + { + "_append": [ + 2743 + ], + "_delete_at_path": [ + 2747 + ], + "_delete_elem": [ + 2748 + ], + "_delete_key": [ + 2749 + ], + "_inc": [ + 2750 + ], + "_prepend": [ + 2758 + ], + "_set": [ + 2760 + ], + "where": [ + 2745, + "player_steam_bot_friend_bool_exp!" + ] + } + ], + "update_player_steam_bot_friend_by_pk": [ + 2740, + { + "_append": [ + 2743 + ], + "_delete_at_path": [ + 2747 + ], + "_delete_elem": [ + 2748 + ], + "_delete_key": [ + 2749 + ], + "_inc": [ + 2750 + ], + "_prepend": [ + 2758 + ], + "_set": [ + 2760 + ], + "pk_columns": [ + 2757, + "player_steam_bot_friend_pk_columns_input!" + ] + } + ], + "update_player_steam_bot_friend_many": [ + 2754, + { + "updates": [ + 2768, + "[player_steam_bot_friend_updates!]!" + ] + } + ], "update_player_steam_match_auth": [ - 2746, + 2782, { "_inc": [ - 2742 + 2778 ], "_set": [ - 2751 + 2787 ], "where": [ - 2740, + 2776, "player_steam_match_auth_bool_exp!" ] } ], "update_player_steam_match_auth_by_pk": [ - 2736, + 2772, { "_inc": [ - 2742 + 2778 ], "_set": [ - 2751 + 2787 ], "pk_columns": [ - 2749, + 2785, "player_steam_match_auth_pk_columns_input!" ] } ], "update_player_steam_match_auth_many": [ - 2746, + 2782, { "updates": [ - 2759, + 2795, "[player_steam_match_auth_updates!]!" ] } ], "update_player_unused_utility": [ - 2780, + 2816, { "_inc": [ - 2774 + 2810 ], "_set": [ - 2785 + 2821 ], "where": [ - 2772, + 2808, "player_unused_utility_bool_exp!" ] } ], "update_player_unused_utility_by_pk": [ - 2763, + 2799, { "_inc": [ - 2774 + 2810 ], "_set": [ - 2785 + 2821 ], "pk_columns": [ - 2783, + 2819, "player_unused_utility_pk_columns_input!" ] } ], "update_player_unused_utility_many": [ - 2780, + 2816, { "updates": [ - 2797, + 2833, "[player_unused_utility_updates!]!" ] } ], "update_player_utility": [ - 2821, + 2857, { "_inc": [ - 2815 + 2851 ], "_set": [ - 2826 + 2862 ], "where": [ - 2813, + 2849, "player_utility_bool_exp!" ] } ], "update_player_utility_by_pk": [ - 2804, + 2840, { "_inc": [ - 2815 + 2851 ], "_set": [ - 2826 + 2862 ], "pk_columns": [ - 2824, + 2860, "player_utility_pk_columns_input!" ] } ], "update_player_utility_many": [ - 2821, + 2857, { "updates": [ - 2838, + 2874, "[player_utility_updates!]!" ] } ], "update_players": [ - 2888, + 2924, { "_inc": [ - 2884 + 2920 ], "_set": [ - 2894 + 2930 ], "where": [ - 2882, + 2918, "players_bool_exp!" ] } ], "update_players_by_pk": [ - 2878, + 2914, { "_inc": [ - 2884 + 2920 ], "_set": [ - 2894 + 2930 ], "pk_columns": [ - 2892, + 2928, "players_pk_columns_input!" ] } ], "update_players_many": [ - 2888, + 2924, { "updates": [ - 2902, + 2938, "[players_updates!]!" ] } ], "update_plugin_versions": [ - 2916, + 2952, { "_inc": [ - 2912 + 2948 ], "_set": [ - 2921 + 2957 ], "where": [ - 2910, + 2946, "plugin_versions_bool_exp!" ] } ], "update_plugin_versions_by_pk": [ - 2906, + 2942, { "_inc": [ - 2912 + 2948 ], "_set": [ - 2921 + 2957 ], "pk_columns": [ - 2919, + 2955, "plugin_versions_pk_columns_input!" ] } ], "update_plugin_versions_many": [ - 2916, + 2952, { "updates": [ - 2929, + 2965, "[plugin_versions_updates!]!" ] } ], "update_server_regions": [ - 2943, + 2979, { "_set": [ - 2949 + 2985 ], "where": [ - 2938, + 2974, "server_regions_bool_exp!" ] } ], "update_server_regions_by_pk": [ - 2934, + 2970, { "_set": [ - 2949 + 2985 ], "pk_columns": [ - 2947, + 2983, "server_regions_pk_columns_input!" ] } ], "update_server_regions_many": [ - 2943, + 2979, { "updates": [ - 2957, + 2993, "[server_regions_updates!]!" ] } ], "update_servers": [ - 2980, + 3016, { "_inc": [ - 2974 + 3010 ], "_set": [ - 2988 + 3024 ], "where": [ - 2972, + 3008, "servers_bool_exp!" ] } ], "update_servers_by_pk": [ - 2961, + 2997, { "_inc": [ - 2974 + 3010 ], "_set": [ - 2988 + 3024 ], "pk_columns": [ - 2984, + 3020, "servers_pk_columns_input!" ] } ], "update_servers_many": [ - 2980, + 3016, { "updates": [ - 3000, + 3036, "[servers_updates!]!" ] } ], "update_settings": [ - 3015, + 3051, { "_set": [ - 3020 + 3056 ], "where": [ - 3010, + 3046, "settings_bool_exp!" ] } ], "update_settings_by_pk": [ - 3007, + 3043, { "_set": [ - 3020 + 3056 ], "pk_columns": [ - 3018, + 3054, "settings_pk_columns_input!" ] } ], "update_settings_many": [ - 3015, + 3051, { "updates": [ - 3024, + 3060, "[settings_updates!]!" ] } ], "update_steam_account_claims": [ - 3039, + 3075, { "_set": [ - 3044 + 3080 ], "where": [ - 3032, + 3068, "steam_account_claims_bool_exp!" ] } ], "update_steam_account_claims_by_pk": [ - 3025, + 3061, { "_set": [ - 3044 + 3080 ], "pk_columns": [ - 3042, + 3078, "steam_account_claims_pk_columns_input!" ] } ], "update_steam_account_claims_many": [ - 3039, + 3075, { "updates": [ - 3048, + 3084, "[steam_account_claims_updates!]!" ] } ], "update_steam_accounts": [ - 3057, + 3095, { + "_inc": [ + 3091 + ], "_set": [ - 3063 + 3101 ], "where": [ - 3052, + 3089, "steam_accounts_bool_exp!" ] } ], "update_steam_accounts_by_pk": [ - 3049, + 3085, { + "_inc": [ + 3091 + ], "_set": [ - 3063 + 3101 ], "pk_columns": [ - 3061, + 3099, "steam_accounts_pk_columns_input!" ] } ], "update_steam_accounts_many": [ - 3057, + 3095, { "updates": [ - 3067, + 3109, "[steam_accounts_updates!]!" ] } ], "update_system_alerts": [ - 3078, + 3123, { "_inc": [ - 3074 + 3119 ], "_set": [ - 3083 + 3128 ], "where": [ - 3072, + 3117, "system_alerts_bool_exp!" ] } ], "update_system_alerts_by_pk": [ - 3068, + 3113, { "_inc": [ - 3074 + 3119 ], "_set": [ - 3083 + 3128 ], "pk_columns": [ - 3081, + 3126, "system_alerts_pk_columns_input!" ] } ], "update_system_alerts_many": [ - 3078, + 3123, { "updates": [ - 3091, + 3136, "[system_alerts_updates!]!" ] } ], "update_team_invites": [ - 3112, + 3157, { "_inc": [ - 3106 + 3151 ], "_set": [ - 3117 + 3162 ], "where": [ - 3104, + 3149, "team_invites_bool_exp!" ] } ], "update_team_invites_by_pk": [ - 3095, + 3140, { "_inc": [ - 3106 + 3151 ], "_set": [ - 3117 + 3162 ], "pk_columns": [ - 3115, + 3160, "team_invites_pk_columns_input!" ] } ], "update_team_invites_many": [ - 3112, + 3157, { "updates": [ - 3129, + 3174, "[team_invites_updates!]!" ] } ], "update_team_roster": [ - 3155, + 3200, { "_inc": [ - 3149 + 3194 ], "_set": [ - 3162 + 3207 ], "where": [ - 3147, + 3192, "team_roster_bool_exp!" ] } ], "update_team_roster_by_pk": [ - 3136, + 3181, { "_inc": [ - 3149 + 3194 ], "_set": [ - 3162 + 3207 ], "pk_columns": [ - 3158, + 3203, "team_roster_pk_columns_input!" ] } ], "update_team_roster_many": [ - 3155, + 3200, { "updates": [ - 3174, + 3219, "[team_roster_updates!]!" ] } ], "update_team_scrim_alerts": [ - 3191, + 3236, { "_inc": [ - 3187 + 3232 ], "_set": [ - 3196 + 3241 ], "where": [ - 3185, + 3230, "team_scrim_alerts_bool_exp!" ] } ], "update_team_scrim_alerts_by_pk": [ - 3181, + 3226, { "_inc": [ - 3187 + 3232 ], "_set": [ - 3196 + 3241 ], "pk_columns": [ - 3194, + 3239, "team_scrim_alerts_pk_columns_input!" ] } ], "update_team_scrim_alerts_many": [ - 3191, + 3236, { "updates": [ - 3204, + 3249, "[team_scrim_alerts_updates!]!" ] } ], "update_team_scrim_availability": [ - 3224, + 3269, { "_set": [ - 3231 + 3276 ], "where": [ - 3217, + 3262, "team_scrim_availability_bool_exp!" ] } ], "update_team_scrim_availability_by_pk": [ - 3208, + 3253, { "_set": [ - 3231 + 3276 ], "pk_columns": [ - 3227, + 3272, "team_scrim_availability_pk_columns_input!" ] } ], "update_team_scrim_availability_many": [ - 3224, + 3269, { "updates": [ - 3235, + 3280, "[team_scrim_availability_updates!]!" ] } ], "update_team_scrim_request_proposals": [ - 3253, + 3298, { "_inc": [ - 3247 + 3292 ], "_set": [ - 3258 + 3303 ], "where": [ - 3245, + 3290, "team_scrim_request_proposals_bool_exp!" ] } ], "update_team_scrim_request_proposals_by_pk": [ - 3236, + 3281, { "_inc": [ - 3247 + 3292 ], "_set": [ - 3258 + 3303 ], "pk_columns": [ - 3256, + 3301, "team_scrim_request_proposals_pk_columns_input!" ] } ], "update_team_scrim_request_proposals_many": [ - 3253, + 3298, { "updates": [ - 3270, + 3315, "[team_scrim_request_proposals_updates!]!" ] } ], "update_team_scrim_requests": [ - 3296, + 3341, { "_inc": [ - 3290 + 3335 ], "_set": [ - 3304 + 3349 ], "where": [ - 3288, + 3333, "team_scrim_requests_bool_exp!" ] } ], "update_team_scrim_requests_by_pk": [ - 3277, + 3322, { "_inc": [ - 3290 + 3335 ], "_set": [ - 3304 + 3349 ], "pk_columns": [ - 3300, + 3345, "team_scrim_requests_pk_columns_input!" ] } ], "update_team_scrim_requests_many": [ - 3296, + 3341, { "updates": [ - 3316, + 3361, "[team_scrim_requests_updates!]!" ] } ], "update_team_scrim_settings": [ - 3333, + 3378, { "_inc": [ - 3329 + 3374 ], "_set": [ - 3339 + 3384 ], "where": [ - 3327, + 3372, "team_scrim_settings_bool_exp!" ] } ], "update_team_scrim_settings_by_pk": [ - 3323, + 3368, { "_inc": [ - 3329 + 3374 ], "_set": [ - 3339 + 3384 ], "pk_columns": [ - 3337, + 3382, "team_scrim_settings_pk_columns_input!" ] } ], "update_team_scrim_settings_many": [ - 3333, + 3378, { "updates": [ - 3347, + 3392, "[team_scrim_settings_updates!]!" ] } ], "update_team_suggestions": [ - 3361, + 3406, { "_inc": [ - 3357 + 3402 ], "_set": [ - 3366 + 3411 ], "where": [ - 3355, + 3400, "team_suggestions_bool_exp!" ] } ], "update_team_suggestions_by_pk": [ - 3351, + 3396, { "_inc": [ - 3357 + 3402 ], "_set": [ - 3366 + 3411 ], "pk_columns": [ - 3364, + 3409, "team_suggestions_pk_columns_input!" ] } ], "update_team_suggestions_many": [ - 3361, + 3406, { "updates": [ - 3374, + 3419, "[team_suggestions_updates!]!" ] } ], "update_teams": [ - 3395, + 3440, { "_inc": [ - 3389 + 3434 ], "_set": [ - 3401 + 3446 ], "where": [ - 3387, + 3432, "teams_bool_exp!" ] } ], "update_teams_by_pk": [ - 3378, + 3423, { "_inc": [ - 3389 + 3434 ], "_set": [ - 3401 + 3446 ], "pk_columns": [ - 3399, + 3444, "teams_pk_columns_input!" ] } ], "update_teams_many": [ - 3395, + 3440, { "updates": [ - 3413, + 3458, "[teams_updates!]!" ] } ], "update_tournament_brackets": [ - 3442, + 3487, { "_inc": [ - 3436 + 3481 ], "_set": [ - 3450 + 3495 ], "where": [ - 3434, + 3479, "tournament_brackets_bool_exp!" ] } ], "update_tournament_brackets_by_pk": [ - 3423, + 3468, { "_inc": [ - 3436 + 3481 ], "_set": [ - 3450 + 3495 ], "pk_columns": [ - 3446, + 3491, "tournament_brackets_pk_columns_input!" ] } ], "update_tournament_brackets_many": [ - 3442, + 3487, { "updates": [ - 3462, + 3507, "[tournament_brackets_updates!]!" ] } ], "update_tournament_organizers": [ - 3486, + 3531, { "_inc": [ - 3480 + 3525 ], "_set": [ - 3491 + 3536 ], "where": [ - 3478, + 3523, "tournament_organizers_bool_exp!" ] } ], "update_tournament_organizers_by_pk": [ - 3469, + 3514, { "_inc": [ - 3480 + 3525 ], "_set": [ - 3491 + 3536 ], "pk_columns": [ - 3489, + 3534, "tournament_organizers_pk_columns_input!" ] } ], "update_tournament_organizers_many": [ - 3486, + 3531, { "updates": [ - 3503, + 3548, "[tournament_organizers_updates!]!" ] } ], "update_tournament_stages": [ - 3533, + 3578, { "_append": [ - 3518 + 3563 ], "_delete_at_path": [ - 3524 + 3569 ], "_delete_elem": [ - 3525 + 3570 ], "_delete_key": [ - 3526 + 3571 ], "_inc": [ - 3527 + 3572 ], "_prepend": [ - 3538 + 3583 ], "_set": [ - 3542 + 3587 ], "where": [ - 3522, + 3567, "tournament_stages_bool_exp!" ] } ], "update_tournament_stages_by_pk": [ - 3510, + 3555, { "_append": [ - 3518 + 3563 ], "_delete_at_path": [ - 3524 + 3569 ], "_delete_elem": [ - 3525 + 3570 ], "_delete_key": [ - 3526 + 3571 ], "_inc": [ - 3527 + 3572 ], "_prepend": [ - 3538 + 3583 ], "_set": [ - 3542 + 3587 ], "pk_columns": [ - 3537, + 3582, "tournament_stages_pk_columns_input!" ] } ], "update_tournament_stages_many": [ - 3533, + 3578, { "updates": [ - 3554, + 3599, "[tournament_stages_updates!]!" ] } ], "update_tournament_team_invites": [ - 3578, + 3623, { "_inc": [ - 3572 + 3617 ], "_set": [ - 3583 + 3628 ], "where": [ - 3570, + 3615, "tournament_team_invites_bool_exp!" ] } ], "update_tournament_team_invites_by_pk": [ - 3561, + 3606, { "_inc": [ - 3572 + 3617 ], "_set": [ - 3583 + 3628 ], "pk_columns": [ - 3581, + 3626, "tournament_team_invites_pk_columns_input!" ] } ], "update_tournament_team_invites_many": [ - 3578, + 3623, { "updates": [ - 3595, + 3640, "[tournament_team_invites_updates!]!" ] } ], "update_tournament_team_roster": [ - 3619, + 3664, { "_inc": [ - 3613 + 3658 ], "_set": [ - 3624 + 3669 ], "where": [ - 3611, + 3656, "tournament_team_roster_bool_exp!" ] } ], "update_tournament_team_roster_by_pk": [ - 3602, + 3647, { "_inc": [ - 3613 + 3658 ], "_set": [ - 3624 + 3669 ], "pk_columns": [ - 3622, + 3667, "tournament_team_roster_pk_columns_input!" ] } ], "update_tournament_team_roster_many": [ - 3619, + 3664, { "updates": [ - 3636, + 3681, "[tournament_team_roster_updates!]!" ] } ], "update_tournament_teams": [ - 3660, + 3705, { "_inc": [ - 3654 + 3699 ], "_set": [ - 3666 + 3711 ], "where": [ - 3652, + 3697, "tournament_teams_bool_exp!" ] } ], "update_tournament_teams_by_pk": [ - 3643, + 3688, { "_inc": [ - 3654 + 3699 ], "_set": [ - 3666 + 3711 ], "pk_columns": [ - 3664, + 3709, "tournament_teams_pk_columns_input!" ] } ], "update_tournament_teams_many": [ - 3660, + 3705, { "updates": [ - 3678, + 3723, "[tournament_teams_updates!]!" ] } ], "update_tournament_trophies": [ - 3704, + 3749, { "_inc": [ - 3698 + 3743 ], "_set": [ - 3711 + 3756 ], "where": [ - 3696, + 3741, "tournament_trophies_bool_exp!" ] } ], "update_tournament_trophies_by_pk": [ - 3685, + 3730, { "_inc": [ - 3698 + 3743 ], "_set": [ - 3711 + 3756 ], "pk_columns": [ - 3707, + 3752, "tournament_trophies_pk_columns_input!" ] } ], "update_tournament_trophies_many": [ - 3704, + 3749, { "updates": [ - 3723, + 3768, "[tournament_trophies_updates!]!" ] } ], "update_tournament_trophy_configs": [ - 3747, + 3792, { "_inc": [ - 3741 + 3786 ], "_set": [ - 3753 + 3798 ], "where": [ - 3739, + 3784, "tournament_trophy_configs_bool_exp!" ] } ], "update_tournament_trophy_configs_by_pk": [ - 3730, + 3775, { "_inc": [ - 3741 + 3786 ], "_set": [ - 3753 + 3798 ], "pk_columns": [ - 3751, + 3796, "tournament_trophy_configs_pk_columns_input!" ] } ], "update_tournament_trophy_configs_many": [ - 3747, + 3792, { "updates": [ - 3765, + 3810, "[tournament_trophy_configs_updates!]!" ] } ], "update_tournaments": [ - 3791, + 3836, { "_inc": [ - 3785 + 3830 ], "_set": [ - 3799 + 3844 ], "where": [ - 3783, + 3828, "tournaments_bool_exp!" ] } ], "update_tournaments_by_pk": [ - 3772, + 3817, { "_inc": [ - 3785 + 3830 ], "_set": [ - 3799 + 3844 ], "pk_columns": [ - 3795, + 3840, "tournaments_pk_columns_input!" ] } ], "update_tournaments_many": [ - 3791, + 3836, { "updates": [ - 3811, + 3856, "[tournaments_updates!]!" ] } ], "update_v_match_captains": [ - 3848, + 3893, { "_inc": [ - 3844 + 3889 ], "_set": [ - 3852 + 3897 ], "where": [ - 3843, + 3888, "v_match_captains_bool_exp!" ] } ], "update_v_match_captains_many": [ - 3848, + 3893, { "updates": [ - 3859, + 3904, "[v_match_captains_updates!]!" ] } ], "update_v_match_map_backup_rounds": [ - 3959, + 4004, { "_inc": [ - 3955 + 4000 ], "_set": [ - 3962 + 4007 ], "where": [ - 3954, + 3999, "v_match_map_backup_rounds_bool_exp!" ] } ], "update_v_match_map_backup_rounds_many": [ - 3959, + 4004, { "updates": [ - 3969, + 4014, "[v_match_map_backup_rounds_updates!]!" ] } ], "update_v_player_match_map_hltv": [ - 4181, + 4226, { "_inc": [ - 4175 + 4220 ], "_set": [ - 4184 + 4229 ], "where": [ - 4174, + 4219, "v_player_match_map_hltv_bool_exp!" ] } ], "update_v_player_match_map_hltv_many": [ - 4181, + 4226, { "updates": [ - 4195, + 4240, "[v_player_match_map_hltv_updates!]!" ] } ], "update_v_pool_maps": [ - 4340, + 4385, { "_set": [ - 4345 + 4390 ], "where": [ - 4334, + 4379, "v_pool_maps_bool_exp!" ] } ], "update_v_pool_maps_many": [ - 4340, + 4385, { "updates": [ - 4348, + 4393, "[v_pool_maps_updates!]!" ] } ], "update_v_team_stage_results": [ - 4434, + 4479, { "_inc": [ - 4428 + 4473 ], "_set": [ - 4448 + 4493 ], "where": [ - 4426, + 4471, "v_team_stage_results_bool_exp!" ] } ], "update_v_team_stage_results_by_pk": [ - 4407, + 4452, { "_inc": [ - 4428 + 4473 ], "_set": [ - 4448 + 4493 ], "pk_columns": [ - 4438, + 4483, "v_team_stage_results_pk_columns_input!" ] } ], "update_v_team_stage_results_many": [ - 4434, + 4479, { "updates": [ - 4460, + 4505, "[v_team_stage_results_updates!]!" ] } ], "validateGamedata": [ - 73, + 77, { "game_server_node_id": [ - 3818, + 3863, "uuid!" ] } ], "watchDemo": [ - 82, + 86, { "match_map_demo_id": [ - 3818 + 3863 ], "match_map_id": [ - 3818, + 3863, "uuid!" ] } ], "writeServerFile": [ - 73, + 77, { "content": [ - 70, + 74, "String!" ], "file_path": [ - 70, + 74, "String!" ], "node_id": [ - 70, + 74, "String!" ], "server_id": [ - 70 + 74 ] } ], "__typename": [ - 70 + 74 ] }, "Subscription": { "_map_pool": [ - 83, + 87, { "distinct_on": [ - 95, + 99, "[_map_pool_select_column!]" ], "limit": [ @@ -128313,19 +130253,19 @@ export default { 38 ], "order_by": [ - 93, + 97, "[_map_pool_order_by!]" ], "where": [ - 86 + 90 ] } ], "_map_pool_aggregate": [ - 84, + 88, { "distinct_on": [ - 95, + 99, "[_map_pool_select_column!]" ], "limit": [ @@ -128335,48 +130275,48 @@ export default { 38 ], "order_by": [ - 93, + 97, "[_map_pool_order_by!]" ], "where": [ - 86 + 90 ] } ], "_map_pool_by_pk": [ - 83, + 87, { "map_id": [ - 3818, + 3863, "uuid!" ], "map_pool_id": [ - 3818, + 3863, "uuid!" ] } ], "_map_pool_stream": [ - 83, + 87, { "batch_size": [ 38, "Int!" ], "cursor": [ - 97, + 101, "[_map_pool_stream_cursor_input]!" ], "where": [ - 86 + 90 ] } ], "abandoned_matches": [ - 101, + 105, { "distinct_on": [ - 122, + 126, "[abandoned_matches_select_column!]" ], "limit": [ @@ -128386,19 +130326,19 @@ export default { 38 ], "order_by": [ - 120, + 124, "[abandoned_matches_order_by!]" ], "where": [ - 110 + 114 ] } ], "abandoned_matches_aggregate": [ - 102, + 106, { "distinct_on": [ - 122, + 126, "[abandoned_matches_select_column!]" ], "limit": [ @@ -128408,44 +130348,44 @@ export default { 38 ], "order_by": [ - 120, + 124, "[abandoned_matches_order_by!]" ], "where": [ - 110 + 114 ] } ], "abandoned_matches_by_pk": [ - 101, + 105, { "id": [ - 3818, + 3863, "uuid!" ] } ], "abandoned_matches_stream": [ - 101, + 105, { "batch_size": [ 38, "Int!" ], "cursor": [ - 130, + 134, "[abandoned_matches_stream_cursor_input]!" ], "where": [ - 110 + 114 ] } ], "api_keys": [ - 142, + 146, { "distinct_on": [ - 156, + 160, "[api_keys_select_column!]" ], "limit": [ @@ -128455,19 +130395,19 @@ export default { 38 ], "order_by": [ - 154, + 158, "[api_keys_order_by!]" ], "where": [ - 146 + 150 ] } ], "api_keys_aggregate": [ - 143, + 147, { "distinct_on": [ - 156, + 160, "[api_keys_select_column!]" ], "limit": [ @@ -128477,44 +130417,44 @@ export default { 38 ], "order_by": [ - 154, + 158, "[api_keys_order_by!]" ], "where": [ - 146 + 150 ] } ], "api_keys_by_pk": [ - 142, + 146, { "id": [ - 3818, + 3863, "uuid!" ] } ], "api_keys_stream": [ - 142, + 146, { "batch_size": [ 38, "Int!" ], "cursor": [ - 161, + 165, "[api_keys_stream_cursor_input]!" ], "where": [ - 146 + 150 ] } ], "clip_render_jobs": [ - 174, + 178, { "distinct_on": [ - 202, + 206, "[clip_render_jobs_select_column!]" ], "limit": [ @@ -128524,19 +130464,19 @@ export default { 38 ], "order_by": [ - 199, + 203, "[clip_render_jobs_order_by!]" ], "where": [ - 186 + 190 ] } ], "clip_render_jobs_aggregate": [ - 175, + 179, { "distinct_on": [ - 202, + 206, "[clip_render_jobs_select_column!]" ], "limit": [ @@ -128546,44 +130486,44 @@ export default { 38 ], "order_by": [ - 199, + 203, "[clip_render_jobs_order_by!]" ], "where": [ - 186 + 190 ] } ], "clip_render_jobs_by_pk": [ - 174, + 178, { "id": [ - 3818, + 3863, "uuid!" ] } ], "clip_render_jobs_stream": [ - 174, + 178, { "batch_size": [ 38, "Int!" ], "cursor": [ - 212, + 216, "[clip_render_jobs_stream_cursor_input]!" ], "where": [ - 186 + 190 ] } ], "db_backups": [ - 225, + 229, { "distinct_on": [ - 239, + 243, "[db_backups_select_column!]" ], "limit": [ @@ -128593,19 +130533,19 @@ export default { 38 ], "order_by": [ - 237, + 241, "[db_backups_order_by!]" ], "where": [ - 229 + 233 ] } ], "db_backups_aggregate": [ - 226, + 230, { "distinct_on": [ - 239, + 243, "[db_backups_select_column!]" ], "limit": [ @@ -128615,44 +130555,44 @@ export default { 38 ], "order_by": [ - 237, + 241, "[db_backups_order_by!]" ], "where": [ - 229 + 233 ] } ], "db_backups_by_pk": [ - 225, + 229, { "id": [ - 3818, + 3863, "uuid!" ] } ], "db_backups_stream": [ - 225, + 229, { "batch_size": [ 38, "Int!" ], "cursor": [ - 244, + 248, "[db_backups_stream_cursor_input]!" ], "where": [ - 229 + 233 ] } ], "draft_game_picks": [ - 252, + 256, { "distinct_on": [ - 275, + 279, "[draft_game_picks_select_column!]" ], "limit": [ @@ -128662,19 +130602,19 @@ export default { 38 ], "order_by": [ - 273, + 277, "[draft_game_picks_order_by!]" ], "where": [ - 263 + 267 ] } ], "draft_game_picks_aggregate": [ - 253, + 257, { "distinct_on": [ - 275, + 279, "[draft_game_picks_select_column!]" ], "limit": [ @@ -128684,44 +130624,44 @@ export default { 38 ], "order_by": [ - 273, + 277, "[draft_game_picks_order_by!]" ], "where": [ - 263 + 267 ] } ], "draft_game_picks_by_pk": [ - 252, + 256, { "id": [ - 3818, + 3863, "uuid!" ] } ], "draft_game_picks_stream": [ - 252, + 256, { "batch_size": [ 38, "Int!" ], "cursor": [ - 285, + 289, "[draft_game_picks_stream_cursor_input]!" ], "where": [ - 263 + 267 ] } ], "draft_game_players": [ - 297, + 301, { "distinct_on": [ - 320, + 324, "[draft_game_players_select_column!]" ], "limit": [ @@ -128731,19 +130671,19 @@ export default { 38 ], "order_by": [ - 318, + 322, "[draft_game_players_order_by!]" ], "where": [ - 308 + 312 ] } ], "draft_game_players_aggregate": [ - 298, + 302, { "distinct_on": [ - 320, + 324, "[draft_game_players_select_column!]" ], "limit": [ @@ -128753,48 +130693,48 @@ export default { 38 ], "order_by": [ - 318, + 322, "[draft_game_players_order_by!]" ], "where": [ - 308 + 312 ] } ], "draft_game_players_by_pk": [ - 297, + 301, { "draft_game_id": [ - 3818, + 3863, "uuid!" ], "steam_id": [ - 169, + 173, "bigint!" ] } ], "draft_game_players_stream": [ - 297, + 301, { "batch_size": [ 38, "Int!" ], "cursor": [ - 330, + 334, "[draft_game_players_stream_cursor_input]!" ], "where": [ - 308 + 312 ] } ], "draft_games": [ - 342, + 346, { "distinct_on": [ - 366, + 370, "[draft_games_select_column!]" ], "limit": [ @@ -128804,19 +130744,19 @@ export default { 38 ], "order_by": [ - 364, + 368, "[draft_games_order_by!]" ], "where": [ - 353 + 357 ] } ], "draft_games_aggregate": [ - 343, + 347, { "distinct_on": [ - 366, + 370, "[draft_games_select_column!]" ], "limit": [ @@ -128826,44 +130766,44 @@ export default { 38 ], "order_by": [ - 364, + 368, "[draft_games_order_by!]" ], "where": [ - 353 + 357 ] } ], "draft_games_by_pk": [ - 342, + 346, { "id": [ - 3818, + 3863, "uuid!" ] } ], "draft_games_stream": [ - 342, + 346, { "batch_size": [ 38, "Int!" ], "cursor": [ - 376, + 380, "[draft_games_stream_cursor_input]!" ], "where": [ - 353 + 357 ] } ], "e_check_in_settings": [ - 388, + 392, { "distinct_on": [ - 402, + 406, "[e_check_in_settings_select_column!]" ], "limit": [ @@ -128873,19 +130813,19 @@ export default { 38 ], "order_by": [ - 400, + 404, "[e_check_in_settings_order_by!]" ], "where": [ - 391 + 395 ] } ], "e_check_in_settings_aggregate": [ - 389, + 393, { "distinct_on": [ - 402, + 406, "[e_check_in_settings_select_column!]" ], "limit": [ @@ -128895,44 +130835,44 @@ export default { 38 ], "order_by": [ - 400, + 404, "[e_check_in_settings_order_by!]" ], "where": [ - 391 + 395 ] } ], "e_check_in_settings_by_pk": [ - 388, + 392, { "value": [ - 70, + 74, "String!" ] } ], "e_check_in_settings_stream": [ - 388, + 392, { "batch_size": [ 38, "Int!" ], "cursor": [ - 404, + 408, "[e_check_in_settings_stream_cursor_input]!" ], "where": [ - 391 + 395 ] } ], "e_draft_game_captain_selection": [ - 408, + 412, { "distinct_on": [ - 423, + 427, "[e_draft_game_captain_selection_select_column!]" ], "limit": [ @@ -128942,19 +130882,19 @@ export default { 38 ], "order_by": [ - 421, + 425, "[e_draft_game_captain_selection_order_by!]" ], "where": [ - 411 + 415 ] } ], "e_draft_game_captain_selection_aggregate": [ - 409, + 413, { "distinct_on": [ - 423, + 427, "[e_draft_game_captain_selection_select_column!]" ], "limit": [ @@ -128964,44 +130904,44 @@ export default { 38 ], "order_by": [ - 421, + 425, "[e_draft_game_captain_selection_order_by!]" ], "where": [ - 411 + 415 ] } ], "e_draft_game_captain_selection_by_pk": [ - 408, + 412, { "value": [ - 70, + 74, "String!" ] } ], "e_draft_game_captain_selection_stream": [ - 408, + 412, { "batch_size": [ 38, "Int!" ], "cursor": [ - 425, + 429, "[e_draft_game_captain_selection_stream_cursor_input]!" ], "where": [ - 411 + 415 ] } ], "e_draft_game_draft_order": [ - 429, + 433, { "distinct_on": [ - 444, + 448, "[e_draft_game_draft_order_select_column!]" ], "limit": [ @@ -129011,19 +130951,19 @@ export default { 38 ], "order_by": [ - 442, + 446, "[e_draft_game_draft_order_order_by!]" ], "where": [ - 432 + 436 ] } ], "e_draft_game_draft_order_aggregate": [ - 430, + 434, { "distinct_on": [ - 444, + 448, "[e_draft_game_draft_order_select_column!]" ], "limit": [ @@ -129033,44 +130973,44 @@ export default { 38 ], "order_by": [ - 442, + 446, "[e_draft_game_draft_order_order_by!]" ], "where": [ - 432 + 436 ] } ], "e_draft_game_draft_order_by_pk": [ - 429, + 433, { "value": [ - 70, + 74, "String!" ] } ], "e_draft_game_draft_order_stream": [ - 429, + 433, { "batch_size": [ 38, "Int!" ], "cursor": [ - 446, + 450, "[e_draft_game_draft_order_stream_cursor_input]!" ], "where": [ - 432 + 436 ] } ], "e_draft_game_mode": [ - 450, + 454, { "distinct_on": [ - 465, + 469, "[e_draft_game_mode_select_column!]" ], "limit": [ @@ -129080,19 +131020,19 @@ export default { 38 ], "order_by": [ - 463, + 467, "[e_draft_game_mode_order_by!]" ], "where": [ - 453 + 457 ] } ], "e_draft_game_mode_aggregate": [ - 451, + 455, { "distinct_on": [ - 465, + 469, "[e_draft_game_mode_select_column!]" ], "limit": [ @@ -129102,44 +131042,44 @@ export default { 38 ], "order_by": [ - 463, + 467, "[e_draft_game_mode_order_by!]" ], "where": [ - 453 + 457 ] } ], "e_draft_game_mode_by_pk": [ - 450, + 454, { "value": [ - 70, + 74, "String!" ] } ], "e_draft_game_mode_stream": [ - 450, + 454, { "batch_size": [ 38, "Int!" ], "cursor": [ - 467, + 471, "[e_draft_game_mode_stream_cursor_input]!" ], "where": [ - 453 + 457 ] } ], "e_draft_game_player_status": [ - 471, + 475, { "distinct_on": [ - 486, + 490, "[e_draft_game_player_status_select_column!]" ], "limit": [ @@ -129149,19 +131089,19 @@ export default { 38 ], "order_by": [ - 484, + 488, "[e_draft_game_player_status_order_by!]" ], "where": [ - 474 + 478 ] } ], "e_draft_game_player_status_aggregate": [ - 472, + 476, { "distinct_on": [ - 486, + 490, "[e_draft_game_player_status_select_column!]" ], "limit": [ @@ -129171,44 +131111,44 @@ export default { 38 ], "order_by": [ - 484, + 488, "[e_draft_game_player_status_order_by!]" ], "where": [ - 474 + 478 ] } ], "e_draft_game_player_status_by_pk": [ - 471, + 475, { "value": [ - 70, + 74, "String!" ] } ], "e_draft_game_player_status_stream": [ - 471, + 475, { "batch_size": [ 38, "Int!" ], "cursor": [ - 488, + 492, "[e_draft_game_player_status_stream_cursor_input]!" ], "where": [ - 474 + 478 ] } ], "e_draft_game_status": [ - 492, + 496, { "distinct_on": [ - 507, + 511, "[e_draft_game_status_select_column!]" ], "limit": [ @@ -129218,19 +131158,19 @@ export default { 38 ], "order_by": [ - 505, + 509, "[e_draft_game_status_order_by!]" ], "where": [ - 495 + 499 ] } ], "e_draft_game_status_aggregate": [ - 493, + 497, { "distinct_on": [ - 507, + 511, "[e_draft_game_status_select_column!]" ], "limit": [ @@ -129240,44 +131180,44 @@ export default { 38 ], "order_by": [ - 505, + 509, "[e_draft_game_status_order_by!]" ], "where": [ - 495 + 499 ] } ], "e_draft_game_status_by_pk": [ - 492, + 496, { "value": [ - 70, + 74, "String!" ] } ], "e_draft_game_status_stream": [ - 492, + 496, { "batch_size": [ 38, "Int!" ], "cursor": [ - 509, + 513, "[e_draft_game_status_stream_cursor_input]!" ], "where": [ - 495 + 499 ] } ], "e_friend_status": [ - 513, + 517, { "distinct_on": [ - 528, + 532, "[e_friend_status_select_column!]" ], "limit": [ @@ -129287,19 +131227,19 @@ export default { 38 ], "order_by": [ - 526, + 530, "[e_friend_status_order_by!]" ], "where": [ - 516 + 520 ] } ], "e_friend_status_aggregate": [ - 514, + 518, { "distinct_on": [ - 528, + 532, "[e_friend_status_select_column!]" ], "limit": [ @@ -129309,44 +131249,44 @@ export default { 38 ], "order_by": [ - 526, + 530, "[e_friend_status_order_by!]" ], "where": [ - 516 + 520 ] } ], "e_friend_status_by_pk": [ - 513, + 517, { "value": [ - 70, + 74, "String!" ] } ], "e_friend_status_stream": [ - 513, + 517, { "batch_size": [ 38, "Int!" ], "cursor": [ - 530, + 534, "[e_friend_status_stream_cursor_input]!" ], "where": [ - 516 + 520 ] } ], "e_game_cfg_types": [ - 534, + 538, { "distinct_on": [ - 548, + 552, "[e_game_cfg_types_select_column!]" ], "limit": [ @@ -129356,19 +131296,19 @@ export default { 38 ], "order_by": [ - 546, + 550, "[e_game_cfg_types_order_by!]" ], "where": [ - 537 + 541 ] } ], "e_game_cfg_types_aggregate": [ - 535, + 539, { "distinct_on": [ - 548, + 552, "[e_game_cfg_types_select_column!]" ], "limit": [ @@ -129378,44 +131318,44 @@ export default { 38 ], "order_by": [ - 546, + 550, "[e_game_cfg_types_order_by!]" ], "where": [ - 537 + 541 ] } ], "e_game_cfg_types_by_pk": [ - 534, + 538, { "value": [ - 70, + 74, "String!" ] } ], "e_game_cfg_types_stream": [ - 534, + 538, { "batch_size": [ 38, "Int!" ], "cursor": [ - 550, + 554, "[e_game_cfg_types_stream_cursor_input]!" ], "where": [ - 537 + 541 ] } ], "e_game_server_node_statuses": [ - 554, + 558, { "distinct_on": [ - 569, + 573, "[e_game_server_node_statuses_select_column!]" ], "limit": [ @@ -129425,19 +131365,19 @@ export default { 38 ], "order_by": [ - 567, + 571, "[e_game_server_node_statuses_order_by!]" ], "where": [ - 557 + 561 ] } ], "e_game_server_node_statuses_aggregate": [ - 555, + 559, { "distinct_on": [ - 569, + 573, "[e_game_server_node_statuses_select_column!]" ], "limit": [ @@ -129447,44 +131387,44 @@ export default { 38 ], "order_by": [ - 567, + 571, "[e_game_server_node_statuses_order_by!]" ], "where": [ - 557 + 561 ] } ], "e_game_server_node_statuses_by_pk": [ - 554, + 558, { "value": [ - 70, + 74, "String!" ] } ], "e_game_server_node_statuses_stream": [ - 554, + 558, { "batch_size": [ 38, "Int!" ], "cursor": [ - 571, + 575, "[e_game_server_node_statuses_stream_cursor_input]!" ], "where": [ - 557 + 561 ] } ], "e_lobby_access": [ - 575, + 579, { "distinct_on": [ - 590, + 594, "[e_lobby_access_select_column!]" ], "limit": [ @@ -129494,19 +131434,19 @@ export default { 38 ], "order_by": [ - 588, + 592, "[e_lobby_access_order_by!]" ], "where": [ - 578 + 582 ] } ], "e_lobby_access_aggregate": [ - 576, + 580, { "distinct_on": [ - 590, + 594, "[e_lobby_access_select_column!]" ], "limit": [ @@ -129516,44 +131456,44 @@ export default { 38 ], "order_by": [ - 588, + 592, "[e_lobby_access_order_by!]" ], "where": [ - 578 + 582 ] } ], "e_lobby_access_by_pk": [ - 575, + 579, { "value": [ - 70, + 74, "String!" ] } ], "e_lobby_access_stream": [ - 575, + 579, { "batch_size": [ 38, "Int!" ], "cursor": [ - 592, + 596, "[e_lobby_access_stream_cursor_input]!" ], "where": [ - 578 + 582 ] } ], "e_lobby_player_status": [ - 596, + 600, { "distinct_on": [ - 610, + 614, "[e_lobby_player_status_select_column!]" ], "limit": [ @@ -129563,19 +131503,19 @@ export default { 38 ], "order_by": [ - 608, + 612, "[e_lobby_player_status_order_by!]" ], "where": [ - 599 + 603 ] } ], "e_lobby_player_status_aggregate": [ - 597, + 601, { "distinct_on": [ - 610, + 614, "[e_lobby_player_status_select_column!]" ], "limit": [ @@ -129585,44 +131525,44 @@ export default { 38 ], "order_by": [ - 608, + 612, "[e_lobby_player_status_order_by!]" ], "where": [ - 599 + 603 ] } ], "e_lobby_player_status_by_pk": [ - 596, + 600, { "value": [ - 70, + 74, "String!" ] } ], "e_lobby_player_status_stream": [ - 596, + 600, { "batch_size": [ 38, "Int!" ], "cursor": [ - 612, + 616, "[e_lobby_player_status_stream_cursor_input]!" ], "where": [ - 599 + 603 ] } ], "e_map_pool_types": [ - 616, + 620, { "distinct_on": [ - 631, + 635, "[e_map_pool_types_select_column!]" ], "limit": [ @@ -129632,19 +131572,19 @@ export default { 38 ], "order_by": [ - 629, + 633, "[e_map_pool_types_order_by!]" ], "where": [ - 619 + 623 ] } ], "e_map_pool_types_aggregate": [ - 617, + 621, { "distinct_on": [ - 631, + 635, "[e_map_pool_types_select_column!]" ], "limit": [ @@ -129654,44 +131594,44 @@ export default { 38 ], "order_by": [ - 629, + 633, "[e_map_pool_types_order_by!]" ], "where": [ - 619 + 623 ] } ], "e_map_pool_types_by_pk": [ - 616, + 620, { "value": [ - 70, + 74, "String!" ] } ], "e_map_pool_types_stream": [ - 616, + 620, { "batch_size": [ 38, "Int!" ], "cursor": [ - 633, + 637, "[e_map_pool_types_stream_cursor_input]!" ], "where": [ - 619 + 623 ] } ], "e_match_clip_visibility": [ - 637, + 641, { "distinct_on": [ - 651, + 655, "[e_match_clip_visibility_select_column!]" ], "limit": [ @@ -129701,19 +131641,19 @@ export default { 38 ], "order_by": [ - 649, + 653, "[e_match_clip_visibility_order_by!]" ], "where": [ - 640 + 644 ] } ], "e_match_clip_visibility_aggregate": [ - 638, + 642, { "distinct_on": [ - 651, + 655, "[e_match_clip_visibility_select_column!]" ], "limit": [ @@ -129723,44 +131663,44 @@ export default { 38 ], "order_by": [ - 649, + 653, "[e_match_clip_visibility_order_by!]" ], "where": [ - 640 + 644 ] } ], "e_match_clip_visibility_by_pk": [ - 637, + 641, { "value": [ - 70, + 74, "String!" ] } ], "e_match_clip_visibility_stream": [ - 637, + 641, { "batch_size": [ 38, "Int!" ], "cursor": [ - 653, + 657, "[e_match_clip_visibility_stream_cursor_input]!" ], "where": [ - 640 + 644 ] } ], "e_match_map_status": [ - 657, + 661, { "distinct_on": [ - 672, + 676, "[e_match_map_status_select_column!]" ], "limit": [ @@ -129770,19 +131710,19 @@ export default { 38 ], "order_by": [ - 670, + 674, "[e_match_map_status_order_by!]" ], "where": [ - 660 + 664 ] } ], "e_match_map_status_aggregate": [ - 658, + 662, { "distinct_on": [ - 672, + 676, "[e_match_map_status_select_column!]" ], "limit": [ @@ -129792,44 +131732,44 @@ export default { 38 ], "order_by": [ - 670, + 674, "[e_match_map_status_order_by!]" ], "where": [ - 660 + 664 ] } ], "e_match_map_status_by_pk": [ - 657, + 661, { "value": [ - 70, + 74, "String!" ] } ], "e_match_map_status_stream": [ - 657, + 661, { "batch_size": [ 38, "Int!" ], "cursor": [ - 674, + 678, "[e_match_map_status_stream_cursor_input]!" ], "where": [ - 660 + 664 ] } ], "e_match_mode": [ - 678, + 682, { "distinct_on": [ - 692, + 696, "[e_match_mode_select_column!]" ], "limit": [ @@ -129839,19 +131779,19 @@ export default { 38 ], "order_by": [ - 690, + 694, "[e_match_mode_order_by!]" ], "where": [ - 681 + 685 ] } ], "e_match_mode_aggregate": [ - 679, + 683, { "distinct_on": [ - 692, + 696, "[e_match_mode_select_column!]" ], "limit": [ @@ -129861,44 +131801,44 @@ export default { 38 ], "order_by": [ - 690, + 694, "[e_match_mode_order_by!]" ], "where": [ - 681 + 685 ] } ], "e_match_mode_by_pk": [ - 678, + 682, { "value": [ - 70, + 74, "String!" ] } ], "e_match_mode_stream": [ - 678, + 682, { "batch_size": [ 38, "Int!" ], "cursor": [ - 694, + 698, "[e_match_mode_stream_cursor_input]!" ], "where": [ - 681 + 685 ] } ], "e_match_status": [ - 698, + 702, { "distinct_on": [ - 713, + 717, "[e_match_status_select_column!]" ], "limit": [ @@ -129908,19 +131848,19 @@ export default { 38 ], "order_by": [ - 711, + 715, "[e_match_status_order_by!]" ], "where": [ - 701 + 705 ] } ], "e_match_status_aggregate": [ - 699, + 703, { "distinct_on": [ - 713, + 717, "[e_match_status_select_column!]" ], "limit": [ @@ -129930,44 +131870,44 @@ export default { 38 ], "order_by": [ - 711, + 715, "[e_match_status_order_by!]" ], "where": [ - 701 + 705 ] } ], "e_match_status_by_pk": [ - 698, + 702, { "value": [ - 70, + 74, "String!" ] } ], "e_match_status_stream": [ - 698, + 702, { "batch_size": [ 38, "Int!" ], "cursor": [ - 715, + 719, "[e_match_status_stream_cursor_input]!" ], "where": [ - 701 + 705 ] } ], "e_match_types": [ - 719, + 723, { "distinct_on": [ - 734, + 738, "[e_match_types_select_column!]" ], "limit": [ @@ -129977,19 +131917,19 @@ export default { 38 ], "order_by": [ - 732, + 736, "[e_match_types_order_by!]" ], "where": [ - 722 + 726 ] } ], "e_match_types_aggregate": [ - 720, + 724, { "distinct_on": [ - 734, + 738, "[e_match_types_select_column!]" ], "limit": [ @@ -129999,44 +131939,44 @@ export default { 38 ], "order_by": [ - 732, + 736, "[e_match_types_order_by!]" ], "where": [ - 722 + 726 ] } ], "e_match_types_by_pk": [ - 719, + 723, { "value": [ - 70, + 74, "String!" ] } ], "e_match_types_stream": [ - 719, + 723, { "batch_size": [ 38, "Int!" ], "cursor": [ - 736, + 740, "[e_match_types_stream_cursor_input]!" ], "where": [ - 722 + 726 ] } ], "e_notification_types": [ - 740, + 744, { "distinct_on": [ - 754, + 758, "[e_notification_types_select_column!]" ], "limit": [ @@ -130046,19 +131986,19 @@ export default { 38 ], "order_by": [ - 752, + 756, "[e_notification_types_order_by!]" ], "where": [ - 743 + 747 ] } ], "e_notification_types_aggregate": [ - 741, + 745, { "distinct_on": [ - 754, + 758, "[e_notification_types_select_column!]" ], "limit": [ @@ -130068,44 +132008,44 @@ export default { 38 ], "order_by": [ - 752, + 756, "[e_notification_types_order_by!]" ], "where": [ - 743 + 747 ] } ], "e_notification_types_by_pk": [ - 740, + 744, { "value": [ - 70, + 74, "String!" ] } ], "e_notification_types_stream": [ - 740, + 744, { "batch_size": [ 38, "Int!" ], "cursor": [ - 756, + 760, "[e_notification_types_stream_cursor_input]!" ], "where": [ - 743 + 747 ] } ], "e_objective_types": [ - 760, + 764, { "distinct_on": [ - 774, + 778, "[e_objective_types_select_column!]" ], "limit": [ @@ -130115,19 +132055,19 @@ export default { 38 ], "order_by": [ - 772, + 776, "[e_objective_types_order_by!]" ], "where": [ - 763 + 767 ] } ], "e_objective_types_aggregate": [ - 761, + 765, { "distinct_on": [ - 774, + 778, "[e_objective_types_select_column!]" ], "limit": [ @@ -130137,44 +132077,44 @@ export default { 38 ], "order_by": [ - 772, + 776, "[e_objective_types_order_by!]" ], "where": [ - 763 + 767 ] } ], "e_objective_types_by_pk": [ - 760, + 764, { "value": [ - 70, + 74, "String!" ] } ], "e_objective_types_stream": [ - 760, + 764, { "batch_size": [ 38, "Int!" ], "cursor": [ - 776, + 780, "[e_objective_types_stream_cursor_input]!" ], "where": [ - 763 + 767 ] } ], "e_player_roles": [ - 780, + 784, { "distinct_on": [ - 794, + 798, "[e_player_roles_select_column!]" ], "limit": [ @@ -130184,19 +132124,19 @@ export default { 38 ], "order_by": [ - 792, + 796, "[e_player_roles_order_by!]" ], "where": [ - 783 + 787 ] } ], "e_player_roles_aggregate": [ - 781, + 785, { "distinct_on": [ - 794, + 798, "[e_player_roles_select_column!]" ], "limit": [ @@ -130206,44 +132146,44 @@ export default { 38 ], "order_by": [ - 792, + 796, "[e_player_roles_order_by!]" ], "where": [ - 783 + 787 ] } ], "e_player_roles_by_pk": [ - 780, + 784, { "value": [ - 70, + 74, "String!" ] } ], "e_player_roles_stream": [ - 780, + 784, { "batch_size": [ 38, "Int!" ], "cursor": [ - 796, + 800, "[e_player_roles_stream_cursor_input]!" ], "where": [ - 783 + 787 ] } ], "e_ready_settings": [ - 800, + 804, { "distinct_on": [ - 814, + 818, "[e_ready_settings_select_column!]" ], "limit": [ @@ -130253,19 +132193,19 @@ export default { 38 ], "order_by": [ - 812, + 816, "[e_ready_settings_order_by!]" ], "where": [ - 803 + 807 ] } ], "e_ready_settings_aggregate": [ - 801, + 805, { "distinct_on": [ - 814, + 818, "[e_ready_settings_select_column!]" ], "limit": [ @@ -130275,44 +132215,44 @@ export default { 38 ], "order_by": [ - 812, + 816, "[e_ready_settings_order_by!]" ], "where": [ - 803 + 807 ] } ], "e_ready_settings_by_pk": [ - 800, + 804, { "value": [ - 70, + 74, "String!" ] } ], "e_ready_settings_stream": [ - 800, + 804, { "batch_size": [ 38, "Int!" ], "cursor": [ - 816, + 820, "[e_ready_settings_stream_cursor_input]!" ], "where": [ - 803 + 807 ] } ], "e_sanction_types": [ - 820, + 824, { "distinct_on": [ - 835, + 839, "[e_sanction_types_select_column!]" ], "limit": [ @@ -130322,19 +132262,19 @@ export default { 38 ], "order_by": [ - 833, + 837, "[e_sanction_types_order_by!]" ], "where": [ - 823 + 827 ] } ], "e_sanction_types_aggregate": [ - 821, + 825, { "distinct_on": [ - 835, + 839, "[e_sanction_types_select_column!]" ], "limit": [ @@ -130344,44 +132284,44 @@ export default { 38 ], "order_by": [ - 833, + 837, "[e_sanction_types_order_by!]" ], "where": [ - 823 + 827 ] } ], "e_sanction_types_by_pk": [ - 820, + 824, { "value": [ - 70, + 74, "String!" ] } ], "e_sanction_types_stream": [ - 820, + 824, { "batch_size": [ 38, "Int!" ], "cursor": [ - 837, + 841, "[e_sanction_types_stream_cursor_input]!" ], "where": [ - 823 + 827 ] } ], "e_scrim_request_statuses": [ - 841, + 845, { "distinct_on": [ - 855, + 859, "[e_scrim_request_statuses_select_column!]" ], "limit": [ @@ -130391,19 +132331,19 @@ export default { 38 ], "order_by": [ - 853, + 857, "[e_scrim_request_statuses_order_by!]" ], "where": [ - 844 + 848 ] } ], "e_scrim_request_statuses_aggregate": [ - 842, + 846, { "distinct_on": [ - 855, + 859, "[e_scrim_request_statuses_select_column!]" ], "limit": [ @@ -130413,44 +132353,44 @@ export default { 38 ], "order_by": [ - 853, + 857, "[e_scrim_request_statuses_order_by!]" ], "where": [ - 844 + 848 ] } ], "e_scrim_request_statuses_by_pk": [ - 841, + 845, { "value": [ - 70, + 74, "String!" ] } ], "e_scrim_request_statuses_stream": [ - 841, + 845, { "batch_size": [ 38, "Int!" ], "cursor": [ - 857, + 861, "[e_scrim_request_statuses_stream_cursor_input]!" ], "where": [ - 844 + 848 ] } ], "e_server_types": [ - 861, + 865, { "distinct_on": [ - 875, + 879, "[e_server_types_select_column!]" ], "limit": [ @@ -130460,19 +132400,19 @@ export default { 38 ], "order_by": [ - 873, + 877, "[e_server_types_order_by!]" ], "where": [ - 864 + 868 ] } ], "e_server_types_aggregate": [ - 862, + 866, { "distinct_on": [ - 875, + 879, "[e_server_types_select_column!]" ], "limit": [ @@ -130482,44 +132422,44 @@ export default { 38 ], "order_by": [ - 873, + 877, "[e_server_types_order_by!]" ], "where": [ - 864 + 868 ] } ], "e_server_types_by_pk": [ - 861, + 865, { "value": [ - 70, + 74, "String!" ] } ], "e_server_types_stream": [ - 861, + 865, { "batch_size": [ 38, "Int!" ], "cursor": [ - 877, + 881, "[e_server_types_stream_cursor_input]!" ], "where": [ - 864 + 868 ] } ], "e_sides": [ - 881, + 885, { "distinct_on": [ - 895, + 899, "[e_sides_select_column!]" ], "limit": [ @@ -130529,19 +132469,19 @@ export default { 38 ], "order_by": [ - 893, + 897, "[e_sides_order_by!]" ], "where": [ - 884 + 888 ] } ], "e_sides_aggregate": [ - 882, + 886, { "distinct_on": [ - 895, + 899, "[e_sides_select_column!]" ], "limit": [ @@ -130551,44 +132491,44 @@ export default { 38 ], "order_by": [ - 893, + 897, "[e_sides_order_by!]" ], "where": [ - 884 + 888 ] } ], "e_sides_by_pk": [ - 881, + 885, { "value": [ - 70, + 74, "String!" ] } ], "e_sides_stream": [ - 881, + 885, { "batch_size": [ 38, "Int!" ], "cursor": [ - 897, + 901, "[e_sides_stream_cursor_input]!" ], "where": [ - 884 + 888 ] } ], "e_system_alert_types": [ - 901, + 905, { "distinct_on": [ - 915, + 919, "[e_system_alert_types_select_column!]" ], "limit": [ @@ -130598,19 +132538,19 @@ export default { 38 ], "order_by": [ - 913, + 917, "[e_system_alert_types_order_by!]" ], "where": [ - 904 + 908 ] } ], "e_system_alert_types_aggregate": [ - 902, + 906, { "distinct_on": [ - 915, + 919, "[e_system_alert_types_select_column!]" ], "limit": [ @@ -130620,44 +132560,44 @@ export default { 38 ], "order_by": [ - 913, + 917, "[e_system_alert_types_order_by!]" ], "where": [ - 904 + 908 ] } ], "e_system_alert_types_by_pk": [ - 901, + 905, { "value": [ - 70, + 74, "String!" ] } ], "e_system_alert_types_stream": [ - 901, + 905, { "batch_size": [ 38, "Int!" ], "cursor": [ - 917, + 921, "[e_system_alert_types_stream_cursor_input]!" ], "where": [ - 904 + 908 ] } ], "e_team_roles": [ - 921, + 925, { "distinct_on": [ - 936, + 940, "[e_team_roles_select_column!]" ], "limit": [ @@ -130667,19 +132607,19 @@ export default { 38 ], "order_by": [ - 934, + 938, "[e_team_roles_order_by!]" ], "where": [ - 924 + 928 ] } ], "e_team_roles_aggregate": [ - 922, + 926, { "distinct_on": [ - 936, + 940, "[e_team_roles_select_column!]" ], "limit": [ @@ -130689,44 +132629,44 @@ export default { 38 ], "order_by": [ - 934, + 938, "[e_team_roles_order_by!]" ], "where": [ - 924 + 928 ] } ], "e_team_roles_by_pk": [ - 921, + 925, { "value": [ - 70, + 74, "String!" ] } ], "e_team_roles_stream": [ - 921, + 925, { "batch_size": [ 38, "Int!" ], "cursor": [ - 938, + 942, "[e_team_roles_stream_cursor_input]!" ], "where": [ - 924 + 928 ] } ], "e_team_roster_statuses": [ - 942, + 946, { "distinct_on": [ - 956, + 960, "[e_team_roster_statuses_select_column!]" ], "limit": [ @@ -130736,19 +132676,19 @@ export default { 38 ], "order_by": [ - 954, + 958, "[e_team_roster_statuses_order_by!]" ], "where": [ - 945 + 949 ] } ], "e_team_roster_statuses_aggregate": [ - 943, + 947, { "distinct_on": [ - 956, + 960, "[e_team_roster_statuses_select_column!]" ], "limit": [ @@ -130758,44 +132698,44 @@ export default { 38 ], "order_by": [ - 954, + 958, "[e_team_roster_statuses_order_by!]" ], "where": [ - 945 + 949 ] } ], "e_team_roster_statuses_by_pk": [ - 942, + 946, { "value": [ - 70, + 74, "String!" ] } ], "e_team_roster_statuses_stream": [ - 942, + 946, { "batch_size": [ 38, "Int!" ], "cursor": [ - 958, + 962, "[e_team_roster_statuses_stream_cursor_input]!" ], "where": [ - 945 + 949 ] } ], "e_timeout_settings": [ - 962, + 966, { "distinct_on": [ - 976, + 980, "[e_timeout_settings_select_column!]" ], "limit": [ @@ -130805,19 +132745,19 @@ export default { 38 ], "order_by": [ - 974, + 978, "[e_timeout_settings_order_by!]" ], "where": [ - 965 + 969 ] } ], "e_timeout_settings_aggregate": [ - 963, + 967, { "distinct_on": [ - 976, + 980, "[e_timeout_settings_select_column!]" ], "limit": [ @@ -130827,44 +132767,44 @@ export default { 38 ], "order_by": [ - 974, + 978, "[e_timeout_settings_order_by!]" ], "where": [ - 965 + 969 ] } ], "e_timeout_settings_by_pk": [ - 962, + 966, { "value": [ - 70, + 74, "String!" ] } ], "e_timeout_settings_stream": [ - 962, + 966, { "batch_size": [ 38, "Int!" ], "cursor": [ - 978, + 982, "[e_timeout_settings_stream_cursor_input]!" ], "where": [ - 965 + 969 ] } ], "e_tournament_stage_types": [ - 982, + 986, { "distinct_on": [ - 997, + 1001, "[e_tournament_stage_types_select_column!]" ], "limit": [ @@ -130874,19 +132814,19 @@ export default { 38 ], "order_by": [ - 995, + 999, "[e_tournament_stage_types_order_by!]" ], "where": [ - 985 + 989 ] } ], "e_tournament_stage_types_aggregate": [ - 983, + 987, { "distinct_on": [ - 997, + 1001, "[e_tournament_stage_types_select_column!]" ], "limit": [ @@ -130896,44 +132836,44 @@ export default { 38 ], "order_by": [ - 995, + 999, "[e_tournament_stage_types_order_by!]" ], "where": [ - 985 + 989 ] } ], "e_tournament_stage_types_by_pk": [ - 982, + 986, { "value": [ - 70, + 74, "String!" ] } ], "e_tournament_stage_types_stream": [ - 982, + 986, { "batch_size": [ 38, "Int!" ], "cursor": [ - 999, + 1003, "[e_tournament_stage_types_stream_cursor_input]!" ], "where": [ - 985 + 989 ] } ], "e_tournament_status": [ - 1003, + 1007, { "distinct_on": [ - 1018, + 1022, "[e_tournament_status_select_column!]" ], "limit": [ @@ -130943,19 +132883,19 @@ export default { 38 ], "order_by": [ - 1016, + 1020, "[e_tournament_status_order_by!]" ], "where": [ - 1006 + 1010 ] } ], "e_tournament_status_aggregate": [ - 1004, + 1008, { "distinct_on": [ - 1018, + 1022, "[e_tournament_status_select_column!]" ], "limit": [ @@ -130965,44 +132905,44 @@ export default { 38 ], "order_by": [ - 1016, + 1020, "[e_tournament_status_order_by!]" ], "where": [ - 1006 + 1010 ] } ], "e_tournament_status_by_pk": [ - 1003, + 1007, { "value": [ - 70, + 74, "String!" ] } ], "e_tournament_status_stream": [ - 1003, + 1007, { "batch_size": [ 38, "Int!" ], "cursor": [ - 1020, + 1024, "[e_tournament_status_stream_cursor_input]!" ], "where": [ - 1006 + 1010 ] } ], "e_utility_types": [ - 1024, + 1028, { "distinct_on": [ - 1038, + 1042, "[e_utility_types_select_column!]" ], "limit": [ @@ -131012,19 +132952,19 @@ export default { 38 ], "order_by": [ - 1036, + 1040, "[e_utility_types_order_by!]" ], "where": [ - 1027 + 1031 ] } ], "e_utility_types_aggregate": [ - 1025, + 1029, { "distinct_on": [ - 1038, + 1042, "[e_utility_types_select_column!]" ], "limit": [ @@ -131034,44 +132974,44 @@ export default { 38 ], "order_by": [ - 1036, + 1040, "[e_utility_types_order_by!]" ], "where": [ - 1027 + 1031 ] } ], "e_utility_types_by_pk": [ - 1024, + 1028, { "value": [ - 70, + 74, "String!" ] } ], "e_utility_types_stream": [ - 1024, + 1028, { "batch_size": [ 38, "Int!" ], "cursor": [ - 1040, + 1044, "[e_utility_types_stream_cursor_input]!" ], "where": [ - 1027 + 1031 ] } ], "e_veto_pick_types": [ - 1044, + 1048, { "distinct_on": [ - 1058, + 1062, "[e_veto_pick_types_select_column!]" ], "limit": [ @@ -131081,19 +133021,19 @@ export default { 38 ], "order_by": [ - 1056, + 1060, "[e_veto_pick_types_order_by!]" ], "where": [ - 1047 + 1051 ] } ], "e_veto_pick_types_aggregate": [ - 1045, + 1049, { "distinct_on": [ - 1058, + 1062, "[e_veto_pick_types_select_column!]" ], "limit": [ @@ -131103,44 +133043,44 @@ export default { 38 ], "order_by": [ - 1056, + 1060, "[e_veto_pick_types_order_by!]" ], "where": [ - 1047 + 1051 ] } ], "e_veto_pick_types_by_pk": [ - 1044, + 1048, { "value": [ - 70, + 74, "String!" ] } ], "e_veto_pick_types_stream": [ - 1044, + 1048, { "batch_size": [ 38, "Int!" ], "cursor": [ - 1060, + 1064, "[e_veto_pick_types_stream_cursor_input]!" ], "where": [ - 1047 + 1051 ] } ], "e_winning_reasons": [ - 1064, + 1068, { "distinct_on": [ - 1078, + 1082, "[e_winning_reasons_select_column!]" ], "limit": [ @@ -131150,19 +133090,19 @@ export default { 38 ], "order_by": [ - 1076, + 1080, "[e_winning_reasons_order_by!]" ], "where": [ - 1067 + 1071 ] } ], "e_winning_reasons_aggregate": [ - 1065, + 1069, { "distinct_on": [ - 1078, + 1082, "[e_winning_reasons_select_column!]" ], "limit": [ @@ -131172,44 +133112,44 @@ export default { 38 ], "order_by": [ - 1076, + 1080, "[e_winning_reasons_order_by!]" ], "where": [ - 1067 + 1071 ] } ], "e_winning_reasons_by_pk": [ - 1064, + 1068, { "value": [ - 70, + 74, "String!" ] } ], "e_winning_reasons_stream": [ - 1064, + 1068, { "batch_size": [ 38, "Int!" ], "cursor": [ - 1080, + 1084, "[e_winning_reasons_stream_cursor_input]!" ], "where": [ - 1067 + 1071 ] } ], "friends": [ - 1086, + 1090, { "distinct_on": [ - 1100, + 1104, "[friends_select_column!]" ], "limit": [ @@ -131219,19 +133159,19 @@ export default { 38 ], "order_by": [ - 1098, + 1102, "[friends_order_by!]" ], "where": [ - 1090 + 1094 ] } ], "friends_aggregate": [ - 1087, + 1091, { "distinct_on": [ - 1100, + 1104, "[friends_select_column!]" ], "limit": [ @@ -131241,48 +133181,48 @@ export default { 38 ], "order_by": [ - 1098, + 1102, "[friends_order_by!]" ], "where": [ - 1090 + 1094 ] } ], "friends_by_pk": [ - 1086, + 1090, { "other_player_steam_id": [ - 169, + 173, "bigint!" ], "player_steam_id": [ - 169, + 173, "bigint!" ] } ], "friends_stream": [ - 1086, + 1090, { "batch_size": [ 38, "Int!" ], "cursor": [ - 1105, + 1109, "[friends_stream_cursor_input]!" ], "where": [ - 1090 + 1094 ] } ], "game_server_nodes": [ - 1113, + 1117, { "distinct_on": [ - 1142, + 1146, "[game_server_nodes_select_column!]" ], "limit": [ @@ -131292,19 +133232,19 @@ export default { 38 ], "order_by": [ - 1139, + 1143, "[game_server_nodes_order_by!]" ], "where": [ - 1125 + 1129 ] } ], "game_server_nodes_aggregate": [ - 1114, + 1118, { "distinct_on": [ - 1142, + 1146, "[game_server_nodes_select_column!]" ], "limit": [ @@ -131314,44 +133254,44 @@ export default { 38 ], "order_by": [ - 1139, + 1143, "[game_server_nodes_order_by!]" ], "where": [ - 1125 + 1129 ] } ], "game_server_nodes_by_pk": [ - 1113, + 1117, { "id": [ - 70, + 74, "String!" ] } ], "game_server_nodes_stream": [ - 1113, + 1117, { "batch_size": [ 38, "Int!" ], "cursor": [ - 1152, + 1156, "[game_server_nodes_stream_cursor_input]!" ], "where": [ - 1125 + 1129 ] } ], "game_versions": [ - 1164, + 1168, { "distinct_on": [ - 1184, + 1188, "[game_versions_select_column!]" ], "limit": [ @@ -131361,19 +133301,19 @@ export default { 38 ], "order_by": [ - 1181, + 1185, "[game_versions_order_by!]" ], "where": [ - 1169 + 1173 ] } ], "game_versions_aggregate": [ - 1165, + 1169, { "distinct_on": [ - 1184, + 1188, "[game_versions_select_column!]" ], "limit": [ @@ -131383,16 +133323,16 @@ export default { 38 ], "order_by": [ - 1181, + 1185, "[game_versions_order_by!]" ], "where": [ - 1169 + 1173 ] } ], "game_versions_by_pk": [ - 1164, + 1168, { "build_id": [ 38, @@ -131401,26 +133341,26 @@ export default { } ], "game_versions_stream": [ - 1164, + 1168, { "batch_size": [ 38, "Int!" ], "cursor": [ - 1189, + 1193, "[game_versions_stream_cursor_input]!" ], "where": [ - 1169 + 1173 ] } ], "gamedata_signature_validations": [ - 1197, + 1201, { "distinct_on": [ - 1216, + 1220, "[gamedata_signature_validations_select_column!]" ], "limit": [ @@ -131430,19 +133370,19 @@ export default { 38 ], "order_by": [ - 1213, + 1217, "[gamedata_signature_validations_order_by!]" ], "where": [ - 1202 + 1206 ] } ], "gamedata_signature_validations_aggregate": [ - 1198, + 1202, { "distinct_on": [ - 1216, + 1220, "[gamedata_signature_validations_select_column!]" ], "limit": [ @@ -131452,48 +133392,48 @@ export default { 38 ], "order_by": [ - 1213, + 1217, "[gamedata_signature_validations_order_by!]" ], "where": [ - 1202 + 1206 ] } ], "gamedata_signature_validations_by_pk": [ - 1197, + 1201, { "id": [ - 3818, + 3863, "uuid!" ] } ], "gamedata_signature_validations_stream": [ - 1197, + 1201, { "batch_size": [ 38, "Int!" ], "cursor": [ - 1221, + 1225, "[gamedata_signature_validations_stream_cursor_input]!" ], "where": [ - 1202 + 1206 ] } ], "get_leaderboard": [ - 1238, + 1242, { "args": [ - 1229, + 1233, "get_leaderboard_args!" ], "distinct_on": [ - 1249, + 1253, "[leaderboard_entries_select_column!]" ], "limit": [ @@ -131503,23 +133443,23 @@ export default { 38 ], "order_by": [ - 1248, + 1252, "[leaderboard_entries_order_by!]" ], "where": [ - 1242 + 1246 ] } ], "get_leaderboard_aggregate": [ - 1239, + 1243, { "args": [ - 1229, + 1233, "get_leaderboard_args!" ], "distinct_on": [ - 1249, + 1253, "[leaderboard_entries_select_column!]" ], "limit": [ @@ -131529,23 +133469,23 @@ export default { 38 ], "order_by": [ - 1248, + 1252, "[leaderboard_entries_order_by!]" ], "where": [ - 1242 + 1246 ] } ], "get_player_leaderboard_rank": [ - 2452, + 2456, { "args": [ - 1230, + 1234, "get_player_leaderboard_rank_args!" ], "distinct_on": [ - 2463, + 2467, "[player_leaderboard_rank_select_column!]" ], "limit": [ @@ -131555,23 +133495,23 @@ export default { 38 ], "order_by": [ - 2462, + 2466, "[player_leaderboard_rank_order_by!]" ], "where": [ - 2456 + 2460 ] } ], "get_player_leaderboard_rank_aggregate": [ - 2453, + 2457, { "args": [ - 1230, + 1234, "get_player_leaderboard_rank_args!" ], "distinct_on": [ - 2463, + 2467, "[player_leaderboard_rank_select_column!]" ], "limit": [ @@ -131581,19 +133521,19 @@ export default { 38 ], "order_by": [ - 2462, + 2466, "[player_leaderboard_rank_order_by!]" ], "where": [ - 2456 + 2460 ] } ], "leaderboard_entries": [ - 1238, + 1242, { "distinct_on": [ - 1249, + 1253, "[leaderboard_entries_select_column!]" ], "limit": [ @@ -131603,19 +133543,19 @@ export default { 38 ], "order_by": [ - 1248, + 1252, "[leaderboard_entries_order_by!]" ], "where": [ - 1242 + 1246 ] } ], "leaderboard_entries_aggregate": [ - 1239, + 1243, { "distinct_on": [ - 1249, + 1253, "[leaderboard_entries_select_column!]" ], "limit": [ @@ -131625,35 +133565,35 @@ export default { 38 ], "order_by": [ - 1248, + 1252, "[leaderboard_entries_order_by!]" ], "where": [ - 1242 + 1246 ] } ], "leaderboard_entries_stream": [ - 1238, + 1242, { "batch_size": [ 38, "Int!" ], "cursor": [ - 1254, + 1258, "[leaderboard_entries_stream_cursor_input]!" ], "where": [ - 1242 + 1246 ] } ], "lobbies": [ - 1261, + 1265, { "distinct_on": [ - 1274, + 1278, "[lobbies_select_column!]" ], "limit": [ @@ -131663,19 +133603,19 @@ export default { 38 ], "order_by": [ - 1272, + 1276, "[lobbies_order_by!]" ], "where": [ - 1264 + 1268 ] } ], "lobbies_aggregate": [ - 1262, + 1266, { "distinct_on": [ - 1274, + 1278, "[lobbies_select_column!]" ], "limit": [ @@ -131685,44 +133625,44 @@ export default { 38 ], "order_by": [ - 1272, + 1276, "[lobbies_order_by!]" ], "where": [ - 1264 + 1268 ] } ], "lobbies_by_pk": [ - 1261, + 1265, { "id": [ - 3818, + 3863, "uuid!" ] } ], "lobbies_stream": [ - 1261, + 1265, { "batch_size": [ 38, "Int!" ], "cursor": [ - 1276, + 1280, "[lobbies_stream_cursor_input]!" ], "where": [ - 1264 + 1268 ] } ], "lobby_players": [ - 1280, + 1284, { "distinct_on": [ - 1303, + 1307, "[lobby_players_select_column!]" ], "limit": [ @@ -131732,19 +133672,19 @@ export default { 38 ], "order_by": [ - 1301, + 1305, "[lobby_players_order_by!]" ], "where": [ - 1291 + 1295 ] } ], "lobby_players_aggregate": [ - 1281, + 1285, { "distinct_on": [ - 1303, + 1307, "[lobby_players_select_column!]" ], "limit": [ @@ -131754,48 +133694,48 @@ export default { 38 ], "order_by": [ - 1301, + 1305, "[lobby_players_order_by!]" ], "where": [ - 1291 + 1295 ] } ], "lobby_players_by_pk": [ - 1280, + 1284, { "lobby_id": [ - 3818, + 3863, "uuid!" ], "steam_id": [ - 169, + 173, "bigint!" ] } ], "lobby_players_stream": [ - 1280, + 1284, { "batch_size": [ 38, "Int!" ], "cursor": [ - 1313, + 1317, "[lobby_players_stream_cursor_input]!" ], "where": [ - 1291 + 1295 ] } ], "map_pools": [ - 1325, + 1329, { "distinct_on": [ - 1338, + 1342, "[map_pools_select_column!]" ], "limit": [ @@ -131805,19 +133745,19 @@ export default { 38 ], "order_by": [ - 1336, + 1340, "[map_pools_order_by!]" ], "where": [ - 1328 + 1332 ] } ], "map_pools_aggregate": [ - 1326, + 1330, { "distinct_on": [ - 1338, + 1342, "[map_pools_select_column!]" ], "limit": [ @@ -131827,44 +133767,44 @@ export default { 38 ], "order_by": [ - 1336, + 1340, "[map_pools_order_by!]" ], "where": [ - 1328 + 1332 ] } ], "map_pools_by_pk": [ - 1325, + 1329, { "id": [ - 3818, + 3863, "uuid!" ] } ], "map_pools_stream": [ - 1325, + 1329, { "batch_size": [ 38, "Int!" ], "cursor": [ - 1340, + 1344, "[map_pools_stream_cursor_input]!" ], "where": [ - 1328 + 1332 ] } ], "maps": [ - 1344, + 1348, { "distinct_on": [ - 1365, + 1369, "[maps_select_column!]" ], "limit": [ @@ -131874,19 +133814,19 @@ export default { 38 ], "order_by": [ - 1363, + 1367, "[maps_order_by!]" ], "where": [ - 1353 + 1357 ] } ], "maps_aggregate": [ - 1345, + 1349, { "distinct_on": [ - 1365, + 1369, "[maps_select_column!]" ], "limit": [ @@ -131896,44 +133836,44 @@ export default { 38 ], "order_by": [ - 1363, + 1367, "[maps_order_by!]" ], "where": [ - 1353 + 1357 ] } ], "maps_by_pk": [ - 1344, + 1348, { "id": [ - 3818, + 3863, "uuid!" ] } ], "maps_stream": [ - 1344, + 1348, { "batch_size": [ 38, "Int!" ], "cursor": [ - 1369, + 1373, "[maps_stream_cursor_input]!" ], "where": [ - 1353 + 1357 ] } ], "match_clips": [ - 1373, + 1377, { "distinct_on": [ - 1395, + 1399, "[match_clips_select_column!]" ], "limit": [ @@ -131943,19 +133883,19 @@ export default { 38 ], "order_by": [ - 1393, + 1397, "[match_clips_order_by!]" ], "where": [ - 1382 + 1386 ] } ], "match_clips_aggregate": [ - 1374, + 1378, { "distinct_on": [ - 1395, + 1399, "[match_clips_select_column!]" ], "limit": [ @@ -131965,44 +133905,44 @@ export default { 38 ], "order_by": [ - 1393, + 1397, "[match_clips_order_by!]" ], "where": [ - 1382 + 1386 ] } ], "match_clips_by_pk": [ - 1373, + 1377, { "id": [ - 3818, + 3863, "uuid!" ] } ], "match_clips_stream": [ - 1373, + 1377, { "batch_size": [ 38, "Int!" ], "cursor": [ - 1403, + 1407, "[match_clips_stream_cursor_input]!" ], "where": [ - 1382 + 1386 ] } ], "match_demo_sessions": [ - 1415, + 1419, { "distinct_on": [ - 1441, + 1445, "[match_demo_sessions_select_column!]" ], "limit": [ @@ -132012,19 +133952,19 @@ export default { 38 ], "order_by": [ - 1438, + 1442, "[match_demo_sessions_order_by!]" ], "where": [ - 1425 + 1429 ] } ], "match_demo_sessions_aggregate": [ - 1416, + 1420, { "distinct_on": [ - 1441, + 1445, "[match_demo_sessions_select_column!]" ], "limit": [ @@ -132034,44 +133974,44 @@ export default { 38 ], "order_by": [ - 1438, + 1442, "[match_demo_sessions_order_by!]" ], "where": [ - 1425 + 1429 ] } ], "match_demo_sessions_by_pk": [ - 1415, + 1419, { "id": [ - 3818, + 3863, "uuid!" ] } ], "match_demo_sessions_stream": [ - 1415, + 1419, { "batch_size": [ 38, "Int!" ], "cursor": [ - 1449, + 1453, "[match_demo_sessions_stream_cursor_input]!" ], "where": [ - 1425 + 1429 ] } ], "match_lineup_players": [ - 1461, + 1465, { "distinct_on": [ - 1484, + 1488, "[match_lineup_players_select_column!]" ], "limit": [ @@ -132081,19 +134021,19 @@ export default { 38 ], "order_by": [ - 1482, + 1486, "[match_lineup_players_order_by!]" ], "where": [ - 1472 + 1476 ] } ], "match_lineup_players_aggregate": [ - 1462, + 1466, { "distinct_on": [ - 1484, + 1488, "[match_lineup_players_select_column!]" ], "limit": [ @@ -132103,44 +134043,44 @@ export default { 38 ], "order_by": [ - 1482, + 1486, "[match_lineup_players_order_by!]" ], "where": [ - 1472 + 1476 ] } ], "match_lineup_players_by_pk": [ - 1461, + 1465, { "id": [ - 3818, + 3863, "uuid!" ] } ], "match_lineup_players_stream": [ - 1461, + 1465, { "batch_size": [ 38, "Int!" ], "cursor": [ - 1494, + 1498, "[match_lineup_players_stream_cursor_input]!" ], "where": [ - 1472 + 1476 ] } ], "match_lineups": [ - 1506, + 1510, { "distinct_on": [ - 1528, + 1532, "[match_lineups_select_column!]" ], "limit": [ @@ -132150,19 +134090,19 @@ export default { 38 ], "order_by": [ - 1526, + 1530, "[match_lineups_order_by!]" ], "where": [ - 1515 + 1519 ] } ], "match_lineups_aggregate": [ - 1507, + 1511, { "distinct_on": [ - 1528, + 1532, "[match_lineups_select_column!]" ], "limit": [ @@ -132172,44 +134112,44 @@ export default { 38 ], "order_by": [ - 1526, + 1530, "[match_lineups_order_by!]" ], "where": [ - 1515 + 1519 ] } ], "match_lineups_by_pk": [ - 1506, + 1510, { "id": [ - 3818, + 3863, "uuid!" ] } ], "match_lineups_stream": [ - 1506, + 1510, { "batch_size": [ 38, "Int!" ], "cursor": [ - 1536, + 1540, "[match_lineups_stream_cursor_input]!" ], "where": [ - 1515 + 1519 ] } ], "match_map_demos": [ - 1548, + 1552, { "distinct_on": [ - 1577, + 1581, "[match_map_demos_select_column!]" ], "limit": [ @@ -132219,19 +134159,19 @@ export default { 38 ], "order_by": [ - 1574, + 1578, "[match_map_demos_order_by!]" ], "where": [ - 1560 + 1564 ] } ], "match_map_demos_aggregate": [ - 1549, + 1553, { "distinct_on": [ - 1577, + 1581, "[match_map_demos_select_column!]" ], "limit": [ @@ -132241,44 +134181,44 @@ export default { 38 ], "order_by": [ - 1574, + 1578, "[match_map_demos_order_by!]" ], "where": [ - 1560 + 1564 ] } ], "match_map_demos_by_pk": [ - 1548, + 1552, { "id": [ - 3818, + 3863, "uuid!" ] } ], "match_map_demos_stream": [ - 1548, + 1552, { "batch_size": [ 38, "Int!" ], "cursor": [ - 1587, + 1591, "[match_map_demos_stream_cursor_input]!" ], "where": [ - 1560 + 1564 ] } ], "match_map_rounds": [ - 1599, + 1603, { "distinct_on": [ - 1620, + 1624, "[match_map_rounds_select_column!]" ], "limit": [ @@ -132288,19 +134228,19 @@ export default { 38 ], "order_by": [ - 1618, + 1622, "[match_map_rounds_order_by!]" ], "where": [ - 1608 + 1612 ] } ], "match_map_rounds_aggregate": [ - 1600, + 1604, { "distinct_on": [ - 1620, + 1624, "[match_map_rounds_select_column!]" ], "limit": [ @@ -132310,44 +134250,44 @@ export default { 38 ], "order_by": [ - 1618, + 1622, "[match_map_rounds_order_by!]" ], "where": [ - 1608 + 1612 ] } ], "match_map_rounds_by_pk": [ - 1599, + 1603, { "id": [ - 3818, + 3863, "uuid!" ] } ], "match_map_rounds_stream": [ - 1599, + 1603, { "batch_size": [ 38, "Int!" ], "cursor": [ - 1628, + 1632, "[match_map_rounds_stream_cursor_input]!" ], "where": [ - 1608 + 1612 ] } ], "match_map_veto_picks": [ - 1640, + 1644, { "distinct_on": [ - 1658, + 1662, "[match_map_veto_picks_select_column!]" ], "limit": [ @@ -132357,19 +134297,19 @@ export default { 38 ], "order_by": [ - 1656, + 1660, "[match_map_veto_picks_order_by!]" ], "where": [ - 1647 + 1651 ] } ], "match_map_veto_picks_aggregate": [ - 1641, + 1645, { "distinct_on": [ - 1658, + 1662, "[match_map_veto_picks_select_column!]" ], "limit": [ @@ -132379,44 +134319,44 @@ export default { 38 ], "order_by": [ - 1656, + 1660, "[match_map_veto_picks_order_by!]" ], "where": [ - 1647 + 1651 ] } ], "match_map_veto_picks_by_pk": [ - 1640, + 1644, { "id": [ - 3818, + 3863, "uuid!" ] } ], "match_map_veto_picks_stream": [ - 1640, + 1644, { "batch_size": [ 38, "Int!" ], "cursor": [ - 1660, + 1664, "[match_map_veto_picks_stream_cursor_input]!" ], "where": [ - 1647 + 1651 ] } ], "match_maps": [ - 1664, + 1668, { "distinct_on": [ - 1686, + 1690, "[match_maps_select_column!]" ], "limit": [ @@ -132426,19 +134366,19 @@ export default { 38 ], "order_by": [ - 1684, + 1688, "[match_maps_order_by!]" ], "where": [ - 1673 + 1677 ] } ], "match_maps_aggregate": [ - 1665, + 1669, { "distinct_on": [ - 1686, + 1690, "[match_maps_select_column!]" ], "limit": [ @@ -132448,44 +134388,44 @@ export default { 38 ], "order_by": [ - 1684, + 1688, "[match_maps_order_by!]" ], "where": [ - 1673 + 1677 ] } ], "match_maps_by_pk": [ - 1664, + 1668, { "id": [ - 3818, + 3863, "uuid!" ] } ], "match_maps_stream": [ - 1664, + 1668, { "batch_size": [ 38, "Int!" ], "cursor": [ - 1694, + 1698, "[match_maps_stream_cursor_input]!" ], "where": [ - 1673 + 1677 ] } ], "match_options": [ - 1706, + 1710, { "distinct_on": [ - 1721, + 1725, "[match_options_select_column!]" ], "limit": [ @@ -132495,19 +134435,19 @@ export default { 38 ], "order_by": [ - 1719, + 1723, "[match_options_order_by!]" ], "where": [ - 1710 + 1714 ] } ], "match_options_aggregate": [ - 1707, + 1711, { "distinct_on": [ - 1721, + 1725, "[match_options_select_column!]" ], "limit": [ @@ -132517,44 +134457,44 @@ export default { 38 ], "order_by": [ - 1719, + 1723, "[match_options_order_by!]" ], "where": [ - 1710 + 1714 ] } ], "match_options_by_pk": [ - 1706, + 1710, { "id": [ - 3818, + 3863, "uuid!" ] } ], "match_options_stream": [ - 1706, + 1710, { "batch_size": [ 38, "Int!" ], "cursor": [ - 1726, + 1730, "[match_options_stream_cursor_input]!" ], "where": [ - 1710 + 1714 ] } ], "match_region_veto_picks": [ - 1734, + 1738, { "distinct_on": [ - 1752, + 1756, "[match_region_veto_picks_select_column!]" ], "limit": [ @@ -132564,19 +134504,19 @@ export default { 38 ], "order_by": [ - 1750, + 1754, "[match_region_veto_picks_order_by!]" ], "where": [ - 1741 + 1745 ] } ], "match_region_veto_picks_aggregate": [ - 1735, + 1739, { "distinct_on": [ - 1752, + 1756, "[match_region_veto_picks_select_column!]" ], "limit": [ @@ -132586,44 +134526,44 @@ export default { 38 ], "order_by": [ - 1750, + 1754, "[match_region_veto_picks_order_by!]" ], "where": [ - 1741 + 1745 ] } ], "match_region_veto_picks_by_pk": [ - 1734, + 1738, { "id": [ - 3818, + 3863, "uuid!" ] } ], "match_region_veto_picks_stream": [ - 1734, + 1738, { "batch_size": [ 38, "Int!" ], "cursor": [ - 1754, + 1758, "[match_region_veto_picks_stream_cursor_input]!" ], "where": [ - 1741 + 1745 ] } ], "match_streams": [ - 1758, + 1762, { "distinct_on": [ - 1786, + 1790, "[match_streams_select_column!]" ], "limit": [ @@ -132633,19 +134573,19 @@ export default { 38 ], "order_by": [ - 1783, + 1787, "[match_streams_order_by!]" ], "where": [ - 1770 + 1774 ] } ], "match_streams_aggregate": [ - 1759, + 1763, { "distinct_on": [ - 1786, + 1790, "[match_streams_select_column!]" ], "limit": [ @@ -132655,44 +134595,44 @@ export default { 38 ], "order_by": [ - 1783, + 1787, "[match_streams_order_by!]" ], "where": [ - 1770 + 1774 ] } ], "match_streams_by_pk": [ - 1758, + 1762, { "id": [ - 3818, + 3863, "uuid!" ] } ], "match_streams_stream": [ - 1758, + 1762, { "batch_size": [ 38, "Int!" ], "cursor": [ - 1796, + 1800, "[match_streams_stream_cursor_input]!" ], "where": [ - 1770 + 1774 ] } ], "match_type_cfgs": [ - 1808, + 1812, { "distinct_on": [ - 1820, + 1824, "[match_type_cfgs_select_column!]" ], "limit": [ @@ -132702,19 +134642,19 @@ export default { 38 ], "order_by": [ - 1818, + 1822, "[match_type_cfgs_order_by!]" ], "where": [ - 1811 + 1815 ] } ], "match_type_cfgs_aggregate": [ - 1809, + 1813, { "distinct_on": [ - 1820, + 1824, "[match_type_cfgs_select_column!]" ], "limit": [ @@ -132724,44 +134664,44 @@ export default { 38 ], "order_by": [ - 1818, + 1822, "[match_type_cfgs_order_by!]" ], "where": [ - 1811 + 1815 ] } ], "match_type_cfgs_by_pk": [ - 1808, + 1812, { "type": [ - 539, + 543, "e_game_cfg_types_enum!" ] } ], "match_type_cfgs_stream": [ - 1808, + 1812, { "batch_size": [ 38, "Int!" ], "cursor": [ - 1822, + 1826, "[match_type_cfgs_stream_cursor_input]!" ], "where": [ - 1811 + 1815 ] } ], "matches": [ - 1826, + 1830, { "distinct_on": [ - 1848, + 1852, "[matches_select_column!]" ], "limit": [ @@ -132771,19 +134711,19 @@ export default { 38 ], "order_by": [ - 1846, + 1850, "[matches_order_by!]" ], "where": [ - 1835 + 1839 ] } ], "matches_aggregate": [ - 1827, + 1831, { "distinct_on": [ - 1848, + 1852, "[matches_select_column!]" ], "limit": [ @@ -132793,44 +134733,44 @@ export default { 38 ], "order_by": [ - 1846, + 1850, "[matches_order_by!]" ], "where": [ - 1835 + 1839 ] } ], "matches_by_pk": [ - 1826, + 1830, { "id": [ - 3818, + 3863, "uuid!" ] } ], "matches_stream": [ - 1826, + 1830, { "batch_size": [ 38, "Int!" ], "cursor": [ - 1856, + 1860, "[matches_stream_cursor_input]!" ], "where": [ - 1835 + 1839 ] } ], "migration_hashes_hashes": [ - 1868, + 1872, { "distinct_on": [ - 1880, + 1884, "[migration_hashes_hashes_select_column!]" ], "limit": [ @@ -132840,19 +134780,19 @@ export default { 38 ], "order_by": [ - 1878, + 1882, "[migration_hashes_hashes_order_by!]" ], "where": [ - 1871 + 1875 ] } ], "migration_hashes_hashes_aggregate": [ - 1869, + 1873, { "distinct_on": [ - 1880, + 1884, "[migration_hashes_hashes_select_column!]" ], "limit": [ @@ -132862,44 +134802,44 @@ export default { 38 ], "order_by": [ - 1878, + 1882, "[migration_hashes_hashes_order_by!]" ], "where": [ - 1871 + 1875 ] } ], "migration_hashes_hashes_by_pk": [ - 1868, + 1872, { "name": [ - 70, + 74, "String!" ] } ], "migration_hashes_hashes_stream": [ - 1868, + 1872, { "batch_size": [ 38, "Int!" ], "cursor": [ - 1882, + 1886, "[migration_hashes_hashes_stream_cursor_input]!" ], "where": [ - 1871 + 1875 ] } ], "my_friends": [ - 1886, + 1890, { "distinct_on": [ - 1911, + 1915, "[my_friends_select_column!]" ], "limit": [ @@ -132909,19 +134849,19 @@ export default { 38 ], "order_by": [ - 1909, + 1913, "[my_friends_order_by!]" ], "where": [ - 1898 + 1902 ] } ], "my_friends_aggregate": [ - 1887, + 1891, { "distinct_on": [ - 1911, + 1915, "[my_friends_select_column!]" ], "limit": [ @@ -132931,35 +134871,35 @@ export default { 38 ], "order_by": [ - 1909, + 1913, "[my_friends_order_by!]" ], "where": [ - 1898 + 1902 ] } ], "my_friends_stream": [ - 1886, + 1890, { "batch_size": [ 38, "Int!" ], "cursor": [ - 1921, + 1925, "[my_friends_stream_cursor_input]!" ], "where": [ - 1898 + 1902 ] } ], "news_articles": [ - 1932, + 1936, { "distinct_on": [ - 1946, + 1950, "[news_articles_select_column!]" ], "limit": [ @@ -132969,19 +134909,19 @@ export default { 38 ], "order_by": [ - 1944, + 1948, "[news_articles_order_by!]" ], "where": [ - 1936 + 1940 ] } ], "news_articles_aggregate": [ - 1933, + 1937, { "distinct_on": [ - 1946, + 1950, "[news_articles_select_column!]" ], "limit": [ @@ -132991,44 +134931,44 @@ export default { 38 ], "order_by": [ - 1944, + 1948, "[news_articles_order_by!]" ], "where": [ - 1936 + 1940 ] } ], "news_articles_by_pk": [ - 1932, + 1936, { "id": [ - 3818, + 3863, "uuid!" ] } ], "news_articles_stream": [ - 1932, + 1936, { "batch_size": [ 38, "Int!" ], "cursor": [ - 1951, + 1955, "[news_articles_stream_cursor_input]!" ], "where": [ - 1936 + 1940 ] } ], "notifications": [ - 1959, + 1963, { "distinct_on": [ - 1987, + 1991, "[notifications_select_column!]" ], "limit": [ @@ -133038,19 +134978,19 @@ export default { 38 ], "order_by": [ - 1984, + 1988, "[notifications_order_by!]" ], "where": [ - 1971 + 1975 ] } ], "notifications_aggregate": [ - 1960, + 1964, { "distinct_on": [ - 1987, + 1991, "[notifications_select_column!]" ], "limit": [ @@ -133060,44 +135000,44 @@ export default { 38 ], "order_by": [ - 1984, + 1988, "[notifications_order_by!]" ], "where": [ - 1971 + 1975 ] } ], "notifications_by_pk": [ - 1959, + 1963, { "id": [ - 3818, + 3863, "uuid!" ] } ], "notifications_stream": [ - 1959, + 1963, { "batch_size": [ 38, "Int!" ], "cursor": [ - 1997, + 2001, "[notifications_stream_cursor_input]!" ], "where": [ - 1971 + 1975 ] } ], "pending_match_import_players": [ - 2012, + 2016, { "distinct_on": [ - 2033, + 2037, "[pending_match_import_players_select_column!]" ], "limit": [ @@ -133107,19 +135047,19 @@ export default { 38 ], "order_by": [ - 2031, + 2035, "[pending_match_import_players_order_by!]" ], "where": [ - 2021 + 2025 ] } ], "pending_match_import_players_aggregate": [ - 2013, + 2017, { "distinct_on": [ - 2033, + 2037, "[pending_match_import_players_select_column!]" ], "limit": [ @@ -133129,48 +135069,48 @@ export default { 38 ], "order_by": [ - 2031, + 2035, "[pending_match_import_players_order_by!]" ], "where": [ - 2021 + 2025 ] } ], "pending_match_import_players_by_pk": [ - 2012, + 2016, { "steam_id": [ - 169, + 173, "bigint!" ], "valve_match_id": [ - 2009, + 2013, "numeric!" ] } ], "pending_match_import_players_stream": [ - 2012, + 2016, { "batch_size": [ 38, "Int!" ], "cursor": [ - 2041, + 2045, "[pending_match_import_players_stream_cursor_input]!" ], "where": [ - 2021 + 2025 ] } ], "pending_match_imports": [ - 2053, + 2057, { "distinct_on": [ - 2068, + 2072, "[pending_match_imports_select_column!]" ], "limit": [ @@ -133180,19 +135120,19 @@ export default { 38 ], "order_by": [ - 2066, + 2070, "[pending_match_imports_order_by!]" ], "where": [ - 2057 + 2061 ] } ], "pending_match_imports_aggregate": [ - 2054, + 2058, { "distinct_on": [ - 2068, + 2072, "[pending_match_imports_select_column!]" ], "limit": [ @@ -133202,44 +135142,44 @@ export default { 38 ], "order_by": [ - 2066, + 2070, "[pending_match_imports_order_by!]" ], "where": [ - 2057 + 2061 ] } ], "pending_match_imports_by_pk": [ - 2053, + 2057, { "valve_match_id": [ - 2009, + 2013, "numeric!" ] } ], "pending_match_imports_stream": [ - 2053, + 2057, { "batch_size": [ 38, "Int!" ], "cursor": [ - 2073, + 2077, "[pending_match_imports_stream_cursor_input]!" ], "where": [ - 2057 + 2061 ] } ], "player_aim_stats_demo": [ - 2081, + 2085, { "distinct_on": [ - 2095, + 2099, "[player_aim_stats_demo_select_column!]" ], "limit": [ @@ -133249,19 +135189,19 @@ export default { 38 ], "order_by": [ - 2093, + 2097, "[player_aim_stats_demo_order_by!]" ], "where": [ - 2085 + 2089 ] } ], "player_aim_stats_demo_aggregate": [ - 2082, + 2086, { "distinct_on": [ - 2095, + 2099, "[player_aim_stats_demo_select_column!]" ], "limit": [ @@ -133271,48 +135211,48 @@ export default { 38 ], "order_by": [ - 2093, + 2097, "[player_aim_stats_demo_order_by!]" ], "where": [ - 2085 + 2089 ] } ], "player_aim_stats_demo_by_pk": [ - 2081, + 2085, { "attacker_steam_id": [ - 169, + 173, "bigint!" ], "match_map_id": [ - 3818, + 3863, "uuid!" ] } ], "player_aim_stats_demo_stream": [ - 2081, + 2085, { "batch_size": [ 38, "Int!" ], "cursor": [ - 2100, + 2104, "[player_aim_stats_demo_stream_cursor_input]!" ], "where": [ - 2085 + 2089 ] } ], "player_aim_weapon_stats": [ - 2108, + 2112, { "distinct_on": [ - 2129, + 2133, "[player_aim_weapon_stats_select_column!]" ], "limit": [ @@ -133322,19 +135262,19 @@ export default { 38 ], "order_by": [ - 2127, + 2131, "[player_aim_weapon_stats_order_by!]" ], "where": [ - 2117 + 2121 ] } ], "player_aim_weapon_stats_aggregate": [ - 2109, + 2113, { "distinct_on": [ - 2129, + 2133, "[player_aim_weapon_stats_select_column!]" ], "limit": [ @@ -133344,52 +135284,52 @@ export default { 38 ], "order_by": [ - 2127, + 2131, "[player_aim_weapon_stats_order_by!]" ], "where": [ - 2117 + 2121 ] } ], "player_aim_weapon_stats_by_pk": [ - 2108, + 2112, { "match_map_id": [ - 3818, + 3863, "uuid!" ], "steam_id": [ - 169, + 173, "bigint!" ], "weapon_class": [ - 70, + 74, "String!" ] } ], "player_aim_weapon_stats_stream": [ - 2108, + 2112, { "batch_size": [ 38, "Int!" ], "cursor": [ - 2137, + 2141, "[player_aim_weapon_stats_stream_cursor_input]!" ], "where": [ - 2117 + 2121 ] } ], "player_assists": [ - 2149, + 2153, { "distinct_on": [ - 2172, + 2176, "[player_assists_select_column!]" ], "limit": [ @@ -133399,19 +135339,19 @@ export default { 38 ], "order_by": [ - 2170, + 2174, "[player_assists_order_by!]" ], "where": [ - 2160 + 2164 ] } ], "player_assists_aggregate": [ - 2150, + 2154, { "distinct_on": [ - 2172, + 2176, "[player_assists_select_column!]" ], "limit": [ @@ -133421,56 +135361,56 @@ export default { 38 ], "order_by": [ - 2170, + 2174, "[player_assists_order_by!]" ], "where": [ - 2160 + 2164 ] } ], "player_assists_by_pk": [ - 2149, + 2153, { "attacked_steam_id": [ - 169, + 173, "bigint!" ], "attacker_steam_id": [ - 169, + 173, "bigint!" ], "match_map_id": [ - 3818, + 3863, "uuid!" ], "time": [ - 3421, + 3466, "timestamptz!" ] } ], "player_assists_stream": [ - 2149, + 2153, { "batch_size": [ 38, "Int!" ], "cursor": [ - 2182, + 2186, "[player_assists_stream_cursor_input]!" ], "where": [ - 2160 + 2164 ] } ], "player_career_stats_v": [ - 2194, + 2198, { "distinct_on": [ - 2202, + 2206, "[player_career_stats_v_select_column!]" ], "limit": [ @@ -133480,19 +135420,19 @@ export default { 38 ], "order_by": [ - 2201, + 2205, "[player_career_stats_v_order_by!]" ], "where": [ - 2198 + 2202 ] } ], "player_career_stats_v_aggregate": [ - 2195, + 2199, { "distinct_on": [ - 2202, + 2206, "[player_career_stats_v_select_column!]" ], "limit": [ @@ -133502,35 +135442,35 @@ export default { 38 ], "order_by": [ - 2201, + 2205, "[player_career_stats_v_order_by!]" ], "where": [ - 2198 + 2202 ] } ], "player_career_stats_v_stream": [ - 2194, + 2198, { "batch_size": [ 38, "Int!" ], "cursor": [ - 2206, + 2210, "[player_career_stats_v_stream_cursor_input]!" ], "where": [ - 2198 + 2202 ] } ], "player_damages": [ - 2212, + 2216, { "distinct_on": [ - 2233, + 2237, "[player_damages_select_column!]" ], "limit": [ @@ -133540,19 +135480,19 @@ export default { 38 ], "order_by": [ - 2231, + 2235, "[player_damages_order_by!]" ], "where": [ - 2221 + 2225 ] } ], "player_damages_aggregate": [ - 2213, + 2217, { "distinct_on": [ - 2233, + 2237, "[player_damages_select_column!]" ], "limit": [ @@ -133562,52 +135502,52 @@ export default { 38 ], "order_by": [ - 2231, + 2235, "[player_damages_order_by!]" ], "where": [ - 2221 + 2225 ] } ], "player_damages_by_pk": [ - 2212, + 2216, { "id": [ - 3818, + 3863, "uuid!" ], "match_map_id": [ - 3818, + 3863, "uuid!" ], "time": [ - 3421, + 3466, "timestamptz!" ] } ], "player_damages_stream": [ - 2212, + 2216, { "batch_size": [ 38, "Int!" ], "cursor": [ - 2241, + 2245, "[player_damages_stream_cursor_input]!" ], "where": [ - 2221 + 2225 ] } ], "player_elo": [ - 2253, + 2257, { "distinct_on": [ - 2267, + 2271, "[player_elo_select_column!]" ], "limit": [ @@ -133617,19 +135557,19 @@ export default { 38 ], "order_by": [ - 2265, + 2269, "[player_elo_order_by!]" ], "where": [ - 2257 + 2261 ] } ], "player_elo_aggregate": [ - 2254, + 2258, { "distinct_on": [ - 2267, + 2271, "[player_elo_select_column!]" ], "limit": [ @@ -133639,52 +135579,52 @@ export default { 38 ], "order_by": [ - 2265, + 2269, "[player_elo_order_by!]" ], "where": [ - 2257 + 2261 ] } ], "player_elo_by_pk": [ - 2253, + 2257, { "match_id": [ - 3818, + 3863, "uuid!" ], "steam_id": [ - 169, + 173, "bigint!" ], "type": [ - 724, + 728, "e_match_types_enum!" ] } ], "player_elo_stream": [ - 2253, + 2257, { "batch_size": [ 38, "Int!" ], "cursor": [ - 2272, + 2276, "[player_elo_stream_cursor_input]!" ], "where": [ - 2257 + 2261 ] } ], "player_faceit_rank_history": [ - 2280, + 2284, { "distinct_on": [ - 2301, + 2305, "[player_faceit_rank_history_select_column!]" ], "limit": [ @@ -133694,19 +135634,19 @@ export default { 38 ], "order_by": [ - 2299, + 2303, "[player_faceit_rank_history_order_by!]" ], "where": [ - 2289 + 2293 ] } ], "player_faceit_rank_history_aggregate": [ - 2281, + 2285, { "distinct_on": [ - 2301, + 2305, "[player_faceit_rank_history_select_column!]" ], "limit": [ @@ -133716,44 +135656,44 @@ export default { 38 ], "order_by": [ - 2299, + 2303, "[player_faceit_rank_history_order_by!]" ], "where": [ - 2289 + 2293 ] } ], "player_faceit_rank_history_by_pk": [ - 2280, + 2284, { "id": [ - 3818, + 3863, "uuid!" ] } ], "player_faceit_rank_history_stream": [ - 2280, + 2284, { "batch_size": [ 38, "Int!" ], "cursor": [ - 2309, + 2313, "[player_faceit_rank_history_stream_cursor_input]!" ], "where": [ - 2289 + 2293 ] } ], "player_flashes": [ - 2321, + 2325, { "distinct_on": [ - 2344, + 2348, "[player_flashes_select_column!]" ], "limit": [ @@ -133763,19 +135703,19 @@ export default { 38 ], "order_by": [ - 2342, + 2346, "[player_flashes_order_by!]" ], "where": [ - 2332 + 2336 ] } ], "player_flashes_aggregate": [ - 2322, + 2326, { "distinct_on": [ - 2344, + 2348, "[player_flashes_select_column!]" ], "limit": [ @@ -133785,56 +135725,56 @@ export default { 38 ], "order_by": [ - 2342, + 2346, "[player_flashes_order_by!]" ], "where": [ - 2332 + 2336 ] } ], "player_flashes_by_pk": [ - 2321, + 2325, { "attacked_steam_id": [ - 169, + 173, "bigint!" ], "attacker_steam_id": [ - 169, + 173, "bigint!" ], "match_map_id": [ - 3818, + 3863, "uuid!" ], "time": [ - 3421, + 3466, "timestamptz!" ] } ], "player_flashes_stream": [ - 2321, + 2325, { "batch_size": [ 38, "Int!" ], "cursor": [ - 2354, + 2358, "[player_flashes_stream_cursor_input]!" ], "where": [ - 2332 + 2336 ] } ], "player_kills": [ - 2366, + 2370, { "distinct_on": [ - 2430, + 2434, "[player_kills_select_column!]" ], "limit": [ @@ -133844,19 +135784,19 @@ export default { 38 ], "order_by": [ - 2428, + 2432, "[player_kills_order_by!]" ], "where": [ - 2377 + 2381 ] } ], "player_kills_aggregate": [ - 2367, + 2371, { "distinct_on": [ - 2430, + 2434, "[player_kills_select_column!]" ], "limit": [ @@ -133866,40 +135806,40 @@ export default { 38 ], "order_by": [ - 2428, + 2432, "[player_kills_order_by!]" ], "where": [ - 2377 + 2381 ] } ], "player_kills_by_pk": [ - 2366, + 2370, { "attacked_steam_id": [ - 169, + 173, "bigint!" ], "attacker_steam_id": [ - 169, + 173, "bigint!" ], "match_map_id": [ - 3818, + 3863, "uuid!" ], "time": [ - 3421, + 3466, "timestamptz!" ] } ], "player_kills_by_weapon": [ - 2378, + 2382, { "distinct_on": [ - 2399, + 2403, "[player_kills_by_weapon_select_column!]" ], "limit": [ @@ -133909,19 +135849,19 @@ export default { 38 ], "order_by": [ - 2397, + 2401, "[player_kills_by_weapon_order_by!]" ], "where": [ - 2387 + 2391 ] } ], "player_kills_by_weapon_aggregate": [ - 2379, + 2383, { "distinct_on": [ - 2399, + 2403, "[player_kills_by_weapon_select_column!]" ], "limit": [ @@ -133931,64 +135871,64 @@ export default { 38 ], "order_by": [ - 2397, + 2401, "[player_kills_by_weapon_order_by!]" ], "where": [ - 2387 + 2391 ] } ], "player_kills_by_weapon_by_pk": [ - 2378, + 2382, { "player_steam_id": [ - 169, + 173, "bigint!" ], "with": [ - 70, + 74, "String!" ] } ], "player_kills_by_weapon_stream": [ - 2378, + 2382, { "batch_size": [ 38, "Int!" ], "cursor": [ - 2407, + 2411, "[player_kills_by_weapon_stream_cursor_input]!" ], "where": [ - 2387 + 2391 ] } ], "player_kills_stream": [ - 2366, + 2370, { "batch_size": [ 38, "Int!" ], "cursor": [ - 2440, + 2444, "[player_kills_stream_cursor_input]!" ], "where": [ - 2377 + 2381 ] } ], "player_leaderboard_rank": [ - 2452, + 2456, { "distinct_on": [ - 2463, + 2467, "[player_leaderboard_rank_select_column!]" ], "limit": [ @@ -133998,19 +135938,19 @@ export default { 38 ], "order_by": [ - 2462, + 2466, "[player_leaderboard_rank_order_by!]" ], "where": [ - 2456 + 2460 ] } ], "player_leaderboard_rank_aggregate": [ - 2453, + 2457, { "distinct_on": [ - 2463, + 2467, "[player_leaderboard_rank_select_column!]" ], "limit": [ @@ -134020,35 +135960,35 @@ export default { 38 ], "order_by": [ - 2462, + 2466, "[player_leaderboard_rank_order_by!]" ], "where": [ - 2456 + 2460 ] } ], "player_leaderboard_rank_stream": [ - 2452, + 2456, { "batch_size": [ 38, "Int!" ], "cursor": [ - 2468, + 2472, "[player_leaderboard_rank_stream_cursor_input]!" ], "where": [ - 2456 + 2460 ] } ], "player_match_map_stats": [ - 2475, + 2479, { "distinct_on": [ - 2496, + 2500, "[player_match_map_stats_select_column!]" ], "limit": [ @@ -134058,19 +135998,19 @@ export default { 38 ], "order_by": [ - 2494, + 2498, "[player_match_map_stats_order_by!]" ], "where": [ - 2484 + 2488 ] } ], "player_match_map_stats_aggregate": [ - 2476, + 2480, { "distinct_on": [ - 2496, + 2500, "[player_match_map_stats_select_column!]" ], "limit": [ @@ -134080,48 +136020,48 @@ export default { 38 ], "order_by": [ - 2494, + 2498, "[player_match_map_stats_order_by!]" ], "where": [ - 2484 + 2488 ] } ], "player_match_map_stats_by_pk": [ - 2475, + 2479, { "match_map_id": [ - 3818, + 3863, "uuid!" ], "steam_id": [ - 169, + 173, "bigint!" ] } ], "player_match_map_stats_stream": [ - 2475, + 2479, { "batch_size": [ 38, "Int!" ], "cursor": [ - 2504, + 2508, "[player_match_map_stats_stream_cursor_input]!" ], "where": [ - 2484 + 2488 ] } ], "player_match_performance_v": [ - 2516, + 2520, { "distinct_on": [ - 2524, + 2528, "[player_match_performance_v_select_column!]" ], "limit": [ @@ -134131,19 +136071,19 @@ export default { 38 ], "order_by": [ - 2523, + 2527, "[player_match_performance_v_order_by!]" ], "where": [ - 2520 + 2524 ] } ], "player_match_performance_v_aggregate": [ - 2517, + 2521, { "distinct_on": [ - 2524, + 2528, "[player_match_performance_v_select_column!]" ], "limit": [ @@ -134153,35 +136093,35 @@ export default { 38 ], "order_by": [ - 2523, + 2527, "[player_match_performance_v_order_by!]" ], "where": [ - 2520 + 2524 ] } ], "player_match_performance_v_stream": [ - 2516, + 2520, { "batch_size": [ 38, "Int!" ], "cursor": [ - 2528, + 2532, "[player_match_performance_v_stream_cursor_input]!" ], "where": [ - 2520 + 2524 ] } ], "player_match_stats_v": [ - 2534, + 2538, { "distinct_on": [ - 2550, + 2554, "[player_match_stats_v_select_column!]" ], "limit": [ @@ -134191,19 +136131,19 @@ export default { 38 ], "order_by": [ - 2549, + 2553, "[player_match_stats_v_order_by!]" ], "where": [ - 2543 + 2547 ] } ], "player_match_stats_v_aggregate": [ - 2535, + 2539, { "distinct_on": [ - 2550, + 2554, "[player_match_stats_v_select_column!]" ], "limit": [ @@ -134213,35 +136153,35 @@ export default { 38 ], "order_by": [ - 2549, + 2553, "[player_match_stats_v_order_by!]" ], "where": [ - 2543 + 2547 ] } ], "player_match_stats_v_stream": [ - 2534, + 2538, { "batch_size": [ 38, "Int!" ], "cursor": [ - 2557, + 2561, "[player_match_stats_v_stream_cursor_input]!" ], "where": [ - 2543 + 2547 ] } ], "player_objectives": [ - 2567, + 2571, { "distinct_on": [ - 2588, + 2592, "[player_objectives_select_column!]" ], "limit": [ @@ -134251,19 +136191,19 @@ export default { 38 ], "order_by": [ - 2586, + 2590, "[player_objectives_order_by!]" ], "where": [ - 2576 + 2580 ] } ], "player_objectives_aggregate": [ - 2568, + 2572, { "distinct_on": [ - 2588, + 2592, "[player_objectives_select_column!]" ], "limit": [ @@ -134273,52 +136213,52 @@ export default { 38 ], "order_by": [ - 2586, + 2590, "[player_objectives_order_by!]" ], "where": [ - 2576 + 2580 ] } ], "player_objectives_by_pk": [ - 2567, + 2571, { "match_map_id": [ - 3818, + 3863, "uuid!" ], "player_steam_id": [ - 169, + 173, "bigint!" ], "time": [ - 3421, + 3466, "timestamptz!" ] } ], "player_objectives_stream": [ - 2567, + 2571, { "batch_size": [ 38, "Int!" ], "cursor": [ - 2596, + 2600, "[player_objectives_stream_cursor_input]!" ], "where": [ - 2576 + 2580 ] } ], "player_performance_v": [ - 2608, + 2612, { "distinct_on": [ - 2616, + 2620, "[player_performance_v_select_column!]" ], "limit": [ @@ -134328,19 +136268,19 @@ export default { 38 ], "order_by": [ - 2615, + 2619, "[player_performance_v_order_by!]" ], "where": [ - 2612 + 2616 ] } ], "player_performance_v_aggregate": [ - 2609, + 2613, { "distinct_on": [ - 2616, + 2620, "[player_performance_v_select_column!]" ], "limit": [ @@ -134350,35 +136290,35 @@ export default { 38 ], "order_by": [ - 2615, + 2619, "[player_performance_v_order_by!]" ], "where": [ - 2612 + 2616 ] } ], "player_performance_v_stream": [ - 2608, + 2612, { "batch_size": [ 38, "Int!" ], "cursor": [ - 2620, + 2624, "[player_performance_v_stream_cursor_input]!" ], "where": [ - 2612 + 2616 ] } ], "player_premier_rank_history": [ - 2626, + 2630, { "distinct_on": [ - 2647, + 2651, "[player_premier_rank_history_select_column!]" ], "limit": [ @@ -134388,19 +136328,19 @@ export default { 38 ], "order_by": [ - 2645, + 2649, "[player_premier_rank_history_order_by!]" ], "where": [ - 2635 + 2639 ] } ], "player_premier_rank_history_aggregate": [ - 2627, + 2631, { "distinct_on": [ - 2647, + 2651, "[player_premier_rank_history_select_column!]" ], "limit": [ @@ -134410,44 +136350,44 @@ export default { 38 ], "order_by": [ - 2645, + 2649, "[player_premier_rank_history_order_by!]" ], "where": [ - 2635 + 2639 ] } ], "player_premier_rank_history_by_pk": [ - 2626, + 2630, { "id": [ - 3818, + 3863, "uuid!" ] } ], "player_premier_rank_history_stream": [ - 2626, + 2630, { "batch_size": [ 38, "Int!" ], "cursor": [ - 2655, + 2659, "[player_premier_rank_history_stream_cursor_input]!" ], "where": [ - 2635 + 2639 ] } ], "player_sanctions": [ - 2667, + 2671, { "distinct_on": [ - 2688, + 2692, "[player_sanctions_select_column!]" ], "limit": [ @@ -134457,19 +136397,19 @@ export default { 38 ], "order_by": [ - 2686, + 2690, "[player_sanctions_order_by!]" ], "where": [ - 2676 + 2680 ] } ], "player_sanctions_aggregate": [ - 2668, + 2672, { "distinct_on": [ - 2688, + 2692, "[player_sanctions_select_column!]" ], "limit": [ @@ -134479,48 +136419,48 @@ export default { 38 ], "order_by": [ - 2686, + 2690, "[player_sanctions_order_by!]" ], "where": [ - 2676 + 2680 ] } ], "player_sanctions_by_pk": [ - 2667, + 2671, { "created_at": [ - 3421, + 3466, "timestamptz!" ], "id": [ - 3818, + 3863, "uuid!" ] } ], "player_sanctions_stream": [ - 2667, + 2671, { "batch_size": [ 38, "Int!" ], "cursor": [ - 2696, + 2700, "[player_sanctions_stream_cursor_input]!" ], "where": [ - 2676 + 2680 ] } ], "player_stats": [ - 2708, + 2712, { "distinct_on": [ - 2723, + 2727, "[player_stats_select_column!]" ], "limit": [ @@ -134530,19 +136470,19 @@ export default { 38 ], "order_by": [ - 2721, + 2725, "[player_stats_order_by!]" ], "where": [ - 2712 + 2716 ] } ], "player_stats_aggregate": [ - 2709, + 2713, { "distinct_on": [ - 2723, + 2727, "[player_stats_select_column!]" ], "limit": [ @@ -134552,44 +136492,113 @@ export default { 38 ], "order_by": [ - 2721, + 2725, "[player_stats_order_by!]" ], "where": [ - 2712 + 2716 ] } ], "player_stats_by_pk": [ - 2708, + 2712, { "player_steam_id": [ - 169, + 173, "bigint!" ] } ], "player_stats_stream": [ - 2708, + 2712, { "batch_size": [ 38, "Int!" ], "cursor": [ - 2728, + 2732, "[player_stats_stream_cursor_input]!" ], "where": [ - 2712 + 2716 + ] + } + ], + "player_steam_bot_friend": [ + 2740, + { + "distinct_on": [ + 2759, + "[player_steam_bot_friend_select_column!]" + ], + "limit": [ + 38 + ], + "offset": [ + 38 + ], + "order_by": [ + 2756, + "[player_steam_bot_friend_order_by!]" + ], + "where": [ + 2745 + ] + } + ], + "player_steam_bot_friend_aggregate": [ + 2741, + { + "distinct_on": [ + 2759, + "[player_steam_bot_friend_select_column!]" + ], + "limit": [ + 38 + ], + "offset": [ + 38 + ], + "order_by": [ + 2756, + "[player_steam_bot_friend_order_by!]" + ], + "where": [ + 2745 + ] + } + ], + "player_steam_bot_friend_by_pk": [ + 2740, + { + "steam_id": [ + 173, + "bigint!" + ] + } + ], + "player_steam_bot_friend_stream": [ + 2740, + { + "batch_size": [ + 38, + "Int!" + ], + "cursor": [ + 2764, + "[player_steam_bot_friend_stream_cursor_input]!" + ], + "where": [ + 2745 ] } ], "player_steam_match_auth": [ - 2736, + 2772, { "distinct_on": [ - 2750, + 2786, "[player_steam_match_auth_select_column!]" ], "limit": [ @@ -134599,19 +136608,19 @@ export default { 38 ], "order_by": [ - 2748, + 2784, "[player_steam_match_auth_order_by!]" ], "where": [ - 2740 + 2776 ] } ], "player_steam_match_auth_aggregate": [ - 2737, + 2773, { "distinct_on": [ - 2750, + 2786, "[player_steam_match_auth_select_column!]" ], "limit": [ @@ -134621,44 +136630,44 @@ export default { 38 ], "order_by": [ - 2748, + 2784, "[player_steam_match_auth_order_by!]" ], "where": [ - 2740 + 2776 ] } ], "player_steam_match_auth_by_pk": [ - 2736, + 2772, { "steam_id": [ - 169, + 173, "bigint!" ] } ], "player_steam_match_auth_stream": [ - 2736, + 2772, { "batch_size": [ 38, "Int!" ], "cursor": [ - 2755, + 2791, "[player_steam_match_auth_stream_cursor_input]!" ], "where": [ - 2740 + 2776 ] } ], "player_unused_utility": [ - 2763, + 2799, { "distinct_on": [ - 2784, + 2820, "[player_unused_utility_select_column!]" ], "limit": [ @@ -134668,19 +136677,19 @@ export default { 38 ], "order_by": [ - 2782, + 2818, "[player_unused_utility_order_by!]" ], "where": [ - 2772 + 2808 ] } ], "player_unused_utility_aggregate": [ - 2764, + 2800, { "distinct_on": [ - 2784, + 2820, "[player_unused_utility_select_column!]" ], "limit": [ @@ -134690,48 +136699,48 @@ export default { 38 ], "order_by": [ - 2782, + 2818, "[player_unused_utility_order_by!]" ], "where": [ - 2772 + 2808 ] } ], "player_unused_utility_by_pk": [ - 2763, + 2799, { "match_map_id": [ - 3818, + 3863, "uuid!" ], "player_steam_id": [ - 169, + 173, "bigint!" ] } ], "player_unused_utility_stream": [ - 2763, + 2799, { "batch_size": [ 38, "Int!" ], "cursor": [ - 2792, + 2828, "[player_unused_utility_stream_cursor_input]!" ], "where": [ - 2772 + 2808 ] } ], "player_utility": [ - 2804, + 2840, { "distinct_on": [ - 2825, + 2861, "[player_utility_select_column!]" ], "limit": [ @@ -134741,19 +136750,19 @@ export default { 38 ], "order_by": [ - 2823, + 2859, "[player_utility_order_by!]" ], "where": [ - 2813 + 2849 ] } ], "player_utility_aggregate": [ - 2805, + 2841, { "distinct_on": [ - 2825, + 2861, "[player_utility_select_column!]" ], "limit": [ @@ -134763,52 +136772,52 @@ export default { 38 ], "order_by": [ - 2823, + 2859, "[player_utility_order_by!]" ], "where": [ - 2813 + 2849 ] } ], "player_utility_by_pk": [ - 2804, + 2840, { "attacker_steam_id": [ - 169, + 173, "bigint!" ], "match_map_id": [ - 3818, + 3863, "uuid!" ], "time": [ - 3421, + 3466, "timestamptz!" ] } ], "player_utility_stream": [ - 2804, + 2840, { "batch_size": [ 38, "Int!" ], "cursor": [ - 2833, + 2869, "[player_utility_stream_cursor_input]!" ], "where": [ - 2813 + 2849 ] } ], "player_weapon_stats_v": [ - 2845, + 2881, { "distinct_on": [ - 2861, + 2897, "[player_weapon_stats_v_select_column!]" ], "limit": [ @@ -134818,19 +136827,19 @@ export default { 38 ], "order_by": [ - 2860, + 2896, "[player_weapon_stats_v_order_by!]" ], "where": [ - 2854 + 2890 ] } ], "player_weapon_stats_v_aggregate": [ - 2846, + 2882, { "distinct_on": [ - 2861, + 2897, "[player_weapon_stats_v_select_column!]" ], "limit": [ @@ -134840,35 +136849,35 @@ export default { 38 ], "order_by": [ - 2860, + 2896, "[player_weapon_stats_v_order_by!]" ], "where": [ - 2854 + 2890 ] } ], "player_weapon_stats_v_stream": [ - 2845, + 2881, { "batch_size": [ 38, "Int!" ], "cursor": [ - 2868, + 2904, "[player_weapon_stats_v_stream_cursor_input]!" ], "where": [ - 2854 + 2890 ] } ], "players": [ - 2878, + 2914, { "distinct_on": [ - 2893, + 2929, "[players_select_column!]" ], "limit": [ @@ -134878,19 +136887,19 @@ export default { 38 ], "order_by": [ - 2891, + 2927, "[players_order_by!]" ], "where": [ - 2882 + 2918 ] } ], "players_aggregate": [ - 2879, + 2915, { "distinct_on": [ - 2893, + 2929, "[players_select_column!]" ], "limit": [ @@ -134900,44 +136909,44 @@ export default { 38 ], "order_by": [ - 2891, + 2927, "[players_order_by!]" ], "where": [ - 2882 + 2918 ] } ], "players_by_pk": [ - 2878, + 2914, { "steam_id": [ - 169, + 173, "bigint!" ] } ], "players_stream": [ - 2878, + 2914, { "batch_size": [ 38, "Int!" ], "cursor": [ - 2898, + 2934, "[players_stream_cursor_input]!" ], "where": [ - 2882 + 2918 ] } ], "plugin_versions": [ - 2906, + 2942, { "distinct_on": [ - 2920, + 2956, "[plugin_versions_select_column!]" ], "limit": [ @@ -134947,19 +136956,19 @@ export default { 38 ], "order_by": [ - 2918, + 2954, "[plugin_versions_order_by!]" ], "where": [ - 2910 + 2946 ] } ], "plugin_versions_aggregate": [ - 2907, + 2943, { "distinct_on": [ - 2920, + 2956, "[plugin_versions_select_column!]" ], "limit": [ @@ -134969,44 +136978,44 @@ export default { 38 ], "order_by": [ - 2918, + 2954, "[plugin_versions_order_by!]" ], "where": [ - 2910 + 2946 ] } ], "plugin_versions_by_pk": [ - 2906, + 2942, { "version": [ - 70, + 74, "String!" ] } ], "plugin_versions_stream": [ - 2906, + 2942, { "batch_size": [ 38, "Int!" ], "cursor": [ - 2925, + 2961, "[plugin_versions_stream_cursor_input]!" ], "where": [ - 2910 + 2946 ] } ], "server_regions": [ - 2934, + 2970, { "distinct_on": [ - 2948, + 2984, "[server_regions_select_column!]" ], "limit": [ @@ -135016,19 +137025,19 @@ export default { 38 ], "order_by": [ - 2946, + 2982, "[server_regions_order_by!]" ], "where": [ - 2938 + 2974 ] } ], "server_regions_aggregate": [ - 2935, + 2971, { "distinct_on": [ - 2948, + 2984, "[server_regions_select_column!]" ], "limit": [ @@ -135038,44 +137047,44 @@ export default { 38 ], "order_by": [ - 2946, + 2982, "[server_regions_order_by!]" ], "where": [ - 2938 + 2974 ] } ], "server_regions_by_pk": [ - 2934, + 2970, { "value": [ - 70, + 74, "String!" ] } ], "server_regions_stream": [ - 2934, + 2970, { "batch_size": [ 38, "Int!" ], "cursor": [ - 2953, + 2989, "[server_regions_stream_cursor_input]!" ], "where": [ - 2938 + 2974 ] } ], "servers": [ - 2961, + 2997, { "distinct_on": [ - 2985, + 3021, "[servers_select_column!]" ], "limit": [ @@ -135085,19 +137094,19 @@ export default { 38 ], "order_by": [ - 2983, + 3019, "[servers_order_by!]" ], "where": [ - 2972 + 3008 ] } ], "servers_aggregate": [ - 2962, + 2998, { "distinct_on": [ - 2985, + 3021, "[servers_select_column!]" ], "limit": [ @@ -135107,44 +137116,44 @@ export default { 38 ], "order_by": [ - 2983, + 3019, "[servers_order_by!]" ], "where": [ - 2972 + 3008 ] } ], "servers_by_pk": [ - 2961, + 2997, { "id": [ - 3818, + 3863, "uuid!" ] } ], "servers_stream": [ - 2961, + 2997, { "batch_size": [ 38, "Int!" ], "cursor": [ - 2995, + 3031, "[servers_stream_cursor_input]!" ], "where": [ - 2972 + 3008 ] } ], "settings": [ - 3007, + 3043, { "distinct_on": [ - 3019, + 3055, "[settings_select_column!]" ], "limit": [ @@ -135154,19 +137163,19 @@ export default { 38 ], "order_by": [ - 3017, + 3053, "[settings_order_by!]" ], "where": [ - 3010 + 3046 ] } ], "settings_aggregate": [ - 3008, + 3044, { "distinct_on": [ - 3019, + 3055, "[settings_select_column!]" ], "limit": [ @@ -135176,44 +137185,44 @@ export default { 38 ], "order_by": [ - 3017, + 3053, "[settings_order_by!]" ], "where": [ - 3010 + 3046 ] } ], "settings_by_pk": [ - 3007, + 3043, { "name": [ - 70, + 74, "String!" ] } ], "settings_stream": [ - 3007, + 3043, { "batch_size": [ 38, "Int!" ], "cursor": [ - 3021, + 3057, "[settings_stream_cursor_input]!" ], "where": [ - 3010 + 3046 ] } ], "steam_account_claims": [ - 3025, + 3061, { "distinct_on": [ - 3043, + 3079, "[steam_account_claims_select_column!]" ], "limit": [ @@ -135223,19 +137232,19 @@ export default { 38 ], "order_by": [ - 3041, + 3077, "[steam_account_claims_order_by!]" ], "where": [ - 3032 + 3068 ] } ], "steam_account_claims_aggregate": [ - 3026, + 3062, { "distinct_on": [ - 3043, + 3079, "[steam_account_claims_select_column!]" ], "limit": [ @@ -135245,44 +137254,44 @@ export default { 38 ], "order_by": [ - 3041, + 3077, "[steam_account_claims_order_by!]" ], "where": [ - 3032 + 3068 ] } ], "steam_account_claims_by_pk": [ - 3025, + 3061, { "id": [ - 3818, + 3863, "uuid!" ] } ], "steam_account_claims_stream": [ - 3025, + 3061, { "batch_size": [ 38, "Int!" ], "cursor": [ - 3045, + 3081, "[steam_account_claims_stream_cursor_input]!" ], "where": [ - 3032 + 3068 ] } ], "steam_accounts": [ - 3049, + 3085, { "distinct_on": [ - 3062, + 3100, "[steam_accounts_select_column!]" ], "limit": [ @@ -135292,19 +137301,19 @@ export default { 38 ], "order_by": [ - 3060, + 3098, "[steam_accounts_order_by!]" ], "where": [ - 3052 + 3089 ] } ], "steam_accounts_aggregate": [ - 3050, + 3086, { "distinct_on": [ - 3062, + 3100, "[steam_accounts_select_column!]" ], "limit": [ @@ -135314,44 +137323,44 @@ export default { 38 ], "order_by": [ - 3060, + 3098, "[steam_accounts_order_by!]" ], "where": [ - 3052 + 3089 ] } ], "steam_accounts_by_pk": [ - 3049, + 3085, { "id": [ - 3818, + 3863, "uuid!" ] } ], "steam_accounts_stream": [ - 3049, + 3085, { "batch_size": [ 38, "Int!" ], "cursor": [ - 3064, + 3105, "[steam_accounts_stream_cursor_input]!" ], "where": [ - 3052 + 3089 ] } ], "system_alerts": [ - 3068, + 3113, { "distinct_on": [ - 3082, + 3127, "[system_alerts_select_column!]" ], "limit": [ @@ -135361,19 +137370,19 @@ export default { 38 ], "order_by": [ - 3080, + 3125, "[system_alerts_order_by!]" ], "where": [ - 3072 + 3117 ] } ], "system_alerts_aggregate": [ - 3069, + 3114, { "distinct_on": [ - 3082, + 3127, "[system_alerts_select_column!]" ], "limit": [ @@ -135383,44 +137392,44 @@ export default { 38 ], "order_by": [ - 3080, + 3125, "[system_alerts_order_by!]" ], "where": [ - 3072 + 3117 ] } ], "system_alerts_by_pk": [ - 3068, + 3113, { "id": [ - 3818, + 3863, "uuid!" ] } ], "system_alerts_stream": [ - 3068, + 3113, { "batch_size": [ 38, "Int!" ], "cursor": [ - 3087, + 3132, "[system_alerts_stream_cursor_input]!" ], "where": [ - 3072 + 3117 ] } ], "team_invites": [ - 3095, + 3140, { "distinct_on": [ - 3116, + 3161, "[team_invites_select_column!]" ], "limit": [ @@ -135430,19 +137439,19 @@ export default { 38 ], "order_by": [ - 3114, + 3159, "[team_invites_order_by!]" ], "where": [ - 3104 + 3149 ] } ], "team_invites_aggregate": [ - 3096, + 3141, { "distinct_on": [ - 3116, + 3161, "[team_invites_select_column!]" ], "limit": [ @@ -135452,44 +137461,44 @@ export default { 38 ], "order_by": [ - 3114, + 3159, "[team_invites_order_by!]" ], "where": [ - 3104 + 3149 ] } ], "team_invites_by_pk": [ - 3095, + 3140, { "id": [ - 3818, + 3863, "uuid!" ] } ], "team_invites_stream": [ - 3095, + 3140, { "batch_size": [ 38, "Int!" ], "cursor": [ - 3124, + 3169, "[team_invites_stream_cursor_input]!" ], "where": [ - 3104 + 3149 ] } ], "team_roster": [ - 3136, + 3181, { "distinct_on": [ - 3159, + 3204, "[team_roster_select_column!]" ], "limit": [ @@ -135499,19 +137508,19 @@ export default { 38 ], "order_by": [ - 3157, + 3202, "[team_roster_order_by!]" ], "where": [ - 3147 + 3192 ] } ], "team_roster_aggregate": [ - 3137, + 3182, { "distinct_on": [ - 3159, + 3204, "[team_roster_select_column!]" ], "limit": [ @@ -135521,48 +137530,48 @@ export default { 38 ], "order_by": [ - 3157, + 3202, "[team_roster_order_by!]" ], "where": [ - 3147 + 3192 ] } ], "team_roster_by_pk": [ - 3136, + 3181, { "player_steam_id": [ - 169, + 173, "bigint!" ], "team_id": [ - 3818, + 3863, "uuid!" ] } ], "team_roster_stream": [ - 3136, + 3181, { "batch_size": [ 38, "Int!" ], "cursor": [ - 3169, + 3214, "[team_roster_stream_cursor_input]!" ], "where": [ - 3147 + 3192 ] } ], "team_scrim_alerts": [ - 3181, + 3226, { "distinct_on": [ - 3195, + 3240, "[team_scrim_alerts_select_column!]" ], "limit": [ @@ -135572,19 +137581,19 @@ export default { 38 ], "order_by": [ - 3193, + 3238, "[team_scrim_alerts_order_by!]" ], "where": [ - 3185 + 3230 ] } ], "team_scrim_alerts_aggregate": [ - 3182, + 3227, { "distinct_on": [ - 3195, + 3240, "[team_scrim_alerts_select_column!]" ], "limit": [ @@ -135594,44 +137603,44 @@ export default { 38 ], "order_by": [ - 3193, + 3238, "[team_scrim_alerts_order_by!]" ], "where": [ - 3185 + 3230 ] } ], "team_scrim_alerts_by_pk": [ - 3181, + 3226, { "id": [ - 3818, + 3863, "uuid!" ] } ], "team_scrim_alerts_stream": [ - 3181, + 3226, { "batch_size": [ 38, "Int!" ], "cursor": [ - 3200, + 3245, "[team_scrim_alerts_stream_cursor_input]!" ], "where": [ - 3185 + 3230 ] } ], "team_scrim_availability": [ - 3208, + 3253, { "distinct_on": [ - 3228, + 3273, "[team_scrim_availability_select_column!]" ], "limit": [ @@ -135641,19 +137650,19 @@ export default { 38 ], "order_by": [ - 3226, + 3271, "[team_scrim_availability_order_by!]" ], "where": [ - 3217 + 3262 ] } ], "team_scrim_availability_aggregate": [ - 3209, + 3254, { "distinct_on": [ - 3228, + 3273, "[team_scrim_availability_select_column!]" ], "limit": [ @@ -135663,44 +137672,44 @@ export default { 38 ], "order_by": [ - 3226, + 3271, "[team_scrim_availability_order_by!]" ], "where": [ - 3217 + 3262 ] } ], "team_scrim_availability_by_pk": [ - 3208, + 3253, { "id": [ - 3818, + 3863, "uuid!" ] } ], "team_scrim_availability_stream": [ - 3208, + 3253, { "batch_size": [ 38, "Int!" ], "cursor": [ - 3232, + 3277, "[team_scrim_availability_stream_cursor_input]!" ], "where": [ - 3217 + 3262 ] } ], "team_scrim_request_proposals": [ - 3236, + 3281, { "distinct_on": [ - 3257, + 3302, "[team_scrim_request_proposals_select_column!]" ], "limit": [ @@ -135710,19 +137719,19 @@ export default { 38 ], "order_by": [ - 3255, + 3300, "[team_scrim_request_proposals_order_by!]" ], "where": [ - 3245 + 3290 ] } ], "team_scrim_request_proposals_aggregate": [ - 3237, + 3282, { "distinct_on": [ - 3257, + 3302, "[team_scrim_request_proposals_select_column!]" ], "limit": [ @@ -135732,44 +137741,44 @@ export default { 38 ], "order_by": [ - 3255, + 3300, "[team_scrim_request_proposals_order_by!]" ], "where": [ - 3245 + 3290 ] } ], "team_scrim_request_proposals_by_pk": [ - 3236, + 3281, { "id": [ - 3818, + 3863, "uuid!" ] } ], "team_scrim_request_proposals_stream": [ - 3236, + 3281, { "batch_size": [ 38, "Int!" ], "cursor": [ - 3265, + 3310, "[team_scrim_request_proposals_stream_cursor_input]!" ], "where": [ - 3245 + 3290 ] } ], "team_scrim_requests": [ - 3277, + 3322, { "distinct_on": [ - 3301, + 3346, "[team_scrim_requests_select_column!]" ], "limit": [ @@ -135779,19 +137788,19 @@ export default { 38 ], "order_by": [ - 3299, + 3344, "[team_scrim_requests_order_by!]" ], "where": [ - 3288 + 3333 ] } ], "team_scrim_requests_aggregate": [ - 3278, + 3323, { "distinct_on": [ - 3301, + 3346, "[team_scrim_requests_select_column!]" ], "limit": [ @@ -135801,44 +137810,44 @@ export default { 38 ], "order_by": [ - 3299, + 3344, "[team_scrim_requests_order_by!]" ], "where": [ - 3288 + 3333 ] } ], "team_scrim_requests_by_pk": [ - 3277, + 3322, { "id": [ - 3818, + 3863, "uuid!" ] } ], "team_scrim_requests_stream": [ - 3277, + 3322, { "batch_size": [ 38, "Int!" ], "cursor": [ - 3311, + 3356, "[team_scrim_requests_stream_cursor_input]!" ], "where": [ - 3288 + 3333 ] } ], "team_scrim_settings": [ - 3323, + 3368, { "distinct_on": [ - 3338, + 3383, "[team_scrim_settings_select_column!]" ], "limit": [ @@ -135848,19 +137857,19 @@ export default { 38 ], "order_by": [ - 3336, + 3381, "[team_scrim_settings_order_by!]" ], "where": [ - 3327 + 3372 ] } ], "team_scrim_settings_aggregate": [ - 3324, + 3369, { "distinct_on": [ - 3338, + 3383, "[team_scrim_settings_select_column!]" ], "limit": [ @@ -135870,44 +137879,44 @@ export default { 38 ], "order_by": [ - 3336, + 3381, "[team_scrim_settings_order_by!]" ], "where": [ - 3327 + 3372 ] } ], "team_scrim_settings_by_pk": [ - 3323, + 3368, { "id": [ - 3818, + 3863, "uuid!" ] } ], "team_scrim_settings_stream": [ - 3323, + 3368, { "batch_size": [ 38, "Int!" ], "cursor": [ - 3343, + 3388, "[team_scrim_settings_stream_cursor_input]!" ], "where": [ - 3327 + 3372 ] } ], "team_suggestions": [ - 3351, + 3396, { "distinct_on": [ - 3365, + 3410, "[team_suggestions_select_column!]" ], "limit": [ @@ -135917,19 +137926,19 @@ export default { 38 ], "order_by": [ - 3363, + 3408, "[team_suggestions_order_by!]" ], "where": [ - 3355 + 3400 ] } ], "team_suggestions_aggregate": [ - 3352, + 3397, { "distinct_on": [ - 3365, + 3410, "[team_suggestions_select_column!]" ], "limit": [ @@ -135939,44 +137948,44 @@ export default { 38 ], "order_by": [ - 3363, + 3408, "[team_suggestions_order_by!]" ], "where": [ - 3355 + 3400 ] } ], "team_suggestions_by_pk": [ - 3351, + 3396, { "id": [ - 3818, + 3863, "uuid!" ] } ], "team_suggestions_stream": [ - 3351, + 3396, { "batch_size": [ 38, "Int!" ], "cursor": [ - 3370, + 3415, "[team_suggestions_stream_cursor_input]!" ], "where": [ - 3355 + 3400 ] } ], "teams": [ - 3378, + 3423, { "distinct_on": [ - 3400, + 3445, "[teams_select_column!]" ], "limit": [ @@ -135986,19 +137995,19 @@ export default { 38 ], "order_by": [ - 3398, + 3443, "[teams_order_by!]" ], "where": [ - 3387 + 3432 ] } ], "teams_aggregate": [ - 3379, + 3424, { "distinct_on": [ - 3400, + 3445, "[teams_select_column!]" ], "limit": [ @@ -136008,44 +138017,44 @@ export default { 38 ], "order_by": [ - 3398, + 3443, "[teams_order_by!]" ], "where": [ - 3387 + 3432 ] } ], "teams_by_pk": [ - 3378, + 3423, { "id": [ - 3818, + 3863, "uuid!" ] } ], "teams_stream": [ - 3378, + 3423, { "batch_size": [ 38, "Int!" ], "cursor": [ - 3408, + 3453, "[teams_stream_cursor_input]!" ], "where": [ - 3387 + 3432 ] } ], "tournament_brackets": [ - 3423, + 3468, { "distinct_on": [ - 3447, + 3492, "[tournament_brackets_select_column!]" ], "limit": [ @@ -136055,19 +138064,19 @@ export default { 38 ], "order_by": [ - 3445, + 3490, "[tournament_brackets_order_by!]" ], "where": [ - 3434 + 3479 ] } ], "tournament_brackets_aggregate": [ - 3424, + 3469, { "distinct_on": [ - 3447, + 3492, "[tournament_brackets_select_column!]" ], "limit": [ @@ -136077,44 +138086,44 @@ export default { 38 ], "order_by": [ - 3445, + 3490, "[tournament_brackets_order_by!]" ], "where": [ - 3434 + 3479 ] } ], "tournament_brackets_by_pk": [ - 3423, + 3468, { "id": [ - 3818, + 3863, "uuid!" ] } ], "tournament_brackets_stream": [ - 3423, + 3468, { "batch_size": [ 38, "Int!" ], "cursor": [ - 3457, + 3502, "[tournament_brackets_stream_cursor_input]!" ], "where": [ - 3434 + 3479 ] } ], "tournament_organizers": [ - 3469, + 3514, { "distinct_on": [ - 3490, + 3535, "[tournament_organizers_select_column!]" ], "limit": [ @@ -136124,19 +138133,19 @@ export default { 38 ], "order_by": [ - 3488, + 3533, "[tournament_organizers_order_by!]" ], "where": [ - 3478 + 3523 ] } ], "tournament_organizers_aggregate": [ - 3470, + 3515, { "distinct_on": [ - 3490, + 3535, "[tournament_organizers_select_column!]" ], "limit": [ @@ -136146,48 +138155,48 @@ export default { 38 ], "order_by": [ - 3488, + 3533, "[tournament_organizers_order_by!]" ], "where": [ - 3478 + 3523 ] } ], "tournament_organizers_by_pk": [ - 3469, + 3514, { "steam_id": [ - 169, + 173, "bigint!" ], "tournament_id": [ - 3818, + 3863, "uuid!" ] } ], "tournament_organizers_stream": [ - 3469, + 3514, { "batch_size": [ 38, "Int!" ], "cursor": [ - 3498, + 3543, "[tournament_organizers_stream_cursor_input]!" ], "where": [ - 3478 + 3523 ] } ], "tournament_stages": [ - 3510, + 3555, { "distinct_on": [ - 3539, + 3584, "[tournament_stages_select_column!]" ], "limit": [ @@ -136197,19 +138206,19 @@ export default { 38 ], "order_by": [ - 3536, + 3581, "[tournament_stages_order_by!]" ], "where": [ - 3522 + 3567 ] } ], "tournament_stages_aggregate": [ - 3511, + 3556, { "distinct_on": [ - 3539, + 3584, "[tournament_stages_select_column!]" ], "limit": [ @@ -136219,44 +138228,44 @@ export default { 38 ], "order_by": [ - 3536, + 3581, "[tournament_stages_order_by!]" ], "where": [ - 3522 + 3567 ] } ], "tournament_stages_by_pk": [ - 3510, + 3555, { "id": [ - 3818, + 3863, "uuid!" ] } ], "tournament_stages_stream": [ - 3510, + 3555, { "batch_size": [ 38, "Int!" ], "cursor": [ - 3549, + 3594, "[tournament_stages_stream_cursor_input]!" ], "where": [ - 3522 + 3567 ] } ], "tournament_team_invites": [ - 3561, + 3606, { "distinct_on": [ - 3582, + 3627, "[tournament_team_invites_select_column!]" ], "limit": [ @@ -136266,19 +138275,19 @@ export default { 38 ], "order_by": [ - 3580, + 3625, "[tournament_team_invites_order_by!]" ], "where": [ - 3570 + 3615 ] } ], "tournament_team_invites_aggregate": [ - 3562, + 3607, { "distinct_on": [ - 3582, + 3627, "[tournament_team_invites_select_column!]" ], "limit": [ @@ -136288,44 +138297,44 @@ export default { 38 ], "order_by": [ - 3580, + 3625, "[tournament_team_invites_order_by!]" ], "where": [ - 3570 + 3615 ] } ], "tournament_team_invites_by_pk": [ - 3561, + 3606, { "id": [ - 3818, + 3863, "uuid!" ] } ], "tournament_team_invites_stream": [ - 3561, + 3606, { "batch_size": [ 38, "Int!" ], "cursor": [ - 3590, + 3635, "[tournament_team_invites_stream_cursor_input]!" ], "where": [ - 3570 + 3615 ] } ], "tournament_team_roster": [ - 3602, + 3647, { "distinct_on": [ - 3623, + 3668, "[tournament_team_roster_select_column!]" ], "limit": [ @@ -136335,19 +138344,19 @@ export default { 38 ], "order_by": [ - 3621, + 3666, "[tournament_team_roster_order_by!]" ], "where": [ - 3611 + 3656 ] } ], "tournament_team_roster_aggregate": [ - 3603, + 3648, { "distinct_on": [ - 3623, + 3668, "[tournament_team_roster_select_column!]" ], "limit": [ @@ -136357,48 +138366,48 @@ export default { 38 ], "order_by": [ - 3621, + 3666, "[tournament_team_roster_order_by!]" ], "where": [ - 3611 + 3656 ] } ], "tournament_team_roster_by_pk": [ - 3602, + 3647, { "player_steam_id": [ - 169, + 173, "bigint!" ], "tournament_id": [ - 3818, + 3863, "uuid!" ] } ], "tournament_team_roster_stream": [ - 3602, + 3647, { "batch_size": [ 38, "Int!" ], "cursor": [ - 3631, + 3676, "[tournament_team_roster_stream_cursor_input]!" ], "where": [ - 3611 + 3656 ] } ], "tournament_teams": [ - 3643, + 3688, { "distinct_on": [ - 3665, + 3710, "[tournament_teams_select_column!]" ], "limit": [ @@ -136408,19 +138417,19 @@ export default { 38 ], "order_by": [ - 3663, + 3708, "[tournament_teams_order_by!]" ], "where": [ - 3652 + 3697 ] } ], "tournament_teams_aggregate": [ - 3644, + 3689, { "distinct_on": [ - 3665, + 3710, "[tournament_teams_select_column!]" ], "limit": [ @@ -136430,44 +138439,44 @@ export default { 38 ], "order_by": [ - 3663, + 3708, "[tournament_teams_order_by!]" ], "where": [ - 3652 + 3697 ] } ], "tournament_teams_by_pk": [ - 3643, + 3688, { "id": [ - 3818, + 3863, "uuid!" ] } ], "tournament_teams_stream": [ - 3643, + 3688, { "batch_size": [ 38, "Int!" ], "cursor": [ - 3673, + 3718, "[tournament_teams_stream_cursor_input]!" ], "where": [ - 3652 + 3697 ] } ], "tournament_trophies": [ - 3685, + 3730, { "distinct_on": [ - 3708, + 3753, "[tournament_trophies_select_column!]" ], "limit": [ @@ -136477,19 +138486,19 @@ export default { 38 ], "order_by": [ - 3706, + 3751, "[tournament_trophies_order_by!]" ], "where": [ - 3696 + 3741 ] } ], "tournament_trophies_aggregate": [ - 3686, + 3731, { "distinct_on": [ - 3708, + 3753, "[tournament_trophies_select_column!]" ], "limit": [ @@ -136499,44 +138508,44 @@ export default { 38 ], "order_by": [ - 3706, + 3751, "[tournament_trophies_order_by!]" ], "where": [ - 3696 + 3741 ] } ], "tournament_trophies_by_pk": [ - 3685, + 3730, { "id": [ - 3818, + 3863, "uuid!" ] } ], "tournament_trophies_stream": [ - 3685, + 3730, { "batch_size": [ 38, "Int!" ], "cursor": [ - 3718, + 3763, "[tournament_trophies_stream_cursor_input]!" ], "where": [ - 3696 + 3741 ] } ], "tournament_trophy_configs": [ - 3730, + 3775, { "distinct_on": [ - 3752, + 3797, "[tournament_trophy_configs_select_column!]" ], "limit": [ @@ -136546,19 +138555,19 @@ export default { 38 ], "order_by": [ - 3750, + 3795, "[tournament_trophy_configs_order_by!]" ], "where": [ - 3739 + 3784 ] } ], "tournament_trophy_configs_aggregate": [ - 3731, + 3776, { "distinct_on": [ - 3752, + 3797, "[tournament_trophy_configs_select_column!]" ], "limit": [ @@ -136568,44 +138577,44 @@ export default { 38 ], "order_by": [ - 3750, + 3795, "[tournament_trophy_configs_order_by!]" ], "where": [ - 3739 + 3784 ] } ], "tournament_trophy_configs_by_pk": [ - 3730, + 3775, { "id": [ - 3818, + 3863, "uuid!" ] } ], "tournament_trophy_configs_stream": [ - 3730, + 3775, { "batch_size": [ 38, "Int!" ], "cursor": [ - 3760, + 3805, "[tournament_trophy_configs_stream_cursor_input]!" ], "where": [ - 3739 + 3784 ] } ], "tournaments": [ - 3772, + 3817, { "distinct_on": [ - 3796, + 3841, "[tournaments_select_column!]" ], "limit": [ @@ -136615,19 +138624,19 @@ export default { 38 ], "order_by": [ - 3794, + 3839, "[tournaments_order_by!]" ], "where": [ - 3783 + 3828 ] } ], "tournaments_aggregate": [ - 3773, + 3818, { "distinct_on": [ - 3796, + 3841, "[tournaments_select_column!]" ], "limit": [ @@ -136637,44 +138646,44 @@ export default { 38 ], "order_by": [ - 3794, + 3839, "[tournaments_order_by!]" ], "where": [ - 3783 + 3828 ] } ], "tournaments_by_pk": [ - 3772, + 3817, { "id": [ - 3818, + 3863, "uuid!" ] } ], "tournaments_stream": [ - 3772, + 3817, { "batch_size": [ 38, "Int!" ], "cursor": [ - 3806, + 3851, "[tournaments_stream_cursor_input]!" ], "where": [ - 3783 + 3828 ] } ], "v_gpu_pool_status": [ - 3821, + 3866, { "distinct_on": [ - 3829, + 3874, "[v_gpu_pool_status_select_column!]" ], "limit": [ @@ -136684,19 +138693,19 @@ export default { 38 ], "order_by": [ - 3828, + 3873, "[v_gpu_pool_status_order_by!]" ], "where": [ - 3825 + 3870 ] } ], "v_gpu_pool_status_aggregate": [ - 3822, + 3867, { "distinct_on": [ - 3829, + 3874, "[v_gpu_pool_status_select_column!]" ], "limit": [ @@ -136706,35 +138715,35 @@ export default { 38 ], "order_by": [ - 3828, + 3873, "[v_gpu_pool_status_order_by!]" ], "where": [ - 3825 + 3870 ] } ], "v_gpu_pool_status_stream": [ - 3821, + 3866, { "batch_size": [ 38, "Int!" ], "cursor": [ - 3833, + 3878, "[v_gpu_pool_status_stream_cursor_input]!" ], "where": [ - 3825 + 3870 ] } ], "v_match_captains": [ - 3839, + 3884, { "distinct_on": [ - 3851, + 3896, "[v_match_captains_select_column!]" ], "limit": [ @@ -136744,19 +138753,19 @@ export default { 38 ], "order_by": [ - 3850, + 3895, "[v_match_captains_order_by!]" ], "where": [ - 3843 + 3888 ] } ], "v_match_captains_aggregate": [ - 3840, + 3885, { "distinct_on": [ - 3851, + 3896, "[v_match_captains_select_column!]" ], "limit": [ @@ -136766,35 +138775,35 @@ export default { 38 ], "order_by": [ - 3850, + 3895, "[v_match_captains_order_by!]" ], "where": [ - 3843 + 3888 ] } ], "v_match_captains_stream": [ - 3839, + 3884, { "batch_size": [ 38, "Int!" ], "cursor": [ - 3856, + 3901, "[v_match_captains_stream_cursor_input]!" ], "where": [ - 3843 + 3888 ] } ], "v_match_clutches": [ - 3863, + 3908, { "distinct_on": [ - 3879, + 3924, "[v_match_clutches_select_column!]" ], "limit": [ @@ -136804,19 +138813,19 @@ export default { 38 ], "order_by": [ - 3878, + 3923, "[v_match_clutches_order_by!]" ], "where": [ - 3872 + 3917 ] } ], "v_match_clutches_aggregate": [ - 3864, + 3909, { "distinct_on": [ - 3879, + 3924, "[v_match_clutches_select_column!]" ], "limit": [ @@ -136826,35 +138835,35 @@ export default { 38 ], "order_by": [ - 3878, + 3923, "[v_match_clutches_order_by!]" ], "where": [ - 3872 + 3917 ] } ], "v_match_clutches_stream": [ - 3863, + 3908, { "batch_size": [ 38, "Int!" ], "cursor": [ - 3886, + 3931, "[v_match_clutches_stream_cursor_input]!" ], "where": [ - 3872 + 3917 ] } ], "v_match_kill_pairs": [ - 3896, + 3941, { "distinct_on": [ - 3904, + 3949, "[v_match_kill_pairs_select_column!]" ], "limit": [ @@ -136864,19 +138873,19 @@ export default { 38 ], "order_by": [ - 3903, + 3948, "[v_match_kill_pairs_order_by!]" ], "where": [ - 3900 + 3945 ] } ], "v_match_kill_pairs_aggregate": [ - 3897, + 3942, { "distinct_on": [ - 3904, + 3949, "[v_match_kill_pairs_select_column!]" ], "limit": [ @@ -136886,35 +138895,35 @@ export default { 38 ], "order_by": [ - 3903, + 3948, "[v_match_kill_pairs_order_by!]" ], "where": [ - 3900 + 3945 ] } ], "v_match_kill_pairs_stream": [ - 3896, + 3941, { "batch_size": [ 38, "Int!" ], "cursor": [ - 3908, + 3953, "[v_match_kill_pairs_stream_cursor_input]!" ], "where": [ - 3900 + 3945 ] } ], "v_match_lineup_buy_types": [ - 3914, + 3959, { "distinct_on": [ - 3922, + 3967, "[v_match_lineup_buy_types_select_column!]" ], "limit": [ @@ -136924,19 +138933,19 @@ export default { 38 ], "order_by": [ - 3921, + 3966, "[v_match_lineup_buy_types_order_by!]" ], "where": [ - 3918 + 3963 ] } ], "v_match_lineup_buy_types_aggregate": [ - 3915, + 3960, { "distinct_on": [ - 3922, + 3967, "[v_match_lineup_buy_types_select_column!]" ], "limit": [ @@ -136946,35 +138955,35 @@ export default { 38 ], "order_by": [ - 3921, + 3966, "[v_match_lineup_buy_types_order_by!]" ], "where": [ - 3918 + 3963 ] } ], "v_match_lineup_buy_types_stream": [ - 3914, + 3959, { "batch_size": [ 38, "Int!" ], "cursor": [ - 3926, + 3971, "[v_match_lineup_buy_types_stream_cursor_input]!" ], "where": [ - 3918 + 3963 ] } ], "v_match_lineup_map_stats": [ - 3932, + 3977, { "distinct_on": [ - 3940, + 3985, "[v_match_lineup_map_stats_select_column!]" ], "limit": [ @@ -136984,19 +138993,19 @@ export default { 38 ], "order_by": [ - 3939, + 3984, "[v_match_lineup_map_stats_order_by!]" ], "where": [ - 3936 + 3981 ] } ], "v_match_lineup_map_stats_aggregate": [ - 3933, + 3978, { "distinct_on": [ - 3940, + 3985, "[v_match_lineup_map_stats_select_column!]" ], "limit": [ @@ -137006,35 +139015,35 @@ export default { 38 ], "order_by": [ - 3939, + 3984, "[v_match_lineup_map_stats_order_by!]" ], "where": [ - 3936 + 3981 ] } ], "v_match_lineup_map_stats_stream": [ - 3932, + 3977, { "batch_size": [ 38, "Int!" ], "cursor": [ - 3944, + 3989, "[v_match_lineup_map_stats_stream_cursor_input]!" ], "where": [ - 3936 + 3981 ] } ], "v_match_map_backup_rounds": [ - 3950, + 3995, { "distinct_on": [ - 3961, + 4006, "[v_match_map_backup_rounds_select_column!]" ], "limit": [ @@ -137044,19 +139053,19 @@ export default { 38 ], "order_by": [ - 3960, + 4005, "[v_match_map_backup_rounds_order_by!]" ], "where": [ - 3954 + 3999 ] } ], "v_match_map_backup_rounds_aggregate": [ - 3951, + 3996, { "distinct_on": [ - 3961, + 4006, "[v_match_map_backup_rounds_select_column!]" ], "limit": [ @@ -137066,35 +139075,35 @@ export default { 38 ], "order_by": [ - 3960, + 4005, "[v_match_map_backup_rounds_order_by!]" ], "where": [ - 3954 + 3999 ] } ], "v_match_map_backup_rounds_stream": [ - 3950, + 3995, { "batch_size": [ 38, "Int!" ], "cursor": [ - 3966, + 4011, "[v_match_map_backup_rounds_stream_cursor_input]!" ], "where": [ - 3954 + 3999 ] } ], "v_match_player_buy_types": [ - 3973, + 4018, { "distinct_on": [ - 3981, + 4026, "[v_match_player_buy_types_select_column!]" ], "limit": [ @@ -137104,19 +139113,19 @@ export default { 38 ], "order_by": [ - 3980, + 4025, "[v_match_player_buy_types_order_by!]" ], "where": [ - 3977 + 4022 ] } ], "v_match_player_buy_types_aggregate": [ - 3974, + 4019, { "distinct_on": [ - 3981, + 4026, "[v_match_player_buy_types_select_column!]" ], "limit": [ @@ -137126,35 +139135,35 @@ export default { 38 ], "order_by": [ - 3980, + 4025, "[v_match_player_buy_types_order_by!]" ], "where": [ - 3977 + 4022 ] } ], "v_match_player_buy_types_stream": [ - 3973, + 4018, { "batch_size": [ 38, "Int!" ], "cursor": [ - 3985, + 4030, "[v_match_player_buy_types_stream_cursor_input]!" ], "where": [ - 3977 + 4022 ] } ], "v_match_player_opening_duels": [ - 3991, + 4036, { "distinct_on": [ - 4007, + 4052, "[v_match_player_opening_duels_select_column!]" ], "limit": [ @@ -137164,19 +139173,19 @@ export default { 38 ], "order_by": [ - 4006, + 4051, "[v_match_player_opening_duels_order_by!]" ], "where": [ - 4000 + 4045 ] } ], "v_match_player_opening_duels_aggregate": [ - 3992, + 4037, { "distinct_on": [ - 4007, + 4052, "[v_match_player_opening_duels_select_column!]" ], "limit": [ @@ -137186,35 +139195,35 @@ export default { 38 ], "order_by": [ - 4006, + 4051, "[v_match_player_opening_duels_order_by!]" ], "where": [ - 4000 + 4045 ] } ], "v_match_player_opening_duels_stream": [ - 3991, + 4036, { "batch_size": [ 38, "Int!" ], "cursor": [ - 4014, + 4059, "[v_match_player_opening_duels_stream_cursor_input]!" ], "where": [ - 4000 + 4045 ] } ], "v_player_arch_nemesis": [ - 4024, + 4069, { "distinct_on": [ - 4032, + 4077, "[v_player_arch_nemesis_select_column!]" ], "limit": [ @@ -137224,19 +139233,19 @@ export default { 38 ], "order_by": [ - 4031, + 4076, "[v_player_arch_nemesis_order_by!]" ], "where": [ - 4028 + 4073 ] } ], "v_player_arch_nemesis_aggregate": [ - 4025, + 4070, { "distinct_on": [ - 4032, + 4077, "[v_player_arch_nemesis_select_column!]" ], "limit": [ @@ -137246,35 +139255,35 @@ export default { 38 ], "order_by": [ - 4031, + 4076, "[v_player_arch_nemesis_order_by!]" ], "where": [ - 4028 + 4073 ] } ], "v_player_arch_nemesis_stream": [ - 4024, + 4069, { "batch_size": [ 38, "Int!" ], "cursor": [ - 4036, + 4081, "[v_player_arch_nemesis_stream_cursor_input]!" ], "where": [ - 4028 + 4073 ] } ], "v_player_damage": [ - 4042, + 4087, { "distinct_on": [ - 4050, + 4095, "[v_player_damage_select_column!]" ], "limit": [ @@ -137284,19 +139293,19 @@ export default { 38 ], "order_by": [ - 4049, + 4094, "[v_player_damage_order_by!]" ], "where": [ - 4046 + 4091 ] } ], "v_player_damage_aggregate": [ - 4043, + 4088, { "distinct_on": [ - 4050, + 4095, "[v_player_damage_select_column!]" ], "limit": [ @@ -137306,35 +139315,35 @@ export default { 38 ], "order_by": [ - 4049, + 4094, "[v_player_damage_order_by!]" ], "where": [ - 4046 + 4091 ] } ], "v_player_damage_stream": [ - 4042, + 4087, { "batch_size": [ 38, "Int!" ], "cursor": [ - 4054, + 4099, "[v_player_damage_stream_cursor_input]!" ], "where": [ - 4046 + 4091 ] } ], "v_player_elo": [ - 4060, + 4105, { "distinct_on": [ - 4086, + 4131, "[v_player_elo_select_column!]" ], "limit": [ @@ -137344,19 +139353,19 @@ export default { 38 ], "order_by": [ - 4085, + 4130, "[v_player_elo_order_by!]" ], "where": [ - 4079 + 4124 ] } ], "v_player_elo_aggregate": [ - 4061, + 4106, { "distinct_on": [ - 4086, + 4131, "[v_player_elo_select_column!]" ], "limit": [ @@ -137366,35 +139375,35 @@ export default { 38 ], "order_by": [ - 4085, + 4130, "[v_player_elo_order_by!]" ], "where": [ - 4079 + 4124 ] } ], "v_player_elo_stream": [ - 4060, + 4105, { "batch_size": [ 38, "Int!" ], "cursor": [ - 4101, + 4146, "[v_player_elo_stream_cursor_input]!" ], "where": [ - 4079 + 4124 ] } ], "v_player_map_losses": [ - 4111, + 4156, { "distinct_on": [ - 4119, + 4164, "[v_player_map_losses_select_column!]" ], "limit": [ @@ -137404,19 +139413,19 @@ export default { 38 ], "order_by": [ - 4118, + 4163, "[v_player_map_losses_order_by!]" ], "where": [ - 4115 + 4160 ] } ], "v_player_map_losses_aggregate": [ - 4112, + 4157, { "distinct_on": [ - 4119, + 4164, "[v_player_map_losses_select_column!]" ], "limit": [ @@ -137426,35 +139435,35 @@ export default { 38 ], "order_by": [ - 4118, + 4163, "[v_player_map_losses_order_by!]" ], "where": [ - 4115 + 4160 ] } ], "v_player_map_losses_stream": [ - 4111, + 4156, { "batch_size": [ 38, "Int!" ], "cursor": [ - 4123, + 4168, "[v_player_map_losses_stream_cursor_input]!" ], "where": [ - 4115 + 4160 ] } ], "v_player_map_wins": [ - 4129, + 4174, { "distinct_on": [ - 4137, + 4182, "[v_player_map_wins_select_column!]" ], "limit": [ @@ -137464,19 +139473,19 @@ export default { 38 ], "order_by": [ - 4136, + 4181, "[v_player_map_wins_order_by!]" ], "where": [ - 4133 + 4178 ] } ], "v_player_map_wins_aggregate": [ - 4130, + 4175, { "distinct_on": [ - 4137, + 4182, "[v_player_map_wins_select_column!]" ], "limit": [ @@ -137486,35 +139495,35 @@ export default { 38 ], "order_by": [ - 4136, + 4181, "[v_player_map_wins_order_by!]" ], "where": [ - 4133 + 4178 ] } ], "v_player_map_wins_stream": [ - 4129, + 4174, { "batch_size": [ 38, "Int!" ], "cursor": [ - 4141, + 4186, "[v_player_map_wins_stream_cursor_input]!" ], "where": [ - 4133 + 4178 ] } ], "v_player_match_head_to_head": [ - 4147, + 4192, { "distinct_on": [ - 4155, + 4200, "[v_player_match_head_to_head_select_column!]" ], "limit": [ @@ -137524,19 +139533,19 @@ export default { 38 ], "order_by": [ - 4154, + 4199, "[v_player_match_head_to_head_order_by!]" ], "where": [ - 4151 + 4196 ] } ], "v_player_match_head_to_head_aggregate": [ - 4148, + 4193, { "distinct_on": [ - 4155, + 4200, "[v_player_match_head_to_head_select_column!]" ], "limit": [ @@ -137546,35 +139555,35 @@ export default { 38 ], "order_by": [ - 4154, + 4199, "[v_player_match_head_to_head_order_by!]" ], "where": [ - 4151 + 4196 ] } ], "v_player_match_head_to_head_stream": [ - 4147, + 4192, { "batch_size": [ 38, "Int!" ], "cursor": [ - 4159, + 4204, "[v_player_match_head_to_head_stream_cursor_input]!" ], "where": [ - 4151 + 4196 ] } ], "v_player_match_map_hltv": [ - 4165, + 4210, { "distinct_on": [ - 4183, + 4228, "[v_player_match_map_hltv_select_column!]" ], "limit": [ @@ -137584,19 +139593,19 @@ export default { 38 ], "order_by": [ - 4182, + 4227, "[v_player_match_map_hltv_order_by!]" ], "where": [ - 4174 + 4219 ] } ], "v_player_match_map_hltv_aggregate": [ - 4166, + 4211, { "distinct_on": [ - 4183, + 4228, "[v_player_match_map_hltv_select_column!]" ], "limit": [ @@ -137606,35 +139615,35 @@ export default { 38 ], "order_by": [ - 4182, + 4227, "[v_player_match_map_hltv_order_by!]" ], "where": [ - 4174 + 4219 ] } ], "v_player_match_map_hltv_stream": [ - 4165, + 4210, { "batch_size": [ 38, "Int!" ], "cursor": [ - 4191, + 4236, "[v_player_match_map_hltv_stream_cursor_input]!" ], "where": [ - 4174 + 4219 ] } ], "v_player_match_map_roles": [ - 4202, + 4247, { "distinct_on": [ - 4210, + 4255, "[v_player_match_map_roles_select_column!]" ], "limit": [ @@ -137644,19 +139653,19 @@ export default { 38 ], "order_by": [ - 4209, + 4254, "[v_player_match_map_roles_order_by!]" ], "where": [ - 4206 + 4251 ] } ], "v_player_match_map_roles_aggregate": [ - 4203, + 4248, { "distinct_on": [ - 4210, + 4255, "[v_player_match_map_roles_select_column!]" ], "limit": [ @@ -137666,35 +139675,35 @@ export default { 38 ], "order_by": [ - 4209, + 4254, "[v_player_match_map_roles_order_by!]" ], "where": [ - 4206 + 4251 ] } ], "v_player_match_map_roles_stream": [ - 4202, + 4247, { "batch_size": [ 38, "Int!" ], "cursor": [ - 4214, + 4259, "[v_player_match_map_roles_stream_cursor_input]!" ], "where": [ - 4206 + 4251 ] } ], "v_player_match_performance": [ - 4220, + 4265, { "distinct_on": [ - 4228, + 4273, "[v_player_match_performance_select_column!]" ], "limit": [ @@ -137704,19 +139713,19 @@ export default { 38 ], "order_by": [ - 4227, + 4272, "[v_player_match_performance_order_by!]" ], "where": [ - 4224 + 4269 ] } ], "v_player_match_performance_aggregate": [ - 4221, + 4266, { "distinct_on": [ - 4228, + 4273, "[v_player_match_performance_select_column!]" ], "limit": [ @@ -137726,35 +139735,35 @@ export default { 38 ], "order_by": [ - 4227, + 4272, "[v_player_match_performance_order_by!]" ], "where": [ - 4224 + 4269 ] } ], "v_player_match_performance_stream": [ - 4220, + 4265, { "batch_size": [ 38, "Int!" ], "cursor": [ - 4232, + 4277, "[v_player_match_performance_stream_cursor_input]!" ], "where": [ - 4224 + 4269 ] } ], "v_player_match_rating": [ - 4238, + 4283, { "distinct_on": [ - 4246, + 4291, "[v_player_match_rating_select_column!]" ], "limit": [ @@ -137764,19 +139773,19 @@ export default { 38 ], "order_by": [ - 4245, + 4290, "[v_player_match_rating_order_by!]" ], "where": [ - 4242 + 4287 ] } ], "v_player_match_rating_aggregate": [ - 4239, + 4284, { "distinct_on": [ - 4246, + 4291, "[v_player_match_rating_select_column!]" ], "limit": [ @@ -137786,35 +139795,35 @@ export default { 38 ], "order_by": [ - 4245, + 4290, "[v_player_match_rating_order_by!]" ], "where": [ - 4242 + 4287 ] } ], "v_player_match_rating_stream": [ - 4238, + 4283, { "batch_size": [ 38, "Int!" ], "cursor": [ - 4250, + 4295, "[v_player_match_rating_stream_cursor_input]!" ], "where": [ - 4242 + 4287 ] } ], "v_player_multi_kills": [ - 4256, + 4301, { "distinct_on": [ - 4272, + 4317, "[v_player_multi_kills_select_column!]" ], "limit": [ @@ -137824,19 +139833,19 @@ export default { 38 ], "order_by": [ - 4271, + 4316, "[v_player_multi_kills_order_by!]" ], "where": [ - 4265 + 4310 ] } ], "v_player_multi_kills_aggregate": [ - 4257, + 4302, { "distinct_on": [ - 4272, + 4317, "[v_player_multi_kills_select_column!]" ], "limit": [ @@ -137846,35 +139855,35 @@ export default { 38 ], "order_by": [ - 4271, + 4316, "[v_player_multi_kills_order_by!]" ], "where": [ - 4265 + 4310 ] } ], "v_player_multi_kills_stream": [ - 4256, + 4301, { "batch_size": [ 38, "Int!" ], "cursor": [ - 4279, + 4324, "[v_player_multi_kills_stream_cursor_input]!" ], "where": [ - 4265 + 4310 ] } ], "v_player_weapon_damage": [ - 4289, + 4334, { "distinct_on": [ - 4297, + 4342, "[v_player_weapon_damage_select_column!]" ], "limit": [ @@ -137884,19 +139893,19 @@ export default { 38 ], "order_by": [ - 4296, + 4341, "[v_player_weapon_damage_order_by!]" ], "where": [ - 4293 + 4338 ] } ], "v_player_weapon_damage_aggregate": [ - 4290, + 4335, { "distinct_on": [ - 4297, + 4342, "[v_player_weapon_damage_select_column!]" ], "limit": [ @@ -137906,35 +139915,35 @@ export default { 38 ], "order_by": [ - 4296, + 4341, "[v_player_weapon_damage_order_by!]" ], "where": [ - 4293 + 4338 ] } ], "v_player_weapon_damage_stream": [ - 4289, + 4334, { "batch_size": [ 38, "Int!" ], "cursor": [ - 4301, + 4346, "[v_player_weapon_damage_stream_cursor_input]!" ], "where": [ - 4293 + 4338 ] } ], "v_player_weapon_kills": [ - 4307, + 4352, { "distinct_on": [ - 4315, + 4360, "[v_player_weapon_kills_select_column!]" ], "limit": [ @@ -137944,19 +139953,19 @@ export default { 38 ], "order_by": [ - 4314, + 4359, "[v_player_weapon_kills_order_by!]" ], "where": [ - 4311 + 4356 ] } ], "v_player_weapon_kills_aggregate": [ - 4308, + 4353, { "distinct_on": [ - 4315, + 4360, "[v_player_weapon_kills_select_column!]" ], "limit": [ @@ -137966,35 +139975,35 @@ export default { 38 ], "order_by": [ - 4314, + 4359, "[v_player_weapon_kills_order_by!]" ], "where": [ - 4311 + 4356 ] } ], "v_player_weapon_kills_stream": [ - 4307, + 4352, { "batch_size": [ 38, "Int!" ], "cursor": [ - 4319, + 4364, "[v_player_weapon_kills_stream_cursor_input]!" ], "where": [ - 4311 + 4356 ] } ], "v_pool_maps": [ - 4325, + 4370, { "distinct_on": [ - 4342, + 4387, "[v_pool_maps_select_column!]" ], "limit": [ @@ -138004,19 +140013,19 @@ export default { 38 ], "order_by": [ - 4341, + 4386, "[v_pool_maps_order_by!]" ], "where": [ - 4334 + 4379 ] } ], "v_pool_maps_aggregate": [ - 4326, + 4371, { "distinct_on": [ - 4342, + 4387, "[v_pool_maps_select_column!]" ], "limit": [ @@ -138026,35 +140035,35 @@ export default { 38 ], "order_by": [ - 4341, + 4386, "[v_pool_maps_order_by!]" ], "where": [ - 4334 + 4379 ] } ], "v_pool_maps_stream": [ - 4325, + 4370, { "batch_size": [ 38, "Int!" ], "cursor": [ - 4346, + 4391, "[v_pool_maps_stream_cursor_input]!" ], "where": [ - 4334 + 4379 ] } ], "v_steam_account_pool_status": [ - 4349, + 4394, { "distinct_on": [ - 4357, + 4402, "[v_steam_account_pool_status_select_column!]" ], "limit": [ @@ -138064,19 +140073,19 @@ export default { 38 ], "order_by": [ - 4356, + 4401, "[v_steam_account_pool_status_order_by!]" ], "where": [ - 4353 + 4398 ] } ], "v_steam_account_pool_status_aggregate": [ - 4350, + 4395, { "distinct_on": [ - 4357, + 4402, "[v_steam_account_pool_status_select_column!]" ], "limit": [ @@ -138086,35 +140095,35 @@ export default { 38 ], "order_by": [ - 4356, + 4401, "[v_steam_account_pool_status_order_by!]" ], "where": [ - 4353 + 4398 ] } ], "v_steam_account_pool_status_stream": [ - 4349, + 4394, { "batch_size": [ 38, "Int!" ], "cursor": [ - 4361, + 4406, "[v_steam_account_pool_status_stream_cursor_input]!" ], "where": [ - 4353 + 4398 ] } ], "v_team_ranks": [ - 4367, + 4412, { "distinct_on": [ - 4377, + 4422, "[v_team_ranks_select_column!]" ], "limit": [ @@ -138124,19 +140133,19 @@ export default { 38 ], "order_by": [ - 4376, + 4421, "[v_team_ranks_order_by!]" ], "where": [ - 4371 + 4416 ] } ], "v_team_ranks_aggregate": [ - 4368, + 4413, { "distinct_on": [ - 4377, + 4422, "[v_team_ranks_select_column!]" ], "limit": [ @@ -138146,35 +140155,35 @@ export default { 38 ], "order_by": [ - 4376, + 4421, "[v_team_ranks_order_by!]" ], "where": [ - 4371 + 4416 ] } ], "v_team_ranks_stream": [ - 4367, + 4412, { "batch_size": [ 38, "Int!" ], "cursor": [ - 4381, + 4426, "[v_team_ranks_stream_cursor_input]!" ], "where": [ - 4371 + 4416 ] } ], "v_team_reputation": [ - 4387, + 4432, { "distinct_on": [ - 4397, + 4442, "[v_team_reputation_select_column!]" ], "limit": [ @@ -138184,19 +140193,19 @@ export default { 38 ], "order_by": [ - 4396, + 4441, "[v_team_reputation_order_by!]" ], "where": [ - 4391 + 4436 ] } ], "v_team_reputation_aggregate": [ - 4388, + 4433, { "distinct_on": [ - 4397, + 4442, "[v_team_reputation_select_column!]" ], "limit": [ @@ -138206,35 +140215,35 @@ export default { 38 ], "order_by": [ - 4396, + 4441, "[v_team_reputation_order_by!]" ], "where": [ - 4391 + 4436 ] } ], "v_team_reputation_stream": [ - 4387, + 4432, { "batch_size": [ 38, "Int!" ], "cursor": [ - 4401, + 4446, "[v_team_reputation_stream_cursor_input]!" ], "where": [ - 4391 + 4436 ] } ], "v_team_stage_results": [ - 4407, + 4452, { "distinct_on": [ - 4439, + 4484, "[v_team_stage_results_select_column!]" ], "limit": [ @@ -138244,19 +140253,19 @@ export default { 38 ], "order_by": [ - 4437, + 4482, "[v_team_stage_results_order_by!]" ], "where": [ - 4426 + 4471 ] } ], "v_team_stage_results_aggregate": [ - 4408, + 4453, { "distinct_on": [ - 4439, + 4484, "[v_team_stage_results_select_column!]" ], "limit": [ @@ -138266,48 +140275,48 @@ export default { 38 ], "order_by": [ - 4437, + 4482, "[v_team_stage_results_order_by!]" ], "where": [ - 4426 + 4471 ] } ], "v_team_stage_results_by_pk": [ - 4407, + 4452, { "tournament_stage_id": [ - 3818, + 3863, "uuid!" ], "tournament_team_id": [ - 3818, + 3863, "uuid!" ] } ], "v_team_stage_results_stream": [ - 4407, + 4452, { "batch_size": [ 38, "Int!" ], "cursor": [ - 4455, + 4500, "[v_team_stage_results_stream_cursor_input]!" ], "where": [ - 4426 + 4471 ] } ], "v_team_tournament_results": [ - 4467, + 4512, { "distinct_on": [ - 4493, + 4538, "[v_team_tournament_results_select_column!]" ], "limit": [ @@ -138317,19 +140326,19 @@ export default { 38 ], "order_by": [ - 4492, + 4537, "[v_team_tournament_results_order_by!]" ], "where": [ - 4486 + 4531 ] } ], "v_team_tournament_results_aggregate": [ - 4468, + 4513, { "distinct_on": [ - 4493, + 4538, "[v_team_tournament_results_select_column!]" ], "limit": [ @@ -138339,35 +140348,35 @@ export default { 38 ], "order_by": [ - 4492, + 4537, "[v_team_tournament_results_order_by!]" ], "where": [ - 4486 + 4531 ] } ], "v_team_tournament_results_stream": [ - 4467, + 4512, { "batch_size": [ 38, "Int!" ], "cursor": [ - 4508, + 4553, "[v_team_tournament_results_stream_cursor_input]!" ], "where": [ - 4486 + 4531 ] } ], "v_tournament_player_stats": [ - 4518, + 4563, { "distinct_on": [ - 4544, + 4589, "[v_tournament_player_stats_select_column!]" ], "limit": [ @@ -138377,19 +140386,19 @@ export default { 38 ], "order_by": [ - 4543, + 4588, "[v_tournament_player_stats_order_by!]" ], "where": [ - 4537 + 4582 ] } ], "v_tournament_player_stats_aggregate": [ - 4519, + 4564, { "distinct_on": [ - 4544, + 4589, "[v_tournament_player_stats_select_column!]" ], "limit": [ @@ -138399,32 +140408,32 @@ export default { 38 ], "order_by": [ - 4543, + 4588, "[v_tournament_player_stats_order_by!]" ], "where": [ - 4537 + 4582 ] } ], "v_tournament_player_stats_stream": [ - 4518, + 4563, { "batch_size": [ 38, "Int!" ], "cursor": [ - 4559, + 4604, "[v_tournament_player_stats_stream_cursor_input]!" ], "where": [ - 4537 + 4582 ] } ], "__typename": [ - 70 + 74 ] } } 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_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 c1816bed..37c6fb57 100644 --- a/hasura/metadata/databases/default/tables/tables.yaml +++ b/hasura/metadata/databases/default/tables/tables.yaml @@ -87,6 +87,7 @@ - "!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_player_unused_utility.yaml" - "!include public_player_utility.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/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/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/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-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..d06a06c6 --- /dev/null +++ b/src/steam-presence/presence.spec.ts @@ -0,0 +1,206 @@ +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, + score: null, + display: 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", + 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", + 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", + score: "5:3", + display: null, + }; + const menu: Cs2PresenceState = { + inCs2: true, + inGame: false, + inMatch: false, + mode: null, + map: null, + score: null, + display: null, + }; + const offline: Cs2PresenceState = { + inCs2: false, + inGame: false, + inMatch: false, + mode: null, + map: null, + score: null, + display: 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..89448908 --- /dev/null +++ b/src/steam-presence/presence.ts @@ -0,0 +1,124 @@ +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; + // 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 = + | 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; + // Steam's localized display string, if available. + display?: string | null; +}; + +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 rp = normalizeRichPresence(input.richPresence); + + // 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:"), + ); + 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; + + // 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); + + // "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 +// 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..df71ae2f --- /dev/null +++ b/src/steam-presence/steam-presence.service.ts @@ -0,0 +1,919 @@ +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"; + +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:"; +// 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). +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>(); + // 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, + 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)) { + // 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); + } + } + + // 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) + .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, + ); + this.logger.log( + `steam-presence ${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 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 + .set(ONLINE_PREFIX + account.id, this.instanceId, "EX", LOCK_TTL_SECONDS) + .catch(() => {}); + 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}`, + ); + if (err.message.toLowerCase().includes("invalidpassword")) { + void this.cache.put(REFRESH_TOKEN_PREFIX + account.id, ""); + } + // 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); + 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); + } + }, + ); + + // 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); + } + + 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); + this.loginBackoff.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], + ); + // Backfill matches played before they added the bot. + await this.enqueuePoll(steamId); + } + + // ---- presence -> poll trigger ------------------------------------------ + + private async handlePresenceState( + steamId: string, + input: { + gameid?: string | number | null; + richPresence: Record | Array<{ key?: string; value?: string }>; + display?: string | null; + }, + ): Promise { + const current = parseCs2Presence({ + gameid: input.gameid, + richPresence: input.richPresence, + display: input.display, + }); + + const stateKey = STATE_PREFIX + steamId; + const previous = (await this.cache.get(stateKey)) as Cs2PresenceState | null; + + // 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); + + await this.postgres + .query( + `UPDATE public.player_steam_bot_friend + SET last_presence_state = $1::jsonb, updated_at = now() + WHERE steam_id = $2::bigint`, + [JSON.stringify(current), steamId], + ) + .catch(() => {}); + + // 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"} ` + + `— scheduling match-history poll in ${IMPORT_DELAY_MS / 1000}s`, + ); + await this.enqueuePoll(steamId, IMPORT_DELAY_MS); + } + } + + 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 + .add( + "PollSteamMatchHistoryForUser", + { steamId }, + { + jobId: `poll-steam-match-history.${steamId}`, + delay: delayMs, + removeOnComplete: true, + removeOnFail: true, + }, + ) + .catch((err) => { + this.logger.error( + `steam-presence poll enqueue failed for ${steamId}: ${(err as Error)?.message ?? err}`, + ); + }); + } + + // ---- 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. 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; + } + 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); + + // 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], + ); + 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 ${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, friend.steam_id, notice.matchId], + ) + .catch((err) => + this.logger.warn( + `steam-presence in-app notify failed for ${friend.steam_id}: ${(err as Error).message}`, + ), + ); + + if (!friend.bot_steam_account_id) { + continue; + } + const text = + `Your ${notice.matchType} match on ${mapLabel} was imported to 5stack` + + ` — 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}`, + ); + } + }); + } + + // 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()); + this.logger.log("steam-presence Steam Guard code submitted"); + } + + // ---- admin ------------------------------------------------------------- + + // 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(); + + 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"); + } + 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; }