diff --git a/generated/schema.graphql b/generated/schema.graphql index 610d1d0f..c9f767de 100644 --- a/generated/schema.graphql +++ b/generated/schema.graphql @@ -2385,129 +2385,2776 @@ type db_backups_variance_fields { size: Float } +""" +columns and relationships of "draft_game_picks" +""" +type draft_game_picks { + auto_picked: Boolean! + + """An object relationship""" + captain: players! + captain_steam_id: bigint! + created_at: timestamptz! + + """An object relationship""" + draft_game: draft_games! + draft_game_id: uuid! + id: uuid! + lineup: Int! + + """An object relationship""" + picked: players! + picked_steam_id: bigint! +} + +""" +aggregated selection of "draft_game_picks" +""" +type draft_game_picks_aggregate { + aggregate: draft_game_picks_aggregate_fields + nodes: [draft_game_picks!]! +} + +input draft_game_picks_aggregate_bool_exp { + bool_and: draft_game_picks_aggregate_bool_exp_bool_and + bool_or: draft_game_picks_aggregate_bool_exp_bool_or + count: draft_game_picks_aggregate_bool_exp_count +} + +input draft_game_picks_aggregate_bool_exp_bool_and { + arguments: draft_game_picks_select_column_draft_game_picks_aggregate_bool_exp_bool_and_arguments_columns! + distinct: Boolean + filter: draft_game_picks_bool_exp + predicate: Boolean_comparison_exp! +} + +input draft_game_picks_aggregate_bool_exp_bool_or { + arguments: draft_game_picks_select_column_draft_game_picks_aggregate_bool_exp_bool_or_arguments_columns! + distinct: Boolean + filter: draft_game_picks_bool_exp + predicate: Boolean_comparison_exp! +} + +input draft_game_picks_aggregate_bool_exp_count { + arguments: [draft_game_picks_select_column!] + distinct: Boolean + filter: draft_game_picks_bool_exp + predicate: Int_comparison_exp! +} + +""" +aggregate fields of "draft_game_picks" +""" +type draft_game_picks_aggregate_fields { + avg: draft_game_picks_avg_fields + count(columns: [draft_game_picks_select_column!], distinct: Boolean): Int! + max: draft_game_picks_max_fields + min: draft_game_picks_min_fields + stddev: draft_game_picks_stddev_fields + stddev_pop: draft_game_picks_stddev_pop_fields + stddev_samp: draft_game_picks_stddev_samp_fields + sum: draft_game_picks_sum_fields + var_pop: draft_game_picks_var_pop_fields + var_samp: draft_game_picks_var_samp_fields + variance: draft_game_picks_variance_fields +} + +""" +order by aggregate values of table "draft_game_picks" +""" +input draft_game_picks_aggregate_order_by { + avg: draft_game_picks_avg_order_by + count: order_by + max: draft_game_picks_max_order_by + min: draft_game_picks_min_order_by + stddev: draft_game_picks_stddev_order_by + stddev_pop: draft_game_picks_stddev_pop_order_by + stddev_samp: draft_game_picks_stddev_samp_order_by + sum: draft_game_picks_sum_order_by + var_pop: draft_game_picks_var_pop_order_by + var_samp: draft_game_picks_var_samp_order_by + variance: draft_game_picks_variance_order_by +} + +""" +input type for inserting array relation for remote table "draft_game_picks" +""" +input draft_game_picks_arr_rel_insert_input { + data: [draft_game_picks_insert_input!]! + + """upsert condition""" + on_conflict: draft_game_picks_on_conflict +} + +"""aggregate avg on columns""" +type draft_game_picks_avg_fields { + captain_steam_id: Float + lineup: Float + picked_steam_id: Float +} + +""" +order by avg() on columns of table "draft_game_picks" +""" +input draft_game_picks_avg_order_by { + captain_steam_id: order_by + lineup: order_by + picked_steam_id: order_by +} + +""" +Boolean expression to filter rows from the table "draft_game_picks". All fields are combined with a logical 'AND'. +""" +input draft_game_picks_bool_exp { + _and: [draft_game_picks_bool_exp!] + _not: draft_game_picks_bool_exp + _or: [draft_game_picks_bool_exp!] + auto_picked: Boolean_comparison_exp + captain: players_bool_exp + captain_steam_id: bigint_comparison_exp + created_at: timestamptz_comparison_exp + draft_game: draft_games_bool_exp + draft_game_id: uuid_comparison_exp + id: uuid_comparison_exp + lineup: Int_comparison_exp + picked: players_bool_exp + picked_steam_id: bigint_comparison_exp +} + +""" +unique or primary key constraints on table "draft_game_picks" +""" +enum draft_game_picks_constraint { + """ + unique or primary key constraint on columns "id" + """ + draft_game_picks_pkey +} + +""" +input type for incrementing numeric columns in table "draft_game_picks" +""" +input draft_game_picks_inc_input { + captain_steam_id: bigint + lineup: Int + picked_steam_id: bigint +} + +""" +input type for inserting data into table "draft_game_picks" +""" +input draft_game_picks_insert_input { + auto_picked: Boolean + captain: players_obj_rel_insert_input + captain_steam_id: bigint + created_at: timestamptz + draft_game: draft_games_obj_rel_insert_input + draft_game_id: uuid + id: uuid + lineup: Int + picked: players_obj_rel_insert_input + picked_steam_id: bigint +} + +"""aggregate max on columns""" +type draft_game_picks_max_fields { + captain_steam_id: bigint + created_at: timestamptz + draft_game_id: uuid + id: uuid + lineup: Int + picked_steam_id: bigint +} + +""" +order by max() on columns of table "draft_game_picks" +""" +input draft_game_picks_max_order_by { + captain_steam_id: order_by + created_at: order_by + draft_game_id: order_by + id: order_by + lineup: order_by + picked_steam_id: order_by +} + +"""aggregate min on columns""" +type draft_game_picks_min_fields { + captain_steam_id: bigint + created_at: timestamptz + draft_game_id: uuid + id: uuid + lineup: Int + picked_steam_id: bigint +} + +""" +order by min() on columns of table "draft_game_picks" +""" +input draft_game_picks_min_order_by { + captain_steam_id: order_by + created_at: order_by + draft_game_id: order_by + id: order_by + lineup: order_by + picked_steam_id: order_by +} + +""" +response of any mutation on the table "draft_game_picks" +""" +type draft_game_picks_mutation_response { + """number of rows affected by the mutation""" + affected_rows: Int! + + """data from the rows affected by the mutation""" + returning: [draft_game_picks!]! +} + +""" +on_conflict condition type for table "draft_game_picks" +""" +input draft_game_picks_on_conflict { + constraint: draft_game_picks_constraint! + update_columns: [draft_game_picks_update_column!]! = [] + where: draft_game_picks_bool_exp +} + +"""Ordering options when selecting data from "draft_game_picks".""" +input draft_game_picks_order_by { + auto_picked: order_by + captain: players_order_by + captain_steam_id: order_by + created_at: order_by + draft_game: draft_games_order_by + draft_game_id: order_by + id: order_by + lineup: order_by + picked: players_order_by + picked_steam_id: order_by +} + +"""primary key columns input for table: draft_game_picks""" +input draft_game_picks_pk_columns_input { + id: uuid! +} + +""" +select columns of table "draft_game_picks" +""" +enum draft_game_picks_select_column { + """column name""" + auto_picked + + """column name""" + captain_steam_id + + """column name""" + created_at + + """column name""" + draft_game_id + + """column name""" + id + + """column name""" + lineup + + """column name""" + picked_steam_id +} + +""" +select "draft_game_picks_aggregate_bool_exp_bool_and_arguments_columns" columns of table "draft_game_picks" +""" +enum draft_game_picks_select_column_draft_game_picks_aggregate_bool_exp_bool_and_arguments_columns { + """column name""" + auto_picked +} + +""" +select "draft_game_picks_aggregate_bool_exp_bool_or_arguments_columns" columns of table "draft_game_picks" +""" +enum draft_game_picks_select_column_draft_game_picks_aggregate_bool_exp_bool_or_arguments_columns { + """column name""" + auto_picked +} + +""" +input type for updating data in table "draft_game_picks" +""" +input draft_game_picks_set_input { + auto_picked: Boolean + captain_steam_id: bigint + created_at: timestamptz + draft_game_id: uuid + id: uuid + lineup: Int + picked_steam_id: bigint +} + +"""aggregate stddev on columns""" +type draft_game_picks_stddev_fields { + captain_steam_id: Float + lineup: Float + picked_steam_id: Float +} + +""" +order by stddev() on columns of table "draft_game_picks" +""" +input draft_game_picks_stddev_order_by { + captain_steam_id: order_by + lineup: order_by + picked_steam_id: order_by +} + +"""aggregate stddev_pop on columns""" +type draft_game_picks_stddev_pop_fields { + captain_steam_id: Float + lineup: Float + picked_steam_id: Float +} + +""" +order by stddev_pop() on columns of table "draft_game_picks" +""" +input draft_game_picks_stddev_pop_order_by { + captain_steam_id: order_by + lineup: order_by + picked_steam_id: order_by +} + +"""aggregate stddev_samp on columns""" +type draft_game_picks_stddev_samp_fields { + captain_steam_id: Float + lineup: Float + picked_steam_id: Float +} + +""" +order by stddev_samp() on columns of table "draft_game_picks" +""" +input draft_game_picks_stddev_samp_order_by { + captain_steam_id: order_by + lineup: order_by + picked_steam_id: order_by +} + +""" +Streaming cursor of the table "draft_game_picks" +""" +input draft_game_picks_stream_cursor_input { + """Stream column input with initial value""" + initial_value: draft_game_picks_stream_cursor_value_input! + + """cursor ordering""" + ordering: cursor_ordering +} + +"""Initial value of the column from where the streaming should start""" +input draft_game_picks_stream_cursor_value_input { + auto_picked: Boolean + captain_steam_id: bigint + created_at: timestamptz + draft_game_id: uuid + id: uuid + lineup: Int + picked_steam_id: bigint +} + +"""aggregate sum on columns""" +type draft_game_picks_sum_fields { + captain_steam_id: bigint + lineup: Int + picked_steam_id: bigint +} + +""" +order by sum() on columns of table "draft_game_picks" +""" +input draft_game_picks_sum_order_by { + captain_steam_id: order_by + lineup: order_by + picked_steam_id: order_by +} + +""" +update columns of table "draft_game_picks" +""" +enum draft_game_picks_update_column { + """column name""" + auto_picked + + """column name""" + captain_steam_id + + """column name""" + created_at + + """column name""" + draft_game_id + + """column name""" + id + + """column name""" + lineup + + """column name""" + picked_steam_id +} + +input draft_game_picks_updates { + """increments the numeric columns with given value of the filtered values""" + _inc: draft_game_picks_inc_input + + """sets the columns of the filtered rows to the given values""" + _set: draft_game_picks_set_input + + """filter the rows which have to be updated""" + where: draft_game_picks_bool_exp! +} + +"""aggregate var_pop on columns""" +type draft_game_picks_var_pop_fields { + captain_steam_id: Float + lineup: Float + picked_steam_id: Float +} + +""" +order by var_pop() on columns of table "draft_game_picks" +""" +input draft_game_picks_var_pop_order_by { + captain_steam_id: order_by + lineup: order_by + picked_steam_id: order_by +} + +"""aggregate var_samp on columns""" +type draft_game_picks_var_samp_fields { + captain_steam_id: Float + lineup: Float + picked_steam_id: Float +} + +""" +order by var_samp() on columns of table "draft_game_picks" +""" +input draft_game_picks_var_samp_order_by { + captain_steam_id: order_by + lineup: order_by + picked_steam_id: order_by +} + +"""aggregate variance on columns""" +type draft_game_picks_variance_fields { + captain_steam_id: Float + lineup: Float + picked_steam_id: Float +} + +""" +order by variance() on columns of table "draft_game_picks" +""" +input draft_game_picks_variance_order_by { + captain_steam_id: order_by + lineup: order_by + picked_steam_id: order_by +} + +""" +columns and relationships of "draft_game_players" +""" +type draft_game_players { + """An object relationship""" + draft_game: draft_games! + draft_game_id: uuid! + + """An object relationship""" + e_draft_game_player_status: e_draft_game_player_status! + elo_snapshot: Int + is_captain: Boolean! + joined_at: timestamptz! + lineup: Int + pick_order: Int + + """An object relationship""" + player: players! + status: e_draft_game_player_status_enum! + steam_id: bigint! +} + +""" +aggregated selection of "draft_game_players" +""" +type draft_game_players_aggregate { + aggregate: draft_game_players_aggregate_fields + nodes: [draft_game_players!]! +} + +input draft_game_players_aggregate_bool_exp { + bool_and: draft_game_players_aggregate_bool_exp_bool_and + bool_or: draft_game_players_aggregate_bool_exp_bool_or + count: draft_game_players_aggregate_bool_exp_count +} + +input draft_game_players_aggregate_bool_exp_bool_and { + arguments: draft_game_players_select_column_draft_game_players_aggregate_bool_exp_bool_and_arguments_columns! + distinct: Boolean + filter: draft_game_players_bool_exp + predicate: Boolean_comparison_exp! +} + +input draft_game_players_aggregate_bool_exp_bool_or { + arguments: draft_game_players_select_column_draft_game_players_aggregate_bool_exp_bool_or_arguments_columns! + distinct: Boolean + filter: draft_game_players_bool_exp + predicate: Boolean_comparison_exp! +} + +input draft_game_players_aggregate_bool_exp_count { + arguments: [draft_game_players_select_column!] + distinct: Boolean + filter: draft_game_players_bool_exp + predicate: Int_comparison_exp! +} + +""" +aggregate fields of "draft_game_players" +""" +type draft_game_players_aggregate_fields { + avg: draft_game_players_avg_fields + count(columns: [draft_game_players_select_column!], distinct: Boolean): Int! + max: draft_game_players_max_fields + min: draft_game_players_min_fields + stddev: draft_game_players_stddev_fields + stddev_pop: draft_game_players_stddev_pop_fields + stddev_samp: draft_game_players_stddev_samp_fields + sum: draft_game_players_sum_fields + var_pop: draft_game_players_var_pop_fields + var_samp: draft_game_players_var_samp_fields + variance: draft_game_players_variance_fields +} + +""" +order by aggregate values of table "draft_game_players" +""" +input draft_game_players_aggregate_order_by { + avg: draft_game_players_avg_order_by + count: order_by + max: draft_game_players_max_order_by + min: draft_game_players_min_order_by + stddev: draft_game_players_stddev_order_by + stddev_pop: draft_game_players_stddev_pop_order_by + stddev_samp: draft_game_players_stddev_samp_order_by + sum: draft_game_players_sum_order_by + var_pop: draft_game_players_var_pop_order_by + var_samp: draft_game_players_var_samp_order_by + variance: draft_game_players_variance_order_by +} + +""" +input type for inserting array relation for remote table "draft_game_players" +""" +input draft_game_players_arr_rel_insert_input { + data: [draft_game_players_insert_input!]! + + """upsert condition""" + on_conflict: draft_game_players_on_conflict +} + +"""aggregate avg on columns""" +type draft_game_players_avg_fields { + elo_snapshot: Float + lineup: Float + pick_order: Float + steam_id: Float +} + +""" +order by avg() on columns of table "draft_game_players" +""" +input draft_game_players_avg_order_by { + elo_snapshot: order_by + lineup: order_by + pick_order: order_by + steam_id: order_by +} + +""" +Boolean expression to filter rows from the table "draft_game_players". All fields are combined with a logical 'AND'. +""" +input draft_game_players_bool_exp { + _and: [draft_game_players_bool_exp!] + _not: draft_game_players_bool_exp + _or: [draft_game_players_bool_exp!] + draft_game: draft_games_bool_exp + draft_game_id: uuid_comparison_exp + e_draft_game_player_status: e_draft_game_player_status_bool_exp + elo_snapshot: Int_comparison_exp + is_captain: Boolean_comparison_exp + joined_at: timestamptz_comparison_exp + lineup: Int_comparison_exp + pick_order: Int_comparison_exp + player: players_bool_exp + status: e_draft_game_player_status_enum_comparison_exp + steam_id: bigint_comparison_exp +} + +""" +unique or primary key constraints on table "draft_game_players" +""" +enum draft_game_players_constraint { + """ + unique or primary key constraint on columns "draft_game_id", "steam_id" + """ + draft_game_players_pkey +} + +""" +input type for incrementing numeric columns in table "draft_game_players" +""" +input draft_game_players_inc_input { + elo_snapshot: Int + lineup: Int + pick_order: Int + steam_id: bigint +} + +""" +input type for inserting data into table "draft_game_players" +""" +input draft_game_players_insert_input { + draft_game: draft_games_obj_rel_insert_input + draft_game_id: uuid + e_draft_game_player_status: e_draft_game_player_status_obj_rel_insert_input + elo_snapshot: Int + is_captain: Boolean + joined_at: timestamptz + lineup: Int + pick_order: Int + player: players_obj_rel_insert_input + status: e_draft_game_player_status_enum + steam_id: bigint +} + +"""aggregate max on columns""" +type draft_game_players_max_fields { + draft_game_id: uuid + elo_snapshot: Int + joined_at: timestamptz + lineup: Int + pick_order: Int + steam_id: bigint +} + +""" +order by max() on columns of table "draft_game_players" +""" +input draft_game_players_max_order_by { + draft_game_id: order_by + elo_snapshot: order_by + joined_at: order_by + lineup: order_by + pick_order: order_by + steam_id: order_by +} + +"""aggregate min on columns""" +type draft_game_players_min_fields { + draft_game_id: uuid + elo_snapshot: Int + joined_at: timestamptz + lineup: Int + pick_order: Int + steam_id: bigint +} + +""" +order by min() on columns of table "draft_game_players" +""" +input draft_game_players_min_order_by { + draft_game_id: order_by + elo_snapshot: order_by + joined_at: order_by + lineup: order_by + pick_order: order_by + steam_id: order_by +} + +""" +response of any mutation on the table "draft_game_players" +""" +type draft_game_players_mutation_response { + """number of rows affected by the mutation""" + affected_rows: Int! + + """data from the rows affected by the mutation""" + returning: [draft_game_players!]! +} + +""" +on_conflict condition type for table "draft_game_players" +""" +input draft_game_players_on_conflict { + constraint: draft_game_players_constraint! + update_columns: [draft_game_players_update_column!]! = [] + where: draft_game_players_bool_exp +} + +"""Ordering options when selecting data from "draft_game_players".""" +input draft_game_players_order_by { + draft_game: draft_games_order_by + draft_game_id: order_by + e_draft_game_player_status: e_draft_game_player_status_order_by + elo_snapshot: order_by + is_captain: order_by + joined_at: order_by + lineup: order_by + pick_order: order_by + player: players_order_by + status: order_by + steam_id: order_by +} + +"""primary key columns input for table: draft_game_players""" +input draft_game_players_pk_columns_input { + draft_game_id: uuid! + steam_id: bigint! +} + +""" +select columns of table "draft_game_players" +""" +enum draft_game_players_select_column { + """column name""" + draft_game_id + + """column name""" + elo_snapshot + + """column name""" + is_captain + + """column name""" + joined_at + + """column name""" + lineup + + """column name""" + pick_order + + """column name""" + status + + """column name""" + steam_id +} + +""" +select "draft_game_players_aggregate_bool_exp_bool_and_arguments_columns" columns of table "draft_game_players" +""" +enum draft_game_players_select_column_draft_game_players_aggregate_bool_exp_bool_and_arguments_columns { + """column name""" + is_captain +} + +""" +select "draft_game_players_aggregate_bool_exp_bool_or_arguments_columns" columns of table "draft_game_players" +""" +enum draft_game_players_select_column_draft_game_players_aggregate_bool_exp_bool_or_arguments_columns { + """column name""" + is_captain +} + +""" +input type for updating data in table "draft_game_players" +""" +input draft_game_players_set_input { + draft_game_id: uuid + elo_snapshot: Int + is_captain: Boolean + joined_at: timestamptz + lineup: Int + pick_order: Int + status: e_draft_game_player_status_enum + steam_id: bigint +} + +"""aggregate stddev on columns""" +type draft_game_players_stddev_fields { + elo_snapshot: Float + lineup: Float + pick_order: Float + steam_id: Float +} + +""" +order by stddev() on columns of table "draft_game_players" +""" +input draft_game_players_stddev_order_by { + elo_snapshot: order_by + lineup: order_by + pick_order: order_by + steam_id: order_by +} + +"""aggregate stddev_pop on columns""" +type draft_game_players_stddev_pop_fields { + elo_snapshot: Float + lineup: Float + pick_order: Float + steam_id: Float +} + +""" +order by stddev_pop() on columns of table "draft_game_players" +""" +input draft_game_players_stddev_pop_order_by { + elo_snapshot: order_by + lineup: order_by + pick_order: order_by + steam_id: order_by +} + +"""aggregate stddev_samp on columns""" +type draft_game_players_stddev_samp_fields { + elo_snapshot: Float + lineup: Float + pick_order: Float + steam_id: Float +} + +""" +order by stddev_samp() on columns of table "draft_game_players" +""" +input draft_game_players_stddev_samp_order_by { + elo_snapshot: order_by + lineup: order_by + pick_order: order_by + steam_id: order_by +} + +""" +Streaming cursor of the table "draft_game_players" +""" +input draft_game_players_stream_cursor_input { + """Stream column input with initial value""" + initial_value: draft_game_players_stream_cursor_value_input! + + """cursor ordering""" + ordering: cursor_ordering +} + +"""Initial value of the column from where the streaming should start""" +input draft_game_players_stream_cursor_value_input { + draft_game_id: uuid + elo_snapshot: Int + is_captain: Boolean + joined_at: timestamptz + lineup: Int + pick_order: Int + status: e_draft_game_player_status_enum + steam_id: bigint +} + +"""aggregate sum on columns""" +type draft_game_players_sum_fields { + elo_snapshot: Int + lineup: Int + pick_order: Int + steam_id: bigint +} + +""" +order by sum() on columns of table "draft_game_players" +""" +input draft_game_players_sum_order_by { + elo_snapshot: order_by + lineup: order_by + pick_order: order_by + steam_id: order_by +} + +""" +update columns of table "draft_game_players" +""" +enum draft_game_players_update_column { + """column name""" + draft_game_id + + """column name""" + elo_snapshot + + """column name""" + is_captain + + """column name""" + joined_at + + """column name""" + lineup + + """column name""" + pick_order + + """column name""" + status + + """column name""" + steam_id +} + +input draft_game_players_updates { + """increments the numeric columns with given value of the filtered values""" + _inc: draft_game_players_inc_input + + """sets the columns of the filtered rows to the given values""" + _set: draft_game_players_set_input + + """filter the rows which have to be updated""" + where: draft_game_players_bool_exp! +} + +"""aggregate var_pop on columns""" +type draft_game_players_var_pop_fields { + elo_snapshot: Float + lineup: Float + pick_order: Float + steam_id: Float +} + +""" +order by var_pop() on columns of table "draft_game_players" +""" +input draft_game_players_var_pop_order_by { + elo_snapshot: order_by + lineup: order_by + pick_order: order_by + steam_id: order_by +} + +"""aggregate var_samp on columns""" +type draft_game_players_var_samp_fields { + elo_snapshot: Float + lineup: Float + pick_order: Float + steam_id: Float +} + +""" +order by var_samp() on columns of table "draft_game_players" +""" +input draft_game_players_var_samp_order_by { + elo_snapshot: order_by + lineup: order_by + pick_order: order_by + steam_id: order_by +} + +"""aggregate variance on columns""" +type draft_game_players_variance_fields { + elo_snapshot: Float + lineup: Float + pick_order: Float + steam_id: Float +} + +""" +order by variance() on columns of table "draft_game_players" +""" +input draft_game_players_variance_order_by { + elo_snapshot: order_by + lineup: order_by + pick_order: order_by + steam_id: order_by +} + +""" +columns and relationships of "draft_games" +""" +type draft_games { + access: e_lobby_access_enum! + capacity: Int! + captain_selection: e_draft_game_captain_selection_enum! + created_at: timestamptz! + current_pick_lineup: Int + draft_order: e_draft_game_draft_order_enum! + + """An object relationship""" + e_draft_game_captain_selection: e_draft_game_captain_selection! + + """An object relationship""" + e_draft_game_draft_order: e_draft_game_draft_order! + + """An object relationship""" + e_draft_game_mode: e_draft_game_mode! + + """An object relationship""" + e_draft_game_status: e_draft_game_status! + + """An object relationship""" + e_lobby_access: e_lobby_access! + expires_at: timestamptz + + """An object relationship""" + host: players! + host_steam_id: bigint! + id: uuid! + inner_squad: Boolean! + invite_code: uuid! + + """An object relationship""" + map_pool: map_pools + map_pool_id: uuid + + """An object relationship""" + match: matches + match_id: uuid + match_options_id: uuid + max_elo: Int + min_elo: Int + mode: e_draft_game_mode_enum! + + """An object relationship""" + options: match_options + pick_deadline: timestamptz + + """An array relationship""" + picks( + """distinct select on columns""" + distinct_on: [draft_game_picks_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [draft_game_picks_order_by!] + + """filter the rows returned""" + where: draft_game_picks_bool_exp + ): [draft_game_picks!]! + + """An aggregate relationship""" + picks_aggregate( + """distinct select on columns""" + distinct_on: [draft_game_picks_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [draft_game_picks_order_by!] + + """filter the rows returned""" + where: draft_game_picks_bool_exp + ): draft_game_picks_aggregate! + + """An array relationship""" + players( + """distinct select on columns""" + distinct_on: [draft_game_players_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [draft_game_players_order_by!] + + """filter the rows returned""" + where: draft_game_players_bool_exp + ): [draft_game_players!]! + + """An aggregate relationship""" + players_aggregate( + """distinct select on columns""" + distinct_on: [draft_game_players_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [draft_game_players_order_by!] + + """filter the rows returned""" + where: draft_game_players_bool_exp + ): draft_game_players_aggregate! + regions: [String!]! + require_approval: Boolean! + status: e_draft_game_status_enum! + + """An object relationship""" + team_1: teams + team_1_id: uuid + + """An object relationship""" + team_2: teams + team_2_id: uuid + type: e_match_types_enum! + updated_at: timestamptz! +} + +""" +aggregated selection of "draft_games" +""" +type draft_games_aggregate { + aggregate: draft_games_aggregate_fields + nodes: [draft_games!]! +} + +input draft_games_aggregate_bool_exp { + bool_and: draft_games_aggregate_bool_exp_bool_and + bool_or: draft_games_aggregate_bool_exp_bool_or + count: draft_games_aggregate_bool_exp_count +} + +input draft_games_aggregate_bool_exp_bool_and { + arguments: draft_games_select_column_draft_games_aggregate_bool_exp_bool_and_arguments_columns! + distinct: Boolean + filter: draft_games_bool_exp + predicate: Boolean_comparison_exp! +} + +input draft_games_aggregate_bool_exp_bool_or { + arguments: draft_games_select_column_draft_games_aggregate_bool_exp_bool_or_arguments_columns! + distinct: Boolean + filter: draft_games_bool_exp + predicate: Boolean_comparison_exp! +} + +input draft_games_aggregate_bool_exp_count { + arguments: [draft_games_select_column!] + distinct: Boolean + filter: draft_games_bool_exp + predicate: Int_comparison_exp! +} + +""" +aggregate fields of "draft_games" +""" +type draft_games_aggregate_fields { + avg: draft_games_avg_fields + count(columns: [draft_games_select_column!], distinct: Boolean): Int! + max: draft_games_max_fields + min: draft_games_min_fields + stddev: draft_games_stddev_fields + stddev_pop: draft_games_stddev_pop_fields + stddev_samp: draft_games_stddev_samp_fields + sum: draft_games_sum_fields + var_pop: draft_games_var_pop_fields + var_samp: draft_games_var_samp_fields + variance: draft_games_variance_fields +} + +""" +order by aggregate values of table "draft_games" +""" +input draft_games_aggregate_order_by { + avg: draft_games_avg_order_by + count: order_by + max: draft_games_max_order_by + min: draft_games_min_order_by + stddev: draft_games_stddev_order_by + stddev_pop: draft_games_stddev_pop_order_by + stddev_samp: draft_games_stddev_samp_order_by + sum: draft_games_sum_order_by + var_pop: draft_games_var_pop_order_by + var_samp: draft_games_var_samp_order_by + variance: draft_games_variance_order_by +} + +""" +input type for inserting array relation for remote table "draft_games" +""" +input draft_games_arr_rel_insert_input { + data: [draft_games_insert_input!]! + + """upsert condition""" + on_conflict: draft_games_on_conflict +} + +"""aggregate avg on columns""" +type draft_games_avg_fields { + capacity: Float + current_pick_lineup: Float + host_steam_id: Float + max_elo: Float + min_elo: Float +} + +""" +order by avg() on columns of table "draft_games" +""" +input draft_games_avg_order_by { + capacity: order_by + current_pick_lineup: order_by + host_steam_id: order_by + max_elo: order_by + min_elo: order_by +} + +""" +Boolean expression to filter rows from the table "draft_games". All fields are combined with a logical 'AND'. +""" +input draft_games_bool_exp { + _and: [draft_games_bool_exp!] + _not: draft_games_bool_exp + _or: [draft_games_bool_exp!] + access: e_lobby_access_enum_comparison_exp + capacity: Int_comparison_exp + captain_selection: e_draft_game_captain_selection_enum_comparison_exp + created_at: timestamptz_comparison_exp + current_pick_lineup: Int_comparison_exp + draft_order: e_draft_game_draft_order_enum_comparison_exp + e_draft_game_captain_selection: e_draft_game_captain_selection_bool_exp + e_draft_game_draft_order: e_draft_game_draft_order_bool_exp + e_draft_game_mode: e_draft_game_mode_bool_exp + e_draft_game_status: e_draft_game_status_bool_exp + e_lobby_access: e_lobby_access_bool_exp + expires_at: timestamptz_comparison_exp + host: players_bool_exp + host_steam_id: bigint_comparison_exp + id: uuid_comparison_exp + inner_squad: Boolean_comparison_exp + invite_code: uuid_comparison_exp + map_pool: map_pools_bool_exp + map_pool_id: uuid_comparison_exp + match: matches_bool_exp + match_id: uuid_comparison_exp + match_options_id: uuid_comparison_exp + max_elo: Int_comparison_exp + min_elo: Int_comparison_exp + mode: e_draft_game_mode_enum_comparison_exp + options: match_options_bool_exp + pick_deadline: timestamptz_comparison_exp + picks: draft_game_picks_bool_exp + picks_aggregate: draft_game_picks_aggregate_bool_exp + players: draft_game_players_bool_exp + players_aggregate: draft_game_players_aggregate_bool_exp + regions: String_array_comparison_exp + require_approval: Boolean_comparison_exp + status: e_draft_game_status_enum_comparison_exp + team_1: teams_bool_exp + team_1_id: uuid_comparison_exp + team_2: teams_bool_exp + team_2_id: uuid_comparison_exp + type: e_match_types_enum_comparison_exp + updated_at: timestamptz_comparison_exp +} + +""" +unique or primary key constraints on table "draft_games" +""" +enum draft_games_constraint { + """ + unique or primary key constraint on columns "id" + """ + draft_games_pkey +} + +""" +input type for incrementing numeric columns in table "draft_games" +""" +input draft_games_inc_input { + capacity: Int + current_pick_lineup: Int + host_steam_id: bigint + max_elo: Int + min_elo: Int +} + +""" +input type for inserting data into table "draft_games" +""" +input draft_games_insert_input { + access: e_lobby_access_enum + capacity: Int + captain_selection: e_draft_game_captain_selection_enum + created_at: timestamptz + current_pick_lineup: Int + draft_order: e_draft_game_draft_order_enum + e_draft_game_captain_selection: e_draft_game_captain_selection_obj_rel_insert_input + e_draft_game_draft_order: e_draft_game_draft_order_obj_rel_insert_input + e_draft_game_mode: e_draft_game_mode_obj_rel_insert_input + e_draft_game_status: e_draft_game_status_obj_rel_insert_input + e_lobby_access: e_lobby_access_obj_rel_insert_input + expires_at: timestamptz + host: players_obj_rel_insert_input + host_steam_id: bigint + id: uuid + inner_squad: Boolean + invite_code: uuid + map_pool: map_pools_obj_rel_insert_input + map_pool_id: uuid + match: matches_obj_rel_insert_input + match_id: uuid + match_options_id: uuid + max_elo: Int + min_elo: Int + mode: e_draft_game_mode_enum + options: match_options_obj_rel_insert_input + pick_deadline: timestamptz + picks: draft_game_picks_arr_rel_insert_input + players: draft_game_players_arr_rel_insert_input + regions: [String!] + require_approval: Boolean + status: e_draft_game_status_enum + team_1: teams_obj_rel_insert_input + team_1_id: uuid + team_2: teams_obj_rel_insert_input + team_2_id: uuid + type: e_match_types_enum + updated_at: timestamptz +} + +"""aggregate max on columns""" +type draft_games_max_fields { + capacity: Int + created_at: timestamptz + current_pick_lineup: Int + expires_at: timestamptz + host_steam_id: bigint + id: uuid + invite_code: uuid + map_pool_id: uuid + match_id: uuid + match_options_id: uuid + max_elo: Int + min_elo: Int + pick_deadline: timestamptz + regions: [String!] + team_1_id: uuid + team_2_id: uuid + updated_at: timestamptz +} + +""" +order by max() on columns of table "draft_games" +""" +input draft_games_max_order_by { + capacity: order_by + created_at: order_by + current_pick_lineup: order_by + expires_at: order_by + host_steam_id: order_by + id: order_by + invite_code: order_by + map_pool_id: order_by + match_id: order_by + match_options_id: order_by + max_elo: order_by + min_elo: order_by + pick_deadline: order_by + regions: order_by + team_1_id: order_by + team_2_id: order_by + updated_at: order_by +} + +"""aggregate min on columns""" +type draft_games_min_fields { + capacity: Int + created_at: timestamptz + current_pick_lineup: Int + expires_at: timestamptz + host_steam_id: bigint + id: uuid + invite_code: uuid + map_pool_id: uuid + match_id: uuid + match_options_id: uuid + max_elo: Int + min_elo: Int + pick_deadline: timestamptz + regions: [String!] + team_1_id: uuid + team_2_id: uuid + updated_at: timestamptz +} + +""" +order by min() on columns of table "draft_games" +""" +input draft_games_min_order_by { + capacity: order_by + created_at: order_by + current_pick_lineup: order_by + expires_at: order_by + host_steam_id: order_by + id: order_by + invite_code: order_by + map_pool_id: order_by + match_id: order_by + match_options_id: order_by + max_elo: order_by + min_elo: order_by + pick_deadline: order_by + regions: order_by + team_1_id: order_by + team_2_id: order_by + updated_at: order_by +} + +""" +response of any mutation on the table "draft_games" +""" +type draft_games_mutation_response { + """number of rows affected by the mutation""" + affected_rows: Int! + + """data from the rows affected by the mutation""" + returning: [draft_games!]! +} + +""" +input type for inserting object relation for remote table "draft_games" +""" +input draft_games_obj_rel_insert_input { + data: draft_games_insert_input! + + """upsert condition""" + on_conflict: draft_games_on_conflict +} + +""" +on_conflict condition type for table "draft_games" +""" +input draft_games_on_conflict { + constraint: draft_games_constraint! + update_columns: [draft_games_update_column!]! = [] + where: draft_games_bool_exp +} + +"""Ordering options when selecting data from "draft_games".""" +input draft_games_order_by { + access: order_by + capacity: order_by + captain_selection: order_by + created_at: order_by + current_pick_lineup: order_by + draft_order: order_by + e_draft_game_captain_selection: e_draft_game_captain_selection_order_by + e_draft_game_draft_order: e_draft_game_draft_order_order_by + e_draft_game_mode: e_draft_game_mode_order_by + e_draft_game_status: e_draft_game_status_order_by + e_lobby_access: e_lobby_access_order_by + expires_at: order_by + host: players_order_by + host_steam_id: order_by + id: order_by + inner_squad: order_by + invite_code: order_by + map_pool: map_pools_order_by + map_pool_id: order_by + match: matches_order_by + match_id: order_by + match_options_id: order_by + max_elo: order_by + min_elo: order_by + mode: order_by + options: match_options_order_by + pick_deadline: order_by + picks_aggregate: draft_game_picks_aggregate_order_by + players_aggregate: draft_game_players_aggregate_order_by + regions: order_by + require_approval: order_by + status: order_by + team_1: teams_order_by + team_1_id: order_by + team_2: teams_order_by + team_2_id: order_by + type: order_by + updated_at: order_by +} + +"""primary key columns input for table: draft_games""" +input draft_games_pk_columns_input { + id: uuid! +} + +""" +select columns of table "draft_games" +""" +enum draft_games_select_column { + """column name""" + access + + """column name""" + capacity + + """column name""" + captain_selection + + """column name""" + created_at + + """column name""" + current_pick_lineup + + """column name""" + draft_order + + """column name""" + expires_at + + """column name""" + host_steam_id + + """column name""" + id + + """column name""" + inner_squad + + """column name""" + invite_code + + """column name""" + map_pool_id + + """column name""" + match_id + + """column name""" + match_options_id + + """column name""" + max_elo + + """column name""" + min_elo + + """column name""" + mode + + """column name""" + pick_deadline + + """column name""" + regions + + """column name""" + require_approval + + """column name""" + status + + """column name""" + team_1_id + + """column name""" + team_2_id + + """column name""" + type + + """column name""" + updated_at +} + +""" +select "draft_games_aggregate_bool_exp_bool_and_arguments_columns" columns of table "draft_games" +""" +enum draft_games_select_column_draft_games_aggregate_bool_exp_bool_and_arguments_columns { + """column name""" + inner_squad + + """column name""" + require_approval +} + +""" +select "draft_games_aggregate_bool_exp_bool_or_arguments_columns" columns of table "draft_games" +""" +enum draft_games_select_column_draft_games_aggregate_bool_exp_bool_or_arguments_columns { + """column name""" + inner_squad + + """column name""" + require_approval +} + +""" +input type for updating data in table "draft_games" +""" +input draft_games_set_input { + access: e_lobby_access_enum + capacity: Int + captain_selection: e_draft_game_captain_selection_enum + created_at: timestamptz + current_pick_lineup: Int + draft_order: e_draft_game_draft_order_enum + expires_at: timestamptz + host_steam_id: bigint + id: uuid + inner_squad: Boolean + invite_code: uuid + map_pool_id: uuid + match_id: uuid + match_options_id: uuid + max_elo: Int + min_elo: Int + mode: e_draft_game_mode_enum + pick_deadline: timestamptz + regions: [String!] + require_approval: Boolean + status: e_draft_game_status_enum + team_1_id: uuid + team_2_id: uuid + type: e_match_types_enum + updated_at: timestamptz +} + +"""aggregate stddev on columns""" +type draft_games_stddev_fields { + capacity: Float + current_pick_lineup: Float + host_steam_id: Float + max_elo: Float + min_elo: Float +} + +""" +order by stddev() on columns of table "draft_games" +""" +input draft_games_stddev_order_by { + capacity: order_by + current_pick_lineup: order_by + host_steam_id: order_by + max_elo: order_by + min_elo: order_by +} + +"""aggregate stddev_pop on columns""" +type draft_games_stddev_pop_fields { + capacity: Float + current_pick_lineup: Float + host_steam_id: Float + max_elo: Float + min_elo: Float +} + +""" +order by stddev_pop() on columns of table "draft_games" +""" +input draft_games_stddev_pop_order_by { + capacity: order_by + current_pick_lineup: order_by + host_steam_id: order_by + max_elo: order_by + min_elo: order_by +} + +"""aggregate stddev_samp on columns""" +type draft_games_stddev_samp_fields { + capacity: Float + current_pick_lineup: Float + host_steam_id: Float + max_elo: Float + min_elo: Float +} + +""" +order by stddev_samp() on columns of table "draft_games" +""" +input draft_games_stddev_samp_order_by { + capacity: order_by + current_pick_lineup: order_by + host_steam_id: order_by + max_elo: order_by + min_elo: order_by +} + +""" +Streaming cursor of the table "draft_games" +""" +input draft_games_stream_cursor_input { + """Stream column input with initial value""" + initial_value: draft_games_stream_cursor_value_input! + + """cursor ordering""" + ordering: cursor_ordering +} + +"""Initial value of the column from where the streaming should start""" +input draft_games_stream_cursor_value_input { + access: e_lobby_access_enum + capacity: Int + captain_selection: e_draft_game_captain_selection_enum + created_at: timestamptz + current_pick_lineup: Int + draft_order: e_draft_game_draft_order_enum + expires_at: timestamptz + host_steam_id: bigint + id: uuid + inner_squad: Boolean + invite_code: uuid + map_pool_id: uuid + match_id: uuid + match_options_id: uuid + max_elo: Int + min_elo: Int + mode: e_draft_game_mode_enum + pick_deadline: timestamptz + regions: [String!] + require_approval: Boolean + status: e_draft_game_status_enum + team_1_id: uuid + team_2_id: uuid + type: e_match_types_enum + updated_at: timestamptz +} + +"""aggregate sum on columns""" +type draft_games_sum_fields { + capacity: Int + current_pick_lineup: Int + host_steam_id: bigint + max_elo: Int + min_elo: Int +} + +""" +order by sum() on columns of table "draft_games" +""" +input draft_games_sum_order_by { + capacity: order_by + current_pick_lineup: order_by + host_steam_id: order_by + max_elo: order_by + min_elo: order_by +} + +""" +update columns of table "draft_games" +""" +enum draft_games_update_column { + """column name""" + access + + """column name""" + capacity + + """column name""" + captain_selection + + """column name""" + created_at + + """column name""" + current_pick_lineup + + """column name""" + draft_order + + """column name""" + expires_at + + """column name""" + host_steam_id + + """column name""" + id + + """column name""" + inner_squad + + """column name""" + invite_code + + """column name""" + map_pool_id + + """column name""" + match_id + + """column name""" + match_options_id + + """column name""" + max_elo + + """column name""" + min_elo + + """column name""" + mode + + """column name""" + pick_deadline + + """column name""" + regions + + """column name""" + require_approval + + """column name""" + status + + """column name""" + team_1_id + + """column name""" + team_2_id + + """column name""" + type + + """column name""" + updated_at +} + +input draft_games_updates { + """increments the numeric columns with given value of the filtered values""" + _inc: draft_games_inc_input + + """sets the columns of the filtered rows to the given values""" + _set: draft_games_set_input + + """filter the rows which have to be updated""" + where: draft_games_bool_exp! +} + +"""aggregate var_pop on columns""" +type draft_games_var_pop_fields { + capacity: Float + current_pick_lineup: Float + host_steam_id: Float + max_elo: Float + min_elo: Float +} + +""" +order by var_pop() on columns of table "draft_games" +""" +input draft_games_var_pop_order_by { + capacity: order_by + current_pick_lineup: order_by + host_steam_id: order_by + max_elo: order_by + min_elo: order_by +} + +"""aggregate var_samp on columns""" +type draft_games_var_samp_fields { + capacity: Float + current_pick_lineup: Float + host_steam_id: Float + max_elo: Float + min_elo: Float +} + +""" +order by var_samp() on columns of table "draft_games" +""" +input draft_games_var_samp_order_by { + capacity: order_by + current_pick_lineup: order_by + host_steam_id: order_by + max_elo: order_by + min_elo: order_by +} + +"""aggregate variance on columns""" +type draft_games_variance_fields { + capacity: Float + current_pick_lineup: Float + host_steam_id: Float + max_elo: Float + min_elo: Float +} + +""" +order by variance() on columns of table "draft_games" +""" +input draft_games_variance_order_by { + capacity: order_by + current_pick_lineup: order_by + host_steam_id: order_by + max_elo: order_by + min_elo: order_by +} + """ columns and relationships of "e_check_in_settings" """ -type e_check_in_settings { +type e_check_in_settings { + description: String! + value: String! +} + +""" +aggregated selection of "e_check_in_settings" +""" +type e_check_in_settings_aggregate { + aggregate: e_check_in_settings_aggregate_fields + nodes: [e_check_in_settings!]! +} + +""" +aggregate fields of "e_check_in_settings" +""" +type e_check_in_settings_aggregate_fields { + count(columns: [e_check_in_settings_select_column!], distinct: Boolean): Int! + max: e_check_in_settings_max_fields + min: e_check_in_settings_min_fields +} + +""" +Boolean expression to filter rows from the table "e_check_in_settings". All fields are combined with a logical 'AND'. +""" +input e_check_in_settings_bool_exp { + _and: [e_check_in_settings_bool_exp!] + _not: e_check_in_settings_bool_exp + _or: [e_check_in_settings_bool_exp!] + description: String_comparison_exp + value: String_comparison_exp +} + +""" +unique or primary key constraints on table "e_check_in_settings" +""" +enum e_check_in_settings_constraint { + """ + unique or primary key constraint on columns "value" + """ + e_check_in_settings_pkey +} + +enum e_check_in_settings_enum { + """Admins Only""" + Admin + + """Captains Only""" + Captains + + """All Players""" + Players +} + +""" +Boolean expression to compare columns of type "e_check_in_settings_enum". All fields are combined with logical 'AND'. +""" +input e_check_in_settings_enum_comparison_exp { + _eq: e_check_in_settings_enum + _in: [e_check_in_settings_enum!] + _is_null: Boolean + _neq: e_check_in_settings_enum + _nin: [e_check_in_settings_enum!] +} + +""" +input type for inserting data into table "e_check_in_settings" +""" +input e_check_in_settings_insert_input { + description: String + value: String +} + +"""aggregate max on columns""" +type e_check_in_settings_max_fields { + description: String + value: String +} + +"""aggregate min on columns""" +type e_check_in_settings_min_fields { + description: String + value: String +} + +""" +response of any mutation on the table "e_check_in_settings" +""" +type e_check_in_settings_mutation_response { + """number of rows affected by the mutation""" + affected_rows: Int! + + """data from the rows affected by the mutation""" + returning: [e_check_in_settings!]! +} + +""" +on_conflict condition type for table "e_check_in_settings" +""" +input e_check_in_settings_on_conflict { + constraint: e_check_in_settings_constraint! + update_columns: [e_check_in_settings_update_column!]! = [] + where: e_check_in_settings_bool_exp +} + +"""Ordering options when selecting data from "e_check_in_settings".""" +input e_check_in_settings_order_by { + description: order_by + value: order_by +} + +"""primary key columns input for table: e_check_in_settings""" +input e_check_in_settings_pk_columns_input { + value: String! +} + +""" +select columns of table "e_check_in_settings" +""" +enum e_check_in_settings_select_column { + """column name""" + description + + """column name""" + value +} + +""" +input type for updating data in table "e_check_in_settings" +""" +input e_check_in_settings_set_input { + description: String + value: String +} + +""" +Streaming cursor of the table "e_check_in_settings" +""" +input e_check_in_settings_stream_cursor_input { + """Stream column input with initial value""" + initial_value: e_check_in_settings_stream_cursor_value_input! + + """cursor ordering""" + ordering: cursor_ordering +} + +"""Initial value of the column from where the streaming should start""" +input e_check_in_settings_stream_cursor_value_input { + description: String + value: String +} + +""" +update columns of table "e_check_in_settings" +""" +enum e_check_in_settings_update_column { + """column name""" + description + + """column name""" + value +} + +input e_check_in_settings_updates { + """sets the columns of the filtered rows to the given values""" + _set: e_check_in_settings_set_input + + """filter the rows which have to be updated""" + where: e_check_in_settings_bool_exp! +} + +""" +columns and relationships of "e_draft_game_captain_selection" +""" +type e_draft_game_captain_selection { + description: String! + value: String! +} + +""" +aggregated selection of "e_draft_game_captain_selection" +""" +type e_draft_game_captain_selection_aggregate { + aggregate: e_draft_game_captain_selection_aggregate_fields + nodes: [e_draft_game_captain_selection!]! +} + +""" +aggregate fields of "e_draft_game_captain_selection" +""" +type e_draft_game_captain_selection_aggregate_fields { + count(columns: [e_draft_game_captain_selection_select_column!], distinct: Boolean): Int! + max: e_draft_game_captain_selection_max_fields + min: e_draft_game_captain_selection_min_fields +} + +""" +Boolean expression to filter rows from the table "e_draft_game_captain_selection". All fields are combined with a logical 'AND'. +""" +input e_draft_game_captain_selection_bool_exp { + _and: [e_draft_game_captain_selection_bool_exp!] + _not: e_draft_game_captain_selection_bool_exp + _or: [e_draft_game_captain_selection_bool_exp!] + description: String_comparison_exp + value: String_comparison_exp +} + +""" +unique or primary key constraints on table "e_draft_game_captain_selection" +""" +enum e_draft_game_captain_selection_constraint { + """ + unique or primary key constraint on columns "value" + """ + e_draft_game_captain_selection_pkey +} + +enum e_draft_game_captain_selection_enum { + """Host and Next Highest""" + HostAndNext + + """Random Two""" + RandomTwo + + """Top 2 by Rank""" + TopEloTwo +} + +""" +Boolean expression to compare columns of type "e_draft_game_captain_selection_enum". All fields are combined with logical 'AND'. +""" +input e_draft_game_captain_selection_enum_comparison_exp { + _eq: e_draft_game_captain_selection_enum + _in: [e_draft_game_captain_selection_enum!] + _is_null: Boolean + _neq: e_draft_game_captain_selection_enum + _nin: [e_draft_game_captain_selection_enum!] +} + +""" +input type for inserting data into table "e_draft_game_captain_selection" +""" +input e_draft_game_captain_selection_insert_input { + description: String + value: String +} + +"""aggregate max on columns""" +type e_draft_game_captain_selection_max_fields { + description: String + value: String +} + +"""aggregate min on columns""" +type e_draft_game_captain_selection_min_fields { + description: String + value: String +} + +""" +response of any mutation on the table "e_draft_game_captain_selection" +""" +type e_draft_game_captain_selection_mutation_response { + """number of rows affected by the mutation""" + affected_rows: Int! + + """data from the rows affected by the mutation""" + returning: [e_draft_game_captain_selection!]! +} + +""" +input type for inserting object relation for remote table "e_draft_game_captain_selection" +""" +input e_draft_game_captain_selection_obj_rel_insert_input { + data: e_draft_game_captain_selection_insert_input! + + """upsert condition""" + on_conflict: e_draft_game_captain_selection_on_conflict +} + +""" +on_conflict condition type for table "e_draft_game_captain_selection" +""" +input e_draft_game_captain_selection_on_conflict { + constraint: e_draft_game_captain_selection_constraint! + update_columns: [e_draft_game_captain_selection_update_column!]! = [] + where: e_draft_game_captain_selection_bool_exp +} + +""" +Ordering options when selecting data from "e_draft_game_captain_selection". +""" +input e_draft_game_captain_selection_order_by { + description: order_by + value: order_by +} + +"""primary key columns input for table: e_draft_game_captain_selection""" +input e_draft_game_captain_selection_pk_columns_input { + value: String! +} + +""" +select columns of table "e_draft_game_captain_selection" +""" +enum e_draft_game_captain_selection_select_column { + """column name""" + description + + """column name""" + value +} + +""" +input type for updating data in table "e_draft_game_captain_selection" +""" +input e_draft_game_captain_selection_set_input { + description: String + value: String +} + +""" +Streaming cursor of the table "e_draft_game_captain_selection" +""" +input e_draft_game_captain_selection_stream_cursor_input { + """Stream column input with initial value""" + initial_value: e_draft_game_captain_selection_stream_cursor_value_input! + + """cursor ordering""" + ordering: cursor_ordering +} + +"""Initial value of the column from where the streaming should start""" +input e_draft_game_captain_selection_stream_cursor_value_input { + description: String + value: String +} + +""" +update columns of table "e_draft_game_captain_selection" +""" +enum e_draft_game_captain_selection_update_column { + """column name""" + description + + """column name""" + value +} + +input e_draft_game_captain_selection_updates { + """sets the columns of the filtered rows to the given values""" + _set: e_draft_game_captain_selection_set_input + + """filter the rows which have to be updated""" + where: e_draft_game_captain_selection_bool_exp! +} + +""" +columns and relationships of "e_draft_game_draft_order" +""" +type e_draft_game_draft_order { + description: String! + value: String! +} + +""" +aggregated selection of "e_draft_game_draft_order" +""" +type e_draft_game_draft_order_aggregate { + aggregate: e_draft_game_draft_order_aggregate_fields + nodes: [e_draft_game_draft_order!]! +} + +""" +aggregate fields of "e_draft_game_draft_order" +""" +type e_draft_game_draft_order_aggregate_fields { + count(columns: [e_draft_game_draft_order_select_column!], distinct: Boolean): Int! + max: e_draft_game_draft_order_max_fields + min: e_draft_game_draft_order_min_fields +} + +""" +Boolean expression to filter rows from the table "e_draft_game_draft_order". All fields are combined with a logical 'AND'. +""" +input e_draft_game_draft_order_bool_exp { + _and: [e_draft_game_draft_order_bool_exp!] + _not: e_draft_game_draft_order_bool_exp + _or: [e_draft_game_draft_order_bool_exp!] + description: String_comparison_exp + value: String_comparison_exp +} + +""" +unique or primary key constraints on table "e_draft_game_draft_order" +""" +enum e_draft_game_draft_order_constraint { + """ + unique or primary key constraint on columns "value" + """ + e_draft_game_draft_order_pkey +} + +enum e_draft_game_draft_order_enum { + """Alternating""" + Alternating + + """Snake (1-2-2-2-1)""" + Snake +} + +""" +Boolean expression to compare columns of type "e_draft_game_draft_order_enum". All fields are combined with logical 'AND'. +""" +input e_draft_game_draft_order_enum_comparison_exp { + _eq: e_draft_game_draft_order_enum + _in: [e_draft_game_draft_order_enum!] + _is_null: Boolean + _neq: e_draft_game_draft_order_enum + _nin: [e_draft_game_draft_order_enum!] +} + +""" +input type for inserting data into table "e_draft_game_draft_order" +""" +input e_draft_game_draft_order_insert_input { + description: String + value: String +} + +"""aggregate max on columns""" +type e_draft_game_draft_order_max_fields { + description: String + value: String +} + +"""aggregate min on columns""" +type e_draft_game_draft_order_min_fields { + description: String + value: String +} + +""" +response of any mutation on the table "e_draft_game_draft_order" +""" +type e_draft_game_draft_order_mutation_response { + """number of rows affected by the mutation""" + affected_rows: Int! + + """data from the rows affected by the mutation""" + returning: [e_draft_game_draft_order!]! +} + +""" +input type for inserting object relation for remote table "e_draft_game_draft_order" +""" +input e_draft_game_draft_order_obj_rel_insert_input { + data: e_draft_game_draft_order_insert_input! + + """upsert condition""" + on_conflict: e_draft_game_draft_order_on_conflict +} + +""" +on_conflict condition type for table "e_draft_game_draft_order" +""" +input e_draft_game_draft_order_on_conflict { + constraint: e_draft_game_draft_order_constraint! + update_columns: [e_draft_game_draft_order_update_column!]! = [] + where: e_draft_game_draft_order_bool_exp +} + +"""Ordering options when selecting data from "e_draft_game_draft_order".""" +input e_draft_game_draft_order_order_by { + description: order_by + value: order_by +} + +"""primary key columns input for table: e_draft_game_draft_order""" +input e_draft_game_draft_order_pk_columns_input { + value: String! +} + +""" +select columns of table "e_draft_game_draft_order" +""" +enum e_draft_game_draft_order_select_column { + """column name""" + description + + """column name""" + value +} + +""" +input type for updating data in table "e_draft_game_draft_order" +""" +input e_draft_game_draft_order_set_input { + description: String + value: String +} + +""" +Streaming cursor of the table "e_draft_game_draft_order" +""" +input e_draft_game_draft_order_stream_cursor_input { + """Stream column input with initial value""" + initial_value: e_draft_game_draft_order_stream_cursor_value_input! + + """cursor ordering""" + ordering: cursor_ordering +} + +"""Initial value of the column from where the streaming should start""" +input e_draft_game_draft_order_stream_cursor_value_input { + description: String + value: String +} + +""" +update columns of table "e_draft_game_draft_order" +""" +enum e_draft_game_draft_order_update_column { + """column name""" + description + + """column name""" + value +} + +input e_draft_game_draft_order_updates { + """sets the columns of the filtered rows to the given values""" + _set: e_draft_game_draft_order_set_input + + """filter the rows which have to be updated""" + where: e_draft_game_draft_order_bool_exp! +} + +""" +columns and relationships of "e_draft_game_mode" +""" +type e_draft_game_mode { + description: String! + value: String! +} + +""" +aggregated selection of "e_draft_game_mode" +""" +type e_draft_game_mode_aggregate { + aggregate: e_draft_game_mode_aggregate_fields + nodes: [e_draft_game_mode!]! +} + +""" +aggregate fields of "e_draft_game_mode" +""" +type e_draft_game_mode_aggregate_fields { + count(columns: [e_draft_game_mode_select_column!], distinct: Boolean): Int! + max: e_draft_game_mode_max_fields + min: e_draft_game_mode_min_fields +} + +""" +Boolean expression to filter rows from the table "e_draft_game_mode". All fields are combined with a logical 'AND'. +""" +input e_draft_game_mode_bool_exp { + _and: [e_draft_game_mode_bool_exp!] + _not: e_draft_game_mode_bool_exp + _or: [e_draft_game_mode_bool_exp!] + description: String_comparison_exp + value: String_comparison_exp +} + +""" +unique or primary key constraints on table "e_draft_game_mode" +""" +enum e_draft_game_mode_constraint { + """ + unique or primary key constraint on columns "value" + """ + e_draft_game_mode_pkey +} + +enum e_draft_game_mode_enum { + """Two Captains Draft""" + Captains + + """Host Assigns Teams""" + Host + + """Auto-Split Teams""" + Pug + + """Pre-Made Teams""" + Teams +} + +""" +Boolean expression to compare columns of type "e_draft_game_mode_enum". All fields are combined with logical 'AND'. +""" +input e_draft_game_mode_enum_comparison_exp { + _eq: e_draft_game_mode_enum + _in: [e_draft_game_mode_enum!] + _is_null: Boolean + _neq: e_draft_game_mode_enum + _nin: [e_draft_game_mode_enum!] +} + +""" +input type for inserting data into table "e_draft_game_mode" +""" +input e_draft_game_mode_insert_input { + description: String + value: String +} + +"""aggregate max on columns""" +type e_draft_game_mode_max_fields { + description: String + value: String +} + +"""aggregate min on columns""" +type e_draft_game_mode_min_fields { + description: String + value: String +} + +""" +response of any mutation on the table "e_draft_game_mode" +""" +type e_draft_game_mode_mutation_response { + """number of rows affected by the mutation""" + affected_rows: Int! + + """data from the rows affected by the mutation""" + returning: [e_draft_game_mode!]! +} + +""" +input type for inserting object relation for remote table "e_draft_game_mode" +""" +input e_draft_game_mode_obj_rel_insert_input { + data: e_draft_game_mode_insert_input! + + """upsert condition""" + on_conflict: e_draft_game_mode_on_conflict +} + +""" +on_conflict condition type for table "e_draft_game_mode" +""" +input e_draft_game_mode_on_conflict { + constraint: e_draft_game_mode_constraint! + update_columns: [e_draft_game_mode_update_column!]! = [] + where: e_draft_game_mode_bool_exp +} + +"""Ordering options when selecting data from "e_draft_game_mode".""" +input e_draft_game_mode_order_by { + description: order_by + value: order_by +} + +"""primary key columns input for table: e_draft_game_mode""" +input e_draft_game_mode_pk_columns_input { + value: String! +} + +""" +select columns of table "e_draft_game_mode" +""" +enum e_draft_game_mode_select_column { + """column name""" + description + + """column name""" + value +} + +""" +input type for updating data in table "e_draft_game_mode" +""" +input e_draft_game_mode_set_input { + description: String + value: String +} + +""" +Streaming cursor of the table "e_draft_game_mode" +""" +input e_draft_game_mode_stream_cursor_input { + """Stream column input with initial value""" + initial_value: e_draft_game_mode_stream_cursor_value_input! + + """cursor ordering""" + ordering: cursor_ordering +} + +"""Initial value of the column from where the streaming should start""" +input e_draft_game_mode_stream_cursor_value_input { + description: String + value: String +} + +""" +update columns of table "e_draft_game_mode" +""" +enum e_draft_game_mode_update_column { + """column name""" + description + + """column name""" + value +} + +input e_draft_game_mode_updates { + """sets the columns of the filtered rows to the given values""" + _set: e_draft_game_mode_set_input + + """filter the rows which have to be updated""" + where: e_draft_game_mode_bool_exp! +} + +""" +columns and relationships of "e_draft_game_player_status" +""" +type e_draft_game_player_status { description: String! value: String! } """ -aggregated selection of "e_check_in_settings" +aggregated selection of "e_draft_game_player_status" """ -type e_check_in_settings_aggregate { - aggregate: e_check_in_settings_aggregate_fields - nodes: [e_check_in_settings!]! +type e_draft_game_player_status_aggregate { + aggregate: e_draft_game_player_status_aggregate_fields + nodes: [e_draft_game_player_status!]! } """ -aggregate fields of "e_check_in_settings" +aggregate fields of "e_draft_game_player_status" """ -type e_check_in_settings_aggregate_fields { - count(columns: [e_check_in_settings_select_column!], distinct: Boolean): Int! - max: e_check_in_settings_max_fields - min: e_check_in_settings_min_fields +type e_draft_game_player_status_aggregate_fields { + count(columns: [e_draft_game_player_status_select_column!], distinct: Boolean): Int! + max: e_draft_game_player_status_max_fields + min: e_draft_game_player_status_min_fields } """ -Boolean expression to filter rows from the table "e_check_in_settings". All fields are combined with a logical 'AND'. +Boolean expression to filter rows from the table "e_draft_game_player_status". All fields are combined with a logical 'AND'. """ -input e_check_in_settings_bool_exp { - _and: [e_check_in_settings_bool_exp!] - _not: e_check_in_settings_bool_exp - _or: [e_check_in_settings_bool_exp!] +input e_draft_game_player_status_bool_exp { + _and: [e_draft_game_player_status_bool_exp!] + _not: e_draft_game_player_status_bool_exp + _or: [e_draft_game_player_status_bool_exp!] description: String_comparison_exp value: String_comparison_exp } """ -unique or primary key constraints on table "e_check_in_settings" +unique or primary key constraints on table "e_draft_game_player_status" """ -enum e_check_in_settings_constraint { +enum e_draft_game_player_status_constraint { """ unique or primary key constraint on columns "value" """ - e_check_in_settings_pkey + e_draft_game_player_status_pkey } -enum e_check_in_settings_enum { - """Admins Only""" - Admin +enum e_draft_game_player_status_enum { + """Player Accepted Into Game""" + Accepted - """Captains Only""" - Captains + """Player Requested To Join""" + Requested - """All Players""" - Players + """Player On Waitlist""" + Waitlist } """ -Boolean expression to compare columns of type "e_check_in_settings_enum". All fields are combined with logical 'AND'. +Boolean expression to compare columns of type "e_draft_game_player_status_enum". All fields are combined with logical 'AND'. """ -input e_check_in_settings_enum_comparison_exp { - _eq: e_check_in_settings_enum - _in: [e_check_in_settings_enum!] +input e_draft_game_player_status_enum_comparison_exp { + _eq: e_draft_game_player_status_enum + _in: [e_draft_game_player_status_enum!] _is_null: Boolean - _neq: e_check_in_settings_enum - _nin: [e_check_in_settings_enum!] + _neq: e_draft_game_player_status_enum + _nin: [e_draft_game_player_status_enum!] } """ -input type for inserting data into table "e_check_in_settings" +input type for inserting data into table "e_draft_game_player_status" """ -input e_check_in_settings_insert_input { +input e_draft_game_player_status_insert_input { description: String value: String } """aggregate max on columns""" -type e_check_in_settings_max_fields { +type e_draft_game_player_status_max_fields { description: String value: String } """aggregate min on columns""" -type e_check_in_settings_min_fields { +type e_draft_game_player_status_min_fields { description: String value: String } """ -response of any mutation on the table "e_check_in_settings" +response of any mutation on the table "e_draft_game_player_status" """ -type e_check_in_settings_mutation_response { +type e_draft_game_player_status_mutation_response { """number of rows affected by the mutation""" affected_rows: Int! """data from the rows affected by the mutation""" - returning: [e_check_in_settings!]! + returning: [e_draft_game_player_status!]! } """ -on_conflict condition type for table "e_check_in_settings" +input type for inserting object relation for remote table "e_draft_game_player_status" """ -input e_check_in_settings_on_conflict { - constraint: e_check_in_settings_constraint! - update_columns: [e_check_in_settings_update_column!]! = [] - where: e_check_in_settings_bool_exp +input e_draft_game_player_status_obj_rel_insert_input { + data: e_draft_game_player_status_insert_input! + + """upsert condition""" + on_conflict: e_draft_game_player_status_on_conflict } -"""Ordering options when selecting data from "e_check_in_settings".""" -input e_check_in_settings_order_by { +""" +on_conflict condition type for table "e_draft_game_player_status" +""" +input e_draft_game_player_status_on_conflict { + constraint: e_draft_game_player_status_constraint! + update_columns: [e_draft_game_player_status_update_column!]! = [] + where: e_draft_game_player_status_bool_exp +} + +""" +Ordering options when selecting data from "e_draft_game_player_status". +""" +input e_draft_game_player_status_order_by { description: order_by value: order_by } -"""primary key columns input for table: e_check_in_settings""" -input e_check_in_settings_pk_columns_input { +"""primary key columns input for table: e_draft_game_player_status""" +input e_draft_game_player_status_pk_columns_input { value: String! } """ -select columns of table "e_check_in_settings" +select columns of table "e_draft_game_player_status" """ -enum e_check_in_settings_select_column { +enum e_draft_game_player_status_select_column { """column name""" description @@ -2516,34 +5163,34 @@ enum e_check_in_settings_select_column { } """ -input type for updating data in table "e_check_in_settings" +input type for updating data in table "e_draft_game_player_status" """ -input e_check_in_settings_set_input { +input e_draft_game_player_status_set_input { description: String value: String } """ -Streaming cursor of the table "e_check_in_settings" +Streaming cursor of the table "e_draft_game_player_status" """ -input e_check_in_settings_stream_cursor_input { +input e_draft_game_player_status_stream_cursor_input { """Stream column input with initial value""" - initial_value: e_check_in_settings_stream_cursor_value_input! + initial_value: e_draft_game_player_status_stream_cursor_value_input! """cursor ordering""" ordering: cursor_ordering } """Initial value of the column from where the streaming should start""" -input e_check_in_settings_stream_cursor_value_input { +input e_draft_game_player_status_stream_cursor_value_input { description: String value: String } """ -update columns of table "e_check_in_settings" +update columns of table "e_draft_game_player_status" """ -enum e_check_in_settings_update_column { +enum e_draft_game_player_status_update_column { """column name""" description @@ -2551,12 +5198,208 @@ enum e_check_in_settings_update_column { value } -input e_check_in_settings_updates { +input e_draft_game_player_status_updates { """sets the columns of the filtered rows to the given values""" - _set: e_check_in_settings_set_input + _set: e_draft_game_player_status_set_input """filter the rows which have to be updated""" - where: e_check_in_settings_bool_exp! + where: e_draft_game_player_status_bool_exp! +} + +""" +columns and relationships of "e_draft_game_status" +""" +type e_draft_game_status { + description: String! + value: String! +} + +""" +aggregated selection of "e_draft_game_status" +""" +type e_draft_game_status_aggregate { + aggregate: e_draft_game_status_aggregate_fields + nodes: [e_draft_game_status!]! +} + +""" +aggregate fields of "e_draft_game_status" +""" +type e_draft_game_status_aggregate_fields { + count(columns: [e_draft_game_status_select_column!], distinct: Boolean): Int! + max: e_draft_game_status_max_fields + min: e_draft_game_status_min_fields +} + +""" +Boolean expression to filter rows from the table "e_draft_game_status". All fields are combined with a logical 'AND'. +""" +input e_draft_game_status_bool_exp { + _and: [e_draft_game_status_bool_exp!] + _not: e_draft_game_status_bool_exp + _or: [e_draft_game_status_bool_exp!] + description: String_comparison_exp + value: String_comparison_exp +} + +""" +unique or primary key constraints on table "e_draft_game_status" +""" +enum e_draft_game_status_constraint { + """ + unique or primary key constraint on columns "value" + """ + e_draft_game_status_pkey +} + +enum e_draft_game_status_enum { + """Canceled""" + Canceled + + """Completed""" + Completed + + """Creating Match""" + CreatingMatch + + """Drafting Players""" + Drafting + + """Lobby Full""" + Filled + + """Accepting Players""" + Open + + """Selecting Captains""" + SelectingCaptains +} + +""" +Boolean expression to compare columns of type "e_draft_game_status_enum". All fields are combined with logical 'AND'. +""" +input e_draft_game_status_enum_comparison_exp { + _eq: e_draft_game_status_enum + _in: [e_draft_game_status_enum!] + _is_null: Boolean + _neq: e_draft_game_status_enum + _nin: [e_draft_game_status_enum!] +} + +""" +input type for inserting data into table "e_draft_game_status" +""" +input e_draft_game_status_insert_input { + description: String + value: String +} + +"""aggregate max on columns""" +type e_draft_game_status_max_fields { + description: String + value: String +} + +"""aggregate min on columns""" +type e_draft_game_status_min_fields { + description: String + value: String +} + +""" +response of any mutation on the table "e_draft_game_status" +""" +type e_draft_game_status_mutation_response { + """number of rows affected by the mutation""" + affected_rows: Int! + + """data from the rows affected by the mutation""" + returning: [e_draft_game_status!]! +} + +""" +input type for inserting object relation for remote table "e_draft_game_status" +""" +input e_draft_game_status_obj_rel_insert_input { + data: e_draft_game_status_insert_input! + + """upsert condition""" + on_conflict: e_draft_game_status_on_conflict +} + +""" +on_conflict condition type for table "e_draft_game_status" +""" +input e_draft_game_status_on_conflict { + constraint: e_draft_game_status_constraint! + update_columns: [e_draft_game_status_update_column!]! = [] + where: e_draft_game_status_bool_exp +} + +"""Ordering options when selecting data from "e_draft_game_status".""" +input e_draft_game_status_order_by { + description: order_by + value: order_by +} + +"""primary key columns input for table: e_draft_game_status""" +input e_draft_game_status_pk_columns_input { + value: String! +} + +""" +select columns of table "e_draft_game_status" +""" +enum e_draft_game_status_select_column { + """column name""" + description + + """column name""" + value +} + +""" +input type for updating data in table "e_draft_game_status" +""" +input e_draft_game_status_set_input { + description: String + value: String +} + +""" +Streaming cursor of the table "e_draft_game_status" +""" +input e_draft_game_status_stream_cursor_input { + """Stream column input with initial value""" + initial_value: e_draft_game_status_stream_cursor_value_input! + + """cursor ordering""" + ordering: cursor_ordering +} + +"""Initial value of the column from where the streaming should start""" +input e_draft_game_status_stream_cursor_value_input { + description: String + value: String +} + +""" +update columns of table "e_draft_game_status" +""" +enum e_draft_game_status_update_column { + """column name""" + description + + """column name""" + value +} + +input e_draft_game_status_updates { + """sets the columns of the filtered rows to the given values""" + _set: e_draft_game_status_set_input + + """filter the rows which have to be updated""" + where: e_draft_game_status_bool_exp! } """ @@ -19705,6 +22548,42 @@ type matches { where: match_map_demos_bool_exp ): match_map_demos_aggregate! + """An array relationship""" + draft_games( + """distinct select on columns""" + distinct_on: [draft_games_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [draft_games_order_by!] + + """filter the rows returned""" + where: draft_games_bool_exp + ): [draft_games!]! + + """An aggregate relationship""" + draft_games_aggregate( + """distinct select on columns""" + distinct_on: [draft_games_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [draft_games_order_by!] + + """filter the rows returned""" + where: draft_games_bool_exp + ): draft_games_aggregate! + """An object relationship""" e_match_status: e_match_status! @@ -20514,6 +23393,8 @@ input matches_bool_exp { current_match_map_id: uuid_comparison_exp demos: match_map_demos_bool_exp demos_aggregate: match_map_demos_aggregate_bool_exp + draft_games: draft_games_bool_exp + draft_games_aggregate: draft_games_aggregate_bool_exp e_match_status: e_match_status_bool_exp e_region: server_regions_bool_exp effective_at: timestamptz_comparison_exp @@ -20637,6 +23518,7 @@ input matches_insert_input { clutches: v_match_clutches_arr_rel_insert_input created_at: timestamptz demos: match_map_demos_arr_rel_insert_input + draft_games: draft_games_arr_rel_insert_input e_match_status: e_match_status_obj_rel_insert_input e_region: server_regions_obj_rel_insert_input elo_changes: v_player_elo_arr_rel_insert_input @@ -20942,6 +23824,7 @@ input matches_order_by { created_at: order_by current_match_map_id: order_by demos_aggregate: match_map_demos_aggregate_order_by + draft_games_aggregate: draft_games_aggregate_order_by e_match_status: e_match_status_order_by e_region: server_regions_order_by effective_at: order_by @@ -21653,6 +24536,45 @@ type mutation_root { """ delete_db_backups_by_pk(id: uuid!): db_backups + """ + delete data from the table: "draft_game_picks" + """ + delete_draft_game_picks( + """filter the rows which have to be deleted""" + where: draft_game_picks_bool_exp! + ): draft_game_picks_mutation_response + + """ + delete single row from the table: "draft_game_picks" + """ + delete_draft_game_picks_by_pk(id: uuid!): draft_game_picks + + """ + delete data from the table: "draft_game_players" + """ + delete_draft_game_players( + """filter the rows which have to be deleted""" + where: draft_game_players_bool_exp! + ): draft_game_players_mutation_response + + """ + delete single row from the table: "draft_game_players" + """ + delete_draft_game_players_by_pk(draft_game_id: uuid!, steam_id: bigint!): draft_game_players + + """ + delete data from the table: "draft_games" + """ + delete_draft_games( + """filter the rows which have to be deleted""" + where: draft_games_bool_exp! + ): draft_games_mutation_response + + """ + delete single row from the table: "draft_games" + """ + delete_draft_games_by_pk(id: uuid!): draft_games + """ delete data from the table: "e_check_in_settings" """ @@ -21666,6 +24588,71 @@ type mutation_root { """ delete_e_check_in_settings_by_pk(value: String!): e_check_in_settings + """ + delete data from the table: "e_draft_game_captain_selection" + """ + delete_e_draft_game_captain_selection( + """filter the rows which have to be deleted""" + where: e_draft_game_captain_selection_bool_exp! + ): e_draft_game_captain_selection_mutation_response + + """ + delete single row from the table: "e_draft_game_captain_selection" + """ + delete_e_draft_game_captain_selection_by_pk(value: String!): e_draft_game_captain_selection + + """ + delete data from the table: "e_draft_game_draft_order" + """ + delete_e_draft_game_draft_order( + """filter the rows which have to be deleted""" + where: e_draft_game_draft_order_bool_exp! + ): e_draft_game_draft_order_mutation_response + + """ + delete single row from the table: "e_draft_game_draft_order" + """ + delete_e_draft_game_draft_order_by_pk(value: String!): e_draft_game_draft_order + + """ + delete data from the table: "e_draft_game_mode" + """ + delete_e_draft_game_mode( + """filter the rows which have to be deleted""" + where: e_draft_game_mode_bool_exp! + ): e_draft_game_mode_mutation_response + + """ + delete single row from the table: "e_draft_game_mode" + """ + delete_e_draft_game_mode_by_pk(value: String!): e_draft_game_mode + + """ + delete data from the table: "e_draft_game_player_status" + """ + delete_e_draft_game_player_status( + """filter the rows which have to be deleted""" + where: e_draft_game_player_status_bool_exp! + ): e_draft_game_player_status_mutation_response + + """ + delete single row from the table: "e_draft_game_player_status" + """ + delete_e_draft_game_player_status_by_pk(value: String!): e_draft_game_player_status + + """ + delete data from the table: "e_draft_game_status" + """ + delete_e_draft_game_status( + """filter the rows which have to be deleted""" + where: e_draft_game_status_bool_exp! + ): e_draft_game_status_mutation_response + + """ + delete single row from the table: "e_draft_game_status" + """ + delete_e_draft_game_status_by_pk(value: String!): e_draft_game_status + """ delete data from the table: "e_friend_status" """ @@ -22319,6 +25306,19 @@ type mutation_root { where: my_friends_bool_exp! ): my_friends_mutation_response + """ + delete data from the table: "news_articles" + """ + delete_news_articles( + """filter the rows which have to be deleted""" + where: news_articles_bool_exp! + ): news_articles_mutation_response + + """ + delete single row from the table: "news_articles" + """ + delete_news_articles_by_pk(id: uuid!): news_articles + """ delete data from the table: "notifications" """ @@ -22997,6 +25997,72 @@ type mutation_root { on_conflict: db_backups_on_conflict ): db_backups + """ + insert data into the table: "draft_game_picks" + """ + insert_draft_game_picks( + """the rows to be inserted""" + objects: [draft_game_picks_insert_input!]! + + """upsert condition""" + on_conflict: draft_game_picks_on_conflict + ): draft_game_picks_mutation_response + + """ + insert a single row into the table: "draft_game_picks" + """ + insert_draft_game_picks_one( + """the row to be inserted""" + object: draft_game_picks_insert_input! + + """upsert condition""" + on_conflict: draft_game_picks_on_conflict + ): draft_game_picks + + """ + insert data into the table: "draft_game_players" + """ + insert_draft_game_players( + """the rows to be inserted""" + objects: [draft_game_players_insert_input!]! + + """upsert condition""" + on_conflict: draft_game_players_on_conflict + ): draft_game_players_mutation_response + + """ + insert a single row into the table: "draft_game_players" + """ + insert_draft_game_players_one( + """the row to be inserted""" + object: draft_game_players_insert_input! + + """upsert condition""" + on_conflict: draft_game_players_on_conflict + ): draft_game_players + + """ + insert data into the table: "draft_games" + """ + insert_draft_games( + """the rows to be inserted""" + objects: [draft_games_insert_input!]! + + """upsert condition""" + on_conflict: draft_games_on_conflict + ): draft_games_mutation_response + + """ + insert a single row into the table: "draft_games" + """ + insert_draft_games_one( + """the row to be inserted""" + object: draft_games_insert_input! + + """upsert condition""" + on_conflict: draft_games_on_conflict + ): draft_games + """ insert data into the table: "e_check_in_settings" """ @@ -23019,6 +26085,116 @@ type mutation_root { on_conflict: e_check_in_settings_on_conflict ): e_check_in_settings + """ + insert data into the table: "e_draft_game_captain_selection" + """ + insert_e_draft_game_captain_selection( + """the rows to be inserted""" + objects: [e_draft_game_captain_selection_insert_input!]! + + """upsert condition""" + on_conflict: e_draft_game_captain_selection_on_conflict + ): e_draft_game_captain_selection_mutation_response + + """ + insert a single row into the table: "e_draft_game_captain_selection" + """ + insert_e_draft_game_captain_selection_one( + """the row to be inserted""" + object: e_draft_game_captain_selection_insert_input! + + """upsert condition""" + on_conflict: e_draft_game_captain_selection_on_conflict + ): e_draft_game_captain_selection + + """ + insert data into the table: "e_draft_game_draft_order" + """ + insert_e_draft_game_draft_order( + """the rows to be inserted""" + objects: [e_draft_game_draft_order_insert_input!]! + + """upsert condition""" + on_conflict: e_draft_game_draft_order_on_conflict + ): e_draft_game_draft_order_mutation_response + + """ + insert a single row into the table: "e_draft_game_draft_order" + """ + insert_e_draft_game_draft_order_one( + """the row to be inserted""" + object: e_draft_game_draft_order_insert_input! + + """upsert condition""" + on_conflict: e_draft_game_draft_order_on_conflict + ): e_draft_game_draft_order + + """ + insert data into the table: "e_draft_game_mode" + """ + insert_e_draft_game_mode( + """the rows to be inserted""" + objects: [e_draft_game_mode_insert_input!]! + + """upsert condition""" + on_conflict: e_draft_game_mode_on_conflict + ): e_draft_game_mode_mutation_response + + """ + insert a single row into the table: "e_draft_game_mode" + """ + insert_e_draft_game_mode_one( + """the row to be inserted""" + object: e_draft_game_mode_insert_input! + + """upsert condition""" + on_conflict: e_draft_game_mode_on_conflict + ): e_draft_game_mode + + """ + insert data into the table: "e_draft_game_player_status" + """ + insert_e_draft_game_player_status( + """the rows to be inserted""" + objects: [e_draft_game_player_status_insert_input!]! + + """upsert condition""" + on_conflict: e_draft_game_player_status_on_conflict + ): e_draft_game_player_status_mutation_response + + """ + insert a single row into the table: "e_draft_game_player_status" + """ + insert_e_draft_game_player_status_one( + """the row to be inserted""" + object: e_draft_game_player_status_insert_input! + + """upsert condition""" + on_conflict: e_draft_game_player_status_on_conflict + ): e_draft_game_player_status + + """ + insert data into the table: "e_draft_game_status" + """ + insert_e_draft_game_status( + """the rows to be inserted""" + objects: [e_draft_game_status_insert_input!]! + + """upsert condition""" + on_conflict: e_draft_game_status_on_conflict + ): e_draft_game_status_mutation_response + + """ + insert a single row into the table: "e_draft_game_status" + """ + insert_e_draft_game_status_one( + """the row to be inserted""" + object: e_draft_game_status_insert_input! + + """upsert condition""" + on_conflict: e_draft_game_status_on_conflict + ): e_draft_game_status + """ insert data into the table: "e_friend_status" """ @@ -24129,6 +27305,28 @@ type mutation_root { object: my_friends_insert_input! ): my_friends + """ + insert data into the table: "news_articles" + """ + insert_news_articles( + """the rows to be inserted""" + objects: [news_articles_insert_input!]! + + """upsert condition""" + on_conflict: news_articles_on_conflict + ): news_articles_mutation_response + + """ + insert a single row into the table: "news_articles" + """ + insert_news_articles_one( + """the row to be inserted""" + object: news_articles_insert_input! + + """upsert condition""" + on_conflict: news_articles_on_conflict + ): news_articles + """ insert data into the table: "notifications" """ @@ -25177,6 +28375,11 @@ type mutation_root { Reset a terminal-state clip_render_jobs row back to queued and re-enqueue the batch worker (admin only). """ requeueClipRender(job_id: uuid!): SuccessOutput + + """ + Re-scan tl;dr for new news articles (admin only). Enqueues a background scrape job; no-op if the integration is disabled. + """ + rescanTldrNews: SuccessOutput restartService(service: String!): SuccessOutput """Clear paused flag and re-enqueue remaining queued clip_render_jobs.""" @@ -25448,6 +28651,108 @@ type mutation_root { updates: [db_backups_updates!]! ): [db_backups_mutation_response] + """ + update data of the table: "draft_game_picks" + """ + update_draft_game_picks( + """increments the numeric columns with given value of the filtered values""" + _inc: draft_game_picks_inc_input + + """sets the columns of the filtered rows to the given values""" + _set: draft_game_picks_set_input + + """filter the rows which have to be updated""" + where: draft_game_picks_bool_exp! + ): draft_game_picks_mutation_response + + """ + update single row of the table: "draft_game_picks" + """ + update_draft_game_picks_by_pk( + """increments the numeric columns with given value of the filtered values""" + _inc: draft_game_picks_inc_input + + """sets the columns of the filtered rows to the given values""" + _set: draft_game_picks_set_input + pk_columns: draft_game_picks_pk_columns_input! + ): draft_game_picks + + """ + update multiples rows of table: "draft_game_picks" + """ + update_draft_game_picks_many( + """updates to execute, in order""" + updates: [draft_game_picks_updates!]! + ): [draft_game_picks_mutation_response] + + """ + update data of the table: "draft_game_players" + """ + update_draft_game_players( + """increments the numeric columns with given value of the filtered values""" + _inc: draft_game_players_inc_input + + """sets the columns of the filtered rows to the given values""" + _set: draft_game_players_set_input + + """filter the rows which have to be updated""" + where: draft_game_players_bool_exp! + ): draft_game_players_mutation_response + + """ + update single row of the table: "draft_game_players" + """ + update_draft_game_players_by_pk( + """increments the numeric columns with given value of the filtered values""" + _inc: draft_game_players_inc_input + + """sets the columns of the filtered rows to the given values""" + _set: draft_game_players_set_input + pk_columns: draft_game_players_pk_columns_input! + ): draft_game_players + + """ + update multiples rows of table: "draft_game_players" + """ + update_draft_game_players_many( + """updates to execute, in order""" + updates: [draft_game_players_updates!]! + ): [draft_game_players_mutation_response] + + """ + update data of the table: "draft_games" + """ + update_draft_games( + """increments the numeric columns with given value of the filtered values""" + _inc: draft_games_inc_input + + """sets the columns of the filtered rows to the given values""" + _set: draft_games_set_input + + """filter the rows which have to be updated""" + where: draft_games_bool_exp! + ): draft_games_mutation_response + + """ + update single row of the table: "draft_games" + """ + update_draft_games_by_pk( + """increments the numeric columns with given value of the filtered values""" + _inc: draft_games_inc_input + + """sets the columns of the filtered rows to the given values""" + _set: draft_games_set_input + pk_columns: draft_games_pk_columns_input! + ): draft_games + + """ + update multiples rows of table: "draft_games" + """ + update_draft_games_many( + """updates to execute, in order""" + updates: [draft_games_updates!]! + ): [draft_games_mutation_response] + """ update data of the table: "e_check_in_settings" """ @@ -25476,6 +28781,146 @@ type mutation_root { updates: [e_check_in_settings_updates!]! ): [e_check_in_settings_mutation_response] + """ + update data of the table: "e_draft_game_captain_selection" + """ + update_e_draft_game_captain_selection( + """sets the columns of the filtered rows to the given values""" + _set: e_draft_game_captain_selection_set_input + + """filter the rows which have to be updated""" + where: e_draft_game_captain_selection_bool_exp! + ): e_draft_game_captain_selection_mutation_response + + """ + update single row of the table: "e_draft_game_captain_selection" + """ + update_e_draft_game_captain_selection_by_pk( + """sets the columns of the filtered rows to the given values""" + _set: e_draft_game_captain_selection_set_input + pk_columns: e_draft_game_captain_selection_pk_columns_input! + ): e_draft_game_captain_selection + + """ + update multiples rows of table: "e_draft_game_captain_selection" + """ + update_e_draft_game_captain_selection_many( + """updates to execute, in order""" + updates: [e_draft_game_captain_selection_updates!]! + ): [e_draft_game_captain_selection_mutation_response] + + """ + update data of the table: "e_draft_game_draft_order" + """ + update_e_draft_game_draft_order( + """sets the columns of the filtered rows to the given values""" + _set: e_draft_game_draft_order_set_input + + """filter the rows which have to be updated""" + where: e_draft_game_draft_order_bool_exp! + ): e_draft_game_draft_order_mutation_response + + """ + update single row of the table: "e_draft_game_draft_order" + """ + update_e_draft_game_draft_order_by_pk( + """sets the columns of the filtered rows to the given values""" + _set: e_draft_game_draft_order_set_input + pk_columns: e_draft_game_draft_order_pk_columns_input! + ): e_draft_game_draft_order + + """ + update multiples rows of table: "e_draft_game_draft_order" + """ + update_e_draft_game_draft_order_many( + """updates to execute, in order""" + updates: [e_draft_game_draft_order_updates!]! + ): [e_draft_game_draft_order_mutation_response] + + """ + update data of the table: "e_draft_game_mode" + """ + update_e_draft_game_mode( + """sets the columns of the filtered rows to the given values""" + _set: e_draft_game_mode_set_input + + """filter the rows which have to be updated""" + where: e_draft_game_mode_bool_exp! + ): e_draft_game_mode_mutation_response + + """ + update single row of the table: "e_draft_game_mode" + """ + update_e_draft_game_mode_by_pk( + """sets the columns of the filtered rows to the given values""" + _set: e_draft_game_mode_set_input + pk_columns: e_draft_game_mode_pk_columns_input! + ): e_draft_game_mode + + """ + update multiples rows of table: "e_draft_game_mode" + """ + update_e_draft_game_mode_many( + """updates to execute, in order""" + updates: [e_draft_game_mode_updates!]! + ): [e_draft_game_mode_mutation_response] + + """ + update data of the table: "e_draft_game_player_status" + """ + update_e_draft_game_player_status( + """sets the columns of the filtered rows to the given values""" + _set: e_draft_game_player_status_set_input + + """filter the rows which have to be updated""" + where: e_draft_game_player_status_bool_exp! + ): e_draft_game_player_status_mutation_response + + """ + update single row of the table: "e_draft_game_player_status" + """ + update_e_draft_game_player_status_by_pk( + """sets the columns of the filtered rows to the given values""" + _set: e_draft_game_player_status_set_input + pk_columns: e_draft_game_player_status_pk_columns_input! + ): e_draft_game_player_status + + """ + update multiples rows of table: "e_draft_game_player_status" + """ + update_e_draft_game_player_status_many( + """updates to execute, in order""" + updates: [e_draft_game_player_status_updates!]! + ): [e_draft_game_player_status_mutation_response] + + """ + update data of the table: "e_draft_game_status" + """ + update_e_draft_game_status( + """sets the columns of the filtered rows to the given values""" + _set: e_draft_game_status_set_input + + """filter the rows which have to be updated""" + where: e_draft_game_status_bool_exp! + ): e_draft_game_status_mutation_response + + """ + update single row of the table: "e_draft_game_status" + """ + update_e_draft_game_status_by_pk( + """sets the columns of the filtered rows to the given values""" + _set: e_draft_game_status_set_input + pk_columns: e_draft_game_status_pk_columns_input! + ): e_draft_game_status + + """ + update multiples rows of table: "e_draft_game_status" + """ + update_e_draft_game_status_many( + """updates to execute, in order""" + updates: [e_draft_game_status_updates!]! + ): [e_draft_game_status_mutation_response] + """ update data of the table: "e_friend_status" """ @@ -27261,6 +30706,40 @@ type mutation_root { updates: [my_friends_updates!]! ): [my_friends_mutation_response] + """ + update data of the table: "news_articles" + """ + update_news_articles( + """increments the numeric columns with given value of the filtered values""" + _inc: news_articles_inc_input + + """sets the columns of the filtered rows to the given values""" + _set: news_articles_set_input + + """filter the rows which have to be updated""" + where: news_articles_bool_exp! + ): news_articles_mutation_response + + """ + update single row of the table: "news_articles" + """ + update_news_articles_by_pk( + """increments the numeric columns with given value of the filtered values""" + _inc: news_articles_inc_input + + """sets the columns of the filtered rows to the given values""" + _set: news_articles_set_input + pk_columns: news_articles_pk_columns_input! + ): news_articles + + """ + update multiples rows of table: "news_articles" + """ + update_news_articles_many( + """updates to execute, in order""" + updates: [news_articles_updates!]! + ): [news_articles_mutation_response] + """ update data of the table: "notifications" """ @@ -29372,6 +32851,389 @@ input my_friends_variance_order_by { steam_id: order_by } +""" +columns and relationships of "news_articles" +""" +type news_articles { + author: String + content_html: String + cover_image_url: String + created_at: timestamptz! + id: uuid! + issue_number: Int + published_at: timestamptz + scraped_at: timestamptz! + slug: String + source: String! + teaser: String + title: String! + updated_at: timestamptz! + url: String! +} + +""" +aggregated selection of "news_articles" +""" +type news_articles_aggregate { + aggregate: news_articles_aggregate_fields + nodes: [news_articles!]! +} + +""" +aggregate fields of "news_articles" +""" +type news_articles_aggregate_fields { + avg: news_articles_avg_fields + count(columns: [news_articles_select_column!], distinct: Boolean): Int! + max: news_articles_max_fields + min: news_articles_min_fields + stddev: news_articles_stddev_fields + stddev_pop: news_articles_stddev_pop_fields + stddev_samp: news_articles_stddev_samp_fields + sum: news_articles_sum_fields + var_pop: news_articles_var_pop_fields + var_samp: news_articles_var_samp_fields + variance: news_articles_variance_fields +} + +"""aggregate avg on columns""" +type news_articles_avg_fields { + issue_number: Float +} + +""" +Boolean expression to filter rows from the table "news_articles". All fields are combined with a logical 'AND'. +""" +input news_articles_bool_exp { + _and: [news_articles_bool_exp!] + _not: news_articles_bool_exp + _or: [news_articles_bool_exp!] + author: String_comparison_exp + content_html: String_comparison_exp + cover_image_url: String_comparison_exp + created_at: timestamptz_comparison_exp + id: uuid_comparison_exp + issue_number: Int_comparison_exp + published_at: timestamptz_comparison_exp + scraped_at: timestamptz_comparison_exp + slug: String_comparison_exp + source: String_comparison_exp + teaser: String_comparison_exp + title: String_comparison_exp + updated_at: timestamptz_comparison_exp + url: String_comparison_exp +} + +""" +unique or primary key constraints on table "news_articles" +""" +enum news_articles_constraint { + """ + unique or primary key constraint on columns "id" + """ + news_articles_pkey + + """ + unique or primary key constraint on columns "url" + """ + news_articles_url_key +} + +""" +input type for incrementing numeric columns in table "news_articles" +""" +input news_articles_inc_input { + issue_number: Int +} + +""" +input type for inserting data into table "news_articles" +""" +input news_articles_insert_input { + author: String + content_html: String + cover_image_url: String + created_at: timestamptz + id: uuid + issue_number: Int + published_at: timestamptz + scraped_at: timestamptz + slug: String + source: String + teaser: String + title: String + updated_at: timestamptz + url: String +} + +"""aggregate max on columns""" +type news_articles_max_fields { + author: String + content_html: String + cover_image_url: String + created_at: timestamptz + id: uuid + issue_number: Int + published_at: timestamptz + scraped_at: timestamptz + slug: String + source: String + teaser: String + title: String + updated_at: timestamptz + url: String +} + +"""aggregate min on columns""" +type news_articles_min_fields { + author: String + content_html: String + cover_image_url: String + created_at: timestamptz + id: uuid + issue_number: Int + published_at: timestamptz + scraped_at: timestamptz + slug: String + source: String + teaser: String + title: String + updated_at: timestamptz + url: String +} + +""" +response of any mutation on the table "news_articles" +""" +type news_articles_mutation_response { + """number of rows affected by the mutation""" + affected_rows: Int! + + """data from the rows affected by the mutation""" + returning: [news_articles!]! +} + +""" +on_conflict condition type for table "news_articles" +""" +input news_articles_on_conflict { + constraint: news_articles_constraint! + update_columns: [news_articles_update_column!]! = [] + where: news_articles_bool_exp +} + +"""Ordering options when selecting data from "news_articles".""" +input news_articles_order_by { + author: order_by + content_html: order_by + cover_image_url: order_by + created_at: order_by + id: order_by + issue_number: order_by + published_at: order_by + scraped_at: order_by + slug: order_by + source: order_by + teaser: order_by + title: order_by + updated_at: order_by + url: order_by +} + +"""primary key columns input for table: news_articles""" +input news_articles_pk_columns_input { + id: uuid! +} + +""" +select columns of table "news_articles" +""" +enum news_articles_select_column { + """column name""" + author + + """column name""" + content_html + + """column name""" + cover_image_url + + """column name""" + created_at + + """column name""" + id + + """column name""" + issue_number + + """column name""" + published_at + + """column name""" + scraped_at + + """column name""" + slug + + """column name""" + source + + """column name""" + teaser + + """column name""" + title + + """column name""" + updated_at + + """column name""" + url +} + +""" +input type for updating data in table "news_articles" +""" +input news_articles_set_input { + author: String + content_html: String + cover_image_url: String + created_at: timestamptz + id: uuid + issue_number: Int + published_at: timestamptz + scraped_at: timestamptz + slug: String + source: String + teaser: String + title: String + updated_at: timestamptz + url: String +} + +"""aggregate stddev on columns""" +type news_articles_stddev_fields { + issue_number: Float +} + +"""aggregate stddev_pop on columns""" +type news_articles_stddev_pop_fields { + issue_number: Float +} + +"""aggregate stddev_samp on columns""" +type news_articles_stddev_samp_fields { + issue_number: Float +} + +""" +Streaming cursor of the table "news_articles" +""" +input news_articles_stream_cursor_input { + """Stream column input with initial value""" + initial_value: news_articles_stream_cursor_value_input! + + """cursor ordering""" + ordering: cursor_ordering +} + +"""Initial value of the column from where the streaming should start""" +input news_articles_stream_cursor_value_input { + author: String + content_html: String + cover_image_url: String + created_at: timestamptz + id: uuid + issue_number: Int + published_at: timestamptz + scraped_at: timestamptz + slug: String + source: String + teaser: String + title: String + updated_at: timestamptz + url: String +} + +"""aggregate sum on columns""" +type news_articles_sum_fields { + issue_number: Int +} + +""" +update columns of table "news_articles" +""" +enum news_articles_update_column { + """column name""" + author + + """column name""" + content_html + + """column name""" + cover_image_url + + """column name""" + created_at + + """column name""" + id + + """column name""" + issue_number + + """column name""" + published_at + + """column name""" + scraped_at + + """column name""" + slug + + """column name""" + source + + """column name""" + teaser + + """column name""" + title + + """column name""" + updated_at + + """column name""" + url +} + +input news_articles_updates { + """increments the numeric columns with given value of the filtered values""" + _inc: news_articles_inc_input + + """sets the columns of the filtered rows to the given values""" + _set: news_articles_set_input + + """filter the rows which have to be updated""" + where: news_articles_bool_exp! +} + +"""aggregate var_pop on columns""" +type news_articles_var_pop_fields { + issue_number: Float +} + +"""aggregate var_samp on columns""" +type news_articles_var_samp_fields { + issue_number: Float +} + +"""aggregate variance on columns""" +type news_articles_variance_fields { + issue_number: Float +} + """ columns and relationships of "notifications" """ @@ -46145,6 +50007,7 @@ type players { where: player_kills_by_weapon_bool_exp ): player_kills_by_weapon_aggregate! language: String + last_read_news_at: timestamptz last_sign_in_at: timestamptz """An array relationship""" @@ -47158,6 +51021,7 @@ input players_bool_exp { kills_by_weapons: player_kills_by_weapon_bool_exp kills_by_weapons_aggregate: player_kills_by_weapon_aggregate_bool_exp language: String_comparison_exp + last_read_news_at: timestamptz_comparison_exp last_sign_in_at: timestamptz_comparison_exp lobby_players: lobby_players_bool_exp lobby_players_aggregate: lobby_players_aggregate_bool_exp @@ -47296,6 +51160,7 @@ input players_insert_input { kills: player_kills_arr_rel_insert_input kills_by_weapons: player_kills_by_weapon_arr_rel_insert_input language: String + last_read_news_at: timestamptz last_sign_in_at: timestamptz lobby_players: lobby_players_arr_rel_insert_input match_map_hltv: v_player_match_map_hltv_arr_rel_insert_input @@ -47354,6 +51219,7 @@ type players_max_fields { faceit_url: String game_ban_count: Int language: String + last_read_news_at: timestamptz last_sign_in_at: timestamptz """ @@ -47436,6 +51302,7 @@ type players_min_fields { faceit_url: String game_ban_count: Int language: String + last_read_news_at: timestamptz last_sign_in_at: timestamptz """ @@ -47566,6 +51433,7 @@ input players_order_by { kills_aggregate: player_kills_aggregate_order_by kills_by_weapons_aggregate: player_kills_by_weapon_aggregate_order_by language: order_by + last_read_news_at: order_by last_sign_in_at: order_by lobby_players_aggregate: lobby_players_aggregate_order_by losses: order_by @@ -47667,6 +51535,9 @@ enum players_select_column { """column name""" language + """column name""" + last_read_news_at + """column name""" last_sign_in_at @@ -47725,6 +51596,7 @@ input players_set_input { faceit_url: String game_ban_count: Int language: String + last_read_news_at: timestamptz last_sign_in_at: timestamptz name: String name_registered: Boolean @@ -47935,6 +51807,7 @@ input players_stream_cursor_value_input { faceit_url: String game_ban_count: Int language: String + last_read_news_at: timestamptz last_sign_in_at: timestamptz name: String name_registered: Boolean @@ -48052,6 +51925,9 @@ enum players_update_column { """column name""" language + """column name""" + last_read_news_at + """column name""" last_sign_in_at @@ -48708,6 +52584,135 @@ type query_root { """fetch data from the table: "db_backups" using primary key columns""" db_backups_by_pk(id: uuid!): db_backups + """ + fetch data from the table: "draft_game_picks" + """ + draft_game_picks( + """distinct select on columns""" + distinct_on: [draft_game_picks_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [draft_game_picks_order_by!] + + """filter the rows returned""" + where: draft_game_picks_bool_exp + ): [draft_game_picks!]! + + """ + fetch aggregated fields from the table: "draft_game_picks" + """ + draft_game_picks_aggregate( + """distinct select on columns""" + distinct_on: [draft_game_picks_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [draft_game_picks_order_by!] + + """filter the rows returned""" + where: draft_game_picks_bool_exp + ): draft_game_picks_aggregate! + + """ + fetch data from the table: "draft_game_picks" using primary key columns + """ + draft_game_picks_by_pk(id: uuid!): draft_game_picks + + """ + fetch data from the table: "draft_game_players" + """ + draft_game_players( + """distinct select on columns""" + distinct_on: [draft_game_players_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [draft_game_players_order_by!] + + """filter the rows returned""" + where: draft_game_players_bool_exp + ): [draft_game_players!]! + + """ + fetch aggregated fields from the table: "draft_game_players" + """ + draft_game_players_aggregate( + """distinct select on columns""" + distinct_on: [draft_game_players_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [draft_game_players_order_by!] + + """filter the rows returned""" + where: draft_game_players_bool_exp + ): draft_game_players_aggregate! + + """ + fetch data from the table: "draft_game_players" using primary key columns + """ + draft_game_players_by_pk(draft_game_id: uuid!, steam_id: bigint!): draft_game_players + + """An array relationship""" + draft_games( + """distinct select on columns""" + distinct_on: [draft_games_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [draft_games_order_by!] + + """filter the rows returned""" + where: draft_games_bool_exp + ): [draft_games!]! + + """An aggregate relationship""" + draft_games_aggregate( + """distinct select on columns""" + distinct_on: [draft_games_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [draft_games_order_by!] + + """filter the rows returned""" + where: draft_games_bool_exp + ): draft_games_aggregate! + + """fetch data from the table: "draft_games" using primary key columns""" + draft_games_by_pk(id: uuid!): draft_games + """ fetch data from the table: "e_check_in_settings" """ @@ -48753,6 +52758,231 @@ type query_root { """ e_check_in_settings_by_pk(value: String!): e_check_in_settings + """ + fetch data from the table: "e_draft_game_captain_selection" + """ + e_draft_game_captain_selection( + """distinct select on columns""" + distinct_on: [e_draft_game_captain_selection_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [e_draft_game_captain_selection_order_by!] + + """filter the rows returned""" + where: e_draft_game_captain_selection_bool_exp + ): [e_draft_game_captain_selection!]! + + """ + fetch aggregated fields from the table: "e_draft_game_captain_selection" + """ + e_draft_game_captain_selection_aggregate( + """distinct select on columns""" + distinct_on: [e_draft_game_captain_selection_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [e_draft_game_captain_selection_order_by!] + + """filter the rows returned""" + where: e_draft_game_captain_selection_bool_exp + ): e_draft_game_captain_selection_aggregate! + + """ + fetch data from the table: "e_draft_game_captain_selection" using primary key columns + """ + e_draft_game_captain_selection_by_pk(value: String!): e_draft_game_captain_selection + + """ + fetch data from the table: "e_draft_game_draft_order" + """ + e_draft_game_draft_order( + """distinct select on columns""" + distinct_on: [e_draft_game_draft_order_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [e_draft_game_draft_order_order_by!] + + """filter the rows returned""" + where: e_draft_game_draft_order_bool_exp + ): [e_draft_game_draft_order!]! + + """ + fetch aggregated fields from the table: "e_draft_game_draft_order" + """ + e_draft_game_draft_order_aggregate( + """distinct select on columns""" + distinct_on: [e_draft_game_draft_order_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [e_draft_game_draft_order_order_by!] + + """filter the rows returned""" + where: e_draft_game_draft_order_bool_exp + ): e_draft_game_draft_order_aggregate! + + """ + fetch data from the table: "e_draft_game_draft_order" using primary key columns + """ + e_draft_game_draft_order_by_pk(value: String!): e_draft_game_draft_order + + """ + fetch data from the table: "e_draft_game_mode" + """ + e_draft_game_mode( + """distinct select on columns""" + distinct_on: [e_draft_game_mode_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [e_draft_game_mode_order_by!] + + """filter the rows returned""" + where: e_draft_game_mode_bool_exp + ): [e_draft_game_mode!]! + + """ + fetch aggregated fields from the table: "e_draft_game_mode" + """ + e_draft_game_mode_aggregate( + """distinct select on columns""" + distinct_on: [e_draft_game_mode_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [e_draft_game_mode_order_by!] + + """filter the rows returned""" + where: e_draft_game_mode_bool_exp + ): e_draft_game_mode_aggregate! + + """ + fetch data from the table: "e_draft_game_mode" using primary key columns + """ + e_draft_game_mode_by_pk(value: String!): e_draft_game_mode + + """ + fetch data from the table: "e_draft_game_player_status" + """ + e_draft_game_player_status( + """distinct select on columns""" + distinct_on: [e_draft_game_player_status_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [e_draft_game_player_status_order_by!] + + """filter the rows returned""" + where: e_draft_game_player_status_bool_exp + ): [e_draft_game_player_status!]! + + """ + fetch aggregated fields from the table: "e_draft_game_player_status" + """ + e_draft_game_player_status_aggregate( + """distinct select on columns""" + distinct_on: [e_draft_game_player_status_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [e_draft_game_player_status_order_by!] + + """filter the rows returned""" + where: e_draft_game_player_status_bool_exp + ): e_draft_game_player_status_aggregate! + + """ + fetch data from the table: "e_draft_game_player_status" using primary key columns + """ + e_draft_game_player_status_by_pk(value: String!): e_draft_game_player_status + + """ + fetch data from the table: "e_draft_game_status" + """ + e_draft_game_status( + """distinct select on columns""" + distinct_on: [e_draft_game_status_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [e_draft_game_status_order_by!] + + """filter the rows returned""" + where: e_draft_game_status_bool_exp + ): [e_draft_game_status!]! + + """ + fetch aggregated fields from the table: "e_draft_game_status" + """ + e_draft_game_status_aggregate( + """distinct select on columns""" + distinct_on: [e_draft_game_status_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [e_draft_game_status_order_by!] + + """filter the rows returned""" + where: e_draft_game_status_bool_exp + ): e_draft_game_status_aggregate! + + """ + fetch data from the table: "e_draft_game_status" using primary key columns + """ + e_draft_game_status_by_pk(value: String!): e_draft_game_status + """ fetch data from the table: "e_friend_status" """ @@ -51115,6 +55345,49 @@ type query_root { where: my_friends_bool_exp ): my_friends_aggregate! + """ + fetch data from the table: "news_articles" + """ + news_articles( + """distinct select on columns""" + distinct_on: [news_articles_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [news_articles_order_by!] + + """filter the rows returned""" + where: news_articles_bool_exp + ): [news_articles!]! + + """ + fetch aggregated fields from the table: "news_articles" + """ + news_articles_aggregate( + """distinct select on columns""" + distinct_on: [news_articles_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [news_articles_order_by!] + + """filter the rows returned""" + where: news_articles_bool_exp + ): news_articles_aggregate! + + """fetch data from the table: "news_articles" using primary key columns""" + news_articles_by_pk(id: uuid!): news_articles + """An array relationship""" notifications( """distinct select on columns""" @@ -56321,6 +60594,177 @@ type subscription_root { where: db_backups_bool_exp ): [db_backups!]! + """ + fetch data from the table: "draft_game_picks" + """ + draft_game_picks( + """distinct select on columns""" + distinct_on: [draft_game_picks_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [draft_game_picks_order_by!] + + """filter the rows returned""" + where: draft_game_picks_bool_exp + ): [draft_game_picks!]! + + """ + fetch aggregated fields from the table: "draft_game_picks" + """ + draft_game_picks_aggregate( + """distinct select on columns""" + distinct_on: [draft_game_picks_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [draft_game_picks_order_by!] + + """filter the rows returned""" + where: draft_game_picks_bool_exp + ): draft_game_picks_aggregate! + + """ + fetch data from the table: "draft_game_picks" using primary key columns + """ + draft_game_picks_by_pk(id: uuid!): draft_game_picks + + """ + fetch data from the table in a streaming manner: "draft_game_picks" + """ + draft_game_picks_stream( + """maximum number of rows returned in a single batch""" + batch_size: Int! + + """cursor to stream the results returned by the query""" + cursor: [draft_game_picks_stream_cursor_input]! + + """filter the rows returned""" + where: draft_game_picks_bool_exp + ): [draft_game_picks!]! + + """ + fetch data from the table: "draft_game_players" + """ + draft_game_players( + """distinct select on columns""" + distinct_on: [draft_game_players_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [draft_game_players_order_by!] + + """filter the rows returned""" + where: draft_game_players_bool_exp + ): [draft_game_players!]! + + """ + fetch aggregated fields from the table: "draft_game_players" + """ + draft_game_players_aggregate( + """distinct select on columns""" + distinct_on: [draft_game_players_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [draft_game_players_order_by!] + + """filter the rows returned""" + where: draft_game_players_bool_exp + ): draft_game_players_aggregate! + + """ + fetch data from the table: "draft_game_players" using primary key columns + """ + draft_game_players_by_pk(draft_game_id: uuid!, steam_id: bigint!): draft_game_players + + """ + fetch data from the table in a streaming manner: "draft_game_players" + """ + draft_game_players_stream( + """maximum number of rows returned in a single batch""" + batch_size: Int! + + """cursor to stream the results returned by the query""" + cursor: [draft_game_players_stream_cursor_input]! + + """filter the rows returned""" + where: draft_game_players_bool_exp + ): [draft_game_players!]! + + """An array relationship""" + draft_games( + """distinct select on columns""" + distinct_on: [draft_games_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [draft_games_order_by!] + + """filter the rows returned""" + where: draft_games_bool_exp + ): [draft_games!]! + + """An aggregate relationship""" + draft_games_aggregate( + """distinct select on columns""" + distinct_on: [draft_games_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [draft_games_order_by!] + + """filter the rows returned""" + where: draft_games_bool_exp + ): draft_games_aggregate! + + """fetch data from the table: "draft_games" using primary key columns""" + draft_games_by_pk(id: uuid!): draft_games + + """ + fetch data from the table in a streaming manner: "draft_games" + """ + draft_games_stream( + """maximum number of rows returned in a single batch""" + batch_size: Int! + + """cursor to stream the results returned by the query""" + cursor: [draft_games_stream_cursor_input]! + + """filter the rows returned""" + where: draft_games_bool_exp + ): [draft_games!]! + """ fetch data from the table: "e_check_in_settings" """ @@ -56380,6 +60824,301 @@ type subscription_root { where: e_check_in_settings_bool_exp ): [e_check_in_settings!]! + """ + fetch data from the table: "e_draft_game_captain_selection" + """ + e_draft_game_captain_selection( + """distinct select on columns""" + distinct_on: [e_draft_game_captain_selection_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [e_draft_game_captain_selection_order_by!] + + """filter the rows returned""" + where: e_draft_game_captain_selection_bool_exp + ): [e_draft_game_captain_selection!]! + + """ + fetch aggregated fields from the table: "e_draft_game_captain_selection" + """ + e_draft_game_captain_selection_aggregate( + """distinct select on columns""" + distinct_on: [e_draft_game_captain_selection_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [e_draft_game_captain_selection_order_by!] + + """filter the rows returned""" + where: e_draft_game_captain_selection_bool_exp + ): e_draft_game_captain_selection_aggregate! + + """ + fetch data from the table: "e_draft_game_captain_selection" using primary key columns + """ + e_draft_game_captain_selection_by_pk(value: String!): e_draft_game_captain_selection + + """ + fetch data from the table in a streaming manner: "e_draft_game_captain_selection" + """ + e_draft_game_captain_selection_stream( + """maximum number of rows returned in a single batch""" + batch_size: Int! + + """cursor to stream the results returned by the query""" + cursor: [e_draft_game_captain_selection_stream_cursor_input]! + + """filter the rows returned""" + where: e_draft_game_captain_selection_bool_exp + ): [e_draft_game_captain_selection!]! + + """ + fetch data from the table: "e_draft_game_draft_order" + """ + e_draft_game_draft_order( + """distinct select on columns""" + distinct_on: [e_draft_game_draft_order_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [e_draft_game_draft_order_order_by!] + + """filter the rows returned""" + where: e_draft_game_draft_order_bool_exp + ): [e_draft_game_draft_order!]! + + """ + fetch aggregated fields from the table: "e_draft_game_draft_order" + """ + e_draft_game_draft_order_aggregate( + """distinct select on columns""" + distinct_on: [e_draft_game_draft_order_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [e_draft_game_draft_order_order_by!] + + """filter the rows returned""" + where: e_draft_game_draft_order_bool_exp + ): e_draft_game_draft_order_aggregate! + + """ + fetch data from the table: "e_draft_game_draft_order" using primary key columns + """ + e_draft_game_draft_order_by_pk(value: String!): e_draft_game_draft_order + + """ + fetch data from the table in a streaming manner: "e_draft_game_draft_order" + """ + e_draft_game_draft_order_stream( + """maximum number of rows returned in a single batch""" + batch_size: Int! + + """cursor to stream the results returned by the query""" + cursor: [e_draft_game_draft_order_stream_cursor_input]! + + """filter the rows returned""" + where: e_draft_game_draft_order_bool_exp + ): [e_draft_game_draft_order!]! + + """ + fetch data from the table: "e_draft_game_mode" + """ + e_draft_game_mode( + """distinct select on columns""" + distinct_on: [e_draft_game_mode_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [e_draft_game_mode_order_by!] + + """filter the rows returned""" + where: e_draft_game_mode_bool_exp + ): [e_draft_game_mode!]! + + """ + fetch aggregated fields from the table: "e_draft_game_mode" + """ + e_draft_game_mode_aggregate( + """distinct select on columns""" + distinct_on: [e_draft_game_mode_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [e_draft_game_mode_order_by!] + + """filter the rows returned""" + where: e_draft_game_mode_bool_exp + ): e_draft_game_mode_aggregate! + + """ + fetch data from the table: "e_draft_game_mode" using primary key columns + """ + e_draft_game_mode_by_pk(value: String!): e_draft_game_mode + + """ + fetch data from the table in a streaming manner: "e_draft_game_mode" + """ + e_draft_game_mode_stream( + """maximum number of rows returned in a single batch""" + batch_size: Int! + + """cursor to stream the results returned by the query""" + cursor: [e_draft_game_mode_stream_cursor_input]! + + """filter the rows returned""" + where: e_draft_game_mode_bool_exp + ): [e_draft_game_mode!]! + + """ + fetch data from the table: "e_draft_game_player_status" + """ + e_draft_game_player_status( + """distinct select on columns""" + distinct_on: [e_draft_game_player_status_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [e_draft_game_player_status_order_by!] + + """filter the rows returned""" + where: e_draft_game_player_status_bool_exp + ): [e_draft_game_player_status!]! + + """ + fetch aggregated fields from the table: "e_draft_game_player_status" + """ + e_draft_game_player_status_aggregate( + """distinct select on columns""" + distinct_on: [e_draft_game_player_status_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [e_draft_game_player_status_order_by!] + + """filter the rows returned""" + where: e_draft_game_player_status_bool_exp + ): e_draft_game_player_status_aggregate! + + """ + fetch data from the table: "e_draft_game_player_status" using primary key columns + """ + e_draft_game_player_status_by_pk(value: String!): e_draft_game_player_status + + """ + fetch data from the table in a streaming manner: "e_draft_game_player_status" + """ + e_draft_game_player_status_stream( + """maximum number of rows returned in a single batch""" + batch_size: Int! + + """cursor to stream the results returned by the query""" + cursor: [e_draft_game_player_status_stream_cursor_input]! + + """filter the rows returned""" + where: e_draft_game_player_status_bool_exp + ): [e_draft_game_player_status!]! + + """ + fetch data from the table: "e_draft_game_status" + """ + e_draft_game_status( + """distinct select on columns""" + distinct_on: [e_draft_game_status_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [e_draft_game_status_order_by!] + + """filter the rows returned""" + where: e_draft_game_status_bool_exp + ): [e_draft_game_status!]! + + """ + fetch aggregated fields from the table: "e_draft_game_status" + """ + e_draft_game_status_aggregate( + """distinct select on columns""" + distinct_on: [e_draft_game_status_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [e_draft_game_status_order_by!] + + """filter the rows returned""" + where: e_draft_game_status_bool_exp + ): e_draft_game_status_aggregate! + + """ + fetch data from the table: "e_draft_game_status" using primary key columns + """ + e_draft_game_status_by_pk(value: String!): e_draft_game_status + + """ + fetch data from the table in a streaming manner: "e_draft_game_status" + """ + e_draft_game_status_stream( + """maximum number of rows returned in a single batch""" + batch_size: Int! + + """cursor to stream the results returned by the query""" + cursor: [e_draft_game_status_stream_cursor_input]! + + """filter the rows returned""" + where: e_draft_game_status_bool_exp + ): [e_draft_game_status!]! + """ fetch data from the table: "e_friend_status" """ @@ -59401,6 +64140,63 @@ type subscription_root { where: my_friends_bool_exp ): [my_friends!]! + """ + fetch data from the table: "news_articles" + """ + news_articles( + """distinct select on columns""" + distinct_on: [news_articles_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [news_articles_order_by!] + + """filter the rows returned""" + where: news_articles_bool_exp + ): [news_articles!]! + + """ + fetch aggregated fields from the table: "news_articles" + """ + news_articles_aggregate( + """distinct select on columns""" + distinct_on: [news_articles_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [news_articles_order_by!] + + """filter the rows returned""" + where: news_articles_bool_exp + ): news_articles_aggregate! + + """fetch data from the table: "news_articles" using primary key columns""" + news_articles_by_pk(id: uuid!): news_articles + + """ + fetch data from the table in a streaming manner: "news_articles" + """ + news_articles_stream( + """maximum number of rows returned in a single batch""" + batch_size: Int! + + """cursor to stream the results returned by the query""" + cursor: [news_articles_stream_cursor_input]! + + """filter the rows returned""" + where: news_articles_bool_exp + ): [news_articles!]! + """An array relationship""" notifications( """distinct select on columns""" diff --git a/generated/schema.ts b/generated/schema.ts index 4f11627f..c3cca1f0 100644 --- a/generated/schema.ts +++ b/generated/schema.ts @@ -1238,6 +1238,605 @@ export interface db_backups_variance_fields { } +/** columns and relationships of "draft_game_picks" */ +export interface draft_game_picks { + auto_picked: Scalars['Boolean'] + /** An object relationship */ + captain: players + captain_steam_id: Scalars['bigint'] + created_at: Scalars['timestamptz'] + /** An object relationship */ + draft_game: draft_games + draft_game_id: Scalars['uuid'] + id: Scalars['uuid'] + lineup: Scalars['Int'] + /** An object relationship */ + picked: players + picked_steam_id: Scalars['bigint'] + __typename: 'draft_game_picks' +} + + +/** aggregated selection of "draft_game_picks" */ +export interface draft_game_picks_aggregate { + aggregate: (draft_game_picks_aggregate_fields | null) + nodes: draft_game_picks[] + __typename: 'draft_game_picks_aggregate' +} + + +/** aggregate fields of "draft_game_picks" */ +export interface draft_game_picks_aggregate_fields { + avg: (draft_game_picks_avg_fields | null) + count: Scalars['Int'] + max: (draft_game_picks_max_fields | null) + min: (draft_game_picks_min_fields | null) + stddev: (draft_game_picks_stddev_fields | null) + stddev_pop: (draft_game_picks_stddev_pop_fields | null) + stddev_samp: (draft_game_picks_stddev_samp_fields | null) + sum: (draft_game_picks_sum_fields | null) + var_pop: (draft_game_picks_var_pop_fields | null) + var_samp: (draft_game_picks_var_samp_fields | null) + variance: (draft_game_picks_variance_fields | null) + __typename: 'draft_game_picks_aggregate_fields' +} + + +/** aggregate avg on columns */ +export interface draft_game_picks_avg_fields { + captain_steam_id: (Scalars['Float'] | null) + lineup: (Scalars['Float'] | null) + picked_steam_id: (Scalars['Float'] | null) + __typename: 'draft_game_picks_avg_fields' +} + + +/** unique or primary key constraints on table "draft_game_picks" */ +export type draft_game_picks_constraint = 'draft_game_picks_pkey' + + +/** aggregate max on columns */ +export interface draft_game_picks_max_fields { + captain_steam_id: (Scalars['bigint'] | null) + created_at: (Scalars['timestamptz'] | null) + draft_game_id: (Scalars['uuid'] | null) + id: (Scalars['uuid'] | null) + lineup: (Scalars['Int'] | null) + picked_steam_id: (Scalars['bigint'] | null) + __typename: 'draft_game_picks_max_fields' +} + + +/** aggregate min on columns */ +export interface draft_game_picks_min_fields { + captain_steam_id: (Scalars['bigint'] | null) + created_at: (Scalars['timestamptz'] | null) + draft_game_id: (Scalars['uuid'] | null) + id: (Scalars['uuid'] | null) + lineup: (Scalars['Int'] | null) + picked_steam_id: (Scalars['bigint'] | null) + __typename: 'draft_game_picks_min_fields' +} + + +/** response of any mutation on the table "draft_game_picks" */ +export interface draft_game_picks_mutation_response { + /** number of rows affected by the mutation */ + affected_rows: Scalars['Int'] + /** data from the rows affected by the mutation */ + returning: draft_game_picks[] + __typename: 'draft_game_picks_mutation_response' +} + + +/** select columns of table "draft_game_picks" */ +export type draft_game_picks_select_column = 'auto_picked' | 'captain_steam_id' | 'created_at' | 'draft_game_id' | 'id' | 'lineup' | 'picked_steam_id' + + +/** select "draft_game_picks_aggregate_bool_exp_bool_and_arguments_columns" columns of table "draft_game_picks" */ +export type draft_game_picks_select_column_draft_game_picks_aggregate_bool_exp_bool_and_arguments_columns = 'auto_picked' + + +/** select "draft_game_picks_aggregate_bool_exp_bool_or_arguments_columns" columns of table "draft_game_picks" */ +export type draft_game_picks_select_column_draft_game_picks_aggregate_bool_exp_bool_or_arguments_columns = 'auto_picked' + + +/** aggregate stddev on columns */ +export interface draft_game_picks_stddev_fields { + captain_steam_id: (Scalars['Float'] | null) + lineup: (Scalars['Float'] | null) + picked_steam_id: (Scalars['Float'] | null) + __typename: 'draft_game_picks_stddev_fields' +} + + +/** aggregate stddev_pop on columns */ +export interface draft_game_picks_stddev_pop_fields { + captain_steam_id: (Scalars['Float'] | null) + lineup: (Scalars['Float'] | null) + picked_steam_id: (Scalars['Float'] | null) + __typename: 'draft_game_picks_stddev_pop_fields' +} + + +/** aggregate stddev_samp on columns */ +export interface draft_game_picks_stddev_samp_fields { + captain_steam_id: (Scalars['Float'] | null) + lineup: (Scalars['Float'] | null) + picked_steam_id: (Scalars['Float'] | null) + __typename: 'draft_game_picks_stddev_samp_fields' +} + + +/** aggregate sum on columns */ +export interface draft_game_picks_sum_fields { + captain_steam_id: (Scalars['bigint'] | null) + lineup: (Scalars['Int'] | null) + picked_steam_id: (Scalars['bigint'] | null) + __typename: 'draft_game_picks_sum_fields' +} + + +/** update columns of table "draft_game_picks" */ +export type draft_game_picks_update_column = 'auto_picked' | 'captain_steam_id' | 'created_at' | 'draft_game_id' | 'id' | 'lineup' | 'picked_steam_id' + + +/** aggregate var_pop on columns */ +export interface draft_game_picks_var_pop_fields { + captain_steam_id: (Scalars['Float'] | null) + lineup: (Scalars['Float'] | null) + picked_steam_id: (Scalars['Float'] | null) + __typename: 'draft_game_picks_var_pop_fields' +} + + +/** aggregate var_samp on columns */ +export interface draft_game_picks_var_samp_fields { + captain_steam_id: (Scalars['Float'] | null) + lineup: (Scalars['Float'] | null) + picked_steam_id: (Scalars['Float'] | null) + __typename: 'draft_game_picks_var_samp_fields' +} + + +/** aggregate variance on columns */ +export interface draft_game_picks_variance_fields { + captain_steam_id: (Scalars['Float'] | null) + lineup: (Scalars['Float'] | null) + picked_steam_id: (Scalars['Float'] | null) + __typename: 'draft_game_picks_variance_fields' +} + + +/** columns and relationships of "draft_game_players" */ +export interface draft_game_players { + /** An object relationship */ + draft_game: draft_games + draft_game_id: Scalars['uuid'] + /** An object relationship */ + e_draft_game_player_status: e_draft_game_player_status + elo_snapshot: (Scalars['Int'] | null) + is_captain: Scalars['Boolean'] + joined_at: Scalars['timestamptz'] + lineup: (Scalars['Int'] | null) + pick_order: (Scalars['Int'] | null) + /** An object relationship */ + player: players + status: e_draft_game_player_status_enum + steam_id: Scalars['bigint'] + __typename: 'draft_game_players' +} + + +/** aggregated selection of "draft_game_players" */ +export interface draft_game_players_aggregate { + aggregate: (draft_game_players_aggregate_fields | null) + nodes: draft_game_players[] + __typename: 'draft_game_players_aggregate' +} + + +/** aggregate fields of "draft_game_players" */ +export interface draft_game_players_aggregate_fields { + avg: (draft_game_players_avg_fields | null) + count: Scalars['Int'] + max: (draft_game_players_max_fields | null) + min: (draft_game_players_min_fields | null) + stddev: (draft_game_players_stddev_fields | null) + stddev_pop: (draft_game_players_stddev_pop_fields | null) + stddev_samp: (draft_game_players_stddev_samp_fields | null) + sum: (draft_game_players_sum_fields | null) + var_pop: (draft_game_players_var_pop_fields | null) + var_samp: (draft_game_players_var_samp_fields | null) + variance: (draft_game_players_variance_fields | null) + __typename: 'draft_game_players_aggregate_fields' +} + + +/** aggregate avg on columns */ +export interface draft_game_players_avg_fields { + elo_snapshot: (Scalars['Float'] | null) + lineup: (Scalars['Float'] | null) + pick_order: (Scalars['Float'] | null) + steam_id: (Scalars['Float'] | null) + __typename: 'draft_game_players_avg_fields' +} + + +/** unique or primary key constraints on table "draft_game_players" */ +export type draft_game_players_constraint = 'draft_game_players_pkey' + + +/** aggregate max on columns */ +export interface draft_game_players_max_fields { + draft_game_id: (Scalars['uuid'] | null) + elo_snapshot: (Scalars['Int'] | null) + joined_at: (Scalars['timestamptz'] | null) + lineup: (Scalars['Int'] | null) + pick_order: (Scalars['Int'] | null) + steam_id: (Scalars['bigint'] | null) + __typename: 'draft_game_players_max_fields' +} + + +/** aggregate min on columns */ +export interface draft_game_players_min_fields { + draft_game_id: (Scalars['uuid'] | null) + elo_snapshot: (Scalars['Int'] | null) + joined_at: (Scalars['timestamptz'] | null) + lineup: (Scalars['Int'] | null) + pick_order: (Scalars['Int'] | null) + steam_id: (Scalars['bigint'] | null) + __typename: 'draft_game_players_min_fields' +} + + +/** response of any mutation on the table "draft_game_players" */ +export interface draft_game_players_mutation_response { + /** number of rows affected by the mutation */ + affected_rows: Scalars['Int'] + /** data from the rows affected by the mutation */ + returning: draft_game_players[] + __typename: 'draft_game_players_mutation_response' +} + + +/** select columns of table "draft_game_players" */ +export type draft_game_players_select_column = 'draft_game_id' | 'elo_snapshot' | 'is_captain' | 'joined_at' | 'lineup' | 'pick_order' | 'status' | 'steam_id' + + +/** select "draft_game_players_aggregate_bool_exp_bool_and_arguments_columns" columns of table "draft_game_players" */ +export type draft_game_players_select_column_draft_game_players_aggregate_bool_exp_bool_and_arguments_columns = 'is_captain' + + +/** select "draft_game_players_aggregate_bool_exp_bool_or_arguments_columns" columns of table "draft_game_players" */ +export type draft_game_players_select_column_draft_game_players_aggregate_bool_exp_bool_or_arguments_columns = 'is_captain' + + +/** aggregate stddev on columns */ +export interface draft_game_players_stddev_fields { + elo_snapshot: (Scalars['Float'] | null) + lineup: (Scalars['Float'] | null) + pick_order: (Scalars['Float'] | null) + steam_id: (Scalars['Float'] | null) + __typename: 'draft_game_players_stddev_fields' +} + + +/** aggregate stddev_pop on columns */ +export interface draft_game_players_stddev_pop_fields { + elo_snapshot: (Scalars['Float'] | null) + lineup: (Scalars['Float'] | null) + pick_order: (Scalars['Float'] | null) + steam_id: (Scalars['Float'] | null) + __typename: 'draft_game_players_stddev_pop_fields' +} + + +/** aggregate stddev_samp on columns */ +export interface draft_game_players_stddev_samp_fields { + elo_snapshot: (Scalars['Float'] | null) + lineup: (Scalars['Float'] | null) + pick_order: (Scalars['Float'] | null) + steam_id: (Scalars['Float'] | null) + __typename: 'draft_game_players_stddev_samp_fields' +} + + +/** aggregate sum on columns */ +export interface draft_game_players_sum_fields { + elo_snapshot: (Scalars['Int'] | null) + lineup: (Scalars['Int'] | null) + pick_order: (Scalars['Int'] | null) + steam_id: (Scalars['bigint'] | null) + __typename: 'draft_game_players_sum_fields' +} + + +/** update columns of table "draft_game_players" */ +export type draft_game_players_update_column = 'draft_game_id' | 'elo_snapshot' | 'is_captain' | 'joined_at' | 'lineup' | 'pick_order' | 'status' | 'steam_id' + + +/** aggregate var_pop on columns */ +export interface draft_game_players_var_pop_fields { + elo_snapshot: (Scalars['Float'] | null) + lineup: (Scalars['Float'] | null) + pick_order: (Scalars['Float'] | null) + steam_id: (Scalars['Float'] | null) + __typename: 'draft_game_players_var_pop_fields' +} + + +/** aggregate var_samp on columns */ +export interface draft_game_players_var_samp_fields { + elo_snapshot: (Scalars['Float'] | null) + lineup: (Scalars['Float'] | null) + pick_order: (Scalars['Float'] | null) + steam_id: (Scalars['Float'] | null) + __typename: 'draft_game_players_var_samp_fields' +} + + +/** aggregate variance on columns */ +export interface draft_game_players_variance_fields { + elo_snapshot: (Scalars['Float'] | null) + lineup: (Scalars['Float'] | null) + pick_order: (Scalars['Float'] | null) + steam_id: (Scalars['Float'] | null) + __typename: 'draft_game_players_variance_fields' +} + + +/** columns and relationships of "draft_games" */ +export interface draft_games { + access: e_lobby_access_enum + capacity: Scalars['Int'] + captain_selection: e_draft_game_captain_selection_enum + created_at: Scalars['timestamptz'] + current_pick_lineup: (Scalars['Int'] | null) + draft_order: e_draft_game_draft_order_enum + /** An object relationship */ + e_draft_game_captain_selection: e_draft_game_captain_selection + /** An object relationship */ + e_draft_game_draft_order: e_draft_game_draft_order + /** An object relationship */ + e_draft_game_mode: e_draft_game_mode + /** An object relationship */ + e_draft_game_status: e_draft_game_status + /** An object relationship */ + e_lobby_access: e_lobby_access + expires_at: (Scalars['timestamptz'] | null) + /** An object relationship */ + host: players + host_steam_id: Scalars['bigint'] + id: Scalars['uuid'] + inner_squad: Scalars['Boolean'] + invite_code: Scalars['uuid'] + /** An object relationship */ + map_pool: (map_pools | null) + map_pool_id: (Scalars['uuid'] | null) + /** An object relationship */ + match: (matches | null) + match_id: (Scalars['uuid'] | null) + match_options_id: (Scalars['uuid'] | null) + max_elo: (Scalars['Int'] | null) + min_elo: (Scalars['Int'] | null) + mode: e_draft_game_mode_enum + /** An object relationship */ + options: (match_options | null) + pick_deadline: (Scalars['timestamptz'] | null) + /** An array relationship */ + picks: draft_game_picks[] + /** An aggregate relationship */ + picks_aggregate: draft_game_picks_aggregate + /** An array relationship */ + players: draft_game_players[] + /** An aggregate relationship */ + players_aggregate: draft_game_players_aggregate + regions: Scalars['String'][] + require_approval: Scalars['Boolean'] + status: e_draft_game_status_enum + /** An object relationship */ + team_1: (teams | null) + team_1_id: (Scalars['uuid'] | null) + /** An object relationship */ + team_2: (teams | null) + team_2_id: (Scalars['uuid'] | null) + type: e_match_types_enum + updated_at: Scalars['timestamptz'] + __typename: 'draft_games' +} + + +/** aggregated selection of "draft_games" */ +export interface draft_games_aggregate { + aggregate: (draft_games_aggregate_fields | null) + nodes: draft_games[] + __typename: 'draft_games_aggregate' +} + + +/** aggregate fields of "draft_games" */ +export interface draft_games_aggregate_fields { + avg: (draft_games_avg_fields | null) + count: Scalars['Int'] + max: (draft_games_max_fields | null) + min: (draft_games_min_fields | null) + stddev: (draft_games_stddev_fields | null) + stddev_pop: (draft_games_stddev_pop_fields | null) + stddev_samp: (draft_games_stddev_samp_fields | null) + sum: (draft_games_sum_fields | null) + var_pop: (draft_games_var_pop_fields | null) + var_samp: (draft_games_var_samp_fields | null) + variance: (draft_games_variance_fields | null) + __typename: 'draft_games_aggregate_fields' +} + + +/** aggregate avg on columns */ +export interface draft_games_avg_fields { + capacity: (Scalars['Float'] | null) + current_pick_lineup: (Scalars['Float'] | null) + host_steam_id: (Scalars['Float'] | null) + max_elo: (Scalars['Float'] | null) + min_elo: (Scalars['Float'] | null) + __typename: 'draft_games_avg_fields' +} + + +/** unique or primary key constraints on table "draft_games" */ +export type draft_games_constraint = 'draft_games_pkey' + + +/** aggregate max on columns */ +export interface draft_games_max_fields { + capacity: (Scalars['Int'] | null) + created_at: (Scalars['timestamptz'] | null) + current_pick_lineup: (Scalars['Int'] | null) + expires_at: (Scalars['timestamptz'] | null) + host_steam_id: (Scalars['bigint'] | null) + id: (Scalars['uuid'] | null) + invite_code: (Scalars['uuid'] | null) + map_pool_id: (Scalars['uuid'] | null) + match_id: (Scalars['uuid'] | null) + match_options_id: (Scalars['uuid'] | null) + max_elo: (Scalars['Int'] | null) + min_elo: (Scalars['Int'] | null) + pick_deadline: (Scalars['timestamptz'] | null) + regions: (Scalars['String'][] | null) + team_1_id: (Scalars['uuid'] | null) + team_2_id: (Scalars['uuid'] | null) + updated_at: (Scalars['timestamptz'] | null) + __typename: 'draft_games_max_fields' +} + + +/** aggregate min on columns */ +export interface draft_games_min_fields { + capacity: (Scalars['Int'] | null) + created_at: (Scalars['timestamptz'] | null) + current_pick_lineup: (Scalars['Int'] | null) + expires_at: (Scalars['timestamptz'] | null) + host_steam_id: (Scalars['bigint'] | null) + id: (Scalars['uuid'] | null) + invite_code: (Scalars['uuid'] | null) + map_pool_id: (Scalars['uuid'] | null) + match_id: (Scalars['uuid'] | null) + match_options_id: (Scalars['uuid'] | null) + max_elo: (Scalars['Int'] | null) + min_elo: (Scalars['Int'] | null) + pick_deadline: (Scalars['timestamptz'] | null) + regions: (Scalars['String'][] | null) + team_1_id: (Scalars['uuid'] | null) + team_2_id: (Scalars['uuid'] | null) + updated_at: (Scalars['timestamptz'] | null) + __typename: 'draft_games_min_fields' +} + + +/** response of any mutation on the table "draft_games" */ +export interface draft_games_mutation_response { + /** number of rows affected by the mutation */ + affected_rows: Scalars['Int'] + /** data from the rows affected by the mutation */ + returning: draft_games[] + __typename: 'draft_games_mutation_response' +} + + +/** select columns of table "draft_games" */ +export type draft_games_select_column = 'access' | 'capacity' | 'captain_selection' | 'created_at' | 'current_pick_lineup' | 'draft_order' | 'expires_at' | 'host_steam_id' | 'id' | 'inner_squad' | 'invite_code' | 'map_pool_id' | 'match_id' | 'match_options_id' | 'max_elo' | 'min_elo' | 'mode' | 'pick_deadline' | 'regions' | 'require_approval' | 'status' | 'team_1_id' | 'team_2_id' | 'type' | 'updated_at' + + +/** select "draft_games_aggregate_bool_exp_bool_and_arguments_columns" columns of table "draft_games" */ +export type draft_games_select_column_draft_games_aggregate_bool_exp_bool_and_arguments_columns = 'inner_squad' | 'require_approval' + + +/** select "draft_games_aggregate_bool_exp_bool_or_arguments_columns" columns of table "draft_games" */ +export type draft_games_select_column_draft_games_aggregate_bool_exp_bool_or_arguments_columns = 'inner_squad' | 'require_approval' + + +/** aggregate stddev on columns */ +export interface draft_games_stddev_fields { + capacity: (Scalars['Float'] | null) + current_pick_lineup: (Scalars['Float'] | null) + host_steam_id: (Scalars['Float'] | null) + max_elo: (Scalars['Float'] | null) + min_elo: (Scalars['Float'] | null) + __typename: 'draft_games_stddev_fields' +} + + +/** aggregate stddev_pop on columns */ +export interface draft_games_stddev_pop_fields { + capacity: (Scalars['Float'] | null) + current_pick_lineup: (Scalars['Float'] | null) + host_steam_id: (Scalars['Float'] | null) + max_elo: (Scalars['Float'] | null) + min_elo: (Scalars['Float'] | null) + __typename: 'draft_games_stddev_pop_fields' +} + + +/** aggregate stddev_samp on columns */ +export interface draft_games_stddev_samp_fields { + capacity: (Scalars['Float'] | null) + current_pick_lineup: (Scalars['Float'] | null) + host_steam_id: (Scalars['Float'] | null) + max_elo: (Scalars['Float'] | null) + min_elo: (Scalars['Float'] | null) + __typename: 'draft_games_stddev_samp_fields' +} + + +/** aggregate sum on columns */ +export interface draft_games_sum_fields { + capacity: (Scalars['Int'] | null) + current_pick_lineup: (Scalars['Int'] | null) + host_steam_id: (Scalars['bigint'] | null) + max_elo: (Scalars['Int'] | null) + min_elo: (Scalars['Int'] | null) + __typename: 'draft_games_sum_fields' +} + + +/** update columns of table "draft_games" */ +export type draft_games_update_column = 'access' | 'capacity' | 'captain_selection' | 'created_at' | 'current_pick_lineup' | 'draft_order' | 'expires_at' | 'host_steam_id' | 'id' | 'inner_squad' | 'invite_code' | 'map_pool_id' | 'match_id' | 'match_options_id' | 'max_elo' | 'min_elo' | 'mode' | 'pick_deadline' | 'regions' | 'require_approval' | 'status' | 'team_1_id' | 'team_2_id' | 'type' | 'updated_at' + + +/** aggregate var_pop on columns */ +export interface draft_games_var_pop_fields { + capacity: (Scalars['Float'] | null) + current_pick_lineup: (Scalars['Float'] | null) + host_steam_id: (Scalars['Float'] | null) + max_elo: (Scalars['Float'] | null) + min_elo: (Scalars['Float'] | null) + __typename: 'draft_games_var_pop_fields' +} + + +/** aggregate var_samp on columns */ +export interface draft_games_var_samp_fields { + capacity: (Scalars['Float'] | null) + current_pick_lineup: (Scalars['Float'] | null) + host_steam_id: (Scalars['Float'] | null) + max_elo: (Scalars['Float'] | null) + min_elo: (Scalars['Float'] | null) + __typename: 'draft_games_var_samp_fields' +} + + +/** aggregate variance on columns */ +export interface draft_games_variance_fields { + capacity: (Scalars['Float'] | null) + current_pick_lineup: (Scalars['Float'] | null) + host_steam_id: (Scalars['Float'] | null) + max_elo: (Scalars['Float'] | null) + min_elo: (Scalars['Float'] | null) + __typename: 'draft_games_variance_fields' +} + + /** columns and relationships of "e_check_in_settings" */ export interface e_check_in_settings { description: Scalars['String'] @@ -1303,6 +1902,331 @@ export type e_check_in_settings_select_column = 'description' | 'value' export type e_check_in_settings_update_column = 'description' | 'value' +/** columns and relationships of "e_draft_game_captain_selection" */ +export interface e_draft_game_captain_selection { + description: Scalars['String'] + value: Scalars['String'] + __typename: 'e_draft_game_captain_selection' +} + + +/** aggregated selection of "e_draft_game_captain_selection" */ +export interface e_draft_game_captain_selection_aggregate { + aggregate: (e_draft_game_captain_selection_aggregate_fields | null) + nodes: e_draft_game_captain_selection[] + __typename: 'e_draft_game_captain_selection_aggregate' +} + + +/** aggregate fields of "e_draft_game_captain_selection" */ +export interface e_draft_game_captain_selection_aggregate_fields { + count: Scalars['Int'] + max: (e_draft_game_captain_selection_max_fields | null) + min: (e_draft_game_captain_selection_min_fields | null) + __typename: 'e_draft_game_captain_selection_aggregate_fields' +} + + +/** unique or primary key constraints on table "e_draft_game_captain_selection" */ +export type e_draft_game_captain_selection_constraint = 'e_draft_game_captain_selection_pkey' + +export type e_draft_game_captain_selection_enum = 'HostAndNext' | 'RandomTwo' | 'TopEloTwo' + + +/** aggregate max on columns */ +export interface e_draft_game_captain_selection_max_fields { + description: (Scalars['String'] | null) + value: (Scalars['String'] | null) + __typename: 'e_draft_game_captain_selection_max_fields' +} + + +/** aggregate min on columns */ +export interface e_draft_game_captain_selection_min_fields { + description: (Scalars['String'] | null) + value: (Scalars['String'] | null) + __typename: 'e_draft_game_captain_selection_min_fields' +} + + +/** response of any mutation on the table "e_draft_game_captain_selection" */ +export interface e_draft_game_captain_selection_mutation_response { + /** number of rows affected by the mutation */ + affected_rows: Scalars['Int'] + /** data from the rows affected by the mutation */ + returning: e_draft_game_captain_selection[] + __typename: 'e_draft_game_captain_selection_mutation_response' +} + + +/** select columns of table "e_draft_game_captain_selection" */ +export type e_draft_game_captain_selection_select_column = 'description' | 'value' + + +/** update columns of table "e_draft_game_captain_selection" */ +export type e_draft_game_captain_selection_update_column = 'description' | 'value' + + +/** columns and relationships of "e_draft_game_draft_order" */ +export interface e_draft_game_draft_order { + description: Scalars['String'] + value: Scalars['String'] + __typename: 'e_draft_game_draft_order' +} + + +/** aggregated selection of "e_draft_game_draft_order" */ +export interface e_draft_game_draft_order_aggregate { + aggregate: (e_draft_game_draft_order_aggregate_fields | null) + nodes: e_draft_game_draft_order[] + __typename: 'e_draft_game_draft_order_aggregate' +} + + +/** aggregate fields of "e_draft_game_draft_order" */ +export interface e_draft_game_draft_order_aggregate_fields { + count: Scalars['Int'] + max: (e_draft_game_draft_order_max_fields | null) + min: (e_draft_game_draft_order_min_fields | null) + __typename: 'e_draft_game_draft_order_aggregate_fields' +} + + +/** unique or primary key constraints on table "e_draft_game_draft_order" */ +export type e_draft_game_draft_order_constraint = 'e_draft_game_draft_order_pkey' + +export type e_draft_game_draft_order_enum = 'Alternating' | 'Snake' + + +/** aggregate max on columns */ +export interface e_draft_game_draft_order_max_fields { + description: (Scalars['String'] | null) + value: (Scalars['String'] | null) + __typename: 'e_draft_game_draft_order_max_fields' +} + + +/** aggregate min on columns */ +export interface e_draft_game_draft_order_min_fields { + description: (Scalars['String'] | null) + value: (Scalars['String'] | null) + __typename: 'e_draft_game_draft_order_min_fields' +} + + +/** response of any mutation on the table "e_draft_game_draft_order" */ +export interface e_draft_game_draft_order_mutation_response { + /** number of rows affected by the mutation */ + affected_rows: Scalars['Int'] + /** data from the rows affected by the mutation */ + returning: e_draft_game_draft_order[] + __typename: 'e_draft_game_draft_order_mutation_response' +} + + +/** select columns of table "e_draft_game_draft_order" */ +export type e_draft_game_draft_order_select_column = 'description' | 'value' + + +/** update columns of table "e_draft_game_draft_order" */ +export type e_draft_game_draft_order_update_column = 'description' | 'value' + + +/** columns and relationships of "e_draft_game_mode" */ +export interface e_draft_game_mode { + description: Scalars['String'] + value: Scalars['String'] + __typename: 'e_draft_game_mode' +} + + +/** aggregated selection of "e_draft_game_mode" */ +export interface e_draft_game_mode_aggregate { + aggregate: (e_draft_game_mode_aggregate_fields | null) + nodes: e_draft_game_mode[] + __typename: 'e_draft_game_mode_aggregate' +} + + +/** aggregate fields of "e_draft_game_mode" */ +export interface e_draft_game_mode_aggregate_fields { + count: Scalars['Int'] + max: (e_draft_game_mode_max_fields | null) + min: (e_draft_game_mode_min_fields | null) + __typename: 'e_draft_game_mode_aggregate_fields' +} + + +/** unique or primary key constraints on table "e_draft_game_mode" */ +export type e_draft_game_mode_constraint = 'e_draft_game_mode_pkey' + +export type e_draft_game_mode_enum = 'Captains' | 'Host' | 'Pug' | 'Teams' + + +/** aggregate max on columns */ +export interface e_draft_game_mode_max_fields { + description: (Scalars['String'] | null) + value: (Scalars['String'] | null) + __typename: 'e_draft_game_mode_max_fields' +} + + +/** aggregate min on columns */ +export interface e_draft_game_mode_min_fields { + description: (Scalars['String'] | null) + value: (Scalars['String'] | null) + __typename: 'e_draft_game_mode_min_fields' +} + + +/** response of any mutation on the table "e_draft_game_mode" */ +export interface e_draft_game_mode_mutation_response { + /** number of rows affected by the mutation */ + affected_rows: Scalars['Int'] + /** data from the rows affected by the mutation */ + returning: e_draft_game_mode[] + __typename: 'e_draft_game_mode_mutation_response' +} + + +/** select columns of table "e_draft_game_mode" */ +export type e_draft_game_mode_select_column = 'description' | 'value' + + +/** update columns of table "e_draft_game_mode" */ +export type e_draft_game_mode_update_column = 'description' | 'value' + + +/** columns and relationships of "e_draft_game_player_status" */ +export interface e_draft_game_player_status { + description: Scalars['String'] + value: Scalars['String'] + __typename: 'e_draft_game_player_status' +} + + +/** aggregated selection of "e_draft_game_player_status" */ +export interface e_draft_game_player_status_aggregate { + aggregate: (e_draft_game_player_status_aggregate_fields | null) + nodes: e_draft_game_player_status[] + __typename: 'e_draft_game_player_status_aggregate' +} + + +/** aggregate fields of "e_draft_game_player_status" */ +export interface e_draft_game_player_status_aggregate_fields { + count: Scalars['Int'] + max: (e_draft_game_player_status_max_fields | null) + min: (e_draft_game_player_status_min_fields | null) + __typename: 'e_draft_game_player_status_aggregate_fields' +} + + +/** unique or primary key constraints on table "e_draft_game_player_status" */ +export type e_draft_game_player_status_constraint = 'e_draft_game_player_status_pkey' + +export type e_draft_game_player_status_enum = 'Accepted' | 'Requested' | 'Waitlist' + + +/** aggregate max on columns */ +export interface e_draft_game_player_status_max_fields { + description: (Scalars['String'] | null) + value: (Scalars['String'] | null) + __typename: 'e_draft_game_player_status_max_fields' +} + + +/** aggregate min on columns */ +export interface e_draft_game_player_status_min_fields { + description: (Scalars['String'] | null) + value: (Scalars['String'] | null) + __typename: 'e_draft_game_player_status_min_fields' +} + + +/** response of any mutation on the table "e_draft_game_player_status" */ +export interface e_draft_game_player_status_mutation_response { + /** number of rows affected by the mutation */ + affected_rows: Scalars['Int'] + /** data from the rows affected by the mutation */ + returning: e_draft_game_player_status[] + __typename: 'e_draft_game_player_status_mutation_response' +} + + +/** select columns of table "e_draft_game_player_status" */ +export type e_draft_game_player_status_select_column = 'description' | 'value' + + +/** update columns of table "e_draft_game_player_status" */ +export type e_draft_game_player_status_update_column = 'description' | 'value' + + +/** columns and relationships of "e_draft_game_status" */ +export interface e_draft_game_status { + description: Scalars['String'] + value: Scalars['String'] + __typename: 'e_draft_game_status' +} + + +/** aggregated selection of "e_draft_game_status" */ +export interface e_draft_game_status_aggregate { + aggregate: (e_draft_game_status_aggregate_fields | null) + nodes: e_draft_game_status[] + __typename: 'e_draft_game_status_aggregate' +} + + +/** aggregate fields of "e_draft_game_status" */ +export interface e_draft_game_status_aggregate_fields { + count: Scalars['Int'] + max: (e_draft_game_status_max_fields | null) + min: (e_draft_game_status_min_fields | null) + __typename: 'e_draft_game_status_aggregate_fields' +} + + +/** unique or primary key constraints on table "e_draft_game_status" */ +export type e_draft_game_status_constraint = 'e_draft_game_status_pkey' + +export type e_draft_game_status_enum = 'Canceled' | 'Completed' | 'CreatingMatch' | 'Drafting' | 'Filled' | 'Open' | 'SelectingCaptains' + + +/** aggregate max on columns */ +export interface e_draft_game_status_max_fields { + description: (Scalars['String'] | null) + value: (Scalars['String'] | null) + __typename: 'e_draft_game_status_max_fields' +} + + +/** aggregate min on columns */ +export interface e_draft_game_status_min_fields { + description: (Scalars['String'] | null) + value: (Scalars['String'] | null) + __typename: 'e_draft_game_status_min_fields' +} + + +/** response of any mutation on the table "e_draft_game_status" */ +export interface e_draft_game_status_mutation_response { + /** number of rows affected by the mutation */ + affected_rows: Scalars['Int'] + /** data from the rows affected by the mutation */ + returning: e_draft_game_status[] + __typename: 'e_draft_game_status_mutation_response' +} + + +/** select columns of table "e_draft_game_status" */ +export type e_draft_game_status_select_column = 'description' | 'value' + + +/** update columns of table "e_draft_game_status" */ +export type e_draft_game_status_update_column = 'description' | 'value' + + /** columns and relationships of "e_friend_status" */ export interface e_friend_status { description: Scalars['String'] @@ -6676,6 +7600,10 @@ export interface matches { demos: match_map_demos[] /** An aggregate relationship */ demos_aggregate: match_map_demos_aggregate + /** An array relationship */ + draft_games: draft_games[] + /** An aggregate relationship */ + draft_games_aggregate: draft_games_aggregate /** An object relationship */ e_match_status: e_match_status /** An object relationship */ @@ -7177,10 +8105,42 @@ export interface mutation_root { delete_db_backups: (db_backups_mutation_response | null) /** delete single row from the table: "db_backups" */ delete_db_backups_by_pk: (db_backups | null) + /** delete data from the table: "draft_game_picks" */ + delete_draft_game_picks: (draft_game_picks_mutation_response | null) + /** delete single row from the table: "draft_game_picks" */ + delete_draft_game_picks_by_pk: (draft_game_picks | null) + /** delete data from the table: "draft_game_players" */ + delete_draft_game_players: (draft_game_players_mutation_response | null) + /** delete single row from the table: "draft_game_players" */ + delete_draft_game_players_by_pk: (draft_game_players | null) + /** delete data from the table: "draft_games" */ + delete_draft_games: (draft_games_mutation_response | null) + /** delete single row from the table: "draft_games" */ + delete_draft_games_by_pk: (draft_games | null) /** delete data from the table: "e_check_in_settings" */ delete_e_check_in_settings: (e_check_in_settings_mutation_response | null) /** delete single row from the table: "e_check_in_settings" */ delete_e_check_in_settings_by_pk: (e_check_in_settings | null) + /** delete data from the table: "e_draft_game_captain_selection" */ + delete_e_draft_game_captain_selection: (e_draft_game_captain_selection_mutation_response | null) + /** delete single row from the table: "e_draft_game_captain_selection" */ + delete_e_draft_game_captain_selection_by_pk: (e_draft_game_captain_selection | null) + /** delete data from the table: "e_draft_game_draft_order" */ + delete_e_draft_game_draft_order: (e_draft_game_draft_order_mutation_response | null) + /** delete single row from the table: "e_draft_game_draft_order" */ + delete_e_draft_game_draft_order_by_pk: (e_draft_game_draft_order | null) + /** delete data from the table: "e_draft_game_mode" */ + delete_e_draft_game_mode: (e_draft_game_mode_mutation_response | null) + /** delete single row from the table: "e_draft_game_mode" */ + delete_e_draft_game_mode_by_pk: (e_draft_game_mode | null) + /** delete data from the table: "e_draft_game_player_status" */ + delete_e_draft_game_player_status: (e_draft_game_player_status_mutation_response | null) + /** delete single row from the table: "e_draft_game_player_status" */ + delete_e_draft_game_player_status_by_pk: (e_draft_game_player_status | null) + /** delete data from the table: "e_draft_game_status" */ + delete_e_draft_game_status: (e_draft_game_status_mutation_response | null) + /** delete single row from the table: "e_draft_game_status" */ + delete_e_draft_game_status_by_pk: (e_draft_game_status | null) /** delete data from the table: "e_friend_status" */ delete_e_friend_status: (e_friend_status_mutation_response | null) /** delete single row from the table: "e_friend_status" */ @@ -7381,6 +8341,10 @@ export interface mutation_root { delete_migration_hashes_hashes_by_pk: (migration_hashes_hashes | null) /** delete data from the table: "v_my_friends" */ delete_my_friends: (my_friends_mutation_response | null) + /** delete data from the table: "news_articles" */ + delete_news_articles: (news_articles_mutation_response | null) + /** delete single row from the table: "news_articles" */ + delete_news_articles_by_pk: (news_articles | null) /** delete data from the table: "notifications" */ delete_notifications: (notifications_mutation_response | null) /** delete single row from the table: "notifications" */ @@ -7576,10 +8540,42 @@ export interface mutation_root { insert_db_backups: (db_backups_mutation_response | null) /** insert a single row into the table: "db_backups" */ insert_db_backups_one: (db_backups | null) + /** insert data into the table: "draft_game_picks" */ + insert_draft_game_picks: (draft_game_picks_mutation_response | null) + /** insert a single row into the table: "draft_game_picks" */ + insert_draft_game_picks_one: (draft_game_picks | null) + /** insert data into the table: "draft_game_players" */ + insert_draft_game_players: (draft_game_players_mutation_response | null) + /** insert a single row into the table: "draft_game_players" */ + insert_draft_game_players_one: (draft_game_players | null) + /** insert data into the table: "draft_games" */ + insert_draft_games: (draft_games_mutation_response | null) + /** insert a single row into the table: "draft_games" */ + insert_draft_games_one: (draft_games | null) /** insert data into the table: "e_check_in_settings" */ insert_e_check_in_settings: (e_check_in_settings_mutation_response | null) /** insert a single row into the table: "e_check_in_settings" */ insert_e_check_in_settings_one: (e_check_in_settings | null) + /** insert data into the table: "e_draft_game_captain_selection" */ + insert_e_draft_game_captain_selection: (e_draft_game_captain_selection_mutation_response | null) + /** insert a single row into the table: "e_draft_game_captain_selection" */ + insert_e_draft_game_captain_selection_one: (e_draft_game_captain_selection | null) + /** insert data into the table: "e_draft_game_draft_order" */ + insert_e_draft_game_draft_order: (e_draft_game_draft_order_mutation_response | null) + /** insert a single row into the table: "e_draft_game_draft_order" */ + insert_e_draft_game_draft_order_one: (e_draft_game_draft_order | null) + /** insert data into the table: "e_draft_game_mode" */ + insert_e_draft_game_mode: (e_draft_game_mode_mutation_response | null) + /** insert a single row into the table: "e_draft_game_mode" */ + insert_e_draft_game_mode_one: (e_draft_game_mode | null) + /** insert data into the table: "e_draft_game_player_status" */ + insert_e_draft_game_player_status: (e_draft_game_player_status_mutation_response | null) + /** insert a single row into the table: "e_draft_game_player_status" */ + insert_e_draft_game_player_status_one: (e_draft_game_player_status | null) + /** insert data into the table: "e_draft_game_status" */ + insert_e_draft_game_status: (e_draft_game_status_mutation_response | null) + /** insert a single row into the table: "e_draft_game_status" */ + insert_e_draft_game_status_one: (e_draft_game_status | null) /** insert data into the table: "e_friend_status" */ insert_e_friend_status: (e_friend_status_mutation_response | null) /** insert a single row into the table: "e_friend_status" */ @@ -7784,6 +8780,10 @@ export interface mutation_root { insert_my_friends: (my_friends_mutation_response | null) /** insert a single row into the table: "v_my_friends" */ insert_my_friends_one: (my_friends | null) + /** insert data into the table: "news_articles" */ + insert_news_articles: (news_articles_mutation_response | null) + /** insert a single row into the table: "news_articles" */ + insert_news_articles_one: (news_articles | null) /** insert data into the table: "notifications" */ insert_notifications: (notifications_mutation_response | null) /** insert a single row into the table: "notifications" */ @@ -8006,6 +9006,8 @@ export interface mutation_root { requestNameChange: (SuccessOutput | null) /** Reset a terminal-state clip_render_jobs row back to queued and re-enqueue the batch worker (admin only). */ requeueClipRender: (SuccessOutput | null) + /** Re-scan tl;dr for new news articles (admin only). Enqueues a background scrape job; no-op if the integration is disabled. */ + rescanTldrNews: (SuccessOutput | null) restartService: (SuccessOutput | null) /** Clear paused flag and re-enqueue remaining queued clip_render_jobs. */ resumeClipRenderBatch: (SuccessOutput | null) @@ -8086,12 +9088,60 @@ export interface mutation_root { update_db_backups_by_pk: (db_backups | null) /** update multiples rows of table: "db_backups" */ update_db_backups_many: ((db_backups_mutation_response | null)[] | null) + /** update data of the table: "draft_game_picks" */ + update_draft_game_picks: (draft_game_picks_mutation_response | null) + /** update single row of the table: "draft_game_picks" */ + update_draft_game_picks_by_pk: (draft_game_picks | null) + /** update multiples rows of table: "draft_game_picks" */ + update_draft_game_picks_many: ((draft_game_picks_mutation_response | null)[] | null) + /** update data of the table: "draft_game_players" */ + update_draft_game_players: (draft_game_players_mutation_response | null) + /** update single row of the table: "draft_game_players" */ + update_draft_game_players_by_pk: (draft_game_players | null) + /** update multiples rows of table: "draft_game_players" */ + update_draft_game_players_many: ((draft_game_players_mutation_response | null)[] | null) + /** update data of the table: "draft_games" */ + update_draft_games: (draft_games_mutation_response | null) + /** update single row of the table: "draft_games" */ + update_draft_games_by_pk: (draft_games | null) + /** update multiples rows of table: "draft_games" */ + update_draft_games_many: ((draft_games_mutation_response | null)[] | null) /** update data of the table: "e_check_in_settings" */ update_e_check_in_settings: (e_check_in_settings_mutation_response | null) /** update single row of the table: "e_check_in_settings" */ update_e_check_in_settings_by_pk: (e_check_in_settings | null) /** update multiples rows of table: "e_check_in_settings" */ update_e_check_in_settings_many: ((e_check_in_settings_mutation_response | null)[] | null) + /** update data of the table: "e_draft_game_captain_selection" */ + update_e_draft_game_captain_selection: (e_draft_game_captain_selection_mutation_response | null) + /** update single row of the table: "e_draft_game_captain_selection" */ + update_e_draft_game_captain_selection_by_pk: (e_draft_game_captain_selection | null) + /** update multiples rows of table: "e_draft_game_captain_selection" */ + update_e_draft_game_captain_selection_many: ((e_draft_game_captain_selection_mutation_response | null)[] | null) + /** update data of the table: "e_draft_game_draft_order" */ + update_e_draft_game_draft_order: (e_draft_game_draft_order_mutation_response | null) + /** update single row of the table: "e_draft_game_draft_order" */ + update_e_draft_game_draft_order_by_pk: (e_draft_game_draft_order | null) + /** update multiples rows of table: "e_draft_game_draft_order" */ + update_e_draft_game_draft_order_many: ((e_draft_game_draft_order_mutation_response | null)[] | null) + /** update data of the table: "e_draft_game_mode" */ + update_e_draft_game_mode: (e_draft_game_mode_mutation_response | null) + /** update single row of the table: "e_draft_game_mode" */ + update_e_draft_game_mode_by_pk: (e_draft_game_mode | null) + /** update multiples rows of table: "e_draft_game_mode" */ + update_e_draft_game_mode_many: ((e_draft_game_mode_mutation_response | null)[] | null) + /** update data of the table: "e_draft_game_player_status" */ + update_e_draft_game_player_status: (e_draft_game_player_status_mutation_response | null) + /** update single row of the table: "e_draft_game_player_status" */ + update_e_draft_game_player_status_by_pk: (e_draft_game_player_status | null) + /** update multiples rows of table: "e_draft_game_player_status" */ + update_e_draft_game_player_status_many: ((e_draft_game_player_status_mutation_response | null)[] | null) + /** update data of the table: "e_draft_game_status" */ + update_e_draft_game_status: (e_draft_game_status_mutation_response | null) + /** update single row of the table: "e_draft_game_status" */ + update_e_draft_game_status_by_pk: (e_draft_game_status | null) + /** update multiples rows of table: "e_draft_game_status" */ + update_e_draft_game_status_many: ((e_draft_game_status_mutation_response | null)[] | null) /** update data of the table: "e_friend_status" */ update_e_friend_status: (e_friend_status_mutation_response | null) /** update single row of the table: "e_friend_status" */ @@ -8394,6 +9444,12 @@ export interface mutation_root { update_my_friends: (my_friends_mutation_response | null) /** update multiples rows of table: "v_my_friends" */ update_my_friends_many: ((my_friends_mutation_response | null)[] | null) + /** update data of the table: "news_articles" */ + update_news_articles: (news_articles_mutation_response | null) + /** update single row of the table: "news_articles" */ + update_news_articles_by_pk: (news_articles | null) + /** update multiples rows of table: "news_articles" */ + update_news_articles_many: ((news_articles_mutation_response | null)[] | null) /** update data of the table: "notifications" */ update_notifications: (notifications_mutation_response | null) /** update single row of the table: "notifications" */ @@ -8844,6 +9900,169 @@ export interface my_friends_variance_fields { } +/** columns and relationships of "news_articles" */ +export interface news_articles { + author: (Scalars['String'] | null) + content_html: (Scalars['String'] | null) + cover_image_url: (Scalars['String'] | null) + created_at: Scalars['timestamptz'] + id: Scalars['uuid'] + issue_number: (Scalars['Int'] | null) + published_at: (Scalars['timestamptz'] | null) + scraped_at: Scalars['timestamptz'] + slug: (Scalars['String'] | null) + source: Scalars['String'] + teaser: (Scalars['String'] | null) + title: Scalars['String'] + updated_at: Scalars['timestamptz'] + url: Scalars['String'] + __typename: 'news_articles' +} + + +/** aggregated selection of "news_articles" */ +export interface news_articles_aggregate { + aggregate: (news_articles_aggregate_fields | null) + nodes: news_articles[] + __typename: 'news_articles_aggregate' +} + + +/** aggregate fields of "news_articles" */ +export interface news_articles_aggregate_fields { + avg: (news_articles_avg_fields | null) + count: Scalars['Int'] + max: (news_articles_max_fields | null) + min: (news_articles_min_fields | null) + stddev: (news_articles_stddev_fields | null) + stddev_pop: (news_articles_stddev_pop_fields | null) + stddev_samp: (news_articles_stddev_samp_fields | null) + sum: (news_articles_sum_fields | null) + var_pop: (news_articles_var_pop_fields | null) + var_samp: (news_articles_var_samp_fields | null) + variance: (news_articles_variance_fields | null) + __typename: 'news_articles_aggregate_fields' +} + + +/** aggregate avg on columns */ +export interface news_articles_avg_fields { + issue_number: (Scalars['Float'] | null) + __typename: 'news_articles_avg_fields' +} + + +/** unique or primary key constraints on table "news_articles" */ +export type news_articles_constraint = 'news_articles_pkey' | 'news_articles_url_key' + + +/** aggregate max on columns */ +export interface news_articles_max_fields { + author: (Scalars['String'] | null) + content_html: (Scalars['String'] | null) + cover_image_url: (Scalars['String'] | null) + created_at: (Scalars['timestamptz'] | null) + id: (Scalars['uuid'] | null) + issue_number: (Scalars['Int'] | null) + published_at: (Scalars['timestamptz'] | null) + scraped_at: (Scalars['timestamptz'] | null) + slug: (Scalars['String'] | null) + source: (Scalars['String'] | null) + teaser: (Scalars['String'] | null) + title: (Scalars['String'] | null) + updated_at: (Scalars['timestamptz'] | null) + url: (Scalars['String'] | null) + __typename: 'news_articles_max_fields' +} + + +/** aggregate min on columns */ +export interface news_articles_min_fields { + author: (Scalars['String'] | null) + content_html: (Scalars['String'] | null) + cover_image_url: (Scalars['String'] | null) + created_at: (Scalars['timestamptz'] | null) + id: (Scalars['uuid'] | null) + issue_number: (Scalars['Int'] | null) + published_at: (Scalars['timestamptz'] | null) + scraped_at: (Scalars['timestamptz'] | null) + slug: (Scalars['String'] | null) + source: (Scalars['String'] | null) + teaser: (Scalars['String'] | null) + title: (Scalars['String'] | null) + updated_at: (Scalars['timestamptz'] | null) + url: (Scalars['String'] | null) + __typename: 'news_articles_min_fields' +} + + +/** response of any mutation on the table "news_articles" */ +export interface news_articles_mutation_response { + /** number of rows affected by the mutation */ + affected_rows: Scalars['Int'] + /** data from the rows affected by the mutation */ + returning: news_articles[] + __typename: 'news_articles_mutation_response' +} + + +/** select columns of table "news_articles" */ +export type news_articles_select_column = 'author' | 'content_html' | 'cover_image_url' | 'created_at' | 'id' | 'issue_number' | 'published_at' | 'scraped_at' | 'slug' | 'source' | 'teaser' | 'title' | 'updated_at' | 'url' + + +/** aggregate stddev on columns */ +export interface news_articles_stddev_fields { + issue_number: (Scalars['Float'] | null) + __typename: 'news_articles_stddev_fields' +} + + +/** aggregate stddev_pop on columns */ +export interface news_articles_stddev_pop_fields { + issue_number: (Scalars['Float'] | null) + __typename: 'news_articles_stddev_pop_fields' +} + + +/** aggregate stddev_samp on columns */ +export interface news_articles_stddev_samp_fields { + issue_number: (Scalars['Float'] | null) + __typename: 'news_articles_stddev_samp_fields' +} + + +/** aggregate sum on columns */ +export interface news_articles_sum_fields { + issue_number: (Scalars['Int'] | null) + __typename: 'news_articles_sum_fields' +} + + +/** update columns of table "news_articles" */ +export type news_articles_update_column = 'author' | 'content_html' | 'cover_image_url' | 'created_at' | 'id' | 'issue_number' | 'published_at' | 'scraped_at' | 'slug' | 'source' | 'teaser' | 'title' | 'updated_at' | 'url' + + +/** aggregate var_pop on columns */ +export interface news_articles_var_pop_fields { + issue_number: (Scalars['Float'] | null) + __typename: 'news_articles_var_pop_fields' +} + + +/** aggregate var_samp on columns */ +export interface news_articles_var_samp_fields { + issue_number: (Scalars['Float'] | null) + __typename: 'news_articles_var_samp_fields' +} + + +/** aggregate variance on columns */ +export interface news_articles_variance_fields { + issue_number: (Scalars['Float'] | null) + __typename: 'news_articles_variance_fields' +} + + /** columns and relationships of "notifications" */ export interface notifications { actions: (Scalars['jsonb'] | null) @@ -15470,6 +16689,7 @@ export interface players { /** An aggregate relationship */ kills_by_weapons_aggregate: player_kills_by_weapon_aggregate language: (Scalars['String'] | null) + last_read_news_at: (Scalars['timestamptz'] | null) last_sign_in_at: (Scalars['timestamptz'] | null) /** An array relationship */ lobby_players: lobby_players[] @@ -15677,6 +16897,7 @@ export interface players_max_fields { faceit_url: (Scalars['String'] | null) game_ban_count: (Scalars['Int'] | null) language: (Scalars['String'] | null) + last_read_news_at: (Scalars['timestamptz'] | null) last_sign_in_at: (Scalars['timestamptz'] | null) /** A computed field, executes function "get_total_player_losses" */ losses: (Scalars['Int'] | null) @@ -15728,6 +16949,7 @@ export interface players_min_fields { faceit_url: (Scalars['String'] | null) game_ban_count: (Scalars['Int'] | null) language: (Scalars['String'] | null) + last_read_news_at: (Scalars['timestamptz'] | null) last_sign_in_at: (Scalars['timestamptz'] | null) /** A computed field, executes function "get_total_player_losses" */ losses: (Scalars['Int'] | null) @@ -15772,7 +16994,7 @@ export interface players_mutation_response { /** select columns of table "players" */ -export type players_select_column = 'avatar_url' | 'country' | 'created_at' | 'custom_avatar_url' | 'days_since_last_ban' | 'discord_id' | 'faceit_elo' | 'faceit_nickname' | 'faceit_player_id' | 'faceit_skill_level' | 'faceit_updated_at' | 'faceit_url' | 'game_ban_count' | 'language' | 'last_sign_in_at' | 'name' | 'name_registered' | 'premier_rank' | 'premier_rank_updated_at' | 'profile_url' | 'role' | 'roster_image_url' | 'show_match_ready_modal' | 'steam_bans_checked_at' | 'steam_id' | 'vac_ban_count' | 'vac_banned' +export type players_select_column = 'avatar_url' | 'country' | 'created_at' | 'custom_avatar_url' | 'days_since_last_ban' | 'discord_id' | 'faceit_elo' | 'faceit_nickname' | 'faceit_player_id' | 'faceit_skill_level' | 'faceit_updated_at' | 'faceit_url' | 'game_ban_count' | 'language' | 'last_read_news_at' | 'last_sign_in_at' | 'name' | 'name_registered' | 'premier_rank' | 'premier_rank_updated_at' | 'profile_url' | 'role' | 'roster_image_url' | 'show_match_ready_modal' | 'steam_bans_checked_at' | 'steam_id' | 'vac_ban_count' | 'vac_banned' /** aggregate stddev on columns */ @@ -15900,7 +17122,7 @@ export interface players_sum_fields { /** update columns of table "players" */ -export type players_update_column = 'avatar_url' | 'country' | 'created_at' | 'custom_avatar_url' | 'days_since_last_ban' | 'discord_id' | 'faceit_elo' | 'faceit_nickname' | 'faceit_player_id' | 'faceit_skill_level' | 'faceit_updated_at' | 'faceit_url' | 'game_ban_count' | 'language' | 'last_sign_in_at' | 'name' | 'name_registered' | 'premier_rank' | 'premier_rank_updated_at' | 'profile_url' | 'role' | 'roster_image_url' | 'show_match_ready_modal' | 'steam_bans_checked_at' | 'steam_id' | 'vac_ban_count' | 'vac_banned' +export type players_update_column = 'avatar_url' | 'country' | 'created_at' | 'custom_avatar_url' | 'days_since_last_ban' | 'discord_id' | 'faceit_elo' | 'faceit_nickname' | 'faceit_player_id' | 'faceit_skill_level' | 'faceit_updated_at' | 'faceit_url' | 'game_ban_count' | 'language' | 'last_read_news_at' | 'last_sign_in_at' | 'name' | 'name_registered' | 'premier_rank' | 'premier_rank_updated_at' | 'profile_url' | 'role' | 'roster_image_url' | 'show_match_ready_modal' | 'steam_bans_checked_at' | 'steam_id' | 'vac_ban_count' | 'vac_banned' /** aggregate var_pop on columns */ @@ -16157,12 +17379,60 @@ export interface query_root { db_backups_aggregate: db_backups_aggregate /** fetch data from the table: "db_backups" using primary key columns */ db_backups_by_pk: (db_backups | null) + /** fetch data from the table: "draft_game_picks" */ + draft_game_picks: draft_game_picks[] + /** fetch aggregated fields from the table: "draft_game_picks" */ + draft_game_picks_aggregate: draft_game_picks_aggregate + /** fetch data from the table: "draft_game_picks" using primary key columns */ + draft_game_picks_by_pk: (draft_game_picks | null) + /** fetch data from the table: "draft_game_players" */ + draft_game_players: draft_game_players[] + /** fetch aggregated fields from the table: "draft_game_players" */ + draft_game_players_aggregate: draft_game_players_aggregate + /** fetch data from the table: "draft_game_players" using primary key columns */ + draft_game_players_by_pk: (draft_game_players | null) + /** An array relationship */ + draft_games: draft_games[] + /** An aggregate relationship */ + draft_games_aggregate: draft_games_aggregate + /** fetch data from the table: "draft_games" using primary key columns */ + draft_games_by_pk: (draft_games | null) /** fetch data from the table: "e_check_in_settings" */ e_check_in_settings: e_check_in_settings[] /** fetch aggregated fields from the table: "e_check_in_settings" */ e_check_in_settings_aggregate: e_check_in_settings_aggregate /** fetch data from the table: "e_check_in_settings" using primary key columns */ e_check_in_settings_by_pk: (e_check_in_settings | null) + /** fetch data from the table: "e_draft_game_captain_selection" */ + e_draft_game_captain_selection: e_draft_game_captain_selection[] + /** fetch aggregated fields from the table: "e_draft_game_captain_selection" */ + e_draft_game_captain_selection_aggregate: e_draft_game_captain_selection_aggregate + /** fetch data from the table: "e_draft_game_captain_selection" using primary key columns */ + e_draft_game_captain_selection_by_pk: (e_draft_game_captain_selection | null) + /** fetch data from the table: "e_draft_game_draft_order" */ + e_draft_game_draft_order: e_draft_game_draft_order[] + /** fetch aggregated fields from the table: "e_draft_game_draft_order" */ + e_draft_game_draft_order_aggregate: e_draft_game_draft_order_aggregate + /** fetch data from the table: "e_draft_game_draft_order" using primary key columns */ + e_draft_game_draft_order_by_pk: (e_draft_game_draft_order | null) + /** fetch data from the table: "e_draft_game_mode" */ + e_draft_game_mode: e_draft_game_mode[] + /** fetch aggregated fields from the table: "e_draft_game_mode" */ + e_draft_game_mode_aggregate: e_draft_game_mode_aggregate + /** fetch data from the table: "e_draft_game_mode" using primary key columns */ + e_draft_game_mode_by_pk: (e_draft_game_mode | null) + /** fetch data from the table: "e_draft_game_player_status" */ + e_draft_game_player_status: e_draft_game_player_status[] + /** fetch aggregated fields from the table: "e_draft_game_player_status" */ + e_draft_game_player_status_aggregate: e_draft_game_player_status_aggregate + /** fetch data from the table: "e_draft_game_player_status" using primary key columns */ + e_draft_game_player_status_by_pk: (e_draft_game_player_status | null) + /** fetch data from the table: "e_draft_game_status" */ + e_draft_game_status: e_draft_game_status[] + /** fetch aggregated fields from the table: "e_draft_game_status" */ + e_draft_game_status_aggregate: e_draft_game_status_aggregate + /** fetch data from the table: "e_draft_game_status" using primary key columns */ + e_draft_game_status_by_pk: (e_draft_game_status | null) /** fetch data from the table: "e_friend_status" */ e_friend_status: e_friend_status[] /** fetch aggregated fields from the table: "e_friend_status" */ @@ -16511,6 +17781,12 @@ export interface query_root { my_friends: my_friends[] /** fetch aggregated fields from the table: "v_my_friends" */ my_friends_aggregate: my_friends_aggregate + /** fetch data from the table: "news_articles" */ + news_articles: news_articles[] + /** fetch aggregated fields from the table: "news_articles" */ + news_articles_aggregate: news_articles_aggregate + /** fetch data from the table: "news_articles" using primary key columns */ + news_articles_by_pk: (news_articles | null) /** An array relationship */ notifications: notifications[] /** An aggregate relationship */ @@ -17553,6 +18829,30 @@ export interface subscription_root { db_backups_by_pk: (db_backups | null) /** fetch data from the table in a streaming manner: "db_backups" */ db_backups_stream: db_backups[] + /** fetch data from the table: "draft_game_picks" */ + draft_game_picks: draft_game_picks[] + /** fetch aggregated fields from the table: "draft_game_picks" */ + draft_game_picks_aggregate: draft_game_picks_aggregate + /** fetch data from the table: "draft_game_picks" using primary key columns */ + draft_game_picks_by_pk: (draft_game_picks | null) + /** fetch data from the table in a streaming manner: "draft_game_picks" */ + draft_game_picks_stream: draft_game_picks[] + /** fetch data from the table: "draft_game_players" */ + draft_game_players: draft_game_players[] + /** fetch aggregated fields from the table: "draft_game_players" */ + draft_game_players_aggregate: draft_game_players_aggregate + /** fetch data from the table: "draft_game_players" using primary key columns */ + draft_game_players_by_pk: (draft_game_players | null) + /** fetch data from the table in a streaming manner: "draft_game_players" */ + draft_game_players_stream: draft_game_players[] + /** An array relationship */ + draft_games: draft_games[] + /** An aggregate relationship */ + draft_games_aggregate: draft_games_aggregate + /** fetch data from the table: "draft_games" using primary key columns */ + draft_games_by_pk: (draft_games | null) + /** fetch data from the table in a streaming manner: "draft_games" */ + draft_games_stream: draft_games[] /** fetch data from the table: "e_check_in_settings" */ e_check_in_settings: e_check_in_settings[] /** fetch aggregated fields from the table: "e_check_in_settings" */ @@ -17561,6 +18861,46 @@ export interface subscription_root { e_check_in_settings_by_pk: (e_check_in_settings | null) /** fetch data from the table in a streaming manner: "e_check_in_settings" */ e_check_in_settings_stream: e_check_in_settings[] + /** fetch data from the table: "e_draft_game_captain_selection" */ + e_draft_game_captain_selection: e_draft_game_captain_selection[] + /** fetch aggregated fields from the table: "e_draft_game_captain_selection" */ + e_draft_game_captain_selection_aggregate: e_draft_game_captain_selection_aggregate + /** fetch data from the table: "e_draft_game_captain_selection" using primary key columns */ + e_draft_game_captain_selection_by_pk: (e_draft_game_captain_selection | null) + /** fetch data from the table in a streaming manner: "e_draft_game_captain_selection" */ + e_draft_game_captain_selection_stream: e_draft_game_captain_selection[] + /** fetch data from the table: "e_draft_game_draft_order" */ + e_draft_game_draft_order: e_draft_game_draft_order[] + /** fetch aggregated fields from the table: "e_draft_game_draft_order" */ + e_draft_game_draft_order_aggregate: e_draft_game_draft_order_aggregate + /** fetch data from the table: "e_draft_game_draft_order" using primary key columns */ + e_draft_game_draft_order_by_pk: (e_draft_game_draft_order | null) + /** fetch data from the table in a streaming manner: "e_draft_game_draft_order" */ + e_draft_game_draft_order_stream: e_draft_game_draft_order[] + /** fetch data from the table: "e_draft_game_mode" */ + e_draft_game_mode: e_draft_game_mode[] + /** fetch aggregated fields from the table: "e_draft_game_mode" */ + e_draft_game_mode_aggregate: e_draft_game_mode_aggregate + /** fetch data from the table: "e_draft_game_mode" using primary key columns */ + e_draft_game_mode_by_pk: (e_draft_game_mode | null) + /** fetch data from the table in a streaming manner: "e_draft_game_mode" */ + e_draft_game_mode_stream: e_draft_game_mode[] + /** fetch data from the table: "e_draft_game_player_status" */ + e_draft_game_player_status: e_draft_game_player_status[] + /** fetch aggregated fields from the table: "e_draft_game_player_status" */ + e_draft_game_player_status_aggregate: e_draft_game_player_status_aggregate + /** fetch data from the table: "e_draft_game_player_status" using primary key columns */ + e_draft_game_player_status_by_pk: (e_draft_game_player_status | null) + /** fetch data from the table in a streaming manner: "e_draft_game_player_status" */ + e_draft_game_player_status_stream: e_draft_game_player_status[] + /** fetch data from the table: "e_draft_game_status" */ + e_draft_game_status: e_draft_game_status[] + /** fetch aggregated fields from the table: "e_draft_game_status" */ + e_draft_game_status_aggregate: e_draft_game_status_aggregate + /** fetch data from the table: "e_draft_game_status" using primary key columns */ + e_draft_game_status_by_pk: (e_draft_game_status | null) + /** fetch data from the table in a streaming manner: "e_draft_game_status" */ + e_draft_game_status_stream: e_draft_game_status[] /** fetch data from the table: "e_friend_status" */ e_friend_status: e_friend_status[] /** fetch aggregated fields from the table: "e_friend_status" */ @@ -17973,6 +19313,14 @@ export interface subscription_root { my_friends_aggregate: my_friends_aggregate /** fetch data from the table in a streaming manner: "v_my_friends" */ my_friends_stream: my_friends[] + /** fetch data from the table: "news_articles" */ + news_articles: news_articles[] + /** fetch aggregated fields from the table: "news_articles" */ + news_articles_aggregate: news_articles_aggregate + /** fetch data from the table: "news_articles" using primary key columns */ + news_articles_by_pk: (news_articles | null) + /** fetch data from the table in a streaming manner: "news_articles" */ + news_articles_stream: news_articles[] /** An array relationship */ notifications: notifications[] /** An aggregate relationship */ @@ -27262,6 +28610,951 @@ export interface db_backups_variance_fieldsGenqlSelection{ } +/** columns and relationships of "draft_game_picks" */ +export interface draft_game_picksGenqlSelection{ + auto_picked?: boolean | number + /** An object relationship */ + captain?: playersGenqlSelection + captain_steam_id?: boolean | number + created_at?: boolean | number + /** An object relationship */ + draft_game?: draft_gamesGenqlSelection + draft_game_id?: boolean | number + id?: boolean | number + lineup?: boolean | number + /** An object relationship */ + picked?: playersGenqlSelection + picked_steam_id?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** aggregated selection of "draft_game_picks" */ +export interface draft_game_picks_aggregateGenqlSelection{ + aggregate?: draft_game_picks_aggregate_fieldsGenqlSelection + nodes?: draft_game_picksGenqlSelection + __typename?: boolean | number + __scalar?: boolean | number +} + +export interface draft_game_picks_aggregate_bool_exp {bool_and?: (draft_game_picks_aggregate_bool_exp_bool_and | null),bool_or?: (draft_game_picks_aggregate_bool_exp_bool_or | null),count?: (draft_game_picks_aggregate_bool_exp_count | null)} + +export interface draft_game_picks_aggregate_bool_exp_bool_and {arguments: draft_game_picks_select_column_draft_game_picks_aggregate_bool_exp_bool_and_arguments_columns,distinct?: (Scalars['Boolean'] | null),filter?: (draft_game_picks_bool_exp | null),predicate: Boolean_comparison_exp} + +export interface draft_game_picks_aggregate_bool_exp_bool_or {arguments: draft_game_picks_select_column_draft_game_picks_aggregate_bool_exp_bool_or_arguments_columns,distinct?: (Scalars['Boolean'] | null),filter?: (draft_game_picks_bool_exp | null),predicate: Boolean_comparison_exp} + +export interface draft_game_picks_aggregate_bool_exp_count {arguments?: (draft_game_picks_select_column[] | null),distinct?: (Scalars['Boolean'] | null),filter?: (draft_game_picks_bool_exp | null),predicate: Int_comparison_exp} + + +/** aggregate fields of "draft_game_picks" */ +export interface draft_game_picks_aggregate_fieldsGenqlSelection{ + avg?: draft_game_picks_avg_fieldsGenqlSelection + count?: { __args: {columns?: (draft_game_picks_select_column[] | null), distinct?: (Scalars['Boolean'] | null)} } | boolean | number + max?: draft_game_picks_max_fieldsGenqlSelection + min?: draft_game_picks_min_fieldsGenqlSelection + stddev?: draft_game_picks_stddev_fieldsGenqlSelection + stddev_pop?: draft_game_picks_stddev_pop_fieldsGenqlSelection + stddev_samp?: draft_game_picks_stddev_samp_fieldsGenqlSelection + sum?: draft_game_picks_sum_fieldsGenqlSelection + var_pop?: draft_game_picks_var_pop_fieldsGenqlSelection + var_samp?: draft_game_picks_var_samp_fieldsGenqlSelection + variance?: draft_game_picks_variance_fieldsGenqlSelection + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** order by aggregate values of table "draft_game_picks" */ +export interface draft_game_picks_aggregate_order_by {avg?: (draft_game_picks_avg_order_by | null),count?: (order_by | null),max?: (draft_game_picks_max_order_by | null),min?: (draft_game_picks_min_order_by | null),stddev?: (draft_game_picks_stddev_order_by | null),stddev_pop?: (draft_game_picks_stddev_pop_order_by | null),stddev_samp?: (draft_game_picks_stddev_samp_order_by | null),sum?: (draft_game_picks_sum_order_by | null),var_pop?: (draft_game_picks_var_pop_order_by | null),var_samp?: (draft_game_picks_var_samp_order_by | null),variance?: (draft_game_picks_variance_order_by | null)} + + +/** input type for inserting array relation for remote table "draft_game_picks" */ +export interface draft_game_picks_arr_rel_insert_input {data: draft_game_picks_insert_input[], +/** upsert condition */ +on_conflict?: (draft_game_picks_on_conflict | null)} + + +/** aggregate avg on columns */ +export interface draft_game_picks_avg_fieldsGenqlSelection{ + captain_steam_id?: boolean | number + lineup?: boolean | number + picked_steam_id?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** order by avg() on columns of table "draft_game_picks" */ +export interface draft_game_picks_avg_order_by {captain_steam_id?: (order_by | null),lineup?: (order_by | null),picked_steam_id?: (order_by | null)} + + +/** Boolean expression to filter rows from the table "draft_game_picks". All fields are combined with a logical 'AND'. */ +export interface draft_game_picks_bool_exp {_and?: (draft_game_picks_bool_exp[] | null),_not?: (draft_game_picks_bool_exp | null),_or?: (draft_game_picks_bool_exp[] | null),auto_picked?: (Boolean_comparison_exp | null),captain?: (players_bool_exp | null),captain_steam_id?: (bigint_comparison_exp | null),created_at?: (timestamptz_comparison_exp | null),draft_game?: (draft_games_bool_exp | null),draft_game_id?: (uuid_comparison_exp | null),id?: (uuid_comparison_exp | null),lineup?: (Int_comparison_exp | null),picked?: (players_bool_exp | null),picked_steam_id?: (bigint_comparison_exp | null)} + + +/** input type for incrementing numeric columns in table "draft_game_picks" */ +export interface draft_game_picks_inc_input {captain_steam_id?: (Scalars['bigint'] | null),lineup?: (Scalars['Int'] | null),picked_steam_id?: (Scalars['bigint'] | null)} + + +/** input type for inserting data into table "draft_game_picks" */ +export interface draft_game_picks_insert_input {auto_picked?: (Scalars['Boolean'] | null),captain?: (players_obj_rel_insert_input | null),captain_steam_id?: (Scalars['bigint'] | null),created_at?: (Scalars['timestamptz'] | null),draft_game?: (draft_games_obj_rel_insert_input | null),draft_game_id?: (Scalars['uuid'] | null),id?: (Scalars['uuid'] | null),lineup?: (Scalars['Int'] | null),picked?: (players_obj_rel_insert_input | null),picked_steam_id?: (Scalars['bigint'] | null)} + + +/** aggregate max on columns */ +export interface draft_game_picks_max_fieldsGenqlSelection{ + captain_steam_id?: boolean | number + created_at?: boolean | number + draft_game_id?: boolean | number + id?: boolean | number + lineup?: boolean | number + picked_steam_id?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** order by max() on columns of table "draft_game_picks" */ +export interface draft_game_picks_max_order_by {captain_steam_id?: (order_by | null),created_at?: (order_by | null),draft_game_id?: (order_by | null),id?: (order_by | null),lineup?: (order_by | null),picked_steam_id?: (order_by | null)} + + +/** aggregate min on columns */ +export interface draft_game_picks_min_fieldsGenqlSelection{ + captain_steam_id?: boolean | number + created_at?: boolean | number + draft_game_id?: boolean | number + id?: boolean | number + lineup?: boolean | number + picked_steam_id?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** order by min() on columns of table "draft_game_picks" */ +export interface draft_game_picks_min_order_by {captain_steam_id?: (order_by | null),created_at?: (order_by | null),draft_game_id?: (order_by | null),id?: (order_by | null),lineup?: (order_by | null),picked_steam_id?: (order_by | null)} + + +/** response of any mutation on the table "draft_game_picks" */ +export interface draft_game_picks_mutation_responseGenqlSelection{ + /** number of rows affected by the mutation */ + affected_rows?: boolean | number + /** data from the rows affected by the mutation */ + returning?: draft_game_picksGenqlSelection + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** on_conflict condition type for table "draft_game_picks" */ +export interface draft_game_picks_on_conflict {constraint: draft_game_picks_constraint,update_columns?: draft_game_picks_update_column[],where?: (draft_game_picks_bool_exp | null)} + + +/** Ordering options when selecting data from "draft_game_picks". */ +export interface draft_game_picks_order_by {auto_picked?: (order_by | null),captain?: (players_order_by | null),captain_steam_id?: (order_by | null),created_at?: (order_by | null),draft_game?: (draft_games_order_by | null),draft_game_id?: (order_by | null),id?: (order_by | null),lineup?: (order_by | null),picked?: (players_order_by | null),picked_steam_id?: (order_by | null)} + + +/** primary key columns input for table: draft_game_picks */ +export interface draft_game_picks_pk_columns_input {id: Scalars['uuid']} + + +/** input type for updating data in table "draft_game_picks" */ +export interface draft_game_picks_set_input {auto_picked?: (Scalars['Boolean'] | null),captain_steam_id?: (Scalars['bigint'] | null),created_at?: (Scalars['timestamptz'] | null),draft_game_id?: (Scalars['uuid'] | null),id?: (Scalars['uuid'] | null),lineup?: (Scalars['Int'] | null),picked_steam_id?: (Scalars['bigint'] | null)} + + +/** aggregate stddev on columns */ +export interface draft_game_picks_stddev_fieldsGenqlSelection{ + captain_steam_id?: boolean | number + lineup?: boolean | number + picked_steam_id?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** order by stddev() on columns of table "draft_game_picks" */ +export interface draft_game_picks_stddev_order_by {captain_steam_id?: (order_by | null),lineup?: (order_by | null),picked_steam_id?: (order_by | null)} + + +/** aggregate stddev_pop on columns */ +export interface draft_game_picks_stddev_pop_fieldsGenqlSelection{ + captain_steam_id?: boolean | number + lineup?: boolean | number + picked_steam_id?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** order by stddev_pop() on columns of table "draft_game_picks" */ +export interface draft_game_picks_stddev_pop_order_by {captain_steam_id?: (order_by | null),lineup?: (order_by | null),picked_steam_id?: (order_by | null)} + + +/** aggregate stddev_samp on columns */ +export interface draft_game_picks_stddev_samp_fieldsGenqlSelection{ + captain_steam_id?: boolean | number + lineup?: boolean | number + picked_steam_id?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** order by stddev_samp() on columns of table "draft_game_picks" */ +export interface draft_game_picks_stddev_samp_order_by {captain_steam_id?: (order_by | null),lineup?: (order_by | null),picked_steam_id?: (order_by | null)} + + +/** Streaming cursor of the table "draft_game_picks" */ +export interface draft_game_picks_stream_cursor_input { +/** Stream column input with initial value */ +initial_value: draft_game_picks_stream_cursor_value_input, +/** cursor ordering */ +ordering?: (cursor_ordering | null)} + + +/** Initial value of the column from where the streaming should start */ +export interface draft_game_picks_stream_cursor_value_input {auto_picked?: (Scalars['Boolean'] | null),captain_steam_id?: (Scalars['bigint'] | null),created_at?: (Scalars['timestamptz'] | null),draft_game_id?: (Scalars['uuid'] | null),id?: (Scalars['uuid'] | null),lineup?: (Scalars['Int'] | null),picked_steam_id?: (Scalars['bigint'] | null)} + + +/** aggregate sum on columns */ +export interface draft_game_picks_sum_fieldsGenqlSelection{ + captain_steam_id?: boolean | number + lineup?: boolean | number + picked_steam_id?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** order by sum() on columns of table "draft_game_picks" */ +export interface draft_game_picks_sum_order_by {captain_steam_id?: (order_by | null),lineup?: (order_by | null),picked_steam_id?: (order_by | null)} + +export interface draft_game_picks_updates { +/** increments the numeric columns with given value of the filtered values */ +_inc?: (draft_game_picks_inc_input | null), +/** sets the columns of the filtered rows to the given values */ +_set?: (draft_game_picks_set_input | null), +/** filter the rows which have to be updated */ +where: draft_game_picks_bool_exp} + + +/** aggregate var_pop on columns */ +export interface draft_game_picks_var_pop_fieldsGenqlSelection{ + captain_steam_id?: boolean | number + lineup?: boolean | number + picked_steam_id?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** order by var_pop() on columns of table "draft_game_picks" */ +export interface draft_game_picks_var_pop_order_by {captain_steam_id?: (order_by | null),lineup?: (order_by | null),picked_steam_id?: (order_by | null)} + + +/** aggregate var_samp on columns */ +export interface draft_game_picks_var_samp_fieldsGenqlSelection{ + captain_steam_id?: boolean | number + lineup?: boolean | number + picked_steam_id?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** order by var_samp() on columns of table "draft_game_picks" */ +export interface draft_game_picks_var_samp_order_by {captain_steam_id?: (order_by | null),lineup?: (order_by | null),picked_steam_id?: (order_by | null)} + + +/** aggregate variance on columns */ +export interface draft_game_picks_variance_fieldsGenqlSelection{ + captain_steam_id?: boolean | number + lineup?: boolean | number + picked_steam_id?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** order by variance() on columns of table "draft_game_picks" */ +export interface draft_game_picks_variance_order_by {captain_steam_id?: (order_by | null),lineup?: (order_by | null),picked_steam_id?: (order_by | null)} + + +/** columns and relationships of "draft_game_players" */ +export interface draft_game_playersGenqlSelection{ + /** An object relationship */ + draft_game?: draft_gamesGenqlSelection + draft_game_id?: boolean | number + /** An object relationship */ + e_draft_game_player_status?: e_draft_game_player_statusGenqlSelection + elo_snapshot?: boolean | number + is_captain?: boolean | number + joined_at?: boolean | number + lineup?: boolean | number + pick_order?: boolean | number + /** An object relationship */ + player?: playersGenqlSelection + status?: boolean | number + steam_id?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** aggregated selection of "draft_game_players" */ +export interface draft_game_players_aggregateGenqlSelection{ + aggregate?: draft_game_players_aggregate_fieldsGenqlSelection + nodes?: draft_game_playersGenqlSelection + __typename?: boolean | number + __scalar?: boolean | number +} + +export interface draft_game_players_aggregate_bool_exp {bool_and?: (draft_game_players_aggregate_bool_exp_bool_and | null),bool_or?: (draft_game_players_aggregate_bool_exp_bool_or | null),count?: (draft_game_players_aggregate_bool_exp_count | null)} + +export interface draft_game_players_aggregate_bool_exp_bool_and {arguments: draft_game_players_select_column_draft_game_players_aggregate_bool_exp_bool_and_arguments_columns,distinct?: (Scalars['Boolean'] | null),filter?: (draft_game_players_bool_exp | null),predicate: Boolean_comparison_exp} + +export interface draft_game_players_aggregate_bool_exp_bool_or {arguments: draft_game_players_select_column_draft_game_players_aggregate_bool_exp_bool_or_arguments_columns,distinct?: (Scalars['Boolean'] | null),filter?: (draft_game_players_bool_exp | null),predicate: Boolean_comparison_exp} + +export interface draft_game_players_aggregate_bool_exp_count {arguments?: (draft_game_players_select_column[] | null),distinct?: (Scalars['Boolean'] | null),filter?: (draft_game_players_bool_exp | null),predicate: Int_comparison_exp} + + +/** aggregate fields of "draft_game_players" */ +export interface draft_game_players_aggregate_fieldsGenqlSelection{ + avg?: draft_game_players_avg_fieldsGenqlSelection + count?: { __args: {columns?: (draft_game_players_select_column[] | null), distinct?: (Scalars['Boolean'] | null)} } | boolean | number + max?: draft_game_players_max_fieldsGenqlSelection + min?: draft_game_players_min_fieldsGenqlSelection + stddev?: draft_game_players_stddev_fieldsGenqlSelection + stddev_pop?: draft_game_players_stddev_pop_fieldsGenqlSelection + stddev_samp?: draft_game_players_stddev_samp_fieldsGenqlSelection + sum?: draft_game_players_sum_fieldsGenqlSelection + var_pop?: draft_game_players_var_pop_fieldsGenqlSelection + var_samp?: draft_game_players_var_samp_fieldsGenqlSelection + variance?: draft_game_players_variance_fieldsGenqlSelection + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** order by aggregate values of table "draft_game_players" */ +export interface draft_game_players_aggregate_order_by {avg?: (draft_game_players_avg_order_by | null),count?: (order_by | null),max?: (draft_game_players_max_order_by | null),min?: (draft_game_players_min_order_by | null),stddev?: (draft_game_players_stddev_order_by | null),stddev_pop?: (draft_game_players_stddev_pop_order_by | null),stddev_samp?: (draft_game_players_stddev_samp_order_by | null),sum?: (draft_game_players_sum_order_by | null),var_pop?: (draft_game_players_var_pop_order_by | null),var_samp?: (draft_game_players_var_samp_order_by | null),variance?: (draft_game_players_variance_order_by | null)} + + +/** input type for inserting array relation for remote table "draft_game_players" */ +export interface draft_game_players_arr_rel_insert_input {data: draft_game_players_insert_input[], +/** upsert condition */ +on_conflict?: (draft_game_players_on_conflict | null)} + + +/** aggregate avg on columns */ +export interface draft_game_players_avg_fieldsGenqlSelection{ + elo_snapshot?: boolean | number + lineup?: boolean | number + pick_order?: boolean | number + steam_id?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** order by avg() on columns of table "draft_game_players" */ +export interface draft_game_players_avg_order_by {elo_snapshot?: (order_by | null),lineup?: (order_by | null),pick_order?: (order_by | null),steam_id?: (order_by | null)} + + +/** Boolean expression to filter rows from the table "draft_game_players". All fields are combined with a logical 'AND'. */ +export interface draft_game_players_bool_exp {_and?: (draft_game_players_bool_exp[] | null),_not?: (draft_game_players_bool_exp | null),_or?: (draft_game_players_bool_exp[] | null),draft_game?: (draft_games_bool_exp | null),draft_game_id?: (uuid_comparison_exp | null),e_draft_game_player_status?: (e_draft_game_player_status_bool_exp | null),elo_snapshot?: (Int_comparison_exp | null),is_captain?: (Boolean_comparison_exp | null),joined_at?: (timestamptz_comparison_exp | null),lineup?: (Int_comparison_exp | null),pick_order?: (Int_comparison_exp | null),player?: (players_bool_exp | null),status?: (e_draft_game_player_status_enum_comparison_exp | null),steam_id?: (bigint_comparison_exp | null)} + + +/** input type for incrementing numeric columns in table "draft_game_players" */ +export interface draft_game_players_inc_input {elo_snapshot?: (Scalars['Int'] | null),lineup?: (Scalars['Int'] | null),pick_order?: (Scalars['Int'] | null),steam_id?: (Scalars['bigint'] | null)} + + +/** input type for inserting data into table "draft_game_players" */ +export interface draft_game_players_insert_input {draft_game?: (draft_games_obj_rel_insert_input | null),draft_game_id?: (Scalars['uuid'] | null),e_draft_game_player_status?: (e_draft_game_player_status_obj_rel_insert_input | null),elo_snapshot?: (Scalars['Int'] | null),is_captain?: (Scalars['Boolean'] | null),joined_at?: (Scalars['timestamptz'] | null),lineup?: (Scalars['Int'] | null),pick_order?: (Scalars['Int'] | null),player?: (players_obj_rel_insert_input | null),status?: (e_draft_game_player_status_enum | null),steam_id?: (Scalars['bigint'] | null)} + + +/** aggregate max on columns */ +export interface draft_game_players_max_fieldsGenqlSelection{ + draft_game_id?: boolean | number + elo_snapshot?: boolean | number + joined_at?: boolean | number + lineup?: boolean | number + pick_order?: boolean | number + steam_id?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** order by max() on columns of table "draft_game_players" */ +export interface draft_game_players_max_order_by {draft_game_id?: (order_by | null),elo_snapshot?: (order_by | null),joined_at?: (order_by | null),lineup?: (order_by | null),pick_order?: (order_by | null),steam_id?: (order_by | null)} + + +/** aggregate min on columns */ +export interface draft_game_players_min_fieldsGenqlSelection{ + draft_game_id?: boolean | number + elo_snapshot?: boolean | number + joined_at?: boolean | number + lineup?: boolean | number + pick_order?: boolean | number + steam_id?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** order by min() on columns of table "draft_game_players" */ +export interface draft_game_players_min_order_by {draft_game_id?: (order_by | null),elo_snapshot?: (order_by | null),joined_at?: (order_by | null),lineup?: (order_by | null),pick_order?: (order_by | null),steam_id?: (order_by | null)} + + +/** response of any mutation on the table "draft_game_players" */ +export interface draft_game_players_mutation_responseGenqlSelection{ + /** number of rows affected by the mutation */ + affected_rows?: boolean | number + /** data from the rows affected by the mutation */ + returning?: draft_game_playersGenqlSelection + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** on_conflict condition type for table "draft_game_players" */ +export interface draft_game_players_on_conflict {constraint: draft_game_players_constraint,update_columns?: draft_game_players_update_column[],where?: (draft_game_players_bool_exp | null)} + + +/** Ordering options when selecting data from "draft_game_players". */ +export interface draft_game_players_order_by {draft_game?: (draft_games_order_by | null),draft_game_id?: (order_by | null),e_draft_game_player_status?: (e_draft_game_player_status_order_by | null),elo_snapshot?: (order_by | null),is_captain?: (order_by | null),joined_at?: (order_by | null),lineup?: (order_by | null),pick_order?: (order_by | null),player?: (players_order_by | null),status?: (order_by | null),steam_id?: (order_by | null)} + + +/** primary key columns input for table: draft_game_players */ +export interface draft_game_players_pk_columns_input {draft_game_id: Scalars['uuid'],steam_id: Scalars['bigint']} + + +/** input type for updating data in table "draft_game_players" */ +export interface draft_game_players_set_input {draft_game_id?: (Scalars['uuid'] | null),elo_snapshot?: (Scalars['Int'] | null),is_captain?: (Scalars['Boolean'] | null),joined_at?: (Scalars['timestamptz'] | null),lineup?: (Scalars['Int'] | null),pick_order?: (Scalars['Int'] | null),status?: (e_draft_game_player_status_enum | null),steam_id?: (Scalars['bigint'] | null)} + + +/** aggregate stddev on columns */ +export interface draft_game_players_stddev_fieldsGenqlSelection{ + elo_snapshot?: boolean | number + lineup?: boolean | number + pick_order?: boolean | number + steam_id?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** order by stddev() on columns of table "draft_game_players" */ +export interface draft_game_players_stddev_order_by {elo_snapshot?: (order_by | null),lineup?: (order_by | null),pick_order?: (order_by | null),steam_id?: (order_by | null)} + + +/** aggregate stddev_pop on columns */ +export interface draft_game_players_stddev_pop_fieldsGenqlSelection{ + elo_snapshot?: boolean | number + lineup?: boolean | number + pick_order?: boolean | number + steam_id?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** order by stddev_pop() on columns of table "draft_game_players" */ +export interface draft_game_players_stddev_pop_order_by {elo_snapshot?: (order_by | null),lineup?: (order_by | null),pick_order?: (order_by | null),steam_id?: (order_by | null)} + + +/** aggregate stddev_samp on columns */ +export interface draft_game_players_stddev_samp_fieldsGenqlSelection{ + elo_snapshot?: boolean | number + lineup?: boolean | number + pick_order?: boolean | number + steam_id?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** order by stddev_samp() on columns of table "draft_game_players" */ +export interface draft_game_players_stddev_samp_order_by {elo_snapshot?: (order_by | null),lineup?: (order_by | null),pick_order?: (order_by | null),steam_id?: (order_by | null)} + + +/** Streaming cursor of the table "draft_game_players" */ +export interface draft_game_players_stream_cursor_input { +/** Stream column input with initial value */ +initial_value: draft_game_players_stream_cursor_value_input, +/** cursor ordering */ +ordering?: (cursor_ordering | null)} + + +/** Initial value of the column from where the streaming should start */ +export interface draft_game_players_stream_cursor_value_input {draft_game_id?: (Scalars['uuid'] | null),elo_snapshot?: (Scalars['Int'] | null),is_captain?: (Scalars['Boolean'] | null),joined_at?: (Scalars['timestamptz'] | null),lineup?: (Scalars['Int'] | null),pick_order?: (Scalars['Int'] | null),status?: (e_draft_game_player_status_enum | null),steam_id?: (Scalars['bigint'] | null)} + + +/** aggregate sum on columns */ +export interface draft_game_players_sum_fieldsGenqlSelection{ + elo_snapshot?: boolean | number + lineup?: boolean | number + pick_order?: boolean | number + steam_id?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** order by sum() on columns of table "draft_game_players" */ +export interface draft_game_players_sum_order_by {elo_snapshot?: (order_by | null),lineup?: (order_by | null),pick_order?: (order_by | null),steam_id?: (order_by | null)} + +export interface draft_game_players_updates { +/** increments the numeric columns with given value of the filtered values */ +_inc?: (draft_game_players_inc_input | null), +/** sets the columns of the filtered rows to the given values */ +_set?: (draft_game_players_set_input | null), +/** filter the rows which have to be updated */ +where: draft_game_players_bool_exp} + + +/** aggregate var_pop on columns */ +export interface draft_game_players_var_pop_fieldsGenqlSelection{ + elo_snapshot?: boolean | number + lineup?: boolean | number + pick_order?: boolean | number + steam_id?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** order by var_pop() on columns of table "draft_game_players" */ +export interface draft_game_players_var_pop_order_by {elo_snapshot?: (order_by | null),lineup?: (order_by | null),pick_order?: (order_by | null),steam_id?: (order_by | null)} + + +/** aggregate var_samp on columns */ +export interface draft_game_players_var_samp_fieldsGenqlSelection{ + elo_snapshot?: boolean | number + lineup?: boolean | number + pick_order?: boolean | number + steam_id?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** order by var_samp() on columns of table "draft_game_players" */ +export interface draft_game_players_var_samp_order_by {elo_snapshot?: (order_by | null),lineup?: (order_by | null),pick_order?: (order_by | null),steam_id?: (order_by | null)} + + +/** aggregate variance on columns */ +export interface draft_game_players_variance_fieldsGenqlSelection{ + elo_snapshot?: boolean | number + lineup?: boolean | number + pick_order?: boolean | number + steam_id?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** order by variance() on columns of table "draft_game_players" */ +export interface draft_game_players_variance_order_by {elo_snapshot?: (order_by | null),lineup?: (order_by | null),pick_order?: (order_by | null),steam_id?: (order_by | null)} + + +/** columns and relationships of "draft_games" */ +export interface draft_gamesGenqlSelection{ + access?: boolean | number + capacity?: boolean | number + captain_selection?: boolean | number + created_at?: boolean | number + current_pick_lineup?: boolean | number + draft_order?: boolean | number + /** An object relationship */ + e_draft_game_captain_selection?: e_draft_game_captain_selectionGenqlSelection + /** An object relationship */ + e_draft_game_draft_order?: e_draft_game_draft_orderGenqlSelection + /** An object relationship */ + e_draft_game_mode?: e_draft_game_modeGenqlSelection + /** An object relationship */ + e_draft_game_status?: e_draft_game_statusGenqlSelection + /** An object relationship */ + e_lobby_access?: e_lobby_accessGenqlSelection + expires_at?: boolean | number + /** An object relationship */ + host?: playersGenqlSelection + host_steam_id?: boolean | number + id?: boolean | number + inner_squad?: boolean | number + invite_code?: boolean | number + /** An object relationship */ + map_pool?: map_poolsGenqlSelection + map_pool_id?: boolean | number + /** An object relationship */ + match?: matchesGenqlSelection + match_id?: boolean | number + match_options_id?: boolean | number + max_elo?: boolean | number + min_elo?: boolean | number + mode?: boolean | number + /** An object relationship */ + options?: match_optionsGenqlSelection + pick_deadline?: boolean | number + /** An array relationship */ + picks?: (draft_game_picksGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (draft_game_picks_select_column[] | null), + /** limit the number of rows returned */ + limit?: (Scalars['Int'] | null), + /** skip the first n rows. Use only with order_by */ + offset?: (Scalars['Int'] | null), + /** sort the rows by one or more columns */ + order_by?: (draft_game_picks_order_by[] | null), + /** filter the rows returned */ + where?: (draft_game_picks_bool_exp | null)} }) + /** An aggregate relationship */ + picks_aggregate?: (draft_game_picks_aggregateGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (draft_game_picks_select_column[] | null), + /** limit the number of rows returned */ + limit?: (Scalars['Int'] | null), + /** skip the first n rows. Use only with order_by */ + offset?: (Scalars['Int'] | null), + /** sort the rows by one or more columns */ + order_by?: (draft_game_picks_order_by[] | null), + /** filter the rows returned */ + where?: (draft_game_picks_bool_exp | null)} }) + /** An array relationship */ + players?: (draft_game_playersGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (draft_game_players_select_column[] | null), + /** limit the number of rows returned */ + limit?: (Scalars['Int'] | null), + /** skip the first n rows. Use only with order_by */ + offset?: (Scalars['Int'] | null), + /** sort the rows by one or more columns */ + order_by?: (draft_game_players_order_by[] | null), + /** filter the rows returned */ + where?: (draft_game_players_bool_exp | null)} }) + /** An aggregate relationship */ + players_aggregate?: (draft_game_players_aggregateGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (draft_game_players_select_column[] | null), + /** limit the number of rows returned */ + limit?: (Scalars['Int'] | null), + /** skip the first n rows. Use only with order_by */ + offset?: (Scalars['Int'] | null), + /** sort the rows by one or more columns */ + order_by?: (draft_game_players_order_by[] | null), + /** filter the rows returned */ + where?: (draft_game_players_bool_exp | null)} }) + regions?: boolean | number + require_approval?: boolean | number + status?: boolean | number + /** An object relationship */ + team_1?: teamsGenqlSelection + team_1_id?: boolean | number + /** An object relationship */ + team_2?: teamsGenqlSelection + team_2_id?: boolean | number + type?: boolean | number + updated_at?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** aggregated selection of "draft_games" */ +export interface draft_games_aggregateGenqlSelection{ + aggregate?: draft_games_aggregate_fieldsGenqlSelection + nodes?: draft_gamesGenqlSelection + __typename?: boolean | number + __scalar?: boolean | number +} + +export interface draft_games_aggregate_bool_exp {bool_and?: (draft_games_aggregate_bool_exp_bool_and | null),bool_or?: (draft_games_aggregate_bool_exp_bool_or | null),count?: (draft_games_aggregate_bool_exp_count | null)} + +export interface draft_games_aggregate_bool_exp_bool_and {arguments: draft_games_select_column_draft_games_aggregate_bool_exp_bool_and_arguments_columns,distinct?: (Scalars['Boolean'] | null),filter?: (draft_games_bool_exp | null),predicate: Boolean_comparison_exp} + +export interface draft_games_aggregate_bool_exp_bool_or {arguments: draft_games_select_column_draft_games_aggregate_bool_exp_bool_or_arguments_columns,distinct?: (Scalars['Boolean'] | null),filter?: (draft_games_bool_exp | null),predicate: Boolean_comparison_exp} + +export interface draft_games_aggregate_bool_exp_count {arguments?: (draft_games_select_column[] | null),distinct?: (Scalars['Boolean'] | null),filter?: (draft_games_bool_exp | null),predicate: Int_comparison_exp} + + +/** aggregate fields of "draft_games" */ +export interface draft_games_aggregate_fieldsGenqlSelection{ + avg?: draft_games_avg_fieldsGenqlSelection + count?: { __args: {columns?: (draft_games_select_column[] | null), distinct?: (Scalars['Boolean'] | null)} } | boolean | number + max?: draft_games_max_fieldsGenqlSelection + min?: draft_games_min_fieldsGenqlSelection + stddev?: draft_games_stddev_fieldsGenqlSelection + stddev_pop?: draft_games_stddev_pop_fieldsGenqlSelection + stddev_samp?: draft_games_stddev_samp_fieldsGenqlSelection + sum?: draft_games_sum_fieldsGenqlSelection + var_pop?: draft_games_var_pop_fieldsGenqlSelection + var_samp?: draft_games_var_samp_fieldsGenqlSelection + variance?: draft_games_variance_fieldsGenqlSelection + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** order by aggregate values of table "draft_games" */ +export interface draft_games_aggregate_order_by {avg?: (draft_games_avg_order_by | null),count?: (order_by | null),max?: (draft_games_max_order_by | null),min?: (draft_games_min_order_by | null),stddev?: (draft_games_stddev_order_by | null),stddev_pop?: (draft_games_stddev_pop_order_by | null),stddev_samp?: (draft_games_stddev_samp_order_by | null),sum?: (draft_games_sum_order_by | null),var_pop?: (draft_games_var_pop_order_by | null),var_samp?: (draft_games_var_samp_order_by | null),variance?: (draft_games_variance_order_by | null)} + + +/** input type for inserting array relation for remote table "draft_games" */ +export interface draft_games_arr_rel_insert_input {data: draft_games_insert_input[], +/** upsert condition */ +on_conflict?: (draft_games_on_conflict | null)} + + +/** aggregate avg on columns */ +export interface draft_games_avg_fieldsGenqlSelection{ + capacity?: boolean | number + current_pick_lineup?: boolean | number + host_steam_id?: boolean | number + max_elo?: boolean | number + min_elo?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** order by avg() on columns of table "draft_games" */ +export interface draft_games_avg_order_by {capacity?: (order_by | null),current_pick_lineup?: (order_by | null),host_steam_id?: (order_by | null),max_elo?: (order_by | null),min_elo?: (order_by | null)} + + +/** Boolean expression to filter rows from the table "draft_games". All fields are combined with a logical 'AND'. */ +export interface draft_games_bool_exp {_and?: (draft_games_bool_exp[] | null),_not?: (draft_games_bool_exp | null),_or?: (draft_games_bool_exp[] | null),access?: (e_lobby_access_enum_comparison_exp | null),capacity?: (Int_comparison_exp | null),captain_selection?: (e_draft_game_captain_selection_enum_comparison_exp | null),created_at?: (timestamptz_comparison_exp | null),current_pick_lineup?: (Int_comparison_exp | null),draft_order?: (e_draft_game_draft_order_enum_comparison_exp | null),e_draft_game_captain_selection?: (e_draft_game_captain_selection_bool_exp | null),e_draft_game_draft_order?: (e_draft_game_draft_order_bool_exp | null),e_draft_game_mode?: (e_draft_game_mode_bool_exp | null),e_draft_game_status?: (e_draft_game_status_bool_exp | null),e_lobby_access?: (e_lobby_access_bool_exp | null),expires_at?: (timestamptz_comparison_exp | null),host?: (players_bool_exp | null),host_steam_id?: (bigint_comparison_exp | null),id?: (uuid_comparison_exp | null),inner_squad?: (Boolean_comparison_exp | null),invite_code?: (uuid_comparison_exp | null),map_pool?: (map_pools_bool_exp | null),map_pool_id?: (uuid_comparison_exp | null),match?: (matches_bool_exp | null),match_id?: (uuid_comparison_exp | null),match_options_id?: (uuid_comparison_exp | null),max_elo?: (Int_comparison_exp | null),min_elo?: (Int_comparison_exp | null),mode?: (e_draft_game_mode_enum_comparison_exp | null),options?: (match_options_bool_exp | null),pick_deadline?: (timestamptz_comparison_exp | null),picks?: (draft_game_picks_bool_exp | null),picks_aggregate?: (draft_game_picks_aggregate_bool_exp | null),players?: (draft_game_players_bool_exp | null),players_aggregate?: (draft_game_players_aggregate_bool_exp | null),regions?: (String_array_comparison_exp | null),require_approval?: (Boolean_comparison_exp | null),status?: (e_draft_game_status_enum_comparison_exp | null),team_1?: (teams_bool_exp | null),team_1_id?: (uuid_comparison_exp | null),team_2?: (teams_bool_exp | null),team_2_id?: (uuid_comparison_exp | null),type?: (e_match_types_enum_comparison_exp | null),updated_at?: (timestamptz_comparison_exp | null)} + + +/** input type for incrementing numeric columns in table "draft_games" */ +export interface draft_games_inc_input {capacity?: (Scalars['Int'] | null),current_pick_lineup?: (Scalars['Int'] | null),host_steam_id?: (Scalars['bigint'] | null),max_elo?: (Scalars['Int'] | null),min_elo?: (Scalars['Int'] | null)} + + +/** input type for inserting data into table "draft_games" */ +export interface draft_games_insert_input {access?: (e_lobby_access_enum | null),capacity?: (Scalars['Int'] | null),captain_selection?: (e_draft_game_captain_selection_enum | null),created_at?: (Scalars['timestamptz'] | null),current_pick_lineup?: (Scalars['Int'] | null),draft_order?: (e_draft_game_draft_order_enum | null),e_draft_game_captain_selection?: (e_draft_game_captain_selection_obj_rel_insert_input | null),e_draft_game_draft_order?: (e_draft_game_draft_order_obj_rel_insert_input | null),e_draft_game_mode?: (e_draft_game_mode_obj_rel_insert_input | null),e_draft_game_status?: (e_draft_game_status_obj_rel_insert_input | null),e_lobby_access?: (e_lobby_access_obj_rel_insert_input | null),expires_at?: (Scalars['timestamptz'] | null),host?: (players_obj_rel_insert_input | null),host_steam_id?: (Scalars['bigint'] | null),id?: (Scalars['uuid'] | null),inner_squad?: (Scalars['Boolean'] | null),invite_code?: (Scalars['uuid'] | null),map_pool?: (map_pools_obj_rel_insert_input | null),map_pool_id?: (Scalars['uuid'] | null),match?: (matches_obj_rel_insert_input | null),match_id?: (Scalars['uuid'] | null),match_options_id?: (Scalars['uuid'] | null),max_elo?: (Scalars['Int'] | null),min_elo?: (Scalars['Int'] | null),mode?: (e_draft_game_mode_enum | null),options?: (match_options_obj_rel_insert_input | null),pick_deadline?: (Scalars['timestamptz'] | null),picks?: (draft_game_picks_arr_rel_insert_input | null),players?: (draft_game_players_arr_rel_insert_input | null),regions?: (Scalars['String'][] | null),require_approval?: (Scalars['Boolean'] | null),status?: (e_draft_game_status_enum | null),team_1?: (teams_obj_rel_insert_input | null),team_1_id?: (Scalars['uuid'] | null),team_2?: (teams_obj_rel_insert_input | null),team_2_id?: (Scalars['uuid'] | null),type?: (e_match_types_enum | null),updated_at?: (Scalars['timestamptz'] | null)} + + +/** aggregate max on columns */ +export interface draft_games_max_fieldsGenqlSelection{ + capacity?: boolean | number + created_at?: boolean | number + current_pick_lineup?: boolean | number + expires_at?: boolean | number + host_steam_id?: boolean | number + id?: boolean | number + invite_code?: boolean | number + map_pool_id?: boolean | number + match_id?: boolean | number + match_options_id?: boolean | number + max_elo?: boolean | number + min_elo?: boolean | number + pick_deadline?: boolean | number + regions?: boolean | number + team_1_id?: boolean | number + team_2_id?: boolean | number + updated_at?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** order by max() on columns of table "draft_games" */ +export interface draft_games_max_order_by {capacity?: (order_by | null),created_at?: (order_by | null),current_pick_lineup?: (order_by | null),expires_at?: (order_by | null),host_steam_id?: (order_by | null),id?: (order_by | null),invite_code?: (order_by | null),map_pool_id?: (order_by | null),match_id?: (order_by | null),match_options_id?: (order_by | null),max_elo?: (order_by | null),min_elo?: (order_by | null),pick_deadline?: (order_by | null),regions?: (order_by | null),team_1_id?: (order_by | null),team_2_id?: (order_by | null),updated_at?: (order_by | null)} + + +/** aggregate min on columns */ +export interface draft_games_min_fieldsGenqlSelection{ + capacity?: boolean | number + created_at?: boolean | number + current_pick_lineup?: boolean | number + expires_at?: boolean | number + host_steam_id?: boolean | number + id?: boolean | number + invite_code?: boolean | number + map_pool_id?: boolean | number + match_id?: boolean | number + match_options_id?: boolean | number + max_elo?: boolean | number + min_elo?: boolean | number + pick_deadline?: boolean | number + regions?: boolean | number + team_1_id?: boolean | number + team_2_id?: boolean | number + updated_at?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** order by min() on columns of table "draft_games" */ +export interface draft_games_min_order_by {capacity?: (order_by | null),created_at?: (order_by | null),current_pick_lineup?: (order_by | null),expires_at?: (order_by | null),host_steam_id?: (order_by | null),id?: (order_by | null),invite_code?: (order_by | null),map_pool_id?: (order_by | null),match_id?: (order_by | null),match_options_id?: (order_by | null),max_elo?: (order_by | null),min_elo?: (order_by | null),pick_deadline?: (order_by | null),regions?: (order_by | null),team_1_id?: (order_by | null),team_2_id?: (order_by | null),updated_at?: (order_by | null)} + + +/** response of any mutation on the table "draft_games" */ +export interface draft_games_mutation_responseGenqlSelection{ + /** number of rows affected by the mutation */ + affected_rows?: boolean | number + /** data from the rows affected by the mutation */ + returning?: draft_gamesGenqlSelection + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** input type for inserting object relation for remote table "draft_games" */ +export interface draft_games_obj_rel_insert_input {data: draft_games_insert_input, +/** upsert condition */ +on_conflict?: (draft_games_on_conflict | null)} + + +/** on_conflict condition type for table "draft_games" */ +export interface draft_games_on_conflict {constraint: draft_games_constraint,update_columns?: draft_games_update_column[],where?: (draft_games_bool_exp | null)} + + +/** Ordering options when selecting data from "draft_games". */ +export interface draft_games_order_by {access?: (order_by | null),capacity?: (order_by | null),captain_selection?: (order_by | null),created_at?: (order_by | null),current_pick_lineup?: (order_by | null),draft_order?: (order_by | null),e_draft_game_captain_selection?: (e_draft_game_captain_selection_order_by | null),e_draft_game_draft_order?: (e_draft_game_draft_order_order_by | null),e_draft_game_mode?: (e_draft_game_mode_order_by | null),e_draft_game_status?: (e_draft_game_status_order_by | null),e_lobby_access?: (e_lobby_access_order_by | null),expires_at?: (order_by | null),host?: (players_order_by | null),host_steam_id?: (order_by | null),id?: (order_by | null),inner_squad?: (order_by | null),invite_code?: (order_by | null),map_pool?: (map_pools_order_by | null),map_pool_id?: (order_by | null),match?: (matches_order_by | null),match_id?: (order_by | null),match_options_id?: (order_by | null),max_elo?: (order_by | null),min_elo?: (order_by | null),mode?: (order_by | null),options?: (match_options_order_by | null),pick_deadline?: (order_by | null),picks_aggregate?: (draft_game_picks_aggregate_order_by | null),players_aggregate?: (draft_game_players_aggregate_order_by | null),regions?: (order_by | null),require_approval?: (order_by | null),status?: (order_by | null),team_1?: (teams_order_by | null),team_1_id?: (order_by | null),team_2?: (teams_order_by | null),team_2_id?: (order_by | null),type?: (order_by | null),updated_at?: (order_by | null)} + + +/** primary key columns input for table: draft_games */ +export interface draft_games_pk_columns_input {id: Scalars['uuid']} + + +/** input type for updating data in table "draft_games" */ +export interface draft_games_set_input {access?: (e_lobby_access_enum | null),capacity?: (Scalars['Int'] | null),captain_selection?: (e_draft_game_captain_selection_enum | null),created_at?: (Scalars['timestamptz'] | null),current_pick_lineup?: (Scalars['Int'] | null),draft_order?: (e_draft_game_draft_order_enum | null),expires_at?: (Scalars['timestamptz'] | null),host_steam_id?: (Scalars['bigint'] | null),id?: (Scalars['uuid'] | null),inner_squad?: (Scalars['Boolean'] | null),invite_code?: (Scalars['uuid'] | null),map_pool_id?: (Scalars['uuid'] | null),match_id?: (Scalars['uuid'] | null),match_options_id?: (Scalars['uuid'] | null),max_elo?: (Scalars['Int'] | null),min_elo?: (Scalars['Int'] | null),mode?: (e_draft_game_mode_enum | null),pick_deadline?: (Scalars['timestamptz'] | null),regions?: (Scalars['String'][] | null),require_approval?: (Scalars['Boolean'] | null),status?: (e_draft_game_status_enum | null),team_1_id?: (Scalars['uuid'] | null),team_2_id?: (Scalars['uuid'] | null),type?: (e_match_types_enum | null),updated_at?: (Scalars['timestamptz'] | null)} + + +/** aggregate stddev on columns */ +export interface draft_games_stddev_fieldsGenqlSelection{ + capacity?: boolean | number + current_pick_lineup?: boolean | number + host_steam_id?: boolean | number + max_elo?: boolean | number + min_elo?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** order by stddev() on columns of table "draft_games" */ +export interface draft_games_stddev_order_by {capacity?: (order_by | null),current_pick_lineup?: (order_by | null),host_steam_id?: (order_by | null),max_elo?: (order_by | null),min_elo?: (order_by | null)} + + +/** aggregate stddev_pop on columns */ +export interface draft_games_stddev_pop_fieldsGenqlSelection{ + capacity?: boolean | number + current_pick_lineup?: boolean | number + host_steam_id?: boolean | number + max_elo?: boolean | number + min_elo?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** order by stddev_pop() on columns of table "draft_games" */ +export interface draft_games_stddev_pop_order_by {capacity?: (order_by | null),current_pick_lineup?: (order_by | null),host_steam_id?: (order_by | null),max_elo?: (order_by | null),min_elo?: (order_by | null)} + + +/** aggregate stddev_samp on columns */ +export interface draft_games_stddev_samp_fieldsGenqlSelection{ + capacity?: boolean | number + current_pick_lineup?: boolean | number + host_steam_id?: boolean | number + max_elo?: boolean | number + min_elo?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** order by stddev_samp() on columns of table "draft_games" */ +export interface draft_games_stddev_samp_order_by {capacity?: (order_by | null),current_pick_lineup?: (order_by | null),host_steam_id?: (order_by | null),max_elo?: (order_by | null),min_elo?: (order_by | null)} + + +/** Streaming cursor of the table "draft_games" */ +export interface draft_games_stream_cursor_input { +/** Stream column input with initial value */ +initial_value: draft_games_stream_cursor_value_input, +/** cursor ordering */ +ordering?: (cursor_ordering | null)} + + +/** Initial value of the column from where the streaming should start */ +export interface draft_games_stream_cursor_value_input {access?: (e_lobby_access_enum | null),capacity?: (Scalars['Int'] | null),captain_selection?: (e_draft_game_captain_selection_enum | null),created_at?: (Scalars['timestamptz'] | null),current_pick_lineup?: (Scalars['Int'] | null),draft_order?: (e_draft_game_draft_order_enum | null),expires_at?: (Scalars['timestamptz'] | null),host_steam_id?: (Scalars['bigint'] | null),id?: (Scalars['uuid'] | null),inner_squad?: (Scalars['Boolean'] | null),invite_code?: (Scalars['uuid'] | null),map_pool_id?: (Scalars['uuid'] | null),match_id?: (Scalars['uuid'] | null),match_options_id?: (Scalars['uuid'] | null),max_elo?: (Scalars['Int'] | null),min_elo?: (Scalars['Int'] | null),mode?: (e_draft_game_mode_enum | null),pick_deadline?: (Scalars['timestamptz'] | null),regions?: (Scalars['String'][] | null),require_approval?: (Scalars['Boolean'] | null),status?: (e_draft_game_status_enum | null),team_1_id?: (Scalars['uuid'] | null),team_2_id?: (Scalars['uuid'] | null),type?: (e_match_types_enum | null),updated_at?: (Scalars['timestamptz'] | null)} + + +/** aggregate sum on columns */ +export interface draft_games_sum_fieldsGenqlSelection{ + capacity?: boolean | number + current_pick_lineup?: boolean | number + host_steam_id?: boolean | number + max_elo?: boolean | number + min_elo?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** order by sum() on columns of table "draft_games" */ +export interface draft_games_sum_order_by {capacity?: (order_by | null),current_pick_lineup?: (order_by | null),host_steam_id?: (order_by | null),max_elo?: (order_by | null),min_elo?: (order_by | null)} + +export interface draft_games_updates { +/** increments the numeric columns with given value of the filtered values */ +_inc?: (draft_games_inc_input | null), +/** sets the columns of the filtered rows to the given values */ +_set?: (draft_games_set_input | null), +/** filter the rows which have to be updated */ +where: draft_games_bool_exp} + + +/** aggregate var_pop on columns */ +export interface draft_games_var_pop_fieldsGenqlSelection{ + capacity?: boolean | number + current_pick_lineup?: boolean | number + host_steam_id?: boolean | number + max_elo?: boolean | number + min_elo?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** order by var_pop() on columns of table "draft_games" */ +export interface draft_games_var_pop_order_by {capacity?: (order_by | null),current_pick_lineup?: (order_by | null),host_steam_id?: (order_by | null),max_elo?: (order_by | null),min_elo?: (order_by | null)} + + +/** aggregate var_samp on columns */ +export interface draft_games_var_samp_fieldsGenqlSelection{ + capacity?: boolean | number + current_pick_lineup?: boolean | number + host_steam_id?: boolean | number + max_elo?: boolean | number + min_elo?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** order by var_samp() on columns of table "draft_games" */ +export interface draft_games_var_samp_order_by {capacity?: (order_by | null),current_pick_lineup?: (order_by | null),host_steam_id?: (order_by | null),max_elo?: (order_by | null),min_elo?: (order_by | null)} + + +/** aggregate variance on columns */ +export interface draft_games_variance_fieldsGenqlSelection{ + capacity?: boolean | number + current_pick_lineup?: boolean | number + host_steam_id?: boolean | number + max_elo?: boolean | number + min_elo?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** order by variance() on columns of table "draft_games" */ +export interface draft_games_variance_order_by {capacity?: (order_by | null),current_pick_lineup?: (order_by | null),host_steam_id?: (order_by | null),max_elo?: (order_by | null),min_elo?: (order_by | null)} + + /** columns and relationships of "e_check_in_settings" */ export interface e_check_in_settingsGenqlSelection{ description?: boolean | number @@ -27365,6 +29658,551 @@ _set?: (e_check_in_settings_set_input | null), where: e_check_in_settings_bool_exp} +/** columns and relationships of "e_draft_game_captain_selection" */ +export interface e_draft_game_captain_selectionGenqlSelection{ + description?: boolean | number + value?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** aggregated selection of "e_draft_game_captain_selection" */ +export interface e_draft_game_captain_selection_aggregateGenqlSelection{ + aggregate?: e_draft_game_captain_selection_aggregate_fieldsGenqlSelection + nodes?: e_draft_game_captain_selectionGenqlSelection + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** aggregate fields of "e_draft_game_captain_selection" */ +export interface e_draft_game_captain_selection_aggregate_fieldsGenqlSelection{ + count?: { __args: {columns?: (e_draft_game_captain_selection_select_column[] | null), distinct?: (Scalars['Boolean'] | null)} } | boolean | number + max?: e_draft_game_captain_selection_max_fieldsGenqlSelection + min?: e_draft_game_captain_selection_min_fieldsGenqlSelection + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** Boolean expression to filter rows from the table "e_draft_game_captain_selection". All fields are combined with a logical 'AND'. */ +export interface e_draft_game_captain_selection_bool_exp {_and?: (e_draft_game_captain_selection_bool_exp[] | null),_not?: (e_draft_game_captain_selection_bool_exp | null),_or?: (e_draft_game_captain_selection_bool_exp[] | null),description?: (String_comparison_exp | null),value?: (String_comparison_exp | null)} + + +/** Boolean expression to compare columns of type "e_draft_game_captain_selection_enum". All fields are combined with logical 'AND'. */ +export interface e_draft_game_captain_selection_enum_comparison_exp {_eq?: (e_draft_game_captain_selection_enum | null),_in?: (e_draft_game_captain_selection_enum[] | null),_is_null?: (Scalars['Boolean'] | null),_neq?: (e_draft_game_captain_selection_enum | null),_nin?: (e_draft_game_captain_selection_enum[] | null)} + + +/** input type for inserting data into table "e_draft_game_captain_selection" */ +export interface e_draft_game_captain_selection_insert_input {description?: (Scalars['String'] | null),value?: (Scalars['String'] | null)} + + +/** aggregate max on columns */ +export interface e_draft_game_captain_selection_max_fieldsGenqlSelection{ + description?: boolean | number + value?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** aggregate min on columns */ +export interface e_draft_game_captain_selection_min_fieldsGenqlSelection{ + description?: boolean | number + value?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** response of any mutation on the table "e_draft_game_captain_selection" */ +export interface e_draft_game_captain_selection_mutation_responseGenqlSelection{ + /** number of rows affected by the mutation */ + affected_rows?: boolean | number + /** data from the rows affected by the mutation */ + returning?: e_draft_game_captain_selectionGenqlSelection + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** input type for inserting object relation for remote table "e_draft_game_captain_selection" */ +export interface e_draft_game_captain_selection_obj_rel_insert_input {data: e_draft_game_captain_selection_insert_input, +/** upsert condition */ +on_conflict?: (e_draft_game_captain_selection_on_conflict | null)} + + +/** on_conflict condition type for table "e_draft_game_captain_selection" */ +export interface e_draft_game_captain_selection_on_conflict {constraint: e_draft_game_captain_selection_constraint,update_columns?: e_draft_game_captain_selection_update_column[],where?: (e_draft_game_captain_selection_bool_exp | null)} + + +/** Ordering options when selecting data from "e_draft_game_captain_selection". */ +export interface e_draft_game_captain_selection_order_by {description?: (order_by | null),value?: (order_by | null)} + + +/** primary key columns input for table: e_draft_game_captain_selection */ +export interface e_draft_game_captain_selection_pk_columns_input {value: Scalars['String']} + + +/** input type for updating data in table "e_draft_game_captain_selection" */ +export interface e_draft_game_captain_selection_set_input {description?: (Scalars['String'] | null),value?: (Scalars['String'] | null)} + + +/** Streaming cursor of the table "e_draft_game_captain_selection" */ +export interface e_draft_game_captain_selection_stream_cursor_input { +/** Stream column input with initial value */ +initial_value: e_draft_game_captain_selection_stream_cursor_value_input, +/** cursor ordering */ +ordering?: (cursor_ordering | null)} + + +/** Initial value of the column from where the streaming should start */ +export interface e_draft_game_captain_selection_stream_cursor_value_input {description?: (Scalars['String'] | null),value?: (Scalars['String'] | null)} + +export interface e_draft_game_captain_selection_updates { +/** sets the columns of the filtered rows to the given values */ +_set?: (e_draft_game_captain_selection_set_input | null), +/** filter the rows which have to be updated */ +where: e_draft_game_captain_selection_bool_exp} + + +/** columns and relationships of "e_draft_game_draft_order" */ +export interface e_draft_game_draft_orderGenqlSelection{ + description?: boolean | number + value?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** aggregated selection of "e_draft_game_draft_order" */ +export interface e_draft_game_draft_order_aggregateGenqlSelection{ + aggregate?: e_draft_game_draft_order_aggregate_fieldsGenqlSelection + nodes?: e_draft_game_draft_orderGenqlSelection + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** aggregate fields of "e_draft_game_draft_order" */ +export interface e_draft_game_draft_order_aggregate_fieldsGenqlSelection{ + count?: { __args: {columns?: (e_draft_game_draft_order_select_column[] | null), distinct?: (Scalars['Boolean'] | null)} } | boolean | number + max?: e_draft_game_draft_order_max_fieldsGenqlSelection + min?: e_draft_game_draft_order_min_fieldsGenqlSelection + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** Boolean expression to filter rows from the table "e_draft_game_draft_order". All fields are combined with a logical 'AND'. */ +export interface e_draft_game_draft_order_bool_exp {_and?: (e_draft_game_draft_order_bool_exp[] | null),_not?: (e_draft_game_draft_order_bool_exp | null),_or?: (e_draft_game_draft_order_bool_exp[] | null),description?: (String_comparison_exp | null),value?: (String_comparison_exp | null)} + + +/** Boolean expression to compare columns of type "e_draft_game_draft_order_enum". All fields are combined with logical 'AND'. */ +export interface e_draft_game_draft_order_enum_comparison_exp {_eq?: (e_draft_game_draft_order_enum | null),_in?: (e_draft_game_draft_order_enum[] | null),_is_null?: (Scalars['Boolean'] | null),_neq?: (e_draft_game_draft_order_enum | null),_nin?: (e_draft_game_draft_order_enum[] | null)} + + +/** input type for inserting data into table "e_draft_game_draft_order" */ +export interface e_draft_game_draft_order_insert_input {description?: (Scalars['String'] | null),value?: (Scalars['String'] | null)} + + +/** aggregate max on columns */ +export interface e_draft_game_draft_order_max_fieldsGenqlSelection{ + description?: boolean | number + value?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** aggregate min on columns */ +export interface e_draft_game_draft_order_min_fieldsGenqlSelection{ + description?: boolean | number + value?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** response of any mutation on the table "e_draft_game_draft_order" */ +export interface e_draft_game_draft_order_mutation_responseGenqlSelection{ + /** number of rows affected by the mutation */ + affected_rows?: boolean | number + /** data from the rows affected by the mutation */ + returning?: e_draft_game_draft_orderGenqlSelection + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** input type for inserting object relation for remote table "e_draft_game_draft_order" */ +export interface e_draft_game_draft_order_obj_rel_insert_input {data: e_draft_game_draft_order_insert_input, +/** upsert condition */ +on_conflict?: (e_draft_game_draft_order_on_conflict | null)} + + +/** on_conflict condition type for table "e_draft_game_draft_order" */ +export interface e_draft_game_draft_order_on_conflict {constraint: e_draft_game_draft_order_constraint,update_columns?: e_draft_game_draft_order_update_column[],where?: (e_draft_game_draft_order_bool_exp | null)} + + +/** Ordering options when selecting data from "e_draft_game_draft_order". */ +export interface e_draft_game_draft_order_order_by {description?: (order_by | null),value?: (order_by | null)} + + +/** primary key columns input for table: e_draft_game_draft_order */ +export interface e_draft_game_draft_order_pk_columns_input {value: Scalars['String']} + + +/** input type for updating data in table "e_draft_game_draft_order" */ +export interface e_draft_game_draft_order_set_input {description?: (Scalars['String'] | null),value?: (Scalars['String'] | null)} + + +/** Streaming cursor of the table "e_draft_game_draft_order" */ +export interface e_draft_game_draft_order_stream_cursor_input { +/** Stream column input with initial value */ +initial_value: e_draft_game_draft_order_stream_cursor_value_input, +/** cursor ordering */ +ordering?: (cursor_ordering | null)} + + +/** Initial value of the column from where the streaming should start */ +export interface e_draft_game_draft_order_stream_cursor_value_input {description?: (Scalars['String'] | null),value?: (Scalars['String'] | null)} + +export interface e_draft_game_draft_order_updates { +/** sets the columns of the filtered rows to the given values */ +_set?: (e_draft_game_draft_order_set_input | null), +/** filter the rows which have to be updated */ +where: e_draft_game_draft_order_bool_exp} + + +/** columns and relationships of "e_draft_game_mode" */ +export interface e_draft_game_modeGenqlSelection{ + description?: boolean | number + value?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** aggregated selection of "e_draft_game_mode" */ +export interface e_draft_game_mode_aggregateGenqlSelection{ + aggregate?: e_draft_game_mode_aggregate_fieldsGenqlSelection + nodes?: e_draft_game_modeGenqlSelection + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** aggregate fields of "e_draft_game_mode" */ +export interface e_draft_game_mode_aggregate_fieldsGenqlSelection{ + count?: { __args: {columns?: (e_draft_game_mode_select_column[] | null), distinct?: (Scalars['Boolean'] | null)} } | boolean | number + max?: e_draft_game_mode_max_fieldsGenqlSelection + min?: e_draft_game_mode_min_fieldsGenqlSelection + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** Boolean expression to filter rows from the table "e_draft_game_mode". All fields are combined with a logical 'AND'. */ +export interface e_draft_game_mode_bool_exp {_and?: (e_draft_game_mode_bool_exp[] | null),_not?: (e_draft_game_mode_bool_exp | null),_or?: (e_draft_game_mode_bool_exp[] | null),description?: (String_comparison_exp | null),value?: (String_comparison_exp | null)} + + +/** Boolean expression to compare columns of type "e_draft_game_mode_enum". All fields are combined with logical 'AND'. */ +export interface e_draft_game_mode_enum_comparison_exp {_eq?: (e_draft_game_mode_enum | null),_in?: (e_draft_game_mode_enum[] | null),_is_null?: (Scalars['Boolean'] | null),_neq?: (e_draft_game_mode_enum | null),_nin?: (e_draft_game_mode_enum[] | null)} + + +/** input type for inserting data into table "e_draft_game_mode" */ +export interface e_draft_game_mode_insert_input {description?: (Scalars['String'] | null),value?: (Scalars['String'] | null)} + + +/** aggregate max on columns */ +export interface e_draft_game_mode_max_fieldsGenqlSelection{ + description?: boolean | number + value?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** aggregate min on columns */ +export interface e_draft_game_mode_min_fieldsGenqlSelection{ + description?: boolean | number + value?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** response of any mutation on the table "e_draft_game_mode" */ +export interface e_draft_game_mode_mutation_responseGenqlSelection{ + /** number of rows affected by the mutation */ + affected_rows?: boolean | number + /** data from the rows affected by the mutation */ + returning?: e_draft_game_modeGenqlSelection + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** input type for inserting object relation for remote table "e_draft_game_mode" */ +export interface e_draft_game_mode_obj_rel_insert_input {data: e_draft_game_mode_insert_input, +/** upsert condition */ +on_conflict?: (e_draft_game_mode_on_conflict | null)} + + +/** on_conflict condition type for table "e_draft_game_mode" */ +export interface e_draft_game_mode_on_conflict {constraint: e_draft_game_mode_constraint,update_columns?: e_draft_game_mode_update_column[],where?: (e_draft_game_mode_bool_exp | null)} + + +/** Ordering options when selecting data from "e_draft_game_mode". */ +export interface e_draft_game_mode_order_by {description?: (order_by | null),value?: (order_by | null)} + + +/** primary key columns input for table: e_draft_game_mode */ +export interface e_draft_game_mode_pk_columns_input {value: Scalars['String']} + + +/** input type for updating data in table "e_draft_game_mode" */ +export interface e_draft_game_mode_set_input {description?: (Scalars['String'] | null),value?: (Scalars['String'] | null)} + + +/** Streaming cursor of the table "e_draft_game_mode" */ +export interface e_draft_game_mode_stream_cursor_input { +/** Stream column input with initial value */ +initial_value: e_draft_game_mode_stream_cursor_value_input, +/** cursor ordering */ +ordering?: (cursor_ordering | null)} + + +/** Initial value of the column from where the streaming should start */ +export interface e_draft_game_mode_stream_cursor_value_input {description?: (Scalars['String'] | null),value?: (Scalars['String'] | null)} + +export interface e_draft_game_mode_updates { +/** sets the columns of the filtered rows to the given values */ +_set?: (e_draft_game_mode_set_input | null), +/** filter the rows which have to be updated */ +where: e_draft_game_mode_bool_exp} + + +/** columns and relationships of "e_draft_game_player_status" */ +export interface e_draft_game_player_statusGenqlSelection{ + description?: boolean | number + value?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** aggregated selection of "e_draft_game_player_status" */ +export interface e_draft_game_player_status_aggregateGenqlSelection{ + aggregate?: e_draft_game_player_status_aggregate_fieldsGenqlSelection + nodes?: e_draft_game_player_statusGenqlSelection + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** aggregate fields of "e_draft_game_player_status" */ +export interface e_draft_game_player_status_aggregate_fieldsGenqlSelection{ + count?: { __args: {columns?: (e_draft_game_player_status_select_column[] | null), distinct?: (Scalars['Boolean'] | null)} } | boolean | number + max?: e_draft_game_player_status_max_fieldsGenqlSelection + min?: e_draft_game_player_status_min_fieldsGenqlSelection + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** Boolean expression to filter rows from the table "e_draft_game_player_status". All fields are combined with a logical 'AND'. */ +export interface e_draft_game_player_status_bool_exp {_and?: (e_draft_game_player_status_bool_exp[] | null),_not?: (e_draft_game_player_status_bool_exp | null),_or?: (e_draft_game_player_status_bool_exp[] | null),description?: (String_comparison_exp | null),value?: (String_comparison_exp | null)} + + +/** Boolean expression to compare columns of type "e_draft_game_player_status_enum". All fields are combined with logical 'AND'. */ +export interface e_draft_game_player_status_enum_comparison_exp {_eq?: (e_draft_game_player_status_enum | null),_in?: (e_draft_game_player_status_enum[] | null),_is_null?: (Scalars['Boolean'] | null),_neq?: (e_draft_game_player_status_enum | null),_nin?: (e_draft_game_player_status_enum[] | null)} + + +/** input type for inserting data into table "e_draft_game_player_status" */ +export interface e_draft_game_player_status_insert_input {description?: (Scalars['String'] | null),value?: (Scalars['String'] | null)} + + +/** aggregate max on columns */ +export interface e_draft_game_player_status_max_fieldsGenqlSelection{ + description?: boolean | number + value?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** aggregate min on columns */ +export interface e_draft_game_player_status_min_fieldsGenqlSelection{ + description?: boolean | number + value?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** response of any mutation on the table "e_draft_game_player_status" */ +export interface e_draft_game_player_status_mutation_responseGenqlSelection{ + /** number of rows affected by the mutation */ + affected_rows?: boolean | number + /** data from the rows affected by the mutation */ + returning?: e_draft_game_player_statusGenqlSelection + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** input type for inserting object relation for remote table "e_draft_game_player_status" */ +export interface e_draft_game_player_status_obj_rel_insert_input {data: e_draft_game_player_status_insert_input, +/** upsert condition */ +on_conflict?: (e_draft_game_player_status_on_conflict | null)} + + +/** on_conflict condition type for table "e_draft_game_player_status" */ +export interface e_draft_game_player_status_on_conflict {constraint: e_draft_game_player_status_constraint,update_columns?: e_draft_game_player_status_update_column[],where?: (e_draft_game_player_status_bool_exp | null)} + + +/** Ordering options when selecting data from "e_draft_game_player_status". */ +export interface e_draft_game_player_status_order_by {description?: (order_by | null),value?: (order_by | null)} + + +/** primary key columns input for table: e_draft_game_player_status */ +export interface e_draft_game_player_status_pk_columns_input {value: Scalars['String']} + + +/** input type for updating data in table "e_draft_game_player_status" */ +export interface e_draft_game_player_status_set_input {description?: (Scalars['String'] | null),value?: (Scalars['String'] | null)} + + +/** Streaming cursor of the table "e_draft_game_player_status" */ +export interface e_draft_game_player_status_stream_cursor_input { +/** Stream column input with initial value */ +initial_value: e_draft_game_player_status_stream_cursor_value_input, +/** cursor ordering */ +ordering?: (cursor_ordering | null)} + + +/** Initial value of the column from where the streaming should start */ +export interface e_draft_game_player_status_stream_cursor_value_input {description?: (Scalars['String'] | null),value?: (Scalars['String'] | null)} + +export interface e_draft_game_player_status_updates { +/** sets the columns of the filtered rows to the given values */ +_set?: (e_draft_game_player_status_set_input | null), +/** filter the rows which have to be updated */ +where: e_draft_game_player_status_bool_exp} + + +/** columns and relationships of "e_draft_game_status" */ +export interface e_draft_game_statusGenqlSelection{ + description?: boolean | number + value?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** aggregated selection of "e_draft_game_status" */ +export interface e_draft_game_status_aggregateGenqlSelection{ + aggregate?: e_draft_game_status_aggregate_fieldsGenqlSelection + nodes?: e_draft_game_statusGenqlSelection + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** aggregate fields of "e_draft_game_status" */ +export interface e_draft_game_status_aggregate_fieldsGenqlSelection{ + count?: { __args: {columns?: (e_draft_game_status_select_column[] | null), distinct?: (Scalars['Boolean'] | null)} } | boolean | number + max?: e_draft_game_status_max_fieldsGenqlSelection + min?: e_draft_game_status_min_fieldsGenqlSelection + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** Boolean expression to filter rows from the table "e_draft_game_status". All fields are combined with a logical 'AND'. */ +export interface e_draft_game_status_bool_exp {_and?: (e_draft_game_status_bool_exp[] | null),_not?: (e_draft_game_status_bool_exp | null),_or?: (e_draft_game_status_bool_exp[] | null),description?: (String_comparison_exp | null),value?: (String_comparison_exp | null)} + + +/** Boolean expression to compare columns of type "e_draft_game_status_enum". All fields are combined with logical 'AND'. */ +export interface e_draft_game_status_enum_comparison_exp {_eq?: (e_draft_game_status_enum | null),_in?: (e_draft_game_status_enum[] | null),_is_null?: (Scalars['Boolean'] | null),_neq?: (e_draft_game_status_enum | null),_nin?: (e_draft_game_status_enum[] | null)} + + +/** input type for inserting data into table "e_draft_game_status" */ +export interface e_draft_game_status_insert_input {description?: (Scalars['String'] | null),value?: (Scalars['String'] | null)} + + +/** aggregate max on columns */ +export interface e_draft_game_status_max_fieldsGenqlSelection{ + description?: boolean | number + value?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** aggregate min on columns */ +export interface e_draft_game_status_min_fieldsGenqlSelection{ + description?: boolean | number + value?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** response of any mutation on the table "e_draft_game_status" */ +export interface e_draft_game_status_mutation_responseGenqlSelection{ + /** number of rows affected by the mutation */ + affected_rows?: boolean | number + /** data from the rows affected by the mutation */ + returning?: e_draft_game_statusGenqlSelection + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** input type for inserting object relation for remote table "e_draft_game_status" */ +export interface e_draft_game_status_obj_rel_insert_input {data: e_draft_game_status_insert_input, +/** upsert condition */ +on_conflict?: (e_draft_game_status_on_conflict | null)} + + +/** on_conflict condition type for table "e_draft_game_status" */ +export interface e_draft_game_status_on_conflict {constraint: e_draft_game_status_constraint,update_columns?: e_draft_game_status_update_column[],where?: (e_draft_game_status_bool_exp | null)} + + +/** Ordering options when selecting data from "e_draft_game_status". */ +export interface e_draft_game_status_order_by {description?: (order_by | null),value?: (order_by | null)} + + +/** primary key columns input for table: e_draft_game_status */ +export interface e_draft_game_status_pk_columns_input {value: Scalars['String']} + + +/** input type for updating data in table "e_draft_game_status" */ +export interface e_draft_game_status_set_input {description?: (Scalars['String'] | null),value?: (Scalars['String'] | null)} + + +/** Streaming cursor of the table "e_draft_game_status" */ +export interface e_draft_game_status_stream_cursor_input { +/** Stream column input with initial value */ +initial_value: e_draft_game_status_stream_cursor_value_input, +/** cursor ordering */ +ordering?: (cursor_ordering | null)} + + +/** Initial value of the column from where the streaming should start */ +export interface e_draft_game_status_stream_cursor_value_input {description?: (Scalars['String'] | null),value?: (Scalars['String'] | null)} + +export interface e_draft_game_status_updates { +/** sets the columns of the filtered rows to the given values */ +_set?: (e_draft_game_status_set_input | null), +/** filter the rows which have to be updated */ +where: e_draft_game_status_bool_exp} + + /** columns and relationships of "e_friend_status" */ export interface e_friend_statusGenqlSelection{ description?: boolean | number @@ -36564,6 +39402,30 @@ export interface matchesGenqlSelection{ order_by?: (match_map_demos_order_by[] | null), /** filter the rows returned */ where?: (match_map_demos_bool_exp | null)} }) + /** An array relationship */ + draft_games?: (draft_gamesGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (draft_games_select_column[] | null), + /** limit the number of rows returned */ + limit?: (Scalars['Int'] | null), + /** skip the first n rows. Use only with order_by */ + offset?: (Scalars['Int'] | null), + /** sort the rows by one or more columns */ + order_by?: (draft_games_order_by[] | null), + /** filter the rows returned */ + where?: (draft_games_bool_exp | null)} }) + /** An aggregate relationship */ + draft_games_aggregate?: (draft_games_aggregateGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (draft_games_select_column[] | null), + /** limit the number of rows returned */ + limit?: (Scalars['Int'] | null), + /** skip the first n rows. Use only with order_by */ + offset?: (Scalars['Int'] | null), + /** sort the rows by one or more columns */ + order_by?: (draft_games_order_by[] | null), + /** filter the rows returned */ + where?: (draft_games_bool_exp | null)} }) /** An object relationship */ e_match_status?: e_match_statusGenqlSelection /** An object relationship */ @@ -37073,7 +39935,7 @@ export interface matches_avg_order_by {organizer_steam_id?: (order_by | null)} /** Boolean expression to filter rows from the table "matches". All fields are combined with a logical 'AND'. */ -export interface matches_bool_exp {_and?: (matches_bool_exp[] | null),_not?: (matches_bool_exp | null),_or?: (matches_bool_exp[] | null),can_assign_server?: (Boolean_comparison_exp | null),can_cancel?: (Boolean_comparison_exp | null),can_check_in?: (Boolean_comparison_exp | null),can_reassign_winner?: (Boolean_comparison_exp | null),can_schedule?: (Boolean_comparison_exp | null),can_start?: (Boolean_comparison_exp | null),can_stream_live?: (Boolean_comparison_exp | null),can_stream_tv?: (Boolean_comparison_exp | null),cancels_at?: (timestamptz_comparison_exp | null),clutches?: (v_match_clutches_bool_exp | null),clutches_aggregate?: (v_match_clutches_aggregate_bool_exp | null),connection_link?: (String_comparison_exp | null),connection_string?: (String_comparison_exp | null),created_at?: (timestamptz_comparison_exp | null),current_match_map_id?: (uuid_comparison_exp | null),demos?: (match_map_demos_bool_exp | null),demos_aggregate?: (match_map_demos_aggregate_bool_exp | null),e_match_status?: (e_match_status_bool_exp | null),e_region?: (server_regions_bool_exp | null),effective_at?: (timestamptz_comparison_exp | null),elo_changes?: (v_player_elo_bool_exp | null),elo_changes_aggregate?: (v_player_elo_aggregate_bool_exp | null),ended_at?: (timestamptz_comparison_exp | null),external_id?: (String_comparison_exp | null),id?: (uuid_comparison_exp | null),invite_code?: (String_comparison_exp | null),invites?: (match_invites_bool_exp | null),invites_aggregate?: (match_invites_aggregate_bool_exp | null),is_captain?: (Boolean_comparison_exp | null),is_coach?: (Boolean_comparison_exp | null),is_friend_in_match_lineup?: (Boolean_comparison_exp | null),is_in_lineup?: (Boolean_comparison_exp | null),is_match_server_available?: (Boolean_comparison_exp | null),is_organizer?: (Boolean_comparison_exp | null),is_server_online?: (Boolean_comparison_exp | null),is_tournament_match?: (Boolean_comparison_exp | null),label?: (String_comparison_exp | null),lineup_1?: (match_lineups_bool_exp | null),lineup_1_id?: (uuid_comparison_exp | null),lineup_2?: (match_lineups_bool_exp | null),lineup_2_id?: (uuid_comparison_exp | null),lineup_counts?: (json_comparison_exp | null),map_veto_picking_lineup_id?: (uuid_comparison_exp | null),map_veto_picks?: (match_map_veto_picks_bool_exp | null),map_veto_picks_aggregate?: (match_map_veto_picks_aggregate_bool_exp | null),map_veto_type?: (String_comparison_exp | null),match_maps?: (match_maps_bool_exp | null),match_maps_aggregate?: (match_maps_aggregate_bool_exp | null),match_options_id?: (uuid_comparison_exp | null),max_players_per_lineup?: (Int_comparison_exp | null),min_players_per_lineup?: (Int_comparison_exp | null),opening_duels?: (v_match_player_opening_duels_bool_exp | null),opening_duels_aggregate?: (v_match_player_opening_duels_aggregate_bool_exp | null),options?: (match_options_bool_exp | null),organizer?: (players_bool_exp | null),organizer_steam_id?: (bigint_comparison_exp | null),password?: (String_comparison_exp | null),player_assists?: (player_assists_bool_exp | null),player_assists_aggregate?: (player_assists_aggregate_bool_exp | null),player_damages?: (player_damages_bool_exp | null),player_damages_aggregate?: (player_damages_aggregate_bool_exp | null),player_flashes?: (player_flashes_bool_exp | null),player_flashes_aggregate?: (player_flashes_aggregate_bool_exp | null),player_kills?: (player_kills_bool_exp | null),player_kills_aggregate?: (player_kills_aggregate_bool_exp | null),player_objectives?: (player_objectives_bool_exp | null),player_objectives_aggregate?: (player_objectives_aggregate_bool_exp | null),player_unused_utilities?: (player_unused_utility_bool_exp | null),player_unused_utilities_aggregate?: (player_unused_utility_aggregate_bool_exp | null),player_utility?: (player_utility_bool_exp | null),player_utility_aggregate?: (player_utility_aggregate_bool_exp | null),region?: (String_comparison_exp | null),region_veto_picking_lineup_id?: (uuid_comparison_exp | null),region_veto_picks?: (match_region_veto_picks_bool_exp | null),region_veto_picks_aggregate?: (match_region_veto_picks_aggregate_bool_exp | null),requested_organizer?: (Boolean_comparison_exp | null),scheduled_at?: (timestamptz_comparison_exp | null),server?: (servers_bool_exp | null),server_error?: (String_comparison_exp | null),server_id?: (uuid_comparison_exp | null),server_region?: (String_comparison_exp | null),server_type?: (String_comparison_exp | null),source?: (String_comparison_exp | null),started_at?: (timestamptz_comparison_exp | null),status?: (e_match_status_enum_comparison_exp | null),streams?: (match_streams_bool_exp | null),streams_aggregate?: (match_streams_aggregate_bool_exp | null),teams?: (teams_bool_exp | null),tournament_brackets?: (tournament_brackets_bool_exp | null),tournament_brackets_aggregate?: (tournament_brackets_aggregate_bool_exp | null),tv_connection_string?: (String_comparison_exp | null),winner?: (match_lineups_bool_exp | null),winning_lineup_id?: (uuid_comparison_exp | null)} +export interface matches_bool_exp {_and?: (matches_bool_exp[] | null),_not?: (matches_bool_exp | null),_or?: (matches_bool_exp[] | null),can_assign_server?: (Boolean_comparison_exp | null),can_cancel?: (Boolean_comparison_exp | null),can_check_in?: (Boolean_comparison_exp | null),can_reassign_winner?: (Boolean_comparison_exp | null),can_schedule?: (Boolean_comparison_exp | null),can_start?: (Boolean_comparison_exp | null),can_stream_live?: (Boolean_comparison_exp | null),can_stream_tv?: (Boolean_comparison_exp | null),cancels_at?: (timestamptz_comparison_exp | null),clutches?: (v_match_clutches_bool_exp | null),clutches_aggregate?: (v_match_clutches_aggregate_bool_exp | null),connection_link?: (String_comparison_exp | null),connection_string?: (String_comparison_exp | null),created_at?: (timestamptz_comparison_exp | null),current_match_map_id?: (uuid_comparison_exp | null),demos?: (match_map_demos_bool_exp | null),demos_aggregate?: (match_map_demos_aggregate_bool_exp | null),draft_games?: (draft_games_bool_exp | null),draft_games_aggregate?: (draft_games_aggregate_bool_exp | null),e_match_status?: (e_match_status_bool_exp | null),e_region?: (server_regions_bool_exp | null),effective_at?: (timestamptz_comparison_exp | null),elo_changes?: (v_player_elo_bool_exp | null),elo_changes_aggregate?: (v_player_elo_aggregate_bool_exp | null),ended_at?: (timestamptz_comparison_exp | null),external_id?: (String_comparison_exp | null),id?: (uuid_comparison_exp | null),invite_code?: (String_comparison_exp | null),invites?: (match_invites_bool_exp | null),invites_aggregate?: (match_invites_aggregate_bool_exp | null),is_captain?: (Boolean_comparison_exp | null),is_coach?: (Boolean_comparison_exp | null),is_friend_in_match_lineup?: (Boolean_comparison_exp | null),is_in_lineup?: (Boolean_comparison_exp | null),is_match_server_available?: (Boolean_comparison_exp | null),is_organizer?: (Boolean_comparison_exp | null),is_server_online?: (Boolean_comparison_exp | null),is_tournament_match?: (Boolean_comparison_exp | null),label?: (String_comparison_exp | null),lineup_1?: (match_lineups_bool_exp | null),lineup_1_id?: (uuid_comparison_exp | null),lineup_2?: (match_lineups_bool_exp | null),lineup_2_id?: (uuid_comparison_exp | null),lineup_counts?: (json_comparison_exp | null),map_veto_picking_lineup_id?: (uuid_comparison_exp | null),map_veto_picks?: (match_map_veto_picks_bool_exp | null),map_veto_picks_aggregate?: (match_map_veto_picks_aggregate_bool_exp | null),map_veto_type?: (String_comparison_exp | null),match_maps?: (match_maps_bool_exp | null),match_maps_aggregate?: (match_maps_aggregate_bool_exp | null),match_options_id?: (uuid_comparison_exp | null),max_players_per_lineup?: (Int_comparison_exp | null),min_players_per_lineup?: (Int_comparison_exp | null),opening_duels?: (v_match_player_opening_duels_bool_exp | null),opening_duels_aggregate?: (v_match_player_opening_duels_aggregate_bool_exp | null),options?: (match_options_bool_exp | null),organizer?: (players_bool_exp | null),organizer_steam_id?: (bigint_comparison_exp | null),password?: (String_comparison_exp | null),player_assists?: (player_assists_bool_exp | null),player_assists_aggregate?: (player_assists_aggregate_bool_exp | null),player_damages?: (player_damages_bool_exp | null),player_damages_aggregate?: (player_damages_aggregate_bool_exp | null),player_flashes?: (player_flashes_bool_exp | null),player_flashes_aggregate?: (player_flashes_aggregate_bool_exp | null),player_kills?: (player_kills_bool_exp | null),player_kills_aggregate?: (player_kills_aggregate_bool_exp | null),player_objectives?: (player_objectives_bool_exp | null),player_objectives_aggregate?: (player_objectives_aggregate_bool_exp | null),player_unused_utilities?: (player_unused_utility_bool_exp | null),player_unused_utilities_aggregate?: (player_unused_utility_aggregate_bool_exp | null),player_utility?: (player_utility_bool_exp | null),player_utility_aggregate?: (player_utility_aggregate_bool_exp | null),region?: (String_comparison_exp | null),region_veto_picking_lineup_id?: (uuid_comparison_exp | null),region_veto_picks?: (match_region_veto_picks_bool_exp | null),region_veto_picks_aggregate?: (match_region_veto_picks_aggregate_bool_exp | null),requested_organizer?: (Boolean_comparison_exp | null),scheduled_at?: (timestamptz_comparison_exp | null),server?: (servers_bool_exp | null),server_error?: (String_comparison_exp | null),server_id?: (uuid_comparison_exp | null),server_region?: (String_comparison_exp | null),server_type?: (String_comparison_exp | null),source?: (String_comparison_exp | null),started_at?: (timestamptz_comparison_exp | null),status?: (e_match_status_enum_comparison_exp | null),streams?: (match_streams_bool_exp | null),streams_aggregate?: (match_streams_aggregate_bool_exp | null),teams?: (teams_bool_exp | null),tournament_brackets?: (tournament_brackets_bool_exp | null),tournament_brackets_aggregate?: (tournament_brackets_aggregate_bool_exp | null),tv_connection_string?: (String_comparison_exp | null),winner?: (match_lineups_bool_exp | null),winning_lineup_id?: (uuid_comparison_exp | null)} /** input type for incrementing numeric columns in table "matches" */ @@ -37081,7 +39943,7 @@ export interface matches_inc_input {organizer_steam_id?: (Scalars['bigint'] | nu /** input type for inserting data into table "matches" */ -export interface matches_insert_input {cancels_at?: (Scalars['timestamptz'] | null),clutches?: (v_match_clutches_arr_rel_insert_input | null),created_at?: (Scalars['timestamptz'] | null),demos?: (match_map_demos_arr_rel_insert_input | null),e_match_status?: (e_match_status_obj_rel_insert_input | null),e_region?: (server_regions_obj_rel_insert_input | null),elo_changes?: (v_player_elo_arr_rel_insert_input | null),ended_at?: (Scalars['timestamptz'] | null),external_id?: (Scalars['String'] | null),id?: (Scalars['uuid'] | null),invites?: (match_invites_arr_rel_insert_input | null),label?: (Scalars['String'] | null),lineup_1?: (match_lineups_obj_rel_insert_input | null),lineup_1_id?: (Scalars['uuid'] | null),lineup_2?: (match_lineups_obj_rel_insert_input | null),lineup_2_id?: (Scalars['uuid'] | null),map_veto_picks?: (match_map_veto_picks_arr_rel_insert_input | null),match_maps?: (match_maps_arr_rel_insert_input | null),match_options_id?: (Scalars['uuid'] | null),opening_duels?: (v_match_player_opening_duels_arr_rel_insert_input | null),options?: (match_options_obj_rel_insert_input | null),organizer?: (players_obj_rel_insert_input | null),organizer_steam_id?: (Scalars['bigint'] | null),password?: (Scalars['String'] | null),player_assists?: (player_assists_arr_rel_insert_input | null),player_damages?: (player_damages_arr_rel_insert_input | null),player_flashes?: (player_flashes_arr_rel_insert_input | null),player_kills?: (player_kills_arr_rel_insert_input | null),player_objectives?: (player_objectives_arr_rel_insert_input | null),player_unused_utilities?: (player_unused_utility_arr_rel_insert_input | null),player_utility?: (player_utility_arr_rel_insert_input | null),region?: (Scalars['String'] | null),region_veto_picks?: (match_region_veto_picks_arr_rel_insert_input | null),scheduled_at?: (Scalars['timestamptz'] | null),server?: (servers_obj_rel_insert_input | null),server_error?: (Scalars['String'] | null),server_id?: (Scalars['uuid'] | null),source?: (Scalars['String'] | null),started_at?: (Scalars['timestamptz'] | null),status?: (e_match_status_enum | null),streams?: (match_streams_arr_rel_insert_input | null),tournament_brackets?: (tournament_brackets_arr_rel_insert_input | null),winner?: (match_lineups_obj_rel_insert_input | null),winning_lineup_id?: (Scalars['uuid'] | null)} +export interface matches_insert_input {cancels_at?: (Scalars['timestamptz'] | null),clutches?: (v_match_clutches_arr_rel_insert_input | null),created_at?: (Scalars['timestamptz'] | null),demos?: (match_map_demos_arr_rel_insert_input | null),draft_games?: (draft_games_arr_rel_insert_input | null),e_match_status?: (e_match_status_obj_rel_insert_input | null),e_region?: (server_regions_obj_rel_insert_input | null),elo_changes?: (v_player_elo_arr_rel_insert_input | null),ended_at?: (Scalars['timestamptz'] | null),external_id?: (Scalars['String'] | null),id?: (Scalars['uuid'] | null),invites?: (match_invites_arr_rel_insert_input | null),label?: (Scalars['String'] | null),lineup_1?: (match_lineups_obj_rel_insert_input | null),lineup_1_id?: (Scalars['uuid'] | null),lineup_2?: (match_lineups_obj_rel_insert_input | null),lineup_2_id?: (Scalars['uuid'] | null),map_veto_picks?: (match_map_veto_picks_arr_rel_insert_input | null),match_maps?: (match_maps_arr_rel_insert_input | null),match_options_id?: (Scalars['uuid'] | null),opening_duels?: (v_match_player_opening_duels_arr_rel_insert_input | null),options?: (match_options_obj_rel_insert_input | null),organizer?: (players_obj_rel_insert_input | null),organizer_steam_id?: (Scalars['bigint'] | null),password?: (Scalars['String'] | null),player_assists?: (player_assists_arr_rel_insert_input | null),player_damages?: (player_damages_arr_rel_insert_input | null),player_flashes?: (player_flashes_arr_rel_insert_input | null),player_kills?: (player_kills_arr_rel_insert_input | null),player_objectives?: (player_objectives_arr_rel_insert_input | null),player_unused_utilities?: (player_unused_utility_arr_rel_insert_input | null),player_utility?: (player_utility_arr_rel_insert_input | null),region?: (Scalars['String'] | null),region_veto_picks?: (match_region_veto_picks_arr_rel_insert_input | null),scheduled_at?: (Scalars['timestamptz'] | null),server?: (servers_obj_rel_insert_input | null),server_error?: (Scalars['String'] | null),server_id?: (Scalars['uuid'] | null),source?: (Scalars['String'] | null),started_at?: (Scalars['timestamptz'] | null),status?: (e_match_status_enum | null),streams?: (match_streams_arr_rel_insert_input | null),tournament_brackets?: (tournament_brackets_arr_rel_insert_input | null),winner?: (match_lineups_obj_rel_insert_input | null),winning_lineup_id?: (Scalars['uuid'] | null)} /** aggregate max on columns */ @@ -37214,7 +40076,7 @@ export interface matches_on_conflict {constraint: matches_constraint,update_colu /** Ordering options when selecting data from "matches". */ -export interface matches_order_by {can_assign_server?: (order_by | null),can_cancel?: (order_by | null),can_check_in?: (order_by | null),can_reassign_winner?: (order_by | null),can_schedule?: (order_by | null),can_start?: (order_by | null),can_stream_live?: (order_by | null),can_stream_tv?: (order_by | null),cancels_at?: (order_by | null),clutches_aggregate?: (v_match_clutches_aggregate_order_by | null),connection_link?: (order_by | null),connection_string?: (order_by | null),created_at?: (order_by | null),current_match_map_id?: (order_by | null),demos_aggregate?: (match_map_demos_aggregate_order_by | null),e_match_status?: (e_match_status_order_by | null),e_region?: (server_regions_order_by | null),effective_at?: (order_by | null),elo_changes_aggregate?: (v_player_elo_aggregate_order_by | null),ended_at?: (order_by | null),external_id?: (order_by | null),id?: (order_by | null),invite_code?: (order_by | null),invites_aggregate?: (match_invites_aggregate_order_by | null),is_captain?: (order_by | null),is_coach?: (order_by | null),is_friend_in_match_lineup?: (order_by | null),is_in_lineup?: (order_by | null),is_match_server_available?: (order_by | null),is_organizer?: (order_by | null),is_server_online?: (order_by | null),is_tournament_match?: (order_by | null),label?: (order_by | null),lineup_1?: (match_lineups_order_by | null),lineup_1_id?: (order_by | null),lineup_2?: (match_lineups_order_by | null),lineup_2_id?: (order_by | null),lineup_counts?: (order_by | null),map_veto_picking_lineup_id?: (order_by | null),map_veto_picks_aggregate?: (match_map_veto_picks_aggregate_order_by | null),map_veto_type?: (order_by | null),match_maps_aggregate?: (match_maps_aggregate_order_by | null),match_options_id?: (order_by | null),max_players_per_lineup?: (order_by | null),min_players_per_lineup?: (order_by | null),opening_duels_aggregate?: (v_match_player_opening_duels_aggregate_order_by | null),options?: (match_options_order_by | null),organizer?: (players_order_by | null),organizer_steam_id?: (order_by | null),password?: (order_by | null),player_assists_aggregate?: (player_assists_aggregate_order_by | null),player_damages_aggregate?: (player_damages_aggregate_order_by | null),player_flashes_aggregate?: (player_flashes_aggregate_order_by | null),player_kills_aggregate?: (player_kills_aggregate_order_by | null),player_objectives_aggregate?: (player_objectives_aggregate_order_by | null),player_unused_utilities_aggregate?: (player_unused_utility_aggregate_order_by | null),player_utility_aggregate?: (player_utility_aggregate_order_by | null),region?: (order_by | null),region_veto_picking_lineup_id?: (order_by | null),region_veto_picks_aggregate?: (match_region_veto_picks_aggregate_order_by | null),requested_organizer?: (order_by | null),scheduled_at?: (order_by | null),server?: (servers_order_by | null),server_error?: (order_by | null),server_id?: (order_by | null),server_region?: (order_by | null),server_type?: (order_by | null),source?: (order_by | null),started_at?: (order_by | null),status?: (order_by | null),streams_aggregate?: (match_streams_aggregate_order_by | null),teams_aggregate?: (teams_aggregate_order_by | null),tournament_brackets_aggregate?: (tournament_brackets_aggregate_order_by | null),tv_connection_string?: (order_by | null),winner?: (match_lineups_order_by | null),winning_lineup_id?: (order_by | null)} +export interface matches_order_by {can_assign_server?: (order_by | null),can_cancel?: (order_by | null),can_check_in?: (order_by | null),can_reassign_winner?: (order_by | null),can_schedule?: (order_by | null),can_start?: (order_by | null),can_stream_live?: (order_by | null),can_stream_tv?: (order_by | null),cancels_at?: (order_by | null),clutches_aggregate?: (v_match_clutches_aggregate_order_by | null),connection_link?: (order_by | null),connection_string?: (order_by | null),created_at?: (order_by | null),current_match_map_id?: (order_by | null),demos_aggregate?: (match_map_demos_aggregate_order_by | null),draft_games_aggregate?: (draft_games_aggregate_order_by | null),e_match_status?: (e_match_status_order_by | null),e_region?: (server_regions_order_by | null),effective_at?: (order_by | null),elo_changes_aggregate?: (v_player_elo_aggregate_order_by | null),ended_at?: (order_by | null),external_id?: (order_by | null),id?: (order_by | null),invite_code?: (order_by | null),invites_aggregate?: (match_invites_aggregate_order_by | null),is_captain?: (order_by | null),is_coach?: (order_by | null),is_friend_in_match_lineup?: (order_by | null),is_in_lineup?: (order_by | null),is_match_server_available?: (order_by | null),is_organizer?: (order_by | null),is_server_online?: (order_by | null),is_tournament_match?: (order_by | null),label?: (order_by | null),lineup_1?: (match_lineups_order_by | null),lineup_1_id?: (order_by | null),lineup_2?: (match_lineups_order_by | null),lineup_2_id?: (order_by | null),lineup_counts?: (order_by | null),map_veto_picking_lineup_id?: (order_by | null),map_veto_picks_aggregate?: (match_map_veto_picks_aggregate_order_by | null),map_veto_type?: (order_by | null),match_maps_aggregate?: (match_maps_aggregate_order_by | null),match_options_id?: (order_by | null),max_players_per_lineup?: (order_by | null),min_players_per_lineup?: (order_by | null),opening_duels_aggregate?: (v_match_player_opening_duels_aggregate_order_by | null),options?: (match_options_order_by | null),organizer?: (players_order_by | null),organizer_steam_id?: (order_by | null),password?: (order_by | null),player_assists_aggregate?: (player_assists_aggregate_order_by | null),player_damages_aggregate?: (player_damages_aggregate_order_by | null),player_flashes_aggregate?: (player_flashes_aggregate_order_by | null),player_kills_aggregate?: (player_kills_aggregate_order_by | null),player_objectives_aggregate?: (player_objectives_aggregate_order_by | null),player_unused_utilities_aggregate?: (player_unused_utility_aggregate_order_by | null),player_utility_aggregate?: (player_utility_aggregate_order_by | null),region?: (order_by | null),region_veto_picking_lineup_id?: (order_by | null),region_veto_picks_aggregate?: (match_region_veto_picks_aggregate_order_by | null),requested_organizer?: (order_by | null),scheduled_at?: (order_by | null),server?: (servers_order_by | null),server_error?: (order_by | null),server_id?: (order_by | null),server_region?: (order_by | null),server_type?: (order_by | null),source?: (order_by | null),started_at?: (order_by | null),status?: (order_by | null),streams_aggregate?: (match_streams_aggregate_order_by | null),teams_aggregate?: (teams_aggregate_order_by | null),tournament_brackets_aggregate?: (tournament_brackets_aggregate_order_by | null),tv_connection_string?: (order_by | null),winner?: (match_lineups_order_by | null),winning_lineup_id?: (order_by | null)} /** primary key columns input for table: matches */ @@ -37533,12 +40395,60 @@ export interface mutation_rootGenqlSelection{ where: db_backups_bool_exp} }) /** delete single row from the table: "db_backups" */ delete_db_backups_by_pk?: (db_backupsGenqlSelection & { __args: {id: Scalars['uuid']} }) + /** delete data from the table: "draft_game_picks" */ + delete_draft_game_picks?: (draft_game_picks_mutation_responseGenqlSelection & { __args: { + /** filter the rows which have to be deleted */ + where: draft_game_picks_bool_exp} }) + /** delete single row from the table: "draft_game_picks" */ + delete_draft_game_picks_by_pk?: (draft_game_picksGenqlSelection & { __args: {id: Scalars['uuid']} }) + /** delete data from the table: "draft_game_players" */ + delete_draft_game_players?: (draft_game_players_mutation_responseGenqlSelection & { __args: { + /** filter the rows which have to be deleted */ + where: draft_game_players_bool_exp} }) + /** delete single row from the table: "draft_game_players" */ + delete_draft_game_players_by_pk?: (draft_game_playersGenqlSelection & { __args: {draft_game_id: Scalars['uuid'], steam_id: Scalars['bigint']} }) + /** delete data from the table: "draft_games" */ + delete_draft_games?: (draft_games_mutation_responseGenqlSelection & { __args: { + /** filter the rows which have to be deleted */ + where: draft_games_bool_exp} }) + /** delete single row from the table: "draft_games" */ + delete_draft_games_by_pk?: (draft_gamesGenqlSelection & { __args: {id: Scalars['uuid']} }) /** delete data from the table: "e_check_in_settings" */ delete_e_check_in_settings?: (e_check_in_settings_mutation_responseGenqlSelection & { __args: { /** filter the rows which have to be deleted */ where: e_check_in_settings_bool_exp} }) /** delete single row from the table: "e_check_in_settings" */ delete_e_check_in_settings_by_pk?: (e_check_in_settingsGenqlSelection & { __args: {value: Scalars['String']} }) + /** delete data from the table: "e_draft_game_captain_selection" */ + delete_e_draft_game_captain_selection?: (e_draft_game_captain_selection_mutation_responseGenqlSelection & { __args: { + /** filter the rows which have to be deleted */ + where: e_draft_game_captain_selection_bool_exp} }) + /** delete single row from the table: "e_draft_game_captain_selection" */ + delete_e_draft_game_captain_selection_by_pk?: (e_draft_game_captain_selectionGenqlSelection & { __args: {value: Scalars['String']} }) + /** delete data from the table: "e_draft_game_draft_order" */ + delete_e_draft_game_draft_order?: (e_draft_game_draft_order_mutation_responseGenqlSelection & { __args: { + /** filter the rows which have to be deleted */ + where: e_draft_game_draft_order_bool_exp} }) + /** delete single row from the table: "e_draft_game_draft_order" */ + delete_e_draft_game_draft_order_by_pk?: (e_draft_game_draft_orderGenqlSelection & { __args: {value: Scalars['String']} }) + /** delete data from the table: "e_draft_game_mode" */ + delete_e_draft_game_mode?: (e_draft_game_mode_mutation_responseGenqlSelection & { __args: { + /** filter the rows which have to be deleted */ + where: e_draft_game_mode_bool_exp} }) + /** delete single row from the table: "e_draft_game_mode" */ + delete_e_draft_game_mode_by_pk?: (e_draft_game_modeGenqlSelection & { __args: {value: Scalars['String']} }) + /** delete data from the table: "e_draft_game_player_status" */ + delete_e_draft_game_player_status?: (e_draft_game_player_status_mutation_responseGenqlSelection & { __args: { + /** filter the rows which have to be deleted */ + where: e_draft_game_player_status_bool_exp} }) + /** delete single row from the table: "e_draft_game_player_status" */ + delete_e_draft_game_player_status_by_pk?: (e_draft_game_player_statusGenqlSelection & { __args: {value: Scalars['String']} }) + /** delete data from the table: "e_draft_game_status" */ + delete_e_draft_game_status?: (e_draft_game_status_mutation_responseGenqlSelection & { __args: { + /** filter the rows which have to be deleted */ + where: e_draft_game_status_bool_exp} }) + /** delete single row from the table: "e_draft_game_status" */ + delete_e_draft_game_status_by_pk?: (e_draft_game_statusGenqlSelection & { __args: {value: Scalars['String']} }) /** delete data from the table: "e_friend_status" */ delete_e_friend_status?: (e_friend_status_mutation_responseGenqlSelection & { __args: { /** filter the rows which have to be deleted */ @@ -37841,6 +40751,12 @@ export interface mutation_rootGenqlSelection{ delete_my_friends?: (my_friends_mutation_responseGenqlSelection & { __args: { /** filter the rows which have to be deleted */ where: my_friends_bool_exp} }) + /** delete data from the table: "news_articles" */ + delete_news_articles?: (news_articles_mutation_responseGenqlSelection & { __args: { + /** filter the rows which have to be deleted */ + where: news_articles_bool_exp} }) + /** delete single row from the table: "news_articles" */ + delete_news_articles_by_pk?: (news_articlesGenqlSelection & { __args: {id: Scalars['uuid']} }) /** delete data from the table: "notifications" */ delete_notifications?: (notifications_mutation_responseGenqlSelection & { __args: { /** filter the rows which have to be deleted */ @@ -38166,6 +41082,42 @@ export interface mutation_rootGenqlSelection{ object: db_backups_insert_input, /** upsert condition */ on_conflict?: (db_backups_on_conflict | null)} }) + /** insert data into the table: "draft_game_picks" */ + insert_draft_game_picks?: (draft_game_picks_mutation_responseGenqlSelection & { __args: { + /** the rows to be inserted */ + objects: draft_game_picks_insert_input[], + /** upsert condition */ + on_conflict?: (draft_game_picks_on_conflict | null)} }) + /** insert a single row into the table: "draft_game_picks" */ + insert_draft_game_picks_one?: (draft_game_picksGenqlSelection & { __args: { + /** the row to be inserted */ + object: draft_game_picks_insert_input, + /** upsert condition */ + on_conflict?: (draft_game_picks_on_conflict | null)} }) + /** insert data into the table: "draft_game_players" */ + insert_draft_game_players?: (draft_game_players_mutation_responseGenqlSelection & { __args: { + /** the rows to be inserted */ + objects: draft_game_players_insert_input[], + /** upsert condition */ + on_conflict?: (draft_game_players_on_conflict | null)} }) + /** insert a single row into the table: "draft_game_players" */ + insert_draft_game_players_one?: (draft_game_playersGenqlSelection & { __args: { + /** the row to be inserted */ + object: draft_game_players_insert_input, + /** upsert condition */ + on_conflict?: (draft_game_players_on_conflict | null)} }) + /** insert data into the table: "draft_games" */ + insert_draft_games?: (draft_games_mutation_responseGenqlSelection & { __args: { + /** the rows to be inserted */ + objects: draft_games_insert_input[], + /** upsert condition */ + on_conflict?: (draft_games_on_conflict | null)} }) + /** insert a single row into the table: "draft_games" */ + insert_draft_games_one?: (draft_gamesGenqlSelection & { __args: { + /** the row to be inserted */ + object: draft_games_insert_input, + /** upsert condition */ + on_conflict?: (draft_games_on_conflict | null)} }) /** insert data into the table: "e_check_in_settings" */ insert_e_check_in_settings?: (e_check_in_settings_mutation_responseGenqlSelection & { __args: { /** the rows to be inserted */ @@ -38178,6 +41130,66 @@ export interface mutation_rootGenqlSelection{ object: e_check_in_settings_insert_input, /** upsert condition */ on_conflict?: (e_check_in_settings_on_conflict | null)} }) + /** insert data into the table: "e_draft_game_captain_selection" */ + insert_e_draft_game_captain_selection?: (e_draft_game_captain_selection_mutation_responseGenqlSelection & { __args: { + /** the rows to be inserted */ + objects: e_draft_game_captain_selection_insert_input[], + /** upsert condition */ + on_conflict?: (e_draft_game_captain_selection_on_conflict | null)} }) + /** insert a single row into the table: "e_draft_game_captain_selection" */ + insert_e_draft_game_captain_selection_one?: (e_draft_game_captain_selectionGenqlSelection & { __args: { + /** the row to be inserted */ + object: e_draft_game_captain_selection_insert_input, + /** upsert condition */ + on_conflict?: (e_draft_game_captain_selection_on_conflict | null)} }) + /** insert data into the table: "e_draft_game_draft_order" */ + insert_e_draft_game_draft_order?: (e_draft_game_draft_order_mutation_responseGenqlSelection & { __args: { + /** the rows to be inserted */ + objects: e_draft_game_draft_order_insert_input[], + /** upsert condition */ + on_conflict?: (e_draft_game_draft_order_on_conflict | null)} }) + /** insert a single row into the table: "e_draft_game_draft_order" */ + insert_e_draft_game_draft_order_one?: (e_draft_game_draft_orderGenqlSelection & { __args: { + /** the row to be inserted */ + object: e_draft_game_draft_order_insert_input, + /** upsert condition */ + on_conflict?: (e_draft_game_draft_order_on_conflict | null)} }) + /** insert data into the table: "e_draft_game_mode" */ + insert_e_draft_game_mode?: (e_draft_game_mode_mutation_responseGenqlSelection & { __args: { + /** the rows to be inserted */ + objects: e_draft_game_mode_insert_input[], + /** upsert condition */ + on_conflict?: (e_draft_game_mode_on_conflict | null)} }) + /** insert a single row into the table: "e_draft_game_mode" */ + insert_e_draft_game_mode_one?: (e_draft_game_modeGenqlSelection & { __args: { + /** the row to be inserted */ + object: e_draft_game_mode_insert_input, + /** upsert condition */ + on_conflict?: (e_draft_game_mode_on_conflict | null)} }) + /** insert data into the table: "e_draft_game_player_status" */ + insert_e_draft_game_player_status?: (e_draft_game_player_status_mutation_responseGenqlSelection & { __args: { + /** the rows to be inserted */ + objects: e_draft_game_player_status_insert_input[], + /** upsert condition */ + on_conflict?: (e_draft_game_player_status_on_conflict | null)} }) + /** insert a single row into the table: "e_draft_game_player_status" */ + insert_e_draft_game_player_status_one?: (e_draft_game_player_statusGenqlSelection & { __args: { + /** the row to be inserted */ + object: e_draft_game_player_status_insert_input, + /** upsert condition */ + on_conflict?: (e_draft_game_player_status_on_conflict | null)} }) + /** insert data into the table: "e_draft_game_status" */ + insert_e_draft_game_status?: (e_draft_game_status_mutation_responseGenqlSelection & { __args: { + /** the rows to be inserted */ + objects: e_draft_game_status_insert_input[], + /** upsert condition */ + on_conflict?: (e_draft_game_status_on_conflict | null)} }) + /** insert a single row into the table: "e_draft_game_status" */ + insert_e_draft_game_status_one?: (e_draft_game_statusGenqlSelection & { __args: { + /** the row to be inserted */ + object: e_draft_game_status_insert_input, + /** upsert condition */ + on_conflict?: (e_draft_game_status_on_conflict | null)} }) /** insert data into the table: "e_friend_status" */ insert_e_friend_status?: (e_friend_status_mutation_responseGenqlSelection & { __args: { /** the rows to be inserted */ @@ -38782,6 +41794,18 @@ export interface mutation_rootGenqlSelection{ insert_my_friends_one?: (my_friendsGenqlSelection & { __args: { /** the row to be inserted */ object: my_friends_insert_input} }) + /** insert data into the table: "news_articles" */ + insert_news_articles?: (news_articles_mutation_responseGenqlSelection & { __args: { + /** the rows to be inserted */ + objects: news_articles_insert_input[], + /** upsert condition */ + on_conflict?: (news_articles_on_conflict | null)} }) + /** insert a single row into the table: "news_articles" */ + insert_news_articles_one?: (news_articlesGenqlSelection & { __args: { + /** the row to be inserted */ + object: news_articles_insert_input, + /** upsert condition */ + on_conflict?: (news_articles_on_conflict | null)} }) /** insert data into the table: "notifications" */ insert_notifications?: (notifications_mutation_responseGenqlSelection & { __args: { /** the rows to be inserted */ @@ -39356,6 +42380,8 @@ export interface mutation_rootGenqlSelection{ requestNameChange?: (SuccessOutputGenqlSelection & { __args: {name: Scalars['String'], steam_id: Scalars['bigint']} }) /** Reset a terminal-state clip_render_jobs row back to queued and re-enqueue the batch worker (admin only). */ requeueClipRender?: (SuccessOutputGenqlSelection & { __args: {job_id: Scalars['uuid']} }) + /** Re-scan tl;dr for new news articles (admin only). Enqueues a background scrape job; no-op if the integration is disabled. */ + rescanTldrNews?: SuccessOutputGenqlSelection restartService?: (SuccessOutputGenqlSelection & { __args: {service: Scalars['String']} }) /** Clear paused flag and re-enqueue remaining queued clip_render_jobs. */ resumeClipRenderBatch?: (SuccessOutputGenqlSelection & { __args: {match_map_id: Scalars['uuid']} }) @@ -39512,6 +42538,60 @@ export interface mutation_rootGenqlSelection{ update_db_backups_many?: (db_backups_mutation_responseGenqlSelection & { __args: { /** updates to execute, in order */ updates: db_backups_updates[]} }) + /** update data of the table: "draft_game_picks" */ + update_draft_game_picks?: (draft_game_picks_mutation_responseGenqlSelection & { __args: { + /** increments the numeric columns with given value of the filtered values */ + _inc?: (draft_game_picks_inc_input | null), + /** sets the columns of the filtered rows to the given values */ + _set?: (draft_game_picks_set_input | null), + /** filter the rows which have to be updated */ + where: draft_game_picks_bool_exp} }) + /** update single row of the table: "draft_game_picks" */ + update_draft_game_picks_by_pk?: (draft_game_picksGenqlSelection & { __args: { + /** increments the numeric columns with given value of the filtered values */ + _inc?: (draft_game_picks_inc_input | null), + /** sets the columns of the filtered rows to the given values */ + _set?: (draft_game_picks_set_input | null), pk_columns: draft_game_picks_pk_columns_input} }) + /** update multiples rows of table: "draft_game_picks" */ + update_draft_game_picks_many?: (draft_game_picks_mutation_responseGenqlSelection & { __args: { + /** updates to execute, in order */ + updates: draft_game_picks_updates[]} }) + /** update data of the table: "draft_game_players" */ + update_draft_game_players?: (draft_game_players_mutation_responseGenqlSelection & { __args: { + /** increments the numeric columns with given value of the filtered values */ + _inc?: (draft_game_players_inc_input | null), + /** sets the columns of the filtered rows to the given values */ + _set?: (draft_game_players_set_input | null), + /** filter the rows which have to be updated */ + where: draft_game_players_bool_exp} }) + /** update single row of the table: "draft_game_players" */ + update_draft_game_players_by_pk?: (draft_game_playersGenqlSelection & { __args: { + /** increments the numeric columns with given value of the filtered values */ + _inc?: (draft_game_players_inc_input | null), + /** sets the columns of the filtered rows to the given values */ + _set?: (draft_game_players_set_input | null), pk_columns: draft_game_players_pk_columns_input} }) + /** update multiples rows of table: "draft_game_players" */ + update_draft_game_players_many?: (draft_game_players_mutation_responseGenqlSelection & { __args: { + /** updates to execute, in order */ + updates: draft_game_players_updates[]} }) + /** update data of the table: "draft_games" */ + update_draft_games?: (draft_games_mutation_responseGenqlSelection & { __args: { + /** increments the numeric columns with given value of the filtered values */ + _inc?: (draft_games_inc_input | null), + /** sets the columns of the filtered rows to the given values */ + _set?: (draft_games_set_input | null), + /** filter the rows which have to be updated */ + where: draft_games_bool_exp} }) + /** update single row of the table: "draft_games" */ + update_draft_games_by_pk?: (draft_gamesGenqlSelection & { __args: { + /** increments the numeric columns with given value of the filtered values */ + _inc?: (draft_games_inc_input | null), + /** sets the columns of the filtered rows to the given values */ + _set?: (draft_games_set_input | null), pk_columns: draft_games_pk_columns_input} }) + /** update multiples rows of table: "draft_games" */ + update_draft_games_many?: (draft_games_mutation_responseGenqlSelection & { __args: { + /** updates to execute, in order */ + updates: draft_games_updates[]} }) /** update data of the table: "e_check_in_settings" */ update_e_check_in_settings?: (e_check_in_settings_mutation_responseGenqlSelection & { __args: { /** sets the columns of the filtered rows to the given values */ @@ -39526,6 +42606,76 @@ export interface mutation_rootGenqlSelection{ update_e_check_in_settings_many?: (e_check_in_settings_mutation_responseGenqlSelection & { __args: { /** updates to execute, in order */ updates: e_check_in_settings_updates[]} }) + /** update data of the table: "e_draft_game_captain_selection" */ + update_e_draft_game_captain_selection?: (e_draft_game_captain_selection_mutation_responseGenqlSelection & { __args: { + /** sets the columns of the filtered rows to the given values */ + _set?: (e_draft_game_captain_selection_set_input | null), + /** filter the rows which have to be updated */ + where: e_draft_game_captain_selection_bool_exp} }) + /** update single row of the table: "e_draft_game_captain_selection" */ + update_e_draft_game_captain_selection_by_pk?: (e_draft_game_captain_selectionGenqlSelection & { __args: { + /** sets the columns of the filtered rows to the given values */ + _set?: (e_draft_game_captain_selection_set_input | null), pk_columns: e_draft_game_captain_selection_pk_columns_input} }) + /** update multiples rows of table: "e_draft_game_captain_selection" */ + update_e_draft_game_captain_selection_many?: (e_draft_game_captain_selection_mutation_responseGenqlSelection & { __args: { + /** updates to execute, in order */ + updates: e_draft_game_captain_selection_updates[]} }) + /** update data of the table: "e_draft_game_draft_order" */ + update_e_draft_game_draft_order?: (e_draft_game_draft_order_mutation_responseGenqlSelection & { __args: { + /** sets the columns of the filtered rows to the given values */ + _set?: (e_draft_game_draft_order_set_input | null), + /** filter the rows which have to be updated */ + where: e_draft_game_draft_order_bool_exp} }) + /** update single row of the table: "e_draft_game_draft_order" */ + update_e_draft_game_draft_order_by_pk?: (e_draft_game_draft_orderGenqlSelection & { __args: { + /** sets the columns of the filtered rows to the given values */ + _set?: (e_draft_game_draft_order_set_input | null), pk_columns: e_draft_game_draft_order_pk_columns_input} }) + /** update multiples rows of table: "e_draft_game_draft_order" */ + update_e_draft_game_draft_order_many?: (e_draft_game_draft_order_mutation_responseGenqlSelection & { __args: { + /** updates to execute, in order */ + updates: e_draft_game_draft_order_updates[]} }) + /** update data of the table: "e_draft_game_mode" */ + update_e_draft_game_mode?: (e_draft_game_mode_mutation_responseGenqlSelection & { __args: { + /** sets the columns of the filtered rows to the given values */ + _set?: (e_draft_game_mode_set_input | null), + /** filter the rows which have to be updated */ + where: e_draft_game_mode_bool_exp} }) + /** update single row of the table: "e_draft_game_mode" */ + update_e_draft_game_mode_by_pk?: (e_draft_game_modeGenqlSelection & { __args: { + /** sets the columns of the filtered rows to the given values */ + _set?: (e_draft_game_mode_set_input | null), pk_columns: e_draft_game_mode_pk_columns_input} }) + /** update multiples rows of table: "e_draft_game_mode" */ + update_e_draft_game_mode_many?: (e_draft_game_mode_mutation_responseGenqlSelection & { __args: { + /** updates to execute, in order */ + updates: e_draft_game_mode_updates[]} }) + /** update data of the table: "e_draft_game_player_status" */ + update_e_draft_game_player_status?: (e_draft_game_player_status_mutation_responseGenqlSelection & { __args: { + /** sets the columns of the filtered rows to the given values */ + _set?: (e_draft_game_player_status_set_input | null), + /** filter the rows which have to be updated */ + where: e_draft_game_player_status_bool_exp} }) + /** update single row of the table: "e_draft_game_player_status" */ + update_e_draft_game_player_status_by_pk?: (e_draft_game_player_statusGenqlSelection & { __args: { + /** sets the columns of the filtered rows to the given values */ + _set?: (e_draft_game_player_status_set_input | null), pk_columns: e_draft_game_player_status_pk_columns_input} }) + /** update multiples rows of table: "e_draft_game_player_status" */ + update_e_draft_game_player_status_many?: (e_draft_game_player_status_mutation_responseGenqlSelection & { __args: { + /** updates to execute, in order */ + updates: e_draft_game_player_status_updates[]} }) + /** update data of the table: "e_draft_game_status" */ + update_e_draft_game_status?: (e_draft_game_status_mutation_responseGenqlSelection & { __args: { + /** sets the columns of the filtered rows to the given values */ + _set?: (e_draft_game_status_set_input | null), + /** filter the rows which have to be updated */ + where: e_draft_game_status_bool_exp} }) + /** update single row of the table: "e_draft_game_status" */ + update_e_draft_game_status_by_pk?: (e_draft_game_statusGenqlSelection & { __args: { + /** sets the columns of the filtered rows to the given values */ + _set?: (e_draft_game_status_set_input | null), pk_columns: e_draft_game_status_pk_columns_input} }) + /** update multiples rows of table: "e_draft_game_status" */ + update_e_draft_game_status_many?: (e_draft_game_status_mutation_responseGenqlSelection & { __args: { + /** updates to execute, in order */ + updates: e_draft_game_status_updates[]} }) /** update data of the table: "e_friend_status" */ update_e_friend_status?: (e_friend_status_mutation_responseGenqlSelection & { __args: { /** sets the columns of the filtered rows to the given values */ @@ -40430,6 +43580,24 @@ export interface mutation_rootGenqlSelection{ update_my_friends_many?: (my_friends_mutation_responseGenqlSelection & { __args: { /** updates to execute, in order */ updates: my_friends_updates[]} }) + /** update data of the table: "news_articles" */ + update_news_articles?: (news_articles_mutation_responseGenqlSelection & { __args: { + /** increments the numeric columns with given value of the filtered values */ + _inc?: (news_articles_inc_input | null), + /** sets the columns of the filtered rows to the given values */ + _set?: (news_articles_set_input | null), + /** filter the rows which have to be updated */ + where: news_articles_bool_exp} }) + /** update single row of the table: "news_articles" */ + update_news_articles_by_pk?: (news_articlesGenqlSelection & { __args: { + /** increments the numeric columns with given value of the filtered values */ + _inc?: (news_articles_inc_input | null), + /** sets the columns of the filtered rows to the given values */ + _set?: (news_articles_set_input | null), pk_columns: news_articles_pk_columns_input} }) + /** update multiples rows of table: "news_articles" */ + update_news_articles_many?: (news_articles_mutation_responseGenqlSelection & { __args: { + /** updates to execute, in order */ + updates: news_articles_updates[]} }) /** update data of the table: "notifications" */ update_notifications?: (notifications_mutation_responseGenqlSelection & { __args: { /** append existing jsonb value of filtered columns with new jsonb value */ @@ -41553,6 +44721,219 @@ export interface my_friends_variance_fieldsGenqlSelection{ export interface my_friends_variance_order_by {friend_steam_id?: (order_by | null),invited_by_steam_id?: (order_by | null),steam_id?: (order_by | null)} +/** columns and relationships of "news_articles" */ +export interface news_articlesGenqlSelection{ + author?: boolean | number + content_html?: boolean | number + cover_image_url?: boolean | number + created_at?: boolean | number + id?: boolean | number + issue_number?: boolean | number + published_at?: boolean | number + scraped_at?: boolean | number + slug?: boolean | number + source?: boolean | number + teaser?: boolean | number + title?: boolean | number + updated_at?: boolean | number + url?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** aggregated selection of "news_articles" */ +export interface news_articles_aggregateGenqlSelection{ + aggregate?: news_articles_aggregate_fieldsGenqlSelection + nodes?: news_articlesGenqlSelection + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** aggregate fields of "news_articles" */ +export interface news_articles_aggregate_fieldsGenqlSelection{ + avg?: news_articles_avg_fieldsGenqlSelection + count?: { __args: {columns?: (news_articles_select_column[] | null), distinct?: (Scalars['Boolean'] | null)} } | boolean | number + max?: news_articles_max_fieldsGenqlSelection + min?: news_articles_min_fieldsGenqlSelection + stddev?: news_articles_stddev_fieldsGenqlSelection + stddev_pop?: news_articles_stddev_pop_fieldsGenqlSelection + stddev_samp?: news_articles_stddev_samp_fieldsGenqlSelection + sum?: news_articles_sum_fieldsGenqlSelection + var_pop?: news_articles_var_pop_fieldsGenqlSelection + var_samp?: news_articles_var_samp_fieldsGenqlSelection + variance?: news_articles_variance_fieldsGenqlSelection + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** aggregate avg on columns */ +export interface news_articles_avg_fieldsGenqlSelection{ + issue_number?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** Boolean expression to filter rows from the table "news_articles". All fields are combined with a logical 'AND'. */ +export interface news_articles_bool_exp {_and?: (news_articles_bool_exp[] | null),_not?: (news_articles_bool_exp | null),_or?: (news_articles_bool_exp[] | null),author?: (String_comparison_exp | null),content_html?: (String_comparison_exp | null),cover_image_url?: (String_comparison_exp | null),created_at?: (timestamptz_comparison_exp | null),id?: (uuid_comparison_exp | null),issue_number?: (Int_comparison_exp | null),published_at?: (timestamptz_comparison_exp | null),scraped_at?: (timestamptz_comparison_exp | null),slug?: (String_comparison_exp | null),source?: (String_comparison_exp | null),teaser?: (String_comparison_exp | null),title?: (String_comparison_exp | null),updated_at?: (timestamptz_comparison_exp | null),url?: (String_comparison_exp | null)} + + +/** input type for incrementing numeric columns in table "news_articles" */ +export interface news_articles_inc_input {issue_number?: (Scalars['Int'] | null)} + + +/** input type for inserting data into table "news_articles" */ +export interface news_articles_insert_input {author?: (Scalars['String'] | null),content_html?: (Scalars['String'] | null),cover_image_url?: (Scalars['String'] | null),created_at?: (Scalars['timestamptz'] | null),id?: (Scalars['uuid'] | null),issue_number?: (Scalars['Int'] | null),published_at?: (Scalars['timestamptz'] | null),scraped_at?: (Scalars['timestamptz'] | null),slug?: (Scalars['String'] | null),source?: (Scalars['String'] | null),teaser?: (Scalars['String'] | null),title?: (Scalars['String'] | null),updated_at?: (Scalars['timestamptz'] | null),url?: (Scalars['String'] | null)} + + +/** aggregate max on columns */ +export interface news_articles_max_fieldsGenqlSelection{ + author?: boolean | number + content_html?: boolean | number + cover_image_url?: boolean | number + created_at?: boolean | number + id?: boolean | number + issue_number?: boolean | number + published_at?: boolean | number + scraped_at?: boolean | number + slug?: boolean | number + source?: boolean | number + teaser?: boolean | number + title?: boolean | number + updated_at?: boolean | number + url?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** aggregate min on columns */ +export interface news_articles_min_fieldsGenqlSelection{ + author?: boolean | number + content_html?: boolean | number + cover_image_url?: boolean | number + created_at?: boolean | number + id?: boolean | number + issue_number?: boolean | number + published_at?: boolean | number + scraped_at?: boolean | number + slug?: boolean | number + source?: boolean | number + teaser?: boolean | number + title?: boolean | number + updated_at?: boolean | number + url?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** response of any mutation on the table "news_articles" */ +export interface news_articles_mutation_responseGenqlSelection{ + /** number of rows affected by the mutation */ + affected_rows?: boolean | number + /** data from the rows affected by the mutation */ + returning?: news_articlesGenqlSelection + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** on_conflict condition type for table "news_articles" */ +export interface news_articles_on_conflict {constraint: news_articles_constraint,update_columns?: news_articles_update_column[],where?: (news_articles_bool_exp | null)} + + +/** Ordering options when selecting data from "news_articles". */ +export interface news_articles_order_by {author?: (order_by | null),content_html?: (order_by | null),cover_image_url?: (order_by | null),created_at?: (order_by | null),id?: (order_by | null),issue_number?: (order_by | null),published_at?: (order_by | null),scraped_at?: (order_by | null),slug?: (order_by | null),source?: (order_by | null),teaser?: (order_by | null),title?: (order_by | null),updated_at?: (order_by | null),url?: (order_by | null)} + + +/** primary key columns input for table: news_articles */ +export interface news_articles_pk_columns_input {id: Scalars['uuid']} + + +/** input type for updating data in table "news_articles" */ +export interface news_articles_set_input {author?: (Scalars['String'] | null),content_html?: (Scalars['String'] | null),cover_image_url?: (Scalars['String'] | null),created_at?: (Scalars['timestamptz'] | null),id?: (Scalars['uuid'] | null),issue_number?: (Scalars['Int'] | null),published_at?: (Scalars['timestamptz'] | null),scraped_at?: (Scalars['timestamptz'] | null),slug?: (Scalars['String'] | null),source?: (Scalars['String'] | null),teaser?: (Scalars['String'] | null),title?: (Scalars['String'] | null),updated_at?: (Scalars['timestamptz'] | null),url?: (Scalars['String'] | null)} + + +/** aggregate stddev on columns */ +export interface news_articles_stddev_fieldsGenqlSelection{ + issue_number?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** aggregate stddev_pop on columns */ +export interface news_articles_stddev_pop_fieldsGenqlSelection{ + issue_number?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** aggregate stddev_samp on columns */ +export interface news_articles_stddev_samp_fieldsGenqlSelection{ + issue_number?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** Streaming cursor of the table "news_articles" */ +export interface news_articles_stream_cursor_input { +/** Stream column input with initial value */ +initial_value: news_articles_stream_cursor_value_input, +/** cursor ordering */ +ordering?: (cursor_ordering | null)} + + +/** Initial value of the column from where the streaming should start */ +export interface news_articles_stream_cursor_value_input {author?: (Scalars['String'] | null),content_html?: (Scalars['String'] | null),cover_image_url?: (Scalars['String'] | null),created_at?: (Scalars['timestamptz'] | null),id?: (Scalars['uuid'] | null),issue_number?: (Scalars['Int'] | null),published_at?: (Scalars['timestamptz'] | null),scraped_at?: (Scalars['timestamptz'] | null),slug?: (Scalars['String'] | null),source?: (Scalars['String'] | null),teaser?: (Scalars['String'] | null),title?: (Scalars['String'] | null),updated_at?: (Scalars['timestamptz'] | null),url?: (Scalars['String'] | null)} + + +/** aggregate sum on columns */ +export interface news_articles_sum_fieldsGenqlSelection{ + issue_number?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + +export interface news_articles_updates { +/** increments the numeric columns with given value of the filtered values */ +_inc?: (news_articles_inc_input | null), +/** sets the columns of the filtered rows to the given values */ +_set?: (news_articles_set_input | null), +/** filter the rows which have to be updated */ +where: news_articles_bool_exp} + + +/** aggregate var_pop on columns */ +export interface news_articles_var_pop_fieldsGenqlSelection{ + issue_number?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** aggregate var_samp on columns */ +export interface news_articles_var_samp_fieldsGenqlSelection{ + issue_number?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** aggregate variance on columns */ +export interface news_articles_variance_fieldsGenqlSelection{ + issue_number?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + /** columns and relationships of "notifications" */ export interface notificationsGenqlSelection{ actions?: { __args: { @@ -50666,6 +54047,7 @@ export interface playersGenqlSelection{ /** filter the rows returned */ where?: (player_kills_by_weapon_bool_exp | null)} }) language?: boolean | number + last_read_news_at?: boolean | number last_sign_in_at?: boolean | number /** An array relationship */ lobby_players?: (lobby_playersGenqlSelection & { __args?: { @@ -51298,7 +54680,7 @@ export interface players_avg_fieldsGenqlSelection{ /** Boolean expression to filter rows from the table "players". All fields are combined with a logical 'AND'. */ -export interface players_bool_exp {_and?: (players_bool_exp[] | null),_not?: (players_bool_exp | null),_or?: (players_bool_exp[] | null),abandoned_matches?: (abandoned_matches_bool_exp | null),abandoned_matches_aggregate?: (abandoned_matches_aggregate_bool_exp | null),aim_weapon_stats?: (player_aim_weapon_stats_bool_exp | null),aim_weapon_stats_aggregate?: (player_aim_weapon_stats_aggregate_bool_exp | null),assists?: (player_assists_bool_exp | null),assists_aggregate?: (player_assists_aggregate_bool_exp | null),assited_by_players?: (player_assists_bool_exp | null),assited_by_players_aggregate?: (player_assists_aggregate_bool_exp | null),avatar_url?: (String_comparison_exp | null),coach_lineups?: (match_lineups_bool_exp | null),coach_lineups_aggregate?: (match_lineups_aggregate_bool_exp | null),country?: (String_comparison_exp | null),created_at?: (timestamptz_comparison_exp | null),current_lobby_id?: (uuid_comparison_exp | null),custom_avatar_url?: (String_comparison_exp | null),damage_dealt?: (player_damages_bool_exp | null),damage_dealt_aggregate?: (player_damages_aggregate_bool_exp | null),damage_taken?: (player_damages_bool_exp | null),damage_taken_aggregate?: (player_damages_aggregate_bool_exp | null),days_since_last_ban?: (Int_comparison_exp | null),deaths?: (player_kills_bool_exp | null),deaths_aggregate?: (player_kills_aggregate_bool_exp | null),discord_id?: (String_comparison_exp | null),elo?: (jsonb_comparison_exp | null),elo_history?: (v_player_elo_bool_exp | null),elo_history_aggregate?: (v_player_elo_aggregate_bool_exp | null),faceit_elo?: (Int_comparison_exp | null),faceit_nickname?: (String_comparison_exp | null),faceit_player_id?: (String_comparison_exp | null),faceit_rank_history?: (player_faceit_rank_history_bool_exp | null),faceit_rank_history_aggregate?: (player_faceit_rank_history_aggregate_bool_exp | null),faceit_skill_level?: (Int_comparison_exp | null),faceit_updated_at?: (timestamptz_comparison_exp | null),faceit_url?: (String_comparison_exp | null),flashed_by_players?: (player_flashes_bool_exp | null),flashed_by_players_aggregate?: (player_flashes_aggregate_bool_exp | null),flashed_players?: (player_flashes_bool_exp | null),flashed_players_aggregate?: (player_flashes_aggregate_bool_exp | null),friends?: (my_friends_bool_exp | null),friends_aggregate?: (my_friends_aggregate_bool_exp | null),game_ban_count?: (Int_comparison_exp | null),invited_players?: (team_invites_bool_exp | null),invited_players_aggregate?: (team_invites_aggregate_bool_exp | null),is_banned?: (Boolean_comparison_exp | null),is_gagged?: (Boolean_comparison_exp | null),is_in_another_match?: (Boolean_comparison_exp | null),is_in_lobby?: (Boolean_comparison_exp | null),is_muted?: (Boolean_comparison_exp | null),kills?: (player_kills_bool_exp | null),kills_aggregate?: (player_kills_aggregate_bool_exp | null),kills_by_weapons?: (player_kills_by_weapon_bool_exp | null),kills_by_weapons_aggregate?: (player_kills_by_weapon_aggregate_bool_exp | null),language?: (String_comparison_exp | null),last_sign_in_at?: (timestamptz_comparison_exp | null),lobby_players?: (lobby_players_bool_exp | null),lobby_players_aggregate?: (lobby_players_aggregate_bool_exp | null),losses?: (Int_comparison_exp | null),losses_competitive?: (Int_comparison_exp | null),losses_duel?: (Int_comparison_exp | null),losses_wingman?: (Int_comparison_exp | null),match_map_hltv?: (v_player_match_map_hltv_bool_exp | null),match_map_hltv_aggregate?: (v_player_match_map_hltv_aggregate_bool_exp | null),match_map_stats?: (player_match_map_stats_bool_exp | null),match_map_stats_aggregate?: (player_match_map_stats_aggregate_bool_exp | null),match_stats?: (player_match_stats_v_bool_exp | null),match_stats_aggregate?: (player_match_stats_v_aggregate_bool_exp | null),matches?: (matches_bool_exp | null),matchmaking_cooldown?: (timestamptz_comparison_exp | null),multi_kills?: (v_player_multi_kills_bool_exp | null),multi_kills_aggregate?: (v_player_multi_kills_aggregate_bool_exp | null),name?: (String_comparison_exp | null),name_registered?: (Boolean_comparison_exp | null),notifications?: (notifications_bool_exp | null),notifications_aggregate?: (notifications_aggregate_bool_exp | null),objectives?: (player_objectives_bool_exp | null),objectives_aggregate?: (player_objectives_aggregate_bool_exp | null),owned_teams?: (teams_bool_exp | null),owned_teams_aggregate?: (teams_aggregate_bool_exp | null),peak_elo?: (jsonb_comparison_exp | null),pending_match_imports?: (pending_match_import_players_bool_exp | null),pending_match_imports_aggregate?: (pending_match_import_players_aggregate_bool_exp | null),player_lineup?: (match_lineup_players_bool_exp | null),player_lineup_aggregate?: (match_lineup_players_aggregate_bool_exp | null),player_unused_utilities?: (player_unused_utility_bool_exp | null),player_unused_utilities_aggregate?: (player_unused_utility_aggregate_bool_exp | null),premier_rank?: (Int_comparison_exp | null),premier_rank_history?: (player_premier_rank_history_bool_exp | null),premier_rank_history_aggregate?: (player_premier_rank_history_aggregate_bool_exp | null),premier_rank_updated_at?: (timestamptz_comparison_exp | null),profile_url?: (String_comparison_exp | null),role?: (e_player_roles_enum_comparison_exp | null),roster_image_url?: (String_comparison_exp | null),sanctions?: (player_sanctions_bool_exp | null),sanctions_aggregate?: (player_sanctions_aggregate_bool_exp | null),show_match_ready_modal?: (Boolean_comparison_exp | null),stats?: (player_stats_bool_exp | null),steam_bans_checked_at?: (timestamptz_comparison_exp | null),steam_id?: (bigint_comparison_exp | null),team_invites?: (team_invites_bool_exp | null),team_invites_aggregate?: (team_invites_aggregate_bool_exp | null),team_members?: (team_roster_bool_exp | null),team_members_aggregate?: (team_roster_aggregate_bool_exp | null),teams?: (teams_bool_exp | null),total_matches?: (Int_comparison_exp | null),tournament_organizers?: (tournament_organizers_bool_exp | null),tournament_organizers_aggregate?: (tournament_organizers_aggregate_bool_exp | null),tournament_rosters?: (tournament_team_roster_bool_exp | null),tournament_rosters_aggregate?: (tournament_team_roster_aggregate_bool_exp | null),tournament_trophies?: (tournament_trophies_bool_exp | null),tournament_trophies_aggregate?: (tournament_trophies_aggregate_bool_exp | null),tournaments?: (tournaments_bool_exp | null),tournaments_aggregate?: (tournaments_aggregate_bool_exp | null),utility_thrown?: (player_utility_bool_exp | null),utility_thrown_aggregate?: (player_utility_aggregate_bool_exp | null),vac_ban_count?: (Int_comparison_exp | null),vac_banned?: (Boolean_comparison_exp | null),weapon_stats?: (player_weapon_stats_v_bool_exp | null),weapon_stats_aggregate?: (player_weapon_stats_v_aggregate_bool_exp | null),wins?: (Int_comparison_exp | null),wins_competitive?: (Int_comparison_exp | null),wins_duel?: (Int_comparison_exp | null),wins_wingman?: (Int_comparison_exp | null)} +export interface players_bool_exp {_and?: (players_bool_exp[] | null),_not?: (players_bool_exp | null),_or?: (players_bool_exp[] | null),abandoned_matches?: (abandoned_matches_bool_exp | null),abandoned_matches_aggregate?: (abandoned_matches_aggregate_bool_exp | null),aim_weapon_stats?: (player_aim_weapon_stats_bool_exp | null),aim_weapon_stats_aggregate?: (player_aim_weapon_stats_aggregate_bool_exp | null),assists?: (player_assists_bool_exp | null),assists_aggregate?: (player_assists_aggregate_bool_exp | null),assited_by_players?: (player_assists_bool_exp | null),assited_by_players_aggregate?: (player_assists_aggregate_bool_exp | null),avatar_url?: (String_comparison_exp | null),coach_lineups?: (match_lineups_bool_exp | null),coach_lineups_aggregate?: (match_lineups_aggregate_bool_exp | null),country?: (String_comparison_exp | null),created_at?: (timestamptz_comparison_exp | null),current_lobby_id?: (uuid_comparison_exp | null),custom_avatar_url?: (String_comparison_exp | null),damage_dealt?: (player_damages_bool_exp | null),damage_dealt_aggregate?: (player_damages_aggregate_bool_exp | null),damage_taken?: (player_damages_bool_exp | null),damage_taken_aggregate?: (player_damages_aggregate_bool_exp | null),days_since_last_ban?: (Int_comparison_exp | null),deaths?: (player_kills_bool_exp | null),deaths_aggregate?: (player_kills_aggregate_bool_exp | null),discord_id?: (String_comparison_exp | null),elo?: (jsonb_comparison_exp | null),elo_history?: (v_player_elo_bool_exp | null),elo_history_aggregate?: (v_player_elo_aggregate_bool_exp | null),faceit_elo?: (Int_comparison_exp | null),faceit_nickname?: (String_comparison_exp | null),faceit_player_id?: (String_comparison_exp | null),faceit_rank_history?: (player_faceit_rank_history_bool_exp | null),faceit_rank_history_aggregate?: (player_faceit_rank_history_aggregate_bool_exp | null),faceit_skill_level?: (Int_comparison_exp | null),faceit_updated_at?: (timestamptz_comparison_exp | null),faceit_url?: (String_comparison_exp | null),flashed_by_players?: (player_flashes_bool_exp | null),flashed_by_players_aggregate?: (player_flashes_aggregate_bool_exp | null),flashed_players?: (player_flashes_bool_exp | null),flashed_players_aggregate?: (player_flashes_aggregate_bool_exp | null),friends?: (my_friends_bool_exp | null),friends_aggregate?: (my_friends_aggregate_bool_exp | null),game_ban_count?: (Int_comparison_exp | null),invited_players?: (team_invites_bool_exp | null),invited_players_aggregate?: (team_invites_aggregate_bool_exp | null),is_banned?: (Boolean_comparison_exp | null),is_gagged?: (Boolean_comparison_exp | null),is_in_another_match?: (Boolean_comparison_exp | null),is_in_lobby?: (Boolean_comparison_exp | null),is_muted?: (Boolean_comparison_exp | null),kills?: (player_kills_bool_exp | null),kills_aggregate?: (player_kills_aggregate_bool_exp | null),kills_by_weapons?: (player_kills_by_weapon_bool_exp | null),kills_by_weapons_aggregate?: (player_kills_by_weapon_aggregate_bool_exp | null),language?: (String_comparison_exp | null),last_read_news_at?: (timestamptz_comparison_exp | null),last_sign_in_at?: (timestamptz_comparison_exp | null),lobby_players?: (lobby_players_bool_exp | null),lobby_players_aggregate?: (lobby_players_aggregate_bool_exp | null),losses?: (Int_comparison_exp | null),losses_competitive?: (Int_comparison_exp | null),losses_duel?: (Int_comparison_exp | null),losses_wingman?: (Int_comparison_exp | null),match_map_hltv?: (v_player_match_map_hltv_bool_exp | null),match_map_hltv_aggregate?: (v_player_match_map_hltv_aggregate_bool_exp | null),match_map_stats?: (player_match_map_stats_bool_exp | null),match_map_stats_aggregate?: (player_match_map_stats_aggregate_bool_exp | null),match_stats?: (player_match_stats_v_bool_exp | null),match_stats_aggregate?: (player_match_stats_v_aggregate_bool_exp | null),matches?: (matches_bool_exp | null),matchmaking_cooldown?: (timestamptz_comparison_exp | null),multi_kills?: (v_player_multi_kills_bool_exp | null),multi_kills_aggregate?: (v_player_multi_kills_aggregate_bool_exp | null),name?: (String_comparison_exp | null),name_registered?: (Boolean_comparison_exp | null),notifications?: (notifications_bool_exp | null),notifications_aggregate?: (notifications_aggregate_bool_exp | null),objectives?: (player_objectives_bool_exp | null),objectives_aggregate?: (player_objectives_aggregate_bool_exp | null),owned_teams?: (teams_bool_exp | null),owned_teams_aggregate?: (teams_aggregate_bool_exp | null),peak_elo?: (jsonb_comparison_exp | null),pending_match_imports?: (pending_match_import_players_bool_exp | null),pending_match_imports_aggregate?: (pending_match_import_players_aggregate_bool_exp | null),player_lineup?: (match_lineup_players_bool_exp | null),player_lineup_aggregate?: (match_lineup_players_aggregate_bool_exp | null),player_unused_utilities?: (player_unused_utility_bool_exp | null),player_unused_utilities_aggregate?: (player_unused_utility_aggregate_bool_exp | null),premier_rank?: (Int_comparison_exp | null),premier_rank_history?: (player_premier_rank_history_bool_exp | null),premier_rank_history_aggregate?: (player_premier_rank_history_aggregate_bool_exp | null),premier_rank_updated_at?: (timestamptz_comparison_exp | null),profile_url?: (String_comparison_exp | null),role?: (e_player_roles_enum_comparison_exp | null),roster_image_url?: (String_comparison_exp | null),sanctions?: (player_sanctions_bool_exp | null),sanctions_aggregate?: (player_sanctions_aggregate_bool_exp | null),show_match_ready_modal?: (Boolean_comparison_exp | null),stats?: (player_stats_bool_exp | null),steam_bans_checked_at?: (timestamptz_comparison_exp | null),steam_id?: (bigint_comparison_exp | null),team_invites?: (team_invites_bool_exp | null),team_invites_aggregate?: (team_invites_aggregate_bool_exp | null),team_members?: (team_roster_bool_exp | null),team_members_aggregate?: (team_roster_aggregate_bool_exp | null),teams?: (teams_bool_exp | null),total_matches?: (Int_comparison_exp | null),tournament_organizers?: (tournament_organizers_bool_exp | null),tournament_organizers_aggregate?: (tournament_organizers_aggregate_bool_exp | null),tournament_rosters?: (tournament_team_roster_bool_exp | null),tournament_rosters_aggregate?: (tournament_team_roster_aggregate_bool_exp | null),tournament_trophies?: (tournament_trophies_bool_exp | null),tournament_trophies_aggregate?: (tournament_trophies_aggregate_bool_exp | null),tournaments?: (tournaments_bool_exp | null),tournaments_aggregate?: (tournaments_aggregate_bool_exp | null),utility_thrown?: (player_utility_bool_exp | null),utility_thrown_aggregate?: (player_utility_aggregate_bool_exp | null),vac_ban_count?: (Int_comparison_exp | null),vac_banned?: (Boolean_comparison_exp | null),weapon_stats?: (player_weapon_stats_v_bool_exp | null),weapon_stats_aggregate?: (player_weapon_stats_v_aggregate_bool_exp | null),wins?: (Int_comparison_exp | null),wins_competitive?: (Int_comparison_exp | null),wins_duel?: (Int_comparison_exp | null),wins_wingman?: (Int_comparison_exp | null)} /** input type for incrementing numeric columns in table "players" */ @@ -51306,7 +54688,7 @@ export interface players_inc_input {days_since_last_ban?: (Scalars['Int'] | null /** input type for inserting data into table "players" */ -export interface players_insert_input {abandoned_matches?: (abandoned_matches_arr_rel_insert_input | null),aim_weapon_stats?: (player_aim_weapon_stats_arr_rel_insert_input | null),assists?: (player_assists_arr_rel_insert_input | null),assited_by_players?: (player_assists_arr_rel_insert_input | null),avatar_url?: (Scalars['String'] | null),coach_lineups?: (match_lineups_arr_rel_insert_input | null),country?: (Scalars['String'] | null),created_at?: (Scalars['timestamptz'] | null),custom_avatar_url?: (Scalars['String'] | null),damage_dealt?: (player_damages_arr_rel_insert_input | null),damage_taken?: (player_damages_arr_rel_insert_input | null),days_since_last_ban?: (Scalars['Int'] | null),deaths?: (player_kills_arr_rel_insert_input | null),discord_id?: (Scalars['String'] | null),elo_history?: (v_player_elo_arr_rel_insert_input | null),faceit_elo?: (Scalars['Int'] | null),faceit_nickname?: (Scalars['String'] | null),faceit_player_id?: (Scalars['String'] | null),faceit_rank_history?: (player_faceit_rank_history_arr_rel_insert_input | null),faceit_skill_level?: (Scalars['Int'] | null),faceit_updated_at?: (Scalars['timestamptz'] | null),faceit_url?: (Scalars['String'] | null),flashed_by_players?: (player_flashes_arr_rel_insert_input | null),flashed_players?: (player_flashes_arr_rel_insert_input | null),friends?: (my_friends_arr_rel_insert_input | null),game_ban_count?: (Scalars['Int'] | null),invited_players?: (team_invites_arr_rel_insert_input | null),kills?: (player_kills_arr_rel_insert_input | null),kills_by_weapons?: (player_kills_by_weapon_arr_rel_insert_input | null),language?: (Scalars['String'] | null),last_sign_in_at?: (Scalars['timestamptz'] | null),lobby_players?: (lobby_players_arr_rel_insert_input | null),match_map_hltv?: (v_player_match_map_hltv_arr_rel_insert_input | null),match_map_stats?: (player_match_map_stats_arr_rel_insert_input | null),match_stats?: (player_match_stats_v_arr_rel_insert_input | null),multi_kills?: (v_player_multi_kills_arr_rel_insert_input | null),name?: (Scalars['String'] | null),name_registered?: (Scalars['Boolean'] | null),notifications?: (notifications_arr_rel_insert_input | null),objectives?: (player_objectives_arr_rel_insert_input | null),owned_teams?: (teams_arr_rel_insert_input | null),pending_match_imports?: (pending_match_import_players_arr_rel_insert_input | null),player_lineup?: (match_lineup_players_arr_rel_insert_input | null),player_unused_utilities?: (player_unused_utility_arr_rel_insert_input | null),premier_rank?: (Scalars['Int'] | null),premier_rank_history?: (player_premier_rank_history_arr_rel_insert_input | null),premier_rank_updated_at?: (Scalars['timestamptz'] | null),profile_url?: (Scalars['String'] | null),role?: (e_player_roles_enum | null),roster_image_url?: (Scalars['String'] | null),sanctions?: (player_sanctions_arr_rel_insert_input | null),show_match_ready_modal?: (Scalars['Boolean'] | null),stats?: (player_stats_obj_rel_insert_input | null),steam_bans_checked_at?: (Scalars['timestamptz'] | null),steam_id?: (Scalars['bigint'] | null),team_invites?: (team_invites_arr_rel_insert_input | null),team_members?: (team_roster_arr_rel_insert_input | null),tournament_organizers?: (tournament_organizers_arr_rel_insert_input | null),tournament_rosters?: (tournament_team_roster_arr_rel_insert_input | null),tournament_trophies?: (tournament_trophies_arr_rel_insert_input | null),tournaments?: (tournaments_arr_rel_insert_input | null),utility_thrown?: (player_utility_arr_rel_insert_input | null),vac_ban_count?: (Scalars['Int'] | null),vac_banned?: (Scalars['Boolean'] | null),weapon_stats?: (player_weapon_stats_v_arr_rel_insert_input | null)} +export interface players_insert_input {abandoned_matches?: (abandoned_matches_arr_rel_insert_input | null),aim_weapon_stats?: (player_aim_weapon_stats_arr_rel_insert_input | null),assists?: (player_assists_arr_rel_insert_input | null),assited_by_players?: (player_assists_arr_rel_insert_input | null),avatar_url?: (Scalars['String'] | null),coach_lineups?: (match_lineups_arr_rel_insert_input | null),country?: (Scalars['String'] | null),created_at?: (Scalars['timestamptz'] | null),custom_avatar_url?: (Scalars['String'] | null),damage_dealt?: (player_damages_arr_rel_insert_input | null),damage_taken?: (player_damages_arr_rel_insert_input | null),days_since_last_ban?: (Scalars['Int'] | null),deaths?: (player_kills_arr_rel_insert_input | null),discord_id?: (Scalars['String'] | null),elo_history?: (v_player_elo_arr_rel_insert_input | null),faceit_elo?: (Scalars['Int'] | null),faceit_nickname?: (Scalars['String'] | null),faceit_player_id?: (Scalars['String'] | null),faceit_rank_history?: (player_faceit_rank_history_arr_rel_insert_input | null),faceit_skill_level?: (Scalars['Int'] | null),faceit_updated_at?: (Scalars['timestamptz'] | null),faceit_url?: (Scalars['String'] | null),flashed_by_players?: (player_flashes_arr_rel_insert_input | null),flashed_players?: (player_flashes_arr_rel_insert_input | null),friends?: (my_friends_arr_rel_insert_input | null),game_ban_count?: (Scalars['Int'] | null),invited_players?: (team_invites_arr_rel_insert_input | null),kills?: (player_kills_arr_rel_insert_input | null),kills_by_weapons?: (player_kills_by_weapon_arr_rel_insert_input | null),language?: (Scalars['String'] | null),last_read_news_at?: (Scalars['timestamptz'] | null),last_sign_in_at?: (Scalars['timestamptz'] | null),lobby_players?: (lobby_players_arr_rel_insert_input | null),match_map_hltv?: (v_player_match_map_hltv_arr_rel_insert_input | null),match_map_stats?: (player_match_map_stats_arr_rel_insert_input | null),match_stats?: (player_match_stats_v_arr_rel_insert_input | null),multi_kills?: (v_player_multi_kills_arr_rel_insert_input | null),name?: (Scalars['String'] | null),name_registered?: (Scalars['Boolean'] | null),notifications?: (notifications_arr_rel_insert_input | null),objectives?: (player_objectives_arr_rel_insert_input | null),owned_teams?: (teams_arr_rel_insert_input | null),pending_match_imports?: (pending_match_import_players_arr_rel_insert_input | null),player_lineup?: (match_lineup_players_arr_rel_insert_input | null),player_unused_utilities?: (player_unused_utility_arr_rel_insert_input | null),premier_rank?: (Scalars['Int'] | null),premier_rank_history?: (player_premier_rank_history_arr_rel_insert_input | null),premier_rank_updated_at?: (Scalars['timestamptz'] | null),profile_url?: (Scalars['String'] | null),role?: (e_player_roles_enum | null),roster_image_url?: (Scalars['String'] | null),sanctions?: (player_sanctions_arr_rel_insert_input | null),show_match_ready_modal?: (Scalars['Boolean'] | null),stats?: (player_stats_obj_rel_insert_input | null),steam_bans_checked_at?: (Scalars['timestamptz'] | null),steam_id?: (Scalars['bigint'] | null),team_invites?: (team_invites_arr_rel_insert_input | null),team_members?: (team_roster_arr_rel_insert_input | null),tournament_organizers?: (tournament_organizers_arr_rel_insert_input | null),tournament_rosters?: (tournament_team_roster_arr_rel_insert_input | null),tournament_trophies?: (tournament_trophies_arr_rel_insert_input | null),tournaments?: (tournaments_arr_rel_insert_input | null),utility_thrown?: (player_utility_arr_rel_insert_input | null),vac_ban_count?: (Scalars['Int'] | null),vac_banned?: (Scalars['Boolean'] | null),weapon_stats?: (player_weapon_stats_v_arr_rel_insert_input | null)} /** aggregate max on columns */ @@ -51327,6 +54709,7 @@ export interface players_max_fieldsGenqlSelection{ faceit_url?: boolean | number game_ban_count?: boolean | number language?: boolean | number + last_read_news_at?: boolean | number last_sign_in_at?: boolean | number /** A computed field, executes function "get_total_player_losses" */ losses?: boolean | number @@ -51379,6 +54762,7 @@ export interface players_min_fieldsGenqlSelection{ faceit_url?: boolean | number game_ban_count?: boolean | number language?: boolean | number + last_read_news_at?: boolean | number last_sign_in_at?: boolean | number /** A computed field, executes function "get_total_player_losses" */ losses?: boolean | number @@ -51435,7 +54819,7 @@ export interface players_on_conflict {constraint: players_constraint,update_colu /** Ordering options when selecting data from "players". */ -export interface players_order_by {abandoned_matches_aggregate?: (abandoned_matches_aggregate_order_by | null),aim_weapon_stats_aggregate?: (player_aim_weapon_stats_aggregate_order_by | null),assists_aggregate?: (player_assists_aggregate_order_by | null),assited_by_players_aggregate?: (player_assists_aggregate_order_by | null),avatar_url?: (order_by | null),coach_lineups_aggregate?: (match_lineups_aggregate_order_by | null),country?: (order_by | null),created_at?: (order_by | null),current_lobby_id?: (order_by | null),custom_avatar_url?: (order_by | null),damage_dealt_aggregate?: (player_damages_aggregate_order_by | null),damage_taken_aggregate?: (player_damages_aggregate_order_by | null),days_since_last_ban?: (order_by | null),deaths_aggregate?: (player_kills_aggregate_order_by | null),discord_id?: (order_by | null),elo?: (order_by | null),elo_history_aggregate?: (v_player_elo_aggregate_order_by | null),faceit_elo?: (order_by | null),faceit_nickname?: (order_by | null),faceit_player_id?: (order_by | null),faceit_rank_history_aggregate?: (player_faceit_rank_history_aggregate_order_by | null),faceit_skill_level?: (order_by | null),faceit_updated_at?: (order_by | null),faceit_url?: (order_by | null),flashed_by_players_aggregate?: (player_flashes_aggregate_order_by | null),flashed_players_aggregate?: (player_flashes_aggregate_order_by | null),friends_aggregate?: (my_friends_aggregate_order_by | null),game_ban_count?: (order_by | null),invited_players_aggregate?: (team_invites_aggregate_order_by | null),is_banned?: (order_by | null),is_gagged?: (order_by | null),is_in_another_match?: (order_by | null),is_in_lobby?: (order_by | null),is_muted?: (order_by | null),kills_aggregate?: (player_kills_aggregate_order_by | null),kills_by_weapons_aggregate?: (player_kills_by_weapon_aggregate_order_by | null),language?: (order_by | null),last_sign_in_at?: (order_by | null),lobby_players_aggregate?: (lobby_players_aggregate_order_by | null),losses?: (order_by | null),losses_competitive?: (order_by | null),losses_duel?: (order_by | null),losses_wingman?: (order_by | null),match_map_hltv_aggregate?: (v_player_match_map_hltv_aggregate_order_by | null),match_map_stats_aggregate?: (player_match_map_stats_aggregate_order_by | null),match_stats_aggregate?: (player_match_stats_v_aggregate_order_by | null),matches_aggregate?: (matches_aggregate_order_by | null),matchmaking_cooldown?: (order_by | null),multi_kills_aggregate?: (v_player_multi_kills_aggregate_order_by | null),name?: (order_by | null),name_registered?: (order_by | null),notifications_aggregate?: (notifications_aggregate_order_by | null),objectives_aggregate?: (player_objectives_aggregate_order_by | null),owned_teams_aggregate?: (teams_aggregate_order_by | null),peak_elo?: (order_by | null),pending_match_imports_aggregate?: (pending_match_import_players_aggregate_order_by | null),player_lineup_aggregate?: (match_lineup_players_aggregate_order_by | null),player_unused_utilities_aggregate?: (player_unused_utility_aggregate_order_by | null),premier_rank?: (order_by | null),premier_rank_history_aggregate?: (player_premier_rank_history_aggregate_order_by | null),premier_rank_updated_at?: (order_by | null),profile_url?: (order_by | null),role?: (order_by | null),roster_image_url?: (order_by | null),sanctions_aggregate?: (player_sanctions_aggregate_order_by | null),show_match_ready_modal?: (order_by | null),stats?: (player_stats_order_by | null),steam_bans_checked_at?: (order_by | null),steam_id?: (order_by | null),team_invites_aggregate?: (team_invites_aggregate_order_by | null),team_members_aggregate?: (team_roster_aggregate_order_by | null),teams_aggregate?: (teams_aggregate_order_by | null),total_matches?: (order_by | null),tournament_organizers_aggregate?: (tournament_organizers_aggregate_order_by | null),tournament_rosters_aggregate?: (tournament_team_roster_aggregate_order_by | null),tournament_trophies_aggregate?: (tournament_trophies_aggregate_order_by | null),tournaments_aggregate?: (tournaments_aggregate_order_by | null),utility_thrown_aggregate?: (player_utility_aggregate_order_by | null),vac_ban_count?: (order_by | null),vac_banned?: (order_by | null),weapon_stats_aggregate?: (player_weapon_stats_v_aggregate_order_by | null),wins?: (order_by | null),wins_competitive?: (order_by | null),wins_duel?: (order_by | null),wins_wingman?: (order_by | null)} +export interface players_order_by {abandoned_matches_aggregate?: (abandoned_matches_aggregate_order_by | null),aim_weapon_stats_aggregate?: (player_aim_weapon_stats_aggregate_order_by | null),assists_aggregate?: (player_assists_aggregate_order_by | null),assited_by_players_aggregate?: (player_assists_aggregate_order_by | null),avatar_url?: (order_by | null),coach_lineups_aggregate?: (match_lineups_aggregate_order_by | null),country?: (order_by | null),created_at?: (order_by | null),current_lobby_id?: (order_by | null),custom_avatar_url?: (order_by | null),damage_dealt_aggregate?: (player_damages_aggregate_order_by | null),damage_taken_aggregate?: (player_damages_aggregate_order_by | null),days_since_last_ban?: (order_by | null),deaths_aggregate?: (player_kills_aggregate_order_by | null),discord_id?: (order_by | null),elo?: (order_by | null),elo_history_aggregate?: (v_player_elo_aggregate_order_by | null),faceit_elo?: (order_by | null),faceit_nickname?: (order_by | null),faceit_player_id?: (order_by | null),faceit_rank_history_aggregate?: (player_faceit_rank_history_aggregate_order_by | null),faceit_skill_level?: (order_by | null),faceit_updated_at?: (order_by | null),faceit_url?: (order_by | null),flashed_by_players_aggregate?: (player_flashes_aggregate_order_by | null),flashed_players_aggregate?: (player_flashes_aggregate_order_by | null),friends_aggregate?: (my_friends_aggregate_order_by | null),game_ban_count?: (order_by | null),invited_players_aggregate?: (team_invites_aggregate_order_by | null),is_banned?: (order_by | null),is_gagged?: (order_by | null),is_in_another_match?: (order_by | null),is_in_lobby?: (order_by | null),is_muted?: (order_by | null),kills_aggregate?: (player_kills_aggregate_order_by | null),kills_by_weapons_aggregate?: (player_kills_by_weapon_aggregate_order_by | null),language?: (order_by | null),last_read_news_at?: (order_by | null),last_sign_in_at?: (order_by | null),lobby_players_aggregate?: (lobby_players_aggregate_order_by | null),losses?: (order_by | null),losses_competitive?: (order_by | null),losses_duel?: (order_by | null),losses_wingman?: (order_by | null),match_map_hltv_aggregate?: (v_player_match_map_hltv_aggregate_order_by | null),match_map_stats_aggregate?: (player_match_map_stats_aggregate_order_by | null),match_stats_aggregate?: (player_match_stats_v_aggregate_order_by | null),matches_aggregate?: (matches_aggregate_order_by | null),matchmaking_cooldown?: (order_by | null),multi_kills_aggregate?: (v_player_multi_kills_aggregate_order_by | null),name?: (order_by | null),name_registered?: (order_by | null),notifications_aggregate?: (notifications_aggregate_order_by | null),objectives_aggregate?: (player_objectives_aggregate_order_by | null),owned_teams_aggregate?: (teams_aggregate_order_by | null),peak_elo?: (order_by | null),pending_match_imports_aggregate?: (pending_match_import_players_aggregate_order_by | null),player_lineup_aggregate?: (match_lineup_players_aggregate_order_by | null),player_unused_utilities_aggregate?: (player_unused_utility_aggregate_order_by | null),premier_rank?: (order_by | null),premier_rank_history_aggregate?: (player_premier_rank_history_aggregate_order_by | null),premier_rank_updated_at?: (order_by | null),profile_url?: (order_by | null),role?: (order_by | null),roster_image_url?: (order_by | null),sanctions_aggregate?: (player_sanctions_aggregate_order_by | null),show_match_ready_modal?: (order_by | null),stats?: (player_stats_order_by | null),steam_bans_checked_at?: (order_by | null),steam_id?: (order_by | null),team_invites_aggregate?: (team_invites_aggregate_order_by | null),team_members_aggregate?: (team_roster_aggregate_order_by | null),teams_aggregate?: (teams_aggregate_order_by | null),total_matches?: (order_by | null),tournament_organizers_aggregate?: (tournament_organizers_aggregate_order_by | null),tournament_rosters_aggregate?: (tournament_team_roster_aggregate_order_by | null),tournament_trophies_aggregate?: (tournament_trophies_aggregate_order_by | null),tournaments_aggregate?: (tournaments_aggregate_order_by | null),utility_thrown_aggregate?: (player_utility_aggregate_order_by | null),vac_ban_count?: (order_by | null),vac_banned?: (order_by | null),weapon_stats_aggregate?: (player_weapon_stats_v_aggregate_order_by | null),wins?: (order_by | null),wins_competitive?: (order_by | null),wins_duel?: (order_by | null),wins_wingman?: (order_by | null)} /** primary key columns input for table: players */ @@ -51443,7 +54827,7 @@ export interface players_pk_columns_input {steam_id: Scalars['bigint']} /** input type for updating data in table "players" */ -export interface players_set_input {avatar_url?: (Scalars['String'] | null),country?: (Scalars['String'] | null),created_at?: (Scalars['timestamptz'] | null),custom_avatar_url?: (Scalars['String'] | null),days_since_last_ban?: (Scalars['Int'] | null),discord_id?: (Scalars['String'] | null),faceit_elo?: (Scalars['Int'] | null),faceit_nickname?: (Scalars['String'] | null),faceit_player_id?: (Scalars['String'] | null),faceit_skill_level?: (Scalars['Int'] | null),faceit_updated_at?: (Scalars['timestamptz'] | null),faceit_url?: (Scalars['String'] | null),game_ban_count?: (Scalars['Int'] | null),language?: (Scalars['String'] | null),last_sign_in_at?: (Scalars['timestamptz'] | null),name?: (Scalars['String'] | null),name_registered?: (Scalars['Boolean'] | null),premier_rank?: (Scalars['Int'] | null),premier_rank_updated_at?: (Scalars['timestamptz'] | null),profile_url?: (Scalars['String'] | null),role?: (e_player_roles_enum | null),roster_image_url?: (Scalars['String'] | null),show_match_ready_modal?: (Scalars['Boolean'] | null),steam_bans_checked_at?: (Scalars['timestamptz'] | null),steam_id?: (Scalars['bigint'] | null),vac_ban_count?: (Scalars['Int'] | null),vac_banned?: (Scalars['Boolean'] | null)} +export interface players_set_input {avatar_url?: (Scalars['String'] | null),country?: (Scalars['String'] | null),created_at?: (Scalars['timestamptz'] | null),custom_avatar_url?: (Scalars['String'] | null),days_since_last_ban?: (Scalars['Int'] | null),discord_id?: (Scalars['String'] | null),faceit_elo?: (Scalars['Int'] | null),faceit_nickname?: (Scalars['String'] | null),faceit_player_id?: (Scalars['String'] | null),faceit_skill_level?: (Scalars['Int'] | null),faceit_updated_at?: (Scalars['timestamptz'] | null),faceit_url?: (Scalars['String'] | null),game_ban_count?: (Scalars['Int'] | null),language?: (Scalars['String'] | null),last_read_news_at?: (Scalars['timestamptz'] | null),last_sign_in_at?: (Scalars['timestamptz'] | null),name?: (Scalars['String'] | null),name_registered?: (Scalars['Boolean'] | null),premier_rank?: (Scalars['Int'] | null),premier_rank_updated_at?: (Scalars['timestamptz'] | null),profile_url?: (Scalars['String'] | null),role?: (e_player_roles_enum | null),roster_image_url?: (Scalars['String'] | null),show_match_ready_modal?: (Scalars['Boolean'] | null),steam_bans_checked_at?: (Scalars['timestamptz'] | null),steam_id?: (Scalars['bigint'] | null),vac_ban_count?: (Scalars['Int'] | null),vac_banned?: (Scalars['Boolean'] | null)} /** aggregate stddev on columns */ @@ -51551,7 +54935,7 @@ ordering?: (cursor_ordering | null)} /** Initial value of the column from where the streaming should start */ -export interface players_stream_cursor_value_input {avatar_url?: (Scalars['String'] | null),country?: (Scalars['String'] | null),created_at?: (Scalars['timestamptz'] | null),custom_avatar_url?: (Scalars['String'] | null),days_since_last_ban?: (Scalars['Int'] | null),discord_id?: (Scalars['String'] | null),faceit_elo?: (Scalars['Int'] | null),faceit_nickname?: (Scalars['String'] | null),faceit_player_id?: (Scalars['String'] | null),faceit_skill_level?: (Scalars['Int'] | null),faceit_updated_at?: (Scalars['timestamptz'] | null),faceit_url?: (Scalars['String'] | null),game_ban_count?: (Scalars['Int'] | null),language?: (Scalars['String'] | null),last_sign_in_at?: (Scalars['timestamptz'] | null),name?: (Scalars['String'] | null),name_registered?: (Scalars['Boolean'] | null),premier_rank?: (Scalars['Int'] | null),premier_rank_updated_at?: (Scalars['timestamptz'] | null),profile_url?: (Scalars['String'] | null),role?: (e_player_roles_enum | null),roster_image_url?: (Scalars['String'] | null),show_match_ready_modal?: (Scalars['Boolean'] | null),steam_bans_checked_at?: (Scalars['timestamptz'] | null),steam_id?: (Scalars['bigint'] | null),vac_ban_count?: (Scalars['Int'] | null),vac_banned?: (Scalars['Boolean'] | null)} +export interface players_stream_cursor_value_input {avatar_url?: (Scalars['String'] | null),country?: (Scalars['String'] | null),created_at?: (Scalars['timestamptz'] | null),custom_avatar_url?: (Scalars['String'] | null),days_since_last_ban?: (Scalars['Int'] | null),discord_id?: (Scalars['String'] | null),faceit_elo?: (Scalars['Int'] | null),faceit_nickname?: (Scalars['String'] | null),faceit_player_id?: (Scalars['String'] | null),faceit_skill_level?: (Scalars['Int'] | null),faceit_updated_at?: (Scalars['timestamptz'] | null),faceit_url?: (Scalars['String'] | null),game_ban_count?: (Scalars['Int'] | null),language?: (Scalars['String'] | null),last_read_news_at?: (Scalars['timestamptz'] | null),last_sign_in_at?: (Scalars['timestamptz'] | null),name?: (Scalars['String'] | null),name_registered?: (Scalars['Boolean'] | null),premier_rank?: (Scalars['Int'] | null),premier_rank_updated_at?: (Scalars['timestamptz'] | null),profile_url?: (Scalars['String'] | null),role?: (e_player_roles_enum | null),roster_image_url?: (Scalars['String'] | null),show_match_ready_modal?: (Scalars['Boolean'] | null),steam_bans_checked_at?: (Scalars['timestamptz'] | null),steam_id?: (Scalars['bigint'] | null),vac_ban_count?: (Scalars['Int'] | null),vac_banned?: (Scalars['Boolean'] | null)} /** aggregate sum on columns */ @@ -52001,6 +55385,84 @@ export interface query_rootGenqlSelection{ where?: (db_backups_bool_exp | null)} }) /** fetch data from the table: "db_backups" using primary key columns */ db_backups_by_pk?: (db_backupsGenqlSelection & { __args: {id: Scalars['uuid']} }) + /** fetch data from the table: "draft_game_picks" */ + draft_game_picks?: (draft_game_picksGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (draft_game_picks_select_column[] | null), + /** limit the number of rows returned */ + limit?: (Scalars['Int'] | null), + /** skip the first n rows. Use only with order_by */ + offset?: (Scalars['Int'] | null), + /** sort the rows by one or more columns */ + order_by?: (draft_game_picks_order_by[] | null), + /** filter the rows returned */ + where?: (draft_game_picks_bool_exp | null)} }) + /** fetch aggregated fields from the table: "draft_game_picks" */ + draft_game_picks_aggregate?: (draft_game_picks_aggregateGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (draft_game_picks_select_column[] | null), + /** limit the number of rows returned */ + limit?: (Scalars['Int'] | null), + /** skip the first n rows. Use only with order_by */ + offset?: (Scalars['Int'] | null), + /** sort the rows by one or more columns */ + order_by?: (draft_game_picks_order_by[] | null), + /** filter the rows returned */ + where?: (draft_game_picks_bool_exp | null)} }) + /** fetch data from the table: "draft_game_picks" using primary key columns */ + draft_game_picks_by_pk?: (draft_game_picksGenqlSelection & { __args: {id: Scalars['uuid']} }) + /** fetch data from the table: "draft_game_players" */ + draft_game_players?: (draft_game_playersGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (draft_game_players_select_column[] | null), + /** limit the number of rows returned */ + limit?: (Scalars['Int'] | null), + /** skip the first n rows. Use only with order_by */ + offset?: (Scalars['Int'] | null), + /** sort the rows by one or more columns */ + order_by?: (draft_game_players_order_by[] | null), + /** filter the rows returned */ + where?: (draft_game_players_bool_exp | null)} }) + /** fetch aggregated fields from the table: "draft_game_players" */ + draft_game_players_aggregate?: (draft_game_players_aggregateGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (draft_game_players_select_column[] | null), + /** limit the number of rows returned */ + limit?: (Scalars['Int'] | null), + /** skip the first n rows. Use only with order_by */ + offset?: (Scalars['Int'] | null), + /** sort the rows by one or more columns */ + order_by?: (draft_game_players_order_by[] | null), + /** filter the rows returned */ + where?: (draft_game_players_bool_exp | null)} }) + /** fetch data from the table: "draft_game_players" using primary key columns */ + draft_game_players_by_pk?: (draft_game_playersGenqlSelection & { __args: {draft_game_id: Scalars['uuid'], steam_id: Scalars['bigint']} }) + /** An array relationship */ + draft_games?: (draft_gamesGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (draft_games_select_column[] | null), + /** limit the number of rows returned */ + limit?: (Scalars['Int'] | null), + /** skip the first n rows. Use only with order_by */ + offset?: (Scalars['Int'] | null), + /** sort the rows by one or more columns */ + order_by?: (draft_games_order_by[] | null), + /** filter the rows returned */ + where?: (draft_games_bool_exp | null)} }) + /** An aggregate relationship */ + draft_games_aggregate?: (draft_games_aggregateGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (draft_games_select_column[] | null), + /** limit the number of rows returned */ + limit?: (Scalars['Int'] | null), + /** skip the first n rows. Use only with order_by */ + offset?: (Scalars['Int'] | null), + /** sort the rows by one or more columns */ + order_by?: (draft_games_order_by[] | null), + /** filter the rows returned */ + where?: (draft_games_bool_exp | null)} }) + /** fetch data from the table: "draft_games" using primary key columns */ + draft_games_by_pk?: (draft_gamesGenqlSelection & { __args: {id: Scalars['uuid']} }) /** fetch data from the table: "e_check_in_settings" */ e_check_in_settings?: (e_check_in_settingsGenqlSelection & { __args?: { /** distinct select on columns */ @@ -52027,6 +55489,136 @@ export interface query_rootGenqlSelection{ where?: (e_check_in_settings_bool_exp | null)} }) /** fetch data from the table: "e_check_in_settings" using primary key columns */ e_check_in_settings_by_pk?: (e_check_in_settingsGenqlSelection & { __args: {value: Scalars['String']} }) + /** fetch data from the table: "e_draft_game_captain_selection" */ + e_draft_game_captain_selection?: (e_draft_game_captain_selectionGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (e_draft_game_captain_selection_select_column[] | null), + /** limit the number of rows returned */ + limit?: (Scalars['Int'] | null), + /** skip the first n rows. Use only with order_by */ + offset?: (Scalars['Int'] | null), + /** sort the rows by one or more columns */ + order_by?: (e_draft_game_captain_selection_order_by[] | null), + /** filter the rows returned */ + where?: (e_draft_game_captain_selection_bool_exp | null)} }) + /** fetch aggregated fields from the table: "e_draft_game_captain_selection" */ + e_draft_game_captain_selection_aggregate?: (e_draft_game_captain_selection_aggregateGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (e_draft_game_captain_selection_select_column[] | null), + /** limit the number of rows returned */ + limit?: (Scalars['Int'] | null), + /** skip the first n rows. Use only with order_by */ + offset?: (Scalars['Int'] | null), + /** sort the rows by one or more columns */ + order_by?: (e_draft_game_captain_selection_order_by[] | null), + /** filter the rows returned */ + where?: (e_draft_game_captain_selection_bool_exp | null)} }) + /** fetch data from the table: "e_draft_game_captain_selection" using primary key columns */ + e_draft_game_captain_selection_by_pk?: (e_draft_game_captain_selectionGenqlSelection & { __args: {value: Scalars['String']} }) + /** fetch data from the table: "e_draft_game_draft_order" */ + e_draft_game_draft_order?: (e_draft_game_draft_orderGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (e_draft_game_draft_order_select_column[] | null), + /** limit the number of rows returned */ + limit?: (Scalars['Int'] | null), + /** skip the first n rows. Use only with order_by */ + offset?: (Scalars['Int'] | null), + /** sort the rows by one or more columns */ + order_by?: (e_draft_game_draft_order_order_by[] | null), + /** filter the rows returned */ + where?: (e_draft_game_draft_order_bool_exp | null)} }) + /** fetch aggregated fields from the table: "e_draft_game_draft_order" */ + e_draft_game_draft_order_aggregate?: (e_draft_game_draft_order_aggregateGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (e_draft_game_draft_order_select_column[] | null), + /** limit the number of rows returned */ + limit?: (Scalars['Int'] | null), + /** skip the first n rows. Use only with order_by */ + offset?: (Scalars['Int'] | null), + /** sort the rows by one or more columns */ + order_by?: (e_draft_game_draft_order_order_by[] | null), + /** filter the rows returned */ + where?: (e_draft_game_draft_order_bool_exp | null)} }) + /** fetch data from the table: "e_draft_game_draft_order" using primary key columns */ + e_draft_game_draft_order_by_pk?: (e_draft_game_draft_orderGenqlSelection & { __args: {value: Scalars['String']} }) + /** fetch data from the table: "e_draft_game_mode" */ + e_draft_game_mode?: (e_draft_game_modeGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (e_draft_game_mode_select_column[] | null), + /** limit the number of rows returned */ + limit?: (Scalars['Int'] | null), + /** skip the first n rows. Use only with order_by */ + offset?: (Scalars['Int'] | null), + /** sort the rows by one or more columns */ + order_by?: (e_draft_game_mode_order_by[] | null), + /** filter the rows returned */ + where?: (e_draft_game_mode_bool_exp | null)} }) + /** fetch aggregated fields from the table: "e_draft_game_mode" */ + e_draft_game_mode_aggregate?: (e_draft_game_mode_aggregateGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (e_draft_game_mode_select_column[] | null), + /** limit the number of rows returned */ + limit?: (Scalars['Int'] | null), + /** skip the first n rows. Use only with order_by */ + offset?: (Scalars['Int'] | null), + /** sort the rows by one or more columns */ + order_by?: (e_draft_game_mode_order_by[] | null), + /** filter the rows returned */ + where?: (e_draft_game_mode_bool_exp | null)} }) + /** fetch data from the table: "e_draft_game_mode" using primary key columns */ + e_draft_game_mode_by_pk?: (e_draft_game_modeGenqlSelection & { __args: {value: Scalars['String']} }) + /** fetch data from the table: "e_draft_game_player_status" */ + e_draft_game_player_status?: (e_draft_game_player_statusGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (e_draft_game_player_status_select_column[] | null), + /** limit the number of rows returned */ + limit?: (Scalars['Int'] | null), + /** skip the first n rows. Use only with order_by */ + offset?: (Scalars['Int'] | null), + /** sort the rows by one or more columns */ + order_by?: (e_draft_game_player_status_order_by[] | null), + /** filter the rows returned */ + where?: (e_draft_game_player_status_bool_exp | null)} }) + /** fetch aggregated fields from the table: "e_draft_game_player_status" */ + e_draft_game_player_status_aggregate?: (e_draft_game_player_status_aggregateGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (e_draft_game_player_status_select_column[] | null), + /** limit the number of rows returned */ + limit?: (Scalars['Int'] | null), + /** skip the first n rows. Use only with order_by */ + offset?: (Scalars['Int'] | null), + /** sort the rows by one or more columns */ + order_by?: (e_draft_game_player_status_order_by[] | null), + /** filter the rows returned */ + where?: (e_draft_game_player_status_bool_exp | null)} }) + /** fetch data from the table: "e_draft_game_player_status" using primary key columns */ + e_draft_game_player_status_by_pk?: (e_draft_game_player_statusGenqlSelection & { __args: {value: Scalars['String']} }) + /** fetch data from the table: "e_draft_game_status" */ + e_draft_game_status?: (e_draft_game_statusGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (e_draft_game_status_select_column[] | null), + /** limit the number of rows returned */ + limit?: (Scalars['Int'] | null), + /** skip the first n rows. Use only with order_by */ + offset?: (Scalars['Int'] | null), + /** sort the rows by one or more columns */ + order_by?: (e_draft_game_status_order_by[] | null), + /** filter the rows returned */ + where?: (e_draft_game_status_bool_exp | null)} }) + /** fetch aggregated fields from the table: "e_draft_game_status" */ + e_draft_game_status_aggregate?: (e_draft_game_status_aggregateGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (e_draft_game_status_select_column[] | null), + /** limit the number of rows returned */ + limit?: (Scalars['Int'] | null), + /** skip the first n rows. Use only with order_by */ + offset?: (Scalars['Int'] | null), + /** sort the rows by one or more columns */ + order_by?: (e_draft_game_status_order_by[] | null), + /** filter the rows returned */ + where?: (e_draft_game_status_bool_exp | null)} }) + /** fetch data from the table: "e_draft_game_status" using primary key columns */ + e_draft_game_status_by_pk?: (e_draft_game_statusGenqlSelection & { __args: {value: Scalars['String']} }) /** fetch data from the table: "e_friend_status" */ e_friend_status?: (e_friend_statusGenqlSelection & { __args?: { /** distinct select on columns */ @@ -53443,6 +57035,32 @@ export interface query_rootGenqlSelection{ order_by?: (my_friends_order_by[] | null), /** filter the rows returned */ where?: (my_friends_bool_exp | null)} }) + /** fetch data from the table: "news_articles" */ + news_articles?: (news_articlesGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (news_articles_select_column[] | null), + /** limit the number of rows returned */ + limit?: (Scalars['Int'] | null), + /** skip the first n rows. Use only with order_by */ + offset?: (Scalars['Int'] | null), + /** sort the rows by one or more columns */ + order_by?: (news_articles_order_by[] | null), + /** filter the rows returned */ + where?: (news_articles_bool_exp | null)} }) + /** fetch aggregated fields from the table: "news_articles" */ + news_articles_aggregate?: (news_articles_aggregateGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (news_articles_select_column[] | null), + /** limit the number of rows returned */ + limit?: (Scalars['Int'] | null), + /** skip the first n rows. Use only with order_by */ + offset?: (Scalars['Int'] | null), + /** sort the rows by one or more columns */ + order_by?: (news_articles_order_by[] | null), + /** filter the rows returned */ + where?: (news_articles_bool_exp | null)} }) + /** fetch data from the table: "news_articles" using primary key columns */ + news_articles_by_pk?: (news_articlesGenqlSelection & { __args: {id: Scalars['uuid']} }) /** An array relationship */ notifications?: (notificationsGenqlSelection & { __args?: { /** distinct select on columns */ @@ -56410,6 +60028,108 @@ export interface subscription_rootGenqlSelection{ cursor: (db_backups_stream_cursor_input | null)[], /** filter the rows returned */ where?: (db_backups_bool_exp | null)} }) + /** fetch data from the table: "draft_game_picks" */ + draft_game_picks?: (draft_game_picksGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (draft_game_picks_select_column[] | null), + /** limit the number of rows returned */ + limit?: (Scalars['Int'] | null), + /** skip the first n rows. Use only with order_by */ + offset?: (Scalars['Int'] | null), + /** sort the rows by one or more columns */ + order_by?: (draft_game_picks_order_by[] | null), + /** filter the rows returned */ + where?: (draft_game_picks_bool_exp | null)} }) + /** fetch aggregated fields from the table: "draft_game_picks" */ + draft_game_picks_aggregate?: (draft_game_picks_aggregateGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (draft_game_picks_select_column[] | null), + /** limit the number of rows returned */ + limit?: (Scalars['Int'] | null), + /** skip the first n rows. Use only with order_by */ + offset?: (Scalars['Int'] | null), + /** sort the rows by one or more columns */ + order_by?: (draft_game_picks_order_by[] | null), + /** filter the rows returned */ + where?: (draft_game_picks_bool_exp | null)} }) + /** fetch data from the table: "draft_game_picks" using primary key columns */ + draft_game_picks_by_pk?: (draft_game_picksGenqlSelection & { __args: {id: Scalars['uuid']} }) + /** fetch data from the table in a streaming manner: "draft_game_picks" */ + draft_game_picks_stream?: (draft_game_picksGenqlSelection & { __args: { + /** maximum number of rows returned in a single batch */ + batch_size: Scalars['Int'], + /** cursor to stream the results returned by the query */ + cursor: (draft_game_picks_stream_cursor_input | null)[], + /** filter the rows returned */ + where?: (draft_game_picks_bool_exp | null)} }) + /** fetch data from the table: "draft_game_players" */ + draft_game_players?: (draft_game_playersGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (draft_game_players_select_column[] | null), + /** limit the number of rows returned */ + limit?: (Scalars['Int'] | null), + /** skip the first n rows. Use only with order_by */ + offset?: (Scalars['Int'] | null), + /** sort the rows by one or more columns */ + order_by?: (draft_game_players_order_by[] | null), + /** filter the rows returned */ + where?: (draft_game_players_bool_exp | null)} }) + /** fetch aggregated fields from the table: "draft_game_players" */ + draft_game_players_aggregate?: (draft_game_players_aggregateGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (draft_game_players_select_column[] | null), + /** limit the number of rows returned */ + limit?: (Scalars['Int'] | null), + /** skip the first n rows. Use only with order_by */ + offset?: (Scalars['Int'] | null), + /** sort the rows by one or more columns */ + order_by?: (draft_game_players_order_by[] | null), + /** filter the rows returned */ + where?: (draft_game_players_bool_exp | null)} }) + /** fetch data from the table: "draft_game_players" using primary key columns */ + draft_game_players_by_pk?: (draft_game_playersGenqlSelection & { __args: {draft_game_id: Scalars['uuid'], steam_id: Scalars['bigint']} }) + /** fetch data from the table in a streaming manner: "draft_game_players" */ + draft_game_players_stream?: (draft_game_playersGenqlSelection & { __args: { + /** maximum number of rows returned in a single batch */ + batch_size: Scalars['Int'], + /** cursor to stream the results returned by the query */ + cursor: (draft_game_players_stream_cursor_input | null)[], + /** filter the rows returned */ + where?: (draft_game_players_bool_exp | null)} }) + /** An array relationship */ + draft_games?: (draft_gamesGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (draft_games_select_column[] | null), + /** limit the number of rows returned */ + limit?: (Scalars['Int'] | null), + /** skip the first n rows. Use only with order_by */ + offset?: (Scalars['Int'] | null), + /** sort the rows by one or more columns */ + order_by?: (draft_games_order_by[] | null), + /** filter the rows returned */ + where?: (draft_games_bool_exp | null)} }) + /** An aggregate relationship */ + draft_games_aggregate?: (draft_games_aggregateGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (draft_games_select_column[] | null), + /** limit the number of rows returned */ + limit?: (Scalars['Int'] | null), + /** skip the first n rows. Use only with order_by */ + offset?: (Scalars['Int'] | null), + /** sort the rows by one or more columns */ + order_by?: (draft_games_order_by[] | null), + /** filter the rows returned */ + where?: (draft_games_bool_exp | null)} }) + /** fetch data from the table: "draft_games" using primary key columns */ + draft_games_by_pk?: (draft_gamesGenqlSelection & { __args: {id: Scalars['uuid']} }) + /** fetch data from the table in a streaming manner: "draft_games" */ + draft_games_stream?: (draft_gamesGenqlSelection & { __args: { + /** maximum number of rows returned in a single batch */ + batch_size: Scalars['Int'], + /** cursor to stream the results returned by the query */ + cursor: (draft_games_stream_cursor_input | null)[], + /** filter the rows returned */ + where?: (draft_games_bool_exp | null)} }) /** fetch data from the table: "e_check_in_settings" */ e_check_in_settings?: (e_check_in_settingsGenqlSelection & { __args?: { /** distinct select on columns */ @@ -56444,6 +60164,176 @@ export interface subscription_rootGenqlSelection{ cursor: (e_check_in_settings_stream_cursor_input | null)[], /** filter the rows returned */ where?: (e_check_in_settings_bool_exp | null)} }) + /** fetch data from the table: "e_draft_game_captain_selection" */ + e_draft_game_captain_selection?: (e_draft_game_captain_selectionGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (e_draft_game_captain_selection_select_column[] | null), + /** limit the number of rows returned */ + limit?: (Scalars['Int'] | null), + /** skip the first n rows. Use only with order_by */ + offset?: (Scalars['Int'] | null), + /** sort the rows by one or more columns */ + order_by?: (e_draft_game_captain_selection_order_by[] | null), + /** filter the rows returned */ + where?: (e_draft_game_captain_selection_bool_exp | null)} }) + /** fetch aggregated fields from the table: "e_draft_game_captain_selection" */ + e_draft_game_captain_selection_aggregate?: (e_draft_game_captain_selection_aggregateGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (e_draft_game_captain_selection_select_column[] | null), + /** limit the number of rows returned */ + limit?: (Scalars['Int'] | null), + /** skip the first n rows. Use only with order_by */ + offset?: (Scalars['Int'] | null), + /** sort the rows by one or more columns */ + order_by?: (e_draft_game_captain_selection_order_by[] | null), + /** filter the rows returned */ + where?: (e_draft_game_captain_selection_bool_exp | null)} }) + /** fetch data from the table: "e_draft_game_captain_selection" using primary key columns */ + e_draft_game_captain_selection_by_pk?: (e_draft_game_captain_selectionGenqlSelection & { __args: {value: Scalars['String']} }) + /** fetch data from the table in a streaming manner: "e_draft_game_captain_selection" */ + e_draft_game_captain_selection_stream?: (e_draft_game_captain_selectionGenqlSelection & { __args: { + /** maximum number of rows returned in a single batch */ + batch_size: Scalars['Int'], + /** cursor to stream the results returned by the query */ + cursor: (e_draft_game_captain_selection_stream_cursor_input | null)[], + /** filter the rows returned */ + where?: (e_draft_game_captain_selection_bool_exp | null)} }) + /** fetch data from the table: "e_draft_game_draft_order" */ + e_draft_game_draft_order?: (e_draft_game_draft_orderGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (e_draft_game_draft_order_select_column[] | null), + /** limit the number of rows returned */ + limit?: (Scalars['Int'] | null), + /** skip the first n rows. Use only with order_by */ + offset?: (Scalars['Int'] | null), + /** sort the rows by one or more columns */ + order_by?: (e_draft_game_draft_order_order_by[] | null), + /** filter the rows returned */ + where?: (e_draft_game_draft_order_bool_exp | null)} }) + /** fetch aggregated fields from the table: "e_draft_game_draft_order" */ + e_draft_game_draft_order_aggregate?: (e_draft_game_draft_order_aggregateGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (e_draft_game_draft_order_select_column[] | null), + /** limit the number of rows returned */ + limit?: (Scalars['Int'] | null), + /** skip the first n rows. Use only with order_by */ + offset?: (Scalars['Int'] | null), + /** sort the rows by one or more columns */ + order_by?: (e_draft_game_draft_order_order_by[] | null), + /** filter the rows returned */ + where?: (e_draft_game_draft_order_bool_exp | null)} }) + /** fetch data from the table: "e_draft_game_draft_order" using primary key columns */ + e_draft_game_draft_order_by_pk?: (e_draft_game_draft_orderGenqlSelection & { __args: {value: Scalars['String']} }) + /** fetch data from the table in a streaming manner: "e_draft_game_draft_order" */ + e_draft_game_draft_order_stream?: (e_draft_game_draft_orderGenqlSelection & { __args: { + /** maximum number of rows returned in a single batch */ + batch_size: Scalars['Int'], + /** cursor to stream the results returned by the query */ + cursor: (e_draft_game_draft_order_stream_cursor_input | null)[], + /** filter the rows returned */ + where?: (e_draft_game_draft_order_bool_exp | null)} }) + /** fetch data from the table: "e_draft_game_mode" */ + e_draft_game_mode?: (e_draft_game_modeGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (e_draft_game_mode_select_column[] | null), + /** limit the number of rows returned */ + limit?: (Scalars['Int'] | null), + /** skip the first n rows. Use only with order_by */ + offset?: (Scalars['Int'] | null), + /** sort the rows by one or more columns */ + order_by?: (e_draft_game_mode_order_by[] | null), + /** filter the rows returned */ + where?: (e_draft_game_mode_bool_exp | null)} }) + /** fetch aggregated fields from the table: "e_draft_game_mode" */ + e_draft_game_mode_aggregate?: (e_draft_game_mode_aggregateGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (e_draft_game_mode_select_column[] | null), + /** limit the number of rows returned */ + limit?: (Scalars['Int'] | null), + /** skip the first n rows. Use only with order_by */ + offset?: (Scalars['Int'] | null), + /** sort the rows by one or more columns */ + order_by?: (e_draft_game_mode_order_by[] | null), + /** filter the rows returned */ + where?: (e_draft_game_mode_bool_exp | null)} }) + /** fetch data from the table: "e_draft_game_mode" using primary key columns */ + e_draft_game_mode_by_pk?: (e_draft_game_modeGenqlSelection & { __args: {value: Scalars['String']} }) + /** fetch data from the table in a streaming manner: "e_draft_game_mode" */ + e_draft_game_mode_stream?: (e_draft_game_modeGenqlSelection & { __args: { + /** maximum number of rows returned in a single batch */ + batch_size: Scalars['Int'], + /** cursor to stream the results returned by the query */ + cursor: (e_draft_game_mode_stream_cursor_input | null)[], + /** filter the rows returned */ + where?: (e_draft_game_mode_bool_exp | null)} }) + /** fetch data from the table: "e_draft_game_player_status" */ + e_draft_game_player_status?: (e_draft_game_player_statusGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (e_draft_game_player_status_select_column[] | null), + /** limit the number of rows returned */ + limit?: (Scalars['Int'] | null), + /** skip the first n rows. Use only with order_by */ + offset?: (Scalars['Int'] | null), + /** sort the rows by one or more columns */ + order_by?: (e_draft_game_player_status_order_by[] | null), + /** filter the rows returned */ + where?: (e_draft_game_player_status_bool_exp | null)} }) + /** fetch aggregated fields from the table: "e_draft_game_player_status" */ + e_draft_game_player_status_aggregate?: (e_draft_game_player_status_aggregateGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (e_draft_game_player_status_select_column[] | null), + /** limit the number of rows returned */ + limit?: (Scalars['Int'] | null), + /** skip the first n rows. Use only with order_by */ + offset?: (Scalars['Int'] | null), + /** sort the rows by one or more columns */ + order_by?: (e_draft_game_player_status_order_by[] | null), + /** filter the rows returned */ + where?: (e_draft_game_player_status_bool_exp | null)} }) + /** fetch data from the table: "e_draft_game_player_status" using primary key columns */ + e_draft_game_player_status_by_pk?: (e_draft_game_player_statusGenqlSelection & { __args: {value: Scalars['String']} }) + /** fetch data from the table in a streaming manner: "e_draft_game_player_status" */ + e_draft_game_player_status_stream?: (e_draft_game_player_statusGenqlSelection & { __args: { + /** maximum number of rows returned in a single batch */ + batch_size: Scalars['Int'], + /** cursor to stream the results returned by the query */ + cursor: (e_draft_game_player_status_stream_cursor_input | null)[], + /** filter the rows returned */ + where?: (e_draft_game_player_status_bool_exp | null)} }) + /** fetch data from the table: "e_draft_game_status" */ + e_draft_game_status?: (e_draft_game_statusGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (e_draft_game_status_select_column[] | null), + /** limit the number of rows returned */ + limit?: (Scalars['Int'] | null), + /** skip the first n rows. Use only with order_by */ + offset?: (Scalars['Int'] | null), + /** sort the rows by one or more columns */ + order_by?: (e_draft_game_status_order_by[] | null), + /** filter the rows returned */ + where?: (e_draft_game_status_bool_exp | null)} }) + /** fetch aggregated fields from the table: "e_draft_game_status" */ + e_draft_game_status_aggregate?: (e_draft_game_status_aggregateGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (e_draft_game_status_select_column[] | null), + /** limit the number of rows returned */ + limit?: (Scalars['Int'] | null), + /** skip the first n rows. Use only with order_by */ + offset?: (Scalars['Int'] | null), + /** sort the rows by one or more columns */ + order_by?: (e_draft_game_status_order_by[] | null), + /** filter the rows returned */ + where?: (e_draft_game_status_bool_exp | null)} }) + /** fetch data from the table: "e_draft_game_status" using primary key columns */ + e_draft_game_status_by_pk?: (e_draft_game_statusGenqlSelection & { __args: {value: Scalars['String']} }) + /** fetch data from the table in a streaming manner: "e_draft_game_status" */ + e_draft_game_status_stream?: (e_draft_game_statusGenqlSelection & { __args: { + /** maximum number of rows returned in a single batch */ + batch_size: Scalars['Int'], + /** cursor to stream the results returned by the query */ + cursor: (e_draft_game_status_stream_cursor_input | null)[], + /** filter the rows returned */ + where?: (e_draft_game_status_bool_exp | null)} }) /** fetch data from the table: "e_friend_status" */ e_friend_status?: (e_friend_statusGenqlSelection & { __args?: { /** distinct select on columns */ @@ -58230,6 +62120,40 @@ export interface subscription_rootGenqlSelection{ cursor: (my_friends_stream_cursor_input | null)[], /** filter the rows returned */ where?: (my_friends_bool_exp | null)} }) + /** fetch data from the table: "news_articles" */ + news_articles?: (news_articlesGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (news_articles_select_column[] | null), + /** limit the number of rows returned */ + limit?: (Scalars['Int'] | null), + /** skip the first n rows. Use only with order_by */ + offset?: (Scalars['Int'] | null), + /** sort the rows by one or more columns */ + order_by?: (news_articles_order_by[] | null), + /** filter the rows returned */ + where?: (news_articles_bool_exp | null)} }) + /** fetch aggregated fields from the table: "news_articles" */ + news_articles_aggregate?: (news_articles_aggregateGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (news_articles_select_column[] | null), + /** limit the number of rows returned */ + limit?: (Scalars['Int'] | null), + /** skip the first n rows. Use only with order_by */ + offset?: (Scalars['Int'] | null), + /** sort the rows by one or more columns */ + order_by?: (news_articles_order_by[] | null), + /** filter the rows returned */ + where?: (news_articles_bool_exp | null)} }) + /** fetch data from the table: "news_articles" using primary key columns */ + news_articles_by_pk?: (news_articlesGenqlSelection & { __args: {id: Scalars['uuid']} }) + /** fetch data from the table in a streaming manner: "news_articles" */ + news_articles_stream?: (news_articlesGenqlSelection & { __args: { + /** maximum number of rows returned in a single batch */ + batch_size: Scalars['Int'], + /** cursor to stream the results returned by the query */ + cursor: (news_articles_stream_cursor_input | null)[], + /** filter the rows returned */ + where?: (news_articles_bool_exp | null)} }) /** An array relationship */ notifications?: (notificationsGenqlSelection & { __args?: { /** distinct select on columns */ @@ -71611,6 +75535,342 @@ export type SubscriptionGenqlSelection = subscription_rootGenqlSelection + const draft_game_picks_possibleTypes: string[] = ['draft_game_picks'] + export const isdraft_game_picks = (obj?: { __typename?: any } | null): obj is draft_game_picks => { + if (!obj?.__typename) throw new Error('__typename is missing in "isdraft_game_picks"') + return draft_game_picks_possibleTypes.includes(obj.__typename) + } + + + + const draft_game_picks_aggregate_possibleTypes: string[] = ['draft_game_picks_aggregate'] + export const isdraft_game_picks_aggregate = (obj?: { __typename?: any } | null): obj is draft_game_picks_aggregate => { + if (!obj?.__typename) throw new Error('__typename is missing in "isdraft_game_picks_aggregate"') + return draft_game_picks_aggregate_possibleTypes.includes(obj.__typename) + } + + + + const draft_game_picks_aggregate_fields_possibleTypes: string[] = ['draft_game_picks_aggregate_fields'] + export const isdraft_game_picks_aggregate_fields = (obj?: { __typename?: any } | null): obj is draft_game_picks_aggregate_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isdraft_game_picks_aggregate_fields"') + return draft_game_picks_aggregate_fields_possibleTypes.includes(obj.__typename) + } + + + + const draft_game_picks_avg_fields_possibleTypes: string[] = ['draft_game_picks_avg_fields'] + export const isdraft_game_picks_avg_fields = (obj?: { __typename?: any } | null): obj is draft_game_picks_avg_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isdraft_game_picks_avg_fields"') + return draft_game_picks_avg_fields_possibleTypes.includes(obj.__typename) + } + + + + const draft_game_picks_max_fields_possibleTypes: string[] = ['draft_game_picks_max_fields'] + export const isdraft_game_picks_max_fields = (obj?: { __typename?: any } | null): obj is draft_game_picks_max_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isdraft_game_picks_max_fields"') + return draft_game_picks_max_fields_possibleTypes.includes(obj.__typename) + } + + + + const draft_game_picks_min_fields_possibleTypes: string[] = ['draft_game_picks_min_fields'] + export const isdraft_game_picks_min_fields = (obj?: { __typename?: any } | null): obj is draft_game_picks_min_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isdraft_game_picks_min_fields"') + return draft_game_picks_min_fields_possibleTypes.includes(obj.__typename) + } + + + + const draft_game_picks_mutation_response_possibleTypes: string[] = ['draft_game_picks_mutation_response'] + export const isdraft_game_picks_mutation_response = (obj?: { __typename?: any } | null): obj is draft_game_picks_mutation_response => { + if (!obj?.__typename) throw new Error('__typename is missing in "isdraft_game_picks_mutation_response"') + return draft_game_picks_mutation_response_possibleTypes.includes(obj.__typename) + } + + + + const draft_game_picks_stddev_fields_possibleTypes: string[] = ['draft_game_picks_stddev_fields'] + export const isdraft_game_picks_stddev_fields = (obj?: { __typename?: any } | null): obj is draft_game_picks_stddev_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isdraft_game_picks_stddev_fields"') + return draft_game_picks_stddev_fields_possibleTypes.includes(obj.__typename) + } + + + + const draft_game_picks_stddev_pop_fields_possibleTypes: string[] = ['draft_game_picks_stddev_pop_fields'] + export const isdraft_game_picks_stddev_pop_fields = (obj?: { __typename?: any } | null): obj is draft_game_picks_stddev_pop_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isdraft_game_picks_stddev_pop_fields"') + return draft_game_picks_stddev_pop_fields_possibleTypes.includes(obj.__typename) + } + + + + const draft_game_picks_stddev_samp_fields_possibleTypes: string[] = ['draft_game_picks_stddev_samp_fields'] + export const isdraft_game_picks_stddev_samp_fields = (obj?: { __typename?: any } | null): obj is draft_game_picks_stddev_samp_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isdraft_game_picks_stddev_samp_fields"') + return draft_game_picks_stddev_samp_fields_possibleTypes.includes(obj.__typename) + } + + + + const draft_game_picks_sum_fields_possibleTypes: string[] = ['draft_game_picks_sum_fields'] + export const isdraft_game_picks_sum_fields = (obj?: { __typename?: any } | null): obj is draft_game_picks_sum_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isdraft_game_picks_sum_fields"') + return draft_game_picks_sum_fields_possibleTypes.includes(obj.__typename) + } + + + + const draft_game_picks_var_pop_fields_possibleTypes: string[] = ['draft_game_picks_var_pop_fields'] + export const isdraft_game_picks_var_pop_fields = (obj?: { __typename?: any } | null): obj is draft_game_picks_var_pop_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isdraft_game_picks_var_pop_fields"') + return draft_game_picks_var_pop_fields_possibleTypes.includes(obj.__typename) + } + + + + const draft_game_picks_var_samp_fields_possibleTypes: string[] = ['draft_game_picks_var_samp_fields'] + export const isdraft_game_picks_var_samp_fields = (obj?: { __typename?: any } | null): obj is draft_game_picks_var_samp_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isdraft_game_picks_var_samp_fields"') + return draft_game_picks_var_samp_fields_possibleTypes.includes(obj.__typename) + } + + + + const draft_game_picks_variance_fields_possibleTypes: string[] = ['draft_game_picks_variance_fields'] + export const isdraft_game_picks_variance_fields = (obj?: { __typename?: any } | null): obj is draft_game_picks_variance_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isdraft_game_picks_variance_fields"') + return draft_game_picks_variance_fields_possibleTypes.includes(obj.__typename) + } + + + + const draft_game_players_possibleTypes: string[] = ['draft_game_players'] + export const isdraft_game_players = (obj?: { __typename?: any } | null): obj is draft_game_players => { + if (!obj?.__typename) throw new Error('__typename is missing in "isdraft_game_players"') + return draft_game_players_possibleTypes.includes(obj.__typename) + } + + + + const draft_game_players_aggregate_possibleTypes: string[] = ['draft_game_players_aggregate'] + export const isdraft_game_players_aggregate = (obj?: { __typename?: any } | null): obj is draft_game_players_aggregate => { + if (!obj?.__typename) throw new Error('__typename is missing in "isdraft_game_players_aggregate"') + return draft_game_players_aggregate_possibleTypes.includes(obj.__typename) + } + + + + const draft_game_players_aggregate_fields_possibleTypes: string[] = ['draft_game_players_aggregate_fields'] + export const isdraft_game_players_aggregate_fields = (obj?: { __typename?: any } | null): obj is draft_game_players_aggregate_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isdraft_game_players_aggregate_fields"') + return draft_game_players_aggregate_fields_possibleTypes.includes(obj.__typename) + } + + + + const draft_game_players_avg_fields_possibleTypes: string[] = ['draft_game_players_avg_fields'] + export const isdraft_game_players_avg_fields = (obj?: { __typename?: any } | null): obj is draft_game_players_avg_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isdraft_game_players_avg_fields"') + return draft_game_players_avg_fields_possibleTypes.includes(obj.__typename) + } + + + + const draft_game_players_max_fields_possibleTypes: string[] = ['draft_game_players_max_fields'] + export const isdraft_game_players_max_fields = (obj?: { __typename?: any } | null): obj is draft_game_players_max_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isdraft_game_players_max_fields"') + return draft_game_players_max_fields_possibleTypes.includes(obj.__typename) + } + + + + const draft_game_players_min_fields_possibleTypes: string[] = ['draft_game_players_min_fields'] + export const isdraft_game_players_min_fields = (obj?: { __typename?: any } | null): obj is draft_game_players_min_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isdraft_game_players_min_fields"') + return draft_game_players_min_fields_possibleTypes.includes(obj.__typename) + } + + + + const draft_game_players_mutation_response_possibleTypes: string[] = ['draft_game_players_mutation_response'] + export const isdraft_game_players_mutation_response = (obj?: { __typename?: any } | null): obj is draft_game_players_mutation_response => { + if (!obj?.__typename) throw new Error('__typename is missing in "isdraft_game_players_mutation_response"') + return draft_game_players_mutation_response_possibleTypes.includes(obj.__typename) + } + + + + const draft_game_players_stddev_fields_possibleTypes: string[] = ['draft_game_players_stddev_fields'] + export const isdraft_game_players_stddev_fields = (obj?: { __typename?: any } | null): obj is draft_game_players_stddev_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isdraft_game_players_stddev_fields"') + return draft_game_players_stddev_fields_possibleTypes.includes(obj.__typename) + } + + + + const draft_game_players_stddev_pop_fields_possibleTypes: string[] = ['draft_game_players_stddev_pop_fields'] + export const isdraft_game_players_stddev_pop_fields = (obj?: { __typename?: any } | null): obj is draft_game_players_stddev_pop_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isdraft_game_players_stddev_pop_fields"') + return draft_game_players_stddev_pop_fields_possibleTypes.includes(obj.__typename) + } + + + + const draft_game_players_stddev_samp_fields_possibleTypes: string[] = ['draft_game_players_stddev_samp_fields'] + export const isdraft_game_players_stddev_samp_fields = (obj?: { __typename?: any } | null): obj is draft_game_players_stddev_samp_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isdraft_game_players_stddev_samp_fields"') + return draft_game_players_stddev_samp_fields_possibleTypes.includes(obj.__typename) + } + + + + const draft_game_players_sum_fields_possibleTypes: string[] = ['draft_game_players_sum_fields'] + export const isdraft_game_players_sum_fields = (obj?: { __typename?: any } | null): obj is draft_game_players_sum_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isdraft_game_players_sum_fields"') + return draft_game_players_sum_fields_possibleTypes.includes(obj.__typename) + } + + + + const draft_game_players_var_pop_fields_possibleTypes: string[] = ['draft_game_players_var_pop_fields'] + export const isdraft_game_players_var_pop_fields = (obj?: { __typename?: any } | null): obj is draft_game_players_var_pop_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isdraft_game_players_var_pop_fields"') + return draft_game_players_var_pop_fields_possibleTypes.includes(obj.__typename) + } + + + + const draft_game_players_var_samp_fields_possibleTypes: string[] = ['draft_game_players_var_samp_fields'] + export const isdraft_game_players_var_samp_fields = (obj?: { __typename?: any } | null): obj is draft_game_players_var_samp_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isdraft_game_players_var_samp_fields"') + return draft_game_players_var_samp_fields_possibleTypes.includes(obj.__typename) + } + + + + const draft_game_players_variance_fields_possibleTypes: string[] = ['draft_game_players_variance_fields'] + export const isdraft_game_players_variance_fields = (obj?: { __typename?: any } | null): obj is draft_game_players_variance_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isdraft_game_players_variance_fields"') + return draft_game_players_variance_fields_possibleTypes.includes(obj.__typename) + } + + + + const draft_games_possibleTypes: string[] = ['draft_games'] + export const isdraft_games = (obj?: { __typename?: any } | null): obj is draft_games => { + if (!obj?.__typename) throw new Error('__typename is missing in "isdraft_games"') + return draft_games_possibleTypes.includes(obj.__typename) + } + + + + const draft_games_aggregate_possibleTypes: string[] = ['draft_games_aggregate'] + export const isdraft_games_aggregate = (obj?: { __typename?: any } | null): obj is draft_games_aggregate => { + if (!obj?.__typename) throw new Error('__typename is missing in "isdraft_games_aggregate"') + return draft_games_aggregate_possibleTypes.includes(obj.__typename) + } + + + + const draft_games_aggregate_fields_possibleTypes: string[] = ['draft_games_aggregate_fields'] + export const isdraft_games_aggregate_fields = (obj?: { __typename?: any } | null): obj is draft_games_aggregate_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isdraft_games_aggregate_fields"') + return draft_games_aggregate_fields_possibleTypes.includes(obj.__typename) + } + + + + const draft_games_avg_fields_possibleTypes: string[] = ['draft_games_avg_fields'] + export const isdraft_games_avg_fields = (obj?: { __typename?: any } | null): obj is draft_games_avg_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isdraft_games_avg_fields"') + return draft_games_avg_fields_possibleTypes.includes(obj.__typename) + } + + + + const draft_games_max_fields_possibleTypes: string[] = ['draft_games_max_fields'] + export const isdraft_games_max_fields = (obj?: { __typename?: any } | null): obj is draft_games_max_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isdraft_games_max_fields"') + return draft_games_max_fields_possibleTypes.includes(obj.__typename) + } + + + + const draft_games_min_fields_possibleTypes: string[] = ['draft_games_min_fields'] + export const isdraft_games_min_fields = (obj?: { __typename?: any } | null): obj is draft_games_min_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isdraft_games_min_fields"') + return draft_games_min_fields_possibleTypes.includes(obj.__typename) + } + + + + const draft_games_mutation_response_possibleTypes: string[] = ['draft_games_mutation_response'] + export const isdraft_games_mutation_response = (obj?: { __typename?: any } | null): obj is draft_games_mutation_response => { + if (!obj?.__typename) throw new Error('__typename is missing in "isdraft_games_mutation_response"') + return draft_games_mutation_response_possibleTypes.includes(obj.__typename) + } + + + + const draft_games_stddev_fields_possibleTypes: string[] = ['draft_games_stddev_fields'] + export const isdraft_games_stddev_fields = (obj?: { __typename?: any } | null): obj is draft_games_stddev_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isdraft_games_stddev_fields"') + return draft_games_stddev_fields_possibleTypes.includes(obj.__typename) + } + + + + const draft_games_stddev_pop_fields_possibleTypes: string[] = ['draft_games_stddev_pop_fields'] + export const isdraft_games_stddev_pop_fields = (obj?: { __typename?: any } | null): obj is draft_games_stddev_pop_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isdraft_games_stddev_pop_fields"') + return draft_games_stddev_pop_fields_possibleTypes.includes(obj.__typename) + } + + + + const draft_games_stddev_samp_fields_possibleTypes: string[] = ['draft_games_stddev_samp_fields'] + export const isdraft_games_stddev_samp_fields = (obj?: { __typename?: any } | null): obj is draft_games_stddev_samp_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isdraft_games_stddev_samp_fields"') + return draft_games_stddev_samp_fields_possibleTypes.includes(obj.__typename) + } + + + + const draft_games_sum_fields_possibleTypes: string[] = ['draft_games_sum_fields'] + export const isdraft_games_sum_fields = (obj?: { __typename?: any } | null): obj is draft_games_sum_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isdraft_games_sum_fields"') + return draft_games_sum_fields_possibleTypes.includes(obj.__typename) + } + + + + const draft_games_var_pop_fields_possibleTypes: string[] = ['draft_games_var_pop_fields'] + export const isdraft_games_var_pop_fields = (obj?: { __typename?: any } | null): obj is draft_games_var_pop_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isdraft_games_var_pop_fields"') + return draft_games_var_pop_fields_possibleTypes.includes(obj.__typename) + } + + + + const draft_games_var_samp_fields_possibleTypes: string[] = ['draft_games_var_samp_fields'] + export const isdraft_games_var_samp_fields = (obj?: { __typename?: any } | null): obj is draft_games_var_samp_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isdraft_games_var_samp_fields"') + return draft_games_var_samp_fields_possibleTypes.includes(obj.__typename) + } + + + + const draft_games_variance_fields_possibleTypes: string[] = ['draft_games_variance_fields'] + export const isdraft_games_variance_fields = (obj?: { __typename?: any } | null): obj is draft_games_variance_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isdraft_games_variance_fields"') + return draft_games_variance_fields_possibleTypes.includes(obj.__typename) + } + + + const e_check_in_settings_possibleTypes: string[] = ['e_check_in_settings'] export const ise_check_in_settings = (obj?: { __typename?: any } | null): obj is e_check_in_settings => { if (!obj?.__typename) throw new Error('__typename is missing in "ise_check_in_settings"') @@ -71659,6 +75919,246 @@ export type SubscriptionGenqlSelection = subscription_rootGenqlSelection + const e_draft_game_captain_selection_possibleTypes: string[] = ['e_draft_game_captain_selection'] + export const ise_draft_game_captain_selection = (obj?: { __typename?: any } | null): obj is e_draft_game_captain_selection => { + if (!obj?.__typename) throw new Error('__typename is missing in "ise_draft_game_captain_selection"') + return e_draft_game_captain_selection_possibleTypes.includes(obj.__typename) + } + + + + const e_draft_game_captain_selection_aggregate_possibleTypes: string[] = ['e_draft_game_captain_selection_aggregate'] + export const ise_draft_game_captain_selection_aggregate = (obj?: { __typename?: any } | null): obj is e_draft_game_captain_selection_aggregate => { + if (!obj?.__typename) throw new Error('__typename is missing in "ise_draft_game_captain_selection_aggregate"') + return e_draft_game_captain_selection_aggregate_possibleTypes.includes(obj.__typename) + } + + + + const e_draft_game_captain_selection_aggregate_fields_possibleTypes: string[] = ['e_draft_game_captain_selection_aggregate_fields'] + export const ise_draft_game_captain_selection_aggregate_fields = (obj?: { __typename?: any } | null): obj is e_draft_game_captain_selection_aggregate_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "ise_draft_game_captain_selection_aggregate_fields"') + return e_draft_game_captain_selection_aggregate_fields_possibleTypes.includes(obj.__typename) + } + + + + const e_draft_game_captain_selection_max_fields_possibleTypes: string[] = ['e_draft_game_captain_selection_max_fields'] + export const ise_draft_game_captain_selection_max_fields = (obj?: { __typename?: any } | null): obj is e_draft_game_captain_selection_max_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "ise_draft_game_captain_selection_max_fields"') + return e_draft_game_captain_selection_max_fields_possibleTypes.includes(obj.__typename) + } + + + + const e_draft_game_captain_selection_min_fields_possibleTypes: string[] = ['e_draft_game_captain_selection_min_fields'] + export const ise_draft_game_captain_selection_min_fields = (obj?: { __typename?: any } | null): obj is e_draft_game_captain_selection_min_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "ise_draft_game_captain_selection_min_fields"') + return e_draft_game_captain_selection_min_fields_possibleTypes.includes(obj.__typename) + } + + + + const e_draft_game_captain_selection_mutation_response_possibleTypes: string[] = ['e_draft_game_captain_selection_mutation_response'] + export const ise_draft_game_captain_selection_mutation_response = (obj?: { __typename?: any } | null): obj is e_draft_game_captain_selection_mutation_response => { + if (!obj?.__typename) throw new Error('__typename is missing in "ise_draft_game_captain_selection_mutation_response"') + return e_draft_game_captain_selection_mutation_response_possibleTypes.includes(obj.__typename) + } + + + + const e_draft_game_draft_order_possibleTypes: string[] = ['e_draft_game_draft_order'] + export const ise_draft_game_draft_order = (obj?: { __typename?: any } | null): obj is e_draft_game_draft_order => { + if (!obj?.__typename) throw new Error('__typename is missing in "ise_draft_game_draft_order"') + return e_draft_game_draft_order_possibleTypes.includes(obj.__typename) + } + + + + const e_draft_game_draft_order_aggregate_possibleTypes: string[] = ['e_draft_game_draft_order_aggregate'] + export const ise_draft_game_draft_order_aggregate = (obj?: { __typename?: any } | null): obj is e_draft_game_draft_order_aggregate => { + if (!obj?.__typename) throw new Error('__typename is missing in "ise_draft_game_draft_order_aggregate"') + return e_draft_game_draft_order_aggregate_possibleTypes.includes(obj.__typename) + } + + + + const e_draft_game_draft_order_aggregate_fields_possibleTypes: string[] = ['e_draft_game_draft_order_aggregate_fields'] + export const ise_draft_game_draft_order_aggregate_fields = (obj?: { __typename?: any } | null): obj is e_draft_game_draft_order_aggregate_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "ise_draft_game_draft_order_aggregate_fields"') + return e_draft_game_draft_order_aggregate_fields_possibleTypes.includes(obj.__typename) + } + + + + const e_draft_game_draft_order_max_fields_possibleTypes: string[] = ['e_draft_game_draft_order_max_fields'] + export const ise_draft_game_draft_order_max_fields = (obj?: { __typename?: any } | null): obj is e_draft_game_draft_order_max_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "ise_draft_game_draft_order_max_fields"') + return e_draft_game_draft_order_max_fields_possibleTypes.includes(obj.__typename) + } + + + + const e_draft_game_draft_order_min_fields_possibleTypes: string[] = ['e_draft_game_draft_order_min_fields'] + export const ise_draft_game_draft_order_min_fields = (obj?: { __typename?: any } | null): obj is e_draft_game_draft_order_min_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "ise_draft_game_draft_order_min_fields"') + return e_draft_game_draft_order_min_fields_possibleTypes.includes(obj.__typename) + } + + + + const e_draft_game_draft_order_mutation_response_possibleTypes: string[] = ['e_draft_game_draft_order_mutation_response'] + export const ise_draft_game_draft_order_mutation_response = (obj?: { __typename?: any } | null): obj is e_draft_game_draft_order_mutation_response => { + if (!obj?.__typename) throw new Error('__typename is missing in "ise_draft_game_draft_order_mutation_response"') + return e_draft_game_draft_order_mutation_response_possibleTypes.includes(obj.__typename) + } + + + + const e_draft_game_mode_possibleTypes: string[] = ['e_draft_game_mode'] + export const ise_draft_game_mode = (obj?: { __typename?: any } | null): obj is e_draft_game_mode => { + if (!obj?.__typename) throw new Error('__typename is missing in "ise_draft_game_mode"') + return e_draft_game_mode_possibleTypes.includes(obj.__typename) + } + + + + const e_draft_game_mode_aggregate_possibleTypes: string[] = ['e_draft_game_mode_aggregate'] + export const ise_draft_game_mode_aggregate = (obj?: { __typename?: any } | null): obj is e_draft_game_mode_aggregate => { + if (!obj?.__typename) throw new Error('__typename is missing in "ise_draft_game_mode_aggregate"') + return e_draft_game_mode_aggregate_possibleTypes.includes(obj.__typename) + } + + + + const e_draft_game_mode_aggregate_fields_possibleTypes: string[] = ['e_draft_game_mode_aggregate_fields'] + export const ise_draft_game_mode_aggregate_fields = (obj?: { __typename?: any } | null): obj is e_draft_game_mode_aggregate_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "ise_draft_game_mode_aggregate_fields"') + return e_draft_game_mode_aggregate_fields_possibleTypes.includes(obj.__typename) + } + + + + const e_draft_game_mode_max_fields_possibleTypes: string[] = ['e_draft_game_mode_max_fields'] + export const ise_draft_game_mode_max_fields = (obj?: { __typename?: any } | null): obj is e_draft_game_mode_max_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "ise_draft_game_mode_max_fields"') + return e_draft_game_mode_max_fields_possibleTypes.includes(obj.__typename) + } + + + + const e_draft_game_mode_min_fields_possibleTypes: string[] = ['e_draft_game_mode_min_fields'] + export const ise_draft_game_mode_min_fields = (obj?: { __typename?: any } | null): obj is e_draft_game_mode_min_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "ise_draft_game_mode_min_fields"') + return e_draft_game_mode_min_fields_possibleTypes.includes(obj.__typename) + } + + + + const e_draft_game_mode_mutation_response_possibleTypes: string[] = ['e_draft_game_mode_mutation_response'] + export const ise_draft_game_mode_mutation_response = (obj?: { __typename?: any } | null): obj is e_draft_game_mode_mutation_response => { + if (!obj?.__typename) throw new Error('__typename is missing in "ise_draft_game_mode_mutation_response"') + return e_draft_game_mode_mutation_response_possibleTypes.includes(obj.__typename) + } + + + + const e_draft_game_player_status_possibleTypes: string[] = ['e_draft_game_player_status'] + export const ise_draft_game_player_status = (obj?: { __typename?: any } | null): obj is e_draft_game_player_status => { + if (!obj?.__typename) throw new Error('__typename is missing in "ise_draft_game_player_status"') + return e_draft_game_player_status_possibleTypes.includes(obj.__typename) + } + + + + const e_draft_game_player_status_aggregate_possibleTypes: string[] = ['e_draft_game_player_status_aggregate'] + export const ise_draft_game_player_status_aggregate = (obj?: { __typename?: any } | null): obj is e_draft_game_player_status_aggregate => { + if (!obj?.__typename) throw new Error('__typename is missing in "ise_draft_game_player_status_aggregate"') + return e_draft_game_player_status_aggregate_possibleTypes.includes(obj.__typename) + } + + + + const e_draft_game_player_status_aggregate_fields_possibleTypes: string[] = ['e_draft_game_player_status_aggregate_fields'] + export const ise_draft_game_player_status_aggregate_fields = (obj?: { __typename?: any } | null): obj is e_draft_game_player_status_aggregate_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "ise_draft_game_player_status_aggregate_fields"') + return e_draft_game_player_status_aggregate_fields_possibleTypes.includes(obj.__typename) + } + + + + const e_draft_game_player_status_max_fields_possibleTypes: string[] = ['e_draft_game_player_status_max_fields'] + export const ise_draft_game_player_status_max_fields = (obj?: { __typename?: any } | null): obj is e_draft_game_player_status_max_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "ise_draft_game_player_status_max_fields"') + return e_draft_game_player_status_max_fields_possibleTypes.includes(obj.__typename) + } + + + + const e_draft_game_player_status_min_fields_possibleTypes: string[] = ['e_draft_game_player_status_min_fields'] + export const ise_draft_game_player_status_min_fields = (obj?: { __typename?: any } | null): obj is e_draft_game_player_status_min_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "ise_draft_game_player_status_min_fields"') + return e_draft_game_player_status_min_fields_possibleTypes.includes(obj.__typename) + } + + + + const e_draft_game_player_status_mutation_response_possibleTypes: string[] = ['e_draft_game_player_status_mutation_response'] + export const ise_draft_game_player_status_mutation_response = (obj?: { __typename?: any } | null): obj is e_draft_game_player_status_mutation_response => { + if (!obj?.__typename) throw new Error('__typename is missing in "ise_draft_game_player_status_mutation_response"') + return e_draft_game_player_status_mutation_response_possibleTypes.includes(obj.__typename) + } + + + + const e_draft_game_status_possibleTypes: string[] = ['e_draft_game_status'] + export const ise_draft_game_status = (obj?: { __typename?: any } | null): obj is e_draft_game_status => { + if (!obj?.__typename) throw new Error('__typename is missing in "ise_draft_game_status"') + return e_draft_game_status_possibleTypes.includes(obj.__typename) + } + + + + const e_draft_game_status_aggregate_possibleTypes: string[] = ['e_draft_game_status_aggregate'] + export const ise_draft_game_status_aggregate = (obj?: { __typename?: any } | null): obj is e_draft_game_status_aggregate => { + if (!obj?.__typename) throw new Error('__typename is missing in "ise_draft_game_status_aggregate"') + return e_draft_game_status_aggregate_possibleTypes.includes(obj.__typename) + } + + + + const e_draft_game_status_aggregate_fields_possibleTypes: string[] = ['e_draft_game_status_aggregate_fields'] + export const ise_draft_game_status_aggregate_fields = (obj?: { __typename?: any } | null): obj is e_draft_game_status_aggregate_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "ise_draft_game_status_aggregate_fields"') + return e_draft_game_status_aggregate_fields_possibleTypes.includes(obj.__typename) + } + + + + const e_draft_game_status_max_fields_possibleTypes: string[] = ['e_draft_game_status_max_fields'] + export const ise_draft_game_status_max_fields = (obj?: { __typename?: any } | null): obj is e_draft_game_status_max_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "ise_draft_game_status_max_fields"') + return e_draft_game_status_max_fields_possibleTypes.includes(obj.__typename) + } + + + + const e_draft_game_status_min_fields_possibleTypes: string[] = ['e_draft_game_status_min_fields'] + export const ise_draft_game_status_min_fields = (obj?: { __typename?: any } | null): obj is e_draft_game_status_min_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "ise_draft_game_status_min_fields"') + return e_draft_game_status_min_fields_possibleTypes.includes(obj.__typename) + } + + + + const e_draft_game_status_mutation_response_possibleTypes: string[] = ['e_draft_game_status_mutation_response'] + export const ise_draft_game_status_mutation_response = (obj?: { __typename?: any } | null): obj is e_draft_game_status_mutation_response => { + if (!obj?.__typename) throw new Error('__typename is missing in "ise_draft_game_status_mutation_response"') + return e_draft_game_status_mutation_response_possibleTypes.includes(obj.__typename) + } + + + const e_friend_status_possibleTypes: string[] = ['e_friend_status'] export const ise_friend_status = (obj?: { __typename?: any } | null): obj is e_friend_status => { if (!obj?.__typename) throw new Error('__typename is missing in "ise_friend_status"') @@ -75267,6 +79767,118 @@ export type SubscriptionGenqlSelection = subscription_rootGenqlSelection + const news_articles_possibleTypes: string[] = ['news_articles'] + export const isnews_articles = (obj?: { __typename?: any } | null): obj is news_articles => { + if (!obj?.__typename) throw new Error('__typename is missing in "isnews_articles"') + return news_articles_possibleTypes.includes(obj.__typename) + } + + + + const news_articles_aggregate_possibleTypes: string[] = ['news_articles_aggregate'] + export const isnews_articles_aggregate = (obj?: { __typename?: any } | null): obj is news_articles_aggregate => { + if (!obj?.__typename) throw new Error('__typename is missing in "isnews_articles_aggregate"') + return news_articles_aggregate_possibleTypes.includes(obj.__typename) + } + + + + const news_articles_aggregate_fields_possibleTypes: string[] = ['news_articles_aggregate_fields'] + export const isnews_articles_aggregate_fields = (obj?: { __typename?: any } | null): obj is news_articles_aggregate_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isnews_articles_aggregate_fields"') + return news_articles_aggregate_fields_possibleTypes.includes(obj.__typename) + } + + + + const news_articles_avg_fields_possibleTypes: string[] = ['news_articles_avg_fields'] + export const isnews_articles_avg_fields = (obj?: { __typename?: any } | null): obj is news_articles_avg_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isnews_articles_avg_fields"') + return news_articles_avg_fields_possibleTypes.includes(obj.__typename) + } + + + + const news_articles_max_fields_possibleTypes: string[] = ['news_articles_max_fields'] + export const isnews_articles_max_fields = (obj?: { __typename?: any } | null): obj is news_articles_max_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isnews_articles_max_fields"') + return news_articles_max_fields_possibleTypes.includes(obj.__typename) + } + + + + const news_articles_min_fields_possibleTypes: string[] = ['news_articles_min_fields'] + export const isnews_articles_min_fields = (obj?: { __typename?: any } | null): obj is news_articles_min_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isnews_articles_min_fields"') + return news_articles_min_fields_possibleTypes.includes(obj.__typename) + } + + + + const news_articles_mutation_response_possibleTypes: string[] = ['news_articles_mutation_response'] + export const isnews_articles_mutation_response = (obj?: { __typename?: any } | null): obj is news_articles_mutation_response => { + if (!obj?.__typename) throw new Error('__typename is missing in "isnews_articles_mutation_response"') + return news_articles_mutation_response_possibleTypes.includes(obj.__typename) + } + + + + const news_articles_stddev_fields_possibleTypes: string[] = ['news_articles_stddev_fields'] + export const isnews_articles_stddev_fields = (obj?: { __typename?: any } | null): obj is news_articles_stddev_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isnews_articles_stddev_fields"') + return news_articles_stddev_fields_possibleTypes.includes(obj.__typename) + } + + + + const news_articles_stddev_pop_fields_possibleTypes: string[] = ['news_articles_stddev_pop_fields'] + export const isnews_articles_stddev_pop_fields = (obj?: { __typename?: any } | null): obj is news_articles_stddev_pop_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isnews_articles_stddev_pop_fields"') + return news_articles_stddev_pop_fields_possibleTypes.includes(obj.__typename) + } + + + + const news_articles_stddev_samp_fields_possibleTypes: string[] = ['news_articles_stddev_samp_fields'] + export const isnews_articles_stddev_samp_fields = (obj?: { __typename?: any } | null): obj is news_articles_stddev_samp_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isnews_articles_stddev_samp_fields"') + return news_articles_stddev_samp_fields_possibleTypes.includes(obj.__typename) + } + + + + const news_articles_sum_fields_possibleTypes: string[] = ['news_articles_sum_fields'] + export const isnews_articles_sum_fields = (obj?: { __typename?: any } | null): obj is news_articles_sum_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isnews_articles_sum_fields"') + return news_articles_sum_fields_possibleTypes.includes(obj.__typename) + } + + + + const news_articles_var_pop_fields_possibleTypes: string[] = ['news_articles_var_pop_fields'] + export const isnews_articles_var_pop_fields = (obj?: { __typename?: any } | null): obj is news_articles_var_pop_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isnews_articles_var_pop_fields"') + return news_articles_var_pop_fields_possibleTypes.includes(obj.__typename) + } + + + + const news_articles_var_samp_fields_possibleTypes: string[] = ['news_articles_var_samp_fields'] + export const isnews_articles_var_samp_fields = (obj?: { __typename?: any } | null): obj is news_articles_var_samp_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isnews_articles_var_samp_fields"') + return news_articles_var_samp_fields_possibleTypes.includes(obj.__typename) + } + + + + const news_articles_variance_fields_possibleTypes: string[] = ['news_articles_variance_fields'] + export const isnews_articles_variance_fields = (obj?: { __typename?: any } | null): obj is news_articles_variance_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isnews_articles_variance_fields"') + return news_articles_variance_fields_possibleTypes.includes(obj.__typename) + } + + + const notifications_possibleTypes: string[] = ['notifications'] export const isnotifications = (obj?: { __typename?: any } | null): obj is notifications => { if (!obj?.__typename) throw new Error('__typename is missing in "isnotifications"') @@ -82999,6 +87611,142 @@ export const enumDbBackupsUpdateColumn = { size: 'size' as const } +export const enumDraftGamePicksConstraint = { + draft_game_picks_pkey: 'draft_game_picks_pkey' as const +} + +export const enumDraftGamePicksSelectColumn = { + auto_picked: 'auto_picked' as const, + captain_steam_id: 'captain_steam_id' as const, + created_at: 'created_at' as const, + draft_game_id: 'draft_game_id' as const, + id: 'id' as const, + lineup: 'lineup' as const, + picked_steam_id: 'picked_steam_id' as const +} + +export const enumDraftGamePicksSelectColumnDraftGamePicksAggregateBoolExpBoolAndArgumentsColumns = { + auto_picked: 'auto_picked' as const +} + +export const enumDraftGamePicksSelectColumnDraftGamePicksAggregateBoolExpBoolOrArgumentsColumns = { + auto_picked: 'auto_picked' as const +} + +export const enumDraftGamePicksUpdateColumn = { + auto_picked: 'auto_picked' as const, + captain_steam_id: 'captain_steam_id' as const, + created_at: 'created_at' as const, + draft_game_id: 'draft_game_id' as const, + id: 'id' as const, + lineup: 'lineup' as const, + picked_steam_id: 'picked_steam_id' as const +} + +export const enumDraftGamePlayersConstraint = { + draft_game_players_pkey: 'draft_game_players_pkey' as const +} + +export const enumDraftGamePlayersSelectColumn = { + draft_game_id: 'draft_game_id' as const, + elo_snapshot: 'elo_snapshot' as const, + is_captain: 'is_captain' as const, + joined_at: 'joined_at' as const, + lineup: 'lineup' as const, + pick_order: 'pick_order' as const, + status: 'status' as const, + steam_id: 'steam_id' as const +} + +export const enumDraftGamePlayersSelectColumnDraftGamePlayersAggregateBoolExpBoolAndArgumentsColumns = { + is_captain: 'is_captain' as const +} + +export const enumDraftGamePlayersSelectColumnDraftGamePlayersAggregateBoolExpBoolOrArgumentsColumns = { + is_captain: 'is_captain' as const +} + +export const enumDraftGamePlayersUpdateColumn = { + draft_game_id: 'draft_game_id' as const, + elo_snapshot: 'elo_snapshot' as const, + is_captain: 'is_captain' as const, + joined_at: 'joined_at' as const, + lineup: 'lineup' as const, + pick_order: 'pick_order' as const, + status: 'status' as const, + steam_id: 'steam_id' as const +} + +export const enumDraftGamesConstraint = { + draft_games_pkey: 'draft_games_pkey' as const +} + +export const enumDraftGamesSelectColumn = { + access: 'access' as const, + capacity: 'capacity' as const, + captain_selection: 'captain_selection' as const, + created_at: 'created_at' as const, + current_pick_lineup: 'current_pick_lineup' as const, + draft_order: 'draft_order' as const, + expires_at: 'expires_at' as const, + host_steam_id: 'host_steam_id' as const, + id: 'id' as const, + inner_squad: 'inner_squad' as const, + invite_code: 'invite_code' as const, + map_pool_id: 'map_pool_id' as const, + match_id: 'match_id' as const, + match_options_id: 'match_options_id' as const, + max_elo: 'max_elo' as const, + min_elo: 'min_elo' as const, + mode: 'mode' as const, + pick_deadline: 'pick_deadline' as const, + regions: 'regions' as const, + require_approval: 'require_approval' as const, + status: 'status' as const, + team_1_id: 'team_1_id' as const, + team_2_id: 'team_2_id' as const, + type: 'type' as const, + updated_at: 'updated_at' as const +} + +export const enumDraftGamesSelectColumnDraftGamesAggregateBoolExpBoolAndArgumentsColumns = { + inner_squad: 'inner_squad' as const, + require_approval: 'require_approval' as const +} + +export const enumDraftGamesSelectColumnDraftGamesAggregateBoolExpBoolOrArgumentsColumns = { + inner_squad: 'inner_squad' as const, + require_approval: 'require_approval' as const +} + +export const enumDraftGamesUpdateColumn = { + access: 'access' as const, + capacity: 'capacity' as const, + captain_selection: 'captain_selection' as const, + created_at: 'created_at' as const, + current_pick_lineup: 'current_pick_lineup' as const, + draft_order: 'draft_order' as const, + expires_at: 'expires_at' as const, + host_steam_id: 'host_steam_id' as const, + id: 'id' as const, + inner_squad: 'inner_squad' as const, + invite_code: 'invite_code' as const, + map_pool_id: 'map_pool_id' as const, + match_id: 'match_id' as const, + match_options_id: 'match_options_id' as const, + max_elo: 'max_elo' as const, + min_elo: 'min_elo' as const, + mode: 'mode' as const, + pick_deadline: 'pick_deadline' as const, + regions: 'regions' as const, + require_approval: 'require_approval' as const, + status: 'status' as const, + team_1_id: 'team_1_id' as const, + team_2_id: 'team_2_id' as const, + type: 'type' as const, + updated_at: 'updated_at' as const +} + export const enumECheckInSettingsConstraint = { e_check_in_settings_pkey: 'e_check_in_settings_pkey' as const } @@ -83019,6 +87767,110 @@ export const enumECheckInSettingsUpdateColumn = { value: 'value' as const } +export const enumEDraftGameCaptainSelectionConstraint = { + e_draft_game_captain_selection_pkey: 'e_draft_game_captain_selection_pkey' as const +} + +export const enumEDraftGameCaptainSelectionEnum = { + HostAndNext: 'HostAndNext' as const, + RandomTwo: 'RandomTwo' as const, + TopEloTwo: 'TopEloTwo' as const +} + +export const enumEDraftGameCaptainSelectionSelectColumn = { + description: 'description' as const, + value: 'value' as const +} + +export const enumEDraftGameCaptainSelectionUpdateColumn = { + description: 'description' as const, + value: 'value' as const +} + +export const enumEDraftGameDraftOrderConstraint = { + e_draft_game_draft_order_pkey: 'e_draft_game_draft_order_pkey' as const +} + +export const enumEDraftGameDraftOrderEnum = { + Alternating: 'Alternating' as const, + Snake: 'Snake' as const +} + +export const enumEDraftGameDraftOrderSelectColumn = { + description: 'description' as const, + value: 'value' as const +} + +export const enumEDraftGameDraftOrderUpdateColumn = { + description: 'description' as const, + value: 'value' as const +} + +export const enumEDraftGameModeConstraint = { + e_draft_game_mode_pkey: 'e_draft_game_mode_pkey' as const +} + +export const enumEDraftGameModeEnum = { + Captains: 'Captains' as const, + Host: 'Host' as const, + Pug: 'Pug' as const, + Teams: 'Teams' as const +} + +export const enumEDraftGameModeSelectColumn = { + description: 'description' as const, + value: 'value' as const +} + +export const enumEDraftGameModeUpdateColumn = { + description: 'description' as const, + value: 'value' as const +} + +export const enumEDraftGamePlayerStatusConstraint = { + e_draft_game_player_status_pkey: 'e_draft_game_player_status_pkey' as const +} + +export const enumEDraftGamePlayerStatusEnum = { + Accepted: 'Accepted' as const, + Requested: 'Requested' as const, + Waitlist: 'Waitlist' as const +} + +export const enumEDraftGamePlayerStatusSelectColumn = { + description: 'description' as const, + value: 'value' as const +} + +export const enumEDraftGamePlayerStatusUpdateColumn = { + description: 'description' as const, + value: 'value' as const +} + +export const enumEDraftGameStatusConstraint = { + e_draft_game_status_pkey: 'e_draft_game_status_pkey' as const +} + +export const enumEDraftGameStatusEnum = { + Canceled: 'Canceled' as const, + Completed: 'Completed' as const, + CreatingMatch: 'CreatingMatch' as const, + Drafting: 'Drafting' as const, + Filled: 'Filled' as const, + Open: 'Open' as const, + SelectingCaptains: 'SelectingCaptains' as const +} + +export const enumEDraftGameStatusSelectColumn = { + description: 'description' as const, + value: 'value' as const +} + +export const enumEDraftGameStatusUpdateColumn = { + description: 'description' as const, + value: 'value' as const +} + export const enumEFriendStatusConstraint = { e_friend_status_pkey: 'e_friend_status_pkey' as const } @@ -84448,6 +89300,45 @@ export const enumMyFriendsSelectColumnMyFriendsAggregateBoolExpBoolOrArgumentsCo name_registered: 'name_registered' as const } +export const enumNewsArticlesConstraint = { + news_articles_pkey: 'news_articles_pkey' as const, + news_articles_url_key: 'news_articles_url_key' as const +} + +export const enumNewsArticlesSelectColumn = { + author: 'author' as const, + content_html: 'content_html' as const, + cover_image_url: 'cover_image_url' as const, + created_at: 'created_at' as const, + id: 'id' as const, + issue_number: 'issue_number' as const, + published_at: 'published_at' as const, + scraped_at: 'scraped_at' as const, + slug: 'slug' as const, + source: 'source' as const, + teaser: 'teaser' as const, + title: 'title' as const, + updated_at: 'updated_at' as const, + url: 'url' as const +} + +export const enumNewsArticlesUpdateColumn = { + author: 'author' as const, + content_html: 'content_html' as const, + cover_image_url: 'cover_image_url' as const, + created_at: 'created_at' as const, + id: 'id' as const, + issue_number: 'issue_number' as const, + published_at: 'published_at' as const, + scraped_at: 'scraped_at' as const, + slug: 'slug' as const, + source: 'source' as const, + teaser: 'teaser' as const, + title: 'title' as const, + updated_at: 'updated_at' as const, + url: 'url' as const +} + export const enumNotificationsConstraint = { notifications_pkey: 'notifications_pkey' as const } @@ -85426,6 +90317,7 @@ export const enumPlayersSelectColumn = { faceit_url: 'faceit_url' as const, game_ban_count: 'game_ban_count' as const, language: 'language' as const, + last_read_news_at: 'last_read_news_at' as const, last_sign_in_at: 'last_sign_in_at' as const, name: 'name' as const, name_registered: 'name_registered' as const, @@ -85456,6 +90348,7 @@ export const enumPlayersUpdateColumn = { faceit_url: 'faceit_url' as const, game_ban_count: 'game_ban_count' as const, language: 'language' as const, + last_read_news_at: 'last_read_news_at' as const, last_sign_in_at: 'last_sign_in_at' as const, name: 'name' as const, name_registered: 'name_registered' as const, diff --git a/generated/types.ts b/generated/types.ts index a20813c9..05e1587b 100644 --- a/generated/types.ts +++ b/generated/types.ts @@ -24,414 +24,452 @@ export default { 222, 231, 239, - 248, - 249, - 258, - 262, + 256, + 267, 268, 269, - 279, - 283, - 289, - 290, - 299, - 303, - 309, - 310, - 320, - 324, - 330, - 331, - 341, - 345, - 351, - 352, - 361, - 365, - 371, + 281, + 301, + 312, + 313, + 314, + 326, + 346, + 358, + 359, + 360, 372, - 382, - 386, - 392, - 393, - 402, - 406, - 412, - 413, - 423, - 427, - 433, - 434, - 443, + 384, + 385, + 394, + 398, + 404, + 405, + 415, + 419, + 425, + 426, + 436, + 440, + 446, 447, - 453, - 454, - 464, + 457, + 461, + 467, 468, - 474, - 475, - 485, + 478, + 482, + 488, 489, - 495, - 496, - 505, + 499, + 503, 509, - 515, - 516, - 525, - 529, - 535, - 536, - 545, - 549, - 555, - 556, + 510, + 520, + 524, + 530, + 531, + 540, + 544, + 550, + 551, + 561, 565, - 569, - 575, - 576, + 571, + 572, + 582, 586, - 590, - 596, - 597, + 592, + 593, + 602, 606, - 610, - 616, - 617, - 626, - 630, - 636, - 637, + 612, + 613, + 623, + 627, + 633, + 634, + 643, 647, - 651, - 657, - 658, - 667, - 671, - 677, - 678, - 687, - 691, - 697, - 698, - 708, - 712, - 718, - 719, - 729, - 733, - 739, - 740, - 749, - 753, - 759, - 760, - 769, - 773, - 779, - 780, - 789, - 793, - 795, - 802, - 811, - 819, + 653, + 654, + 664, + 668, + 674, + 675, + 684, + 688, + 694, + 695, + 705, + 709, + 715, + 716, + 726, + 730, + 736, + 737, + 746, + 750, + 756, + 757, + 766, + 770, + 776, + 777, + 786, + 790, + 796, + 797, + 806, + 810, + 816, + 817, + 827, + 831, 837, - 853, - 854, - 855, + 838, + 847, + 851, + 857, + 858, 867, - 881, - 895, - 903, - 914, - 927, - 935, - 942, - 944, - 946, + 871, + 877, + 878, + 888, + 892, + 898, + 899, + 908, + 912, + 918, + 919, + 928, + 932, + 938, + 939, + 949, + 953, + 959, 960, - 976, - 985, - 989, - 1003, + 970, + 974, + 980, + 981, + 990, + 994, + 1000, + 1001, + 1010, 1014, - 1015, - 1016, - 1028, - 1040, - 1049, - 1053, - 1065, - 1076, - 1077, + 1020, + 1021, + 1030, + 1034, + 1036, + 1043, + 1052, + 1060, 1078, - 1082, 1094, - 1106, - 1118, - 1137, - 1152, - 1164, - 1182, - 1193, - 1205, - 1225, - 1236, - 1237, - 1238, - 1250, - 1268, - 1280, - 1292, - 1313, - 1329, - 1330, - 1331, - 1343, - 1361, - 1372, - 1384, - 1400, - 1410, - 1414, - 1426, - 1438, - 1450, - 1463, - 1473, - 1481, - 1494, - 1504, - 1508, - 1523, - 1538, - 1539, - 1540, - 1552, - 1564, + 1095, + 1096, + 1108, + 1122, + 1136, + 1144, + 1155, + 1168, + 1176, + 1183, + 1185, + 1187, + 1201, + 1217, + 1226, + 1230, + 1244, + 1255, + 1256, + 1257, + 1269, + 1281, + 1290, + 1294, + 1306, + 1317, + 1318, + 1319, + 1323, + 1335, + 1347, + 1359, + 1378, + 1393, + 1405, + 1423, + 1434, + 1446, + 1466, + 1477, + 1478, + 1479, + 1491, + 1509, + 1521, + 1533, + 1554, + 1570, + 1571, 1572, - 1576, - 1588, - 1600, - 1612, - 1624, - 1632, - 1636, - 1663, - 1664, - 1665, - 1697, - 1712, - 1713, + 1584, + 1602, + 1613, + 1625, + 1641, + 1651, + 1655, + 1667, + 1679, + 1691, + 1704, 1714, - 1726, - 1734, - 1736, - 1747, - 1758, - 1770, - 1783, + 1722, + 1735, + 1745, + 1749, + 1764, + 1779, + 1780, + 1781, 1793, - 1801, - 1811, - 1820, - 1828, - 1843, - 1854, - 1866, - 1886, - 1897, - 1898, - 1899, - 1911, - 1927, + 1805, + 1813, + 1817, + 1829, + 1841, + 1853, + 1865, + 1873, + 1877, + 1904, + 1905, + 1906, + 1930, + 1939, 1947, - 1958, - 1970, - 1983, - 1992, - 2000, + 1965, + 1980, + 1981, + 1982, + 1994, + 2002, + 2004, 2015, 2026, 2038, - 2058, + 2051, + 2061, 2069, - 2070, - 2071, - 2083, - 2113, - 2124, - 2136, - 2144, - 2155, - 2156, - 2157, - 2169, - 2188, - 2210, - 2221, - 2233, - 2249, - 2275, - 2302, - 2313, - 2325, - 2341, - 2361, - 2372, - 2384, - 2402, - 2413, + 2079, + 2088, + 2096, + 2111, + 2122, + 2134, + 2154, + 2165, + 2166, + 2167, + 2179, + 2195, + 2215, + 2226, + 2238, + 2251, + 2260, + 2268, + 2283, + 2294, + 2306, + 2326, + 2337, + 2338, + 2339, + 2351, + 2381, + 2392, + 2404, + 2412, + 2423, + 2424, 2425, - 2438, - 2448, + 2437, 2456, - 2466, - 2475, - 2483, - 2498, - 2509, - 2521, - 2539, - 2550, - 2562, - 2586, - 2608, - 2618, - 2626, - 2636, - 2645, - 2653, - 2664, - 2673, + 2478, + 2489, + 2501, + 2517, + 2543, + 2570, + 2581, + 2593, + 2609, + 2629, + 2640, + 2652, + 2670, 2681, - 2698, - 2710, - 2711, - 2712, + 2693, + 2706, + 2716, 2724, - 2736, - 2744, - 2748, - 2758, - 2768, - 2772, - 2778, - 2787, - 2791, - 2803, - 2814, - 2826, - 2846, - 2857, - 2858, - 2859, - 2871, - 2889, - 2901, + 2734, + 2743, + 2751, + 2766, + 2777, + 2789, + 2807, + 2818, + 2830, + 2854, + 2876, + 2886, + 2894, + 2904, 2913, 2921, - 2922, - 2936, - 2948, + 2932, + 2941, 2949, - 2950, - 2962, + 2966, + 2978, + 2979, 2980, - 2991, - 3003, - 3024, + 2992, + 3004, + 3012, + 3016, + 3026, + 3036, 3040, - 3041, - 3042, - 3054, - 3072, - 3083, - 3095, - 3113, - 3124, - 3136, - 3154, - 3166, - 3178, - 3198, - 3209, - 3210, - 3211, - 3223, - 3241, - 3253, - 3265, - 3285, - 3297, - 3298, - 3299, - 3311, - 3319, - 3329, + 3046, + 3055, + 3059, + 3071, + 3082, + 3094, + 3114, + 3125, + 3126, + 3127, + 3139, + 3157, + 3169, + 3181, + 3189, + 3190, + 3204, + 3216, + 3217, + 3218, + 3230, + 3248, + 3259, + 3271, + 3292, + 3308, + 3309, + 3310, + 3322, + 3340, 3351, - 3379, + 3363, + 3381, + 3392, 3404, 3422, - 3440, - 3461, - 3481, - 3507, - 3532, - 3550, - 3586, + 3434, + 3446, + 3466, + 3477, + 3478, + 3479, + 3491, + 3509, + 3521, + 3533, + 3553, + 3565, + 3566, + 3567, + 3579, 3587, - 3588, - 3589, - 3590, - 3591, - 3592, - 3593, - 3594, + 3597, 3619, - 3637, - 3655, - 3683, - 3710, - 3728, - 3746, - 3772, - 3797, - 3815, - 3842, - 3843, - 3844, + 3647, + 3672, + 3690, + 3708, + 3729, + 3749, + 3775, + 3800, + 3818, + 3854, + 3855, + 3856, 3857, + 3858, + 3859, + 3860, + 3861, + 3862, 3887, - 3899, - 3900, - 3901, - 3902, - 3903, - 3904, 3905, - 3906, - 3907, - 3919, - 3953, - 3954, - 3955, - 3956, - 3957, - 3958, - 3959, - 3960, - 3961, - 4004, - 4005, - 4006, - 4007, - 4008, - 4009, - 4010, - 4011, - 4012 + 3923, + 3951, + 3978, + 3996, + 4014, + 4040, + 4065, + 4083, + 4110, + 4111, + 4112, + 4125, + 4155, + 4167, + 4168, + 4169, + 4170, + 4171, + 4172, + 4173, + 4174, + 4175, + 4187, + 4221, + 4222, + 4223, + 4224, + 4225, + 4226, + 4227, + 4228, + 4229, + 4272, + 4273, + 4274, + 4275, + 4276, + 4277, + 4278, + 4279, + 4280 ], "types": { "ActiveConnection": { @@ -448,7 +486,7 @@ export default { 63 ], "query_start": [ - 2921 + 3189 ], "state": [ 63 @@ -477,7 +515,7 @@ export default { 63 ], "query_start": [ - 2921 + 3189 ], "state": [ 63 @@ -575,7 +613,7 @@ export default { 34 ], "payload": [ - 946 + 1187 ], "start_ms": [ 34 @@ -609,7 +647,7 @@ export default { 63 ], "match_map_id": [ - 3319 + 3587 ], "output": [ 6 @@ -669,7 +707,7 @@ export default { }, "CpuStat": { "time": [ - 2921 + 3189 ], "total": [ 162 @@ -686,7 +724,7 @@ export default { }, "CreateClipRenderOutput": { "job_id": [ - 3319 + 3587 ], "success": [ 3 @@ -845,7 +883,7 @@ export default { 18 ], "time": [ - 2921 + 3189 ], "__typename": [ 63 @@ -892,7 +930,7 @@ export default { 3 ], "modified": [ - 2921 + 3189 ], "name": [ 63 @@ -996,7 +1034,7 @@ export default { 28 ], "time": [ - 2921 + 3189 ], "__typename": [ 63 @@ -1238,7 +1276,7 @@ export default { 63 ], "player": [ - 2603 + 2871 ], "profile_url": [ 63 @@ -1255,7 +1293,7 @@ export default { }, "MemoryStat": { "time": [ - 2921 + 3189 ], "total": [ 162 @@ -1272,7 +1310,7 @@ export default { 44 ], "time": [ - 2921 + 3189 ], "__typename": [ 63 @@ -1797,16 +1835,16 @@ export default { 34 ], "last_analyze": [ - 2921 + 3189 ], "last_autoanalyze": [ - 2921 + 3189 ], "last_autovacuum": [ - 2921 + 3189 ], "last_vacuum": [ - 2921 + 3189 ], "n_dead_tup": [ 34 @@ -1872,7 +1910,7 @@ export default { 63 ], "next_start": [ - 2921 + 3189 ], "__typename": [ 63 @@ -1894,7 +1932,7 @@ export default { }, "TournamentMatchResetImpact": { "bracket_id": [ - 3319 + 3587 ], "depth": [ 34 @@ -1903,7 +1941,7 @@ export default { 3 ], "match_id": [ - 3319 + 3587 ], "match_number": [ 34 @@ -1946,10 +1984,10 @@ export default { }, "_map_pool": { "map_id": [ - 3319 + 3587 ], "map_pool_id": [ - 3319 + 3587 ], "__typename": [ 63 @@ -2000,10 +2038,10 @@ export default { 79 ], "map_id": [ - 3320 + 3588 ], "map_pool_id": [ - 3320 + 3588 ], "__typename": [ 63 @@ -2012,10 +2050,10 @@ export default { "_map_pool_constraint": {}, "_map_pool_insert_input": { "map_id": [ - 3319 + 3587 ], "map_pool_id": [ - 3319 + 3587 ], "__typename": [ 63 @@ -2023,10 +2061,10 @@ export default { }, "_map_pool_max_fields": { "map_id": [ - 3319 + 3587 ], "map_pool_id": [ - 3319 + 3587 ], "__typename": [ 63 @@ -2034,10 +2072,10 @@ export default { }, "_map_pool_min_fields": { "map_id": [ - 3319 + 3587 ], "map_pool_id": [ - 3319 + 3587 ], "__typename": [ 63 @@ -2070,10 +2108,10 @@ export default { }, "_map_pool_order_by": { "map_id": [ - 1736 + 2004 ], "map_pool_id": [ - 1736 + 2004 ], "__typename": [ 63 @@ -2081,10 +2119,10 @@ export default { }, "_map_pool_pk_columns_input": { "map_id": [ - 3319 + 3587 ], "map_pool_id": [ - 3319 + 3587 ], "__typename": [ 63 @@ -2093,10 +2131,10 @@ export default { "_map_pool_select_column": {}, "_map_pool_set_input": { "map_id": [ - 3319 + 3587 ], "map_pool_id": [ - 3319 + 3587 ], "__typename": [ 63 @@ -2115,10 +2153,10 @@ export default { }, "_map_pool_stream_cursor_value_input": { "map_id": [ - 3319 + 3587 ], "map_pool_id": [ - 3319 + 3587 ], "__typename": [ 63 @@ -2138,10 +2176,10 @@ export default { }, "abandoned_matches": { "abandoned_at": [ - 2922 + 3190 ], "id": [ - 3319 + 3587 ], "steam_id": [ 162 @@ -2238,7 +2276,7 @@ export default { 102 ], "count": [ - 1736 + 2004 ], "max": [ 108 @@ -2292,7 +2330,7 @@ export default { }, "abandoned_matches_avg_order_by": { "steam_id": [ - 1736 + 2004 ], "__typename": [ 63 @@ -2309,10 +2347,10 @@ export default { 103 ], "abandoned_at": [ - 2923 + 3191 ], "id": [ - 3320 + 3588 ], "steam_id": [ 163 @@ -2332,10 +2370,10 @@ export default { }, "abandoned_matches_insert_input": { "abandoned_at": [ - 2922 + 3190 ], "id": [ - 3319 + 3587 ], "steam_id": [ 162 @@ -2346,10 +2384,10 @@ export default { }, "abandoned_matches_max_fields": { "abandoned_at": [ - 2922 + 3190 ], "id": [ - 3319 + 3587 ], "steam_id": [ 162 @@ -2360,13 +2398,13 @@ export default { }, "abandoned_matches_max_order_by": { "abandoned_at": [ - 1736 + 2004 ], "id": [ - 1736 + 2004 ], "steam_id": [ - 1736 + 2004 ], "__typename": [ 63 @@ -2374,10 +2412,10 @@ export default { }, "abandoned_matches_min_fields": { "abandoned_at": [ - 2922 + 3190 ], "id": [ - 3319 + 3587 ], "steam_id": [ 162 @@ -2388,13 +2426,13 @@ export default { }, "abandoned_matches_min_order_by": { "abandoned_at": [ - 1736 + 2004 ], "id": [ - 1736 + 2004 ], "steam_id": [ - 1736 + 2004 ], "__typename": [ 63 @@ -2427,13 +2465,13 @@ export default { }, "abandoned_matches_order_by": { "abandoned_at": [ - 1736 + 2004 ], "id": [ - 1736 + 2004 ], "steam_id": [ - 1736 + 2004 ], "__typename": [ 63 @@ -2441,7 +2479,7 @@ export default { }, "abandoned_matches_pk_columns_input": { "id": [ - 3319 + 3587 ], "__typename": [ 63 @@ -2450,10 +2488,10 @@ export default { "abandoned_matches_select_column": {}, "abandoned_matches_set_input": { "abandoned_at": [ - 2922 + 3190 ], "id": [ - 3319 + 3587 ], "steam_id": [ 162 @@ -2472,7 +2510,7 @@ export default { }, "abandoned_matches_stddev_order_by": { "steam_id": [ - 1736 + 2004 ], "__typename": [ 63 @@ -2488,7 +2526,7 @@ export default { }, "abandoned_matches_stddev_pop_order_by": { "steam_id": [ - 1736 + 2004 ], "__typename": [ 63 @@ -2504,7 +2542,7 @@ export default { }, "abandoned_matches_stddev_samp_order_by": { "steam_id": [ - 1736 + 2004 ], "__typename": [ 63 @@ -2523,10 +2561,10 @@ export default { }, "abandoned_matches_stream_cursor_value_input": { "abandoned_at": [ - 2922 + 3190 ], "id": [ - 3319 + 3587 ], "steam_id": [ 162 @@ -2545,7 +2583,7 @@ export default { }, "abandoned_matches_sum_order_by": { "steam_id": [ - 1736 + 2004 ], "__typename": [ 63 @@ -2576,7 +2614,7 @@ export default { }, "abandoned_matches_var_pop_order_by": { "steam_id": [ - 1736 + 2004 ], "__typename": [ 63 @@ -2592,7 +2630,7 @@ export default { }, "abandoned_matches_var_samp_order_by": { "steam_id": [ - 1736 + 2004 ], "__typename": [ 63 @@ -2608,7 +2646,7 @@ export default { }, "abandoned_matches_variance_order_by": { "steam_id": [ - 1736 + 2004 ], "__typename": [ 63 @@ -2616,16 +2654,16 @@ export default { }, "api_keys": { "created_at": [ - 2922 + 3190 ], "id": [ - 3319 + 3587 ], "label": [ 63 ], "last_used_at": [ - 2922 + 3190 ], "steam_id": [ 162 @@ -2711,16 +2749,16 @@ export default { 139 ], "created_at": [ - 2923 + 3191 ], "id": [ - 3320 + 3588 ], "label": [ 65 ], "last_used_at": [ - 2923 + 3191 ], "steam_id": [ 163 @@ -2740,16 +2778,16 @@ export default { }, "api_keys_insert_input": { "created_at": [ - 2922 + 3190 ], "id": [ - 3319 + 3587 ], "label": [ 63 ], "last_used_at": [ - 2922 + 3190 ], "steam_id": [ 162 @@ -2760,16 +2798,16 @@ export default { }, "api_keys_max_fields": { "created_at": [ - 2922 + 3190 ], "id": [ - 3319 + 3587 ], "label": [ 63 ], "last_used_at": [ - 2922 + 3190 ], "steam_id": [ 162 @@ -2780,16 +2818,16 @@ export default { }, "api_keys_min_fields": { "created_at": [ - 2922 + 3190 ], "id": [ - 3319 + 3587 ], "label": [ 63 ], "last_used_at": [ - 2922 + 3190 ], "steam_id": [ 162 @@ -2825,19 +2863,19 @@ export default { }, "api_keys_order_by": { "created_at": [ - 1736 + 2004 ], "id": [ - 1736 + 2004 ], "label": [ - 1736 + 2004 ], "last_used_at": [ - 1736 + 2004 ], "steam_id": [ - 1736 + 2004 ], "__typename": [ 63 @@ -2845,7 +2883,7 @@ export default { }, "api_keys_pk_columns_input": { "id": [ - 3319 + 3587 ], "__typename": [ 63 @@ -2854,16 +2892,16 @@ export default { "api_keys_select_column": {}, "api_keys_set_input": { "created_at": [ - 2922 + 3190 ], "id": [ - 3319 + 3587 ], "label": [ 63 ], "last_used_at": [ - 2922 + 3190 ], "steam_id": [ 162 @@ -2909,16 +2947,16 @@ export default { }, "api_keys_stream_cursor_value_input": { "created_at": [ - 2922 + 3190 ], "id": [ - 3319 + 3587 ], "label": [ 63 ], "last_used_at": [ - 2922 + 3190 ], "steam_id": [ 162 @@ -3042,49 +3080,49 @@ export default { }, "clip_render_jobs": { "clip": [ - 1084 + 1325 ], "clip_id": [ - 3319 + 3587 ], "created_at": [ - 2922 + 3190 ], "error_message": [ 63 ], "game_server_node": [ - 824 + 1065 ], "game_server_node_id": [ 63 ], "id": [ - 3319 + 3587 ], "k8s_job_name": [ 63 ], "last_status_at": [ - 2922 + 3190 ], "match_map": [ - 1416 + 1657 ], "match_map_demo": [ - 1300 + 1541 ], "match_map_demo_id": [ - 3319 + 3587 ], "match_map_id": [ - 3319 + 3587 ], "paused": [ 3 ], "progress": [ - 1734 + 2002 ], "session_token": [ 63 @@ -3093,7 +3131,7 @@ export default { 34 ], "spec": [ - 946, + 1187, { "path": [ 63 @@ -3104,7 +3142,7 @@ export default { 63 ], "status_history": [ - 946, + 1187, { "path": [ 63 @@ -3112,7 +3150,7 @@ export default { } ], "user": [ - 2603 + 2871 ], "user_steam_id": [ 162 @@ -3249,7 +3287,7 @@ export default { 177 ], "count": [ - 1736 + 2004 ], "max": [ 186 @@ -3284,10 +3322,10 @@ export default { }, "clip_render_jobs_append_input": { "spec": [ - 946 + 1187 ], "status_history": [ - 946 + 1187 ], "__typename": [ 63 @@ -3320,13 +3358,13 @@ export default { }, "clip_render_jobs_avg_order_by": { "progress": [ - 1736 + 2004 ], "sort_index": [ - 1736 + 2004 ], "user_steam_id": [ - 1736 + 2004 ], "__typename": [ 63 @@ -3343,49 +3381,49 @@ export default { 178 ], "clip": [ - 1093 + 1334 ], "clip_id": [ - 3320 + 3588 ], "created_at": [ - 2923 + 3191 ], "error_message": [ 65 ], "game_server_node": [ - 836 + 1077 ], "game_server_node_id": [ 65 ], "id": [ - 3320 + 3588 ], "k8s_job_name": [ 65 ], "last_status_at": [ - 2923 + 3191 ], "match_map": [ - 1425 + 1666 ], "match_map_demo": [ - 1312 + 1553 ], "match_map_demo_id": [ - 3320 + 3588 ], "match_map_id": [ - 3320 + 3588 ], "paused": [ 4 ], "progress": [ - 1735 + 2003 ], "session_token": [ 65 @@ -3394,16 +3432,16 @@ export default { 35 ], "spec": [ - 948 + 1189 ], "status": [ 65 ], "status_history": [ - 948 + 1189 ], "user": [ - 2607 + 2875 ], "user_steam_id": [ 163 @@ -3448,7 +3486,7 @@ export default { }, "clip_render_jobs_inc_input": { "progress": [ - 1734 + 2002 ], "sort_index": [ 34 @@ -3462,49 +3500,49 @@ export default { }, "clip_render_jobs_insert_input": { "clip": [ - 1102 + 1343 ], "clip_id": [ - 3319 + 3587 ], "created_at": [ - 2922 + 3190 ], "error_message": [ 63 ], "game_server_node": [ - 848 + 1089 ], "game_server_node_id": [ 63 ], "id": [ - 3319 + 3587 ], "k8s_job_name": [ 63 ], "last_status_at": [ - 2922 + 3190 ], "match_map": [ - 1434 + 1675 ], "match_map_demo": [ - 1324 + 1565 ], "match_map_demo_id": [ - 3319 + 3587 ], "match_map_id": [ - 3319 + 3587 ], "paused": [ 3 ], "progress": [ - 1734 + 2002 ], "session_token": [ 63 @@ -3513,16 +3551,16 @@ export default { 34 ], "spec": [ - 946 + 1187 ], "status": [ 63 ], "status_history": [ - 946 + 1187 ], "user": [ - 2614 + 2882 ], "user_steam_id": [ 162 @@ -3533,10 +3571,10 @@ export default { }, "clip_render_jobs_max_fields": { "clip_id": [ - 3319 + 3587 ], "created_at": [ - 2922 + 3190 ], "error_message": [ 63 @@ -3545,22 +3583,22 @@ export default { 63 ], "id": [ - 3319 + 3587 ], "k8s_job_name": [ 63 ], "last_status_at": [ - 2922 + 3190 ], "match_map_demo_id": [ - 3319 + 3587 ], "match_map_id": [ - 3319 + 3587 ], "progress": [ - 1734 + 2002 ], "session_token": [ 63 @@ -3580,46 +3618,46 @@ export default { }, "clip_render_jobs_max_order_by": { "clip_id": [ - 1736 + 2004 ], "created_at": [ - 1736 + 2004 ], "error_message": [ - 1736 + 2004 ], "game_server_node_id": [ - 1736 + 2004 ], "id": [ - 1736 + 2004 ], "k8s_job_name": [ - 1736 + 2004 ], "last_status_at": [ - 1736 + 2004 ], "match_map_demo_id": [ - 1736 + 2004 ], "match_map_id": [ - 1736 + 2004 ], "progress": [ - 1736 + 2004 ], "session_token": [ - 1736 + 2004 ], "sort_index": [ - 1736 + 2004 ], "status": [ - 1736 + 2004 ], "user_steam_id": [ - 1736 + 2004 ], "__typename": [ 63 @@ -3627,10 +3665,10 @@ export default { }, "clip_render_jobs_min_fields": { "clip_id": [ - 3319 + 3587 ], "created_at": [ - 2922 + 3190 ], "error_message": [ 63 @@ -3639,22 +3677,22 @@ export default { 63 ], "id": [ - 3319 + 3587 ], "k8s_job_name": [ 63 ], "last_status_at": [ - 2922 + 3190 ], "match_map_demo_id": [ - 3319 + 3587 ], "match_map_id": [ - 3319 + 3587 ], "progress": [ - 1734 + 2002 ], "session_token": [ 63 @@ -3674,46 +3712,46 @@ export default { }, "clip_render_jobs_min_order_by": { "clip_id": [ - 1736 + 2004 ], "created_at": [ - 1736 + 2004 ], "error_message": [ - 1736 + 2004 ], "game_server_node_id": [ - 1736 + 2004 ], "id": [ - 1736 + 2004 ], "k8s_job_name": [ - 1736 + 2004 ], "last_status_at": [ - 1736 + 2004 ], "match_map_demo_id": [ - 1736 + 2004 ], "match_map_id": [ - 1736 + 2004 ], "progress": [ - 1736 + 2004 ], "session_token": [ - 1736 + 2004 ], "sort_index": [ - 1736 + 2004 ], "status": [ - 1736 + 2004 ], "user_steam_id": [ - 1736 + 2004 ], "__typename": [ 63 @@ -3746,70 +3784,70 @@ export default { }, "clip_render_jobs_order_by": { "clip": [ - 1104 + 1345 ], "clip_id": [ - 1736 + 2004 ], "created_at": [ - 1736 + 2004 ], "error_message": [ - 1736 + 2004 ], "game_server_node": [ - 850 + 1091 ], "game_server_node_id": [ - 1736 + 2004 ], "id": [ - 1736 + 2004 ], "k8s_job_name": [ - 1736 + 2004 ], "last_status_at": [ - 1736 + 2004 ], "match_map": [ - 1436 + 1677 ], "match_map_demo": [ - 1326 + 1567 ], "match_map_demo_id": [ - 1736 + 2004 ], "match_map_id": [ - 1736 + 2004 ], "paused": [ - 1736 + 2004 ], "progress": [ - 1736 + 2004 ], "session_token": [ - 1736 + 2004 ], "sort_index": [ - 1736 + 2004 ], "spec": [ - 1736 + 2004 ], "status": [ - 1736 + 2004 ], "status_history": [ - 1736 + 2004 ], "user": [ - 2616 + 2884 ], "user_steam_id": [ - 1736 + 2004 ], "__typename": [ 63 @@ -3817,7 +3855,7 @@ export default { }, "clip_render_jobs_pk_columns_input": { "id": [ - 3319 + 3587 ], "__typename": [ 63 @@ -3825,10 +3863,10 @@ export default { }, "clip_render_jobs_prepend_input": { "spec": [ - 946 + 1187 ], "status_history": [ - 946 + 1187 ], "__typename": [ 63 @@ -3839,10 +3877,10 @@ export default { "clip_render_jobs_select_column_clip_render_jobs_aggregate_bool_exp_bool_or_arguments_columns": {}, "clip_render_jobs_set_input": { "clip_id": [ - 3319 + 3587 ], "created_at": [ - 2922 + 3190 ], "error_message": [ 63 @@ -3851,25 +3889,25 @@ export default { 63 ], "id": [ - 3319 + 3587 ], "k8s_job_name": [ 63 ], "last_status_at": [ - 2922 + 3190 ], "match_map_demo_id": [ - 3319 + 3587 ], "match_map_id": [ - 3319 + 3587 ], "paused": [ 3 ], "progress": [ - 1734 + 2002 ], "session_token": [ 63 @@ -3878,13 +3916,13 @@ export default { 34 ], "spec": [ - 946 + 1187 ], "status": [ 63 ], "status_history": [ - 946 + 1187 ], "user_steam_id": [ 162 @@ -3909,13 +3947,13 @@ export default { }, "clip_render_jobs_stddev_order_by": { "progress": [ - 1736 + 2004 ], "sort_index": [ - 1736 + 2004 ], "user_steam_id": [ - 1736 + 2004 ], "__typename": [ 63 @@ -3937,13 +3975,13 @@ export default { }, "clip_render_jobs_stddev_pop_order_by": { "progress": [ - 1736 + 2004 ], "sort_index": [ - 1736 + 2004 ], "user_steam_id": [ - 1736 + 2004 ], "__typename": [ 63 @@ -3965,13 +4003,13 @@ export default { }, "clip_render_jobs_stddev_samp_order_by": { "progress": [ - 1736 + 2004 ], "sort_index": [ - 1736 + 2004 ], "user_steam_id": [ - 1736 + 2004 ], "__typename": [ 63 @@ -3990,10 +4028,10 @@ export default { }, "clip_render_jobs_stream_cursor_value_input": { "clip_id": [ - 3319 + 3587 ], "created_at": [ - 2922 + 3190 ], "error_message": [ 63 @@ -4002,25 +4040,25 @@ export default { 63 ], "id": [ - 3319 + 3587 ], "k8s_job_name": [ 63 ], "last_status_at": [ - 2922 + 3190 ], "match_map_demo_id": [ - 3319 + 3587 ], "match_map_id": [ - 3319 + 3587 ], "paused": [ 3 ], "progress": [ - 1734 + 2002 ], "session_token": [ 63 @@ -4029,13 +4067,13 @@ export default { 34 ], "spec": [ - 946 + 1187 ], "status": [ 63 ], "status_history": [ - 946 + 1187 ], "user_steam_id": [ 162 @@ -4046,7 +4084,7 @@ export default { }, "clip_render_jobs_sum_fields": { "progress": [ - 1734 + 2002 ], "sort_index": [ 34 @@ -4060,13 +4098,13 @@ export default { }, "clip_render_jobs_sum_order_by": { "progress": [ - 1736 + 2004 ], "sort_index": [ - 1736 + 2004 ], "user_steam_id": [ - 1736 + 2004 ], "__typename": [ 63 @@ -4118,13 +4156,13 @@ export default { }, "clip_render_jobs_var_pop_order_by": { "progress": [ - 1736 + 2004 ], "sort_index": [ - 1736 + 2004 ], "user_steam_id": [ - 1736 + 2004 ], "__typename": [ 63 @@ -4146,13 +4184,13 @@ export default { }, "clip_render_jobs_var_samp_order_by": { "progress": [ - 1736 + 2004 ], "sort_index": [ - 1736 + 2004 ], "user_steam_id": [ - 1736 + 2004 ], "__typename": [ 63 @@ -4174,13 +4212,13 @@ export default { }, "clip_render_jobs_variance_order_by": { "progress": [ - 1736 + 2004 ], "sort_index": [ - 1736 + 2004 ], "user_steam_id": [ - 1736 + 2004 ], "__typename": [ 63 @@ -4189,10 +4227,10 @@ export default { "cursor_ordering": {}, "db_backups": { "created_at": [ - 2922 + 3190 ], "id": [ - 3319 + 3587 ], "name": [ 63 @@ -4281,10 +4319,10 @@ export default { 221 ], "created_at": [ - 2923 + 3191 ], "id": [ - 3320 + 3588 ], "name": [ 65 @@ -4307,10 +4345,10 @@ export default { }, "db_backups_insert_input": { "created_at": [ - 2922 + 3190 ], "id": [ - 3319 + 3587 ], "name": [ 63 @@ -4324,10 +4362,10 @@ export default { }, "db_backups_max_fields": { "created_at": [ - 2922 + 3190 ], "id": [ - 3319 + 3587 ], "name": [ 63 @@ -4341,10 +4379,10 @@ export default { }, "db_backups_min_fields": { "created_at": [ - 2922 + 3190 ], "id": [ - 3319 + 3587 ], "name": [ 63 @@ -4383,16 +4421,16 @@ export default { }, "db_backups_order_by": { "created_at": [ - 1736 + 2004 ], "id": [ - 1736 + 2004 ], "name": [ - 1736 + 2004 ], "size": [ - 1736 + 2004 ], "__typename": [ 63 @@ -4400,7 +4438,7 @@ export default { }, "db_backups_pk_columns_input": { "id": [ - 3319 + 3587 ], "__typename": [ 63 @@ -4409,10 +4447,10 @@ export default { "db_backups_select_column": {}, "db_backups_set_input": { "created_at": [ - 2922 + 3190 ], "id": [ - 3319 + 3587 ], "name": [ 63 @@ -4461,10 +4499,10 @@ export default { }, "db_backups_stream_cursor_value_input": { "created_at": [ - 2922 + 3190 ], "id": [ - 3319 + 3587 ], "name": [ 63 @@ -4523,20 +4561,44 @@ export default { 63 ] }, - "e_check_in_settings": { - "description": [ - 63 + "draft_game_picks": { + "auto_picked": [ + 3 ], - "value": [ - 63 + "captain": [ + 2871 + ], + "captain_steam_id": [ + 162 + ], + "created_at": [ + 3190 + ], + "draft_game": [ + 334 + ], + "draft_game_id": [ + 3587 + ], + "id": [ + 3587 + ], + "lineup": [ + 34 + ], + "picked": [ + 2871 + ], + "picked_steam_id": [ + 162 ], "__typename": [ 63 ] }, - "e_check_in_settings_aggregate": { + "draft_game_picks_aggregate": { "aggregate": [ - 246 + 250 ], "nodes": [ 244 @@ -4545,331 +4607,4559 @@ export default { 63 ] }, - "e_check_in_settings_aggregate_fields": { - "count": [ - 34, - { - "columns": [ - 258, - "[e_check_in_settings_select_column!]" - ], - "distinct": [ - 3 - ] - } + "draft_game_picks_aggregate_bool_exp": { + "bool_and": [ + 247 ], - "max": [ - 252 + "bool_or": [ + 248 ], - "min": [ - 253 + "count": [ + 249 ], "__typename": [ 63 ] }, - "e_check_in_settings_bool_exp": { - "_and": [ - 247 - ], - "_not": [ - 247 + "draft_game_picks_aggregate_bool_exp_bool_and": { + "arguments": [ + 268 ], - "_or": [ - 247 + "distinct": [ + 3 ], - "description": [ - 65 + "filter": [ + 255 ], - "value": [ - 65 + "predicate": [ + 4 ], "__typename": [ 63 ] }, - "e_check_in_settings_constraint": {}, - "e_check_in_settings_enum": {}, - "e_check_in_settings_enum_comparison_exp": { - "_eq": [ - 249 - ], - "_in": [ - 249 + "draft_game_picks_aggregate_bool_exp_bool_or": { + "arguments": [ + 269 ], - "_is_null": [ + "distinct": [ 3 ], - "_neq": [ - 249 + "filter": [ + 255 ], - "_nin": [ - 249 + "predicate": [ + 4 ], "__typename": [ 63 ] }, - "e_check_in_settings_insert_input": { - "description": [ - 63 + "draft_game_picks_aggregate_bool_exp_count": { + "arguments": [ + 267 ], - "value": [ - 63 + "distinct": [ + 3 ], - "__typename": [ - 63 - ] - }, - "e_check_in_settings_max_fields": { - "description": [ - 63 + "filter": [ + 255 ], - "value": [ - 63 + "predicate": [ + 35 ], "__typename": [ 63 ] }, - "e_check_in_settings_min_fields": { - "description": [ - 63 + "draft_game_picks_aggregate_fields": { + "avg": [ + 253 ], - "value": [ - 63 + "count": [ + 34, + { + "columns": [ + 267, + "[draft_game_picks_select_column!]" + ], + "distinct": [ + 3 + ] + } ], - "__typename": [ - 63 - ] - }, - "e_check_in_settings_mutation_response": { - "affected_rows": [ - 34 + "max": [ + 259 ], - "returning": [ - 244 + "min": [ + 261 ], - "__typename": [ - 63 - ] - }, - "e_check_in_settings_on_conflict": { - "constraint": [ - 248 + "stddev": [ + 271 ], - "update_columns": [ - 262 + "stddev_pop": [ + 273 ], - "where": [ - 247 + "stddev_samp": [ + 275 ], - "__typename": [ - 63 - ] - }, - "e_check_in_settings_order_by": { - "description": [ - 1736 + "sum": [ + 279 ], - "value": [ - 1736 + "var_pop": [ + 283 ], - "__typename": [ - 63 - ] - }, - "e_check_in_settings_pk_columns_input": { - "value": [ - 63 + "var_samp": [ + 285 + ], + "variance": [ + 287 ], "__typename": [ 63 ] }, - "e_check_in_settings_select_column": {}, - "e_check_in_settings_set_input": { - "description": [ - 63 + "draft_game_picks_aggregate_order_by": { + "avg": [ + 254 ], - "value": [ - 63 + "count": [ + 2004 ], - "__typename": [ - 63 - ] - }, - "e_check_in_settings_stream_cursor_input": { - "initial_value": [ - 261 + "max": [ + 260 ], - "ordering": [ - 216 + "min": [ + 262 ], - "__typename": [ - 63 - ] - }, - "e_check_in_settings_stream_cursor_value_input": { - "description": [ - 63 + "stddev": [ + 272 ], - "value": [ - 63 + "stddev_pop": [ + 274 ], - "__typename": [ - 63 - ] - }, - "e_check_in_settings_update_column": {}, - "e_check_in_settings_updates": { - "_set": [ - 259 + "stddev_samp": [ + 276 ], - "where": [ - 247 + "sum": [ + 280 + ], + "var_pop": [ + 284 + ], + "var_samp": [ + 286 + ], + "variance": [ + 288 ], "__typename": [ 63 ] }, - "e_friend_status": { - "description": [ - 63 + "draft_game_picks_arr_rel_insert_input": { + "data": [ + 258 ], - "value": [ - 63 + "on_conflict": [ + 264 ], "__typename": [ 63 ] }, - "e_friend_status_aggregate": { - "aggregate": [ - 266 + "draft_game_picks_avg_fields": { + "captain_steam_id": [ + 25 ], - "nodes": [ - 264 + "lineup": [ + 25 + ], + "picked_steam_id": [ + 25 ], "__typename": [ 63 ] }, - "e_friend_status_aggregate_fields": { - "count": [ - 34, - { - "columns": [ - 279, - "[e_friend_status_select_column!]" - ], - "distinct": [ - 3 - ] - } + "draft_game_picks_avg_order_by": { + "captain_steam_id": [ + 2004 ], - "max": [ - 272 + "lineup": [ + 2004 ], - "min": [ - 273 + "picked_steam_id": [ + 2004 ], "__typename": [ 63 ] }, - "e_friend_status_bool_exp": { + "draft_game_picks_bool_exp": { "_and": [ - 267 + 255 ], "_not": [ - 267 + 255 ], "_or": [ - 267 - ], - "description": [ - 65 + 255 ], - "value": [ - 65 + "auto_picked": [ + 4 ], - "__typename": [ - 63 - ] - }, - "e_friend_status_constraint": {}, - "e_friend_status_enum": {}, - "e_friend_status_enum_comparison_exp": { - "_eq": [ - 269 + "captain": [ + 2875 ], - "_in": [ - 269 + "captain_steam_id": [ + 163 ], - "_is_null": [ - 3 + "created_at": [ + 3191 ], - "_neq": [ - 269 + "draft_game": [ + 345 ], - "_nin": [ - 269 + "draft_game_id": [ + 3588 ], - "__typename": [ - 63 - ] - }, - "e_friend_status_insert_input": { - "description": [ - 63 + "id": [ + 3588 ], - "value": [ - 63 + "lineup": [ + 35 ], - "__typename": [ - 63 - ] - }, - "e_friend_status_max_fields": { - "description": [ - 63 + "picked": [ + 2875 ], - "value": [ - 63 + "picked_steam_id": [ + 163 ], "__typename": [ 63 ] }, - "e_friend_status_min_fields": { - "description": [ - 63 - ], - "value": [ - 63 + "draft_game_picks_constraint": {}, + "draft_game_picks_inc_input": { + "captain_steam_id": [ + 162 ], - "__typename": [ - 63 - ] - }, - "e_friend_status_mutation_response": { - "affected_rows": [ + "lineup": [ 34 ], - "returning": [ - 264 + "picked_steam_id": [ + 162 ], "__typename": [ 63 ] }, - "e_friend_status_obj_rel_insert_input": { - "data": [ - 271 + "draft_game_picks_insert_input": { + "auto_picked": [ + 3 ], - "on_conflict": [ - 276 + "captain": [ + 2882 + ], + "captain_steam_id": [ + 162 + ], + "created_at": [ + 3190 + ], + "draft_game": [ + 354 + ], + "draft_game_id": [ + 3587 + ], + "id": [ + 3587 + ], + "lineup": [ + 34 + ], + "picked": [ + 2882 + ], + "picked_steam_id": [ + 162 + ], + "__typename": [ + 63 + ] + }, + "draft_game_picks_max_fields": { + "captain_steam_id": [ + 162 + ], + "created_at": [ + 3190 + ], + "draft_game_id": [ + 3587 + ], + "id": [ + 3587 + ], + "lineup": [ + 34 + ], + "picked_steam_id": [ + 162 + ], + "__typename": [ + 63 + ] + }, + "draft_game_picks_max_order_by": { + "captain_steam_id": [ + 2004 + ], + "created_at": [ + 2004 + ], + "draft_game_id": [ + 2004 + ], + "id": [ + 2004 + ], + "lineup": [ + 2004 + ], + "picked_steam_id": [ + 2004 + ], + "__typename": [ + 63 + ] + }, + "draft_game_picks_min_fields": { + "captain_steam_id": [ + 162 + ], + "created_at": [ + 3190 + ], + "draft_game_id": [ + 3587 + ], + "id": [ + 3587 + ], + "lineup": [ + 34 + ], + "picked_steam_id": [ + 162 + ], + "__typename": [ + 63 + ] + }, + "draft_game_picks_min_order_by": { + "captain_steam_id": [ + 2004 + ], + "created_at": [ + 2004 + ], + "draft_game_id": [ + 2004 + ], + "id": [ + 2004 + ], + "lineup": [ + 2004 + ], + "picked_steam_id": [ + 2004 + ], + "__typename": [ + 63 + ] + }, + "draft_game_picks_mutation_response": { + "affected_rows": [ + 34 + ], + "returning": [ + 244 + ], + "__typename": [ + 63 + ] + }, + "draft_game_picks_on_conflict": { + "constraint": [ + 256 + ], + "update_columns": [ + 281 + ], + "where": [ + 255 + ], + "__typename": [ + 63 + ] + }, + "draft_game_picks_order_by": { + "auto_picked": [ + 2004 + ], + "captain": [ + 2884 + ], + "captain_steam_id": [ + 2004 + ], + "created_at": [ + 2004 + ], + "draft_game": [ + 356 + ], + "draft_game_id": [ + 2004 + ], + "id": [ + 2004 + ], + "lineup": [ + 2004 + ], + "picked": [ + 2884 + ], + "picked_steam_id": [ + 2004 + ], + "__typename": [ + 63 + ] + }, + "draft_game_picks_pk_columns_input": { + "id": [ + 3587 + ], + "__typename": [ + 63 + ] + }, + "draft_game_picks_select_column": {}, + "draft_game_picks_select_column_draft_game_picks_aggregate_bool_exp_bool_and_arguments_columns": {}, + "draft_game_picks_select_column_draft_game_picks_aggregate_bool_exp_bool_or_arguments_columns": {}, + "draft_game_picks_set_input": { + "auto_picked": [ + 3 + ], + "captain_steam_id": [ + 162 + ], + "created_at": [ + 3190 + ], + "draft_game_id": [ + 3587 + ], + "id": [ + 3587 + ], + "lineup": [ + 34 + ], + "picked_steam_id": [ + 162 + ], + "__typename": [ + 63 + ] + }, + "draft_game_picks_stddev_fields": { + "captain_steam_id": [ + 25 + ], + "lineup": [ + 25 + ], + "picked_steam_id": [ + 25 + ], + "__typename": [ + 63 + ] + }, + "draft_game_picks_stddev_order_by": { + "captain_steam_id": [ + 2004 + ], + "lineup": [ + 2004 + ], + "picked_steam_id": [ + 2004 + ], + "__typename": [ + 63 + ] + }, + "draft_game_picks_stddev_pop_fields": { + "captain_steam_id": [ + 25 + ], + "lineup": [ + 25 + ], + "picked_steam_id": [ + 25 + ], + "__typename": [ + 63 + ] + }, + "draft_game_picks_stddev_pop_order_by": { + "captain_steam_id": [ + 2004 + ], + "lineup": [ + 2004 + ], + "picked_steam_id": [ + 2004 + ], + "__typename": [ + 63 + ] + }, + "draft_game_picks_stddev_samp_fields": { + "captain_steam_id": [ + 25 + ], + "lineup": [ + 25 + ], + "picked_steam_id": [ + 25 + ], + "__typename": [ + 63 + ] + }, + "draft_game_picks_stddev_samp_order_by": { + "captain_steam_id": [ + 2004 + ], + "lineup": [ + 2004 + ], + "picked_steam_id": [ + 2004 + ], + "__typename": [ + 63 + ] + }, + "draft_game_picks_stream_cursor_input": { + "initial_value": [ + 278 + ], + "ordering": [ + 216 + ], + "__typename": [ + 63 + ] + }, + "draft_game_picks_stream_cursor_value_input": { + "auto_picked": [ + 3 + ], + "captain_steam_id": [ + 162 + ], + "created_at": [ + 3190 + ], + "draft_game_id": [ + 3587 + ], + "id": [ + 3587 + ], + "lineup": [ + 34 + ], + "picked_steam_id": [ + 162 + ], + "__typename": [ + 63 + ] + }, + "draft_game_picks_sum_fields": { + "captain_steam_id": [ + 162 + ], + "lineup": [ + 34 + ], + "picked_steam_id": [ + 162 + ], + "__typename": [ + 63 + ] + }, + "draft_game_picks_sum_order_by": { + "captain_steam_id": [ + 2004 + ], + "lineup": [ + 2004 + ], + "picked_steam_id": [ + 2004 + ], + "__typename": [ + 63 + ] + }, + "draft_game_picks_update_column": {}, + "draft_game_picks_updates": { + "_inc": [ + 257 + ], + "_set": [ + 270 + ], + "where": [ + 255 + ], + "__typename": [ + 63 + ] + }, + "draft_game_picks_var_pop_fields": { + "captain_steam_id": [ + 25 + ], + "lineup": [ + 25 + ], + "picked_steam_id": [ + 25 + ], + "__typename": [ + 63 + ] + }, + "draft_game_picks_var_pop_order_by": { + "captain_steam_id": [ + 2004 + ], + "lineup": [ + 2004 + ], + "picked_steam_id": [ + 2004 + ], + "__typename": [ + 63 + ] + }, + "draft_game_picks_var_samp_fields": { + "captain_steam_id": [ + 25 + ], + "lineup": [ + 25 + ], + "picked_steam_id": [ + 25 + ], + "__typename": [ + 63 + ] + }, + "draft_game_picks_var_samp_order_by": { + "captain_steam_id": [ + 2004 + ], + "lineup": [ + 2004 + ], + "picked_steam_id": [ + 2004 + ], + "__typename": [ + 63 + ] + }, + "draft_game_picks_variance_fields": { + "captain_steam_id": [ + 25 + ], + "lineup": [ + 25 + ], + "picked_steam_id": [ + 25 + ], + "__typename": [ + 63 + ] + }, + "draft_game_picks_variance_order_by": { + "captain_steam_id": [ + 2004 + ], + "lineup": [ + 2004 + ], + "picked_steam_id": [ + 2004 + ], + "__typename": [ + 63 + ] + }, + "draft_game_players": { + "draft_game": [ + 334 + ], + "draft_game_id": [ + 3587 + ], + "e_draft_game_player_status": [ + 463 + ], + "elo_snapshot": [ + 34 + ], + "is_captain": [ + 3 + ], + "joined_at": [ + 3190 + ], + "lineup": [ + 34 + ], + "pick_order": [ + 34 + ], + "player": [ + 2871 + ], + "status": [ + 468 + ], + "steam_id": [ + 162 + ], + "__typename": [ + 63 + ] + }, + "draft_game_players_aggregate": { + "aggregate": [ + 295 + ], + "nodes": [ + 289 + ], + "__typename": [ + 63 + ] + }, + "draft_game_players_aggregate_bool_exp": { + "bool_and": [ + 292 + ], + "bool_or": [ + 293 + ], + "count": [ + 294 + ], + "__typename": [ + 63 + ] + }, + "draft_game_players_aggregate_bool_exp_bool_and": { + "arguments": [ + 313 + ], + "distinct": [ + 3 + ], + "filter": [ + 300 + ], + "predicate": [ + 4 + ], + "__typename": [ + 63 + ] + }, + "draft_game_players_aggregate_bool_exp_bool_or": { + "arguments": [ + 314 + ], + "distinct": [ + 3 + ], + "filter": [ + 300 + ], + "predicate": [ + 4 + ], + "__typename": [ + 63 + ] + }, + "draft_game_players_aggregate_bool_exp_count": { + "arguments": [ + 312 + ], + "distinct": [ + 3 + ], + "filter": [ + 300 + ], + "predicate": [ + 35 + ], + "__typename": [ + 63 + ] + }, + "draft_game_players_aggregate_fields": { + "avg": [ + 298 + ], + "count": [ + 34, + { + "columns": [ + 312, + "[draft_game_players_select_column!]" + ], + "distinct": [ + 3 + ] + } + ], + "max": [ + 304 + ], + "min": [ + 306 + ], + "stddev": [ + 316 + ], + "stddev_pop": [ + 318 + ], + "stddev_samp": [ + 320 + ], + "sum": [ + 324 + ], + "var_pop": [ + 328 + ], + "var_samp": [ + 330 + ], + "variance": [ + 332 + ], + "__typename": [ + 63 + ] + }, + "draft_game_players_aggregate_order_by": { + "avg": [ + 299 + ], + "count": [ + 2004 + ], + "max": [ + 305 + ], + "min": [ + 307 + ], + "stddev": [ + 317 + ], + "stddev_pop": [ + 319 + ], + "stddev_samp": [ + 321 + ], + "sum": [ + 325 + ], + "var_pop": [ + 329 + ], + "var_samp": [ + 331 + ], + "variance": [ + 333 + ], + "__typename": [ + 63 + ] + }, + "draft_game_players_arr_rel_insert_input": { + "data": [ + 303 + ], + "on_conflict": [ + 309 + ], + "__typename": [ + 63 + ] + }, + "draft_game_players_avg_fields": { + "elo_snapshot": [ + 25 + ], + "lineup": [ + 25 + ], + "pick_order": [ + 25 + ], + "steam_id": [ + 25 + ], + "__typename": [ + 63 + ] + }, + "draft_game_players_avg_order_by": { + "elo_snapshot": [ + 2004 + ], + "lineup": [ + 2004 + ], + "pick_order": [ + 2004 + ], + "steam_id": [ + 2004 + ], + "__typename": [ + 63 + ] + }, + "draft_game_players_bool_exp": { + "_and": [ + 300 + ], + "_not": [ + 300 + ], + "_or": [ + 300 + ], + "draft_game": [ + 345 + ], + "draft_game_id": [ + 3588 + ], + "e_draft_game_player_status": [ + 466 + ], + "elo_snapshot": [ + 35 + ], + "is_captain": [ + 4 + ], + "joined_at": [ + 3191 + ], + "lineup": [ + 35 + ], + "pick_order": [ + 35 + ], + "player": [ + 2875 + ], + "status": [ + 469 + ], + "steam_id": [ + 163 + ], + "__typename": [ + 63 + ] + }, + "draft_game_players_constraint": {}, + "draft_game_players_inc_input": { + "elo_snapshot": [ + 34 + ], + "lineup": [ + 34 + ], + "pick_order": [ + 34 + ], + "steam_id": [ + 162 + ], + "__typename": [ + 63 + ] + }, + "draft_game_players_insert_input": { + "draft_game": [ + 354 + ], + "draft_game_id": [ + 3587 + ], + "e_draft_game_player_status": [ + 474 + ], + "elo_snapshot": [ + 34 + ], + "is_captain": [ + 3 + ], + "joined_at": [ + 3190 + ], + "lineup": [ + 34 + ], + "pick_order": [ + 34 + ], + "player": [ + 2882 + ], + "status": [ + 468 + ], + "steam_id": [ + 162 + ], + "__typename": [ + 63 + ] + }, + "draft_game_players_max_fields": { + "draft_game_id": [ + 3587 + ], + "elo_snapshot": [ + 34 + ], + "joined_at": [ + 3190 + ], + "lineup": [ + 34 + ], + "pick_order": [ + 34 + ], + "steam_id": [ + 162 + ], + "__typename": [ + 63 + ] + }, + "draft_game_players_max_order_by": { + "draft_game_id": [ + 2004 + ], + "elo_snapshot": [ + 2004 + ], + "joined_at": [ + 2004 + ], + "lineup": [ + 2004 + ], + "pick_order": [ + 2004 + ], + "steam_id": [ + 2004 + ], + "__typename": [ + 63 + ] + }, + "draft_game_players_min_fields": { + "draft_game_id": [ + 3587 + ], + "elo_snapshot": [ + 34 + ], + "joined_at": [ + 3190 + ], + "lineup": [ + 34 + ], + "pick_order": [ + 34 + ], + "steam_id": [ + 162 + ], + "__typename": [ + 63 + ] + }, + "draft_game_players_min_order_by": { + "draft_game_id": [ + 2004 + ], + "elo_snapshot": [ + 2004 + ], + "joined_at": [ + 2004 + ], + "lineup": [ + 2004 + ], + "pick_order": [ + 2004 + ], + "steam_id": [ + 2004 + ], + "__typename": [ + 63 + ] + }, + "draft_game_players_mutation_response": { + "affected_rows": [ + 34 + ], + "returning": [ + 289 + ], + "__typename": [ + 63 + ] + }, + "draft_game_players_on_conflict": { + "constraint": [ + 301 + ], + "update_columns": [ + 326 + ], + "where": [ + 300 + ], + "__typename": [ + 63 + ] + }, + "draft_game_players_order_by": { + "draft_game": [ + 356 + ], + "draft_game_id": [ + 2004 + ], + "e_draft_game_player_status": [ + 476 + ], + "elo_snapshot": [ + 2004 + ], + "is_captain": [ + 2004 + ], + "joined_at": [ + 2004 + ], + "lineup": [ + 2004 + ], + "pick_order": [ + 2004 + ], + "player": [ + 2884 + ], + "status": [ + 2004 + ], + "steam_id": [ + 2004 + ], + "__typename": [ + 63 + ] + }, + "draft_game_players_pk_columns_input": { + "draft_game_id": [ + 3587 + ], + "steam_id": [ + 162 + ], + "__typename": [ + 63 + ] + }, + "draft_game_players_select_column": {}, + "draft_game_players_select_column_draft_game_players_aggregate_bool_exp_bool_and_arguments_columns": {}, + "draft_game_players_select_column_draft_game_players_aggregate_bool_exp_bool_or_arguments_columns": {}, + "draft_game_players_set_input": { + "draft_game_id": [ + 3587 + ], + "elo_snapshot": [ + 34 + ], + "is_captain": [ + 3 + ], + "joined_at": [ + 3190 + ], + "lineup": [ + 34 + ], + "pick_order": [ + 34 + ], + "status": [ + 468 + ], + "steam_id": [ + 162 + ], + "__typename": [ + 63 + ] + }, + "draft_game_players_stddev_fields": { + "elo_snapshot": [ + 25 + ], + "lineup": [ + 25 + ], + "pick_order": [ + 25 + ], + "steam_id": [ + 25 + ], + "__typename": [ + 63 + ] + }, + "draft_game_players_stddev_order_by": { + "elo_snapshot": [ + 2004 + ], + "lineup": [ + 2004 + ], + "pick_order": [ + 2004 + ], + "steam_id": [ + 2004 + ], + "__typename": [ + 63 + ] + }, + "draft_game_players_stddev_pop_fields": { + "elo_snapshot": [ + 25 + ], + "lineup": [ + 25 + ], + "pick_order": [ + 25 + ], + "steam_id": [ + 25 + ], + "__typename": [ + 63 + ] + }, + "draft_game_players_stddev_pop_order_by": { + "elo_snapshot": [ + 2004 + ], + "lineup": [ + 2004 + ], + "pick_order": [ + 2004 + ], + "steam_id": [ + 2004 + ], + "__typename": [ + 63 + ] + }, + "draft_game_players_stddev_samp_fields": { + "elo_snapshot": [ + 25 + ], + "lineup": [ + 25 + ], + "pick_order": [ + 25 + ], + "steam_id": [ + 25 + ], + "__typename": [ + 63 + ] + }, + "draft_game_players_stddev_samp_order_by": { + "elo_snapshot": [ + 2004 + ], + "lineup": [ + 2004 + ], + "pick_order": [ + 2004 + ], + "steam_id": [ + 2004 + ], + "__typename": [ + 63 + ] + }, + "draft_game_players_stream_cursor_input": { + "initial_value": [ + 323 + ], + "ordering": [ + 216 + ], + "__typename": [ + 63 + ] + }, + "draft_game_players_stream_cursor_value_input": { + "draft_game_id": [ + 3587 + ], + "elo_snapshot": [ + 34 + ], + "is_captain": [ + 3 + ], + "joined_at": [ + 3190 + ], + "lineup": [ + 34 + ], + "pick_order": [ + 34 + ], + "status": [ + 468 + ], + "steam_id": [ + 162 + ], + "__typename": [ + 63 + ] + }, + "draft_game_players_sum_fields": { + "elo_snapshot": [ + 34 + ], + "lineup": [ + 34 + ], + "pick_order": [ + 34 + ], + "steam_id": [ + 162 + ], + "__typename": [ + 63 + ] + }, + "draft_game_players_sum_order_by": { + "elo_snapshot": [ + 2004 + ], + "lineup": [ + 2004 + ], + "pick_order": [ + 2004 + ], + "steam_id": [ + 2004 + ], + "__typename": [ + 63 + ] + }, + "draft_game_players_update_column": {}, + "draft_game_players_updates": { + "_inc": [ + 302 + ], + "_set": [ + 315 + ], + "where": [ + 300 + ], + "__typename": [ + 63 + ] + }, + "draft_game_players_var_pop_fields": { + "elo_snapshot": [ + 25 + ], + "lineup": [ + 25 + ], + "pick_order": [ + 25 + ], + "steam_id": [ + 25 + ], + "__typename": [ + 63 + ] + }, + "draft_game_players_var_pop_order_by": { + "elo_snapshot": [ + 2004 + ], + "lineup": [ + 2004 + ], + "pick_order": [ + 2004 + ], + "steam_id": [ + 2004 + ], + "__typename": [ + 63 + ] + }, + "draft_game_players_var_samp_fields": { + "elo_snapshot": [ + 25 + ], + "lineup": [ + 25 + ], + "pick_order": [ + 25 + ], + "steam_id": [ + 25 + ], + "__typename": [ + 63 + ] + }, + "draft_game_players_var_samp_order_by": { + "elo_snapshot": [ + 2004 + ], + "lineup": [ + 2004 + ], + "pick_order": [ + 2004 + ], + "steam_id": [ + 2004 + ], + "__typename": [ + 63 + ] + }, + "draft_game_players_variance_fields": { + "elo_snapshot": [ + 25 + ], + "lineup": [ + 25 + ], + "pick_order": [ + 25 + ], + "steam_id": [ + 25 + ], + "__typename": [ + 63 + ] + }, + "draft_game_players_variance_order_by": { + "elo_snapshot": [ + 2004 + ], + "lineup": [ + 2004 + ], + "pick_order": [ + 2004 + ], + "steam_id": [ + 2004 + ], + "__typename": [ + 63 + ] + }, + "draft_games": { + "access": [ + 572 + ], + "capacity": [ + 34 + ], + "captain_selection": [ + 405 + ], + "created_at": [ + 3190 + ], + "current_pick_lineup": [ + 34 + ], + "draft_order": [ + 426 + ], + "e_draft_game_captain_selection": [ + 400 + ], + "e_draft_game_draft_order": [ + 421 + ], + "e_draft_game_mode": [ + 442 + ], + "e_draft_game_status": [ + 484 + ], + "e_lobby_access": [ + 567 + ], + "expires_at": [ + 3190 + ], + "host": [ + 2871 + ], + "host_steam_id": [ + 162 + ], + "id": [ + 3587 + ], + "inner_squad": [ + 3 + ], + "invite_code": [ + 3587 + ], + "map_pool": [ + 1277 + ], + "map_pool_id": [ + 3587 + ], + "match": [ + 1819 + ], + "match_id": [ + 3587 + ], + "match_options_id": [ + 3587 + ], + "max_elo": [ + 34 + ], + "min_elo": [ + 34 + ], + "mode": [ + 447 + ], + "options": [ + 1699 + ], + "pick_deadline": [ + 3190 + ], + "picks": [ + 244, + { + "distinct_on": [ + 267, + "[draft_game_picks_select_column!]" + ], + "limit": [ + 34 + ], + "offset": [ + 34 + ], + "order_by": [ + 265, + "[draft_game_picks_order_by!]" + ], + "where": [ + 255 + ] + } + ], + "picks_aggregate": [ + 245, + { + "distinct_on": [ + 267, + "[draft_game_picks_select_column!]" + ], + "limit": [ + 34 + ], + "offset": [ + 34 + ], + "order_by": [ + 265, + "[draft_game_picks_order_by!]" + ], + "where": [ + 255 + ] + } + ], + "players": [ + 289, + { + "distinct_on": [ + 312, + "[draft_game_players_select_column!]" + ], + "limit": [ + 34 + ], + "offset": [ + 34 + ], + "order_by": [ + 310, + "[draft_game_players_order_by!]" + ], + "where": [ + 300 + ] + } + ], + "players_aggregate": [ + 290, + { + "distinct_on": [ + 312, + "[draft_game_players_select_column!]" + ], + "limit": [ + 34 + ], + "offset": [ + 34 + ], + "order_by": [ + 310, + "[draft_game_players_order_by!]" + ], + "where": [ + 300 + ] + } + ], + "regions": [ + 63 + ], + "require_approval": [ + 3 + ], + "status": [ + 489 + ], + "team_1": [ + 3147 + ], + "team_1_id": [ + 3587 + ], + "team_2": [ + 3147 + ], + "team_2_id": [ + 3587 + ], + "type": [ + 716 + ], + "updated_at": [ + 3190 + ], + "__typename": [ + 63 + ] + }, + "draft_games_aggregate": { + "aggregate": [ + 340 + ], + "nodes": [ + 334 + ], + "__typename": [ + 63 + ] + }, + "draft_games_aggregate_bool_exp": { + "bool_and": [ + 337 + ], + "bool_or": [ + 338 + ], + "count": [ + 339 + ], + "__typename": [ + 63 + ] + }, + "draft_games_aggregate_bool_exp_bool_and": { + "arguments": [ + 359 + ], + "distinct": [ + 3 + ], + "filter": [ + 345 + ], + "predicate": [ + 4 + ], + "__typename": [ + 63 + ] + }, + "draft_games_aggregate_bool_exp_bool_or": { + "arguments": [ + 360 + ], + "distinct": [ + 3 + ], + "filter": [ + 345 + ], + "predicate": [ + 4 + ], + "__typename": [ + 63 + ] + }, + "draft_games_aggregate_bool_exp_count": { + "arguments": [ + 358 + ], + "distinct": [ + 3 + ], + "filter": [ + 345 + ], + "predicate": [ + 35 + ], + "__typename": [ + 63 + ] + }, + "draft_games_aggregate_fields": { + "avg": [ + 343 + ], + "count": [ + 34, + { + "columns": [ + 358, + "[draft_games_select_column!]" + ], + "distinct": [ + 3 + ] + } + ], + "max": [ + 349 + ], + "min": [ + 351 + ], + "stddev": [ + 362 + ], + "stddev_pop": [ + 364 + ], + "stddev_samp": [ + 366 + ], + "sum": [ + 370 + ], + "var_pop": [ + 374 + ], + "var_samp": [ + 376 + ], + "variance": [ + 378 + ], + "__typename": [ + 63 + ] + }, + "draft_games_aggregate_order_by": { + "avg": [ + 344 + ], + "count": [ + 2004 + ], + "max": [ + 350 + ], + "min": [ + 352 + ], + "stddev": [ + 363 + ], + "stddev_pop": [ + 365 + ], + "stddev_samp": [ + 367 + ], + "sum": [ + 371 + ], + "var_pop": [ + 375 + ], + "var_samp": [ + 377 + ], + "variance": [ + 379 + ], + "__typename": [ + 63 + ] + }, + "draft_games_arr_rel_insert_input": { + "data": [ + 348 + ], + "on_conflict": [ + 355 + ], + "__typename": [ + 63 + ] + }, + "draft_games_avg_fields": { + "capacity": [ + 25 + ], + "current_pick_lineup": [ + 25 + ], + "host_steam_id": [ + 25 + ], + "max_elo": [ + 25 + ], + "min_elo": [ + 25 + ], + "__typename": [ + 63 + ] + }, + "draft_games_avg_order_by": { + "capacity": [ + 2004 + ], + "current_pick_lineup": [ + 2004 + ], + "host_steam_id": [ + 2004 + ], + "max_elo": [ + 2004 + ], + "min_elo": [ + 2004 + ], + "__typename": [ + 63 + ] + }, + "draft_games_bool_exp": { + "_and": [ + 345 + ], + "_not": [ + 345 + ], + "_or": [ + 345 + ], + "access": [ + 573 + ], + "capacity": [ + 35 + ], + "captain_selection": [ + 406 + ], + "created_at": [ + 3191 + ], + "current_pick_lineup": [ + 35 + ], + "draft_order": [ + 427 + ], + "e_draft_game_captain_selection": [ + 403 + ], + "e_draft_game_draft_order": [ + 424 + ], + "e_draft_game_mode": [ + 445 + ], + "e_draft_game_status": [ + 487 + ], + "e_lobby_access": [ + 570 + ], + "expires_at": [ + 3191 + ], + "host": [ + 2875 + ], + "host_steam_id": [ + 163 + ], + "id": [ + 3588 + ], + "inner_squad": [ + 4 + ], + "invite_code": [ + 3588 + ], + "map_pool": [ + 1280 + ], + "map_pool_id": [ + 3588 + ], + "match": [ + 1828 + ], + "match_id": [ + 3588 + ], + "match_options_id": [ + 3588 + ], + "max_elo": [ + 35 + ], + "min_elo": [ + 35 + ], + "mode": [ + 448 + ], + "options": [ + 1703 + ], + "pick_deadline": [ + 3191 + ], + "picks": [ + 255 + ], + "picks_aggregate": [ + 246 + ], + "players": [ + 300 + ], + "players_aggregate": [ + 291 + ], + "regions": [ + 64 + ], + "require_approval": [ + 4 + ], + "status": [ + 490 + ], + "team_1": [ + 3156 + ], + "team_1_id": [ + 3588 + ], + "team_2": [ + 3156 + ], + "team_2_id": [ + 3588 + ], + "type": [ + 717 + ], + "updated_at": [ + 3191 + ], + "__typename": [ + 63 + ] + }, + "draft_games_constraint": {}, + "draft_games_inc_input": { + "capacity": [ + 34 + ], + "current_pick_lineup": [ + 34 + ], + "host_steam_id": [ + 162 + ], + "max_elo": [ + 34 + ], + "min_elo": [ + 34 + ], + "__typename": [ + 63 + ] + }, + "draft_games_insert_input": { + "access": [ + 572 + ], + "capacity": [ + 34 + ], + "captain_selection": [ + 405 + ], + "created_at": [ + 3190 + ], + "current_pick_lineup": [ + 34 + ], + "draft_order": [ + 426 + ], + "e_draft_game_captain_selection": [ + 411 + ], + "e_draft_game_draft_order": [ + 432 + ], + "e_draft_game_mode": [ + 453 + ], + "e_draft_game_status": [ + 495 + ], + "e_lobby_access": [ + 578 + ], + "expires_at": [ + 3190 + ], + "host": [ + 2882 + ], + "host_steam_id": [ + 162 + ], + "id": [ + 3587 + ], + "inner_squad": [ + 3 + ], + "invite_code": [ + 3587 + ], + "map_pool": [ + 1286 + ], + "map_pool_id": [ + 3587 + ], + "match": [ + 1837 + ], + "match_id": [ + 3587 + ], + "match_options_id": [ + 3587 + ], + "max_elo": [ + 34 + ], + "min_elo": [ + 34 + ], + "mode": [ + 447 + ], + "options": [ + 1710 + ], + "pick_deadline": [ + 3190 + ], + "picks": [ + 252 + ], + "players": [ + 297 + ], + "regions": [ + 63 + ], + "require_approval": [ + 3 + ], + "status": [ + 489 + ], + "team_1": [ + 3165 + ], + "team_1_id": [ + 3587 + ], + "team_2": [ + 3165 + ], + "team_2_id": [ + 3587 + ], + "type": [ + 716 + ], + "updated_at": [ + 3190 + ], + "__typename": [ + 63 + ] + }, + "draft_games_max_fields": { + "capacity": [ + 34 + ], + "created_at": [ + 3190 + ], + "current_pick_lineup": [ + 34 + ], + "expires_at": [ + 3190 + ], + "host_steam_id": [ + 162 + ], + "id": [ + 3587 + ], + "invite_code": [ + 3587 + ], + "map_pool_id": [ + 3587 + ], + "match_id": [ + 3587 + ], + "match_options_id": [ + 3587 + ], + "max_elo": [ + 34 + ], + "min_elo": [ + 34 + ], + "pick_deadline": [ + 3190 + ], + "regions": [ + 63 + ], + "team_1_id": [ + 3587 + ], + "team_2_id": [ + 3587 + ], + "updated_at": [ + 3190 + ], + "__typename": [ + 63 + ] + }, + "draft_games_max_order_by": { + "capacity": [ + 2004 + ], + "created_at": [ + 2004 + ], + "current_pick_lineup": [ + 2004 + ], + "expires_at": [ + 2004 + ], + "host_steam_id": [ + 2004 + ], + "id": [ + 2004 + ], + "invite_code": [ + 2004 + ], + "map_pool_id": [ + 2004 + ], + "match_id": [ + 2004 + ], + "match_options_id": [ + 2004 + ], + "max_elo": [ + 2004 + ], + "min_elo": [ + 2004 + ], + "pick_deadline": [ + 2004 + ], + "regions": [ + 2004 + ], + "team_1_id": [ + 2004 + ], + "team_2_id": [ + 2004 + ], + "updated_at": [ + 2004 + ], + "__typename": [ + 63 + ] + }, + "draft_games_min_fields": { + "capacity": [ + 34 + ], + "created_at": [ + 3190 + ], + "current_pick_lineup": [ + 34 + ], + "expires_at": [ + 3190 + ], + "host_steam_id": [ + 162 + ], + "id": [ + 3587 + ], + "invite_code": [ + 3587 + ], + "map_pool_id": [ + 3587 + ], + "match_id": [ + 3587 + ], + "match_options_id": [ + 3587 + ], + "max_elo": [ + 34 + ], + "min_elo": [ + 34 + ], + "pick_deadline": [ + 3190 + ], + "regions": [ + 63 + ], + "team_1_id": [ + 3587 + ], + "team_2_id": [ + 3587 + ], + "updated_at": [ + 3190 + ], + "__typename": [ + 63 + ] + }, + "draft_games_min_order_by": { + "capacity": [ + 2004 + ], + "created_at": [ + 2004 + ], + "current_pick_lineup": [ + 2004 + ], + "expires_at": [ + 2004 + ], + "host_steam_id": [ + 2004 + ], + "id": [ + 2004 + ], + "invite_code": [ + 2004 + ], + "map_pool_id": [ + 2004 + ], + "match_id": [ + 2004 + ], + "match_options_id": [ + 2004 + ], + "max_elo": [ + 2004 + ], + "min_elo": [ + 2004 + ], + "pick_deadline": [ + 2004 + ], + "regions": [ + 2004 + ], + "team_1_id": [ + 2004 + ], + "team_2_id": [ + 2004 + ], + "updated_at": [ + 2004 + ], + "__typename": [ + 63 + ] + }, + "draft_games_mutation_response": { + "affected_rows": [ + 34 + ], + "returning": [ + 334 + ], + "__typename": [ + 63 + ] + }, + "draft_games_obj_rel_insert_input": { + "data": [ + 348 + ], + "on_conflict": [ + 355 + ], + "__typename": [ + 63 + ] + }, + "draft_games_on_conflict": { + "constraint": [ + 346 + ], + "update_columns": [ + 372 + ], + "where": [ + 345 + ], + "__typename": [ + 63 + ] + }, + "draft_games_order_by": { + "access": [ + 2004 + ], + "capacity": [ + 2004 + ], + "captain_selection": [ + 2004 + ], + "created_at": [ + 2004 + ], + "current_pick_lineup": [ + 2004 + ], + "draft_order": [ + 2004 + ], + "e_draft_game_captain_selection": [ + 413 + ], + "e_draft_game_draft_order": [ + 434 + ], + "e_draft_game_mode": [ + 455 + ], + "e_draft_game_status": [ + 497 + ], + "e_lobby_access": [ + 580 + ], + "expires_at": [ + 2004 + ], + "host": [ + 2884 + ], + "host_steam_id": [ + 2004 + ], + "id": [ + 2004 + ], + "inner_squad": [ + 2004 + ], + "invite_code": [ + 2004 + ], + "map_pool": [ + 1288 + ], + "map_pool_id": [ + 2004 + ], + "match": [ + 1839 + ], + "match_id": [ + 2004 + ], + "match_options_id": [ + 2004 + ], + "max_elo": [ + 2004 + ], + "min_elo": [ + 2004 + ], + "mode": [ + 2004 + ], + "options": [ + 1712 + ], + "pick_deadline": [ + 2004 + ], + "picks_aggregate": [ + 251 + ], + "players_aggregate": [ + 296 + ], + "regions": [ + 2004 + ], + "require_approval": [ + 2004 + ], + "status": [ + 2004 + ], + "team_1": [ + 3167 + ], + "team_1_id": [ + 2004 + ], + "team_2": [ + 3167 + ], + "team_2_id": [ + 2004 + ], + "type": [ + 2004 + ], + "updated_at": [ + 2004 + ], + "__typename": [ + 63 + ] + }, + "draft_games_pk_columns_input": { + "id": [ + 3587 + ], + "__typename": [ + 63 + ] + }, + "draft_games_select_column": {}, + "draft_games_select_column_draft_games_aggregate_bool_exp_bool_and_arguments_columns": {}, + "draft_games_select_column_draft_games_aggregate_bool_exp_bool_or_arguments_columns": {}, + "draft_games_set_input": { + "access": [ + 572 + ], + "capacity": [ + 34 + ], + "captain_selection": [ + 405 + ], + "created_at": [ + 3190 + ], + "current_pick_lineup": [ + 34 + ], + "draft_order": [ + 426 + ], + "expires_at": [ + 3190 + ], + "host_steam_id": [ + 162 + ], + "id": [ + 3587 + ], + "inner_squad": [ + 3 + ], + "invite_code": [ + 3587 + ], + "map_pool_id": [ + 3587 + ], + "match_id": [ + 3587 + ], + "match_options_id": [ + 3587 + ], + "max_elo": [ + 34 + ], + "min_elo": [ + 34 + ], + "mode": [ + 447 + ], + "pick_deadline": [ + 3190 + ], + "regions": [ + 63 + ], + "require_approval": [ + 3 + ], + "status": [ + 489 + ], + "team_1_id": [ + 3587 + ], + "team_2_id": [ + 3587 + ], + "type": [ + 716 + ], + "updated_at": [ + 3190 + ], + "__typename": [ + 63 + ] + }, + "draft_games_stddev_fields": { + "capacity": [ + 25 + ], + "current_pick_lineup": [ + 25 + ], + "host_steam_id": [ + 25 + ], + "max_elo": [ + 25 + ], + "min_elo": [ + 25 + ], + "__typename": [ + 63 + ] + }, + "draft_games_stddev_order_by": { + "capacity": [ + 2004 + ], + "current_pick_lineup": [ + 2004 + ], + "host_steam_id": [ + 2004 + ], + "max_elo": [ + 2004 + ], + "min_elo": [ + 2004 + ], + "__typename": [ + 63 + ] + }, + "draft_games_stddev_pop_fields": { + "capacity": [ + 25 + ], + "current_pick_lineup": [ + 25 + ], + "host_steam_id": [ + 25 + ], + "max_elo": [ + 25 + ], + "min_elo": [ + 25 + ], + "__typename": [ + 63 + ] + }, + "draft_games_stddev_pop_order_by": { + "capacity": [ + 2004 + ], + "current_pick_lineup": [ + 2004 + ], + "host_steam_id": [ + 2004 + ], + "max_elo": [ + 2004 + ], + "min_elo": [ + 2004 + ], + "__typename": [ + 63 + ] + }, + "draft_games_stddev_samp_fields": { + "capacity": [ + 25 + ], + "current_pick_lineup": [ + 25 + ], + "host_steam_id": [ + 25 + ], + "max_elo": [ + 25 + ], + "min_elo": [ + 25 + ], + "__typename": [ + 63 + ] + }, + "draft_games_stddev_samp_order_by": { + "capacity": [ + 2004 + ], + "current_pick_lineup": [ + 2004 + ], + "host_steam_id": [ + 2004 + ], + "max_elo": [ + 2004 + ], + "min_elo": [ + 2004 + ], + "__typename": [ + 63 + ] + }, + "draft_games_stream_cursor_input": { + "initial_value": [ + 369 + ], + "ordering": [ + 216 + ], + "__typename": [ + 63 + ] + }, + "draft_games_stream_cursor_value_input": { + "access": [ + 572 + ], + "capacity": [ + 34 + ], + "captain_selection": [ + 405 + ], + "created_at": [ + 3190 + ], + "current_pick_lineup": [ + 34 + ], + "draft_order": [ + 426 + ], + "expires_at": [ + 3190 + ], + "host_steam_id": [ + 162 + ], + "id": [ + 3587 + ], + "inner_squad": [ + 3 + ], + "invite_code": [ + 3587 + ], + "map_pool_id": [ + 3587 + ], + "match_id": [ + 3587 + ], + "match_options_id": [ + 3587 + ], + "max_elo": [ + 34 + ], + "min_elo": [ + 34 + ], + "mode": [ + 447 + ], + "pick_deadline": [ + 3190 + ], + "regions": [ + 63 + ], + "require_approval": [ + 3 + ], + "status": [ + 489 + ], + "team_1_id": [ + 3587 + ], + "team_2_id": [ + 3587 + ], + "type": [ + 716 + ], + "updated_at": [ + 3190 + ], + "__typename": [ + 63 + ] + }, + "draft_games_sum_fields": { + "capacity": [ + 34 + ], + "current_pick_lineup": [ + 34 + ], + "host_steam_id": [ + 162 + ], + "max_elo": [ + 34 + ], + "min_elo": [ + 34 + ], + "__typename": [ + 63 + ] + }, + "draft_games_sum_order_by": { + "capacity": [ + 2004 + ], + "current_pick_lineup": [ + 2004 + ], + "host_steam_id": [ + 2004 + ], + "max_elo": [ + 2004 + ], + "min_elo": [ + 2004 + ], + "__typename": [ + 63 + ] + }, + "draft_games_update_column": {}, + "draft_games_updates": { + "_inc": [ + 347 + ], + "_set": [ + 361 + ], + "where": [ + 345 + ], + "__typename": [ + 63 + ] + }, + "draft_games_var_pop_fields": { + "capacity": [ + 25 + ], + "current_pick_lineup": [ + 25 + ], + "host_steam_id": [ + 25 + ], + "max_elo": [ + 25 + ], + "min_elo": [ + 25 + ], + "__typename": [ + 63 + ] + }, + "draft_games_var_pop_order_by": { + "capacity": [ + 2004 + ], + "current_pick_lineup": [ + 2004 + ], + "host_steam_id": [ + 2004 + ], + "max_elo": [ + 2004 + ], + "min_elo": [ + 2004 + ], + "__typename": [ + 63 + ] + }, + "draft_games_var_samp_fields": { + "capacity": [ + 25 + ], + "current_pick_lineup": [ + 25 + ], + "host_steam_id": [ + 25 + ], + "max_elo": [ + 25 + ], + "min_elo": [ + 25 + ], + "__typename": [ + 63 + ] + }, + "draft_games_var_samp_order_by": { + "capacity": [ + 2004 + ], + "current_pick_lineup": [ + 2004 + ], + "host_steam_id": [ + 2004 + ], + "max_elo": [ + 2004 + ], + "min_elo": [ + 2004 + ], + "__typename": [ + 63 + ] + }, + "draft_games_variance_fields": { + "capacity": [ + 25 + ], + "current_pick_lineup": [ + 25 + ], + "host_steam_id": [ + 25 + ], + "max_elo": [ + 25 + ], + "min_elo": [ + 25 + ], + "__typename": [ + 63 + ] + }, + "draft_games_variance_order_by": { + "capacity": [ + 2004 + ], + "current_pick_lineup": [ + 2004 + ], + "host_steam_id": [ + 2004 + ], + "max_elo": [ + 2004 + ], + "min_elo": [ + 2004 + ], + "__typename": [ + 63 + ] + }, + "e_check_in_settings": { + "description": [ + 63 + ], + "value": [ + 63 + ], + "__typename": [ + 63 + ] + }, + "e_check_in_settings_aggregate": { + "aggregate": [ + 382 + ], + "nodes": [ + 380 + ], + "__typename": [ + 63 + ] + }, + "e_check_in_settings_aggregate_fields": { + "count": [ + 34, + { + "columns": [ + 394, + "[e_check_in_settings_select_column!]" + ], + "distinct": [ + 3 + ] + } + ], + "max": [ + 388 + ], + "min": [ + 389 + ], + "__typename": [ + 63 + ] + }, + "e_check_in_settings_bool_exp": { + "_and": [ + 383 + ], + "_not": [ + 383 + ], + "_or": [ + 383 + ], + "description": [ + 65 + ], + "value": [ + 65 + ], + "__typename": [ + 63 + ] + }, + "e_check_in_settings_constraint": {}, + "e_check_in_settings_enum": {}, + "e_check_in_settings_enum_comparison_exp": { + "_eq": [ + 385 + ], + "_in": [ + 385 + ], + "_is_null": [ + 3 + ], + "_neq": [ + 385 + ], + "_nin": [ + 385 + ], + "__typename": [ + 63 + ] + }, + "e_check_in_settings_insert_input": { + "description": [ + 63 + ], + "value": [ + 63 + ], + "__typename": [ + 63 + ] + }, + "e_check_in_settings_max_fields": { + "description": [ + 63 + ], + "value": [ + 63 + ], + "__typename": [ + 63 + ] + }, + "e_check_in_settings_min_fields": { + "description": [ + 63 + ], + "value": [ + 63 + ], + "__typename": [ + 63 + ] + }, + "e_check_in_settings_mutation_response": { + "affected_rows": [ + 34 + ], + "returning": [ + 380 + ], + "__typename": [ + 63 + ] + }, + "e_check_in_settings_on_conflict": { + "constraint": [ + 384 + ], + "update_columns": [ + 398 + ], + "where": [ + 383 + ], + "__typename": [ + 63 + ] + }, + "e_check_in_settings_order_by": { + "description": [ + 2004 + ], + "value": [ + 2004 + ], + "__typename": [ + 63 + ] + }, + "e_check_in_settings_pk_columns_input": { + "value": [ + 63 + ], + "__typename": [ + 63 + ] + }, + "e_check_in_settings_select_column": {}, + "e_check_in_settings_set_input": { + "description": [ + 63 + ], + "value": [ + 63 + ], + "__typename": [ + 63 + ] + }, + "e_check_in_settings_stream_cursor_input": { + "initial_value": [ + 397 + ], + "ordering": [ + 216 + ], + "__typename": [ + 63 + ] + }, + "e_check_in_settings_stream_cursor_value_input": { + "description": [ + 63 + ], + "value": [ + 63 + ], + "__typename": [ + 63 + ] + }, + "e_check_in_settings_update_column": {}, + "e_check_in_settings_updates": { + "_set": [ + 395 + ], + "where": [ + 383 + ], + "__typename": [ + 63 + ] + }, + "e_draft_game_captain_selection": { + "description": [ + 63 + ], + "value": [ + 63 + ], + "__typename": [ + 63 + ] + }, + "e_draft_game_captain_selection_aggregate": { + "aggregate": [ + 402 + ], + "nodes": [ + 400 + ], + "__typename": [ + 63 + ] + }, + "e_draft_game_captain_selection_aggregate_fields": { + "count": [ + 34, + { + "columns": [ + 415, + "[e_draft_game_captain_selection_select_column!]" + ], + "distinct": [ + 3 + ] + } + ], + "max": [ + 408 + ], + "min": [ + 409 + ], + "__typename": [ + 63 + ] + }, + "e_draft_game_captain_selection_bool_exp": { + "_and": [ + 403 + ], + "_not": [ + 403 + ], + "_or": [ + 403 + ], + "description": [ + 65 + ], + "value": [ + 65 + ], + "__typename": [ + 63 + ] + }, + "e_draft_game_captain_selection_constraint": {}, + "e_draft_game_captain_selection_enum": {}, + "e_draft_game_captain_selection_enum_comparison_exp": { + "_eq": [ + 405 + ], + "_in": [ + 405 + ], + "_is_null": [ + 3 + ], + "_neq": [ + 405 + ], + "_nin": [ + 405 + ], + "__typename": [ + 63 + ] + }, + "e_draft_game_captain_selection_insert_input": { + "description": [ + 63 + ], + "value": [ + 63 + ], + "__typename": [ + 63 + ] + }, + "e_draft_game_captain_selection_max_fields": { + "description": [ + 63 + ], + "value": [ + 63 + ], + "__typename": [ + 63 + ] + }, + "e_draft_game_captain_selection_min_fields": { + "description": [ + 63 + ], + "value": [ + 63 + ], + "__typename": [ + 63 + ] + }, + "e_draft_game_captain_selection_mutation_response": { + "affected_rows": [ + 34 + ], + "returning": [ + 400 + ], + "__typename": [ + 63 + ] + }, + "e_draft_game_captain_selection_obj_rel_insert_input": { + "data": [ + 407 + ], + "on_conflict": [ + 412 + ], + "__typename": [ + 63 + ] + }, + "e_draft_game_captain_selection_on_conflict": { + "constraint": [ + 404 + ], + "update_columns": [ + 419 + ], + "where": [ + 403 + ], + "__typename": [ + 63 + ] + }, + "e_draft_game_captain_selection_order_by": { + "description": [ + 2004 + ], + "value": [ + 2004 + ], + "__typename": [ + 63 + ] + }, + "e_draft_game_captain_selection_pk_columns_input": { + "value": [ + 63 + ], + "__typename": [ + 63 + ] + }, + "e_draft_game_captain_selection_select_column": {}, + "e_draft_game_captain_selection_set_input": { + "description": [ + 63 + ], + "value": [ + 63 + ], + "__typename": [ + 63 + ] + }, + "e_draft_game_captain_selection_stream_cursor_input": { + "initial_value": [ + 418 + ], + "ordering": [ + 216 + ], + "__typename": [ + 63 + ] + }, + "e_draft_game_captain_selection_stream_cursor_value_input": { + "description": [ + 63 + ], + "value": [ + 63 + ], + "__typename": [ + 63 + ] + }, + "e_draft_game_captain_selection_update_column": {}, + "e_draft_game_captain_selection_updates": { + "_set": [ + 416 + ], + "where": [ + 403 + ], + "__typename": [ + 63 + ] + }, + "e_draft_game_draft_order": { + "description": [ + 63 + ], + "value": [ + 63 + ], + "__typename": [ + 63 + ] + }, + "e_draft_game_draft_order_aggregate": { + "aggregate": [ + 423 + ], + "nodes": [ + 421 + ], + "__typename": [ + 63 + ] + }, + "e_draft_game_draft_order_aggregate_fields": { + "count": [ + 34, + { + "columns": [ + 436, + "[e_draft_game_draft_order_select_column!]" + ], + "distinct": [ + 3 + ] + } + ], + "max": [ + 429 + ], + "min": [ + 430 + ], + "__typename": [ + 63 + ] + }, + "e_draft_game_draft_order_bool_exp": { + "_and": [ + 424 + ], + "_not": [ + 424 + ], + "_or": [ + 424 + ], + "description": [ + 65 + ], + "value": [ + 65 + ], + "__typename": [ + 63 + ] + }, + "e_draft_game_draft_order_constraint": {}, + "e_draft_game_draft_order_enum": {}, + "e_draft_game_draft_order_enum_comparison_exp": { + "_eq": [ + 426 + ], + "_in": [ + 426 + ], + "_is_null": [ + 3 + ], + "_neq": [ + 426 + ], + "_nin": [ + 426 + ], + "__typename": [ + 63 + ] + }, + "e_draft_game_draft_order_insert_input": { + "description": [ + 63 + ], + "value": [ + 63 + ], + "__typename": [ + 63 + ] + }, + "e_draft_game_draft_order_max_fields": { + "description": [ + 63 + ], + "value": [ + 63 + ], + "__typename": [ + 63 + ] + }, + "e_draft_game_draft_order_min_fields": { + "description": [ + 63 + ], + "value": [ + 63 + ], + "__typename": [ + 63 + ] + }, + "e_draft_game_draft_order_mutation_response": { + "affected_rows": [ + 34 + ], + "returning": [ + 421 + ], + "__typename": [ + 63 + ] + }, + "e_draft_game_draft_order_obj_rel_insert_input": { + "data": [ + 428 + ], + "on_conflict": [ + 433 + ], + "__typename": [ + 63 + ] + }, + "e_draft_game_draft_order_on_conflict": { + "constraint": [ + 425 + ], + "update_columns": [ + 440 + ], + "where": [ + 424 + ], + "__typename": [ + 63 + ] + }, + "e_draft_game_draft_order_order_by": { + "description": [ + 2004 + ], + "value": [ + 2004 + ], + "__typename": [ + 63 + ] + }, + "e_draft_game_draft_order_pk_columns_input": { + "value": [ + 63 + ], + "__typename": [ + 63 + ] + }, + "e_draft_game_draft_order_select_column": {}, + "e_draft_game_draft_order_set_input": { + "description": [ + 63 + ], + "value": [ + 63 + ], + "__typename": [ + 63 + ] + }, + "e_draft_game_draft_order_stream_cursor_input": { + "initial_value": [ + 439 + ], + "ordering": [ + 216 + ], + "__typename": [ + 63 + ] + }, + "e_draft_game_draft_order_stream_cursor_value_input": { + "description": [ + 63 + ], + "value": [ + 63 + ], + "__typename": [ + 63 + ] + }, + "e_draft_game_draft_order_update_column": {}, + "e_draft_game_draft_order_updates": { + "_set": [ + 437 + ], + "where": [ + 424 + ], + "__typename": [ + 63 + ] + }, + "e_draft_game_mode": { + "description": [ + 63 + ], + "value": [ + 63 + ], + "__typename": [ + 63 + ] + }, + "e_draft_game_mode_aggregate": { + "aggregate": [ + 444 + ], + "nodes": [ + 442 + ], + "__typename": [ + 63 + ] + }, + "e_draft_game_mode_aggregate_fields": { + "count": [ + 34, + { + "columns": [ + 457, + "[e_draft_game_mode_select_column!]" + ], + "distinct": [ + 3 + ] + } + ], + "max": [ + 450 + ], + "min": [ + 451 + ], + "__typename": [ + 63 + ] + }, + "e_draft_game_mode_bool_exp": { + "_and": [ + 445 + ], + "_not": [ + 445 + ], + "_or": [ + 445 + ], + "description": [ + 65 + ], + "value": [ + 65 + ], + "__typename": [ + 63 + ] + }, + "e_draft_game_mode_constraint": {}, + "e_draft_game_mode_enum": {}, + "e_draft_game_mode_enum_comparison_exp": { + "_eq": [ + 447 + ], + "_in": [ + 447 + ], + "_is_null": [ + 3 + ], + "_neq": [ + 447 + ], + "_nin": [ + 447 + ], + "__typename": [ + 63 + ] + }, + "e_draft_game_mode_insert_input": { + "description": [ + 63 + ], + "value": [ + 63 + ], + "__typename": [ + 63 + ] + }, + "e_draft_game_mode_max_fields": { + "description": [ + 63 + ], + "value": [ + 63 + ], + "__typename": [ + 63 + ] + }, + "e_draft_game_mode_min_fields": { + "description": [ + 63 + ], + "value": [ + 63 + ], + "__typename": [ + 63 + ] + }, + "e_draft_game_mode_mutation_response": { + "affected_rows": [ + 34 + ], + "returning": [ + 442 + ], + "__typename": [ + 63 + ] + }, + "e_draft_game_mode_obj_rel_insert_input": { + "data": [ + 449 + ], + "on_conflict": [ + 454 + ], + "__typename": [ + 63 + ] + }, + "e_draft_game_mode_on_conflict": { + "constraint": [ + 446 + ], + "update_columns": [ + 461 + ], + "where": [ + 445 + ], + "__typename": [ + 63 + ] + }, + "e_draft_game_mode_order_by": { + "description": [ + 2004 + ], + "value": [ + 2004 + ], + "__typename": [ + 63 + ] + }, + "e_draft_game_mode_pk_columns_input": { + "value": [ + 63 + ], + "__typename": [ + 63 + ] + }, + "e_draft_game_mode_select_column": {}, + "e_draft_game_mode_set_input": { + "description": [ + 63 + ], + "value": [ + 63 + ], + "__typename": [ + 63 + ] + }, + "e_draft_game_mode_stream_cursor_input": { + "initial_value": [ + 460 + ], + "ordering": [ + 216 + ], + "__typename": [ + 63 + ] + }, + "e_draft_game_mode_stream_cursor_value_input": { + "description": [ + 63 + ], + "value": [ + 63 + ], + "__typename": [ + 63 + ] + }, + "e_draft_game_mode_update_column": {}, + "e_draft_game_mode_updates": { + "_set": [ + 458 + ], + "where": [ + 445 + ], + "__typename": [ + 63 + ] + }, + "e_draft_game_player_status": { + "description": [ + 63 + ], + "value": [ + 63 + ], + "__typename": [ + 63 + ] + }, + "e_draft_game_player_status_aggregate": { + "aggregate": [ + 465 + ], + "nodes": [ + 463 + ], + "__typename": [ + 63 + ] + }, + "e_draft_game_player_status_aggregate_fields": { + "count": [ + 34, + { + "columns": [ + 478, + "[e_draft_game_player_status_select_column!]" + ], + "distinct": [ + 3 + ] + } + ], + "max": [ + 471 + ], + "min": [ + 472 + ], + "__typename": [ + 63 + ] + }, + "e_draft_game_player_status_bool_exp": { + "_and": [ + 466 + ], + "_not": [ + 466 + ], + "_or": [ + 466 + ], + "description": [ + 65 + ], + "value": [ + 65 + ], + "__typename": [ + 63 + ] + }, + "e_draft_game_player_status_constraint": {}, + "e_draft_game_player_status_enum": {}, + "e_draft_game_player_status_enum_comparison_exp": { + "_eq": [ + 468 + ], + "_in": [ + 468 + ], + "_is_null": [ + 3 + ], + "_neq": [ + 468 + ], + "_nin": [ + 468 + ], + "__typename": [ + 63 + ] + }, + "e_draft_game_player_status_insert_input": { + "description": [ + 63 + ], + "value": [ + 63 + ], + "__typename": [ + 63 + ] + }, + "e_draft_game_player_status_max_fields": { + "description": [ + 63 + ], + "value": [ + 63 + ], + "__typename": [ + 63 + ] + }, + "e_draft_game_player_status_min_fields": { + "description": [ + 63 + ], + "value": [ + 63 + ], + "__typename": [ + 63 + ] + }, + "e_draft_game_player_status_mutation_response": { + "affected_rows": [ + 34 + ], + "returning": [ + 463 + ], + "__typename": [ + 63 + ] + }, + "e_draft_game_player_status_obj_rel_insert_input": { + "data": [ + 470 + ], + "on_conflict": [ + 475 + ], + "__typename": [ + 63 + ] + }, + "e_draft_game_player_status_on_conflict": { + "constraint": [ + 467 + ], + "update_columns": [ + 482 + ], + "where": [ + 466 + ], + "__typename": [ + 63 + ] + }, + "e_draft_game_player_status_order_by": { + "description": [ + 2004 + ], + "value": [ + 2004 + ], + "__typename": [ + 63 + ] + }, + "e_draft_game_player_status_pk_columns_input": { + "value": [ + 63 + ], + "__typename": [ + 63 + ] + }, + "e_draft_game_player_status_select_column": {}, + "e_draft_game_player_status_set_input": { + "description": [ + 63 + ], + "value": [ + 63 + ], + "__typename": [ + 63 + ] + }, + "e_draft_game_player_status_stream_cursor_input": { + "initial_value": [ + 481 + ], + "ordering": [ + 216 + ], + "__typename": [ + 63 + ] + }, + "e_draft_game_player_status_stream_cursor_value_input": { + "description": [ + 63 + ], + "value": [ + 63 + ], + "__typename": [ + 63 + ] + }, + "e_draft_game_player_status_update_column": {}, + "e_draft_game_player_status_updates": { + "_set": [ + 479 + ], + "where": [ + 466 + ], + "__typename": [ + 63 + ] + }, + "e_draft_game_status": { + "description": [ + 63 + ], + "value": [ + 63 + ], + "__typename": [ + 63 + ] + }, + "e_draft_game_status_aggregate": { + "aggregate": [ + 486 + ], + "nodes": [ + 484 + ], + "__typename": [ + 63 + ] + }, + "e_draft_game_status_aggregate_fields": { + "count": [ + 34, + { + "columns": [ + 499, + "[e_draft_game_status_select_column!]" + ], + "distinct": [ + 3 + ] + } + ], + "max": [ + 492 + ], + "min": [ + 493 + ], + "__typename": [ + 63 + ] + }, + "e_draft_game_status_bool_exp": { + "_and": [ + 487 + ], + "_not": [ + 487 + ], + "_or": [ + 487 + ], + "description": [ + 65 + ], + "value": [ + 65 + ], + "__typename": [ + 63 + ] + }, + "e_draft_game_status_constraint": {}, + "e_draft_game_status_enum": {}, + "e_draft_game_status_enum_comparison_exp": { + "_eq": [ + 489 + ], + "_in": [ + 489 + ], + "_is_null": [ + 3 + ], + "_neq": [ + 489 + ], + "_nin": [ + 489 + ], + "__typename": [ + 63 + ] + }, + "e_draft_game_status_insert_input": { + "description": [ + 63 + ], + "value": [ + 63 + ], + "__typename": [ + 63 + ] + }, + "e_draft_game_status_max_fields": { + "description": [ + 63 + ], + "value": [ + 63 + ], + "__typename": [ + 63 + ] + }, + "e_draft_game_status_min_fields": { + "description": [ + 63 + ], + "value": [ + 63 + ], + "__typename": [ + 63 + ] + }, + "e_draft_game_status_mutation_response": { + "affected_rows": [ + 34 + ], + "returning": [ + 484 + ], + "__typename": [ + 63 + ] + }, + "e_draft_game_status_obj_rel_insert_input": { + "data": [ + 491 + ], + "on_conflict": [ + 496 + ], + "__typename": [ + 63 + ] + }, + "e_draft_game_status_on_conflict": { + "constraint": [ + 488 + ], + "update_columns": [ + 503 + ], + "where": [ + 487 + ], + "__typename": [ + 63 + ] + }, + "e_draft_game_status_order_by": { + "description": [ + 2004 + ], + "value": [ + 2004 + ], + "__typename": [ + 63 + ] + }, + "e_draft_game_status_pk_columns_input": { + "value": [ + 63 + ], + "__typename": [ + 63 + ] + }, + "e_draft_game_status_select_column": {}, + "e_draft_game_status_set_input": { + "description": [ + 63 + ], + "value": [ + 63 + ], + "__typename": [ + 63 + ] + }, + "e_draft_game_status_stream_cursor_input": { + "initial_value": [ + 502 + ], + "ordering": [ + 216 + ], + "__typename": [ + 63 + ] + }, + "e_draft_game_status_stream_cursor_value_input": { + "description": [ + 63 + ], + "value": [ + 63 + ], + "__typename": [ + 63 + ] + }, + "e_draft_game_status_update_column": {}, + "e_draft_game_status_updates": { + "_set": [ + 500 + ], + "where": [ + 487 + ], + "__typename": [ + 63 + ] + }, + "e_friend_status": { + "description": [ + 63 + ], + "value": [ + 63 + ], + "__typename": [ + 63 + ] + }, + "e_friend_status_aggregate": { + "aggregate": [ + 507 + ], + "nodes": [ + 505 + ], + "__typename": [ + 63 + ] + }, + "e_friend_status_aggregate_fields": { + "count": [ + 34, + { + "columns": [ + 520, + "[e_friend_status_select_column!]" + ], + "distinct": [ + 3 + ] + } + ], + "max": [ + 513 + ], + "min": [ + 514 + ], + "__typename": [ + 63 + ] + }, + "e_friend_status_bool_exp": { + "_and": [ + 508 + ], + "_not": [ + 508 + ], + "_or": [ + 508 + ], + "description": [ + 65 + ], + "value": [ + 65 + ], + "__typename": [ + 63 + ] + }, + "e_friend_status_constraint": {}, + "e_friend_status_enum": {}, + "e_friend_status_enum_comparison_exp": { + "_eq": [ + 510 + ], + "_in": [ + 510 + ], + "_is_null": [ + 3 + ], + "_neq": [ + 510 + ], + "_nin": [ + 510 + ], + "__typename": [ + 63 + ] + }, + "e_friend_status_insert_input": { + "description": [ + 63 + ], + "value": [ + 63 + ], + "__typename": [ + 63 + ] + }, + "e_friend_status_max_fields": { + "description": [ + 63 + ], + "value": [ + 63 + ], + "__typename": [ + 63 + ] + }, + "e_friend_status_min_fields": { + "description": [ + 63 + ], + "value": [ + 63 + ], + "__typename": [ + 63 + ] + }, + "e_friend_status_mutation_response": { + "affected_rows": [ + 34 + ], + "returning": [ + 505 + ], + "__typename": [ + 63 + ] + }, + "e_friend_status_obj_rel_insert_input": { + "data": [ + 512 + ], + "on_conflict": [ + 517 ], "__typename": [ 63 @@ -4877,13 +9167,13 @@ export default { }, "e_friend_status_on_conflict": { "constraint": [ - 268 + 509 ], "update_columns": [ - 283 + 524 ], "where": [ - 267 + 508 ], "__typename": [ 63 @@ -4891,10 +9181,10 @@ export default { }, "e_friend_status_order_by": { "description": [ - 1736 + 2004 ], "value": [ - 1736 + 2004 ], "__typename": [ 63 @@ -4922,7 +9212,7 @@ export default { }, "e_friend_status_stream_cursor_input": { "initial_value": [ - 282 + 523 ], "ordering": [ 216 @@ -4945,10 +9235,10 @@ export default { "e_friend_status_update_column": {}, "e_friend_status_updates": { "_set": [ - 280 + 521 ], "where": [ - 267 + 508 ], "__typename": [ 63 @@ -4967,10 +9257,10 @@ export default { }, "e_game_cfg_types_aggregate": { "aggregate": [ - 287 + 528 ], "nodes": [ - 285 + 526 ], "__typename": [ 63 @@ -4981,7 +9271,7 @@ export default { 34, { "columns": [ - 299, + 540, "[e_game_cfg_types_select_column!]" ], "distinct": [ @@ -4990,10 +9280,10 @@ export default { } ], "max": [ - 293 + 534 ], "min": [ - 294 + 535 ], "__typename": [ 63 @@ -5001,13 +9291,13 @@ export default { }, "e_game_cfg_types_bool_exp": { "_and": [ - 288 + 529 ], "_not": [ - 288 + 529 ], "_or": [ - 288 + 529 ], "description": [ 65 @@ -5023,19 +9313,19 @@ export default { "e_game_cfg_types_enum": {}, "e_game_cfg_types_enum_comparison_exp": { "_eq": [ - 290 + 531 ], "_in": [ - 290 + 531 ], "_is_null": [ 3 ], "_neq": [ - 290 + 531 ], "_nin": [ - 290 + 531 ], "__typename": [ 63 @@ -5079,7 +9369,7 @@ export default { 34 ], "returning": [ - 285 + 526 ], "__typename": [ 63 @@ -5087,13 +9377,13 @@ export default { }, "e_game_cfg_types_on_conflict": { "constraint": [ - 289 + 530 ], "update_columns": [ - 303 + 544 ], "where": [ - 288 + 529 ], "__typename": [ 63 @@ -5101,10 +9391,10 @@ export default { }, "e_game_cfg_types_order_by": { "description": [ - 1736 + 2004 ], "value": [ - 1736 + 2004 ], "__typename": [ 63 @@ -5132,7 +9422,7 @@ export default { }, "e_game_cfg_types_stream_cursor_input": { "initial_value": [ - 302 + 543 ], "ordering": [ 216 @@ -5155,10 +9445,10 @@ export default { "e_game_cfg_types_update_column": {}, "e_game_cfg_types_updates": { "_set": [ - 300 + 541 ], "where": [ - 288 + 529 ], "__typename": [ 63 @@ -5177,10 +9467,10 @@ export default { }, "e_game_server_node_statuses_aggregate": { "aggregate": [ - 307 + 548 ], "nodes": [ - 305 + 546 ], "__typename": [ 63 @@ -5191,7 +9481,7 @@ export default { 34, { "columns": [ - 320, + 561, "[e_game_server_node_statuses_select_column!]" ], "distinct": [ @@ -5200,10 +9490,10 @@ export default { } ], "max": [ - 313 + 554 ], "min": [ - 314 + 555 ], "__typename": [ 63 @@ -5211,13 +9501,13 @@ export default { }, "e_game_server_node_statuses_bool_exp": { "_and": [ - 308 + 549 ], "_not": [ - 308 + 549 ], "_or": [ - 308 + 549 ], "description": [ 65 @@ -5233,19 +9523,19 @@ export default { "e_game_server_node_statuses_enum": {}, "e_game_server_node_statuses_enum_comparison_exp": { "_eq": [ - 310 + 551 ], "_in": [ - 310 + 551 ], "_is_null": [ 3 ], "_neq": [ - 310 + 551 ], "_nin": [ - 310 + 551 ], "__typename": [ 63 @@ -5289,7 +9579,7 @@ export default { 34 ], "returning": [ - 305 + 546 ], "__typename": [ 63 @@ -5297,10 +9587,10 @@ export default { }, "e_game_server_node_statuses_obj_rel_insert_input": { "data": [ - 312 + 553 ], "on_conflict": [ - 317 + 558 ], "__typename": [ 63 @@ -5308,13 +9598,13 @@ export default { }, "e_game_server_node_statuses_on_conflict": { "constraint": [ - 309 + 550 ], "update_columns": [ - 324 + 565 ], "where": [ - 308 + 549 ], "__typename": [ 63 @@ -5322,10 +9612,10 @@ export default { }, "e_game_server_node_statuses_order_by": { "description": [ - 1736 + 2004 ], "value": [ - 1736 + 2004 ], "__typename": [ 63 @@ -5353,7 +9643,7 @@ export default { }, "e_game_server_node_statuses_stream_cursor_input": { "initial_value": [ - 323 + 564 ], "ordering": [ 216 @@ -5376,10 +9666,10 @@ export default { "e_game_server_node_statuses_update_column": {}, "e_game_server_node_statuses_updates": { "_set": [ - 321 + 562 ], "where": [ - 308 + 549 ], "__typename": [ 63 @@ -5398,10 +9688,10 @@ export default { }, "e_lobby_access_aggregate": { "aggregate": [ - 328 + 569 ], "nodes": [ - 326 + 567 ], "__typename": [ 63 @@ -5412,7 +9702,7 @@ export default { 34, { "columns": [ - 341, + 582, "[e_lobby_access_select_column!]" ], "distinct": [ @@ -5421,10 +9711,10 @@ export default { } ], "max": [ - 334 + 575 ], "min": [ - 335 + 576 ], "__typename": [ 63 @@ -5432,13 +9722,13 @@ export default { }, "e_lobby_access_bool_exp": { "_and": [ - 329 + 570 ], "_not": [ - 329 + 570 ], "_or": [ - 329 + 570 ], "description": [ 65 @@ -5454,19 +9744,19 @@ export default { "e_lobby_access_enum": {}, "e_lobby_access_enum_comparison_exp": { "_eq": [ - 331 + 572 ], "_in": [ - 331 + 572 ], "_is_null": [ 3 ], "_neq": [ - 331 + 572 ], "_nin": [ - 331 + 572 ], "__typename": [ 63 @@ -5510,7 +9800,7 @@ export default { 34 ], "returning": [ - 326 + 567 ], "__typename": [ 63 @@ -5518,10 +9808,10 @@ export default { }, "e_lobby_access_obj_rel_insert_input": { "data": [ - 333 + 574 ], "on_conflict": [ - 338 + 579 ], "__typename": [ 63 @@ -5529,13 +9819,13 @@ export default { }, "e_lobby_access_on_conflict": { "constraint": [ - 330 + 571 ], "update_columns": [ - 345 + 586 ], "where": [ - 329 + 570 ], "__typename": [ 63 @@ -5543,10 +9833,10 @@ export default { }, "e_lobby_access_order_by": { "description": [ - 1736 + 2004 ], "value": [ - 1736 + 2004 ], "__typename": [ 63 @@ -5574,7 +9864,7 @@ export default { }, "e_lobby_access_stream_cursor_input": { "initial_value": [ - 344 + 585 ], "ordering": [ 216 @@ -5597,10 +9887,10 @@ export default { "e_lobby_access_update_column": {}, "e_lobby_access_updates": { "_set": [ - 342 + 583 ], "where": [ - 329 + 570 ], "__typename": [ 63 @@ -5619,10 +9909,10 @@ export default { }, "e_lobby_player_status_aggregate": { "aggregate": [ - 349 + 590 ], "nodes": [ - 347 + 588 ], "__typename": [ 63 @@ -5633,7 +9923,7 @@ export default { 34, { "columns": [ - 361, + 602, "[e_lobby_player_status_select_column!]" ], "distinct": [ @@ -5642,10 +9932,10 @@ export default { } ], "max": [ - 355 + 596 ], "min": [ - 356 + 597 ], "__typename": [ 63 @@ -5653,13 +9943,13 @@ export default { }, "e_lobby_player_status_bool_exp": { "_and": [ - 350 + 591 ], "_not": [ - 350 + 591 ], "_or": [ - 350 + 591 ], "description": [ 65 @@ -5675,19 +9965,19 @@ export default { "e_lobby_player_status_enum": {}, "e_lobby_player_status_enum_comparison_exp": { "_eq": [ - 352 + 593 ], "_in": [ - 352 + 593 ], "_is_null": [ 3 ], "_neq": [ - 352 + 593 ], "_nin": [ - 352 + 593 ], "__typename": [ 63 @@ -5731,7 +10021,7 @@ export default { 34 ], "returning": [ - 347 + 588 ], "__typename": [ 63 @@ -5739,13 +10029,13 @@ export default { }, "e_lobby_player_status_on_conflict": { "constraint": [ - 351 + 592 ], "update_columns": [ - 365 + 606 ], "where": [ - 350 + 591 ], "__typename": [ 63 @@ -5753,10 +10043,10 @@ export default { }, "e_lobby_player_status_order_by": { "description": [ - 1736 + 2004 ], "value": [ - 1736 + 2004 ], "__typename": [ 63 @@ -5784,7 +10074,7 @@ export default { }, "e_lobby_player_status_stream_cursor_input": { "initial_value": [ - 364 + 605 ], "ordering": [ 216 @@ -5807,10 +10097,10 @@ export default { "e_lobby_player_status_update_column": {}, "e_lobby_player_status_updates": { "_set": [ - 362 + 603 ], "where": [ - 350 + 591 ], "__typename": [ 63 @@ -5829,10 +10119,10 @@ export default { }, "e_map_pool_types_aggregate": { "aggregate": [ - 369 + 610 ], "nodes": [ - 367 + 608 ], "__typename": [ 63 @@ -5843,7 +10133,7 @@ export default { 34, { "columns": [ - 382, + 623, "[e_map_pool_types_select_column!]" ], "distinct": [ @@ -5852,10 +10142,10 @@ export default { } ], "max": [ - 375 + 616 ], "min": [ - 376 + 617 ], "__typename": [ 63 @@ -5863,13 +10153,13 @@ export default { }, "e_map_pool_types_bool_exp": { "_and": [ - 370 + 611 ], "_not": [ - 370 + 611 ], "_or": [ - 370 + 611 ], "description": [ 65 @@ -5885,19 +10175,19 @@ export default { "e_map_pool_types_enum": {}, "e_map_pool_types_enum_comparison_exp": { "_eq": [ - 372 + 613 ], "_in": [ - 372 + 613 ], "_is_null": [ 3 ], "_neq": [ - 372 + 613 ], "_nin": [ - 372 + 613 ], "__typename": [ 63 @@ -5941,7 +10231,7 @@ export default { 34 ], "returning": [ - 367 + 608 ], "__typename": [ 63 @@ -5949,10 +10239,10 @@ export default { }, "e_map_pool_types_obj_rel_insert_input": { "data": [ - 374 + 615 ], "on_conflict": [ - 379 + 620 ], "__typename": [ 63 @@ -5960,13 +10250,13 @@ export default { }, "e_map_pool_types_on_conflict": { "constraint": [ - 371 + 612 ], "update_columns": [ - 386 + 627 ], "where": [ - 370 + 611 ], "__typename": [ 63 @@ -5974,10 +10264,10 @@ export default { }, "e_map_pool_types_order_by": { "description": [ - 1736 + 2004 ], "value": [ - 1736 + 2004 ], "__typename": [ 63 @@ -6005,7 +10295,7 @@ export default { }, "e_map_pool_types_stream_cursor_input": { "initial_value": [ - 385 + 626 ], "ordering": [ 216 @@ -6028,10 +10318,10 @@ export default { "e_map_pool_types_update_column": {}, "e_map_pool_types_updates": { "_set": [ - 383 + 624 ], "where": [ - 370 + 611 ], "__typename": [ 63 @@ -6042,10 +10332,10 @@ export default { 63 ], "match_clips": [ - 1084, + 1325, { "distinct_on": [ - 1106, + 1347, "[match_clips_select_column!]" ], "limit": [ @@ -6055,19 +10345,19 @@ export default { 34 ], "order_by": [ - 1104, + 1345, "[match_clips_order_by!]" ], "where": [ - 1093 + 1334 ] } ], "match_clips_aggregate": [ - 1085, + 1326, { "distinct_on": [ - 1106, + 1347, "[match_clips_select_column!]" ], "limit": [ @@ -6077,11 +10367,11 @@ export default { 34 ], "order_by": [ - 1104, + 1345, "[match_clips_order_by!]" ], "where": [ - 1093 + 1334 ] } ], @@ -6094,10 +10384,10 @@ export default { }, "e_match_clip_visibility_aggregate": { "aggregate": [ - 390 + 631 ], "nodes": [ - 388 + 629 ], "__typename": [ 63 @@ -6108,7 +10398,7 @@ export default { 34, { "columns": [ - 402, + 643, "[e_match_clip_visibility_select_column!]" ], "distinct": [ @@ -6117,10 +10407,10 @@ export default { } ], "max": [ - 396 + 637 ], "min": [ - 397 + 638 ], "__typename": [ 63 @@ -6128,22 +10418,22 @@ export default { }, "e_match_clip_visibility_bool_exp": { "_and": [ - 391 + 632 ], "_not": [ - 391 + 632 ], "_or": [ - 391 + 632 ], "description": [ 65 ], "match_clips": [ - 1093 + 1334 ], "match_clips_aggregate": [ - 1086 + 1327 ], "value": [ 65 @@ -6156,19 +10446,19 @@ export default { "e_match_clip_visibility_enum": {}, "e_match_clip_visibility_enum_comparison_exp": { "_eq": [ - 393 + 634 ], "_in": [ - 393 + 634 ], "_is_null": [ 3 ], "_neq": [ - 393 + 634 ], "_nin": [ - 393 + 634 ], "__typename": [ 63 @@ -6179,7 +10469,7 @@ export default { 63 ], "match_clips": [ - 1090 + 1331 ], "value": [ 63 @@ -6215,7 +10505,7 @@ export default { 34 ], "returning": [ - 388 + 629 ], "__typename": [ 63 @@ -6223,13 +10513,13 @@ export default { }, "e_match_clip_visibility_on_conflict": { "constraint": [ - 392 + 633 ], "update_columns": [ - 406 + 647 ], "where": [ - 391 + 632 ], "__typename": [ 63 @@ -6237,13 +10527,13 @@ export default { }, "e_match_clip_visibility_order_by": { "description": [ - 1736 + 2004 ], "match_clips_aggregate": [ - 1089 + 1330 ], "value": [ - 1736 + 2004 ], "__typename": [ 63 @@ -6271,7 +10561,7 @@ export default { }, "e_match_clip_visibility_stream_cursor_input": { "initial_value": [ - 405 + 646 ], "ordering": [ 216 @@ -6294,10 +10584,10 @@ export default { "e_match_clip_visibility_update_column": {}, "e_match_clip_visibility_updates": { "_set": [ - 403 + 644 ], "where": [ - 391 + 632 ], "__typename": [ 63 @@ -6308,10 +10598,10 @@ export default { 63 ], "match_maps": [ - 1416, + 1657, { "distinct_on": [ - 1438, + 1679, "[match_maps_select_column!]" ], "limit": [ @@ -6321,19 +10611,19 @@ export default { 34 ], "order_by": [ - 1436, + 1677, "[match_maps_order_by!]" ], "where": [ - 1425 + 1666 ] } ], "match_maps_aggregate": [ - 1417, + 1658, { "distinct_on": [ - 1438, + 1679, "[match_maps_select_column!]" ], "limit": [ @@ -6343,11 +10633,11 @@ export default { 34 ], "order_by": [ - 1436, + 1677, "[match_maps_order_by!]" ], "where": [ - 1425 + 1666 ] } ], @@ -6360,10 +10650,10 @@ export default { }, "e_match_map_status_aggregate": { "aggregate": [ - 410 + 651 ], "nodes": [ - 408 + 649 ], "__typename": [ 63 @@ -6374,7 +10664,7 @@ export default { 34, { "columns": [ - 423, + 664, "[e_match_map_status_select_column!]" ], "distinct": [ @@ -6383,10 +10673,10 @@ export default { } ], "max": [ - 416 + 657 ], "min": [ - 417 + 658 ], "__typename": [ 63 @@ -6394,22 +10684,22 @@ export default { }, "e_match_map_status_bool_exp": { "_and": [ - 411 + 652 ], "_not": [ - 411 + 652 ], "_or": [ - 411 + 652 ], "description": [ 65 ], "match_maps": [ - 1425 + 1666 ], "match_maps_aggregate": [ - 1418 + 1659 ], "value": [ 65 @@ -6422,19 +10712,19 @@ export default { "e_match_map_status_enum": {}, "e_match_map_status_enum_comparison_exp": { "_eq": [ - 413 + 654 ], "_in": [ - 413 + 654 ], "_is_null": [ 3 ], "_neq": [ - 413 + 654 ], "_nin": [ - 413 + 654 ], "__typename": [ 63 @@ -6445,7 +10735,7 @@ export default { 63 ], "match_maps": [ - 1422 + 1663 ], "value": [ 63 @@ -6481,7 +10771,7 @@ export default { 34 ], "returning": [ - 408 + 649 ], "__typename": [ 63 @@ -6489,10 +10779,10 @@ export default { }, "e_match_map_status_obj_rel_insert_input": { "data": [ - 415 + 656 ], "on_conflict": [ - 420 + 661 ], "__typename": [ 63 @@ -6500,13 +10790,13 @@ export default { }, "e_match_map_status_on_conflict": { "constraint": [ - 412 + 653 ], "update_columns": [ - 427 + 668 ], "where": [ - 411 + 652 ], "__typename": [ 63 @@ -6514,13 +10804,13 @@ export default { }, "e_match_map_status_order_by": { "description": [ - 1736 + 2004 ], "match_maps_aggregate": [ - 1421 + 1662 ], "value": [ - 1736 + 2004 ], "__typename": [ 63 @@ -6548,7 +10838,7 @@ export default { }, "e_match_map_status_stream_cursor_input": { "initial_value": [ - 426 + 667 ], "ordering": [ 216 @@ -6571,10 +10861,10 @@ export default { "e_match_map_status_update_column": {}, "e_match_map_status_updates": { "_set": [ - 424 + 665 ], "where": [ - 411 + 652 ], "__typename": [ 63 @@ -6593,10 +10883,10 @@ export default { }, "e_match_mode_aggregate": { "aggregate": [ - 431 + 672 ], "nodes": [ - 429 + 670 ], "__typename": [ 63 @@ -6607,7 +10897,7 @@ export default { 34, { "columns": [ - 443, + 684, "[e_match_mode_select_column!]" ], "distinct": [ @@ -6616,10 +10906,10 @@ export default { } ], "max": [ - 437 + 678 ], "min": [ - 438 + 679 ], "__typename": [ 63 @@ -6627,13 +10917,13 @@ export default { }, "e_match_mode_bool_exp": { "_and": [ - 432 + 673 ], "_not": [ - 432 + 673 ], "_or": [ - 432 + 673 ], "description": [ 65 @@ -6649,19 +10939,19 @@ export default { "e_match_mode_enum": {}, "e_match_mode_enum_comparison_exp": { "_eq": [ - 434 + 675 ], "_in": [ - 434 + 675 ], "_is_null": [ 3 ], "_neq": [ - 434 + 675 ], "_nin": [ - 434 + 675 ], "__typename": [ 63 @@ -6705,7 +10995,7 @@ export default { 34 ], "returning": [ - 429 + 670 ], "__typename": [ 63 @@ -6713,13 +11003,13 @@ export default { }, "e_match_mode_on_conflict": { "constraint": [ - 433 + 674 ], "update_columns": [ - 447 + 688 ], "where": [ - 432 + 673 ], "__typename": [ 63 @@ -6727,10 +11017,10 @@ export default { }, "e_match_mode_order_by": { "description": [ - 1736 + 2004 ], "value": [ - 1736 + 2004 ], "__typename": [ 63 @@ -6758,7 +11048,7 @@ export default { }, "e_match_mode_stream_cursor_input": { "initial_value": [ - 446 + 687 ], "ordering": [ 216 @@ -6781,10 +11071,10 @@ export default { "e_match_mode_update_column": {}, "e_match_mode_updates": { "_set": [ - 444 + 685 ], "where": [ - 432 + 673 ], "__typename": [ 63 @@ -6795,10 +11085,10 @@ export default { 63 ], "matches": [ - 1578, + 1819, { "distinct_on": [ - 1600, + 1841, "[matches_select_column!]" ], "limit": [ @@ -6808,19 +11098,19 @@ export default { 34 ], "order_by": [ - 1598, + 1839, "[matches_order_by!]" ], "where": [ - 1587 + 1828 ] } ], "matches_aggregate": [ - 1579, + 1820, { "distinct_on": [ - 1600, + 1841, "[matches_select_column!]" ], "limit": [ @@ -6830,11 +11120,11 @@ export default { 34 ], "order_by": [ - 1598, + 1839, "[matches_order_by!]" ], "where": [ - 1587 + 1828 ] } ], @@ -6847,10 +11137,10 @@ export default { }, "e_match_status_aggregate": { "aggregate": [ - 451 + 692 ], "nodes": [ - 449 + 690 ], "__typename": [ 63 @@ -6861,7 +11151,7 @@ export default { 34, { "columns": [ - 464, + 705, "[e_match_status_select_column!]" ], "distinct": [ @@ -6870,10 +11160,10 @@ export default { } ], "max": [ - 457 + 698 ], "min": [ - 458 + 699 ], "__typename": [ 63 @@ -6881,22 +11171,22 @@ export default { }, "e_match_status_bool_exp": { "_and": [ - 452 + 693 ], "_not": [ - 452 + 693 ], "_or": [ - 452 + 693 ], "description": [ 65 ], "matches": [ - 1587 + 1828 ], "matches_aggregate": [ - 1580 + 1821 ], "value": [ 65 @@ -6909,19 +11199,19 @@ export default { "e_match_status_enum": {}, "e_match_status_enum_comparison_exp": { "_eq": [ - 454 + 695 ], "_in": [ - 454 + 695 ], "_is_null": [ 3 ], "_neq": [ - 454 + 695 ], "_nin": [ - 454 + 695 ], "__typename": [ 63 @@ -6932,7 +11222,7 @@ export default { 63 ], "matches": [ - 1584 + 1825 ], "value": [ 63 @@ -6968,7 +11258,7 @@ export default { 34 ], "returning": [ - 449 + 690 ], "__typename": [ 63 @@ -6976,10 +11266,10 @@ export default { }, "e_match_status_obj_rel_insert_input": { "data": [ - 456 + 697 ], "on_conflict": [ - 461 + 702 ], "__typename": [ 63 @@ -6987,13 +11277,13 @@ export default { }, "e_match_status_on_conflict": { "constraint": [ - 453 + 694 ], "update_columns": [ - 468 + 709 ], "where": [ - 452 + 693 ], "__typename": [ 63 @@ -7001,13 +11291,13 @@ export default { }, "e_match_status_order_by": { "description": [ - 1736 + 2004 ], "matches_aggregate": [ - 1583 + 1824 ], "value": [ - 1736 + 2004 ], "__typename": [ 63 @@ -7035,7 +11325,7 @@ export default { }, "e_match_status_stream_cursor_input": { "initial_value": [ - 467 + 708 ], "ordering": [ 216 @@ -7058,10 +11348,10 @@ export default { "e_match_status_update_column": {}, "e_match_status_updates": { "_set": [ - 465 + 706 ], "where": [ - 452 + 693 ], "__typename": [ 63 @@ -7072,10 +11362,10 @@ export default { 63 ], "maps": [ - 1055, + 1296, { "distinct_on": [ - 1076, + 1317, "[maps_select_column!]" ], "limit": [ @@ -7085,19 +11375,19 @@ export default { 34 ], "order_by": [ - 1074, + 1315, "[maps_order_by!]" ], "where": [ - 1064 + 1305 ] } ], "maps_aggregate": [ - 1056, + 1297, { "distinct_on": [ - 1076, + 1317, "[maps_select_column!]" ], "limit": [ @@ -7107,11 +11397,11 @@ export default { 34 ], "order_by": [ - 1074, + 1315, "[maps_order_by!]" ], "where": [ - 1064 + 1305 ] } ], @@ -7124,10 +11414,10 @@ export default { }, "e_match_types_aggregate": { "aggregate": [ - 472 + 713 ], "nodes": [ - 470 + 711 ], "__typename": [ 63 @@ -7138,7 +11428,7 @@ export default { 34, { "columns": [ - 485, + 726, "[e_match_types_select_column!]" ], "distinct": [ @@ -7147,10 +11437,10 @@ export default { } ], "max": [ - 478 + 719 ], "min": [ - 479 + 720 ], "__typename": [ 63 @@ -7158,22 +11448,22 @@ export default { }, "e_match_types_bool_exp": { "_and": [ - 473 + 714 ], "_not": [ - 473 + 714 ], "_or": [ - 473 + 714 ], "description": [ 65 ], "maps": [ - 1064 + 1305 ], "maps_aggregate": [ - 1057 + 1298 ], "value": [ 65 @@ -7186,19 +11476,19 @@ export default { "e_match_types_enum": {}, "e_match_types_enum_comparison_exp": { "_eq": [ - 475 + 716 ], "_in": [ - 475 + 716 ], "_is_null": [ 3 ], "_neq": [ - 475 + 716 ], "_nin": [ - 475 + 716 ], "__typename": [ 63 @@ -7209,7 +11499,7 @@ export default { 63 ], "maps": [ - 1063 + 1304 ], "value": [ 63 @@ -7245,7 +11535,7 @@ export default { 34 ], "returning": [ - 470 + 711 ], "__typename": [ 63 @@ -7253,10 +11543,10 @@ export default { }, "e_match_types_obj_rel_insert_input": { "data": [ - 477 + 718 ], "on_conflict": [ - 482 + 723 ], "__typename": [ 63 @@ -7264,13 +11554,13 @@ export default { }, "e_match_types_on_conflict": { "constraint": [ - 474 + 715 ], "update_columns": [ - 489 + 730 ], "where": [ - 473 + 714 ], "__typename": [ 63 @@ -7278,13 +11568,13 @@ export default { }, "e_match_types_order_by": { "description": [ - 1736 + 2004 ], "maps_aggregate": [ - 1062 + 1303 ], "value": [ - 1736 + 2004 ], "__typename": [ 63 @@ -7312,7 +11602,7 @@ export default { }, "e_match_types_stream_cursor_input": { "initial_value": [ - 488 + 729 ], "ordering": [ 216 @@ -7335,10 +11625,10 @@ export default { "e_match_types_update_column": {}, "e_match_types_updates": { "_set": [ - 486 + 727 ], "where": [ - 473 + 714 ], "__typename": [ 63 @@ -7357,10 +11647,10 @@ export default { }, "e_notification_types_aggregate": { "aggregate": [ - 493 + 734 ], "nodes": [ - 491 + 732 ], "__typename": [ 63 @@ -7371,7 +11661,7 @@ export default { 34, { "columns": [ - 505, + 746, "[e_notification_types_select_column!]" ], "distinct": [ @@ -7380,10 +11670,10 @@ export default { } ], "max": [ - 499 + 740 ], "min": [ - 500 + 741 ], "__typename": [ 63 @@ -7391,13 +11681,13 @@ export default { }, "e_notification_types_bool_exp": { "_and": [ - 494 + 735 ], "_not": [ - 494 + 735 ], "_or": [ - 494 + 735 ], "description": [ 65 @@ -7413,19 +11703,19 @@ export default { "e_notification_types_enum": {}, "e_notification_types_enum_comparison_exp": { "_eq": [ - 496 + 737 ], "_in": [ - 496 + 737 ], "_is_null": [ 3 ], "_neq": [ - 496 + 737 ], "_nin": [ - 496 + 737 ], "__typename": [ 63 @@ -7469,7 +11759,7 @@ export default { 34 ], "returning": [ - 491 + 732 ], "__typename": [ 63 @@ -7477,13 +11767,13 @@ export default { }, "e_notification_types_on_conflict": { "constraint": [ - 495 + 736 ], "update_columns": [ - 509 + 750 ], "where": [ - 494 + 735 ], "__typename": [ 63 @@ -7491,10 +11781,10 @@ export default { }, "e_notification_types_order_by": { "description": [ - 1736 + 2004 ], "value": [ - 1736 + 2004 ], "__typename": [ 63 @@ -7522,7 +11812,7 @@ export default { }, "e_notification_types_stream_cursor_input": { "initial_value": [ - 508 + 749 ], "ordering": [ 216 @@ -7545,10 +11835,10 @@ export default { "e_notification_types_update_column": {}, "e_notification_types_updates": { "_set": [ - 506 + 747 ], "where": [ - 494 + 735 ], "__typename": [ 63 @@ -7559,10 +11849,10 @@ export default { 63 ], "player_objectives": [ - 2292, + 2560, { "distinct_on": [ - 2313, + 2581, "[player_objectives_select_column!]" ], "limit": [ @@ -7572,19 +11862,19 @@ export default { 34 ], "order_by": [ - 2311, + 2579, "[player_objectives_order_by!]" ], "where": [ - 2301 + 2569 ] } ], "player_objectives_aggregate": [ - 2293, + 2561, { "distinct_on": [ - 2313, + 2581, "[player_objectives_select_column!]" ], "limit": [ @@ -7594,11 +11884,11 @@ export default { 34 ], "order_by": [ - 2311, + 2579, "[player_objectives_order_by!]" ], "where": [ - 2301 + 2569 ] } ], @@ -7611,10 +11901,10 @@ export default { }, "e_objective_types_aggregate": { "aggregate": [ - 513 + 754 ], "nodes": [ - 511 + 752 ], "__typename": [ 63 @@ -7625,7 +11915,7 @@ export default { 34, { "columns": [ - 525, + 766, "[e_objective_types_select_column!]" ], "distinct": [ @@ -7634,10 +11924,10 @@ export default { } ], "max": [ - 519 + 760 ], "min": [ - 520 + 761 ], "__typename": [ 63 @@ -7645,22 +11935,22 @@ export default { }, "e_objective_types_bool_exp": { "_and": [ - 514 + 755 ], "_not": [ - 514 + 755 ], "_or": [ - 514 + 755 ], "description": [ 65 ], "player_objectives": [ - 2301 + 2569 ], "player_objectives_aggregate": [ - 2294 + 2562 ], "value": [ 65 @@ -7673,19 +11963,19 @@ export default { "e_objective_types_enum": {}, "e_objective_types_enum_comparison_exp": { "_eq": [ - 516 + 757 ], "_in": [ - 516 + 757 ], "_is_null": [ 3 ], "_neq": [ - 516 + 757 ], "_nin": [ - 516 + 757 ], "__typename": [ 63 @@ -7696,7 +11986,7 @@ export default { 63 ], "player_objectives": [ - 2298 + 2566 ], "value": [ 63 @@ -7732,7 +12022,7 @@ export default { 34 ], "returning": [ - 511 + 752 ], "__typename": [ 63 @@ -7740,13 +12030,13 @@ export default { }, "e_objective_types_on_conflict": { "constraint": [ - 515 + 756 ], "update_columns": [ - 529 + 770 ], "where": [ - 514 + 755 ], "__typename": [ 63 @@ -7754,13 +12044,13 @@ export default { }, "e_objective_types_order_by": { "description": [ - 1736 + 2004 ], "player_objectives_aggregate": [ - 2297 + 2565 ], "value": [ - 1736 + 2004 ], "__typename": [ 63 @@ -7788,7 +12078,7 @@ export default { }, "e_objective_types_stream_cursor_input": { "initial_value": [ - 528 + 769 ], "ordering": [ 216 @@ -7811,10 +12101,10 @@ export default { "e_objective_types_update_column": {}, "e_objective_types_updates": { "_set": [ - 526 + 767 ], "where": [ - 514 + 755 ], "__typename": [ 63 @@ -7833,10 +12123,10 @@ export default { }, "e_player_roles_aggregate": { "aggregate": [ - 533 + 774 ], "nodes": [ - 531 + 772 ], "__typename": [ 63 @@ -7847,7 +12137,7 @@ export default { 34, { "columns": [ - 545, + 786, "[e_player_roles_select_column!]" ], "distinct": [ @@ -7856,10 +12146,10 @@ export default { } ], "max": [ - 539 + 780 ], "min": [ - 540 + 781 ], "__typename": [ 63 @@ -7867,13 +12157,13 @@ export default { }, "e_player_roles_bool_exp": { "_and": [ - 534 + 775 ], "_not": [ - 534 + 775 ], "_or": [ - 534 + 775 ], "description": [ 65 @@ -7889,19 +12179,19 @@ export default { "e_player_roles_enum": {}, "e_player_roles_enum_comparison_exp": { "_eq": [ - 536 + 777 ], "_in": [ - 536 + 777 ], "_is_null": [ 3 ], "_neq": [ - 536 + 777 ], "_nin": [ - 536 + 777 ], "__typename": [ 63 @@ -7945,7 +12235,7 @@ export default { 34 ], "returning": [ - 531 + 772 ], "__typename": [ 63 @@ -7953,13 +12243,13 @@ export default { }, "e_player_roles_on_conflict": { "constraint": [ - 535 + 776 ], "update_columns": [ - 549 + 790 ], "where": [ - 534 + 775 ], "__typename": [ 63 @@ -7967,10 +12257,10 @@ export default { }, "e_player_roles_order_by": { "description": [ - 1736 + 2004 ], "value": [ - 1736 + 2004 ], "__typename": [ 63 @@ -7998,7 +12288,7 @@ export default { }, "e_player_roles_stream_cursor_input": { "initial_value": [ - 548 + 789 ], "ordering": [ 216 @@ -8021,10 +12311,10 @@ export default { "e_player_roles_update_column": {}, "e_player_roles_updates": { "_set": [ - 546 + 787 ], "where": [ - 534 + 775 ], "__typename": [ 63 @@ -8043,10 +12333,10 @@ export default { }, "e_ready_settings_aggregate": { "aggregate": [ - 553 + 794 ], "nodes": [ - 551 + 792 ], "__typename": [ 63 @@ -8057,7 +12347,7 @@ export default { 34, { "columns": [ - 565, + 806, "[e_ready_settings_select_column!]" ], "distinct": [ @@ -8066,10 +12356,10 @@ export default { } ], "max": [ - 559 + 800 ], "min": [ - 560 + 801 ], "__typename": [ 63 @@ -8077,13 +12367,13 @@ export default { }, "e_ready_settings_bool_exp": { "_and": [ - 554 + 795 ], "_not": [ - 554 + 795 ], "_or": [ - 554 + 795 ], "description": [ 65 @@ -8099,19 +12389,19 @@ export default { "e_ready_settings_enum": {}, "e_ready_settings_enum_comparison_exp": { "_eq": [ - 556 + 797 ], "_in": [ - 556 + 797 ], "_is_null": [ 3 ], "_neq": [ - 556 + 797 ], "_nin": [ - 556 + 797 ], "__typename": [ 63 @@ -8155,7 +12445,7 @@ export default { 34 ], "returning": [ - 551 + 792 ], "__typename": [ 63 @@ -8163,13 +12453,13 @@ export default { }, "e_ready_settings_on_conflict": { "constraint": [ - 555 + 796 ], "update_columns": [ - 569 + 810 ], "where": [ - 554 + 795 ], "__typename": [ 63 @@ -8177,10 +12467,10 @@ export default { }, "e_ready_settings_order_by": { "description": [ - 1736 + 2004 ], "value": [ - 1736 + 2004 ], "__typename": [ 63 @@ -8208,7 +12498,7 @@ export default { }, "e_ready_settings_stream_cursor_input": { "initial_value": [ - 568 + 809 ], "ordering": [ 216 @@ -8231,10 +12521,10 @@ export default { "e_ready_settings_update_column": {}, "e_ready_settings_updates": { "_set": [ - 566 + 807 ], "where": [ - 554 + 795 ], "__typename": [ 63 @@ -8253,10 +12543,10 @@ export default { }, "e_sanction_types_aggregate": { "aggregate": [ - 573 + 814 ], "nodes": [ - 571 + 812 ], "__typename": [ 63 @@ -8267,7 +12557,7 @@ export default { 34, { "columns": [ - 586, + 827, "[e_sanction_types_select_column!]" ], "distinct": [ @@ -8276,10 +12566,10 @@ export default { } ], "max": [ - 579 + 820 ], "min": [ - 580 + 821 ], "__typename": [ 63 @@ -8287,13 +12577,13 @@ export default { }, "e_sanction_types_bool_exp": { "_and": [ - 574 + 815 ], "_not": [ - 574 + 815 ], "_or": [ - 574 + 815 ], "description": [ 65 @@ -8309,19 +12599,19 @@ export default { "e_sanction_types_enum": {}, "e_sanction_types_enum_comparison_exp": { "_eq": [ - 576 + 817 ], "_in": [ - 576 + 817 ], "_is_null": [ 3 ], "_neq": [ - 576 + 817 ], "_nin": [ - 576 + 817 ], "__typename": [ 63 @@ -8365,7 +12655,7 @@ export default { 34 ], "returning": [ - 571 + 812 ], "__typename": [ 63 @@ -8373,10 +12663,10 @@ export default { }, "e_sanction_types_obj_rel_insert_input": { "data": [ - 578 + 819 ], "on_conflict": [ - 583 + 824 ], "__typename": [ 63 @@ -8384,13 +12674,13 @@ export default { }, "e_sanction_types_on_conflict": { "constraint": [ - 575 + 816 ], "update_columns": [ - 590 + 831 ], "where": [ - 574 + 815 ], "__typename": [ 63 @@ -8398,10 +12688,10 @@ export default { }, "e_sanction_types_order_by": { "description": [ - 1736 + 2004 ], "value": [ - 1736 + 2004 ], "__typename": [ 63 @@ -8429,7 +12719,7 @@ export default { }, "e_sanction_types_stream_cursor_input": { "initial_value": [ - 589 + 830 ], "ordering": [ 216 @@ -8452,10 +12742,10 @@ export default { "e_sanction_types_update_column": {}, "e_sanction_types_updates": { "_set": [ - 587 + 828 ], "where": [ - 574 + 815 ], "__typename": [ 63 @@ -8466,10 +12756,10 @@ export default { 63 ], "servers": [ - 2686, + 2954, { "distinct_on": [ - 2710, + 2978, "[servers_select_column!]" ], "limit": [ @@ -8479,19 +12769,19 @@ export default { 34 ], "order_by": [ - 2708, + 2976, "[servers_order_by!]" ], "where": [ - 2697 + 2965 ] } ], "servers_aggregate": [ - 2687, + 2955, { "distinct_on": [ - 2710, + 2978, "[servers_select_column!]" ], "limit": [ @@ -8501,11 +12791,11 @@ export default { 34 ], "order_by": [ - 2708, + 2976, "[servers_order_by!]" ], "where": [ - 2697 + 2965 ] } ], @@ -8518,10 +12808,10 @@ export default { }, "e_server_types_aggregate": { "aggregate": [ - 594 + 835 ], "nodes": [ - 592 + 833 ], "__typename": [ 63 @@ -8532,7 +12822,7 @@ export default { 34, { "columns": [ - 606, + 847, "[e_server_types_select_column!]" ], "distinct": [ @@ -8541,10 +12831,10 @@ export default { } ], "max": [ - 600 + 841 ], "min": [ - 601 + 842 ], "__typename": [ 63 @@ -8552,22 +12842,22 @@ export default { }, "e_server_types_bool_exp": { "_and": [ - 595 + 836 ], "_not": [ - 595 + 836 ], "_or": [ - 595 + 836 ], "description": [ 65 ], "servers": [ - 2697 + 2965 ], "servers_aggregate": [ - 2688 + 2956 ], "value": [ 65 @@ -8580,19 +12870,19 @@ export default { "e_server_types_enum": {}, "e_server_types_enum_comparison_exp": { "_eq": [ - 597 + 838 ], "_in": [ - 597 + 838 ], "_is_null": [ 3 ], "_neq": [ - 597 + 838 ], "_nin": [ - 597 + 838 ], "__typename": [ 63 @@ -8603,7 +12893,7 @@ export default { 63 ], "servers": [ - 2694 + 2962 ], "value": [ 63 @@ -8639,7 +12929,7 @@ export default { 34 ], "returning": [ - 592 + 833 ], "__typename": [ 63 @@ -8647,13 +12937,13 @@ export default { }, "e_server_types_on_conflict": { "constraint": [ - 596 + 837 ], "update_columns": [ - 610 + 851 ], "where": [ - 595 + 836 ], "__typename": [ 63 @@ -8661,13 +12951,13 @@ export default { }, "e_server_types_order_by": { "description": [ - 1736 + 2004 ], "servers_aggregate": [ - 2693 + 2961 ], "value": [ - 1736 + 2004 ], "__typename": [ 63 @@ -8695,7 +12985,7 @@ export default { }, "e_server_types_stream_cursor_input": { "initial_value": [ - 609 + 850 ], "ordering": [ 216 @@ -8718,10 +13008,10 @@ export default { "e_server_types_update_column": {}, "e_server_types_updates": { "_set": [ - 607 + 848 ], "where": [ - 595 + 836 ], "__typename": [ 63 @@ -8732,10 +13022,10 @@ export default { 63 ], "match_map_lineup_1": [ - 1416, + 1657, { "distinct_on": [ - 1438, + 1679, "[match_maps_select_column!]" ], "limit": [ @@ -8745,19 +13035,19 @@ export default { 34 ], "order_by": [ - 1436, + 1677, "[match_maps_order_by!]" ], "where": [ - 1425 + 1666 ] } ], "match_map_lineup_1_aggregate": [ - 1417, + 1658, { "distinct_on": [ - 1438, + 1679, "[match_maps_select_column!]" ], "limit": [ @@ -8767,19 +13057,19 @@ export default { 34 ], "order_by": [ - 1436, + 1677, "[match_maps_order_by!]" ], "where": [ - 1425 + 1666 ] } ], "match_map_lineup_2": [ - 1416, + 1657, { "distinct_on": [ - 1438, + 1679, "[match_maps_select_column!]" ], "limit": [ @@ -8789,19 +13079,19 @@ export default { 34 ], "order_by": [ - 1436, + 1677, "[match_maps_order_by!]" ], "where": [ - 1425 + 1666 ] } ], "match_map_lineup_2_aggregate": [ - 1417, + 1658, { "distinct_on": [ - 1438, + 1679, "[match_maps_select_column!]" ], "limit": [ @@ -8811,11 +13101,11 @@ export default { 34 ], "order_by": [ - 1436, + 1677, "[match_maps_order_by!]" ], "where": [ - 1425 + 1666 ] } ], @@ -8828,10 +13118,10 @@ export default { }, "e_sides_aggregate": { "aggregate": [ - 614 + 855 ], "nodes": [ - 612 + 853 ], "__typename": [ 63 @@ -8842,7 +13132,7 @@ export default { 34, { "columns": [ - 626, + 867, "[e_sides_select_column!]" ], "distinct": [ @@ -8851,10 +13141,10 @@ export default { } ], "max": [ - 620 + 861 ], "min": [ - 621 + 862 ], "__typename": [ 63 @@ -8862,28 +13152,28 @@ export default { }, "e_sides_bool_exp": { "_and": [ - 615 + 856 ], "_not": [ - 615 + 856 ], "_or": [ - 615 + 856 ], "description": [ 65 ], "match_map_lineup_1": [ - 1425 + 1666 ], "match_map_lineup_1_aggregate": [ - 1418 + 1659 ], "match_map_lineup_2": [ - 1425 + 1666 ], "match_map_lineup_2_aggregate": [ - 1418 + 1659 ], "value": [ 65 @@ -8896,19 +13186,19 @@ export default { "e_sides_enum": {}, "e_sides_enum_comparison_exp": { "_eq": [ - 617 + 858 ], "_in": [ - 617 + 858 ], "_is_null": [ 3 ], "_neq": [ - 617 + 858 ], "_nin": [ - 617 + 858 ], "__typename": [ 63 @@ -8919,10 +13209,10 @@ export default { 63 ], "match_map_lineup_1": [ - 1422 + 1663 ], "match_map_lineup_2": [ - 1422 + 1663 ], "value": [ 63 @@ -8958,7 +13248,7 @@ export default { 34 ], "returning": [ - 612 + 853 ], "__typename": [ 63 @@ -8966,13 +13256,13 @@ export default { }, "e_sides_on_conflict": { "constraint": [ - 616 + 857 ], "update_columns": [ - 630 + 871 ], "where": [ - 615 + 856 ], "__typename": [ 63 @@ -8980,16 +13270,16 @@ export default { }, "e_sides_order_by": { "description": [ - 1736 + 2004 ], "match_map_lineup_1_aggregate": [ - 1421 + 1662 ], "match_map_lineup_2_aggregate": [ - 1421 + 1662 ], "value": [ - 1736 + 2004 ], "__typename": [ 63 @@ -9017,7 +13307,7 @@ export default { }, "e_sides_stream_cursor_input": { "initial_value": [ - 629 + 870 ], "ordering": [ 216 @@ -9040,10 +13330,10 @@ export default { "e_sides_update_column": {}, "e_sides_updates": { "_set": [ - 627 + 868 ], "where": [ - 615 + 856 ], "__typename": [ 63 @@ -9054,10 +13344,10 @@ export default { 63 ], "team_rosters": [ - 2834, + 3102, { "distinct_on": [ - 2857, + 3125, "[team_roster_select_column!]" ], "limit": [ @@ -9067,19 +13357,19 @@ export default { 34 ], "order_by": [ - 2855, + 3123, "[team_roster_order_by!]" ], "where": [ - 2845 + 3113 ] } ], "team_rosters_aggregate": [ - 2835, + 3103, { "distinct_on": [ - 2857, + 3125, "[team_roster_select_column!]" ], "limit": [ @@ -9089,19 +13379,19 @@ export default { 34 ], "order_by": [ - 2855, + 3123, "[team_roster_order_by!]" ], "where": [ - 2845 + 3113 ] } ], "tournament_team_rosters": [ - 3103, + 3371, { "distinct_on": [ - 3124, + 3392, "[tournament_team_roster_select_column!]" ], "limit": [ @@ -9111,19 +13401,19 @@ export default { 34 ], "order_by": [ - 3122, + 3390, "[tournament_team_roster_order_by!]" ], "where": [ - 3112 + 3380 ] } ], "tournament_team_rosters_aggregate": [ - 3104, + 3372, { "distinct_on": [ - 3124, + 3392, "[tournament_team_roster_select_column!]" ], "limit": [ @@ -9133,11 +13423,11 @@ export default { 34 ], "order_by": [ - 3122, + 3390, "[tournament_team_roster_order_by!]" ], "where": [ - 3112 + 3380 ] } ], @@ -9150,10 +13440,10 @@ export default { }, "e_team_roles_aggregate": { "aggregate": [ - 634 + 875 ], "nodes": [ - 632 + 873 ], "__typename": [ 63 @@ -9164,7 +13454,7 @@ export default { 34, { "columns": [ - 647, + 888, "[e_team_roles_select_column!]" ], "distinct": [ @@ -9173,10 +13463,10 @@ export default { } ], "max": [ - 640 + 881 ], "min": [ - 641 + 882 ], "__typename": [ 63 @@ -9184,28 +13474,28 @@ export default { }, "e_team_roles_bool_exp": { "_and": [ - 635 + 876 ], "_not": [ - 635 + 876 ], "_or": [ - 635 + 876 ], "description": [ 65 ], "team_rosters": [ - 2845 + 3113 ], "team_rosters_aggregate": [ - 2836 + 3104 ], "tournament_team_rosters": [ - 3112 + 3380 ], "tournament_team_rosters_aggregate": [ - 3105 + 3373 ], "value": [ 65 @@ -9218,19 +13508,19 @@ export default { "e_team_roles_enum": {}, "e_team_roles_enum_comparison_exp": { "_eq": [ - 637 + 878 ], "_in": [ - 637 + 878 ], "_is_null": [ 3 ], "_neq": [ - 637 + 878 ], "_nin": [ - 637 + 878 ], "__typename": [ 63 @@ -9241,10 +13531,10 @@ export default { 63 ], "team_rosters": [ - 2842 + 3110 ], "tournament_team_rosters": [ - 3109 + 3377 ], "value": [ 63 @@ -9280,7 +13570,7 @@ export default { 34 ], "returning": [ - 632 + 873 ], "__typename": [ 63 @@ -9288,10 +13578,10 @@ export default { }, "e_team_roles_obj_rel_insert_input": { "data": [ - 639 + 880 ], "on_conflict": [ - 644 + 885 ], "__typename": [ 63 @@ -9299,13 +13589,13 @@ export default { }, "e_team_roles_on_conflict": { "constraint": [ - 636 + 877 ], "update_columns": [ - 651 + 892 ], "where": [ - 635 + 876 ], "__typename": [ 63 @@ -9313,16 +13603,16 @@ export default { }, "e_team_roles_order_by": { "description": [ - 1736 + 2004 ], "team_rosters_aggregate": [ - 2841 + 3109 ], "tournament_team_rosters_aggregate": [ - 3108 + 3376 ], "value": [ - 1736 + 2004 ], "__typename": [ 63 @@ -9350,7 +13640,7 @@ export default { }, "e_team_roles_stream_cursor_input": { "initial_value": [ - 650 + 891 ], "ordering": [ 216 @@ -9373,10 +13663,10 @@ export default { "e_team_roles_update_column": {}, "e_team_roles_updates": { "_set": [ - 648 + 889 ], "where": [ - 635 + 876 ], "__typename": [ 63 @@ -9395,10 +13685,10 @@ export default { }, "e_team_roster_statuses_aggregate": { "aggregate": [ - 655 + 896 ], "nodes": [ - 653 + 894 ], "__typename": [ 63 @@ -9409,7 +13699,7 @@ export default { 34, { "columns": [ - 667, + 908, "[e_team_roster_statuses_select_column!]" ], "distinct": [ @@ -9418,10 +13708,10 @@ export default { } ], "max": [ - 661 + 902 ], "min": [ - 662 + 903 ], "__typename": [ 63 @@ -9429,13 +13719,13 @@ export default { }, "e_team_roster_statuses_bool_exp": { "_and": [ - 656 + 897 ], "_not": [ - 656 + 897 ], "_or": [ - 656 + 897 ], "description": [ 65 @@ -9451,19 +13741,19 @@ export default { "e_team_roster_statuses_enum": {}, "e_team_roster_statuses_enum_comparison_exp": { "_eq": [ - 658 + 899 ], "_in": [ - 658 + 899 ], "_is_null": [ 3 ], "_neq": [ - 658 + 899 ], "_nin": [ - 658 + 899 ], "__typename": [ 63 @@ -9507,7 +13797,7 @@ export default { 34 ], "returning": [ - 653 + 894 ], "__typename": [ 63 @@ -9515,13 +13805,13 @@ export default { }, "e_team_roster_statuses_on_conflict": { "constraint": [ - 657 + 898 ], "update_columns": [ - 671 + 912 ], "where": [ - 656 + 897 ], "__typename": [ 63 @@ -9529,10 +13819,10 @@ export default { }, "e_team_roster_statuses_order_by": { "description": [ - 1736 + 2004 ], "value": [ - 1736 + 2004 ], "__typename": [ 63 @@ -9560,7 +13850,7 @@ export default { }, "e_team_roster_statuses_stream_cursor_input": { "initial_value": [ - 670 + 911 ], "ordering": [ 216 @@ -9583,10 +13873,10 @@ export default { "e_team_roster_statuses_update_column": {}, "e_team_roster_statuses_updates": { "_set": [ - 668 + 909 ], "where": [ - 656 + 897 ], "__typename": [ 63 @@ -9605,10 +13895,10 @@ export default { }, "e_timeout_settings_aggregate": { "aggregate": [ - 675 + 916 ], "nodes": [ - 673 + 914 ], "__typename": [ 63 @@ -9619,7 +13909,7 @@ export default { 34, { "columns": [ - 687, + 928, "[e_timeout_settings_select_column!]" ], "distinct": [ @@ -9628,10 +13918,10 @@ export default { } ], "max": [ - 681 + 922 ], "min": [ - 682 + 923 ], "__typename": [ 63 @@ -9639,13 +13929,13 @@ export default { }, "e_timeout_settings_bool_exp": { "_and": [ - 676 + 917 ], "_not": [ - 676 + 917 ], "_or": [ - 676 + 917 ], "description": [ 65 @@ -9661,19 +13951,19 @@ export default { "e_timeout_settings_enum": {}, "e_timeout_settings_enum_comparison_exp": { "_eq": [ - 678 + 919 ], "_in": [ - 678 + 919 ], "_is_null": [ 3 ], "_neq": [ - 678 + 919 ], "_nin": [ - 678 + 919 ], "__typename": [ 63 @@ -9717,7 +14007,7 @@ export default { 34 ], "returning": [ - 673 + 914 ], "__typename": [ 63 @@ -9725,13 +14015,13 @@ export default { }, "e_timeout_settings_on_conflict": { "constraint": [ - 677 + 918 ], "update_columns": [ - 691 + 932 ], "where": [ - 676 + 917 ], "__typename": [ 63 @@ -9739,10 +14029,10 @@ export default { }, "e_timeout_settings_order_by": { "description": [ - 1736 + 2004 ], "value": [ - 1736 + 2004 ], "__typename": [ 63 @@ -9770,7 +14060,7 @@ export default { }, "e_timeout_settings_stream_cursor_input": { "initial_value": [ - 690 + 931 ], "ordering": [ 216 @@ -9793,10 +14083,10 @@ export default { "e_timeout_settings_update_column": {}, "e_timeout_settings_updates": { "_set": [ - 688 + 929 ], "where": [ - 676 + 917 ], "__typename": [ 63 @@ -9807,10 +14097,10 @@ export default { 63 ], "tournament_stages": [ - 3011, + 3279, { "distinct_on": [ - 3040, + 3308, "[tournament_stages_select_column!]" ], "limit": [ @@ -9820,19 +14110,19 @@ export default { 34 ], "order_by": [ - 3037, + 3305, "[tournament_stages_order_by!]" ], "where": [ - 3023 + 3291 ] } ], "tournament_stages_aggregate": [ - 3012, + 3280, { "distinct_on": [ - 3040, + 3308, "[tournament_stages_select_column!]" ], "limit": [ @@ -9842,11 +14132,11 @@ export default { 34 ], "order_by": [ - 3037, + 3305, "[tournament_stages_order_by!]" ], "where": [ - 3023 + 3291 ] } ], @@ -9859,10 +14149,10 @@ export default { }, "e_tournament_stage_types_aggregate": { "aggregate": [ - 695 + 936 ], "nodes": [ - 693 + 934 ], "__typename": [ 63 @@ -9873,7 +14163,7 @@ export default { 34, { "columns": [ - 708, + 949, "[e_tournament_stage_types_select_column!]" ], "distinct": [ @@ -9882,10 +14172,10 @@ export default { } ], "max": [ - 701 + 942 ], "min": [ - 702 + 943 ], "__typename": [ 63 @@ -9893,22 +14183,22 @@ export default { }, "e_tournament_stage_types_bool_exp": { "_and": [ - 696 + 937 ], "_not": [ - 696 + 937 ], "_or": [ - 696 + 937 ], "description": [ 65 ], "tournament_stages": [ - 3023 + 3291 ], "tournament_stages_aggregate": [ - 3013 + 3281 ], "value": [ 65 @@ -9921,19 +14211,19 @@ export default { "e_tournament_stage_types_enum": {}, "e_tournament_stage_types_enum_comparison_exp": { "_eq": [ - 698 + 939 ], "_in": [ - 698 + 939 ], "_is_null": [ 3 ], "_neq": [ - 698 + 939 ], "_nin": [ - 698 + 939 ], "__typename": [ 63 @@ -9944,7 +14234,7 @@ export default { 63 ], "tournament_stages": [ - 3020 + 3288 ], "value": [ 63 @@ -9980,7 +14270,7 @@ export default { 34 ], "returning": [ - 693 + 934 ], "__typename": [ 63 @@ -9988,10 +14278,10 @@ export default { }, "e_tournament_stage_types_obj_rel_insert_input": { "data": [ - 700 + 941 ], "on_conflict": [ - 705 + 946 ], "__typename": [ 63 @@ -9999,13 +14289,13 @@ export default { }, "e_tournament_stage_types_on_conflict": { "constraint": [ - 697 + 938 ], "update_columns": [ - 712 + 953 ], "where": [ - 696 + 937 ], "__typename": [ 63 @@ -10013,13 +14303,13 @@ export default { }, "e_tournament_stage_types_order_by": { "description": [ - 1736 + 2004 ], "tournament_stages_aggregate": [ - 3018 + 3286 ], "value": [ - 1736 + 2004 ], "__typename": [ 63 @@ -10047,7 +14337,7 @@ export default { }, "e_tournament_stage_types_stream_cursor_input": { "initial_value": [ - 711 + 952 ], "ordering": [ 216 @@ -10070,10 +14360,10 @@ export default { "e_tournament_stage_types_update_column": {}, "e_tournament_stage_types_updates": { "_set": [ - 709 + 950 ], "where": [ - 696 + 937 ], "__typename": [ 63 @@ -10084,10 +14374,10 @@ export default { 63 ], "tournaments": [ - 3273, + 3541, { "distinct_on": [ - 3297, + 3565, "[tournaments_select_column!]" ], "limit": [ @@ -10097,19 +14387,19 @@ export default { 34 ], "order_by": [ - 3295, + 3563, "[tournaments_order_by!]" ], "where": [ - 3284 + 3552 ] } ], "tournaments_aggregate": [ - 3274, + 3542, { "distinct_on": [ - 3297, + 3565, "[tournaments_select_column!]" ], "limit": [ @@ -10119,11 +14409,11 @@ export default { 34 ], "order_by": [ - 3295, + 3563, "[tournaments_order_by!]" ], "where": [ - 3284 + 3552 ] } ], @@ -10136,10 +14426,10 @@ export default { }, "e_tournament_status_aggregate": { "aggregate": [ - 716 + 957 ], "nodes": [ - 714 + 955 ], "__typename": [ 63 @@ -10150,7 +14440,7 @@ export default { 34, { "columns": [ - 729, + 970, "[e_tournament_status_select_column!]" ], "distinct": [ @@ -10159,10 +14449,10 @@ export default { } ], "max": [ - 722 + 963 ], "min": [ - 723 + 964 ], "__typename": [ 63 @@ -10170,22 +14460,22 @@ export default { }, "e_tournament_status_bool_exp": { "_and": [ - 717 + 958 ], "_not": [ - 717 + 958 ], "_or": [ - 717 + 958 ], "description": [ 65 ], "tournaments": [ - 3284 + 3552 ], "tournaments_aggregate": [ - 3275 + 3543 ], "value": [ 65 @@ -10198,19 +14488,19 @@ export default { "e_tournament_status_enum": {}, "e_tournament_status_enum_comparison_exp": { "_eq": [ - 719 + 960 ], "_in": [ - 719 + 960 ], "_is_null": [ 3 ], "_neq": [ - 719 + 960 ], "_nin": [ - 719 + 960 ], "__typename": [ 63 @@ -10221,7 +14511,7 @@ export default { 63 ], "tournaments": [ - 3281 + 3549 ], "value": [ 63 @@ -10257,7 +14547,7 @@ export default { 34 ], "returning": [ - 714 + 955 ], "__typename": [ 63 @@ -10265,10 +14555,10 @@ export default { }, "e_tournament_status_obj_rel_insert_input": { "data": [ - 721 + 962 ], "on_conflict": [ - 726 + 967 ], "__typename": [ 63 @@ -10276,13 +14566,13 @@ export default { }, "e_tournament_status_on_conflict": { "constraint": [ - 718 + 959 ], "update_columns": [ - 733 + 974 ], "where": [ - 717 + 958 ], "__typename": [ 63 @@ -10290,13 +14580,13 @@ export default { }, "e_tournament_status_order_by": { "description": [ - 1736 + 2004 ], "tournaments_aggregate": [ - 3280 + 3548 ], "value": [ - 1736 + 2004 ], "__typename": [ 63 @@ -10324,7 +14614,7 @@ export default { }, "e_tournament_status_stream_cursor_input": { "initial_value": [ - 732 + 973 ], "ordering": [ 216 @@ -10347,10 +14637,10 @@ export default { "e_tournament_status_update_column": {}, "e_tournament_status_updates": { "_set": [ - 730 + 971 ], "where": [ - 717 + 958 ], "__typename": [ 63 @@ -10361,10 +14651,10 @@ export default { 63 ], "player_utilities": [ - 2529, + 2797, { "distinct_on": [ - 2550, + 2818, "[player_utility_select_column!]" ], "limit": [ @@ -10374,19 +14664,19 @@ export default { 34 ], "order_by": [ - 2548, + 2816, "[player_utility_order_by!]" ], "where": [ - 2538 + 2806 ] } ], "player_utilities_aggregate": [ - 2530, + 2798, { "distinct_on": [ - 2550, + 2818, "[player_utility_select_column!]" ], "limit": [ @@ -10396,11 +14686,11 @@ export default { 34 ], "order_by": [ - 2548, + 2816, "[player_utility_order_by!]" ], "where": [ - 2538 + 2806 ] } ], @@ -10413,10 +14703,10 @@ export default { }, "e_utility_types_aggregate": { "aggregate": [ - 737 + 978 ], "nodes": [ - 735 + 976 ], "__typename": [ 63 @@ -10427,7 +14717,7 @@ export default { 34, { "columns": [ - 749, + 990, "[e_utility_types_select_column!]" ], "distinct": [ @@ -10436,10 +14726,10 @@ export default { } ], "max": [ - 743 + 984 ], "min": [ - 744 + 985 ], "__typename": [ 63 @@ -10447,22 +14737,22 @@ export default { }, "e_utility_types_bool_exp": { "_and": [ - 738 + 979 ], "_not": [ - 738 + 979 ], "_or": [ - 738 + 979 ], "description": [ 65 ], "player_utilities": [ - 2538 + 2806 ], "player_utilities_aggregate": [ - 2531 + 2799 ], "value": [ 65 @@ -10475,19 +14765,19 @@ export default { "e_utility_types_enum": {}, "e_utility_types_enum_comparison_exp": { "_eq": [ - 740 + 981 ], "_in": [ - 740 + 981 ], "_is_null": [ 3 ], "_neq": [ - 740 + 981 ], "_nin": [ - 740 + 981 ], "__typename": [ 63 @@ -10498,7 +14788,7 @@ export default { 63 ], "player_utilities": [ - 2535 + 2803 ], "value": [ 63 @@ -10534,7 +14824,7 @@ export default { 34 ], "returning": [ - 735 + 976 ], "__typename": [ 63 @@ -10542,13 +14832,13 @@ export default { }, "e_utility_types_on_conflict": { "constraint": [ - 739 + 980 ], "update_columns": [ - 753 + 994 ], "where": [ - 738 + 979 ], "__typename": [ 63 @@ -10556,13 +14846,13 @@ export default { }, "e_utility_types_order_by": { "description": [ - 1736 + 2004 ], "player_utilities_aggregate": [ - 2534 + 2802 ], "value": [ - 1736 + 2004 ], "__typename": [ 63 @@ -10590,7 +14880,7 @@ export default { }, "e_utility_types_stream_cursor_input": { "initial_value": [ - 752 + 993 ], "ordering": [ 216 @@ -10613,10 +14903,10 @@ export default { "e_utility_types_update_column": {}, "e_utility_types_updates": { "_set": [ - 750 + 991 ], "where": [ - 738 + 979 ], "__typename": [ 63 @@ -10627,10 +14917,10 @@ export default { 63 ], "match_veto_picks": [ - 1392, + 1633, { "distinct_on": [ - 1410, + 1651, "[match_map_veto_picks_select_column!]" ], "limit": [ @@ -10640,19 +14930,19 @@ export default { 34 ], "order_by": [ - 1408, + 1649, "[match_map_veto_picks_order_by!]" ], "where": [ - 1399 + 1640 ] } ], "match_veto_picks_aggregate": [ - 1393, + 1634, { "distinct_on": [ - 1410, + 1651, "[match_map_veto_picks_select_column!]" ], "limit": [ @@ -10662,11 +14952,11 @@ export default { 34 ], "order_by": [ - 1408, + 1649, "[match_map_veto_picks_order_by!]" ], "where": [ - 1399 + 1640 ] } ], @@ -10679,10 +14969,10 @@ export default { }, "e_veto_pick_types_aggregate": { "aggregate": [ - 757 + 998 ], "nodes": [ - 755 + 996 ], "__typename": [ 63 @@ -10693,7 +14983,7 @@ export default { 34, { "columns": [ - 769, + 1010, "[e_veto_pick_types_select_column!]" ], "distinct": [ @@ -10702,10 +14992,10 @@ export default { } ], "max": [ - 763 + 1004 ], "min": [ - 764 + 1005 ], "__typename": [ 63 @@ -10713,22 +15003,22 @@ export default { }, "e_veto_pick_types_bool_exp": { "_and": [ - 758 + 999 ], "_not": [ - 758 + 999 ], "_or": [ - 758 + 999 ], "description": [ 65 ], "match_veto_picks": [ - 1399 + 1640 ], "match_veto_picks_aggregate": [ - 1394 + 1635 ], "value": [ 65 @@ -10741,19 +15031,19 @@ export default { "e_veto_pick_types_enum": {}, "e_veto_pick_types_enum_comparison_exp": { "_eq": [ - 760 + 1001 ], "_in": [ - 760 + 1001 ], "_is_null": [ 3 ], "_neq": [ - 760 + 1001 ], "_nin": [ - 760 + 1001 ], "__typename": [ 63 @@ -10764,7 +15054,7 @@ export default { 63 ], "match_veto_picks": [ - 1398 + 1639 ], "value": [ 63 @@ -10800,7 +15090,7 @@ export default { 34 ], "returning": [ - 755 + 996 ], "__typename": [ 63 @@ -10808,13 +15098,13 @@ export default { }, "e_veto_pick_types_on_conflict": { "constraint": [ - 759 + 1000 ], "update_columns": [ - 773 + 1014 ], "where": [ - 758 + 999 ], "__typename": [ 63 @@ -10822,13 +15112,13 @@ export default { }, "e_veto_pick_types_order_by": { "description": [ - 1736 + 2004 ], "match_veto_picks_aggregate": [ - 1397 + 1638 ], "value": [ - 1736 + 2004 ], "__typename": [ 63 @@ -10856,7 +15146,7 @@ export default { }, "e_veto_pick_types_stream_cursor_input": { "initial_value": [ - 772 + 1013 ], "ordering": [ 216 @@ -10879,10 +15169,10 @@ export default { "e_veto_pick_types_update_column": {}, "e_veto_pick_types_updates": { "_set": [ - 770 + 1011 ], "where": [ - 758 + 999 ], "__typename": [ 63 @@ -10901,10 +15191,10 @@ export default { }, "e_winning_reasons_aggregate": { "aggregate": [ - 777 + 1018 ], "nodes": [ - 775 + 1016 ], "__typename": [ 63 @@ -10915,7 +15205,7 @@ export default { 34, { "columns": [ - 789, + 1030, "[e_winning_reasons_select_column!]" ], "distinct": [ @@ -10924,10 +15214,10 @@ export default { } ], "max": [ - 783 + 1024 ], "min": [ - 784 + 1025 ], "__typename": [ 63 @@ -10935,13 +15225,13 @@ export default { }, "e_winning_reasons_bool_exp": { "_and": [ - 778 + 1019 ], "_not": [ - 778 + 1019 ], "_or": [ - 778 + 1019 ], "description": [ 65 @@ -10957,19 +15247,19 @@ export default { "e_winning_reasons_enum": {}, "e_winning_reasons_enum_comparison_exp": { "_eq": [ - 780 + 1021 ], "_in": [ - 780 + 1021 ], "_is_null": [ 3 ], "_neq": [ - 780 + 1021 ], "_nin": [ - 780 + 1021 ], "__typename": [ 63 @@ -11013,7 +15303,7 @@ export default { 34 ], "returning": [ - 775 + 1016 ], "__typename": [ 63 @@ -11021,13 +15311,13 @@ export default { }, "e_winning_reasons_on_conflict": { "constraint": [ - 779 + 1020 ], "update_columns": [ - 793 + 1034 ], "where": [ - 778 + 1019 ], "__typename": [ 63 @@ -11035,10 +15325,10 @@ export default { }, "e_winning_reasons_order_by": { "description": [ - 1736 + 2004 ], "value": [ - 1736 + 2004 ], "__typename": [ 63 @@ -11066,7 +15356,7 @@ export default { }, "e_winning_reasons_stream_cursor_input": { "initial_value": [ - 792 + 1033 ], "ordering": [ 216 @@ -11089,10 +15379,10 @@ export default { "e_winning_reasons_update_column": {}, "e_winning_reasons_updates": { "_set": [ - 790 + 1031 ], "where": [ - 778 + 1019 ], "__typename": [ 63 @@ -11101,31 +15391,31 @@ export default { "float8": {}, "float8_comparison_exp": { "_eq": [ - 795 + 1036 ], "_gt": [ - 795 + 1036 ], "_gte": [ - 795 + 1036 ], "_in": [ - 795 + 1036 ], "_is_null": [ 3 ], "_lt": [ - 795 + 1036 ], "_lte": [ - 795 + 1036 ], "_neq": [ - 795 + 1036 ], "_nin": [ - 795 + 1036 ], "__typename": [ 63 @@ -11133,7 +15423,7 @@ export default { }, "friends": { "e_status": [ - 264 + 505 ], "other_player_steam_id": [ 162 @@ -11142,7 +15432,7 @@ export default { 162 ], "status": [ - 269 + 510 ], "__typename": [ 63 @@ -11150,10 +15440,10 @@ export default { }, "friends_aggregate": { "aggregate": [ - 799 + 1040 ], "nodes": [ - 797 + 1038 ], "__typename": [ 63 @@ -11161,13 +15451,13 @@ export default { }, "friends_aggregate_fields": { "avg": [ - 800 + 1041 ], "count": [ 34, { "columns": [ - 811, + 1052, "[friends_select_column!]" ], "distinct": [ @@ -11176,31 +15466,31 @@ export default { } ], "max": [ - 805 + 1046 ], "min": [ - 806 + 1047 ], "stddev": [ - 813 + 1054 ], "stddev_pop": [ - 814 + 1055 ], "stddev_samp": [ - 815 + 1056 ], "sum": [ - 818 + 1059 ], "var_pop": [ - 821 + 1062 ], "var_samp": [ - 822 + 1063 ], "variance": [ - 823 + 1064 ], "__typename": [ 63 @@ -11219,16 +15509,16 @@ export default { }, "friends_bool_exp": { "_and": [ - 801 + 1042 ], "_not": [ - 801 + 1042 ], "_or": [ - 801 + 1042 ], "e_status": [ - 267 + 508 ], "other_player_steam_id": [ 163 @@ -11237,7 +15527,7 @@ export default { 163 ], "status": [ - 270 + 511 ], "__typename": [ 63 @@ -11257,7 +15547,7 @@ export default { }, "friends_insert_input": { "e_status": [ - 275 + 516 ], "other_player_steam_id": [ 162 @@ -11266,7 +15556,7 @@ export default { 162 ], "status": [ - 269 + 510 ], "__typename": [ 63 @@ -11299,7 +15589,7 @@ export default { 34 ], "returning": [ - 797 + 1038 ], "__typename": [ 63 @@ -11307,13 +15597,13 @@ export default { }, "friends_on_conflict": { "constraint": [ - 802 + 1043 ], "update_columns": [ - 819 + 1060 ], "where": [ - 801 + 1042 ], "__typename": [ 63 @@ -11321,16 +15611,16 @@ export default { }, "friends_order_by": { "e_status": [ - 277 + 518 ], "other_player_steam_id": [ - 1736 + 2004 ], "player_steam_id": [ - 1736 + 2004 ], "status": [ - 1736 + 2004 ], "__typename": [ 63 @@ -11356,7 +15646,7 @@ export default { 162 ], "status": [ - 269 + 510 ], "__typename": [ 63 @@ -11397,7 +15687,7 @@ export default { }, "friends_stream_cursor_input": { "initial_value": [ - 817 + 1058 ], "ordering": [ 216 @@ -11414,7 +15704,7 @@ export default { 162 ], "status": [ - 269 + 510 ], "__typename": [ 63 @@ -11434,13 +15724,13 @@ export default { "friends_update_column": {}, "friends_updates": { "_inc": [ - 803 + 1044 ], "_set": [ - 812 + 1053 ], "where": [ - 801 + 1042 ], "__typename": [ 63 @@ -11490,7 +15780,7 @@ export default { 34 ], "cpu_frequency_info": [ - 946, + 1187, { "path": [ 63 @@ -11498,7 +15788,7 @@ export default { } ], "cpu_governor_info": [ - 946, + 1187, { "path": [ 63 @@ -11512,7 +15802,7 @@ export default { 34 ], "cs2_launch_options": [ - 946, + 1187, { "path": [ 63 @@ -11520,7 +15810,7 @@ export default { } ], "cs2_video_settings": [ - 946, + 1187, { "path": [ 63 @@ -11540,10 +15830,10 @@ export default { 34 ], "e_region": [ - 2659 + 2927 ], "e_status": [ - 305 + 546 ], "enabled": [ 3 @@ -11558,7 +15848,7 @@ export default { 3 ], "gpu_info": [ - 946, + 1187, { "path": [ 63 @@ -11578,13 +15868,13 @@ export default { 63 ], "lan_ip": [ - 942 + 1183 ], "node_ip": [ - 942 + 1183 ], "offline_at": [ - 2922 + 3190 ], "pin_build_id": [ 34 @@ -11593,22 +15883,22 @@ export default { 63 ], "pinned_version": [ - 875 + 1116 ], "plugin_supported": [ 3 ], "public_ip": [ - 942 + 1183 ], "region": [ 63 ], "servers": [ - 2686, + 2954, { "distinct_on": [ - 2710, + 2978, "[servers_select_column!]" ], "limit": [ @@ -11618,19 +15908,19 @@ export default { 34 ], "order_by": [ - 2708, + 2976, "[servers_order_by!]" ], "where": [ - 2697 + 2965 ] } ], "servers_aggregate": [ - 2687, + 2955, { "distinct_on": [ - 2710, + 2978, "[servers_select_column!]" ], "limit": [ @@ -11640,16 +15930,16 @@ export default { 34 ], "order_by": [ - 2708, + 2976, "[servers_order_by!]" ], "where": [ - 2697 + 2965 ] } ], "shader_bake_progress": [ - 1734 + 2002 ], "shader_bake_progress_stage": [ 63 @@ -11658,7 +15948,7 @@ export default { 63 ], "shader_bake_status_history": [ - 946, + 1187, { "path": [ 63 @@ -11669,7 +15959,7 @@ export default { 34 ], "status": [ - 310 + 551 ], "supports_cpu_pinning": [ 3 @@ -11687,7 +15977,7 @@ export default { 63 ], "version": [ - 875 + 1116 ], "__typename": [ 63 @@ -11695,10 +15985,10 @@ export default { }, "game_server_nodes_aggregate": { "aggregate": [ - 830 + 1071 ], "nodes": [ - 824 + 1065 ], "__typename": [ 63 @@ -11706,13 +15996,13 @@ export default { }, "game_server_nodes_aggregate_bool_exp": { "bool_and": [ - 827 + 1068 ], "bool_or": [ - 828 + 1069 ], "count": [ - 829 + 1070 ], "__typename": [ 63 @@ -11720,13 +16010,13 @@ export default { }, "game_server_nodes_aggregate_bool_exp_bool_and": { "arguments": [ - 854 + 1095 ], "distinct": [ 3 ], "filter": [ - 836 + 1077 ], "predicate": [ 4 @@ -11737,13 +16027,13 @@ export default { }, "game_server_nodes_aggregate_bool_exp_bool_or": { "arguments": [ - 855 + 1096 ], "distinct": [ 3 ], "filter": [ - 836 + 1077 ], "predicate": [ 4 @@ -11754,13 +16044,13 @@ export default { }, "game_server_nodes_aggregate_bool_exp_count": { "arguments": [ - 853 + 1094 ], "distinct": [ 3 ], "filter": [ - 836 + 1077 ], "predicate": [ 35 @@ -11771,13 +16061,13 @@ export default { }, "game_server_nodes_aggregate_fields": { "avg": [ - 834 + 1075 ], "count": [ 34, { "columns": [ - 853, + 1094, "[game_server_nodes_select_column!]" ], "distinct": [ @@ -11786,31 +16076,31 @@ export default { } ], "max": [ - 843 + 1084 ], "min": [ - 845 + 1086 ], "stddev": [ - 857 + 1098 ], "stddev_pop": [ - 859 + 1100 ], "stddev_samp": [ - 861 + 1102 ], "sum": [ - 865 + 1106 ], "var_pop": [ - 869 + 1110 ], "var_samp": [ - 871 + 1112 ], "variance": [ - 873 + 1114 ], "__typename": [ 63 @@ -11818,37 +16108,37 @@ export default { }, "game_server_nodes_aggregate_order_by": { "avg": [ - 835 + 1076 ], "count": [ - 1736 + 2004 ], "max": [ - 844 + 1085 ], "min": [ - 846 + 1087 ], "stddev": [ - 858 + 1099 ], "stddev_pop": [ - 860 + 1101 ], "stddev_samp": [ - 862 + 1103 ], "sum": [ - 866 + 1107 ], "var_pop": [ - 870 + 1111 ], "var_samp": [ - 872 + 1113 ], "variance": [ - 874 + 1115 ], "__typename": [ 63 @@ -11856,22 +16146,22 @@ export default { }, "game_server_nodes_append_input": { "cpu_frequency_info": [ - 946 + 1187 ], "cpu_governor_info": [ - 946 + 1187 ], "cs2_launch_options": [ - 946 + 1187 ], "cs2_video_settings": [ - 946 + 1187 ], "gpu_info": [ - 946 + 1187 ], "shader_bake_status_history": [ - 946 + 1187 ], "__typename": [ 63 @@ -11879,10 +16169,10 @@ export default { }, "game_server_nodes_arr_rel_insert_input": { "data": [ - 842 + 1083 ], "on_conflict": [ - 849 + 1090 ], "__typename": [ 63 @@ -11937,40 +16227,40 @@ export default { }, "game_server_nodes_avg_order_by": { "build_id": [ - 1736 + 2004 ], "cpu_cores_per_socket": [ - 1736 + 2004 ], "cpu_sockets": [ - 1736 + 2004 ], "cpu_threads_per_core": [ - 1736 + 2004 ], "csgo_build_id": [ - 1736 + 2004 ], "demo_network_limiter": [ - 1736 + 2004 ], "disk_available_gb": [ - 1736 + 2004 ], "disk_used_percent": [ - 1736 + 2004 ], "end_port_range": [ - 1736 + 2004 ], "pin_build_id": [ - 1736 + 2004 ], "shader_bake_progress": [ - 1736 + 2004 ], "start_port_range": [ - 1736 + 2004 ], "__typename": [ 63 @@ -11978,13 +16268,13 @@ export default { }, "game_server_nodes_bool_exp": { "_and": [ - 836 + 1077 ], "_not": [ - 836 + 1077 ], "_or": [ - 836 + 1077 ], "available_server_count": [ 35 @@ -11996,10 +16286,10 @@ export default { 35 ], "cpu_frequency_info": [ - 948 + 1189 ], "cpu_governor_info": [ - 948 + 1189 ], "cpu_sockets": [ 35 @@ -12008,10 +16298,10 @@ export default { 35 ], "cs2_launch_options": [ - 948 + 1189 ], "cs2_video_settings": [ - 948 + 1189 ], "csgo_build_id": [ 35 @@ -12026,10 +16316,10 @@ export default { 35 ], "e_region": [ - 2663 + 2931 ], "e_status": [ - 308 + 549 ], "enabled": [ 4 @@ -12044,7 +16334,7 @@ export default { 4 ], "gpu_info": [ - 948 + 1189 ], "gpu_rendering_enabled": [ 4 @@ -12059,13 +16349,13 @@ export default { 65 ], "lan_ip": [ - 943 + 1184 ], "node_ip": [ - 943 + 1184 ], "offline_at": [ - 2923 + 3191 ], "pin_build_id": [ 35 @@ -12074,25 +16364,25 @@ export default { 65 ], "pinned_version": [ - 880 + 1121 ], "plugin_supported": [ 4 ], "public_ip": [ - 943 + 1184 ], "region": [ 65 ], "servers": [ - 2697 + 2965 ], "servers_aggregate": [ - 2688 + 2956 ], "shader_bake_progress": [ - 1735 + 2003 ], "shader_bake_progress_stage": [ 65 @@ -12101,13 +16391,13 @@ export default { 65 ], "shader_bake_status_history": [ - 948 + 1189 ], "start_port_range": [ 35 ], "status": [ - 311 + 552 ], "supports_cpu_pinning": [ 4 @@ -12125,7 +16415,7 @@ export default { 65 ], "version": [ - 880 + 1121 ], "__typename": [ 63 @@ -12233,7 +16523,7 @@ export default { 34 ], "shader_bake_progress": [ - 1734 + 2002 ], "start_port_range": [ 34 @@ -12250,10 +16540,10 @@ export default { 34 ], "cpu_frequency_info": [ - 946 + 1187 ], "cpu_governor_info": [ - 946 + 1187 ], "cpu_sockets": [ 34 @@ -12262,10 +16552,10 @@ export default { 34 ], "cs2_launch_options": [ - 946 + 1187 ], "cs2_video_settings": [ - 946 + 1187 ], "csgo_build_id": [ 34 @@ -12280,10 +16570,10 @@ export default { 34 ], "e_region": [ - 2669 + 2937 ], "e_status": [ - 316 + 557 ], "enabled": [ 3 @@ -12298,7 +16588,7 @@ export default { 3 ], "gpu_info": [ - 946 + 1187 ], "gpu_rendering_enabled": [ 3 @@ -12313,13 +16603,13 @@ export default { 63 ], "lan_ip": [ - 942 + 1183 ], "node_ip": [ - 942 + 1183 ], "offline_at": [ - 2922 + 3190 ], "pin_build_id": [ 34 @@ -12328,19 +16618,19 @@ export default { 63 ], "pinned_version": [ - 890 + 1131 ], "public_ip": [ - 942 + 1183 ], "region": [ 63 ], "servers": [ - 2694 + 2962 ], "shader_bake_progress": [ - 1734 + 2002 ], "shader_bake_progress_stage": [ 63 @@ -12349,13 +16639,13 @@ export default { 63 ], "shader_bake_status_history": [ - 946 + 1187 ], "start_port_range": [ 34 ], "status": [ - 310 + 551 ], "supports_cpu_pinning": [ 3 @@ -12370,7 +16660,7 @@ export default { 63 ], "version": [ - 890 + 1131 ], "__typename": [ 63 @@ -12414,7 +16704,7 @@ export default { 63 ], "offline_at": [ - 2922 + 3190 ], "pin_build_id": [ 34 @@ -12426,7 +16716,7 @@ export default { 63 ], "shader_bake_progress": [ - 1734 + 2002 ], "shader_bake_progress_stage": [ 63 @@ -12452,67 +16742,67 @@ export default { }, "game_server_nodes_max_order_by": { "build_id": [ - 1736 + 2004 ], "cpu_cores_per_socket": [ - 1736 + 2004 ], "cpu_sockets": [ - 1736 + 2004 ], "cpu_threads_per_core": [ - 1736 + 2004 ], "csgo_build_id": [ - 1736 + 2004 ], "demo_network_limiter": [ - 1736 + 2004 ], "disk_available_gb": [ - 1736 + 2004 ], "disk_used_percent": [ - 1736 + 2004 ], "end_port_range": [ - 1736 + 2004 ], "id": [ - 1736 + 2004 ], "label": [ - 1736 + 2004 ], "offline_at": [ - 1736 + 2004 ], "pin_build_id": [ - 1736 + 2004 ], "pin_plugin_version": [ - 1736 + 2004 ], "region": [ - 1736 + 2004 ], "shader_bake_progress": [ - 1736 + 2004 ], "shader_bake_progress_stage": [ - 1736 + 2004 ], "shader_bake_status": [ - 1736 + 2004 ], "start_port_range": [ - 1736 + 2004 ], "token": [ - 1736 + 2004 ], "update_status": [ - 1736 + 2004 ], "__typename": [ 63 @@ -12556,7 +16846,7 @@ export default { 63 ], "offline_at": [ - 2922 + 3190 ], "pin_build_id": [ 34 @@ -12568,7 +16858,7 @@ export default { 63 ], "shader_bake_progress": [ - 1734 + 2002 ], "shader_bake_progress_stage": [ 63 @@ -12594,67 +16884,67 @@ export default { }, "game_server_nodes_min_order_by": { "build_id": [ - 1736 + 2004 ], "cpu_cores_per_socket": [ - 1736 + 2004 ], "cpu_sockets": [ - 1736 + 2004 ], "cpu_threads_per_core": [ - 1736 + 2004 ], "csgo_build_id": [ - 1736 + 2004 ], "demo_network_limiter": [ - 1736 + 2004 ], "disk_available_gb": [ - 1736 + 2004 ], "disk_used_percent": [ - 1736 + 2004 ], "end_port_range": [ - 1736 + 2004 ], "id": [ - 1736 + 2004 ], "label": [ - 1736 + 2004 ], "offline_at": [ - 1736 + 2004 ], "pin_build_id": [ - 1736 + 2004 ], "pin_plugin_version": [ - 1736 + 2004 ], "region": [ - 1736 + 2004 ], "shader_bake_progress": [ - 1736 + 2004 ], "shader_bake_progress_stage": [ - 1736 + 2004 ], "shader_bake_status": [ - 1736 + 2004 ], "start_port_range": [ - 1736 + 2004 ], "token": [ - 1736 + 2004 ], "update_status": [ - 1736 + 2004 ], "__typename": [ 63 @@ -12665,7 +16955,7 @@ export default { 34 ], "returning": [ - 824 + 1065 ], "__typename": [ 63 @@ -12673,10 +16963,10 @@ export default { }, "game_server_nodes_obj_rel_insert_input": { "data": [ - 842 + 1083 ], "on_conflict": [ - 849 + 1090 ], "__typename": [ 63 @@ -12684,13 +16974,13 @@ export default { }, "game_server_nodes_on_conflict": { "constraint": [ - 837 + 1078 ], "update_columns": [ - 867 + 1108 ], "where": [ - 836 + 1077 ], "__typename": [ 63 @@ -12698,142 +16988,142 @@ export default { }, "game_server_nodes_order_by": { "available_server_count": [ - 1736 + 2004 ], "build_id": [ - 1736 + 2004 ], "cpu_cores_per_socket": [ - 1736 + 2004 ], "cpu_frequency_info": [ - 1736 + 2004 ], "cpu_governor_info": [ - 1736 + 2004 ], "cpu_sockets": [ - 1736 + 2004 ], "cpu_threads_per_core": [ - 1736 + 2004 ], "cs2_launch_options": [ - 1736 + 2004 ], "cs2_video_settings": [ - 1736 + 2004 ], "csgo_build_id": [ - 1736 + 2004 ], "demo_network_limiter": [ - 1736 + 2004 ], "disk_available_gb": [ - 1736 + 2004 ], "disk_used_percent": [ - 1736 + 2004 ], "e_region": [ - 2671 + 2939 ], "e_status": [ - 318 + 559 ], "enabled": [ - 1736 + 2004 ], "end_port_range": [ - 1736 + 2004 ], "gpu": [ - 1736 + 2004 ], "gpu_demos_enabled": [ - 1736 + 2004 ], "gpu_info": [ - 1736 + 2004 ], "gpu_rendering_enabled": [ - 1736 + 2004 ], "gpu_streaming_enabled": [ - 1736 + 2004 ], "id": [ - 1736 + 2004 ], "label": [ - 1736 + 2004 ], "lan_ip": [ - 1736 + 2004 ], "node_ip": [ - 1736 + 2004 ], "offline_at": [ - 1736 + 2004 ], "pin_build_id": [ - 1736 + 2004 ], "pin_plugin_version": [ - 1736 + 2004 ], "pinned_version": [ - 892 + 1133 ], "plugin_supported": [ - 1736 + 2004 ], "public_ip": [ - 1736 + 2004 ], "region": [ - 1736 + 2004 ], "servers_aggregate": [ - 2693 + 2961 ], "shader_bake_progress": [ - 1736 + 2004 ], "shader_bake_progress_stage": [ - 1736 + 2004 ], "shader_bake_status": [ - 1736 + 2004 ], "shader_bake_status_history": [ - 1736 + 2004 ], "start_port_range": [ - 1736 + 2004 ], "status": [ - 1736 + 2004 ], "supports_cpu_pinning": [ - 1736 + 2004 ], "supports_low_latency": [ - 1736 + 2004 ], "token": [ - 1736 + 2004 ], "total_server_count": [ - 1736 + 2004 ], "update_status": [ - 1736 + 2004 ], "version": [ - 892 + 1133 ], "__typename": [ 63 @@ -12849,22 +17139,22 @@ export default { }, "game_server_nodes_prepend_input": { "cpu_frequency_info": [ - 946 + 1187 ], "cpu_governor_info": [ - 946 + 1187 ], "cs2_launch_options": [ - 946 + 1187 ], "cs2_video_settings": [ - 946 + 1187 ], "gpu_info": [ - 946 + 1187 ], "shader_bake_status_history": [ - 946 + 1187 ], "__typename": [ 63 @@ -12881,10 +17171,10 @@ export default { 34 ], "cpu_frequency_info": [ - 946 + 1187 ], "cpu_governor_info": [ - 946 + 1187 ], "cpu_sockets": [ 34 @@ -12893,10 +17183,10 @@ export default { 34 ], "cs2_launch_options": [ - 946 + 1187 ], "cs2_video_settings": [ - 946 + 1187 ], "csgo_build_id": [ 34 @@ -12923,7 +17213,7 @@ export default { 3 ], "gpu_info": [ - 946 + 1187 ], "gpu_rendering_enabled": [ 3 @@ -12938,13 +17228,13 @@ export default { 63 ], "lan_ip": [ - 942 + 1183 ], "node_ip": [ - 942 + 1183 ], "offline_at": [ - 2922 + 3190 ], "pin_build_id": [ 34 @@ -12953,13 +17243,13 @@ export default { 63 ], "public_ip": [ - 942 + 1183 ], "region": [ 63 ], "shader_bake_progress": [ - 1734 + 2002 ], "shader_bake_progress_stage": [ 63 @@ -12968,13 +17258,13 @@ export default { 63 ], "shader_bake_status_history": [ - 946 + 1187 ], "start_port_range": [ 34 ], "status": [ - 310 + 551 ], "supports_cpu_pinning": [ 3 @@ -13041,40 +17331,40 @@ export default { }, "game_server_nodes_stddev_order_by": { "build_id": [ - 1736 + 2004 ], "cpu_cores_per_socket": [ - 1736 + 2004 ], "cpu_sockets": [ - 1736 + 2004 ], "cpu_threads_per_core": [ - 1736 + 2004 ], "csgo_build_id": [ - 1736 + 2004 ], "demo_network_limiter": [ - 1736 + 2004 ], "disk_available_gb": [ - 1736 + 2004 ], "disk_used_percent": [ - 1736 + 2004 ], "end_port_range": [ - 1736 + 2004 ], "pin_build_id": [ - 1736 + 2004 ], "shader_bake_progress": [ - 1736 + 2004 ], "start_port_range": [ - 1736 + 2004 ], "__typename": [ 63 @@ -13129,40 +17419,40 @@ export default { }, "game_server_nodes_stddev_pop_order_by": { "build_id": [ - 1736 + 2004 ], "cpu_cores_per_socket": [ - 1736 + 2004 ], "cpu_sockets": [ - 1736 + 2004 ], "cpu_threads_per_core": [ - 1736 + 2004 ], "csgo_build_id": [ - 1736 + 2004 ], "demo_network_limiter": [ - 1736 + 2004 ], "disk_available_gb": [ - 1736 + 2004 ], "disk_used_percent": [ - 1736 + 2004 ], "end_port_range": [ - 1736 + 2004 ], "pin_build_id": [ - 1736 + 2004 ], "shader_bake_progress": [ - 1736 + 2004 ], "start_port_range": [ - 1736 + 2004 ], "__typename": [ 63 @@ -13217,40 +17507,40 @@ export default { }, "game_server_nodes_stddev_samp_order_by": { "build_id": [ - 1736 + 2004 ], "cpu_cores_per_socket": [ - 1736 + 2004 ], "cpu_sockets": [ - 1736 + 2004 ], "cpu_threads_per_core": [ - 1736 + 2004 ], "csgo_build_id": [ - 1736 + 2004 ], "demo_network_limiter": [ - 1736 + 2004 ], "disk_available_gb": [ - 1736 + 2004 ], "disk_used_percent": [ - 1736 + 2004 ], "end_port_range": [ - 1736 + 2004 ], "pin_build_id": [ - 1736 + 2004 ], "shader_bake_progress": [ - 1736 + 2004 ], "start_port_range": [ - 1736 + 2004 ], "__typename": [ 63 @@ -13258,7 +17548,7 @@ export default { }, "game_server_nodes_stream_cursor_input": { "initial_value": [ - 864 + 1105 ], "ordering": [ 216 @@ -13275,10 +17565,10 @@ export default { 34 ], "cpu_frequency_info": [ - 946 + 1187 ], "cpu_governor_info": [ - 946 + 1187 ], "cpu_sockets": [ 34 @@ -13287,10 +17577,10 @@ export default { 34 ], "cs2_launch_options": [ - 946 + 1187 ], "cs2_video_settings": [ - 946 + 1187 ], "csgo_build_id": [ 34 @@ -13317,7 +17607,7 @@ export default { 3 ], "gpu_info": [ - 946 + 1187 ], "gpu_rendering_enabled": [ 3 @@ -13332,13 +17622,13 @@ export default { 63 ], "lan_ip": [ - 942 + 1183 ], "node_ip": [ - 942 + 1183 ], "offline_at": [ - 2922 + 3190 ], "pin_build_id": [ 34 @@ -13347,13 +17637,13 @@ export default { 63 ], "public_ip": [ - 942 + 1183 ], "region": [ 63 ], "shader_bake_progress": [ - 1734 + 2002 ], "shader_bake_progress_stage": [ 63 @@ -13362,13 +17652,13 @@ export default { 63 ], "shader_bake_status_history": [ - 946 + 1187 ], "start_port_range": [ 34 ], "status": [ - 310 + 551 ], "supports_cpu_pinning": [ 3 @@ -13421,7 +17711,7 @@ export default { 34 ], "shader_bake_progress": [ - 1734 + 2002 ], "start_port_range": [ 34 @@ -13435,40 +17725,40 @@ export default { }, "game_server_nodes_sum_order_by": { "build_id": [ - 1736 + 2004 ], "cpu_cores_per_socket": [ - 1736 + 2004 ], "cpu_sockets": [ - 1736 + 2004 ], "cpu_threads_per_core": [ - 1736 + 2004 ], "csgo_build_id": [ - 1736 + 2004 ], "demo_network_limiter": [ - 1736 + 2004 ], "disk_available_gb": [ - 1736 + 2004 ], "disk_used_percent": [ - 1736 + 2004 ], "end_port_range": [ - 1736 + 2004 ], "pin_build_id": [ - 1736 + 2004 ], "shader_bake_progress": [ - 1736 + 2004 ], "start_port_range": [ - 1736 + 2004 ], "__typename": [ 63 @@ -13477,28 +17767,28 @@ export default { "game_server_nodes_update_column": {}, "game_server_nodes_updates": { "_append": [ - 832 + 1073 ], "_delete_at_path": [ - 838 + 1079 ], "_delete_elem": [ - 839 + 1080 ], "_delete_key": [ - 840 + 1081 ], "_inc": [ - 841 + 1082 ], "_prepend": [ - 852 + 1093 ], "_set": [ - 856 + 1097 ], "where": [ - 836 + 1077 ], "__typename": [ 63 @@ -13553,40 +17843,40 @@ export default { }, "game_server_nodes_var_pop_order_by": { "build_id": [ - 1736 + 2004 ], "cpu_cores_per_socket": [ - 1736 + 2004 ], "cpu_sockets": [ - 1736 + 2004 ], "cpu_threads_per_core": [ - 1736 + 2004 ], "csgo_build_id": [ - 1736 + 2004 ], "demo_network_limiter": [ - 1736 + 2004 ], "disk_available_gb": [ - 1736 + 2004 ], "disk_used_percent": [ - 1736 + 2004 ], "end_port_range": [ - 1736 + 2004 ], "pin_build_id": [ - 1736 + 2004 ], "shader_bake_progress": [ - 1736 + 2004 ], "start_port_range": [ - 1736 + 2004 ], "__typename": [ 63 @@ -13641,40 +17931,40 @@ export default { }, "game_server_nodes_var_samp_order_by": { "build_id": [ - 1736 + 2004 ], "cpu_cores_per_socket": [ - 1736 + 2004 ], "cpu_sockets": [ - 1736 + 2004 ], "cpu_threads_per_core": [ - 1736 + 2004 ], "csgo_build_id": [ - 1736 + 2004 ], "demo_network_limiter": [ - 1736 + 2004 ], "disk_available_gb": [ - 1736 + 2004 ], "disk_used_percent": [ - 1736 + 2004 ], "end_port_range": [ - 1736 + 2004 ], "pin_build_id": [ - 1736 + 2004 ], "shader_bake_progress": [ - 1736 + 2004 ], "start_port_range": [ - 1736 + 2004 ], "__typename": [ 63 @@ -13729,40 +18019,40 @@ export default { }, "game_server_nodes_variance_order_by": { "build_id": [ - 1736 + 2004 ], "cpu_cores_per_socket": [ - 1736 + 2004 ], "cpu_sockets": [ - 1736 + 2004 ], "cpu_threads_per_core": [ - 1736 + 2004 ], "csgo_build_id": [ - 1736 + 2004 ], "demo_network_limiter": [ - 1736 + 2004 ], "disk_available_gb": [ - 1736 + 2004 ], "disk_used_percent": [ - 1736 + 2004 ], "end_port_range": [ - 1736 + 2004 ], "pin_build_id": [ - 1736 + 2004 ], "shader_bake_progress": [ - 1736 + 2004 ], "start_port_range": [ - 1736 + 2004 ], "__typename": [ 63 @@ -13782,7 +18072,7 @@ export default { 63 ], "downloads": [ - 946, + 1187, { "path": [ 63 @@ -13790,7 +18080,7 @@ export default { } ], "updated_at": [ - 2922 + 3190 ], "version": [ 63 @@ -13801,10 +18091,10 @@ export default { }, "game_versions_aggregate": { "aggregate": [ - 877 + 1118 ], "nodes": [ - 875 + 1116 ], "__typename": [ 63 @@ -13812,13 +18102,13 @@ export default { }, "game_versions_aggregate_fields": { "avg": [ - 879 + 1120 ], "count": [ 34, { "columns": [ - 895, + 1136, "[game_versions_select_column!]" ], "distinct": [ @@ -13827,31 +18117,31 @@ export default { } ], "max": [ - 887 + 1128 ], "min": [ - 888 + 1129 ], "stddev": [ - 897 + 1138 ], "stddev_pop": [ - 898 + 1139 ], "stddev_samp": [ - 899 + 1140 ], "sum": [ - 902 + 1143 ], "var_pop": [ - 905 + 1146 ], "var_samp": [ - 906 + 1147 ], "variance": [ - 907 + 1148 ], "__typename": [ 63 @@ -13859,7 +18149,7 @@ export default { }, "game_versions_append_input": { "downloads": [ - 946 + 1187 ], "__typename": [ 63 @@ -13875,13 +18165,13 @@ export default { }, "game_versions_bool_exp": { "_and": [ - 880 + 1121 ], "_not": [ - 880 + 1121 ], "_or": [ - 880 + 1121 ], "build_id": [ 35 @@ -13896,10 +18186,10 @@ export default { 65 ], "downloads": [ - 948 + 1189 ], "updated_at": [ - 2923 + 3191 ], "version": [ 65 @@ -13955,10 +18245,10 @@ export default { 63 ], "downloads": [ - 946 + 1187 ], "updated_at": [ - 2922 + 3190 ], "version": [ 63 @@ -13975,7 +18265,7 @@ export default { 63 ], "updated_at": [ - 2922 + 3190 ], "version": [ 63 @@ -13992,7 +18282,7 @@ export default { 63 ], "updated_at": [ - 2922 + 3190 ], "version": [ 63 @@ -14006,7 +18296,7 @@ export default { 34 ], "returning": [ - 875 + 1116 ], "__typename": [ 63 @@ -14014,10 +18304,10 @@ export default { }, "game_versions_obj_rel_insert_input": { "data": [ - 886 + 1127 ], "on_conflict": [ - 891 + 1132 ], "__typename": [ 63 @@ -14025,13 +18315,13 @@ export default { }, "game_versions_on_conflict": { "constraint": [ - 881 + 1122 ], "update_columns": [ - 903 + 1144 ], "where": [ - 880 + 1121 ], "__typename": [ 63 @@ -14039,25 +18329,25 @@ export default { }, "game_versions_order_by": { "build_id": [ - 1736 + 2004 ], "current": [ - 1736 + 2004 ], "cvars": [ - 1736 + 2004 ], "description": [ - 1736 + 2004 ], "downloads": [ - 1736 + 2004 ], "updated_at": [ - 1736 + 2004 ], "version": [ - 1736 + 2004 ], "__typename": [ 63 @@ -14073,7 +18363,7 @@ export default { }, "game_versions_prepend_input": { "downloads": [ - 946 + 1187 ], "__typename": [ 63 @@ -14094,10 +18384,10 @@ export default { 63 ], "downloads": [ - 946 + 1187 ], "updated_at": [ - 2922 + 3190 ], "version": [ 63 @@ -14132,7 +18422,7 @@ export default { }, "game_versions_stream_cursor_input": { "initial_value": [ - 901 + 1142 ], "ordering": [ 216 @@ -14155,10 +18445,10 @@ export default { 63 ], "downloads": [ - 946 + 1187 ], "updated_at": [ - 2922 + 3190 ], "version": [ 63 @@ -14178,28 +18468,28 @@ export default { "game_versions_update_column": {}, "game_versions_updates": { "_append": [ - 878 + 1119 ], "_delete_at_path": [ - 882 + 1123 ], "_delete_elem": [ - 883 + 1124 ], "_delete_key": [ - 884 + 1125 ], "_inc": [ - 885 + 1126 ], "_prepend": [ - 894 + 1135 ], "_set": [ - 896 + 1137 ], "where": [ - 880 + 1121 ], "__typename": [ 63 @@ -14237,13 +18527,13 @@ export default { 34 ], "game_version": [ - 875 + 1116 ], "id": [ - 3319 + 3587 ], "results": [ - 946, + 1187, { "path": [ 63 @@ -14254,7 +18544,7 @@ export default { 63 ], "validated_at": [ - 2922 + 3190 ], "__typename": [ 63 @@ -14262,10 +18552,10 @@ export default { }, "gamedata_signature_validations_aggregate": { "aggregate": [ - 910 + 1151 ], "nodes": [ - 908 + 1149 ], "__typename": [ 63 @@ -14273,13 +18563,13 @@ export default { }, "gamedata_signature_validations_aggregate_fields": { "avg": [ - 912 + 1153 ], "count": [ 34, { "columns": [ - 927, + 1168, "[gamedata_signature_validations_select_column!]" ], "distinct": [ @@ -14288,31 +18578,31 @@ export default { } ], "max": [ - 920 + 1161 ], "min": [ - 921 + 1162 ], "stddev": [ - 929 + 1170 ], "stddev_pop": [ - 930 + 1171 ], "stddev_samp": [ - 931 + 1172 ], "sum": [ - 934 + 1175 ], "var_pop": [ - 937 + 1178 ], "var_samp": [ - 938 + 1179 ], "variance": [ - 939 + 1180 ], "__typename": [ 63 @@ -14320,7 +18610,7 @@ export default { }, "gamedata_signature_validations_append_input": { "results": [ - 946 + 1187 ], "__typename": [ 63 @@ -14336,13 +18626,13 @@ export default { }, "gamedata_signature_validations_bool_exp": { "_and": [ - 913 + 1154 ], "_not": [ - 913 + 1154 ], "_or": [ - 913 + 1154 ], "branch": [ 65 @@ -14351,19 +18641,19 @@ export default { 35 ], "game_version": [ - 880 + 1121 ], "id": [ - 3320 + 3588 ], "results": [ - 948 + 1189 ], "status": [ 65 ], "validated_at": [ - 2923 + 3191 ], "__typename": [ 63 @@ -14410,19 +18700,19 @@ export default { 34 ], "game_version": [ - 890 + 1131 ], "id": [ - 3319 + 3587 ], "results": [ - 946 + 1187 ], "status": [ 63 ], "validated_at": [ - 2922 + 3190 ], "__typename": [ 63 @@ -14436,13 +18726,13 @@ export default { 34 ], "id": [ - 3319 + 3587 ], "status": [ 63 ], "validated_at": [ - 2922 + 3190 ], "__typename": [ 63 @@ -14456,13 +18746,13 @@ export default { 34 ], "id": [ - 3319 + 3587 ], "status": [ 63 ], "validated_at": [ - 2922 + 3190 ], "__typename": [ 63 @@ -14473,7 +18763,7 @@ export default { 34 ], "returning": [ - 908 + 1149 ], "__typename": [ 63 @@ -14481,13 +18771,13 @@ export default { }, "gamedata_signature_validations_on_conflict": { "constraint": [ - 914 + 1155 ], "update_columns": [ - 935 + 1176 ], "where": [ - 913 + 1154 ], "__typename": [ 63 @@ -14495,25 +18785,25 @@ export default { }, "gamedata_signature_validations_order_by": { "branch": [ - 1736 + 2004 ], "build_id": [ - 1736 + 2004 ], "game_version": [ - 892 + 1133 ], "id": [ - 1736 + 2004 ], "results": [ - 1736 + 2004 ], "status": [ - 1736 + 2004 ], "validated_at": [ - 1736 + 2004 ], "__typename": [ 63 @@ -14521,7 +18811,7 @@ export default { }, "gamedata_signature_validations_pk_columns_input": { "id": [ - 3319 + 3587 ], "__typename": [ 63 @@ -14529,7 +18819,7 @@ export default { }, "gamedata_signature_validations_prepend_input": { "results": [ - 946 + 1187 ], "__typename": [ 63 @@ -14544,16 +18834,16 @@ export default { 34 ], "id": [ - 3319 + 3587 ], "results": [ - 946 + 1187 ], "status": [ 63 ], "validated_at": [ - 2922 + 3190 ], "__typename": [ 63 @@ -14585,7 +18875,7 @@ export default { }, "gamedata_signature_validations_stream_cursor_input": { "initial_value": [ - 933 + 1174 ], "ordering": [ 216 @@ -14602,16 +18892,16 @@ export default { 34 ], "id": [ - 3319 + 3587 ], "results": [ - 946 + 1187 ], "status": [ 63 ], "validated_at": [ - 2922 + 3190 ], "__typename": [ 63 @@ -14628,28 +18918,28 @@ export default { "gamedata_signature_validations_update_column": {}, "gamedata_signature_validations_updates": { "_append": [ - 911 + 1152 ], "_delete_at_path": [ - 915 + 1156 ], "_delete_elem": [ - 916 + 1157 ], "_delete_key": [ - 917 + 1158 ], "_inc": [ - 918 + 1159 ], "_prepend": [ - 926 + 1167 ], "_set": [ - 928 + 1169 ], "where": [ - 913 + 1154 ], "__typename": [ 63 @@ -14722,31 +19012,31 @@ export default { "inet": {}, "inet_comparison_exp": { "_eq": [ - 942 + 1183 ], "_gt": [ - 942 + 1183 ], "_gte": [ - 942 + 1183 ], "_in": [ - 942 + 1183 ], "_is_null": [ 3 ], "_lt": [ - 942 + 1183 ], "_lte": [ - 942 + 1183 ], "_neq": [ - 942 + 1183 ], "_nin": [ - 942 + 1183 ], "__typename": [ 63 @@ -14755,31 +19045,31 @@ export default { "json": {}, "json_comparison_exp": { "_eq": [ - 944 + 1185 ], "_gt": [ - 944 + 1185 ], "_gte": [ - 944 + 1185 ], "_in": [ - 944 + 1185 ], "_is_null": [ 3 ], "_lt": [ - 944 + 1185 ], "_lte": [ - 944 + 1185 ], "_neq": [ - 944 + 1185 ], "_nin": [ - 944 + 1185 ], "__typename": [ 63 @@ -14796,22 +19086,22 @@ export default { }, "jsonb_comparison_exp": { "_cast": [ - 947 + 1188 ], "_contained_in": [ - 946 + 1187 ], "_contains": [ - 946 + 1187 ], "_eq": [ - 946 + 1187 ], "_gt": [ - 946 + 1187 ], "_gte": [ - 946 + 1187 ], "_has_key": [ 63 @@ -14823,22 +19113,22 @@ export default { 63 ], "_in": [ - 946 + 1187 ], "_is_null": [ 3 ], "_lt": [ - 946 + 1187 ], "_lte": [ - 946 + 1187 ], "_neq": [ - 946 + 1187 ], "_nin": [ - 946 + 1187 ], "__typename": [ 63 @@ -14861,13 +19151,13 @@ export default { 63 ], "secondary_value": [ - 795 + 1036 ], "tertiary_value": [ - 795 + 1036 ], "value": [ - 795 + 1036 ], "__typename": [ 63 @@ -14875,10 +19165,10 @@ export default { }, "leaderboard_entries_aggregate": { "aggregate": [ - 951 + 1192 ], "nodes": [ - 949 + 1190 ], "__typename": [ 63 @@ -14886,13 +19176,13 @@ export default { }, "leaderboard_entries_aggregate_fields": { "avg": [ - 952 + 1193 ], "count": [ 34, { "columns": [ - 960, + 1201, "[leaderboard_entries_select_column!]" ], "distinct": [ @@ -14901,31 +19191,31 @@ export default { } ], "max": [ - 956 + 1197 ], "min": [ - 957 + 1198 ], "stddev": [ - 962 + 1203 ], "stddev_pop": [ - 963 + 1204 ], "stddev_samp": [ - 964 + 1205 ], "sum": [ - 967 + 1208 ], "var_pop": [ - 969 + 1210 ], "var_samp": [ - 970 + 1211 ], "variance": [ - 971 + 1212 ], "__typename": [ 63 @@ -14950,13 +19240,13 @@ export default { }, "leaderboard_entries_bool_exp": { "_and": [ - 953 + 1194 ], "_not": [ - 953 + 1194 ], "_or": [ - 953 + 1194 ], "matches_played": [ 35 @@ -14974,13 +19264,13 @@ export default { 65 ], "secondary_value": [ - 796 + 1037 ], "tertiary_value": [ - 796 + 1037 ], "value": [ - 796 + 1037 ], "__typename": [ 63 @@ -14991,13 +19281,13 @@ export default { 34 ], "secondary_value": [ - 795 + 1036 ], "tertiary_value": [ - 795 + 1036 ], "value": [ - 795 + 1036 ], "__typename": [ 63 @@ -15020,13 +19310,13 @@ export default { 63 ], "secondary_value": [ - 795 + 1036 ], "tertiary_value": [ - 795 + 1036 ], "value": [ - 795 + 1036 ], "__typename": [ 63 @@ -15049,13 +19339,13 @@ export default { 63 ], "secondary_value": [ - 795 + 1036 ], "tertiary_value": [ - 795 + 1036 ], "value": [ - 795 + 1036 ], "__typename": [ 63 @@ -15078,13 +19368,13 @@ export default { 63 ], "secondary_value": [ - 795 + 1036 ], "tertiary_value": [ - 795 + 1036 ], "value": [ - 795 + 1036 ], "__typename": [ 63 @@ -15095,7 +19385,7 @@ export default { 34 ], "returning": [ - 949 + 1190 ], "__typename": [ 63 @@ -15103,28 +19393,28 @@ export default { }, "leaderboard_entries_order_by": { "matches_played": [ - 1736 + 2004 ], "player_avatar_url": [ - 1736 + 2004 ], "player_country": [ - 1736 + 2004 ], "player_name": [ - 1736 + 2004 ], "player_steam_id": [ - 1736 + 2004 ], "secondary_value": [ - 1736 + 2004 ], "tertiary_value": [ - 1736 + 2004 ], "value": [ - 1736 + 2004 ], "__typename": [ 63 @@ -15148,13 +19438,13 @@ export default { 63 ], "secondary_value": [ - 795 + 1036 ], "tertiary_value": [ - 795 + 1036 ], "value": [ - 795 + 1036 ], "__typename": [ 63 @@ -15213,7 +19503,7 @@ export default { }, "leaderboard_entries_stream_cursor_input": { "initial_value": [ - 966 + 1207 ], "ordering": [ 216 @@ -15239,13 +19529,13 @@ export default { 63 ], "secondary_value": [ - 795 + 1036 ], "tertiary_value": [ - 795 + 1036 ], "value": [ - 795 + 1036 ], "__typename": [ 63 @@ -15256,13 +19546,13 @@ export default { 34 ], "secondary_value": [ - 795 + 1036 ], "tertiary_value": [ - 795 + 1036 ], "value": [ - 795 + 1036 ], "__typename": [ 63 @@ -15270,13 +19560,13 @@ export default { }, "leaderboard_entries_updates": { "_inc": [ - 954 + 1195 ], "_set": [ - 961 + 1202 ], "where": [ - 953 + 1194 ], "__typename": [ 63 @@ -15335,22 +19625,22 @@ export default { }, "lobbies": { "access": [ - 331 + 572 ], "created_at": [ - 2922 + 3190 ], "e_lobby_access": [ - 326 + 567 ], "id": [ - 3319 + 3587 ], "players": [ - 991, + 1232, { "distinct_on": [ - 1014, + 1255, "[lobby_players_select_column!]" ], "limit": [ @@ -15360,19 +19650,19 @@ export default { 34 ], "order_by": [ - 1012, + 1253, "[lobby_players_order_by!]" ], "where": [ - 1002 + 1243 ] } ], "players_aggregate": [ - 992, + 1233, { "distinct_on": [ - 1014, + 1255, "[lobby_players_select_column!]" ], "limit": [ @@ -15382,11 +19672,11 @@ export default { 34 ], "order_by": [ - 1012, + 1253, "[lobby_players_order_by!]" ], "where": [ - 1002 + 1243 ] } ], @@ -15396,10 +19686,10 @@ export default { }, "lobbies_aggregate": { "aggregate": [ - 974 + 1215 ], "nodes": [ - 972 + 1213 ], "__typename": [ 63 @@ -15410,7 +19700,7 @@ export default { 34, { "columns": [ - 985, + 1226, "[lobbies_select_column!]" ], "distinct": [ @@ -15419,10 +19709,10 @@ export default { } ], "max": [ - 978 + 1219 ], "min": [ - 979 + 1220 ], "__typename": [ 63 @@ -15430,31 +19720,31 @@ export default { }, "lobbies_bool_exp": { "_and": [ - 975 + 1216 ], "_not": [ - 975 + 1216 ], "_or": [ - 975 + 1216 ], "access": [ - 332 + 573 ], "created_at": [ - 2923 + 3191 ], "e_lobby_access": [ - 329 + 570 ], "id": [ - 3320 + 3588 ], "players": [ - 1002 + 1243 ], "players_aggregate": [ - 993 + 1234 ], "__typename": [ 63 @@ -15463,19 +19753,19 @@ export default { "lobbies_constraint": {}, "lobbies_insert_input": { "access": [ - 331 + 572 ], "created_at": [ - 2922 + 3190 ], "e_lobby_access": [ - 337 + 578 ], "id": [ - 3319 + 3587 ], "players": [ - 999 + 1240 ], "__typename": [ 63 @@ -15483,10 +19773,10 @@ export default { }, "lobbies_max_fields": { "created_at": [ - 2922 + 3190 ], "id": [ - 3319 + 3587 ], "__typename": [ 63 @@ -15494,10 +19784,10 @@ export default { }, "lobbies_min_fields": { "created_at": [ - 2922 + 3190 ], "id": [ - 3319 + 3587 ], "__typename": [ 63 @@ -15508,7 +19798,7 @@ export default { 34 ], "returning": [ - 972 + 1213 ], "__typename": [ 63 @@ -15516,10 +19806,10 @@ export default { }, "lobbies_obj_rel_insert_input": { "data": [ - 977 + 1218 ], "on_conflict": [ - 982 + 1223 ], "__typename": [ 63 @@ -15527,13 +19817,13 @@ export default { }, "lobbies_on_conflict": { "constraint": [ - 976 + 1217 ], "update_columns": [ - 989 + 1230 ], "where": [ - 975 + 1216 ], "__typename": [ 63 @@ -15541,19 +19831,19 @@ export default { }, "lobbies_order_by": { "access": [ - 1736 + 2004 ], "created_at": [ - 1736 + 2004 ], "e_lobby_access": [ - 339 + 580 ], "id": [ - 1736 + 2004 ], "players_aggregate": [ - 998 + 1239 ], "__typename": [ 63 @@ -15561,7 +19851,7 @@ export default { }, "lobbies_pk_columns_input": { "id": [ - 3319 + 3587 ], "__typename": [ 63 @@ -15570,13 +19860,13 @@ export default { "lobbies_select_column": {}, "lobbies_set_input": { "access": [ - 331 + 572 ], "created_at": [ - 2922 + 3190 ], "id": [ - 3319 + 3587 ], "__typename": [ 63 @@ -15584,7 +19874,7 @@ export default { }, "lobbies_stream_cursor_input": { "initial_value": [ - 988 + 1229 ], "ordering": [ 216 @@ -15595,13 +19885,13 @@ export default { }, "lobbies_stream_cursor_value_input": { "access": [ - 331 + 572 ], "created_at": [ - 2922 + 3190 ], "id": [ - 3319 + 3587 ], "__typename": [ 63 @@ -15610,10 +19900,10 @@ export default { "lobbies_update_column": {}, "lobbies_updates": { "_set": [ - 986 + 1227 ], "where": [ - 975 + 1216 ], "__typename": [ 63 @@ -15627,16 +19917,16 @@ export default { 162 ], "lobby": [ - 972 + 1213 ], "lobby_id": [ - 3319 + 3587 ], "player": [ - 2603 + 2871 ], "status": [ - 352 + 593 ], "steam_id": [ 162 @@ -15647,10 +19937,10 @@ export default { }, "lobby_players_aggregate": { "aggregate": [ - 997 + 1238 ], "nodes": [ - 991 + 1232 ], "__typename": [ 63 @@ -15658,13 +19948,13 @@ export default { }, "lobby_players_aggregate_bool_exp": { "bool_and": [ - 994 + 1235 ], "bool_or": [ - 995 + 1236 ], "count": [ - 996 + 1237 ], "__typename": [ 63 @@ -15672,13 +19962,13 @@ export default { }, "lobby_players_aggregate_bool_exp_bool_and": { "arguments": [ - 1015 + 1256 ], "distinct": [ 3 ], "filter": [ - 1002 + 1243 ], "predicate": [ 4 @@ -15689,13 +19979,13 @@ export default { }, "lobby_players_aggregate_bool_exp_bool_or": { "arguments": [ - 1016 + 1257 ], "distinct": [ 3 ], "filter": [ - 1002 + 1243 ], "predicate": [ 4 @@ -15706,13 +19996,13 @@ export default { }, "lobby_players_aggregate_bool_exp_count": { "arguments": [ - 1014 + 1255 ], "distinct": [ 3 ], "filter": [ - 1002 + 1243 ], "predicate": [ 35 @@ -15723,13 +20013,13 @@ export default { }, "lobby_players_aggregate_fields": { "avg": [ - 1000 + 1241 ], "count": [ 34, { "columns": [ - 1014, + 1255, "[lobby_players_select_column!]" ], "distinct": [ @@ -15738,31 +20028,31 @@ export default { } ], "max": [ - 1006 + 1247 ], "min": [ - 1008 + 1249 ], "stddev": [ - 1018 + 1259 ], "stddev_pop": [ - 1020 + 1261 ], "stddev_samp": [ - 1022 + 1263 ], "sum": [ - 1026 + 1267 ], "var_pop": [ - 1030 + 1271 ], "var_samp": [ - 1032 + 1273 ], "variance": [ - 1034 + 1275 ], "__typename": [ 63 @@ -15770,37 +20060,37 @@ export default { }, "lobby_players_aggregate_order_by": { "avg": [ - 1001 + 1242 ], "count": [ - 1736 + 2004 ], "max": [ - 1007 + 1248 ], "min": [ - 1009 + 1250 ], "stddev": [ - 1019 + 1260 ], "stddev_pop": [ - 1021 + 1262 ], "stddev_samp": [ - 1023 + 1264 ], "sum": [ - 1027 + 1268 ], "var_pop": [ - 1031 + 1272 ], "var_samp": [ - 1033 + 1274 ], "variance": [ - 1035 + 1276 ], "__typename": [ 63 @@ -15808,10 +20098,10 @@ export default { }, "lobby_players_arr_rel_insert_input": { "data": [ - 1005 + 1246 ], "on_conflict": [ - 1011 + 1252 ], "__typename": [ 63 @@ -15830,10 +20120,10 @@ export default { }, "lobby_players_avg_order_by": { "invited_by_steam_id": [ - 1736 + 2004 ], "steam_id": [ - 1736 + 2004 ], "__typename": [ 63 @@ -15841,13 +20131,13 @@ export default { }, "lobby_players_bool_exp": { "_and": [ - 1002 + 1243 ], "_not": [ - 1002 + 1243 ], "_or": [ - 1002 + 1243 ], "captain": [ 4 @@ -15856,16 +20146,16 @@ export default { 163 ], "lobby": [ - 975 + 1216 ], "lobby_id": [ - 3320 + 3588 ], "player": [ - 2607 + 2875 ], "status": [ - 353 + 594 ], "steam_id": [ 163 @@ -15894,16 +20184,16 @@ export default { 162 ], "lobby": [ - 981 + 1222 ], "lobby_id": [ - 3319 + 3587 ], "player": [ - 2614 + 2882 ], "status": [ - 352 + 593 ], "steam_id": [ 162 @@ -15917,7 +20207,7 @@ export default { 162 ], "lobby_id": [ - 3319 + 3587 ], "steam_id": [ 162 @@ -15928,13 +20218,13 @@ export default { }, "lobby_players_max_order_by": { "invited_by_steam_id": [ - 1736 + 2004 ], "lobby_id": [ - 1736 + 2004 ], "steam_id": [ - 1736 + 2004 ], "__typename": [ 63 @@ -15945,7 +20235,7 @@ export default { 162 ], "lobby_id": [ - 3319 + 3587 ], "steam_id": [ 162 @@ -15956,13 +20246,13 @@ export default { }, "lobby_players_min_order_by": { "invited_by_steam_id": [ - 1736 + 2004 ], "lobby_id": [ - 1736 + 2004 ], "steam_id": [ - 1736 + 2004 ], "__typename": [ 63 @@ -15973,7 +20263,7 @@ export default { 34 ], "returning": [ - 991 + 1232 ], "__typename": [ 63 @@ -15981,13 +20271,13 @@ export default { }, "lobby_players_on_conflict": { "constraint": [ - 1003 + 1244 ], "update_columns": [ - 1028 + 1269 ], "where": [ - 1002 + 1243 ], "__typename": [ 63 @@ -15995,25 +20285,25 @@ export default { }, "lobby_players_order_by": { "captain": [ - 1736 + 2004 ], "invited_by_steam_id": [ - 1736 + 2004 ], "lobby": [ - 983 + 1224 ], "lobby_id": [ - 1736 + 2004 ], "player": [ - 2616 + 2884 ], "status": [ - 1736 + 2004 ], "steam_id": [ - 1736 + 2004 ], "__typename": [ 63 @@ -16021,7 +20311,7 @@ export default { }, "lobby_players_pk_columns_input": { "lobby_id": [ - 3319 + 3587 ], "steam_id": [ 162 @@ -16041,10 +20331,10 @@ export default { 162 ], "lobby_id": [ - 3319 + 3587 ], "status": [ - 352 + 593 ], "steam_id": [ 162 @@ -16066,10 +20356,10 @@ export default { }, "lobby_players_stddev_order_by": { "invited_by_steam_id": [ - 1736 + 2004 ], "steam_id": [ - 1736 + 2004 ], "__typename": [ 63 @@ -16088,10 +20378,10 @@ export default { }, "lobby_players_stddev_pop_order_by": { "invited_by_steam_id": [ - 1736 + 2004 ], "steam_id": [ - 1736 + 2004 ], "__typename": [ 63 @@ -16110,10 +20400,10 @@ export default { }, "lobby_players_stddev_samp_order_by": { "invited_by_steam_id": [ - 1736 + 2004 ], "steam_id": [ - 1736 + 2004 ], "__typename": [ 63 @@ -16121,7 +20411,7 @@ export default { }, "lobby_players_stream_cursor_input": { "initial_value": [ - 1025 + 1266 ], "ordering": [ 216 @@ -16138,10 +20428,10 @@ export default { 162 ], "lobby_id": [ - 3319 + 3587 ], "status": [ - 352 + 593 ], "steam_id": [ 162 @@ -16163,10 +20453,10 @@ export default { }, "lobby_players_sum_order_by": { "invited_by_steam_id": [ - 1736 + 2004 ], "steam_id": [ - 1736 + 2004 ], "__typename": [ 63 @@ -16175,13 +20465,13 @@ export default { "lobby_players_update_column": {}, "lobby_players_updates": { "_inc": [ - 1004 + 1245 ], "_set": [ - 1017 + 1258 ], "where": [ - 1002 + 1243 ], "__typename": [ 63 @@ -16200,10 +20490,10 @@ export default { }, "lobby_players_var_pop_order_by": { "invited_by_steam_id": [ - 1736 + 2004 ], "steam_id": [ - 1736 + 2004 ], "__typename": [ 63 @@ -16222,10 +20512,10 @@ export default { }, "lobby_players_var_samp_order_by": { "invited_by_steam_id": [ - 1736 + 2004 ], "steam_id": [ - 1736 + 2004 ], "__typename": [ 63 @@ -16244,10 +20534,10 @@ export default { }, "lobby_players_variance_order_by": { "invited_by_steam_id": [ - 1736 + 2004 ], "steam_id": [ - 1736 + 2004 ], "__typename": [ 63 @@ -16255,19 +20545,19 @@ export default { }, "map_pools": { "e_type": [ - 367 + 608 ], "enabled": [ 3 ], "id": [ - 3319 + 3587 ], "maps": [ - 3825, + 4093, { "distinct_on": [ - 3842, + 4110, "[v_pool_maps_select_column!]" ], "limit": [ @@ -16277,19 +20567,19 @@ export default { 34 ], "order_by": [ - 3841, + 4109, "[v_pool_maps_order_by!]" ], "where": [ - 3834 + 4102 ] } ], "maps_aggregate": [ - 3826, + 4094, { "distinct_on": [ - 3842, + 4110, "[v_pool_maps_select_column!]" ], "limit": [ @@ -16299,11 +20589,11 @@ export default { 34 ], "order_by": [ - 3841, + 4109, "[v_pool_maps_order_by!]" ], "where": [ - 3834 + 4102 ] } ], @@ -16311,7 +20601,7 @@ export default { 3 ], "type": [ - 372 + 613 ], "__typename": [ 63 @@ -16319,10 +20609,10 @@ export default { }, "map_pools_aggregate": { "aggregate": [ - 1038 + 1279 ], "nodes": [ - 1036 + 1277 ], "__typename": [ 63 @@ -16333,7 +20623,7 @@ export default { 34, { "columns": [ - 1049, + 1290, "[map_pools_select_column!]" ], "distinct": [ @@ -16342,10 +20632,10 @@ export default { } ], "max": [ - 1042 + 1283 ], "min": [ - 1043 + 1284 ], "__typename": [ 63 @@ -16353,34 +20643,34 @@ export default { }, "map_pools_bool_exp": { "_and": [ - 1039 + 1280 ], "_not": [ - 1039 + 1280 ], "_or": [ - 1039 + 1280 ], "e_type": [ - 370 + 611 ], "enabled": [ 4 ], "id": [ - 3320 + 3588 ], "maps": [ - 3834 + 4102 ], "maps_aggregate": [ - 3827 + 4095 ], "seed": [ 4 ], "type": [ - 373 + 614 ], "__typename": [ 63 @@ -16389,22 +20679,22 @@ export default { "map_pools_constraint": {}, "map_pools_insert_input": { "e_type": [ - 378 + 619 ], "enabled": [ 3 ], "id": [ - 3319 + 3587 ], "maps": [ - 3833 + 4101 ], "seed": [ 3 ], "type": [ - 372 + 613 ], "__typename": [ 63 @@ -16412,7 +20702,7 @@ export default { }, "map_pools_max_fields": { "id": [ - 3319 + 3587 ], "__typename": [ 63 @@ -16420,7 +20710,7 @@ export default { }, "map_pools_min_fields": { "id": [ - 3319 + 3587 ], "__typename": [ 63 @@ -16431,7 +20721,7 @@ export default { 34 ], "returning": [ - 1036 + 1277 ], "__typename": [ 63 @@ -16439,10 +20729,10 @@ export default { }, "map_pools_obj_rel_insert_input": { "data": [ - 1041 + 1282 ], "on_conflict": [ - 1046 + 1287 ], "__typename": [ 63 @@ -16450,13 +20740,13 @@ export default { }, "map_pools_on_conflict": { "constraint": [ - 1040 + 1281 ], "update_columns": [ - 1053 + 1294 ], "where": [ - 1039 + 1280 ], "__typename": [ 63 @@ -16464,22 +20754,22 @@ export default { }, "map_pools_order_by": { "e_type": [ - 380 + 621 ], "enabled": [ - 1736 + 2004 ], "id": [ - 1736 + 2004 ], "maps_aggregate": [ - 3832 + 4100 ], "seed": [ - 1736 + 2004 ], "type": [ - 1736 + 2004 ], "__typename": [ 63 @@ -16487,7 +20777,7 @@ export default { }, "map_pools_pk_columns_input": { "id": [ - 3319 + 3587 ], "__typename": [ 63 @@ -16499,13 +20789,13 @@ export default { 3 ], "id": [ - 3319 + 3587 ], "seed": [ 3 ], "type": [ - 372 + 613 ], "__typename": [ 63 @@ -16513,7 +20803,7 @@ export default { }, "map_pools_stream_cursor_input": { "initial_value": [ - 1052 + 1293 ], "ordering": [ 216 @@ -16527,13 +20817,13 @@ export default { 3 ], "id": [ - 3319 + 3587 ], "seed": [ 3 ], "type": [ - 372 + 613 ], "__typename": [ 63 @@ -16542,10 +20832,10 @@ export default { "map_pools_update_column": {}, "map_pools_updates": { "_set": [ - 1050 + 1291 ], "where": [ - 1039 + 1280 ], "__typename": [ 63 @@ -16556,22 +20846,22 @@ export default { 3 ], "e_match_type": [ - 470 + 711 ], "enabled": [ 3 ], "id": [ - 3319 + 3587 ], "label": [ 63 ], "match_maps": [ - 1416, + 1657, { "distinct_on": [ - 1438, + 1679, "[match_maps_select_column!]" ], "limit": [ @@ -16581,19 +20871,19 @@ export default { 34 ], "order_by": [ - 1436, + 1677, "[match_maps_order_by!]" ], "where": [ - 1425 + 1666 ] } ], "match_maps_aggregate": [ - 1417, + 1658, { "distinct_on": [ - 1438, + 1679, "[match_maps_select_column!]" ], "limit": [ @@ -16603,19 +20893,19 @@ export default { 34 ], "order_by": [ - 1436, + 1677, "[match_maps_order_by!]" ], "where": [ - 1425 + 1666 ] } ], "match_veto_picks": [ - 1392, + 1633, { "distinct_on": [ - 1410, + 1651, "[match_map_veto_picks_select_column!]" ], "limit": [ @@ -16625,19 +20915,19 @@ export default { 34 ], "order_by": [ - 1408, + 1649, "[match_map_veto_picks_order_by!]" ], "where": [ - 1399 + 1640 ] } ], "match_veto_picks_aggregate": [ - 1393, + 1634, { "distinct_on": [ - 1410, + 1651, "[match_map_veto_picks_select_column!]" ], "limit": [ @@ -16647,11 +20937,11 @@ export default { 34 ], "order_by": [ - 1408, + 1649, "[match_map_veto_picks_order_by!]" ], "where": [ - 1399 + 1640 ] } ], @@ -16665,7 +20955,7 @@ export default { 63 ], "type": [ - 475 + 716 ], "workshop_map_id": [ 63 @@ -16676,10 +20966,10 @@ export default { }, "maps_aggregate": { "aggregate": [ - 1061 + 1302 ], "nodes": [ - 1055 + 1296 ], "__typename": [ 63 @@ -16687,13 +20977,13 @@ export default { }, "maps_aggregate_bool_exp": { "bool_and": [ - 1058 + 1299 ], "bool_or": [ - 1059 + 1300 ], "count": [ - 1060 + 1301 ], "__typename": [ 63 @@ -16701,13 +20991,13 @@ export default { }, "maps_aggregate_bool_exp_bool_and": { "arguments": [ - 1077 + 1318 ], "distinct": [ 3 ], "filter": [ - 1064 + 1305 ], "predicate": [ 4 @@ -16718,13 +21008,13 @@ export default { }, "maps_aggregate_bool_exp_bool_or": { "arguments": [ - 1078 + 1319 ], "distinct": [ 3 ], "filter": [ - 1064 + 1305 ], "predicate": [ 4 @@ -16735,13 +21025,13 @@ export default { }, "maps_aggregate_bool_exp_count": { "arguments": [ - 1076 + 1317 ], "distinct": [ 3 ], "filter": [ - 1064 + 1305 ], "predicate": [ 35 @@ -16755,7 +21045,7 @@ export default { 34, { "columns": [ - 1076, + 1317, "[maps_select_column!]" ], "distinct": [ @@ -16764,10 +21054,10 @@ export default { } ], "max": [ - 1067 + 1308 ], "min": [ - 1069 + 1310 ], "__typename": [ 63 @@ -16775,13 +21065,13 @@ export default { }, "maps_aggregate_order_by": { "count": [ - 1736 + 2004 ], "max": [ - 1068 + 1309 ], "min": [ - 1070 + 1311 ], "__typename": [ 63 @@ -16789,10 +21079,10 @@ export default { }, "maps_arr_rel_insert_input": { "data": [ - 1066 + 1307 ], "on_conflict": [ - 1073 + 1314 ], "__typename": [ 63 @@ -16800,40 +21090,40 @@ export default { }, "maps_bool_exp": { "_and": [ - 1064 + 1305 ], "_not": [ - 1064 + 1305 ], "_or": [ - 1064 + 1305 ], "active_pool": [ 4 ], "e_match_type": [ - 473 + 714 ], "enabled": [ 4 ], "id": [ - 3320 + 3588 ], "label": [ 65 ], "match_maps": [ - 1425 + 1666 ], "match_maps_aggregate": [ - 1418 + 1659 ], "match_veto_picks": [ - 1399 + 1640 ], "match_veto_picks_aggregate": [ - 1394 + 1635 ], "name": [ 65 @@ -16845,7 +21135,7 @@ export default { 65 ], "type": [ - 476 + 717 ], "workshop_map_id": [ 65 @@ -16860,22 +21150,22 @@ export default { 3 ], "e_match_type": [ - 481 + 722 ], "enabled": [ 3 ], "id": [ - 3319 + 3587 ], "label": [ 63 ], "match_maps": [ - 1422 + 1663 ], "match_veto_picks": [ - 1398 + 1639 ], "name": [ 63 @@ -16887,7 +21177,7 @@ export default { 63 ], "type": [ - 475 + 716 ], "workshop_map_id": [ 63 @@ -16898,7 +21188,7 @@ export default { }, "maps_max_fields": { "id": [ - 3319 + 3587 ], "label": [ 63 @@ -16921,22 +21211,22 @@ export default { }, "maps_max_order_by": { "id": [ - 1736 + 2004 ], "label": [ - 1736 + 2004 ], "name": [ - 1736 + 2004 ], "patch": [ - 1736 + 2004 ], "poster": [ - 1736 + 2004 ], "workshop_map_id": [ - 1736 + 2004 ], "__typename": [ 63 @@ -16944,7 +21234,7 @@ export default { }, "maps_min_fields": { "id": [ - 3319 + 3587 ], "label": [ 63 @@ -16967,22 +21257,22 @@ export default { }, "maps_min_order_by": { "id": [ - 1736 + 2004 ], "label": [ - 1736 + 2004 ], "name": [ - 1736 + 2004 ], "patch": [ - 1736 + 2004 ], "poster": [ - 1736 + 2004 ], "workshop_map_id": [ - 1736 + 2004 ], "__typename": [ 63 @@ -16993,7 +21283,7 @@ export default { 34 ], "returning": [ - 1055 + 1296 ], "__typename": [ 63 @@ -17001,10 +21291,10 @@ export default { }, "maps_obj_rel_insert_input": { "data": [ - 1066 + 1307 ], "on_conflict": [ - 1073 + 1314 ], "__typename": [ 63 @@ -17012,13 +21302,13 @@ export default { }, "maps_on_conflict": { "constraint": [ - 1065 + 1306 ], "update_columns": [ - 1082 + 1323 ], "where": [ - 1064 + 1305 ], "__typename": [ 63 @@ -17026,40 +21316,40 @@ export default { }, "maps_order_by": { "active_pool": [ - 1736 + 2004 ], "e_match_type": [ - 483 + 724 ], "enabled": [ - 1736 + 2004 ], "id": [ - 1736 + 2004 ], "label": [ - 1736 + 2004 ], "match_maps_aggregate": [ - 1421 + 1662 ], "match_veto_picks_aggregate": [ - 1397 + 1638 ], "name": [ - 1736 + 2004 ], "patch": [ - 1736 + 2004 ], "poster": [ - 1736 + 2004 ], "type": [ - 1736 + 2004 ], "workshop_map_id": [ - 1736 + 2004 ], "__typename": [ 63 @@ -17067,7 +21357,7 @@ export default { }, "maps_pk_columns_input": { "id": [ - 3319 + 3587 ], "__typename": [ 63 @@ -17084,7 +21374,7 @@ export default { 3 ], "id": [ - 3319 + 3587 ], "label": [ 63 @@ -17099,7 +21389,7 @@ export default { 63 ], "type": [ - 475 + 716 ], "workshop_map_id": [ 63 @@ -17110,7 +21400,7 @@ export default { }, "maps_stream_cursor_input": { "initial_value": [ - 1081 + 1322 ], "ordering": [ 216 @@ -17127,7 +21417,7 @@ export default { 3 ], "id": [ - 3319 + 3587 ], "label": [ 63 @@ -17142,7 +21432,7 @@ export default { 63 ], "type": [ - 475 + 716 ], "workshop_map_id": [ 63 @@ -17154,10 +21444,10 @@ export default { "maps_update_column": {}, "maps_updates": { "_set": [ - 1079 + 1320 ], "where": [ - 1064 + 1305 ], "__typename": [ 63 @@ -17165,7 +21455,7 @@ export default { }, "match_clips": { "created_at": [ - 2922 + 3190 ], "download_url": [ 63 @@ -17177,22 +21467,22 @@ export default { 63 ], "id": [ - 3319 + 3587 ], "kills_count": [ 34 ], "match_map": [ - 1416 + 1657 ], "match_map_demo": [ - 1300 + 1541 ], "match_map_demo_id": [ - 3319 + 3587 ], "match_map_id": [ - 3319 + 3587 ], "render_jobs": [ 166, @@ -17245,7 +21535,7 @@ export default { 162 ], "target": [ - 2603 + 2871 ], "target_steam_id": [ 162 @@ -17260,7 +21550,7 @@ export default { 63 ], "user": [ - 2603 + 2871 ], "user_steam_id": [ 162 @@ -17269,7 +21559,7 @@ export default { 34 ], "visibility": [ - 393 + 634 ], "__typename": [ 63 @@ -17277,10 +21567,10 @@ export default { }, "match_clips_aggregate": { "aggregate": [ - 1088 + 1329 ], "nodes": [ - 1084 + 1325 ], "__typename": [ 63 @@ -17288,7 +21578,7 @@ export default { }, "match_clips_aggregate_bool_exp": { "count": [ - 1087 + 1328 ], "__typename": [ 63 @@ -17296,13 +21586,13 @@ export default { }, "match_clips_aggregate_bool_exp_count": { "arguments": [ - 1106 + 1347 ], "distinct": [ 3 ], "filter": [ - 1093 + 1334 ], "predicate": [ 35 @@ -17313,13 +21603,13 @@ export default { }, "match_clips_aggregate_fields": { "avg": [ - 1091 + 1332 ], "count": [ 34, { "columns": [ - 1106, + 1347, "[match_clips_select_column!]" ], "distinct": [ @@ -17328,31 +21618,31 @@ export default { } ], "max": [ - 1097 + 1338 ], "min": [ - 1099 + 1340 ], "stddev": [ - 1108 + 1349 ], "stddev_pop": [ - 1110 + 1351 ], "stddev_samp": [ - 1112 + 1353 ], "sum": [ - 1116 + 1357 ], "var_pop": [ - 1120 + 1361 ], "var_samp": [ - 1122 + 1363 ], "variance": [ - 1124 + 1365 ], "__typename": [ 63 @@ -17360,37 +21650,37 @@ export default { }, "match_clips_aggregate_order_by": { "avg": [ - 1092 + 1333 ], "count": [ - 1736 + 2004 ], "max": [ - 1098 + 1339 ], "min": [ - 1100 + 1341 ], "stddev": [ - 1109 + 1350 ], "stddev_pop": [ - 1111 + 1352 ], "stddev_samp": [ - 1113 + 1354 ], "sum": [ - 1117 + 1358 ], "var_pop": [ - 1121 + 1362 ], "var_samp": [ - 1123 + 1364 ], "variance": [ - 1125 + 1366 ], "__typename": [ 63 @@ -17398,10 +21688,10 @@ export default { }, "match_clips_arr_rel_insert_input": { "data": [ - 1096 + 1337 ], "on_conflict": [ - 1103 + 1344 ], "__typename": [ 63 @@ -17435,25 +21725,25 @@ export default { }, "match_clips_avg_order_by": { "duration_ms": [ - 1736 + 2004 ], "kills_count": [ - 1736 + 2004 ], "round": [ - 1736 + 2004 ], "size": [ - 1736 + 2004 ], "target_steam_id": [ - 1736 + 2004 ], "user_steam_id": [ - 1736 + 2004 ], "views_count": [ - 1736 + 2004 ], "__typename": [ 63 @@ -17461,16 +21751,16 @@ export default { }, "match_clips_bool_exp": { "_and": [ - 1093 + 1334 ], "_not": [ - 1093 + 1334 ], "_or": [ - 1093 + 1334 ], "created_at": [ - 2923 + 3191 ], "download_url": [ 65 @@ -17482,22 +21772,22 @@ export default { 65 ], "id": [ - 3320 + 3588 ], "kills_count": [ 35 ], "match_map": [ - 1425 + 1666 ], "match_map_demo": [ - 1312 + 1553 ], "match_map_demo_id": [ - 3320 + 3588 ], "match_map_id": [ - 3320 + 3588 ], "render_jobs": [ 178 @@ -17512,7 +21802,7 @@ export default { 163 ], "target": [ - 2607 + 2875 ], "target_steam_id": [ 163 @@ -17527,7 +21817,7 @@ export default { 65 ], "user": [ - 2607 + 2875 ], "user_steam_id": [ 163 @@ -17536,7 +21826,7 @@ export default { 35 ], "visibility": [ - 394 + 635 ], "__typename": [ 63 @@ -17571,7 +21861,7 @@ export default { }, "match_clips_insert_input": { "created_at": [ - 2922 + 3190 ], "duration_ms": [ 34 @@ -17580,22 +21870,22 @@ export default { 63 ], "id": [ - 3319 + 3587 ], "kills_count": [ 34 ], "match_map": [ - 1434 + 1675 ], "match_map_demo": [ - 1324 + 1565 ], "match_map_demo_id": [ - 3319 + 3587 ], "match_map_id": [ - 3319 + 3587 ], "render_jobs": [ 175 @@ -17607,7 +21897,7 @@ export default { 162 ], "target": [ - 2614 + 2882 ], "target_steam_id": [ 162 @@ -17619,7 +21909,7 @@ export default { 63 ], "user": [ - 2614 + 2882 ], "user_steam_id": [ 162 @@ -17628,7 +21918,7 @@ export default { 34 ], "visibility": [ - 393 + 634 ], "__typename": [ 63 @@ -17636,7 +21926,7 @@ export default { }, "match_clips_max_fields": { "created_at": [ - 2922 + 3190 ], "download_url": [ 63 @@ -17648,16 +21938,16 @@ export default { 63 ], "id": [ - 3319 + 3587 ], "kills_count": [ 34 ], "match_map_demo_id": [ - 3319 + 3587 ], "match_map_id": [ - 3319 + 3587 ], "round": [ 34 @@ -17689,46 +21979,46 @@ export default { }, "match_clips_max_order_by": { "created_at": [ - 1736 + 2004 ], "duration_ms": [ - 1736 + 2004 ], "file": [ - 1736 + 2004 ], "id": [ - 1736 + 2004 ], "kills_count": [ - 1736 + 2004 ], "match_map_demo_id": [ - 1736 + 2004 ], "match_map_id": [ - 1736 + 2004 ], "round": [ - 1736 + 2004 ], "size": [ - 1736 + 2004 ], "target_steam_id": [ - 1736 + 2004 ], "thumbnail_url": [ - 1736 + 2004 ], "title": [ - 1736 + 2004 ], "user_steam_id": [ - 1736 + 2004 ], "views_count": [ - 1736 + 2004 ], "__typename": [ 63 @@ -17736,7 +22026,7 @@ export default { }, "match_clips_min_fields": { "created_at": [ - 2922 + 3190 ], "download_url": [ 63 @@ -17748,16 +22038,16 @@ export default { 63 ], "id": [ - 3319 + 3587 ], "kills_count": [ 34 ], "match_map_demo_id": [ - 3319 + 3587 ], "match_map_id": [ - 3319 + 3587 ], "round": [ 34 @@ -17789,46 +22079,46 @@ export default { }, "match_clips_min_order_by": { "created_at": [ - 1736 + 2004 ], "duration_ms": [ - 1736 + 2004 ], "file": [ - 1736 + 2004 ], "id": [ - 1736 + 2004 ], "kills_count": [ - 1736 + 2004 ], "match_map_demo_id": [ - 1736 + 2004 ], "match_map_id": [ - 1736 + 2004 ], "round": [ - 1736 + 2004 ], "size": [ - 1736 + 2004 ], "target_steam_id": [ - 1736 + 2004 ], "thumbnail_url": [ - 1736 + 2004 ], "title": [ - 1736 + 2004 ], "user_steam_id": [ - 1736 + 2004 ], "views_count": [ - 1736 + 2004 ], "__typename": [ 63 @@ -17839,7 +22129,7 @@ export default { 34 ], "returning": [ - 1084 + 1325 ], "__typename": [ 63 @@ -17847,10 +22137,10 @@ export default { }, "match_clips_obj_rel_insert_input": { "data": [ - 1096 + 1337 ], "on_conflict": [ - 1103 + 1344 ], "__typename": [ 63 @@ -17858,13 +22148,13 @@ export default { }, "match_clips_on_conflict": { "constraint": [ - 1094 + 1335 ], "update_columns": [ - 1118 + 1359 ], "where": [ - 1093 + 1334 ], "__typename": [ 63 @@ -17872,70 +22162,70 @@ export default { }, "match_clips_order_by": { "created_at": [ - 1736 + 2004 ], "download_url": [ - 1736 + 2004 ], "duration_ms": [ - 1736 + 2004 ], "file": [ - 1736 + 2004 ], "id": [ - 1736 + 2004 ], "kills_count": [ - 1736 + 2004 ], "match_map": [ - 1436 + 1677 ], "match_map_demo": [ - 1326 + 1567 ], "match_map_demo_id": [ - 1736 + 2004 ], "match_map_id": [ - 1736 + 2004 ], "render_jobs_aggregate": [ 173 ], "round": [ - 1736 + 2004 ], "size": [ - 1736 + 2004 ], "target": [ - 2616 + 2884 ], "target_steam_id": [ - 1736 + 2004 ], "thumbnail_download_url": [ - 1736 + 2004 ], "thumbnail_url": [ - 1736 + 2004 ], "title": [ - 1736 + 2004 ], "user": [ - 2616 + 2884 ], "user_steam_id": [ - 1736 + 2004 ], "views_count": [ - 1736 + 2004 ], "visibility": [ - 1736 + 2004 ], "__typename": [ 63 @@ -17943,7 +22233,7 @@ export default { }, "match_clips_pk_columns_input": { "id": [ - 3319 + 3587 ], "__typename": [ 63 @@ -17952,7 +22242,7 @@ export default { "match_clips_select_column": {}, "match_clips_set_input": { "created_at": [ - 2922 + 3190 ], "duration_ms": [ 34 @@ -17961,16 +22251,16 @@ export default { 63 ], "id": [ - 3319 + 3587 ], "kills_count": [ 34 ], "match_map_demo_id": [ - 3319 + 3587 ], "match_map_id": [ - 3319 + 3587 ], "round": [ 34 @@ -17994,7 +22284,7 @@ export default { 34 ], "visibility": [ - 393 + 634 ], "__typename": [ 63 @@ -18028,25 +22318,25 @@ export default { }, "match_clips_stddev_order_by": { "duration_ms": [ - 1736 + 2004 ], "kills_count": [ - 1736 + 2004 ], "round": [ - 1736 + 2004 ], "size": [ - 1736 + 2004 ], "target_steam_id": [ - 1736 + 2004 ], "user_steam_id": [ - 1736 + 2004 ], "views_count": [ - 1736 + 2004 ], "__typename": [ 63 @@ -18080,25 +22370,25 @@ export default { }, "match_clips_stddev_pop_order_by": { "duration_ms": [ - 1736 + 2004 ], "kills_count": [ - 1736 + 2004 ], "round": [ - 1736 + 2004 ], "size": [ - 1736 + 2004 ], "target_steam_id": [ - 1736 + 2004 ], "user_steam_id": [ - 1736 + 2004 ], "views_count": [ - 1736 + 2004 ], "__typename": [ 63 @@ -18132,25 +22422,25 @@ export default { }, "match_clips_stddev_samp_order_by": { "duration_ms": [ - 1736 + 2004 ], "kills_count": [ - 1736 + 2004 ], "round": [ - 1736 + 2004 ], "size": [ - 1736 + 2004 ], "target_steam_id": [ - 1736 + 2004 ], "user_steam_id": [ - 1736 + 2004 ], "views_count": [ - 1736 + 2004 ], "__typename": [ 63 @@ -18158,7 +22448,7 @@ export default { }, "match_clips_stream_cursor_input": { "initial_value": [ - 1115 + 1356 ], "ordering": [ 216 @@ -18169,7 +22459,7 @@ export default { }, "match_clips_stream_cursor_value_input": { "created_at": [ - 2922 + 3190 ], "duration_ms": [ 34 @@ -18178,16 +22468,16 @@ export default { 63 ], "id": [ - 3319 + 3587 ], "kills_count": [ 34 ], "match_map_demo_id": [ - 3319 + 3587 ], "match_map_id": [ - 3319 + 3587 ], "round": [ 34 @@ -18211,7 +22501,7 @@ export default { 34 ], "visibility": [ - 393 + 634 ], "__typename": [ 63 @@ -18245,25 +22535,25 @@ export default { }, "match_clips_sum_order_by": { "duration_ms": [ - 1736 + 2004 ], "kills_count": [ - 1736 + 2004 ], "round": [ - 1736 + 2004 ], "size": [ - 1736 + 2004 ], "target_steam_id": [ - 1736 + 2004 ], "user_steam_id": [ - 1736 + 2004 ], "views_count": [ - 1736 + 2004 ], "__typename": [ 63 @@ -18272,13 +22562,13 @@ export default { "match_clips_update_column": {}, "match_clips_updates": { "_inc": [ - 1095 + 1336 ], "_set": [ - 1107 + 1348 ], "where": [ - 1093 + 1334 ], "__typename": [ 63 @@ -18312,25 +22602,25 @@ export default { }, "match_clips_var_pop_order_by": { "duration_ms": [ - 1736 + 2004 ], "kills_count": [ - 1736 + 2004 ], "round": [ - 1736 + 2004 ], "size": [ - 1736 + 2004 ], "target_steam_id": [ - 1736 + 2004 ], "user_steam_id": [ - 1736 + 2004 ], "views_count": [ - 1736 + 2004 ], "__typename": [ 63 @@ -18364,25 +22654,25 @@ export default { }, "match_clips_var_samp_order_by": { "duration_ms": [ - 1736 + 2004 ], "kills_count": [ - 1736 + 2004 ], "round": [ - 1736 + 2004 ], "size": [ - 1736 + 2004 ], "target_steam_id": [ - 1736 + 2004 ], "user_steam_id": [ - 1736 + 2004 ], "views_count": [ - 1736 + 2004 ], "__typename": [ 63 @@ -18416,25 +22706,25 @@ export default { }, "match_clips_variance_order_by": { "duration_ms": [ - 1736 + 2004 ], "kills_count": [ - 1736 + 2004 ], "round": [ - 1736 + 2004 ], "size": [ - 1736 + 2004 ], "target_steam_id": [ - 1736 + 2004 ], "user_steam_id": [ - 1736 + 2004 ], "views_count": [ - 1736 + 2004 ], "__typename": [ 63 @@ -18442,52 +22732,52 @@ export default { }, "match_demo_sessions": { "created_at": [ - 2922 + 3190 ], "error_message": [ 63 ], "game_server_node": [ - 824 + 1065 ], "game_server_node_id": [ 63 ], "id": [ - 3319 + 3587 ], "k8s_job_name": [ 63 ], "last_activity_at": [ - 2922 + 3190 ], "last_status_at": [ - 2922 + 3190 ], "match": [ - 1578 + 1819 ], "match_id": [ - 3319 + 3587 ], "match_map": [ - 1416 + 1657 ], "match_map_demo": [ - 1300 + 1541 ], "match_map_demo_id": [ - 3319 + 3587 ], "match_map_id": [ - 3319 + 3587 ], "status": [ 63 ], "status_history": [ - 946, + 1187, { "path": [ 63 @@ -18498,7 +22788,7 @@ export default { 63 ], "watcher": [ - 2603 + 2871 ], "watcher_steam_id": [ 162 @@ -18509,10 +22799,10 @@ export default { }, "match_demo_sessions_aggregate": { "aggregate": [ - 1130 + 1371 ], "nodes": [ - 1126 + 1367 ], "__typename": [ 63 @@ -18520,7 +22810,7 @@ export default { }, "match_demo_sessions_aggregate_bool_exp": { "count": [ - 1129 + 1370 ], "__typename": [ 63 @@ -18528,13 +22818,13 @@ export default { }, "match_demo_sessions_aggregate_bool_exp_count": { "arguments": [ - 1152 + 1393 ], "distinct": [ 3 ], "filter": [ - 1136 + 1377 ], "predicate": [ 35 @@ -18545,13 +22835,13 @@ export default { }, "match_demo_sessions_aggregate_fields": { "avg": [ - 1134 + 1375 ], "count": [ 34, { "columns": [ - 1152, + 1393, "[match_demo_sessions_select_column!]" ], "distinct": [ @@ -18560,31 +22850,31 @@ export default { } ], "max": [ - 1143 + 1384 ], "min": [ - 1145 + 1386 ], "stddev": [ - 1154 + 1395 ], "stddev_pop": [ - 1156 + 1397 ], "stddev_samp": [ - 1158 + 1399 ], "sum": [ - 1162 + 1403 ], "var_pop": [ - 1166 + 1407 ], "var_samp": [ - 1168 + 1409 ], "variance": [ - 1170 + 1411 ], "__typename": [ 63 @@ -18592,37 +22882,37 @@ export default { }, "match_demo_sessions_aggregate_order_by": { "avg": [ - 1135 + 1376 ], "count": [ - 1736 + 2004 ], "max": [ - 1144 + 1385 ], "min": [ - 1146 + 1387 ], "stddev": [ - 1155 + 1396 ], "stddev_pop": [ - 1157 + 1398 ], "stddev_samp": [ - 1159 + 1400 ], "sum": [ - 1163 + 1404 ], "var_pop": [ - 1167 + 1408 ], "var_samp": [ - 1169 + 1410 ], "variance": [ - 1171 + 1412 ], "__typename": [ 63 @@ -18630,7 +22920,7 @@ export default { }, "match_demo_sessions_append_input": { "status_history": [ - 946 + 1187 ], "__typename": [ 63 @@ -18638,10 +22928,10 @@ export default { }, "match_demo_sessions_arr_rel_insert_input": { "data": [ - 1142 + 1383 ], "on_conflict": [ - 1148 + 1389 ], "__typename": [ 63 @@ -18657,7 +22947,7 @@ export default { }, "match_demo_sessions_avg_order_by": { "watcher_steam_id": [ - 1736 + 2004 ], "__typename": [ 63 @@ -18665,67 +22955,67 @@ export default { }, "match_demo_sessions_bool_exp": { "_and": [ - 1136 + 1377 ], "_not": [ - 1136 + 1377 ], "_or": [ - 1136 + 1377 ], "created_at": [ - 2923 + 3191 ], "error_message": [ 65 ], "game_server_node": [ - 836 + 1077 ], "game_server_node_id": [ 65 ], "id": [ - 3320 + 3588 ], "k8s_job_name": [ 65 ], "last_activity_at": [ - 2923 + 3191 ], "last_status_at": [ - 2923 + 3191 ], "match": [ - 1587 + 1828 ], "match_id": [ - 3320 + 3588 ], "match_map": [ - 1425 + 1666 ], "match_map_demo": [ - 1312 + 1553 ], "match_map_demo_id": [ - 3320 + 3588 ], "match_map_id": [ - 3320 + 3588 ], "status": [ 65 ], "status_history": [ - 948 + 1189 ], "stream_url": [ 65 ], "watcher": [ - 2607 + 2875 ], "watcher_steam_id": [ 163 @@ -18769,58 +23059,58 @@ export default { }, "match_demo_sessions_insert_input": { "created_at": [ - 2922 + 3190 ], "error_message": [ 63 ], "game_server_node": [ - 848 + 1089 ], "game_server_node_id": [ 63 ], "id": [ - 3319 + 3587 ], "k8s_job_name": [ 63 ], "last_activity_at": [ - 2922 + 3190 ], "last_status_at": [ - 2922 + 3190 ], "match": [ - 1596 + 1837 ], "match_id": [ - 3319 + 3587 ], "match_map": [ - 1434 + 1675 ], "match_map_demo": [ - 1324 + 1565 ], "match_map_demo_id": [ - 3319 + 3587 ], "match_map_id": [ - 3319 + 3587 ], "status": [ 63 ], "status_history": [ - 946 + 1187 ], "stream_url": [ 63 ], "watcher": [ - 2614 + 2882 ], "watcher_steam_id": [ 162 @@ -18831,7 +23121,7 @@ export default { }, "match_demo_sessions_max_fields": { "created_at": [ - 2922 + 3190 ], "error_message": [ 63 @@ -18840,25 +23130,25 @@ export default { 63 ], "id": [ - 3319 + 3587 ], "k8s_job_name": [ 63 ], "last_activity_at": [ - 2922 + 3190 ], "last_status_at": [ - 2922 + 3190 ], "match_id": [ - 3319 + 3587 ], "match_map_demo_id": [ - 3319 + 3587 ], "match_map_id": [ - 3319 + 3587 ], "status": [ 63 @@ -18875,43 +23165,43 @@ export default { }, "match_demo_sessions_max_order_by": { "created_at": [ - 1736 + 2004 ], "error_message": [ - 1736 + 2004 ], "game_server_node_id": [ - 1736 + 2004 ], "id": [ - 1736 + 2004 ], "k8s_job_name": [ - 1736 + 2004 ], "last_activity_at": [ - 1736 + 2004 ], "last_status_at": [ - 1736 + 2004 ], "match_id": [ - 1736 + 2004 ], "match_map_demo_id": [ - 1736 + 2004 ], "match_map_id": [ - 1736 + 2004 ], "status": [ - 1736 + 2004 ], "stream_url": [ - 1736 + 2004 ], "watcher_steam_id": [ - 1736 + 2004 ], "__typename": [ 63 @@ -18919,7 +23209,7 @@ export default { }, "match_demo_sessions_min_fields": { "created_at": [ - 2922 + 3190 ], "error_message": [ 63 @@ -18928,25 +23218,25 @@ export default { 63 ], "id": [ - 3319 + 3587 ], "k8s_job_name": [ 63 ], "last_activity_at": [ - 2922 + 3190 ], "last_status_at": [ - 2922 + 3190 ], "match_id": [ - 3319 + 3587 ], "match_map_demo_id": [ - 3319 + 3587 ], "match_map_id": [ - 3319 + 3587 ], "status": [ 63 @@ -18963,43 +23253,43 @@ export default { }, "match_demo_sessions_min_order_by": { "created_at": [ - 1736 + 2004 ], "error_message": [ - 1736 + 2004 ], "game_server_node_id": [ - 1736 + 2004 ], "id": [ - 1736 + 2004 ], "k8s_job_name": [ - 1736 + 2004 ], "last_activity_at": [ - 1736 + 2004 ], "last_status_at": [ - 1736 + 2004 ], "match_id": [ - 1736 + 2004 ], "match_map_demo_id": [ - 1736 + 2004 ], "match_map_id": [ - 1736 + 2004 ], "status": [ - 1736 + 2004 ], "stream_url": [ - 1736 + 2004 ], "watcher_steam_id": [ - 1736 + 2004 ], "__typename": [ 63 @@ -19010,7 +23300,7 @@ export default { 34 ], "returning": [ - 1126 + 1367 ], "__typename": [ 63 @@ -19018,13 +23308,13 @@ export default { }, "match_demo_sessions_on_conflict": { "constraint": [ - 1137 + 1378 ], "update_columns": [ - 1164 + 1405 ], "where": [ - 1136 + 1377 ], "__typename": [ 63 @@ -19032,61 +23322,61 @@ export default { }, "match_demo_sessions_order_by": { "created_at": [ - 1736 + 2004 ], "error_message": [ - 1736 + 2004 ], "game_server_node": [ - 850 + 1091 ], "game_server_node_id": [ - 1736 + 2004 ], "id": [ - 1736 + 2004 ], "k8s_job_name": [ - 1736 + 2004 ], "last_activity_at": [ - 1736 + 2004 ], "last_status_at": [ - 1736 + 2004 ], "match": [ - 1598 + 1839 ], "match_id": [ - 1736 + 2004 ], "match_map": [ - 1436 + 1677 ], "match_map_demo": [ - 1326 + 1567 ], "match_map_demo_id": [ - 1736 + 2004 ], "match_map_id": [ - 1736 + 2004 ], "status": [ - 1736 + 2004 ], "status_history": [ - 1736 + 2004 ], "stream_url": [ - 1736 + 2004 ], "watcher": [ - 2616 + 2884 ], "watcher_steam_id": [ - 1736 + 2004 ], "__typename": [ 63 @@ -19094,7 +23384,7 @@ export default { }, "match_demo_sessions_pk_columns_input": { "id": [ - 3319 + 3587 ], "__typename": [ 63 @@ -19102,7 +23392,7 @@ export default { }, "match_demo_sessions_prepend_input": { "status_history": [ - 946 + 1187 ], "__typename": [ 63 @@ -19111,7 +23401,7 @@ export default { "match_demo_sessions_select_column": {}, "match_demo_sessions_set_input": { "created_at": [ - 2922 + 3190 ], "error_message": [ 63 @@ -19120,31 +23410,31 @@ export default { 63 ], "id": [ - 3319 + 3587 ], "k8s_job_name": [ 63 ], "last_activity_at": [ - 2922 + 3190 ], "last_status_at": [ - 2922 + 3190 ], "match_id": [ - 3319 + 3587 ], "match_map_demo_id": [ - 3319 + 3587 ], "match_map_id": [ - 3319 + 3587 ], "status": [ 63 ], "status_history": [ - 946 + 1187 ], "stream_url": [ 63 @@ -19166,7 +23456,7 @@ export default { }, "match_demo_sessions_stddev_order_by": { "watcher_steam_id": [ - 1736 + 2004 ], "__typename": [ 63 @@ -19182,7 +23472,7 @@ export default { }, "match_demo_sessions_stddev_pop_order_by": { "watcher_steam_id": [ - 1736 + 2004 ], "__typename": [ 63 @@ -19198,7 +23488,7 @@ export default { }, "match_demo_sessions_stddev_samp_order_by": { "watcher_steam_id": [ - 1736 + 2004 ], "__typename": [ 63 @@ -19206,7 +23496,7 @@ export default { }, "match_demo_sessions_stream_cursor_input": { "initial_value": [ - 1161 + 1402 ], "ordering": [ 216 @@ -19217,7 +23507,7 @@ export default { }, "match_demo_sessions_stream_cursor_value_input": { "created_at": [ - 2922 + 3190 ], "error_message": [ 63 @@ -19226,31 +23516,31 @@ export default { 63 ], "id": [ - 3319 + 3587 ], "k8s_job_name": [ 63 ], "last_activity_at": [ - 2922 + 3190 ], "last_status_at": [ - 2922 + 3190 ], "match_id": [ - 3319 + 3587 ], "match_map_demo_id": [ - 3319 + 3587 ], "match_map_id": [ - 3319 + 3587 ], "status": [ 63 ], "status_history": [ - 946 + 1187 ], "stream_url": [ 63 @@ -19272,7 +23562,7 @@ export default { }, "match_demo_sessions_sum_order_by": { "watcher_steam_id": [ - 1736 + 2004 ], "__typename": [ 63 @@ -19281,28 +23571,28 @@ export default { "match_demo_sessions_update_column": {}, "match_demo_sessions_updates": { "_append": [ - 1132 + 1373 ], "_delete_at_path": [ - 1138 + 1379 ], "_delete_elem": [ - 1139 + 1380 ], "_delete_key": [ - 1140 + 1381 ], "_inc": [ - 1141 + 1382 ], "_prepend": [ - 1151 + 1392 ], "_set": [ - 1153 + 1394 ], "where": [ - 1136 + 1377 ], "__typename": [ 63 @@ -19318,7 +23608,7 @@ export default { }, "match_demo_sessions_var_pop_order_by": { "watcher_steam_id": [ - 1736 + 2004 ], "__typename": [ 63 @@ -19334,7 +23624,7 @@ export default { }, "match_demo_sessions_var_samp_order_by": { "watcher_steam_id": [ - 1736 + 2004 ], "__typename": [ 63 @@ -19350,7 +23640,7 @@ export default { }, "match_demo_sessions_variance_order_by": { "watcher_steam_id": [ - 1736 + 2004 ], "__typename": [ 63 @@ -19358,25 +23648,25 @@ export default { }, "match_invites": { "created_at": [ - 2922 + 3190 ], "id": [ - 3319 + 3587 ], "invited_by": [ - 2603 + 2871 ], "invited_by_player_steam_id": [ 162 ], "match": [ - 1578 + 1819 ], "match_id": [ - 3319 + 3587 ], "player": [ - 2603 + 2871 ], "steam_id": [ 162 @@ -19387,10 +23677,10 @@ export default { }, "match_invites_aggregate": { "aggregate": [ - 1176 + 1417 ], "nodes": [ - 1172 + 1413 ], "__typename": [ 63 @@ -19398,7 +23688,7 @@ export default { }, "match_invites_aggregate_bool_exp": { "count": [ - 1175 + 1416 ], "__typename": [ 63 @@ -19406,13 +23696,13 @@ export default { }, "match_invites_aggregate_bool_exp_count": { "arguments": [ - 1193 + 1434 ], "distinct": [ 3 ], "filter": [ - 1181 + 1422 ], "predicate": [ 35 @@ -19423,13 +23713,13 @@ export default { }, "match_invites_aggregate_fields": { "avg": [ - 1179 + 1420 ], "count": [ 34, { "columns": [ - 1193, + 1434, "[match_invites_select_column!]" ], "distinct": [ @@ -19438,31 +23728,31 @@ export default { } ], "max": [ - 1185 + 1426 ], "min": [ - 1187 + 1428 ], "stddev": [ - 1195 + 1436 ], "stddev_pop": [ - 1197 + 1438 ], "stddev_samp": [ - 1199 + 1440 ], "sum": [ - 1203 + 1444 ], "var_pop": [ - 1207 + 1448 ], "var_samp": [ - 1209 + 1450 ], "variance": [ - 1211 + 1452 ], "__typename": [ 63 @@ -19470,37 +23760,37 @@ export default { }, "match_invites_aggregate_order_by": { "avg": [ - 1180 + 1421 ], "count": [ - 1736 + 2004 ], "max": [ - 1186 + 1427 ], "min": [ - 1188 + 1429 ], "stddev": [ - 1196 + 1437 ], "stddev_pop": [ - 1198 + 1439 ], "stddev_samp": [ - 1200 + 1441 ], "sum": [ - 1204 + 1445 ], "var_pop": [ - 1208 + 1449 ], "var_samp": [ - 1210 + 1451 ], "variance": [ - 1212 + 1453 ], "__typename": [ 63 @@ -19508,10 +23798,10 @@ export default { }, "match_invites_arr_rel_insert_input": { "data": [ - 1184 + 1425 ], "on_conflict": [ - 1190 + 1431 ], "__typename": [ 63 @@ -19530,10 +23820,10 @@ export default { }, "match_invites_avg_order_by": { "invited_by_player_steam_id": [ - 1736 + 2004 ], "steam_id": [ - 1736 + 2004 ], "__typename": [ 63 @@ -19541,34 +23831,34 @@ export default { }, "match_invites_bool_exp": { "_and": [ - 1181 + 1422 ], "_not": [ - 1181 + 1422 ], "_or": [ - 1181 + 1422 ], "created_at": [ - 2923 + 3191 ], "id": [ - 3320 + 3588 ], "invited_by": [ - 2607 + 2875 ], "invited_by_player_steam_id": [ 163 ], "match": [ - 1587 + 1828 ], "match_id": [ - 3320 + 3588 ], "player": [ - 2607 + 2875 ], "steam_id": [ 163 @@ -19591,25 +23881,25 @@ export default { }, "match_invites_insert_input": { "created_at": [ - 2922 + 3190 ], "id": [ - 3319 + 3587 ], "invited_by": [ - 2614 + 2882 ], "invited_by_player_steam_id": [ 162 ], "match": [ - 1596 + 1837 ], "match_id": [ - 3319 + 3587 ], "player": [ - 2614 + 2882 ], "steam_id": [ 162 @@ -19620,16 +23910,16 @@ export default { }, "match_invites_max_fields": { "created_at": [ - 2922 + 3190 ], "id": [ - 3319 + 3587 ], "invited_by_player_steam_id": [ 162 ], "match_id": [ - 3319 + 3587 ], "steam_id": [ 162 @@ -19640,19 +23930,19 @@ export default { }, "match_invites_max_order_by": { "created_at": [ - 1736 + 2004 ], "id": [ - 1736 + 2004 ], "invited_by_player_steam_id": [ - 1736 + 2004 ], "match_id": [ - 1736 + 2004 ], "steam_id": [ - 1736 + 2004 ], "__typename": [ 63 @@ -19660,16 +23950,16 @@ export default { }, "match_invites_min_fields": { "created_at": [ - 2922 + 3190 ], "id": [ - 3319 + 3587 ], "invited_by_player_steam_id": [ 162 ], "match_id": [ - 3319 + 3587 ], "steam_id": [ 162 @@ -19680,19 +23970,19 @@ export default { }, "match_invites_min_order_by": { "created_at": [ - 1736 + 2004 ], "id": [ - 1736 + 2004 ], "invited_by_player_steam_id": [ - 1736 + 2004 ], "match_id": [ - 1736 + 2004 ], "steam_id": [ - 1736 + 2004 ], "__typename": [ 63 @@ -19703,7 +23993,7 @@ export default { 34 ], "returning": [ - 1172 + 1413 ], "__typename": [ 63 @@ -19711,13 +24001,13 @@ export default { }, "match_invites_on_conflict": { "constraint": [ - 1182 + 1423 ], "update_columns": [ - 1205 + 1446 ], "where": [ - 1181 + 1422 ], "__typename": [ 63 @@ -19725,28 +24015,28 @@ export default { }, "match_invites_order_by": { "created_at": [ - 1736 + 2004 ], "id": [ - 1736 + 2004 ], "invited_by": [ - 2616 + 2884 ], "invited_by_player_steam_id": [ - 1736 + 2004 ], "match": [ - 1598 + 1839 ], "match_id": [ - 1736 + 2004 ], "player": [ - 2616 + 2884 ], "steam_id": [ - 1736 + 2004 ], "__typename": [ 63 @@ -19754,7 +24044,7 @@ export default { }, "match_invites_pk_columns_input": { "id": [ - 3319 + 3587 ], "__typename": [ 63 @@ -19763,16 +24053,16 @@ export default { "match_invites_select_column": {}, "match_invites_set_input": { "created_at": [ - 2922 + 3190 ], "id": [ - 3319 + 3587 ], "invited_by_player_steam_id": [ 162 ], "match_id": [ - 3319 + 3587 ], "steam_id": [ 162 @@ -19794,10 +24084,10 @@ export default { }, "match_invites_stddev_order_by": { "invited_by_player_steam_id": [ - 1736 + 2004 ], "steam_id": [ - 1736 + 2004 ], "__typename": [ 63 @@ -19816,10 +24106,10 @@ export default { }, "match_invites_stddev_pop_order_by": { "invited_by_player_steam_id": [ - 1736 + 2004 ], "steam_id": [ - 1736 + 2004 ], "__typename": [ 63 @@ -19838,10 +24128,10 @@ export default { }, "match_invites_stddev_samp_order_by": { "invited_by_player_steam_id": [ - 1736 + 2004 ], "steam_id": [ - 1736 + 2004 ], "__typename": [ 63 @@ -19849,7 +24139,7 @@ export default { }, "match_invites_stream_cursor_input": { "initial_value": [ - 1202 + 1443 ], "ordering": [ 216 @@ -19860,16 +24150,16 @@ export default { }, "match_invites_stream_cursor_value_input": { "created_at": [ - 2922 + 3190 ], "id": [ - 3319 + 3587 ], "invited_by_player_steam_id": [ 162 ], "match_id": [ - 3319 + 3587 ], "steam_id": [ 162 @@ -19891,10 +24181,10 @@ export default { }, "match_invites_sum_order_by": { "invited_by_player_steam_id": [ - 1736 + 2004 ], "steam_id": [ - 1736 + 2004 ], "__typename": [ 63 @@ -19903,13 +24193,13 @@ export default { "match_invites_update_column": {}, "match_invites_updates": { "_inc": [ - 1183 + 1424 ], "_set": [ - 1194 + 1435 ], "where": [ - 1181 + 1422 ], "__typename": [ 63 @@ -19928,10 +24218,10 @@ export default { }, "match_invites_var_pop_order_by": { "invited_by_player_steam_id": [ - 1736 + 2004 ], "steam_id": [ - 1736 + 2004 ], "__typename": [ 63 @@ -19950,10 +24240,10 @@ export default { }, "match_invites_var_samp_order_by": { "invited_by_player_steam_id": [ - 1736 + 2004 ], "steam_id": [ - 1736 + 2004 ], "__typename": [ 63 @@ -19972,10 +24262,10 @@ export default { }, "match_invites_variance_order_by": { "invited_by_player_steam_id": [ - 1736 + 2004 ], "steam_id": [ - 1736 + 2004 ], "__typename": [ 63 @@ -19992,19 +24282,19 @@ export default { 63 ], "id": [ - 3319 + 3587 ], "lineup": [ - 1258 + 1499 ], "match_lineup_id": [ - 3319 + 3587 ], "placeholder_name": [ 63 ], "player": [ - 2603 + 2871 ], "steam_id": [ 162 @@ -20015,10 +24305,10 @@ export default { }, "match_lineup_players_aggregate": { "aggregate": [ - 1219 + 1460 ], "nodes": [ - 1213 + 1454 ], "__typename": [ 63 @@ -20026,13 +24316,13 @@ export default { }, "match_lineup_players_aggregate_bool_exp": { "bool_and": [ - 1216 + 1457 ], "bool_or": [ - 1217 + 1458 ], "count": [ - 1218 + 1459 ], "__typename": [ 63 @@ -20040,13 +24330,13 @@ export default { }, "match_lineup_players_aggregate_bool_exp_bool_and": { "arguments": [ - 1237 + 1478 ], "distinct": [ 3 ], "filter": [ - 1224 + 1465 ], "predicate": [ 4 @@ -20057,13 +24347,13 @@ export default { }, "match_lineup_players_aggregate_bool_exp_bool_or": { "arguments": [ - 1238 + 1479 ], "distinct": [ 3 ], "filter": [ - 1224 + 1465 ], "predicate": [ 4 @@ -20074,13 +24364,13 @@ export default { }, "match_lineup_players_aggregate_bool_exp_count": { "arguments": [ - 1236 + 1477 ], "distinct": [ 3 ], "filter": [ - 1224 + 1465 ], "predicate": [ 35 @@ -20091,13 +24381,13 @@ export default { }, "match_lineup_players_aggregate_fields": { "avg": [ - 1222 + 1463 ], "count": [ 34, { "columns": [ - 1236, + 1477, "[match_lineup_players_select_column!]" ], "distinct": [ @@ -20106,31 +24396,31 @@ export default { } ], "max": [ - 1228 + 1469 ], "min": [ - 1230 + 1471 ], "stddev": [ - 1240 + 1481 ], "stddev_pop": [ - 1242 + 1483 ], "stddev_samp": [ - 1244 + 1485 ], "sum": [ - 1248 + 1489 ], "var_pop": [ - 1252 + 1493 ], "var_samp": [ - 1254 + 1495 ], "variance": [ - 1256 + 1497 ], "__typename": [ 63 @@ -20138,37 +24428,37 @@ export default { }, "match_lineup_players_aggregate_order_by": { "avg": [ - 1223 + 1464 ], "count": [ - 1736 + 2004 ], "max": [ - 1229 + 1470 ], "min": [ - 1231 + 1472 ], "stddev": [ - 1241 + 1482 ], "stddev_pop": [ - 1243 + 1484 ], "stddev_samp": [ - 1245 + 1486 ], "sum": [ - 1249 + 1490 ], "var_pop": [ - 1253 + 1494 ], "var_samp": [ - 1255 + 1496 ], "variance": [ - 1257 + 1498 ], "__typename": [ 63 @@ -20176,10 +24466,10 @@ export default { }, "match_lineup_players_arr_rel_insert_input": { "data": [ - 1227 + 1468 ], "on_conflict": [ - 1233 + 1474 ], "__typename": [ 63 @@ -20195,7 +24485,7 @@ export default { }, "match_lineup_players_avg_order_by": { "steam_id": [ - 1736 + 2004 ], "__typename": [ 63 @@ -20203,13 +24493,13 @@ export default { }, "match_lineup_players_bool_exp": { "_and": [ - 1224 + 1465 ], "_not": [ - 1224 + 1465 ], "_or": [ - 1224 + 1465 ], "captain": [ 4 @@ -20221,19 +24511,19 @@ export default { 65 ], "id": [ - 3320 + 3588 ], "lineup": [ - 1267 + 1508 ], "match_lineup_id": [ - 3320 + 3588 ], "placeholder_name": [ 65 ], "player": [ - 2607 + 2875 ], "steam_id": [ 163 @@ -20262,19 +24552,19 @@ export default { 63 ], "id": [ - 3319 + 3587 ], "lineup": [ - 1276 + 1517 ], "match_lineup_id": [ - 3319 + 3587 ], "placeholder_name": [ 63 ], "player": [ - 2614 + 2882 ], "steam_id": [ 162 @@ -20288,10 +24578,10 @@ export default { 63 ], "id": [ - 3319 + 3587 ], "match_lineup_id": [ - 3319 + 3587 ], "placeholder_name": [ 63 @@ -20305,19 +24595,19 @@ export default { }, "match_lineup_players_max_order_by": { "discord_id": [ - 1736 + 2004 ], "id": [ - 1736 + 2004 ], "match_lineup_id": [ - 1736 + 2004 ], "placeholder_name": [ - 1736 + 2004 ], "steam_id": [ - 1736 + 2004 ], "__typename": [ 63 @@ -20328,10 +24618,10 @@ export default { 63 ], "id": [ - 3319 + 3587 ], "match_lineup_id": [ - 3319 + 3587 ], "placeholder_name": [ 63 @@ -20345,19 +24635,19 @@ export default { }, "match_lineup_players_min_order_by": { "discord_id": [ - 1736 + 2004 ], "id": [ - 1736 + 2004 ], "match_lineup_id": [ - 1736 + 2004 ], "placeholder_name": [ - 1736 + 2004 ], "steam_id": [ - 1736 + 2004 ], "__typename": [ 63 @@ -20368,7 +24658,7 @@ export default { 34 ], "returning": [ - 1213 + 1454 ], "__typename": [ 63 @@ -20376,13 +24666,13 @@ export default { }, "match_lineup_players_on_conflict": { "constraint": [ - 1225 + 1466 ], "update_columns": [ - 1250 + 1491 ], "where": [ - 1224 + 1465 ], "__typename": [ 63 @@ -20390,31 +24680,31 @@ export default { }, "match_lineup_players_order_by": { "captain": [ - 1736 + 2004 ], "checked_in": [ - 1736 + 2004 ], "discord_id": [ - 1736 + 2004 ], "id": [ - 1736 + 2004 ], "lineup": [ - 1278 + 1519 ], "match_lineup_id": [ - 1736 + 2004 ], "placeholder_name": [ - 1736 + 2004 ], "player": [ - 2616 + 2884 ], "steam_id": [ - 1736 + 2004 ], "__typename": [ 63 @@ -20422,7 +24712,7 @@ export default { }, "match_lineup_players_pk_columns_input": { "id": [ - 3319 + 3587 ], "__typename": [ 63 @@ -20442,10 +24732,10 @@ export default { 63 ], "id": [ - 3319 + 3587 ], "match_lineup_id": [ - 3319 + 3587 ], "placeholder_name": [ 63 @@ -20467,7 +24757,7 @@ export default { }, "match_lineup_players_stddev_order_by": { "steam_id": [ - 1736 + 2004 ], "__typename": [ 63 @@ -20483,7 +24773,7 @@ export default { }, "match_lineup_players_stddev_pop_order_by": { "steam_id": [ - 1736 + 2004 ], "__typename": [ 63 @@ -20499,7 +24789,7 @@ export default { }, "match_lineup_players_stddev_samp_order_by": { "steam_id": [ - 1736 + 2004 ], "__typename": [ 63 @@ -20507,7 +24797,7 @@ export default { }, "match_lineup_players_stream_cursor_input": { "initial_value": [ - 1247 + 1488 ], "ordering": [ 216 @@ -20527,10 +24817,10 @@ export default { 63 ], "id": [ - 3319 + 3587 ], "match_lineup_id": [ - 3319 + 3587 ], "placeholder_name": [ 63 @@ -20552,7 +24842,7 @@ export default { }, "match_lineup_players_sum_order_by": { "steam_id": [ - 1736 + 2004 ], "__typename": [ 63 @@ -20561,13 +24851,13 @@ export default { "match_lineup_players_update_column": {}, "match_lineup_players_updates": { "_inc": [ - 1226 + 1467 ], "_set": [ - 1239 + 1480 ], "where": [ - 1224 + 1465 ], "__typename": [ 63 @@ -20583,7 +24873,7 @@ export default { }, "match_lineup_players_var_pop_order_by": { "steam_id": [ - 1736 + 2004 ], "__typename": [ 63 @@ -20599,7 +24889,7 @@ export default { }, "match_lineup_players_var_samp_order_by": { "steam_id": [ - 1736 + 2004 ], "__typename": [ 63 @@ -20615,7 +24905,7 @@ export default { }, "match_lineup_players_variance_order_by": { "steam_id": [ - 1736 + 2004 ], "__typename": [ 63 @@ -20632,16 +24922,16 @@ export default { 3 ], "captain": [ - 3339 + 3607 ], "coach": [ - 2603 + 2871 ], "coach_steam_id": [ 162 ], "id": [ - 3319 + 3587 ], "is_on_lineup": [ 3 @@ -20656,10 +24946,10 @@ export default { 3 ], "lineup_players": [ - 1213, + 1454, { "distinct_on": [ - 1236, + 1477, "[match_lineup_players_select_column!]" ], "limit": [ @@ -20669,19 +24959,19 @@ export default { 34 ], "order_by": [ - 1234, + 1475, "[match_lineup_players_order_by!]" ], "where": [ - 1224 + 1465 ] } ], "lineup_players_aggregate": [ - 1214, + 1455, { "distinct_on": [ - 1236, + 1477, "[match_lineup_players_select_column!]" ], "limit": [ @@ -20691,25 +24981,25 @@ export default { 34 ], "order_by": [ - 1234, + 1475, "[match_lineup_players_order_by!]" ], "where": [ - 1224 + 1465 ] } ], "match": [ - 1578 + 1819 ], "match_id": [ - 3319 + 3587 ], "match_veto_picks": [ - 1392, + 1633, { "distinct_on": [ - 1410, + 1651, "[match_map_veto_picks_select_column!]" ], "limit": [ @@ -20719,19 +25009,19 @@ export default { 34 ], "order_by": [ - 1408, + 1649, "[match_map_veto_picks_order_by!]" ], "where": [ - 1399 + 1640 ] } ], "match_veto_picks_aggregate": [ - 1393, + 1634, { "distinct_on": [ - 1410, + 1651, "[match_map_veto_picks_select_column!]" ], "limit": [ @@ -20741,11 +25031,11 @@ export default { 34 ], "order_by": [ - 1408, + 1649, "[match_map_veto_picks_order_by!]" ], "where": [ - 1399 + 1640 ] } ], @@ -20753,10 +25043,10 @@ export default { 63 ], "team": [ - 2879 + 3147 ], "team_id": [ - 3319 + 3587 ], "team_name": [ 63 @@ -20767,10 +25057,10 @@ export default { }, "match_lineups_aggregate": { "aggregate": [ - 1262 + 1503 ], "nodes": [ - 1258 + 1499 ], "__typename": [ 63 @@ -20778,7 +25068,7 @@ export default { }, "match_lineups_aggregate_bool_exp": { "count": [ - 1261 + 1502 ], "__typename": [ 63 @@ -20786,13 +25076,13 @@ export default { }, "match_lineups_aggregate_bool_exp_count": { "arguments": [ - 1280 + 1521 ], "distinct": [ 3 ], "filter": [ - 1267 + 1508 ], "predicate": [ 35 @@ -20803,13 +25093,13 @@ export default { }, "match_lineups_aggregate_fields": { "avg": [ - 1265 + 1506 ], "count": [ 34, { "columns": [ - 1280, + 1521, "[match_lineups_select_column!]" ], "distinct": [ @@ -20818,31 +25108,31 @@ export default { } ], "max": [ - 1271 + 1512 ], "min": [ - 1273 + 1514 ], "stddev": [ - 1282 + 1523 ], "stddev_pop": [ - 1284 + 1525 ], "stddev_samp": [ - 1286 + 1527 ], "sum": [ - 1290 + 1531 ], "var_pop": [ - 1294 + 1535 ], "var_samp": [ - 1296 + 1537 ], "variance": [ - 1298 + 1539 ], "__typename": [ 63 @@ -20850,37 +25140,37 @@ export default { }, "match_lineups_aggregate_order_by": { "avg": [ - 1266 + 1507 ], "count": [ - 1736 + 2004 ], "max": [ - 1272 + 1513 ], "min": [ - 1274 + 1515 ], "stddev": [ - 1283 + 1524 ], "stddev_pop": [ - 1285 + 1526 ], "stddev_samp": [ - 1287 + 1528 ], "sum": [ - 1291 + 1532 ], "var_pop": [ - 1295 + 1536 ], "var_samp": [ - 1297 + 1538 ], "variance": [ - 1299 + 1540 ], "__typename": [ 63 @@ -20888,10 +25178,10 @@ export default { }, "match_lineups_arr_rel_insert_input": { "data": [ - 1270 + 1511 ], "on_conflict": [ - 1277 + 1518 ], "__typename": [ 63 @@ -20907,7 +25197,7 @@ export default { }, "match_lineups_avg_order_by": { "coach_steam_id": [ - 1736 + 2004 ], "__typename": [ 63 @@ -20915,13 +25205,13 @@ export default { }, "match_lineups_bool_exp": { "_and": [ - 1267 + 1508 ], "_not": [ - 1267 + 1508 ], "_or": [ - 1267 + 1508 ], "can_pick_map_veto": [ 4 @@ -20933,16 +25223,16 @@ export default { 4 ], "captain": [ - 3343 + 3611 ], "coach": [ - 2607 + 2875 ], "coach_steam_id": [ 163 ], "id": [ - 3320 + 3588 ], "is_on_lineup": [ 4 @@ -20957,31 +25247,31 @@ export default { 4 ], "lineup_players": [ - 1224 + 1465 ], "lineup_players_aggregate": [ - 1215 + 1456 ], "match": [ - 1587 + 1828 ], "match_id": [ - 3320 + 3588 ], "match_veto_picks": [ - 1399 + 1640 ], "match_veto_picks_aggregate": [ - 1394 + 1635 ], "name": [ 65 ], "team": [ - 2888 + 3156 ], "team_id": [ - 3320 + 3588 ], "team_name": [ 65 @@ -21001,34 +25291,34 @@ export default { }, "match_lineups_insert_input": { "captain": [ - 3349 + 3617 ], "coach": [ - 2614 + 2882 ], "coach_steam_id": [ 162 ], "id": [ - 3319 + 3587 ], "lineup_players": [ - 1221 + 1462 ], "match": [ - 1596 + 1837 ], "match_id": [ - 3319 + 3587 ], "match_veto_picks": [ - 1398 + 1639 ], "team": [ - 2897 + 3165 ], "team_id": [ - 3319 + 3587 ], "team_name": [ 63 @@ -21042,16 +25332,16 @@ export default { 162 ], "id": [ - 3319 + 3587 ], "match_id": [ - 3319 + 3587 ], "name": [ 63 ], "team_id": [ - 3319 + 3587 ], "team_name": [ 63 @@ -21062,19 +25352,19 @@ export default { }, "match_lineups_max_order_by": { "coach_steam_id": [ - 1736 + 2004 ], "id": [ - 1736 + 2004 ], "match_id": [ - 1736 + 2004 ], "team_id": [ - 1736 + 2004 ], "team_name": [ - 1736 + 2004 ], "__typename": [ 63 @@ -21085,16 +25375,16 @@ export default { 162 ], "id": [ - 3319 + 3587 ], "match_id": [ - 3319 + 3587 ], "name": [ 63 ], "team_id": [ - 3319 + 3587 ], "team_name": [ 63 @@ -21105,19 +25395,19 @@ export default { }, "match_lineups_min_order_by": { "coach_steam_id": [ - 1736 + 2004 ], "id": [ - 1736 + 2004 ], "match_id": [ - 1736 + 2004 ], "team_id": [ - 1736 + 2004 ], "team_name": [ - 1736 + 2004 ], "__typename": [ 63 @@ -21128,7 +25418,7 @@ export default { 34 ], "returning": [ - 1258 + 1499 ], "__typename": [ 63 @@ -21136,10 +25426,10 @@ export default { }, "match_lineups_obj_rel_insert_input": { "data": [ - 1270 + 1511 ], "on_conflict": [ - 1277 + 1518 ], "__typename": [ 63 @@ -21147,13 +25437,13 @@ export default { }, "match_lineups_on_conflict": { "constraint": [ - 1268 + 1509 ], "update_columns": [ - 1292 + 1533 ], "where": [ - 1267 + 1508 ], "__typename": [ 63 @@ -21161,61 +25451,61 @@ export default { }, "match_lineups_order_by": { "can_pick_map_veto": [ - 1736 + 2004 ], "can_pick_region_veto": [ - 1736 + 2004 ], "can_update_lineup": [ - 1736 + 2004 ], "captain": [ - 3350 + 3618 ], "coach": [ - 2616 + 2884 ], "coach_steam_id": [ - 1736 + 2004 ], "id": [ - 1736 + 2004 ], "is_on_lineup": [ - 1736 + 2004 ], "is_picking_map_veto": [ - 1736 + 2004 ], "is_picking_region_veto": [ - 1736 + 2004 ], "is_ready": [ - 1736 + 2004 ], "lineup_players_aggregate": [ - 1220 + 1461 ], "match": [ - 1598 + 1839 ], "match_id": [ - 1736 + 2004 ], "match_veto_picks_aggregate": [ - 1397 + 1638 ], "name": [ - 1736 + 2004 ], "team": [ - 2899 + 3167 ], "team_id": [ - 1736 + 2004 ], "team_name": [ - 1736 + 2004 ], "__typename": [ 63 @@ -21223,7 +25513,7 @@ export default { }, "match_lineups_pk_columns_input": { "id": [ - 3319 + 3587 ], "__typename": [ 63 @@ -21235,13 +25525,13 @@ export default { 162 ], "id": [ - 3319 + 3587 ], "match_id": [ - 3319 + 3587 ], "team_id": [ - 3319 + 3587 ], "team_name": [ 63 @@ -21260,7 +25550,7 @@ export default { }, "match_lineups_stddev_order_by": { "coach_steam_id": [ - 1736 + 2004 ], "__typename": [ 63 @@ -21276,7 +25566,7 @@ export default { }, "match_lineups_stddev_pop_order_by": { "coach_steam_id": [ - 1736 + 2004 ], "__typename": [ 63 @@ -21292,7 +25582,7 @@ export default { }, "match_lineups_stddev_samp_order_by": { "coach_steam_id": [ - 1736 + 2004 ], "__typename": [ 63 @@ -21300,7 +25590,7 @@ export default { }, "match_lineups_stream_cursor_input": { "initial_value": [ - 1289 + 1530 ], "ordering": [ 216 @@ -21314,13 +25604,13 @@ export default { 162 ], "id": [ - 3319 + 3587 ], "match_id": [ - 3319 + 3587 ], "team_id": [ - 3319 + 3587 ], "team_name": [ 63 @@ -21339,7 +25629,7 @@ export default { }, "match_lineups_sum_order_by": { "coach_steam_id": [ - 1736 + 2004 ], "__typename": [ 63 @@ -21348,13 +25638,13 @@ export default { "match_lineups_update_column": {}, "match_lineups_updates": { "_inc": [ - 1269 + 1510 ], "_set": [ - 1281 + 1522 ], "where": [ - 1267 + 1508 ], "__typename": [ 63 @@ -21370,7 +25660,7 @@ export default { }, "match_lineups_var_pop_order_by": { "coach_steam_id": [ - 1736 + 2004 ], "__typename": [ 63 @@ -21386,7 +25676,7 @@ export default { }, "match_lineups_var_samp_order_by": { "coach_steam_id": [ - 1736 + 2004 ], "__typename": [ 63 @@ -21402,7 +25692,7 @@ export default { }, "match_lineups_variance_order_by": { "coach_steam_id": [ - 1736 + 2004 ], "__typename": [ 63 @@ -21410,7 +25700,7 @@ export default { }, "match_map_demos": { "bombs": [ - 946, + 1187, { "path": [ 63 @@ -21462,16 +25752,16 @@ export default { } ], "created_at": [ - 2922 + 3190 ], "cs2_build": [ 63 ], "demo_sessions": [ - 1126, + 1367, { "distinct_on": [ - 1152, + 1393, "[match_demo_sessions_select_column!]" ], "limit": [ @@ -21481,19 +25771,19 @@ export default { 34 ], "order_by": [ - 1149, + 1390, "[match_demo_sessions_order_by!]" ], "where": [ - 1136 + 1377 ] } ], "demo_sessions_aggregate": [ - 1127, + 1368, { "distinct_on": [ - 1152, + 1393, "[match_demo_sessions_select_column!]" ], "limit": [ @@ -21503,11 +25793,11 @@ export default { 34 ], "order_by": [ - 1149, + 1390, "[match_demo_sessions_order_by!]" ], "where": [ - 1136 + 1377 ] } ], @@ -21524,10 +25814,10 @@ export default { 3 ], "id": [ - 3319 + 3587 ], "kills": [ - 946, + 1187, { "path": [ 63 @@ -21538,13 +25828,13 @@ export default { 63 ], "match": [ - 1578 + 1819 ], "match_clips": [ - 1084, + 1325, { "distinct_on": [ - 1106, + 1347, "[match_clips_select_column!]" ], "limit": [ @@ -21554,19 +25844,19 @@ export default { 34 ], "order_by": [ - 1104, + 1345, "[match_clips_order_by!]" ], "where": [ - 1093 + 1334 ] } ], "match_clips_aggregate": [ - 1085, + 1326, { "distinct_on": [ - 1106, + 1347, "[match_clips_select_column!]" ], "limit": [ @@ -21576,25 +25866,25 @@ export default { 34 ], "order_by": [ - 1104, + 1345, "[match_clips_order_by!]" ], "where": [ - 1093 + 1334 ] } ], "match_id": [ - 3319 + 3587 ], "match_map": [ - 1416 + 1657 ], "match_map_id": [ - 3319 + 3587 ], "metadata_parsed_at": [ - 2922 + 3190 ], "playback_file": [ 63 @@ -21606,7 +25896,7 @@ export default { 63 ], "players": [ - 946, + 1187, { "path": [ 63 @@ -21614,7 +25904,7 @@ export default { } ], "round_ticks": [ - 946, + 1187, { "path": [ 63 @@ -21639,10 +25929,10 @@ export default { }, "match_map_demos_aggregate": { "aggregate": [ - 1306 + 1547 ], "nodes": [ - 1300 + 1541 ], "__typename": [ 63 @@ -21650,13 +25940,13 @@ export default { }, "match_map_demos_aggregate_bool_exp": { "bool_and": [ - 1303 + 1544 ], "bool_or": [ - 1304 + 1545 ], "count": [ - 1305 + 1546 ], "__typename": [ 63 @@ -21664,13 +25954,13 @@ export default { }, "match_map_demos_aggregate_bool_exp_bool_and": { "arguments": [ - 1330 + 1571 ], "distinct": [ 3 ], "filter": [ - 1312 + 1553 ], "predicate": [ 4 @@ -21681,13 +25971,13 @@ export default { }, "match_map_demos_aggregate_bool_exp_bool_or": { "arguments": [ - 1331 + 1572 ], "distinct": [ 3 ], "filter": [ - 1312 + 1553 ], "predicate": [ 4 @@ -21698,13 +25988,13 @@ export default { }, "match_map_demos_aggregate_bool_exp_count": { "arguments": [ - 1329 + 1570 ], "distinct": [ 3 ], "filter": [ - 1312 + 1553 ], "predicate": [ 35 @@ -21715,13 +26005,13 @@ export default { }, "match_map_demos_aggregate_fields": { "avg": [ - 1310 + 1551 ], "count": [ 34, { "columns": [ - 1329, + 1570, "[match_map_demos_select_column!]" ], "distinct": [ @@ -21730,31 +26020,31 @@ export default { } ], "max": [ - 1319 + 1560 ], "min": [ - 1321 + 1562 ], "stddev": [ - 1333 + 1574 ], "stddev_pop": [ - 1335 + 1576 ], "stddev_samp": [ - 1337 + 1578 ], "sum": [ - 1341 + 1582 ], "var_pop": [ - 1345 + 1586 ], "var_samp": [ - 1347 + 1588 ], "variance": [ - 1349 + 1590 ], "__typename": [ 63 @@ -21762,37 +26052,37 @@ export default { }, "match_map_demos_aggregate_order_by": { "avg": [ - 1311 + 1552 ], "count": [ - 1736 + 2004 ], "max": [ - 1320 + 1561 ], "min": [ - 1322 + 1563 ], "stddev": [ - 1334 + 1575 ], "stddev_pop": [ - 1336 + 1577 ], "stddev_samp": [ - 1338 + 1579 ], "sum": [ - 1342 + 1583 ], "var_pop": [ - 1346 + 1587 ], "var_samp": [ - 1348 + 1589 ], "variance": [ - 1350 + 1591 ], "__typename": [ 63 @@ -21800,16 +26090,16 @@ export default { }, "match_map_demos_append_input": { "bombs": [ - 946 + 1187 ], "kills": [ - 946 + 1187 ], "players": [ - 946 + 1187 ], "round_ticks": [ - 946 + 1187 ], "__typename": [ 63 @@ -21817,10 +26107,10 @@ export default { }, "match_map_demos_arr_rel_insert_input": { "data": [ - 1318 + 1559 ], "on_conflict": [ - 1325 + 1566 ], "__typename": [ 63 @@ -21848,19 +26138,19 @@ export default { }, "match_map_demos_avg_order_by": { "duration_seconds": [ - 1736 + 2004 ], "playback_size": [ - 1736 + 2004 ], "size": [ - 1736 + 2004 ], "tick_rate": [ - 1736 + 2004 ], "total_ticks": [ - 1736 + 2004 ], "__typename": [ 63 @@ -21868,16 +26158,16 @@ export default { }, "match_map_demos_bool_exp": { "_and": [ - 1312 + 1553 ], "_not": [ - 1312 + 1553 ], "_or": [ - 1312 + 1553 ], "bombs": [ - 948 + 1189 ], "clip_render_jobs": [ 178 @@ -21886,16 +26176,16 @@ export default { 168 ], "created_at": [ - 2923 + 3191 ], "cs2_build": [ 65 ], "demo_sessions": [ - 1136 + 1377 ], "demo_sessions_aggregate": [ - 1128 + 1369 ], "download_url": [ 65 @@ -21910,34 +26200,34 @@ export default { 4 ], "id": [ - 3320 + 3588 ], "kills": [ - 948 + 1189 ], "map_name": [ 65 ], "match": [ - 1587 + 1828 ], "match_clips": [ - 1093 + 1334 ], "match_clips_aggregate": [ - 1086 + 1327 ], "match_id": [ - 3320 + 3588 ], "match_map": [ - 1425 + 1666 ], "match_map_id": [ - 3320 + 3588 ], "metadata_parsed_at": [ - 2923 + 3191 ], "playback_file": [ 65 @@ -21949,10 +26239,10 @@ export default { 65 ], "players": [ - 948 + 1189 ], "round_ticks": [ - 948 + 1189 ], "size": [ 35 @@ -22041,19 +26331,19 @@ export default { }, "match_map_demos_insert_input": { "bombs": [ - 946 + 1187 ], "clip_render_jobs": [ 175 ], "created_at": [ - 2922 + 3190 ], "cs2_build": [ 63 ], "demo_sessions": [ - 1133 + 1374 ], "file": [ 63 @@ -22062,31 +26352,31 @@ export default { 3 ], "id": [ - 3319 + 3587 ], "kills": [ - 946 + 1187 ], "map_name": [ 63 ], "match": [ - 1596 + 1837 ], "match_clips": [ - 1090 + 1331 ], "match_id": [ - 3319 + 3587 ], "match_map": [ - 1434 + 1675 ], "match_map_id": [ - 3319 + 3587 ], "metadata_parsed_at": [ - 2922 + 3190 ], "playback_file": [ 63 @@ -22095,10 +26385,10 @@ export default { 34 ], "players": [ - 946 + 1187 ], "round_ticks": [ - 946 + 1187 ], "size": [ 34 @@ -22118,7 +26408,7 @@ export default { }, "match_map_demos_max_fields": { "created_at": [ - 2922 + 3190 ], "cs2_build": [ 63 @@ -22133,19 +26423,19 @@ export default { 63 ], "id": [ - 3319 + 3587 ], "map_name": [ 63 ], "match_id": [ - 3319 + 3587 ], "match_map_id": [ - 3319 + 3587 ], "metadata_parsed_at": [ - 2922 + 3190 ], "playback_file": [ 63 @@ -22174,49 +26464,49 @@ export default { }, "match_map_demos_max_order_by": { "created_at": [ - 1736 + 2004 ], "cs2_build": [ - 1736 + 2004 ], "duration_seconds": [ - 1736 + 2004 ], "file": [ - 1736 + 2004 ], "id": [ - 1736 + 2004 ], "map_name": [ - 1736 + 2004 ], "match_id": [ - 1736 + 2004 ], "match_map_id": [ - 1736 + 2004 ], "metadata_parsed_at": [ - 1736 + 2004 ], "playback_file": [ - 1736 + 2004 ], "playback_size": [ - 1736 + 2004 ], "size": [ - 1736 + 2004 ], "tick_rate": [ - 1736 + 2004 ], "total_ticks": [ - 1736 + 2004 ], "workshop_id": [ - 1736 + 2004 ], "__typename": [ 63 @@ -22224,7 +26514,7 @@ export default { }, "match_map_demos_min_fields": { "created_at": [ - 2922 + 3190 ], "cs2_build": [ 63 @@ -22239,19 +26529,19 @@ export default { 63 ], "id": [ - 3319 + 3587 ], "map_name": [ 63 ], "match_id": [ - 3319 + 3587 ], "match_map_id": [ - 3319 + 3587 ], "metadata_parsed_at": [ - 2922 + 3190 ], "playback_file": [ 63 @@ -22280,49 +26570,49 @@ export default { }, "match_map_demos_min_order_by": { "created_at": [ - 1736 + 2004 ], "cs2_build": [ - 1736 + 2004 ], "duration_seconds": [ - 1736 + 2004 ], "file": [ - 1736 + 2004 ], "id": [ - 1736 + 2004 ], "map_name": [ - 1736 + 2004 ], "match_id": [ - 1736 + 2004 ], "match_map_id": [ - 1736 + 2004 ], "metadata_parsed_at": [ - 1736 + 2004 ], "playback_file": [ - 1736 + 2004 ], "playback_size": [ - 1736 + 2004 ], "size": [ - 1736 + 2004 ], "tick_rate": [ - 1736 + 2004 ], "total_ticks": [ - 1736 + 2004 ], "workshop_id": [ - 1736 + 2004 ], "__typename": [ 63 @@ -22333,7 +26623,7 @@ export default { 34 ], "returning": [ - 1300 + 1541 ], "__typename": [ 63 @@ -22341,10 +26631,10 @@ export default { }, "match_map_demos_obj_rel_insert_input": { "data": [ - 1318 + 1559 ], "on_conflict": [ - 1325 + 1566 ], "__typename": [ 63 @@ -22352,13 +26642,13 @@ export default { }, "match_map_demos_on_conflict": { "constraint": [ - 1313 + 1554 ], "update_columns": [ - 1343 + 1584 ], "where": [ - 1312 + 1553 ], "__typename": [ 63 @@ -22366,85 +26656,85 @@ export default { }, "match_map_demos_order_by": { "bombs": [ - 1736 + 2004 ], "clip_render_jobs_aggregate": [ 173 ], "created_at": [ - 1736 + 2004 ], "cs2_build": [ - 1736 + 2004 ], "demo_sessions_aggregate": [ - 1131 + 1372 ], "download_url": [ - 1736 + 2004 ], "duration_seconds": [ - 1736 + 2004 ], "file": [ - 1736 + 2004 ], "geometry_validated": [ - 1736 + 2004 ], "id": [ - 1736 + 2004 ], "kills": [ - 1736 + 2004 ], "map_name": [ - 1736 + 2004 ], "match": [ - 1598 + 1839 ], "match_clips_aggregate": [ - 1089 + 1330 ], "match_id": [ - 1736 + 2004 ], "match_map": [ - 1436 + 1677 ], "match_map_id": [ - 1736 + 2004 ], "metadata_parsed_at": [ - 1736 + 2004 ], "playback_file": [ - 1736 + 2004 ], "playback_size": [ - 1736 + 2004 ], "playback_url": [ - 1736 + 2004 ], "players": [ - 1736 + 2004 ], "round_ticks": [ - 1736 + 2004 ], "size": [ - 1736 + 2004 ], "tick_rate": [ - 1736 + 2004 ], "total_ticks": [ - 1736 + 2004 ], "workshop_id": [ - 1736 + 2004 ], "__typename": [ 63 @@ -22452,7 +26742,7 @@ export default { }, "match_map_demos_pk_columns_input": { "id": [ - 3319 + 3587 ], "__typename": [ 63 @@ -22460,16 +26750,16 @@ export default { }, "match_map_demos_prepend_input": { "bombs": [ - 946 + 1187 ], "kills": [ - 946 + 1187 ], "players": [ - 946 + 1187 ], "round_ticks": [ - 946 + 1187 ], "__typename": [ 63 @@ -22480,10 +26770,10 @@ export default { "match_map_demos_select_column_match_map_demos_aggregate_bool_exp_bool_or_arguments_columns": {}, "match_map_demos_set_input": { "bombs": [ - 946 + 1187 ], "created_at": [ - 2922 + 3190 ], "cs2_build": [ 63 @@ -22495,22 +26785,22 @@ export default { 3 ], "id": [ - 3319 + 3587 ], "kills": [ - 946 + 1187 ], "map_name": [ 63 ], "match_id": [ - 3319 + 3587 ], "match_map_id": [ - 3319 + 3587 ], "metadata_parsed_at": [ - 2922 + 3190 ], "playback_file": [ 63 @@ -22519,10 +26809,10 @@ export default { 34 ], "players": [ - 946 + 1187 ], "round_ticks": [ - 946 + 1187 ], "size": [ 34 @@ -22562,19 +26852,19 @@ export default { }, "match_map_demos_stddev_order_by": { "duration_seconds": [ - 1736 + 2004 ], "playback_size": [ - 1736 + 2004 ], "size": [ - 1736 + 2004 ], "tick_rate": [ - 1736 + 2004 ], "total_ticks": [ - 1736 + 2004 ], "__typename": [ 63 @@ -22602,19 +26892,19 @@ export default { }, "match_map_demos_stddev_pop_order_by": { "duration_seconds": [ - 1736 + 2004 ], "playback_size": [ - 1736 + 2004 ], "size": [ - 1736 + 2004 ], "tick_rate": [ - 1736 + 2004 ], "total_ticks": [ - 1736 + 2004 ], "__typename": [ 63 @@ -22642,19 +26932,19 @@ export default { }, "match_map_demos_stddev_samp_order_by": { "duration_seconds": [ - 1736 + 2004 ], "playback_size": [ - 1736 + 2004 ], "size": [ - 1736 + 2004 ], "tick_rate": [ - 1736 + 2004 ], "total_ticks": [ - 1736 + 2004 ], "__typename": [ 63 @@ -22662,7 +26952,7 @@ export default { }, "match_map_demos_stream_cursor_input": { "initial_value": [ - 1340 + 1581 ], "ordering": [ 216 @@ -22673,10 +26963,10 @@ export default { }, "match_map_demos_stream_cursor_value_input": { "bombs": [ - 946 + 1187 ], "created_at": [ - 2922 + 3190 ], "cs2_build": [ 63 @@ -22691,22 +26981,22 @@ export default { 3 ], "id": [ - 3319 + 3587 ], "kills": [ - 946 + 1187 ], "map_name": [ 63 ], "match_id": [ - 3319 + 3587 ], "match_map_id": [ - 3319 + 3587 ], "metadata_parsed_at": [ - 2922 + 3190 ], "playback_file": [ 63 @@ -22715,10 +27005,10 @@ export default { 34 ], "players": [ - 946 + 1187 ], "round_ticks": [ - 946 + 1187 ], "size": [ 34 @@ -22758,19 +27048,19 @@ export default { }, "match_map_demos_sum_order_by": { "duration_seconds": [ - 1736 + 2004 ], "playback_size": [ - 1736 + 2004 ], "size": [ - 1736 + 2004 ], "tick_rate": [ - 1736 + 2004 ], "total_ticks": [ - 1736 + 2004 ], "__typename": [ 63 @@ -22779,28 +27069,28 @@ export default { "match_map_demos_update_column": {}, "match_map_demos_updates": { "_append": [ - 1308 + 1549 ], "_delete_at_path": [ - 1314 + 1555 ], "_delete_elem": [ - 1315 + 1556 ], "_delete_key": [ - 1316 + 1557 ], "_inc": [ - 1317 + 1558 ], "_prepend": [ - 1328 + 1569 ], "_set": [ - 1332 + 1573 ], "where": [ - 1312 + 1553 ], "__typename": [ 63 @@ -22828,19 +27118,19 @@ export default { }, "match_map_demos_var_pop_order_by": { "duration_seconds": [ - 1736 + 2004 ], "playback_size": [ - 1736 + 2004 ], "size": [ - 1736 + 2004 ], "tick_rate": [ - 1736 + 2004 ], "total_ticks": [ - 1736 + 2004 ], "__typename": [ 63 @@ -22868,19 +27158,19 @@ export default { }, "match_map_demos_var_samp_order_by": { "duration_seconds": [ - 1736 + 2004 ], "playback_size": [ - 1736 + 2004 ], "size": [ - 1736 + 2004 ], "tick_rate": [ - 1736 + 2004 ], "total_ticks": [ - 1736 + 2004 ], "__typename": [ 63 @@ -22908,19 +27198,19 @@ export default { }, "match_map_demos_variance_order_by": { "duration_seconds": [ - 1736 + 2004 ], "playback_size": [ - 1736 + 2004 ], "size": [ - 1736 + 2004 ], "tick_rate": [ - 1736 + 2004 ], "total_ticks": [ - 1736 + 2004 ], "__typename": [ 63 @@ -22928,10 +27218,10 @@ export default { }, "match_map_rounds": { "assists": [ - 1874, + 2142, { "distinct_on": [ - 1897, + 2165, "[player_assists_select_column!]" ], "limit": [ @@ -22941,19 +27231,19 @@ export default { 34 ], "order_by": [ - 1895, + 2163, "[player_assists_order_by!]" ], "where": [ - 1885 + 2153 ] } ], "assists_aggregate": [ - 1875, + 2143, { "distinct_on": [ - 1897, + 2165, "[player_assists_select_column!]" ], "limit": [ @@ -22963,11 +27253,11 @@ export default { 34 ], "order_by": [ - 1895, + 2163, "[player_assists_order_by!]" ], "where": [ - 1885 + 2153 ] } ], @@ -22975,22 +27265,22 @@ export default { 63 ], "created_at": [ - 2922 + 3190 ], "deleted_at": [ - 2922 + 3190 ], "has_backup_file": [ 3 ], "id": [ - 3319 + 3587 ], "kills": [ - 2091, + 2359, { "distinct_on": [ - 2155, + 2423, "[player_kills_select_column!]" ], "limit": [ @@ -23000,19 +27290,19 @@ export default { 34 ], "order_by": [ - 2153, + 2421, "[player_kills_order_by!]" ], "where": [ - 2102 + 2370 ] } ], "kills_aggregate": [ - 2092, + 2360, { "distinct_on": [ - 2155, + 2423, "[player_kills_select_column!]" ], "limit": [ @@ -23022,11 +27312,11 @@ export default { 34 ], "order_by": [ - 2153, + 2421, "[player_kills_order_by!]" ], "where": [ - 2102 + 2370 ] } ], @@ -23037,7 +27327,7 @@ export default { 34 ], "lineup_1_side": [ - 617 + 858 ], "lineup_1_timeouts_available": [ 34 @@ -23049,25 +27339,25 @@ export default { 34 ], "lineup_2_side": [ - 617 + 858 ], "lineup_2_timeouts_available": [ 34 ], "match_map": [ - 1416 + 1657 ], "match_map_id": [ - 3319 + 3587 ], "round": [ 34 ], "time": [ - 2922 + 3190 ], "winning_reason": [ - 780 + 1021 ], "winning_side": [ 63 @@ -23078,10 +27368,10 @@ export default { }, "match_map_rounds_aggregate": { "aggregate": [ - 1355 + 1596 ], "nodes": [ - 1351 + 1592 ], "__typename": [ 63 @@ -23089,7 +27379,7 @@ export default { }, "match_map_rounds_aggregate_bool_exp": { "count": [ - 1354 + 1595 ], "__typename": [ 63 @@ -23097,13 +27387,13 @@ export default { }, "match_map_rounds_aggregate_bool_exp_count": { "arguments": [ - 1372 + 1613 ], "distinct": [ 3 ], "filter": [ - 1360 + 1601 ], "predicate": [ 35 @@ -23114,13 +27404,13 @@ export default { }, "match_map_rounds_aggregate_fields": { "avg": [ - 1358 + 1599 ], "count": [ 34, { "columns": [ - 1372, + 1613, "[match_map_rounds_select_column!]" ], "distinct": [ @@ -23129,31 +27419,31 @@ export default { } ], "max": [ - 1364 + 1605 ], "min": [ - 1366 + 1607 ], "stddev": [ - 1374 + 1615 ], "stddev_pop": [ - 1376 + 1617 ], "stddev_samp": [ - 1378 + 1619 ], "sum": [ - 1382 + 1623 ], "var_pop": [ - 1386 + 1627 ], "var_samp": [ - 1388 + 1629 ], "variance": [ - 1390 + 1631 ], "__typename": [ 63 @@ -23161,37 +27451,37 @@ export default { }, "match_map_rounds_aggregate_order_by": { "avg": [ - 1359 + 1600 ], "count": [ - 1736 + 2004 ], "max": [ - 1365 + 1606 ], "min": [ - 1367 + 1608 ], "stddev": [ - 1375 + 1616 ], "stddev_pop": [ - 1377 + 1618 ], "stddev_samp": [ - 1379 + 1620 ], "sum": [ - 1383 + 1624 ], "var_pop": [ - 1387 + 1628 ], "var_samp": [ - 1389 + 1630 ], "variance": [ - 1391 + 1632 ], "__typename": [ 63 @@ -23199,10 +27489,10 @@ export default { }, "match_map_rounds_arr_rel_insert_input": { "data": [ - 1363 + 1604 ], "on_conflict": [ - 1369 + 1610 ], "__typename": [ 63 @@ -23236,25 +27526,25 @@ export default { }, "match_map_rounds_avg_order_by": { "lineup_1_money": [ - 1736 + 2004 ], "lineup_1_score": [ - 1736 + 2004 ], "lineup_1_timeouts_available": [ - 1736 + 2004 ], "lineup_2_money": [ - 1736 + 2004 ], "lineup_2_score": [ - 1736 + 2004 ], "lineup_2_timeouts_available": [ - 1736 + 2004 ], "round": [ - 1736 + 2004 ], "__typename": [ 63 @@ -23262,40 +27552,40 @@ export default { }, "match_map_rounds_bool_exp": { "_and": [ - 1360 + 1601 ], "_not": [ - 1360 + 1601 ], "_or": [ - 1360 + 1601 ], "assists": [ - 1885 + 2153 ], "assists_aggregate": [ - 1876 + 2144 ], "backup_file": [ 65 ], "created_at": [ - 2923 + 3191 ], "deleted_at": [ - 2923 + 3191 ], "has_backup_file": [ 4 ], "id": [ - 3320 + 3588 ], "kills": [ - 2102 + 2370 ], "kills_aggregate": [ - 2093 + 2361 ], "lineup_1_money": [ 35 @@ -23304,7 +27594,7 @@ export default { 35 ], "lineup_1_side": [ - 618 + 859 ], "lineup_1_timeouts_available": [ 35 @@ -23316,25 +27606,25 @@ export default { 35 ], "lineup_2_side": [ - 618 + 859 ], "lineup_2_timeouts_available": [ 35 ], "match_map": [ - 1425 + 1666 ], "match_map_id": [ - 3320 + 3588 ], "round": [ 35 ], "time": [ - 2923 + 3191 ], "winning_reason": [ - 781 + 1022 ], "winning_side": [ 65 @@ -23372,22 +27662,22 @@ export default { }, "match_map_rounds_insert_input": { "assists": [ - 1882 + 2150 ], "backup_file": [ 63 ], "created_at": [ - 2922 + 3190 ], "deleted_at": [ - 2922 + 3190 ], "id": [ - 3319 + 3587 ], "kills": [ - 2099 + 2367 ], "lineup_1_money": [ 34 @@ -23396,7 +27686,7 @@ export default { 34 ], "lineup_1_side": [ - 617 + 858 ], "lineup_1_timeouts_available": [ 34 @@ -23408,25 +27698,25 @@ export default { 34 ], "lineup_2_side": [ - 617 + 858 ], "lineup_2_timeouts_available": [ 34 ], "match_map": [ - 1434 + 1675 ], "match_map_id": [ - 3319 + 3587 ], "round": [ 34 ], "time": [ - 2922 + 3190 ], "winning_reason": [ - 780 + 1021 ], "winning_side": [ 63 @@ -23440,13 +27730,13 @@ export default { 63 ], "created_at": [ - 2922 + 3190 ], "deleted_at": [ - 2922 + 3190 ], "id": [ - 3319 + 3587 ], "lineup_1_money": [ 34 @@ -23467,13 +27757,13 @@ export default { 34 ], "match_map_id": [ - 3319 + 3587 ], "round": [ 34 ], "time": [ - 2922 + 3190 ], "winning_side": [ 63 @@ -23484,46 +27774,46 @@ export default { }, "match_map_rounds_max_order_by": { "backup_file": [ - 1736 + 2004 ], "created_at": [ - 1736 + 2004 ], "deleted_at": [ - 1736 + 2004 ], "id": [ - 1736 + 2004 ], "lineup_1_money": [ - 1736 + 2004 ], "lineup_1_score": [ - 1736 + 2004 ], "lineup_1_timeouts_available": [ - 1736 + 2004 ], "lineup_2_money": [ - 1736 + 2004 ], "lineup_2_score": [ - 1736 + 2004 ], "lineup_2_timeouts_available": [ - 1736 + 2004 ], "match_map_id": [ - 1736 + 2004 ], "round": [ - 1736 + 2004 ], "time": [ - 1736 + 2004 ], "winning_side": [ - 1736 + 2004 ], "__typename": [ 63 @@ -23534,13 +27824,13 @@ export default { 63 ], "created_at": [ - 2922 + 3190 ], "deleted_at": [ - 2922 + 3190 ], "id": [ - 3319 + 3587 ], "lineup_1_money": [ 34 @@ -23561,13 +27851,13 @@ export default { 34 ], "match_map_id": [ - 3319 + 3587 ], "round": [ 34 ], "time": [ - 2922 + 3190 ], "winning_side": [ 63 @@ -23578,46 +27868,46 @@ export default { }, "match_map_rounds_min_order_by": { "backup_file": [ - 1736 + 2004 ], "created_at": [ - 1736 + 2004 ], "deleted_at": [ - 1736 + 2004 ], "id": [ - 1736 + 2004 ], "lineup_1_money": [ - 1736 + 2004 ], "lineup_1_score": [ - 1736 + 2004 ], "lineup_1_timeouts_available": [ - 1736 + 2004 ], "lineup_2_money": [ - 1736 + 2004 ], "lineup_2_score": [ - 1736 + 2004 ], "lineup_2_timeouts_available": [ - 1736 + 2004 ], "match_map_id": [ - 1736 + 2004 ], "round": [ - 1736 + 2004 ], "time": [ - 1736 + 2004 ], "winning_side": [ - 1736 + 2004 ], "__typename": [ 63 @@ -23628,7 +27918,7 @@ export default { 34 ], "returning": [ - 1351 + 1592 ], "__typename": [ 63 @@ -23636,13 +27926,13 @@ export default { }, "match_map_rounds_on_conflict": { "constraint": [ - 1361 + 1602 ], "update_columns": [ - 1384 + 1625 ], "where": [ - 1360 + 1601 ], "__typename": [ 63 @@ -23650,67 +27940,67 @@ export default { }, "match_map_rounds_order_by": { "assists_aggregate": [ - 1881 + 2149 ], "backup_file": [ - 1736 + 2004 ], "created_at": [ - 1736 + 2004 ], "deleted_at": [ - 1736 + 2004 ], "has_backup_file": [ - 1736 + 2004 ], "id": [ - 1736 + 2004 ], "kills_aggregate": [ - 2098 + 2366 ], "lineup_1_money": [ - 1736 + 2004 ], "lineup_1_score": [ - 1736 + 2004 ], "lineup_1_side": [ - 1736 + 2004 ], "lineup_1_timeouts_available": [ - 1736 + 2004 ], "lineup_2_money": [ - 1736 + 2004 ], "lineup_2_score": [ - 1736 + 2004 ], "lineup_2_side": [ - 1736 + 2004 ], "lineup_2_timeouts_available": [ - 1736 + 2004 ], "match_map": [ - 1436 + 1677 ], "match_map_id": [ - 1736 + 2004 ], "round": [ - 1736 + 2004 ], "time": [ - 1736 + 2004 ], "winning_reason": [ - 1736 + 2004 ], "winning_side": [ - 1736 + 2004 ], "__typename": [ 63 @@ -23718,7 +28008,7 @@ export default { }, "match_map_rounds_pk_columns_input": { "id": [ - 3319 + 3587 ], "__typename": [ 63 @@ -23730,13 +28020,13 @@ export default { 63 ], "created_at": [ - 2922 + 3190 ], "deleted_at": [ - 2922 + 3190 ], "id": [ - 3319 + 3587 ], "lineup_1_money": [ 34 @@ -23745,7 +28035,7 @@ export default { 34 ], "lineup_1_side": [ - 617 + 858 ], "lineup_1_timeouts_available": [ 34 @@ -23757,22 +28047,22 @@ export default { 34 ], "lineup_2_side": [ - 617 + 858 ], "lineup_2_timeouts_available": [ 34 ], "match_map_id": [ - 3319 + 3587 ], "round": [ 34 ], "time": [ - 2922 + 3190 ], "winning_reason": [ - 780 + 1021 ], "winning_side": [ 63 @@ -23809,25 +28099,25 @@ export default { }, "match_map_rounds_stddev_order_by": { "lineup_1_money": [ - 1736 + 2004 ], "lineup_1_score": [ - 1736 + 2004 ], "lineup_1_timeouts_available": [ - 1736 + 2004 ], "lineup_2_money": [ - 1736 + 2004 ], "lineup_2_score": [ - 1736 + 2004 ], "lineup_2_timeouts_available": [ - 1736 + 2004 ], "round": [ - 1736 + 2004 ], "__typename": [ 63 @@ -23861,25 +28151,25 @@ export default { }, "match_map_rounds_stddev_pop_order_by": { "lineup_1_money": [ - 1736 + 2004 ], "lineup_1_score": [ - 1736 + 2004 ], "lineup_1_timeouts_available": [ - 1736 + 2004 ], "lineup_2_money": [ - 1736 + 2004 ], "lineup_2_score": [ - 1736 + 2004 ], "lineup_2_timeouts_available": [ - 1736 + 2004 ], "round": [ - 1736 + 2004 ], "__typename": [ 63 @@ -23913,25 +28203,25 @@ export default { }, "match_map_rounds_stddev_samp_order_by": { "lineup_1_money": [ - 1736 + 2004 ], "lineup_1_score": [ - 1736 + 2004 ], "lineup_1_timeouts_available": [ - 1736 + 2004 ], "lineup_2_money": [ - 1736 + 2004 ], "lineup_2_score": [ - 1736 + 2004 ], "lineup_2_timeouts_available": [ - 1736 + 2004 ], "round": [ - 1736 + 2004 ], "__typename": [ 63 @@ -23939,7 +28229,7 @@ export default { }, "match_map_rounds_stream_cursor_input": { "initial_value": [ - 1381 + 1622 ], "ordering": [ 216 @@ -23953,13 +28243,13 @@ export default { 63 ], "created_at": [ - 2922 + 3190 ], "deleted_at": [ - 2922 + 3190 ], "id": [ - 3319 + 3587 ], "lineup_1_money": [ 34 @@ -23968,7 +28258,7 @@ export default { 34 ], "lineup_1_side": [ - 617 + 858 ], "lineup_1_timeouts_available": [ 34 @@ -23980,22 +28270,22 @@ export default { 34 ], "lineup_2_side": [ - 617 + 858 ], "lineup_2_timeouts_available": [ 34 ], "match_map_id": [ - 3319 + 3587 ], "round": [ 34 ], "time": [ - 2922 + 3190 ], "winning_reason": [ - 780 + 1021 ], "winning_side": [ 63 @@ -24032,25 +28322,25 @@ export default { }, "match_map_rounds_sum_order_by": { "lineup_1_money": [ - 1736 + 2004 ], "lineup_1_score": [ - 1736 + 2004 ], "lineup_1_timeouts_available": [ - 1736 + 2004 ], "lineup_2_money": [ - 1736 + 2004 ], "lineup_2_score": [ - 1736 + 2004 ], "lineup_2_timeouts_available": [ - 1736 + 2004 ], "round": [ - 1736 + 2004 ], "__typename": [ 63 @@ -24059,13 +28349,13 @@ export default { "match_map_rounds_update_column": {}, "match_map_rounds_updates": { "_inc": [ - 1362 + 1603 ], "_set": [ - 1373 + 1614 ], "where": [ - 1360 + 1601 ], "__typename": [ 63 @@ -24099,25 +28389,25 @@ export default { }, "match_map_rounds_var_pop_order_by": { "lineup_1_money": [ - 1736 + 2004 ], "lineup_1_score": [ - 1736 + 2004 ], "lineup_1_timeouts_available": [ - 1736 + 2004 ], "lineup_2_money": [ - 1736 + 2004 ], "lineup_2_score": [ - 1736 + 2004 ], "lineup_2_timeouts_available": [ - 1736 + 2004 ], "round": [ - 1736 + 2004 ], "__typename": [ 63 @@ -24151,25 +28441,25 @@ export default { }, "match_map_rounds_var_samp_order_by": { "lineup_1_money": [ - 1736 + 2004 ], "lineup_1_score": [ - 1736 + 2004 ], "lineup_1_timeouts_available": [ - 1736 + 2004 ], "lineup_2_money": [ - 1736 + 2004 ], "lineup_2_score": [ - 1736 + 2004 ], "lineup_2_timeouts_available": [ - 1736 + 2004 ], "round": [ - 1736 + 2004 ], "__typename": [ 63 @@ -24203,25 +28493,25 @@ export default { }, "match_map_rounds_variance_order_by": { "lineup_1_money": [ - 1736 + 2004 ], "lineup_1_score": [ - 1736 + 2004 ], "lineup_1_timeouts_available": [ - 1736 + 2004 ], "lineup_2_money": [ - 1736 + 2004 ], "lineup_2_score": [ - 1736 + 2004 ], "lineup_2_timeouts_available": [ - 1736 + 2004 ], "round": [ - 1736 + 2004 ], "__typename": [ 63 @@ -24229,34 +28519,34 @@ export default { }, "match_map_veto_picks": { "created_at": [ - 2922 + 3190 ], "id": [ - 3319 + 3587 ], "map": [ - 1055 + 1296 ], "map_id": [ - 3319 + 3587 ], "match": [ - 1578 + 1819 ], "match_id": [ - 3319 + 3587 ], "match_lineup": [ - 1258 + 1499 ], "match_lineup_id": [ - 3319 + 3587 ], "side": [ 63 ], "type": [ - 760 + 1001 ], "__typename": [ 63 @@ -24264,10 +28554,10 @@ export default { }, "match_map_veto_picks_aggregate": { "aggregate": [ - 1396 + 1637 ], "nodes": [ - 1392 + 1633 ], "__typename": [ 63 @@ -24275,7 +28565,7 @@ export default { }, "match_map_veto_picks_aggregate_bool_exp": { "count": [ - 1395 + 1636 ], "__typename": [ 63 @@ -24283,13 +28573,13 @@ export default { }, "match_map_veto_picks_aggregate_bool_exp_count": { "arguments": [ - 1410 + 1651 ], "distinct": [ 3 ], "filter": [ - 1399 + 1640 ], "predicate": [ 35 @@ -24303,7 +28593,7 @@ export default { 34, { "columns": [ - 1410, + 1651, "[match_map_veto_picks_select_column!]" ], "distinct": [ @@ -24312,10 +28602,10 @@ export default { } ], "max": [ - 1402 + 1643 ], "min": [ - 1404 + 1645 ], "__typename": [ 63 @@ -24323,13 +28613,13 @@ export default { }, "match_map_veto_picks_aggregate_order_by": { "count": [ - 1736 + 2004 ], "max": [ - 1403 + 1644 ], "min": [ - 1405 + 1646 ], "__typename": [ 63 @@ -24337,10 +28627,10 @@ export default { }, "match_map_veto_picks_arr_rel_insert_input": { "data": [ - 1401 + 1642 ], "on_conflict": [ - 1407 + 1648 ], "__typename": [ 63 @@ -24348,43 +28638,43 @@ export default { }, "match_map_veto_picks_bool_exp": { "_and": [ - 1399 + 1640 ], "_not": [ - 1399 + 1640 ], "_or": [ - 1399 + 1640 ], "created_at": [ - 2923 + 3191 ], "id": [ - 3320 + 3588 ], "map": [ - 1064 + 1305 ], "map_id": [ - 3320 + 3588 ], "match": [ - 1587 + 1828 ], "match_id": [ - 3320 + 3588 ], "match_lineup": [ - 1267 + 1508 ], "match_lineup_id": [ - 3320 + 3588 ], "side": [ 65 ], "type": [ - 761 + 1002 ], "__typename": [ 63 @@ -24393,34 +28683,34 @@ export default { "match_map_veto_picks_constraint": {}, "match_map_veto_picks_insert_input": { "created_at": [ - 2922 + 3190 ], "id": [ - 3319 + 3587 ], "map": [ - 1072 + 1313 ], "map_id": [ - 3319 + 3587 ], "match": [ - 1596 + 1837 ], "match_id": [ - 3319 + 3587 ], "match_lineup": [ - 1276 + 1517 ], "match_lineup_id": [ - 3319 + 3587 ], "side": [ 63 ], "type": [ - 760 + 1001 ], "__typename": [ 63 @@ -24428,19 +28718,19 @@ export default { }, "match_map_veto_picks_max_fields": { "created_at": [ - 2922 + 3190 ], "id": [ - 3319 + 3587 ], "map_id": [ - 3319 + 3587 ], "match_id": [ - 3319 + 3587 ], "match_lineup_id": [ - 3319 + 3587 ], "side": [ 63 @@ -24451,22 +28741,22 @@ export default { }, "match_map_veto_picks_max_order_by": { "created_at": [ - 1736 + 2004 ], "id": [ - 1736 + 2004 ], "map_id": [ - 1736 + 2004 ], "match_id": [ - 1736 + 2004 ], "match_lineup_id": [ - 1736 + 2004 ], "side": [ - 1736 + 2004 ], "__typename": [ 63 @@ -24474,19 +28764,19 @@ export default { }, "match_map_veto_picks_min_fields": { "created_at": [ - 2922 + 3190 ], "id": [ - 3319 + 3587 ], "map_id": [ - 3319 + 3587 ], "match_id": [ - 3319 + 3587 ], "match_lineup_id": [ - 3319 + 3587 ], "side": [ 63 @@ -24497,22 +28787,22 @@ export default { }, "match_map_veto_picks_min_order_by": { "created_at": [ - 1736 + 2004 ], "id": [ - 1736 + 2004 ], "map_id": [ - 1736 + 2004 ], "match_id": [ - 1736 + 2004 ], "match_lineup_id": [ - 1736 + 2004 ], "side": [ - 1736 + 2004 ], "__typename": [ 63 @@ -24523,7 +28813,7 @@ export default { 34 ], "returning": [ - 1392 + 1633 ], "__typename": [ 63 @@ -24531,13 +28821,13 @@ export default { }, "match_map_veto_picks_on_conflict": { "constraint": [ - 1400 + 1641 ], "update_columns": [ - 1414 + 1655 ], "where": [ - 1399 + 1640 ], "__typename": [ 63 @@ -24545,34 +28835,34 @@ export default { }, "match_map_veto_picks_order_by": { "created_at": [ - 1736 + 2004 ], "id": [ - 1736 + 2004 ], "map": [ - 1074 + 1315 ], "map_id": [ - 1736 + 2004 ], "match": [ - 1598 + 1839 ], "match_id": [ - 1736 + 2004 ], "match_lineup": [ - 1278 + 1519 ], "match_lineup_id": [ - 1736 + 2004 ], "side": [ - 1736 + 2004 ], "type": [ - 1736 + 2004 ], "__typename": [ 63 @@ -24580,7 +28870,7 @@ export default { }, "match_map_veto_picks_pk_columns_input": { "id": [ - 3319 + 3587 ], "__typename": [ 63 @@ -24589,25 +28879,25 @@ export default { "match_map_veto_picks_select_column": {}, "match_map_veto_picks_set_input": { "created_at": [ - 2922 + 3190 ], "id": [ - 3319 + 3587 ], "map_id": [ - 3319 + 3587 ], "match_id": [ - 3319 + 3587 ], "match_lineup_id": [ - 3319 + 3587 ], "side": [ 63 ], "type": [ - 760 + 1001 ], "__typename": [ 63 @@ -24615,7 +28905,7 @@ export default { }, "match_map_veto_picks_stream_cursor_input": { "initial_value": [ - 1413 + 1654 ], "ordering": [ 216 @@ -24626,25 +28916,25 @@ export default { }, "match_map_veto_picks_stream_cursor_value_input": { "created_at": [ - 2922 + 3190 ], "id": [ - 3319 + 3587 ], "map_id": [ - 3319 + 3587 ], "match_id": [ - 3319 + 3587 ], "match_lineup_id": [ - 3319 + 3587 ], "side": [ 63 ], "type": [ - 760 + 1001 ], "__typename": [ 63 @@ -24653,10 +28943,10 @@ export default { "match_map_veto_picks_update_column": {}, "match_map_veto_picks_updates": { "_set": [ - 1411 + 1652 ], "where": [ - 1399 + 1640 ], "__typename": [ 63 @@ -24667,13 +28957,13 @@ export default { 34 ], "created_at": [ - 2922 + 3190 ], "demos": [ - 1300, + 1541, { "distinct_on": [ - 1329, + 1570, "[match_map_demos_select_column!]" ], "limit": [ @@ -24683,19 +28973,19 @@ export default { 34 ], "order_by": [ - 1326, + 1567, "[match_map_demos_order_by!]" ], "where": [ - 1312 + 1553 ] } ], "demos_aggregate": [ - 1301, + 1542, { "distinct_on": [ - 1329, + 1570, "[match_map_demos_select_column!]" ], "limit": [ @@ -24705,11 +28995,11 @@ export default { 34 ], "order_by": [ - 1326, + 1567, "[match_map_demos_order_by!]" ], "where": [ - 1312 + 1553 ] } ], @@ -24720,16 +29010,16 @@ export default { 34 ], "e_match_map_status": [ - 408 + 649 ], "ended_at": [ - 2922 + 3190 ], "flashes": [ - 2046, + 2314, { "distinct_on": [ - 2069, + 2337, "[player_flashes_select_column!]" ], "limit": [ @@ -24739,19 +29029,19 @@ export default { 34 ], "order_by": [ - 2067, + 2335, "[player_flashes_order_by!]" ], "where": [ - 2057 + 2325 ] } ], "flashes_aggregate": [ - 2047, + 2315, { "distinct_on": [ - 2069, + 2337, "[player_flashes_select_column!]" ], "limit": [ @@ -24761,28 +29051,28 @@ export default { 34 ], "order_by": [ - 2067, + 2335, "[player_flashes_order_by!]" ], "where": [ - 2057 + 2325 ] } ], "id": [ - 3319 + 3587 ], "is_current_map": [ 3 ], "latest_clip_at": [ - 2922 + 3190 ], "lineup_1_score": [ 34 ], "lineup_1_side": [ - 617 + 858 ], "lineup_1_timeouts_available": [ 34 @@ -24791,25 +29081,25 @@ export default { 34 ], "lineup_2_side": [ - 617 + 858 ], "lineup_2_timeouts_available": [ 34 ], "map": [ - 1055 + 1296 ], "map_id": [ - 3319 + 3587 ], "match": [ - 1578 + 1819 ], "match_clips": [ - 1084, + 1325, { "distinct_on": [ - 1106, + 1347, "[match_clips_select_column!]" ], "limit": [ @@ -24819,19 +29109,19 @@ export default { 34 ], "order_by": [ - 1104, + 1345, "[match_clips_order_by!]" ], "where": [ - 1093 + 1334 ] } ], "match_clips_aggregate": [ - 1085, + 1326, { "distinct_on": [ - 1106, + 1347, "[match_clips_select_column!]" ], "limit": [ @@ -24841,22 +29131,22 @@ export default { 34 ], "order_by": [ - 1104, + 1345, "[match_clips_order_by!]" ], "where": [ - 1093 + 1334 ] } ], "match_id": [ - 3319 + 3587 ], "objectives": [ - 2292, + 2560, { "distinct_on": [ - 2313, + 2581, "[player_objectives_select_column!]" ], "limit": [ @@ -24866,19 +29156,19 @@ export default { 34 ], "order_by": [ - 2311, + 2579, "[player_objectives_order_by!]" ], "where": [ - 2301 + 2569 ] } ], "objectives_aggregate": [ - 2293, + 2561, { "distinct_on": [ - 2313, + 2581, "[player_objectives_select_column!]" ], "limit": [ @@ -24888,11 +29178,11 @@ export default { 34 ], "order_by": [ - 2311, + 2579, "[player_objectives_order_by!]" ], "where": [ - 2301 + 2569 ] } ], @@ -24900,10 +29190,10 @@ export default { 34 ], "player_assists": [ - 1874, + 2142, { "distinct_on": [ - 1897, + 2165, "[player_assists_select_column!]" ], "limit": [ @@ -24913,19 +29203,19 @@ export default { 34 ], "order_by": [ - 1895, + 2163, "[player_assists_order_by!]" ], "where": [ - 1885 + 2153 ] } ], "player_assists_aggregate": [ - 1875, + 2143, { "distinct_on": [ - 1897, + 2165, "[player_assists_select_column!]" ], "limit": [ @@ -24935,19 +29225,19 @@ export default { 34 ], "order_by": [ - 1895, + 2163, "[player_assists_order_by!]" ], "where": [ - 1885 + 2153 ] } ], "player_damages": [ - 1937, + 2205, { "distinct_on": [ - 1958, + 2226, "[player_damages_select_column!]" ], "limit": [ @@ -24957,19 +29247,19 @@ export default { 34 ], "order_by": [ - 1956, + 2224, "[player_damages_order_by!]" ], "where": [ - 1946 + 2214 ] } ], "player_damages_aggregate": [ - 1938, + 2206, { "distinct_on": [ - 1958, + 2226, "[player_damages_select_column!]" ], "limit": [ @@ -24979,19 +29269,19 @@ export default { 34 ], "order_by": [ - 1956, + 2224, "[player_damages_order_by!]" ], "where": [ - 1946 + 2214 ] } ], "player_kills": [ - 2091, + 2359, { "distinct_on": [ - 2155, + 2423, "[player_kills_select_column!]" ], "limit": [ @@ -25001,19 +29291,19 @@ export default { 34 ], "order_by": [ - 2153, + 2421, "[player_kills_order_by!]" ], "where": [ - 2102 + 2370 ] } ], "player_kills_aggregate": [ - 2092, + 2360, { "distinct_on": [ - 2155, + 2423, "[player_kills_select_column!]" ], "limit": [ @@ -25023,19 +29313,19 @@ export default { 34 ], "order_by": [ - 2153, + 2421, "[player_kills_order_by!]" ], "where": [ - 2102 + 2370 ] } ], "player_unused_utilities": [ - 2488, + 2756, { "distinct_on": [ - 2509, + 2777, "[player_unused_utility_select_column!]" ], "limit": [ @@ -25045,19 +29335,19 @@ export default { 34 ], "order_by": [ - 2507, + 2775, "[player_unused_utility_order_by!]" ], "where": [ - 2497 + 2765 ] } ], "player_unused_utilities_aggregate": [ - 2489, + 2757, { "distinct_on": [ - 2509, + 2777, "[player_unused_utility_select_column!]" ], "limit": [ @@ -25067,11 +29357,11 @@ export default { 34 ], "order_by": [ - 2507, + 2775, "[player_unused_utility_order_by!]" ], "where": [ - 2497 + 2765 ] } ], @@ -25079,13 +29369,13 @@ export default { 34 ], "public_latest_clip_at": [ - 2922 + 3190 ], "rounds": [ - 1351, + 1592, { "distinct_on": [ - 1372, + 1613, "[match_map_rounds_select_column!]" ], "limit": [ @@ -25095,19 +29385,19 @@ export default { 34 ], "order_by": [ - 1370, + 1611, "[match_map_rounds_order_by!]" ], "where": [ - 1360 + 1601 ] } ], "rounds_aggregate": [ - 1352, + 1593, { "distinct_on": [ - 1372, + 1613, "[match_map_rounds_select_column!]" ], "limit": [ @@ -25117,25 +29407,25 @@ export default { 34 ], "order_by": [ - 1370, + 1611, "[match_map_rounds_order_by!]" ], "where": [ - 1360 + 1601 ] } ], "started_at": [ - 2922 + 3190 ], "status": [ - 413 + 654 ], "utility": [ - 2529, + 2797, { "distinct_on": [ - 2550, + 2818, "[player_utility_select_column!]" ], "limit": [ @@ -25145,19 +29435,19 @@ export default { 34 ], "order_by": [ - 2548, + 2816, "[player_utility_order_by!]" ], "where": [ - 2538 + 2806 ] } ], "utility_aggregate": [ - 2530, + 2798, { "distinct_on": [ - 2550, + 2818, "[player_utility_select_column!]" ], "limit": [ @@ -25167,19 +29457,19 @@ export default { 34 ], "order_by": [ - 2548, + 2816, "[player_utility_order_by!]" ], "where": [ - 2538 + 2806 ] } ], "vetos": [ - 1392, + 1633, { "distinct_on": [ - 1410, + 1651, "[match_map_veto_picks_select_column!]" ], "limit": [ @@ -25189,19 +29479,19 @@ export default { 34 ], "order_by": [ - 1408, + 1649, "[match_map_veto_picks_order_by!]" ], "where": [ - 1399 + 1640 ] } ], "vetos_aggregate": [ - 1393, + 1634, { "distinct_on": [ - 1410, + 1651, "[match_map_veto_picks_select_column!]" ], "limit": [ @@ -25211,16 +29501,16 @@ export default { 34 ], "order_by": [ - 1408, + 1649, "[match_map_veto_picks_order_by!]" ], "where": [ - 1399 + 1640 ] } ], "winning_lineup_id": [ - 3319 + 3587 ], "__typename": [ 63 @@ -25228,10 +29518,10 @@ export default { }, "match_maps_aggregate": { "aggregate": [ - 1420 + 1661 ], "nodes": [ - 1416 + 1657 ], "__typename": [ 63 @@ -25239,7 +29529,7 @@ export default { }, "match_maps_aggregate_bool_exp": { "count": [ - 1419 + 1660 ], "__typename": [ 63 @@ -25247,13 +29537,13 @@ export default { }, "match_maps_aggregate_bool_exp_count": { "arguments": [ - 1438 + 1679 ], "distinct": [ 3 ], "filter": [ - 1425 + 1666 ], "predicate": [ 35 @@ -25264,13 +29554,13 @@ export default { }, "match_maps_aggregate_fields": { "avg": [ - 1423 + 1664 ], "count": [ 34, { "columns": [ - 1438, + 1679, "[match_maps_select_column!]" ], "distinct": [ @@ -25279,31 +29569,31 @@ export default { } ], "max": [ - 1429 + 1670 ], "min": [ - 1431 + 1672 ], "stddev": [ - 1440 + 1681 ], "stddev_pop": [ - 1442 + 1683 ], "stddev_samp": [ - 1444 + 1685 ], "sum": [ - 1448 + 1689 ], "var_pop": [ - 1452 + 1693 ], "var_samp": [ - 1454 + 1695 ], "variance": [ - 1456 + 1697 ], "__typename": [ 63 @@ -25311,37 +29601,37 @@ export default { }, "match_maps_aggregate_order_by": { "avg": [ - 1424 + 1665 ], "count": [ - 1736 + 2004 ], "max": [ - 1430 + 1671 ], "min": [ - 1432 + 1673 ], "stddev": [ - 1441 + 1682 ], "stddev_pop": [ - 1443 + 1684 ], "stddev_samp": [ - 1445 + 1686 ], "sum": [ - 1449 + 1690 ], "var_pop": [ - 1453 + 1694 ], "var_samp": [ - 1455 + 1696 ], "variance": [ - 1457 + 1698 ], "__typename": [ 63 @@ -25349,10 +29639,10 @@ export default { }, "match_maps_arr_rel_insert_input": { "data": [ - 1428 + 1669 ], "on_conflict": [ - 1435 + 1676 ], "__typename": [ 63 @@ -25389,19 +29679,19 @@ export default { }, "match_maps_avg_order_by": { "clips_count": [ - 1736 + 2004 ], "lineup_1_timeouts_available": [ - 1736 + 2004 ], "lineup_2_timeouts_available": [ - 1736 + 2004 ], "order": [ - 1736 + 2004 ], "public_clips_count": [ - 1736 + 2004 ], "__typename": [ 63 @@ -25409,25 +29699,25 @@ export default { }, "match_maps_bool_exp": { "_and": [ - 1425 + 1666 ], "_not": [ - 1425 + 1666 ], "_or": [ - 1425 + 1666 ], "clips_count": [ 35 ], "created_at": [ - 2923 + 3191 ], "demos": [ - 1312 + 1553 ], "demos_aggregate": [ - 1302 + 1543 ], "demos_download_url": [ 65 @@ -25436,31 +29726,31 @@ export default { 35 ], "e_match_map_status": [ - 411 + 652 ], "ended_at": [ - 2923 + 3191 ], "flashes": [ - 2057 + 2325 ], "flashes_aggregate": [ - 2048 + 2316 ], "id": [ - 3320 + 3588 ], "is_current_map": [ 4 ], "latest_clip_at": [ - 2923 + 3191 ], "lineup_1_score": [ 35 ], "lineup_1_side": [ - 618 + 859 ], "lineup_1_timeouts_available": [ 35 @@ -25469,94 +29759,94 @@ export default { 35 ], "lineup_2_side": [ - 618 + 859 ], "lineup_2_timeouts_available": [ 35 ], "map": [ - 1064 + 1305 ], "map_id": [ - 3320 + 3588 ], "match": [ - 1587 + 1828 ], "match_clips": [ - 1093 + 1334 ], "match_clips_aggregate": [ - 1086 + 1327 ], "match_id": [ - 3320 + 3588 ], "objectives": [ - 2301 + 2569 ], "objectives_aggregate": [ - 2294 + 2562 ], "order": [ 35 ], "player_assists": [ - 1885 + 2153 ], "player_assists_aggregate": [ - 1876 + 2144 ], "player_damages": [ - 1946 + 2214 ], "player_damages_aggregate": [ - 1939 + 2207 ], "player_kills": [ - 2102 + 2370 ], "player_kills_aggregate": [ - 2093 + 2361 ], "player_unused_utilities": [ - 2497 + 2765 ], "player_unused_utilities_aggregate": [ - 2490 + 2758 ], "public_clips_count": [ 35 ], "public_latest_clip_at": [ - 2923 + 3191 ], "rounds": [ - 1360 + 1601 ], "rounds_aggregate": [ - 1353 + 1594 ], "started_at": [ - 2923 + 3191 ], "status": [ - 414 + 655 ], "utility": [ - 2538 + 2806 ], "utility_aggregate": [ - 2531 + 2799 ], "vetos": [ - 1399 + 1640 ], "vetos_aggregate": [ - 1394 + 1635 ], "winning_lineup_id": [ - 3320 + 3588 ], "__typename": [ 63 @@ -25588,94 +29878,94 @@ export default { 34 ], "created_at": [ - 2922 + 3190 ], "demos": [ - 1309 + 1550 ], "e_match_map_status": [ - 419 + 660 ], "ended_at": [ - 2922 + 3190 ], "flashes": [ - 2054 + 2322 ], "id": [ - 3319 + 3587 ], "latest_clip_at": [ - 2922 + 3190 ], "lineup_1_side": [ - 617 + 858 ], "lineup_1_timeouts_available": [ 34 ], "lineup_2_side": [ - 617 + 858 ], "lineup_2_timeouts_available": [ 34 ], "map": [ - 1072 + 1313 ], "map_id": [ - 3319 + 3587 ], "match": [ - 1596 + 1837 ], "match_clips": [ - 1090 + 1331 ], "match_id": [ - 3319 + 3587 ], "objectives": [ - 2298 + 2566 ], "order": [ 34 ], "player_assists": [ - 1882 + 2150 ], "player_damages": [ - 1943 + 2211 ], "player_kills": [ - 2099 + 2367 ], "player_unused_utilities": [ - 2494 + 2762 ], "public_clips_count": [ 34 ], "public_latest_clip_at": [ - 2922 + 3190 ], "rounds": [ - 1357 + 1598 ], "started_at": [ - 2922 + 3190 ], "status": [ - 413 + 654 ], "utility": [ - 2535 + 2803 ], "vetos": [ - 1398 + 1639 ], "winning_lineup_id": [ - 3319 + 3587 ], "__typename": [ 63 @@ -25686,7 +29976,7 @@ export default { 34 ], "created_at": [ - 2922 + 3190 ], "demos_download_url": [ 63 @@ -25695,13 +29985,13 @@ export default { 34 ], "ended_at": [ - 2922 + 3190 ], "id": [ - 3319 + 3587 ], "latest_clip_at": [ - 2922 + 3190 ], "lineup_1_score": [ 34 @@ -25716,10 +30006,10 @@ export default { 34 ], "map_id": [ - 3319 + 3587 ], "match_id": [ - 3319 + 3587 ], "order": [ 34 @@ -25728,13 +30018,13 @@ export default { 34 ], "public_latest_clip_at": [ - 2922 + 3190 ], "started_at": [ - 2922 + 3190 ], "winning_lineup_id": [ - 3319 + 3587 ], "__typename": [ 63 @@ -25742,46 +30032,46 @@ export default { }, "match_maps_max_order_by": { "clips_count": [ - 1736 + 2004 ], "created_at": [ - 1736 + 2004 ], "ended_at": [ - 1736 + 2004 ], "id": [ - 1736 + 2004 ], "latest_clip_at": [ - 1736 + 2004 ], "lineup_1_timeouts_available": [ - 1736 + 2004 ], "lineup_2_timeouts_available": [ - 1736 + 2004 ], "map_id": [ - 1736 + 2004 ], "match_id": [ - 1736 + 2004 ], "order": [ - 1736 + 2004 ], "public_clips_count": [ - 1736 + 2004 ], "public_latest_clip_at": [ - 1736 + 2004 ], "started_at": [ - 1736 + 2004 ], "winning_lineup_id": [ - 1736 + 2004 ], "__typename": [ 63 @@ -25792,7 +30082,7 @@ export default { 34 ], "created_at": [ - 2922 + 3190 ], "demos_download_url": [ 63 @@ -25801,13 +30091,13 @@ export default { 34 ], "ended_at": [ - 2922 + 3190 ], "id": [ - 3319 + 3587 ], "latest_clip_at": [ - 2922 + 3190 ], "lineup_1_score": [ 34 @@ -25822,10 +30112,10 @@ export default { 34 ], "map_id": [ - 3319 + 3587 ], "match_id": [ - 3319 + 3587 ], "order": [ 34 @@ -25834,13 +30124,13 @@ export default { 34 ], "public_latest_clip_at": [ - 2922 + 3190 ], "started_at": [ - 2922 + 3190 ], "winning_lineup_id": [ - 3319 + 3587 ], "__typename": [ 63 @@ -25848,46 +30138,46 @@ export default { }, "match_maps_min_order_by": { "clips_count": [ - 1736 + 2004 ], "created_at": [ - 1736 + 2004 ], "ended_at": [ - 1736 + 2004 ], "id": [ - 1736 + 2004 ], "latest_clip_at": [ - 1736 + 2004 ], "lineup_1_timeouts_available": [ - 1736 + 2004 ], "lineup_2_timeouts_available": [ - 1736 + 2004 ], "map_id": [ - 1736 + 2004 ], "match_id": [ - 1736 + 2004 ], "order": [ - 1736 + 2004 ], "public_clips_count": [ - 1736 + 2004 ], "public_latest_clip_at": [ - 1736 + 2004 ], "started_at": [ - 1736 + 2004 ], "winning_lineup_id": [ - 1736 + 2004 ], "__typename": [ 63 @@ -25898,7 +30188,7 @@ export default { 34 ], "returning": [ - 1416 + 1657 ], "__typename": [ 63 @@ -25906,10 +30196,10 @@ export default { }, "match_maps_obj_rel_insert_input": { "data": [ - 1428 + 1669 ], "on_conflict": [ - 1435 + 1676 ], "__typename": [ 63 @@ -25917,13 +30207,13 @@ export default { }, "match_maps_on_conflict": { "constraint": [ - 1426 + 1667 ], "update_columns": [ - 1450 + 1691 ], "where": [ - 1425 + 1666 ], "__typename": [ 63 @@ -25931,112 +30221,112 @@ export default { }, "match_maps_order_by": { "clips_count": [ - 1736 + 2004 ], "created_at": [ - 1736 + 2004 ], "demos_aggregate": [ - 1307 + 1548 ], "demos_download_url": [ - 1736 + 2004 ], "demos_total_size": [ - 1736 + 2004 ], "e_match_map_status": [ - 421 + 662 ], "ended_at": [ - 1736 + 2004 ], "flashes_aggregate": [ - 2053 + 2321 ], "id": [ - 1736 + 2004 ], "is_current_map": [ - 1736 + 2004 ], "latest_clip_at": [ - 1736 + 2004 ], "lineup_1_score": [ - 1736 + 2004 ], "lineup_1_side": [ - 1736 + 2004 ], "lineup_1_timeouts_available": [ - 1736 + 2004 ], "lineup_2_score": [ - 1736 + 2004 ], "lineup_2_side": [ - 1736 + 2004 ], "lineup_2_timeouts_available": [ - 1736 + 2004 ], "map": [ - 1074 + 1315 ], "map_id": [ - 1736 + 2004 ], "match": [ - 1598 + 1839 ], "match_clips_aggregate": [ - 1089 + 1330 ], "match_id": [ - 1736 + 2004 ], "objectives_aggregate": [ - 2297 + 2565 ], "order": [ - 1736 + 2004 ], "player_assists_aggregate": [ - 1881 + 2149 ], "player_damages_aggregate": [ - 1942 + 2210 ], "player_kills_aggregate": [ - 2098 + 2366 ], "player_unused_utilities_aggregate": [ - 2493 + 2761 ], "public_clips_count": [ - 1736 + 2004 ], "public_latest_clip_at": [ - 1736 + 2004 ], "rounds_aggregate": [ - 1356 + 1597 ], "started_at": [ - 1736 + 2004 ], "status": [ - 1736 + 2004 ], "utility_aggregate": [ - 2534 + 2802 ], "vetos_aggregate": [ - 1397 + 1638 ], "winning_lineup_id": [ - 1736 + 2004 ], "__typename": [ 63 @@ -26044,7 +30334,7 @@ export default { }, "match_maps_pk_columns_input": { "id": [ - 3319 + 3587 ], "__typename": [ 63 @@ -26056,34 +30346,34 @@ export default { 34 ], "created_at": [ - 2922 + 3190 ], "ended_at": [ - 2922 + 3190 ], "id": [ - 3319 + 3587 ], "latest_clip_at": [ - 2922 + 3190 ], "lineup_1_side": [ - 617 + 858 ], "lineup_1_timeouts_available": [ 34 ], "lineup_2_side": [ - 617 + 858 ], "lineup_2_timeouts_available": [ 34 ], "map_id": [ - 3319 + 3587 ], "match_id": [ - 3319 + 3587 ], "order": [ 34 @@ -26092,16 +30382,16 @@ export default { 34 ], "public_latest_clip_at": [ - 2922 + 3190 ], "started_at": [ - 2922 + 3190 ], "status": [ - 413 + 654 ], "winning_lineup_id": [ - 3319 + 3587 ], "__typename": [ 63 @@ -26138,19 +30428,19 @@ export default { }, "match_maps_stddev_order_by": { "clips_count": [ - 1736 + 2004 ], "lineup_1_timeouts_available": [ - 1736 + 2004 ], "lineup_2_timeouts_available": [ - 1736 + 2004 ], "order": [ - 1736 + 2004 ], "public_clips_count": [ - 1736 + 2004 ], "__typename": [ 63 @@ -26187,19 +30477,19 @@ export default { }, "match_maps_stddev_pop_order_by": { "clips_count": [ - 1736 + 2004 ], "lineup_1_timeouts_available": [ - 1736 + 2004 ], "lineup_2_timeouts_available": [ - 1736 + 2004 ], "order": [ - 1736 + 2004 ], "public_clips_count": [ - 1736 + 2004 ], "__typename": [ 63 @@ -26236,19 +30526,19 @@ export default { }, "match_maps_stddev_samp_order_by": { "clips_count": [ - 1736 + 2004 ], "lineup_1_timeouts_available": [ - 1736 + 2004 ], "lineup_2_timeouts_available": [ - 1736 + 2004 ], "order": [ - 1736 + 2004 ], "public_clips_count": [ - 1736 + 2004 ], "__typename": [ 63 @@ -26256,7 +30546,7 @@ export default { }, "match_maps_stream_cursor_input": { "initial_value": [ - 1447 + 1688 ], "ordering": [ 216 @@ -26270,34 +30560,34 @@ export default { 34 ], "created_at": [ - 2922 + 3190 ], "ended_at": [ - 2922 + 3190 ], "id": [ - 3319 + 3587 ], "latest_clip_at": [ - 2922 + 3190 ], "lineup_1_side": [ - 617 + 858 ], "lineup_1_timeouts_available": [ 34 ], "lineup_2_side": [ - 617 + 858 ], "lineup_2_timeouts_available": [ 34 ], "map_id": [ - 3319 + 3587 ], "match_id": [ - 3319 + 3587 ], "order": [ 34 @@ -26306,16 +30596,16 @@ export default { 34 ], "public_latest_clip_at": [ - 2922 + 3190 ], "started_at": [ - 2922 + 3190 ], "status": [ - 413 + 654 ], "winning_lineup_id": [ - 3319 + 3587 ], "__typename": [ 63 @@ -26352,19 +30642,19 @@ export default { }, "match_maps_sum_order_by": { "clips_count": [ - 1736 + 2004 ], "lineup_1_timeouts_available": [ - 1736 + 2004 ], "lineup_2_timeouts_available": [ - 1736 + 2004 ], "order": [ - 1736 + 2004 ], "public_clips_count": [ - 1736 + 2004 ], "__typename": [ 63 @@ -26373,13 +30663,13 @@ export default { "match_maps_update_column": {}, "match_maps_updates": { "_inc": [ - 1427 + 1668 ], "_set": [ - 1439 + 1680 ], "where": [ - 1425 + 1666 ], "__typename": [ 63 @@ -26416,19 +30706,19 @@ export default { }, "match_maps_var_pop_order_by": { "clips_count": [ - 1736 + 2004 ], "lineup_1_timeouts_available": [ - 1736 + 2004 ], "lineup_2_timeouts_available": [ - 1736 + 2004 ], "order": [ - 1736 + 2004 ], "public_clips_count": [ - 1736 + 2004 ], "__typename": [ 63 @@ -26465,19 +30755,19 @@ export default { }, "match_maps_var_samp_order_by": { "clips_count": [ - 1736 + 2004 ], "lineup_1_timeouts_available": [ - 1736 + 2004 ], "lineup_2_timeouts_available": [ - 1736 + 2004 ], "order": [ - 1736 + 2004 ], "public_clips_count": [ - 1736 + 2004 ], "__typename": [ 63 @@ -26514,19 +30804,19 @@ export default { }, "match_maps_variance_order_by": { "clips_count": [ - 1736 + 2004 ], "lineup_1_timeouts_available": [ - 1736 + 2004 ], "lineup_2_timeouts_available": [ - 1736 + 2004 ], "order": [ - 1736 + 2004 ], "public_clips_count": [ - 1736 + 2004 ], "__typename": [ 63 @@ -26543,7 +30833,7 @@ export default { 34 ], "check_in_setting": [ - 249 + 385 ], "coaches": [ 3 @@ -26555,7 +30845,7 @@ export default { 3 ], "id": [ - 3319 + 3587 ], "invite_code": [ 63 @@ -26567,25 +30857,25 @@ export default { 34 ], "lobby_access": [ - 331 + 572 ], "map_pool": [ - 1036 + 1277 ], "map_pool_id": [ - 3319 + 3587 ], "map_veto": [ 3 ], "match_mode": [ - 434 + 675 ], "matches": [ - 1578, + 1819, { "distinct_on": [ - 1600, + 1841, "[matches_select_column!]" ], "limit": [ @@ -26595,19 +30885,19 @@ export default { 34 ], "order_by": [ - 1598, + 1839, "[matches_order_by!]" ], "where": [ - 1587 + 1828 ] } ], "matches_aggregate": [ - 1579, + 1820, { "distinct_on": [ - 1600, + 1841, "[matches_select_column!]" ], "limit": [ @@ -26617,11 +30907,11 @@ export default { 34 ], "order_by": [ - 1598, + 1839, "[matches_order_by!]" ], "where": [ - 1587 + 1828 ] } ], @@ -26638,7 +30928,7 @@ export default { 3 ], "ready_setting": [ - 556 + 797 ], "region_veto": [ 3 @@ -26647,25 +30937,25 @@ export default { 63 ], "tech_timeout_setting": [ - 678 + 919 ], "timeout_setting": [ - 678 + 919 ], "tournament": [ - 3273 + 3541 ], "tournament_bracket": [ - 2924 + 3192 ], "tournament_stage": [ - 3011 + 3279 ], "tv_delay": [ 34 ], "type": [ - 475 + 716 ], "__typename": [ 63 @@ -26673,10 +30963,10 @@ export default { }, "match_options_aggregate": { "aggregate": [ - 1460 + 1701 ], "nodes": [ - 1458 + 1699 ], "__typename": [ 63 @@ -26684,13 +30974,13 @@ export default { }, "match_options_aggregate_fields": { "avg": [ - 1461 + 1702 ], "count": [ 34, { "columns": [ - 1473, + 1714, "[match_options_select_column!]" ], "distinct": [ @@ -26699,31 +30989,31 @@ export default { } ], "max": [ - 1466 + 1707 ], "min": [ - 1467 + 1708 ], "stddev": [ - 1475 + 1716 ], "stddev_pop": [ - 1476 + 1717 ], "stddev_samp": [ - 1477 + 1718 ], "sum": [ - 1480 + 1721 ], "var_pop": [ - 1483 + 1724 ], "var_samp": [ - 1484 + 1725 ], "variance": [ - 1485 + 1726 ], "__typename": [ 63 @@ -26754,13 +31044,13 @@ export default { }, "match_options_bool_exp": { "_and": [ - 1462 + 1703 ], "_not": [ - 1462 + 1703 ], "_or": [ - 1462 + 1703 ], "auto_cancel_duration": [ 35 @@ -26772,7 +31062,7 @@ export default { 35 ], "check_in_setting": [ - 250 + 386 ], "coaches": [ 4 @@ -26784,7 +31074,7 @@ export default { 4 ], "id": [ - 3320 + 3588 ], "invite_code": [ 65 @@ -26796,25 +31086,25 @@ export default { 35 ], "lobby_access": [ - 332 + 573 ], "map_pool": [ - 1039 + 1280 ], "map_pool_id": [ - 3320 + 3588 ], "map_veto": [ 4 ], "match_mode": [ - 435 + 676 ], "matches": [ - 1587 + 1828 ], "matches_aggregate": [ - 1580 + 1821 ], "mr": [ 35 @@ -26829,7 +31119,7 @@ export default { 4 ], "ready_setting": [ - 557 + 798 ], "region_veto": [ 4 @@ -26838,25 +31128,25 @@ export default { 64 ], "tech_timeout_setting": [ - 679 + 920 ], "timeout_setting": [ - 679 + 920 ], "tournament": [ - 3284 + 3552 ], "tournament_bracket": [ - 2935 + 3203 ], "tournament_stage": [ - 3023 + 3291 ], "tv_delay": [ 35 ], "type": [ - 476 + 717 ], "__typename": [ 63 @@ -26897,7 +31187,7 @@ export default { 34 ], "check_in_setting": [ - 249 + 385 ], "coaches": [ 3 @@ -26906,7 +31196,7 @@ export default { 3 ], "id": [ - 3319 + 3587 ], "invite_code": [ 63 @@ -26918,22 +31208,22 @@ export default { 34 ], "lobby_access": [ - 331 + 572 ], "map_pool": [ - 1045 + 1286 ], "map_pool_id": [ - 3319 + 3587 ], "map_veto": [ 3 ], "match_mode": [ - 434 + 675 ], "matches": [ - 1584 + 1825 ], "mr": [ 34 @@ -26948,7 +31238,7 @@ export default { 3 ], "ready_setting": [ - 556 + 797 ], "region_veto": [ 3 @@ -26957,25 +31247,25 @@ export default { 63 ], "tech_timeout_setting": [ - 678 + 919 ], "timeout_setting": [ - 678 + 919 ], "tournament": [ - 3293 + 3561 ], "tournament_bracket": [ - 2944 + 3212 ], "tournament_stage": [ - 3035 + 3303 ], "tv_delay": [ 34 ], "type": [ - 475 + 716 ], "__typename": [ 63 @@ -26989,7 +31279,7 @@ export default { 34 ], "id": [ - 3319 + 3587 ], "invite_code": [ 63 @@ -26998,7 +31288,7 @@ export default { 34 ], "map_pool_id": [ - 3319 + 3587 ], "mr": [ 34 @@ -27024,7 +31314,7 @@ export default { 34 ], "id": [ - 3319 + 3587 ], "invite_code": [ 63 @@ -27033,7 +31323,7 @@ export default { 34 ], "map_pool_id": [ - 3319 + 3587 ], "mr": [ 34 @@ -27056,7 +31346,7 @@ export default { 34 ], "returning": [ - 1458 + 1699 ], "__typename": [ 63 @@ -27064,10 +31354,10 @@ export default { }, "match_options_obj_rel_insert_input": { "data": [ - 1465 + 1706 ], "on_conflict": [ - 1470 + 1711 ], "__typename": [ 63 @@ -27075,13 +31365,13 @@ export default { }, "match_options_on_conflict": { "constraint": [ - 1463 + 1704 ], "update_columns": [ - 1481 + 1722 ], "where": [ - 1462 + 1703 ], "__typename": [ 63 @@ -27089,97 +31379,97 @@ export default { }, "match_options_order_by": { "auto_cancel_duration": [ - 1736 + 2004 ], "auto_cancellation": [ - 1736 + 2004 ], "best_of": [ - 1736 + 2004 ], "check_in_setting": [ - 1736 + 2004 ], "coaches": [ - 1736 + 2004 ], "default_models": [ - 1736 + 2004 ], "has_active_matches": [ - 1736 + 2004 ], "id": [ - 1736 + 2004 ], "invite_code": [ - 1736 + 2004 ], "knife_round": [ - 1736 + 2004 ], "live_match_timeout": [ - 1736 + 2004 ], "lobby_access": [ - 1736 + 2004 ], "map_pool": [ - 1047 + 1288 ], "map_pool_id": [ - 1736 + 2004 ], "map_veto": [ - 1736 + 2004 ], "match_mode": [ - 1736 + 2004 ], "matches_aggregate": [ - 1583 + 1824 ], "mr": [ - 1736 + 2004 ], "number_of_substitutes": [ - 1736 + 2004 ], "overtime": [ - 1736 + 2004 ], "prefer_dedicated_server": [ - 1736 + 2004 ], "ready_setting": [ - 1736 + 2004 ], "region_veto": [ - 1736 + 2004 ], "regions": [ - 1736 + 2004 ], "tech_timeout_setting": [ - 1736 + 2004 ], "timeout_setting": [ - 1736 + 2004 ], "tournament": [ - 3295 + 3563 ], "tournament_bracket": [ - 2946 + 3214 ], "tournament_stage": [ - 3037 + 3305 ], "tv_delay": [ - 1736 + 2004 ], "type": [ - 1736 + 2004 ], "__typename": [ 63 @@ -27187,7 +31477,7 @@ export default { }, "match_options_pk_columns_input": { "id": [ - 3319 + 3587 ], "__typename": [ 63 @@ -27205,7 +31495,7 @@ export default { 34 ], "check_in_setting": [ - 249 + 385 ], "coaches": [ 3 @@ -27214,7 +31504,7 @@ export default { 3 ], "id": [ - 3319 + 3587 ], "invite_code": [ 63 @@ -27226,16 +31516,16 @@ export default { 34 ], "lobby_access": [ - 331 + 572 ], "map_pool_id": [ - 3319 + 3587 ], "map_veto": [ 3 ], "match_mode": [ - 434 + 675 ], "mr": [ 34 @@ -27250,7 +31540,7 @@ export default { 3 ], "ready_setting": [ - 556 + 797 ], "region_veto": [ 3 @@ -27259,16 +31549,16 @@ export default { 63 ], "tech_timeout_setting": [ - 678 + 919 ], "timeout_setting": [ - 678 + 919 ], "tv_delay": [ 34 ], "type": [ - 475 + 716 ], "__typename": [ 63 @@ -27345,7 +31635,7 @@ export default { }, "match_options_stream_cursor_input": { "initial_value": [ - 1479 + 1720 ], "ordering": [ 216 @@ -27365,7 +31655,7 @@ export default { 34 ], "check_in_setting": [ - 249 + 385 ], "coaches": [ 3 @@ -27374,7 +31664,7 @@ export default { 3 ], "id": [ - 3319 + 3587 ], "invite_code": [ 63 @@ -27386,16 +31676,16 @@ export default { 34 ], "lobby_access": [ - 331 + 572 ], "map_pool_id": [ - 3319 + 3587 ], "map_veto": [ 3 ], "match_mode": [ - 434 + 675 ], "mr": [ 34 @@ -27410,7 +31700,7 @@ export default { 3 ], "ready_setting": [ - 556 + 797 ], "region_veto": [ 3 @@ -27419,16 +31709,16 @@ export default { 63 ], "tech_timeout_setting": [ - 678 + 919 ], "timeout_setting": [ - 678 + 919 ], "tv_delay": [ 34 ], "type": [ - 475 + 716 ], "__typename": [ 63 @@ -27460,13 +31750,13 @@ export default { "match_options_update_column": {}, "match_options_updates": { "_inc": [ - 1464 + 1705 ], "_set": [ - 1474 + 1715 ], "where": [ - 1462 + 1703 ], "__typename": [ 63 @@ -27543,28 +31833,28 @@ export default { }, "match_region_veto_picks": { "created_at": [ - 2922 + 3190 ], "id": [ - 3319 + 3587 ], "match": [ - 1578 + 1819 ], "match_id": [ - 3319 + 3587 ], "match_lineup": [ - 1258 + 1499 ], "match_lineup_id": [ - 3319 + 3587 ], "region": [ 63 ], "type": [ - 760 + 1001 ], "__typename": [ 63 @@ -27572,10 +31862,10 @@ export default { }, "match_region_veto_picks_aggregate": { "aggregate": [ - 1490 + 1731 ], "nodes": [ - 1486 + 1727 ], "__typename": [ 63 @@ -27583,7 +31873,7 @@ export default { }, "match_region_veto_picks_aggregate_bool_exp": { "count": [ - 1489 + 1730 ], "__typename": [ 63 @@ -27591,13 +31881,13 @@ export default { }, "match_region_veto_picks_aggregate_bool_exp_count": { "arguments": [ - 1504 + 1745 ], "distinct": [ 3 ], "filter": [ - 1493 + 1734 ], "predicate": [ 35 @@ -27611,7 +31901,7 @@ export default { 34, { "columns": [ - 1504, + 1745, "[match_region_veto_picks_select_column!]" ], "distinct": [ @@ -27620,10 +31910,10 @@ export default { } ], "max": [ - 1496 + 1737 ], "min": [ - 1498 + 1739 ], "__typename": [ 63 @@ -27631,13 +31921,13 @@ export default { }, "match_region_veto_picks_aggregate_order_by": { "count": [ - 1736 + 2004 ], "max": [ - 1497 + 1738 ], "min": [ - 1499 + 1740 ], "__typename": [ 63 @@ -27645,10 +31935,10 @@ export default { }, "match_region_veto_picks_arr_rel_insert_input": { "data": [ - 1495 + 1736 ], "on_conflict": [ - 1501 + 1742 ], "__typename": [ 63 @@ -27656,37 +31946,37 @@ export default { }, "match_region_veto_picks_bool_exp": { "_and": [ - 1493 + 1734 ], "_not": [ - 1493 + 1734 ], "_or": [ - 1493 + 1734 ], "created_at": [ - 2923 + 3191 ], "id": [ - 3320 + 3588 ], "match": [ - 1587 + 1828 ], "match_id": [ - 3320 + 3588 ], "match_lineup": [ - 1267 + 1508 ], "match_lineup_id": [ - 3320 + 3588 ], "region": [ 65 ], "type": [ - 761 + 1002 ], "__typename": [ 63 @@ -27695,28 +31985,28 @@ export default { "match_region_veto_picks_constraint": {}, "match_region_veto_picks_insert_input": { "created_at": [ - 2922 + 3190 ], "id": [ - 3319 + 3587 ], "match": [ - 1596 + 1837 ], "match_id": [ - 3319 + 3587 ], "match_lineup": [ - 1276 + 1517 ], "match_lineup_id": [ - 3319 + 3587 ], "region": [ 63 ], "type": [ - 760 + 1001 ], "__typename": [ 63 @@ -27724,16 +32014,16 @@ export default { }, "match_region_veto_picks_max_fields": { "created_at": [ - 2922 + 3190 ], "id": [ - 3319 + 3587 ], "match_id": [ - 3319 + 3587 ], "match_lineup_id": [ - 3319 + 3587 ], "region": [ 63 @@ -27744,19 +32034,19 @@ export default { }, "match_region_veto_picks_max_order_by": { "created_at": [ - 1736 + 2004 ], "id": [ - 1736 + 2004 ], "match_id": [ - 1736 + 2004 ], "match_lineup_id": [ - 1736 + 2004 ], "region": [ - 1736 + 2004 ], "__typename": [ 63 @@ -27764,16 +32054,16 @@ export default { }, "match_region_veto_picks_min_fields": { "created_at": [ - 2922 + 3190 ], "id": [ - 3319 + 3587 ], "match_id": [ - 3319 + 3587 ], "match_lineup_id": [ - 3319 + 3587 ], "region": [ 63 @@ -27784,19 +32074,19 @@ export default { }, "match_region_veto_picks_min_order_by": { "created_at": [ - 1736 + 2004 ], "id": [ - 1736 + 2004 ], "match_id": [ - 1736 + 2004 ], "match_lineup_id": [ - 1736 + 2004 ], "region": [ - 1736 + 2004 ], "__typename": [ 63 @@ -27807,7 +32097,7 @@ export default { 34 ], "returning": [ - 1486 + 1727 ], "__typename": [ 63 @@ -27815,13 +32105,13 @@ export default { }, "match_region_veto_picks_on_conflict": { "constraint": [ - 1494 + 1735 ], "update_columns": [ - 1508 + 1749 ], "where": [ - 1493 + 1734 ], "__typename": [ 63 @@ -27829,28 +32119,28 @@ export default { }, "match_region_veto_picks_order_by": { "created_at": [ - 1736 + 2004 ], "id": [ - 1736 + 2004 ], "match": [ - 1598 + 1839 ], "match_id": [ - 1736 + 2004 ], "match_lineup": [ - 1278 + 1519 ], "match_lineup_id": [ - 1736 + 2004 ], "region": [ - 1736 + 2004 ], "type": [ - 1736 + 2004 ], "__typename": [ 63 @@ -27858,7 +32148,7 @@ export default { }, "match_region_veto_picks_pk_columns_input": { "id": [ - 3319 + 3587 ], "__typename": [ 63 @@ -27867,22 +32157,22 @@ export default { "match_region_veto_picks_select_column": {}, "match_region_veto_picks_set_input": { "created_at": [ - 2922 + 3190 ], "id": [ - 3319 + 3587 ], "match_id": [ - 3319 + 3587 ], "match_lineup_id": [ - 3319 + 3587 ], "region": [ 63 ], "type": [ - 760 + 1001 ], "__typename": [ 63 @@ -27890,7 +32180,7 @@ export default { }, "match_region_veto_picks_stream_cursor_input": { "initial_value": [ - 1507 + 1748 ], "ordering": [ 216 @@ -27901,22 +32191,22 @@ export default { }, "match_region_veto_picks_stream_cursor_value_input": { "created_at": [ - 2922 + 3190 ], "id": [ - 3319 + 3587 ], "match_id": [ - 3319 + 3587 ], "match_lineup_id": [ - 3319 + 3587 ], "region": [ 63 ], "type": [ - 760 + 1001 ], "__typename": [ 63 @@ -27925,10 +32215,10 @@ export default { "match_region_veto_picks_update_column": {}, "match_region_veto_picks_updates": { "_set": [ - 1505 + 1746 ], "where": [ - 1493 + 1734 ], "__typename": [ 63 @@ -27942,13 +32232,13 @@ export default { 63 ], "game_server_node": [ - 824 + 1065 ], "game_server_node_id": [ 63 ], "id": [ - 3319 + 3587 ], "is_game_streamer": [ 3 @@ -27960,16 +32250,16 @@ export default { 63 ], "last_status_at": [ - 2922 + 3190 ], "link": [ 63 ], "match": [ - 1578 + 1819 ], "match_id": [ - 3319 + 3587 ], "mode": [ 63 @@ -27981,7 +32271,7 @@ export default { 63 ], "status_history": [ - 946, + 1187, { "path": [ 63 @@ -28000,10 +32290,10 @@ export default { }, "match_streams_aggregate": { "aggregate": [ - 1516 + 1757 ], "nodes": [ - 1510 + 1751 ], "__typename": [ 63 @@ -28011,13 +32301,13 @@ export default { }, "match_streams_aggregate_bool_exp": { "bool_and": [ - 1513 + 1754 ], "bool_or": [ - 1514 + 1755 ], "count": [ - 1515 + 1756 ], "__typename": [ 63 @@ -28025,13 +32315,13 @@ export default { }, "match_streams_aggregate_bool_exp_bool_and": { "arguments": [ - 1539 + 1780 ], "distinct": [ 3 ], "filter": [ - 1522 + 1763 ], "predicate": [ 4 @@ -28042,13 +32332,13 @@ export default { }, "match_streams_aggregate_bool_exp_bool_or": { "arguments": [ - 1540 + 1781 ], "distinct": [ 3 ], "filter": [ - 1522 + 1763 ], "predicate": [ 4 @@ -28059,13 +32349,13 @@ export default { }, "match_streams_aggregate_bool_exp_count": { "arguments": [ - 1538 + 1779 ], "distinct": [ 3 ], "filter": [ - 1522 + 1763 ], "predicate": [ 35 @@ -28076,13 +32366,13 @@ export default { }, "match_streams_aggregate_fields": { "avg": [ - 1520 + 1761 ], "count": [ 34, { "columns": [ - 1538, + 1779, "[match_streams_select_column!]" ], "distinct": [ @@ -28091,31 +32381,31 @@ export default { } ], "max": [ - 1529 + 1770 ], "min": [ - 1531 + 1772 ], "stddev": [ - 1542 + 1783 ], "stddev_pop": [ - 1544 + 1785 ], "stddev_samp": [ - 1546 + 1787 ], "sum": [ - 1550 + 1791 ], "var_pop": [ - 1554 + 1795 ], "var_samp": [ - 1556 + 1797 ], "variance": [ - 1558 + 1799 ], "__typename": [ 63 @@ -28123,37 +32413,37 @@ export default { }, "match_streams_aggregate_order_by": { "avg": [ - 1521 + 1762 ], "count": [ - 1736 + 2004 ], "max": [ - 1530 + 1771 ], "min": [ - 1532 + 1773 ], "stddev": [ - 1543 + 1784 ], "stddev_pop": [ - 1545 + 1786 ], "stddev_samp": [ - 1547 + 1788 ], "sum": [ - 1551 + 1792 ], "var_pop": [ - 1555 + 1796 ], "var_samp": [ - 1557 + 1798 ], "variance": [ - 1559 + 1800 ], "__typename": [ 63 @@ -28161,7 +32451,7 @@ export default { }, "match_streams_append_input": { "status_history": [ - 946 + 1187 ], "__typename": [ 63 @@ -28169,10 +32459,10 @@ export default { }, "match_streams_arr_rel_insert_input": { "data": [ - 1528 + 1769 ], "on_conflict": [ - 1534 + 1775 ], "__typename": [ 63 @@ -28188,7 +32478,7 @@ export default { }, "match_streams_avg_order_by": { "priority": [ - 1736 + 2004 ], "__typename": [ 63 @@ -28196,13 +32486,13 @@ export default { }, "match_streams_bool_exp": { "_and": [ - 1522 + 1763 ], "_not": [ - 1522 + 1763 ], "_or": [ - 1522 + 1763 ], "autodirector": [ 4 @@ -28211,13 +32501,13 @@ export default { 65 ], "game_server_node": [ - 836 + 1077 ], "game_server_node_id": [ 65 ], "id": [ - 3320 + 3588 ], "is_game_streamer": [ 4 @@ -28229,16 +32519,16 @@ export default { 65 ], "last_status_at": [ - 2923 + 3191 ], "link": [ 65 ], "match": [ - 1587 + 1828 ], "match_id": [ - 3320 + 3588 ], "mode": [ 65 @@ -28250,7 +32540,7 @@ export default { 65 ], "status_history": [ - 948 + 1189 ], "stream_url": [ 65 @@ -28303,13 +32593,13 @@ export default { 63 ], "game_server_node": [ - 848 + 1089 ], "game_server_node_id": [ 63 ], "id": [ - 3319 + 3587 ], "is_game_streamer": [ 3 @@ -28321,16 +32611,16 @@ export default { 63 ], "last_status_at": [ - 2922 + 3190 ], "link": [ 63 ], "match": [ - 1596 + 1837 ], "match_id": [ - 3319 + 3587 ], "mode": [ 63 @@ -28342,7 +32632,7 @@ export default { 63 ], "status_history": [ - 946 + 1187 ], "stream_url": [ 63 @@ -28362,19 +32652,19 @@ export default { 63 ], "id": [ - 3319 + 3587 ], "k8s_service_name": [ 63 ], "last_status_at": [ - 2922 + 3190 ], "link": [ 63 ], "match_id": [ - 3319 + 3587 ], "mode": [ 63 @@ -28397,40 +32687,40 @@ export default { }, "match_streams_max_order_by": { "error_message": [ - 1736 + 2004 ], "game_server_node_id": [ - 1736 + 2004 ], "id": [ - 1736 + 2004 ], "k8s_service_name": [ - 1736 + 2004 ], "last_status_at": [ - 1736 + 2004 ], "link": [ - 1736 + 2004 ], "match_id": [ - 1736 + 2004 ], "mode": [ - 1736 + 2004 ], "priority": [ - 1736 + 2004 ], "status": [ - 1736 + 2004 ], "stream_url": [ - 1736 + 2004 ], "title": [ - 1736 + 2004 ], "__typename": [ 63 @@ -28444,19 +32734,19 @@ export default { 63 ], "id": [ - 3319 + 3587 ], "k8s_service_name": [ 63 ], "last_status_at": [ - 2922 + 3190 ], "link": [ 63 ], "match_id": [ - 3319 + 3587 ], "mode": [ 63 @@ -28479,40 +32769,40 @@ export default { }, "match_streams_min_order_by": { "error_message": [ - 1736 + 2004 ], "game_server_node_id": [ - 1736 + 2004 ], "id": [ - 1736 + 2004 ], "k8s_service_name": [ - 1736 + 2004 ], "last_status_at": [ - 1736 + 2004 ], "link": [ - 1736 + 2004 ], "match_id": [ - 1736 + 2004 ], "mode": [ - 1736 + 2004 ], "priority": [ - 1736 + 2004 ], "status": [ - 1736 + 2004 ], "stream_url": [ - 1736 + 2004 ], "title": [ - 1736 + 2004 ], "__typename": [ 63 @@ -28523,7 +32813,7 @@ export default { 34 ], "returning": [ - 1510 + 1751 ], "__typename": [ 63 @@ -28531,13 +32821,13 @@ export default { }, "match_streams_on_conflict": { "constraint": [ - 1523 + 1764 ], "update_columns": [ - 1552 + 1793 ], "where": [ - 1522 + 1763 ], "__typename": [ 63 @@ -28545,58 +32835,58 @@ export default { }, "match_streams_order_by": { "autodirector": [ - 1736 + 2004 ], "error_message": [ - 1736 + 2004 ], "game_server_node": [ - 850 + 1091 ], "game_server_node_id": [ - 1736 + 2004 ], "id": [ - 1736 + 2004 ], "is_game_streamer": [ - 1736 + 2004 ], "is_live": [ - 1736 + 2004 ], "k8s_service_name": [ - 1736 + 2004 ], "last_status_at": [ - 1736 + 2004 ], "link": [ - 1736 + 2004 ], "match": [ - 1598 + 1839 ], "match_id": [ - 1736 + 2004 ], "mode": [ - 1736 + 2004 ], "priority": [ - 1736 + 2004 ], "status": [ - 1736 + 2004 ], "status_history": [ - 1736 + 2004 ], "stream_url": [ - 1736 + 2004 ], "title": [ - 1736 + 2004 ], "__typename": [ 63 @@ -28604,7 +32894,7 @@ export default { }, "match_streams_pk_columns_input": { "id": [ - 3319 + 3587 ], "__typename": [ 63 @@ -28612,7 +32902,7 @@ export default { }, "match_streams_prepend_input": { "status_history": [ - 946 + 1187 ], "__typename": [ 63 @@ -28632,7 +32922,7 @@ export default { 63 ], "id": [ - 3319 + 3587 ], "is_game_streamer": [ 3 @@ -28644,13 +32934,13 @@ export default { 63 ], "last_status_at": [ - 2922 + 3190 ], "link": [ 63 ], "match_id": [ - 3319 + 3587 ], "mode": [ 63 @@ -28662,7 +32952,7 @@ export default { 63 ], "status_history": [ - 946 + 1187 ], "stream_url": [ 63 @@ -28684,7 +32974,7 @@ export default { }, "match_streams_stddev_order_by": { "priority": [ - 1736 + 2004 ], "__typename": [ 63 @@ -28700,7 +32990,7 @@ export default { }, "match_streams_stddev_pop_order_by": { "priority": [ - 1736 + 2004 ], "__typename": [ 63 @@ -28716,7 +33006,7 @@ export default { }, "match_streams_stddev_samp_order_by": { "priority": [ - 1736 + 2004 ], "__typename": [ 63 @@ -28724,7 +33014,7 @@ export default { }, "match_streams_stream_cursor_input": { "initial_value": [ - 1549 + 1790 ], "ordering": [ 216 @@ -28744,7 +33034,7 @@ export default { 63 ], "id": [ - 3319 + 3587 ], "is_game_streamer": [ 3 @@ -28756,13 +33046,13 @@ export default { 63 ], "last_status_at": [ - 2922 + 3190 ], "link": [ 63 ], "match_id": [ - 3319 + 3587 ], "mode": [ 63 @@ -28774,7 +33064,7 @@ export default { 63 ], "status_history": [ - 946 + 1187 ], "stream_url": [ 63 @@ -28796,7 +33086,7 @@ export default { }, "match_streams_sum_order_by": { "priority": [ - 1736 + 2004 ], "__typename": [ 63 @@ -28805,28 +33095,28 @@ export default { "match_streams_update_column": {}, "match_streams_updates": { "_append": [ - 1518 + 1759 ], "_delete_at_path": [ - 1524 + 1765 ], "_delete_elem": [ - 1525 + 1766 ], "_delete_key": [ - 1526 + 1767 ], "_inc": [ - 1527 + 1768 ], "_prepend": [ - 1537 + 1778 ], "_set": [ - 1541 + 1782 ], "where": [ - 1522 + 1763 ], "__typename": [ 63 @@ -28842,7 +33132,7 @@ export default { }, "match_streams_var_pop_order_by": { "priority": [ - 1736 + 2004 ], "__typename": [ 63 @@ -28858,7 +33148,7 @@ export default { }, "match_streams_var_samp_order_by": { "priority": [ - 1736 + 2004 ], "__typename": [ 63 @@ -28874,7 +33164,7 @@ export default { }, "match_streams_variance_order_by": { "priority": [ - 1736 + 2004 ], "__typename": [ 63 @@ -28885,7 +33175,7 @@ export default { 63 ], "type": [ - 290 + 531 ], "__typename": [ 63 @@ -28893,10 +33183,10 @@ export default { }, "match_type_cfgs_aggregate": { "aggregate": [ - 1562 + 1803 ], "nodes": [ - 1560 + 1801 ], "__typename": [ 63 @@ -28907,7 +33197,7 @@ export default { 34, { "columns": [ - 1572, + 1813, "[match_type_cfgs_select_column!]" ], "distinct": [ @@ -28916,10 +33206,10 @@ export default { } ], "max": [ - 1566 + 1807 ], "min": [ - 1567 + 1808 ], "__typename": [ 63 @@ -28927,19 +33217,19 @@ export default { }, "match_type_cfgs_bool_exp": { "_and": [ - 1563 + 1804 ], "_not": [ - 1563 + 1804 ], "_or": [ - 1563 + 1804 ], "cfg": [ 65 ], "type": [ - 291 + 532 ], "__typename": [ 63 @@ -28951,7 +33241,7 @@ export default { 63 ], "type": [ - 290 + 531 ], "__typename": [ 63 @@ -28978,7 +33268,7 @@ export default { 34 ], "returning": [ - 1560 + 1801 ], "__typename": [ 63 @@ -28986,13 +33276,13 @@ export default { }, "match_type_cfgs_on_conflict": { "constraint": [ - 1564 + 1805 ], "update_columns": [ - 1576 + 1817 ], "where": [ - 1563 + 1804 ], "__typename": [ 63 @@ -29000,10 +33290,10 @@ export default { }, "match_type_cfgs_order_by": { "cfg": [ - 1736 + 2004 ], "type": [ - 1736 + 2004 ], "__typename": [ 63 @@ -29011,7 +33301,7 @@ export default { }, "match_type_cfgs_pk_columns_input": { "type": [ - 290 + 531 ], "__typename": [ 63 @@ -29023,7 +33313,7 @@ export default { 63 ], "type": [ - 290 + 531 ], "__typename": [ 63 @@ -29031,7 +33321,7 @@ export default { }, "match_type_cfgs_stream_cursor_input": { "initial_value": [ - 1575 + 1816 ], "ordering": [ 216 @@ -29045,7 +33335,7 @@ export default { 63 ], "type": [ - 290 + 531 ], "__typename": [ 63 @@ -29054,10 +33344,10 @@ export default { "match_type_cfgs_update_column": {}, "match_type_cfgs_updates": { "_set": [ - 1573 + 1814 ], "where": [ - 1563 + 1804 ], "__typename": [ 63 @@ -29089,13 +33379,13 @@ export default { 3 ], "cancels_at": [ - 2922 + 3190 ], "clutches": [ - 3363, + 3631, { "distinct_on": [ - 3379, + 3647, "[v_match_clutches_select_column!]" ], "limit": [ @@ -29105,19 +33395,19 @@ export default { 34 ], "order_by": [ - 3378, + 3646, "[v_match_clutches_order_by!]" ], "where": [ - 3372 + 3640 ] } ], "clutches_aggregate": [ - 3364, + 3632, { "distinct_on": [ - 3379, + 3647, "[v_match_clutches_select_column!]" ], "limit": [ @@ -29127,11 +33417,11 @@ export default { 34 ], "order_by": [ - 3378, + 3646, "[v_match_clutches_order_by!]" ], "where": [ - 3372 + 3640 ] } ], @@ -29142,16 +33432,16 @@ export default { 63 ], "created_at": [ - 2922 + 3190 ], "current_match_map_id": [ - 3319 + 3587 ], "demos": [ - 1300, + 1541, { "distinct_on": [ - 1329, + 1570, "[match_map_demos_select_column!]" ], "limit": [ @@ -29161,19 +33451,19 @@ export default { 34 ], "order_by": [ - 1326, + 1567, "[match_map_demos_order_by!]" ], "where": [ - 1312 + 1553 ] } ], "demos_aggregate": [ - 1301, + 1542, { "distinct_on": [ - 1329, + 1570, "[match_map_demos_select_column!]" ], "limit": [ @@ -29183,28 +33473,72 @@ export default { 34 ], "order_by": [ - 1326, + 1567, "[match_map_demos_order_by!]" ], "where": [ - 1312 + 1553 + ] + } + ], + "draft_games": [ + 334, + { + "distinct_on": [ + 358, + "[draft_games_select_column!]" + ], + "limit": [ + 34 + ], + "offset": [ + 34 + ], + "order_by": [ + 356, + "[draft_games_order_by!]" + ], + "where": [ + 345 + ] + } + ], + "draft_games_aggregate": [ + 335, + { + "distinct_on": [ + 358, + "[draft_games_select_column!]" + ], + "limit": [ + 34 + ], + "offset": [ + 34 + ], + "order_by": [ + 356, + "[draft_games_order_by!]" + ], + "where": [ + 345 ] } ], "e_match_status": [ - 449 + 690 ], "e_region": [ - 2659 + 2927 ], "effective_at": [ - 2922 + 3190 ], "elo_changes": [ - 3560, + 3828, { "distinct_on": [ - 3586, + 3854, "[v_player_elo_select_column!]" ], "limit": [ @@ -29214,19 +33548,19 @@ export default { 34 ], "order_by": [ - 3585, + 3853, "[v_player_elo_order_by!]" ], "where": [ - 3579 + 3847 ] } ], "elo_changes_aggregate": [ - 3561, + 3829, { "distinct_on": [ - 3586, + 3854, "[v_player_elo_select_column!]" ], "limit": [ @@ -29236,31 +33570,31 @@ export default { 34 ], "order_by": [ - 3585, + 3853, "[v_player_elo_order_by!]" ], "where": [ - 3579 + 3847 ] } ], "ended_at": [ - 2922 + 3190 ], "external_id": [ 63 ], "id": [ - 3319 + 3587 ], "invite_code": [ 63 ], "invites": [ - 1172, + 1413, { "distinct_on": [ - 1193, + 1434, "[match_invites_select_column!]" ], "limit": [ @@ -29270,19 +33604,19 @@ export default { 34 ], "order_by": [ - 1191, + 1432, "[match_invites_order_by!]" ], "where": [ - 1181 + 1422 ] } ], "invites_aggregate": [ - 1173, + 1414, { "distinct_on": [ - 1193, + 1434, "[match_invites_select_column!]" ], "limit": [ @@ -29292,11 +33626,11 @@ export default { 34 ], "order_by": [ - 1191, + 1432, "[match_invites_order_by!]" ], "where": [ - 1181 + 1422 ] } ], @@ -29328,19 +33662,19 @@ export default { 63 ], "lineup_1": [ - 1258 + 1499 ], "lineup_1_id": [ - 3319 + 3587 ], "lineup_2": [ - 1258 + 1499 ], "lineup_2_id": [ - 3319 + 3587 ], "lineup_counts": [ - 944, + 1185, { "path": [ 63 @@ -29348,13 +33682,13 @@ export default { } ], "map_veto_picking_lineup_id": [ - 3319 + 3587 ], "map_veto_picks": [ - 1392, + 1633, { "distinct_on": [ - 1410, + 1651, "[match_map_veto_picks_select_column!]" ], "limit": [ @@ -29364,19 +33698,19 @@ export default { 34 ], "order_by": [ - 1408, + 1649, "[match_map_veto_picks_order_by!]" ], "where": [ - 1399 + 1640 ] } ], "map_veto_picks_aggregate": [ - 1393, + 1634, { "distinct_on": [ - 1410, + 1651, "[match_map_veto_picks_select_column!]" ], "limit": [ @@ -29386,11 +33720,11 @@ export default { 34 ], "order_by": [ - 1408, + 1649, "[match_map_veto_picks_order_by!]" ], "where": [ - 1399 + 1640 ] } ], @@ -29398,10 +33732,10 @@ export default { 63 ], "match_maps": [ - 1416, + 1657, { "distinct_on": [ - 1438, + 1679, "[match_maps_select_column!]" ], "limit": [ @@ -29411,19 +33745,19 @@ export default { 34 ], "order_by": [ - 1436, + 1677, "[match_maps_order_by!]" ], "where": [ - 1425 + 1666 ] } ], "match_maps_aggregate": [ - 1417, + 1658, { "distinct_on": [ - 1438, + 1679, "[match_maps_select_column!]" ], "limit": [ @@ -29433,16 +33767,16 @@ export default { 34 ], "order_by": [ - 1436, + 1677, "[match_maps_order_by!]" ], "where": [ - 1425 + 1666 ] } ], "match_options_id": [ - 3319 + 3587 ], "max_players_per_lineup": [ 34 @@ -29451,10 +33785,10 @@ export default { 34 ], "opening_duels": [ - 3491, + 3759, { "distinct_on": [ - 3507, + 3775, "[v_match_player_opening_duels_select_column!]" ], "limit": [ @@ -29464,19 +33798,19 @@ export default { 34 ], "order_by": [ - 3506, + 3774, "[v_match_player_opening_duels_order_by!]" ], "where": [ - 3500 + 3768 ] } ], "opening_duels_aggregate": [ - 3492, + 3760, { "distinct_on": [ - 3507, + 3775, "[v_match_player_opening_duels_select_column!]" ], "limit": [ @@ -29486,19 +33820,19 @@ export default { 34 ], "order_by": [ - 3506, + 3774, "[v_match_player_opening_duels_order_by!]" ], "where": [ - 3500 + 3768 ] } ], "options": [ - 1458 + 1699 ], "organizer": [ - 2603 + 2871 ], "organizer_steam_id": [ 162 @@ -29507,10 +33841,10 @@ export default { 63 ], "player_assists": [ - 1874, + 2142, { "distinct_on": [ - 1897, + 2165, "[player_assists_select_column!]" ], "limit": [ @@ -29520,19 +33854,19 @@ export default { 34 ], "order_by": [ - 1895, + 2163, "[player_assists_order_by!]" ], "where": [ - 1885 + 2153 ] } ], "player_assists_aggregate": [ - 1875, + 2143, { "distinct_on": [ - 1897, + 2165, "[player_assists_select_column!]" ], "limit": [ @@ -29542,19 +33876,19 @@ export default { 34 ], "order_by": [ - 1895, + 2163, "[player_assists_order_by!]" ], "where": [ - 1885 + 2153 ] } ], "player_damages": [ - 1937, + 2205, { "distinct_on": [ - 1958, + 2226, "[player_damages_select_column!]" ], "limit": [ @@ -29564,19 +33898,19 @@ export default { 34 ], "order_by": [ - 1956, + 2224, "[player_damages_order_by!]" ], "where": [ - 1946 + 2214 ] } ], "player_damages_aggregate": [ - 1938, + 2206, { "distinct_on": [ - 1958, + 2226, "[player_damages_select_column!]" ], "limit": [ @@ -29586,19 +33920,19 @@ export default { 34 ], "order_by": [ - 1956, + 2224, "[player_damages_order_by!]" ], "where": [ - 1946 + 2214 ] } ], "player_flashes": [ - 2046, + 2314, { "distinct_on": [ - 2069, + 2337, "[player_flashes_select_column!]" ], "limit": [ @@ -29608,19 +33942,19 @@ export default { 34 ], "order_by": [ - 2067, + 2335, "[player_flashes_order_by!]" ], "where": [ - 2057 + 2325 ] } ], "player_flashes_aggregate": [ - 2047, + 2315, { "distinct_on": [ - 2069, + 2337, "[player_flashes_select_column!]" ], "limit": [ @@ -29630,19 +33964,19 @@ export default { 34 ], "order_by": [ - 2067, + 2335, "[player_flashes_order_by!]" ], "where": [ - 2057 + 2325 ] } ], "player_kills": [ - 2091, + 2359, { "distinct_on": [ - 2155, + 2423, "[player_kills_select_column!]" ], "limit": [ @@ -29652,19 +33986,19 @@ export default { 34 ], "order_by": [ - 2153, + 2421, "[player_kills_order_by!]" ], "where": [ - 2102 + 2370 ] } ], "player_kills_aggregate": [ - 2092, + 2360, { "distinct_on": [ - 2155, + 2423, "[player_kills_select_column!]" ], "limit": [ @@ -29674,19 +34008,19 @@ export default { 34 ], "order_by": [ - 2153, + 2421, "[player_kills_order_by!]" ], "where": [ - 2102 + 2370 ] } ], "player_objectives": [ - 2292, + 2560, { "distinct_on": [ - 2313, + 2581, "[player_objectives_select_column!]" ], "limit": [ @@ -29696,19 +34030,19 @@ export default { 34 ], "order_by": [ - 2311, + 2579, "[player_objectives_order_by!]" ], "where": [ - 2301 + 2569 ] } ], "player_objectives_aggregate": [ - 2293, + 2561, { "distinct_on": [ - 2313, + 2581, "[player_objectives_select_column!]" ], "limit": [ @@ -29718,19 +34052,19 @@ export default { 34 ], "order_by": [ - 2311, + 2579, "[player_objectives_order_by!]" ], "where": [ - 2301 + 2569 ] } ], "player_unused_utilities": [ - 2488, + 2756, { "distinct_on": [ - 2509, + 2777, "[player_unused_utility_select_column!]" ], "limit": [ @@ -29740,19 +34074,19 @@ export default { 34 ], "order_by": [ - 2507, + 2775, "[player_unused_utility_order_by!]" ], "where": [ - 2497 + 2765 ] } ], "player_unused_utilities_aggregate": [ - 2489, + 2757, { "distinct_on": [ - 2509, + 2777, "[player_unused_utility_select_column!]" ], "limit": [ @@ -29762,19 +34096,19 @@ export default { 34 ], "order_by": [ - 2507, + 2775, "[player_unused_utility_order_by!]" ], "where": [ - 2497 + 2765 ] } ], "player_utility": [ - 2529, + 2797, { "distinct_on": [ - 2550, + 2818, "[player_utility_select_column!]" ], "limit": [ @@ -29784,19 +34118,19 @@ export default { 34 ], "order_by": [ - 2548, + 2816, "[player_utility_order_by!]" ], "where": [ - 2538 + 2806 ] } ], "player_utility_aggregate": [ - 2530, + 2798, { "distinct_on": [ - 2550, + 2818, "[player_utility_select_column!]" ], "limit": [ @@ -29806,11 +34140,11 @@ export default { 34 ], "order_by": [ - 2548, + 2816, "[player_utility_order_by!]" ], "where": [ - 2538 + 2806 ] } ], @@ -29818,13 +34152,13 @@ export default { 63 ], "region_veto_picking_lineup_id": [ - 3319 + 3587 ], "region_veto_picks": [ - 1486, + 1727, { "distinct_on": [ - 1504, + 1745, "[match_region_veto_picks_select_column!]" ], "limit": [ @@ -29834,19 +34168,19 @@ export default { 34 ], "order_by": [ - 1502, + 1743, "[match_region_veto_picks_order_by!]" ], "where": [ - 1493 + 1734 ] } ], "region_veto_picks_aggregate": [ - 1487, + 1728, { "distinct_on": [ - 1504, + 1745, "[match_region_veto_picks_select_column!]" ], "limit": [ @@ -29856,11 +34190,11 @@ export default { 34 ], "order_by": [ - 1502, + 1743, "[match_region_veto_picks_order_by!]" ], "where": [ - 1493 + 1734 ] } ], @@ -29868,16 +34202,16 @@ export default { 3 ], "scheduled_at": [ - 2922 + 3190 ], "server": [ - 2686 + 2954 ], "server_error": [ 63 ], "server_id": [ - 3319 + 3587 ], "server_region": [ 63 @@ -29889,16 +34223,16 @@ export default { 63 ], "started_at": [ - 2922 + 3190 ], "status": [ - 454 + 695 ], "streams": [ - 1510, + 1751, { "distinct_on": [ - 1538, + 1779, "[match_streams_select_column!]" ], "limit": [ @@ -29908,19 +34242,19 @@ export default { 34 ], "order_by": [ - 1535, + 1776, "[match_streams_order_by!]" ], "where": [ - 1522 + 1763 ] } ], "streams_aggregate": [ - 1511, + 1752, { "distinct_on": [ - 1538, + 1779, "[match_streams_select_column!]" ], "limit": [ @@ -29930,19 +34264,19 @@ export default { 34 ], "order_by": [ - 1535, + 1776, "[match_streams_order_by!]" ], "where": [ - 1522 + 1763 ] } ], "teams": [ - 2879, + 3147, { "distinct_on": [ - 2901, + 3169, "[teams_select_column!]" ], "limit": [ @@ -29952,19 +34286,19 @@ export default { 34 ], "order_by": [ - 2899, + 3167, "[teams_order_by!]" ], "where": [ - 2888 + 3156 ] } ], "tournament_brackets": [ - 2924, + 3192, { "distinct_on": [ - 2948, + 3216, "[tournament_brackets_select_column!]" ], "limit": [ @@ -29974,19 +34308,19 @@ export default { 34 ], "order_by": [ - 2946, + 3214, "[tournament_brackets_order_by!]" ], "where": [ - 2935 + 3203 ] } ], "tournament_brackets_aggregate": [ - 2925, + 3193, { "distinct_on": [ - 2948, + 3216, "[tournament_brackets_select_column!]" ], "limit": [ @@ -29996,11 +34330,11 @@ export default { 34 ], "order_by": [ - 2946, + 3214, "[tournament_brackets_order_by!]" ], "where": [ - 2935 + 3203 ] } ], @@ -30008,10 +34342,10 @@ export default { 63 ], "winner": [ - 1258 + 1499 ], "winning_lineup_id": [ - 3319 + 3587 ], "__typename": [ 63 @@ -30019,10 +34353,10 @@ export default { }, "matches_aggregate": { "aggregate": [ - 1582 + 1823 ], "nodes": [ - 1578 + 1819 ], "__typename": [ 63 @@ -30030,7 +34364,7 @@ export default { }, "matches_aggregate_bool_exp": { "count": [ - 1581 + 1822 ], "__typename": [ 63 @@ -30038,13 +34372,13 @@ export default { }, "matches_aggregate_bool_exp_count": { "arguments": [ - 1600 + 1841 ], "distinct": [ 3 ], "filter": [ - 1587 + 1828 ], "predicate": [ 35 @@ -30055,13 +34389,13 @@ export default { }, "matches_aggregate_fields": { "avg": [ - 1585 + 1826 ], "count": [ 34, { "columns": [ - 1600, + 1841, "[matches_select_column!]" ], "distinct": [ @@ -30070,31 +34404,31 @@ export default { } ], "max": [ - 1591 + 1832 ], "min": [ - 1593 + 1834 ], "stddev": [ - 1602 + 1843 ], "stddev_pop": [ - 1604 + 1845 ], "stddev_samp": [ - 1606 + 1847 ], "sum": [ - 1610 + 1851 ], "var_pop": [ - 1614 + 1855 ], "var_samp": [ - 1616 + 1857 ], "variance": [ - 1618 + 1859 ], "__typename": [ 63 @@ -30102,37 +34436,37 @@ export default { }, "matches_aggregate_order_by": { "avg": [ - 1586 + 1827 ], "count": [ - 1736 + 2004 ], "max": [ - 1592 + 1833 ], "min": [ - 1594 + 1835 ], "stddev": [ - 1603 + 1844 ], "stddev_pop": [ - 1605 + 1846 ], "stddev_samp": [ - 1607 + 1848 ], "sum": [ - 1611 + 1852 ], "var_pop": [ - 1615 + 1856 ], "var_samp": [ - 1617 + 1858 ], "variance": [ - 1619 + 1860 ], "__typename": [ 63 @@ -30140,10 +34474,10 @@ export default { }, "matches_arr_rel_insert_input": { "data": [ - 1590 + 1831 ], "on_conflict": [ - 1597 + 1838 ], "__typename": [ 63 @@ -30165,7 +34499,7 @@ export default { }, "matches_avg_order_by": { "organizer_steam_id": [ - 1736 + 2004 ], "__typename": [ 63 @@ -30173,13 +34507,13 @@ export default { }, "matches_bool_exp": { "_and": [ - 1587 + 1828 ], "_not": [ - 1587 + 1828 ], "_or": [ - 1587 + 1828 ], "can_assign_server": [ 4 @@ -30206,13 +34540,13 @@ export default { 4 ], "cancels_at": [ - 2923 + 3191 ], "clutches": [ - 3372 + 3640 ], "clutches_aggregate": [ - 3365 + 3633 ], "connection_link": [ 65 @@ -30221,49 +34555,55 @@ export default { 65 ], "created_at": [ - 2923 + 3191 ], "current_match_map_id": [ - 3320 + 3588 ], "demos": [ - 1312 + 1553 ], "demos_aggregate": [ - 1302 + 1543 + ], + "draft_games": [ + 345 + ], + "draft_games_aggregate": [ + 336 ], "e_match_status": [ - 452 + 693 ], "e_region": [ - 2663 + 2931 ], "effective_at": [ - 2923 + 3191 ], "elo_changes": [ - 3579 + 3847 ], "elo_changes_aggregate": [ - 3562 + 3830 ], "ended_at": [ - 2923 + 3191 ], "external_id": [ 65 ], "id": [ - 3320 + 3588 ], "invite_code": [ 65 ], "invites": [ - 1181 + 1422 ], "invites_aggregate": [ - 1174 + 1415 ], "is_captain": [ 4 @@ -30293,40 +34633,40 @@ export default { 65 ], "lineup_1": [ - 1267 + 1508 ], "lineup_1_id": [ - 3320 + 3588 ], "lineup_2": [ - 1267 + 1508 ], "lineup_2_id": [ - 3320 + 3588 ], "lineup_counts": [ - 945 + 1186 ], "map_veto_picking_lineup_id": [ - 3320 + 3588 ], "map_veto_picks": [ - 1399 + 1640 ], "map_veto_picks_aggregate": [ - 1394 + 1635 ], "map_veto_type": [ 65 ], "match_maps": [ - 1425 + 1666 ], "match_maps_aggregate": [ - 1418 + 1659 ], "match_options_id": [ - 3320 + 3588 ], "max_players_per_lineup": [ 35 @@ -30335,16 +34675,16 @@ export default { 35 ], "opening_duels": [ - 3500 + 3768 ], "opening_duels_aggregate": [ - 3493 + 3761 ], "options": [ - 1462 + 1703 ], "organizer": [ - 2607 + 2875 ], "organizer_steam_id": [ 163 @@ -30353,73 +34693,73 @@ export default { 65 ], "player_assists": [ - 1885 + 2153 ], "player_assists_aggregate": [ - 1876 + 2144 ], "player_damages": [ - 1946 + 2214 ], "player_damages_aggregate": [ - 1939 + 2207 ], "player_flashes": [ - 2057 + 2325 ], "player_flashes_aggregate": [ - 2048 + 2316 ], "player_kills": [ - 2102 + 2370 ], "player_kills_aggregate": [ - 2093 + 2361 ], "player_objectives": [ - 2301 + 2569 ], "player_objectives_aggregate": [ - 2294 + 2562 ], "player_unused_utilities": [ - 2497 + 2765 ], "player_unused_utilities_aggregate": [ - 2490 + 2758 ], "player_utility": [ - 2538 + 2806 ], "player_utility_aggregate": [ - 2531 + 2799 ], "region": [ 65 ], "region_veto_picking_lineup_id": [ - 3320 + 3588 ], "region_veto_picks": [ - 1493 + 1734 ], "region_veto_picks_aggregate": [ - 1488 + 1729 ], "requested_organizer": [ 4 ], "scheduled_at": [ - 2923 + 3191 ], "server": [ - 2697 + 2965 ], "server_error": [ 65 ], "server_id": [ - 3320 + 3588 ], "server_region": [ 65 @@ -30431,34 +34771,34 @@ export default { 65 ], "started_at": [ - 2923 + 3191 ], "status": [ - 455 + 696 ], "streams": [ - 1522 + 1763 ], "streams_aggregate": [ - 1512 + 1753 ], "teams": [ - 2888 + 3156 ], "tournament_brackets": [ - 2935 + 3203 ], "tournament_brackets_aggregate": [ - 2926 + 3194 ], "tv_connection_string": [ 65 ], "winner": [ - 1267 + 1508 ], "winning_lineup_id": [ - 3320 + 3588 ], "__typename": [ 63 @@ -30475,70 +34815,73 @@ export default { }, "matches_insert_input": { "cancels_at": [ - 2922 + 3190 ], "clutches": [ - 3369 + 3637 ], "created_at": [ - 2922 + 3190 ], "demos": [ - 1309 + 1550 + ], + "draft_games": [ + 342 ], "e_match_status": [ - 460 + 701 ], "e_region": [ - 2669 + 2937 ], "elo_changes": [ - 3576 + 3844 ], "ended_at": [ - 2922 + 3190 ], "external_id": [ 63 ], "id": [ - 3319 + 3587 ], "invites": [ - 1178 + 1419 ], "label": [ 63 ], "lineup_1": [ - 1276 + 1517 ], "lineup_1_id": [ - 3319 + 3587 ], "lineup_2": [ - 1276 + 1517 ], "lineup_2_id": [ - 3319 + 3587 ], "map_veto_picks": [ - 1398 + 1639 ], "match_maps": [ - 1422 + 1663 ], "match_options_id": [ - 3319 + 3587 ], "opening_duels": [ - 3497 + 3765 ], "options": [ - 1469 + 1710 ], "organizer": [ - 2614 + 2882 ], "organizer_steam_id": [ 162 @@ -30547,64 +34890,64 @@ export default { 63 ], "player_assists": [ - 1882 + 2150 ], "player_damages": [ - 1943 + 2211 ], "player_flashes": [ - 2054 + 2322 ], "player_kills": [ - 2099 + 2367 ], "player_objectives": [ - 2298 + 2566 ], "player_unused_utilities": [ - 2494 + 2762 ], "player_utility": [ - 2535 + 2803 ], "region": [ 63 ], "region_veto_picks": [ - 1492 + 1733 ], "scheduled_at": [ - 2922 + 3190 ], "server": [ - 2706 + 2974 ], "server_error": [ 63 ], "server_id": [ - 3319 + 3587 ], "source": [ 63 ], "started_at": [ - 2922 + 3190 ], "status": [ - 454 + 695 ], "streams": [ - 1519 + 1760 ], "tournament_brackets": [ - 2932 + 3200 ], "winner": [ - 1276 + 1517 ], "winning_lineup_id": [ - 3319 + 3587 ], "__typename": [ 63 @@ -30612,7 +34955,7 @@ export default { }, "matches_max_fields": { "cancels_at": [ - 2922 + 3190 ], "connection_link": [ 63 @@ -30621,22 +34964,22 @@ export default { 63 ], "created_at": [ - 2922 + 3190 ], "current_match_map_id": [ - 3319 + 3587 ], "effective_at": [ - 2922 + 3190 ], "ended_at": [ - 2922 + 3190 ], "external_id": [ 63 ], "id": [ - 3319 + 3587 ], "invite_code": [ 63 @@ -30645,19 +34988,19 @@ export default { 63 ], "lineup_1_id": [ - 3319 + 3587 ], "lineup_2_id": [ - 3319 + 3587 ], "map_veto_picking_lineup_id": [ - 3319 + 3587 ], "map_veto_type": [ 63 ], "match_options_id": [ - 3319 + 3587 ], "max_players_per_lineup": [ 34 @@ -30675,16 +35018,16 @@ export default { 63 ], "region_veto_picking_lineup_id": [ - 3319 + 3587 ], "scheduled_at": [ - 2922 + 3190 ], "server_error": [ 63 ], "server_id": [ - 3319 + 3587 ], "server_region": [ 63 @@ -30696,13 +35039,13 @@ export default { 63 ], "started_at": [ - 2922 + 3190 ], "tv_connection_string": [ 63 ], "winning_lineup_id": [ - 3319 + 3587 ], "__typename": [ 63 @@ -30710,61 +35053,61 @@ export default { }, "matches_max_order_by": { "cancels_at": [ - 1736 + 2004 ], "created_at": [ - 1736 + 2004 ], "effective_at": [ - 1736 + 2004 ], "ended_at": [ - 1736 + 2004 ], "external_id": [ - 1736 + 2004 ], "id": [ - 1736 + 2004 ], "label": [ - 1736 + 2004 ], "lineup_1_id": [ - 1736 + 2004 ], "lineup_2_id": [ - 1736 + 2004 ], "match_options_id": [ - 1736 + 2004 ], "organizer_steam_id": [ - 1736 + 2004 ], "password": [ - 1736 + 2004 ], "region": [ - 1736 + 2004 ], "scheduled_at": [ - 1736 + 2004 ], "server_error": [ - 1736 + 2004 ], "server_id": [ - 1736 + 2004 ], "source": [ - 1736 + 2004 ], "started_at": [ - 1736 + 2004 ], "winning_lineup_id": [ - 1736 + 2004 ], "__typename": [ 63 @@ -30772,7 +35115,7 @@ export default { }, "matches_min_fields": { "cancels_at": [ - 2922 + 3190 ], "connection_link": [ 63 @@ -30781,22 +35124,22 @@ export default { 63 ], "created_at": [ - 2922 + 3190 ], "current_match_map_id": [ - 3319 + 3587 ], "effective_at": [ - 2922 + 3190 ], "ended_at": [ - 2922 + 3190 ], "external_id": [ 63 ], "id": [ - 3319 + 3587 ], "invite_code": [ 63 @@ -30805,19 +35148,19 @@ export default { 63 ], "lineup_1_id": [ - 3319 + 3587 ], "lineup_2_id": [ - 3319 + 3587 ], "map_veto_picking_lineup_id": [ - 3319 + 3587 ], "map_veto_type": [ 63 ], "match_options_id": [ - 3319 + 3587 ], "max_players_per_lineup": [ 34 @@ -30835,16 +35178,16 @@ export default { 63 ], "region_veto_picking_lineup_id": [ - 3319 + 3587 ], "scheduled_at": [ - 2922 + 3190 ], "server_error": [ 63 ], "server_id": [ - 3319 + 3587 ], "server_region": [ 63 @@ -30856,13 +35199,13 @@ export default { 63 ], "started_at": [ - 2922 + 3190 ], "tv_connection_string": [ 63 ], "winning_lineup_id": [ - 3319 + 3587 ], "__typename": [ 63 @@ -30870,61 +35213,61 @@ export default { }, "matches_min_order_by": { "cancels_at": [ - 1736 + 2004 ], "created_at": [ - 1736 + 2004 ], "effective_at": [ - 1736 + 2004 ], "ended_at": [ - 1736 + 2004 ], "external_id": [ - 1736 + 2004 ], "id": [ - 1736 + 2004 ], "label": [ - 1736 + 2004 ], "lineup_1_id": [ - 1736 + 2004 ], "lineup_2_id": [ - 1736 + 2004 ], "match_options_id": [ - 1736 + 2004 ], "organizer_steam_id": [ - 1736 + 2004 ], "password": [ - 1736 + 2004 ], "region": [ - 1736 + 2004 ], "scheduled_at": [ - 1736 + 2004 ], "server_error": [ - 1736 + 2004 ], "server_id": [ - 1736 + 2004 ], "source": [ - 1736 + 2004 ], "started_at": [ - 1736 + 2004 ], "winning_lineup_id": [ - 1736 + 2004 ], "__typename": [ 63 @@ -30935,7 +35278,7 @@ export default { 34 ], "returning": [ - 1578 + 1819 ], "__typename": [ 63 @@ -30943,10 +35286,10 @@ export default { }, "matches_obj_rel_insert_input": { "data": [ - 1590 + 1831 ], "on_conflict": [ - 1597 + 1838 ], "__typename": [ 63 @@ -30954,13 +35297,13 @@ export default { }, "matches_on_conflict": { "constraint": [ - 1588 + 1829 ], "update_columns": [ - 1612 + 1853 ], "where": [ - 1587 + 1828 ], "__typename": [ 63 @@ -30968,232 +35311,235 @@ export default { }, "matches_order_by": { "can_assign_server": [ - 1736 + 2004 ], "can_cancel": [ - 1736 + 2004 ], "can_check_in": [ - 1736 + 2004 ], "can_reassign_winner": [ - 1736 + 2004 ], "can_schedule": [ - 1736 + 2004 ], "can_start": [ - 1736 + 2004 ], "can_stream_live": [ - 1736 + 2004 ], "can_stream_tv": [ - 1736 + 2004 ], "cancels_at": [ - 1736 + 2004 ], "clutches_aggregate": [ - 3368 + 3636 ], "connection_link": [ - 1736 + 2004 ], "connection_string": [ - 1736 + 2004 ], "created_at": [ - 1736 + 2004 ], "current_match_map_id": [ - 1736 + 2004 ], "demos_aggregate": [ - 1307 + 1548 + ], + "draft_games_aggregate": [ + 341 ], "e_match_status": [ - 462 + 703 ], "e_region": [ - 2671 + 2939 ], "effective_at": [ - 1736 + 2004 ], "elo_changes_aggregate": [ - 3575 + 3843 ], "ended_at": [ - 1736 + 2004 ], "external_id": [ - 1736 + 2004 ], "id": [ - 1736 + 2004 ], "invite_code": [ - 1736 + 2004 ], "invites_aggregate": [ - 1177 + 1418 ], "is_captain": [ - 1736 + 2004 ], "is_coach": [ - 1736 + 2004 ], "is_friend_in_match_lineup": [ - 1736 + 2004 ], "is_in_lineup": [ - 1736 + 2004 ], "is_match_server_available": [ - 1736 + 2004 ], "is_organizer": [ - 1736 + 2004 ], "is_server_online": [ - 1736 + 2004 ], "is_tournament_match": [ - 1736 + 2004 ], "label": [ - 1736 + 2004 ], "lineup_1": [ - 1278 + 1519 ], "lineup_1_id": [ - 1736 + 2004 ], "lineup_2": [ - 1278 + 1519 ], "lineup_2_id": [ - 1736 + 2004 ], "lineup_counts": [ - 1736 + 2004 ], "map_veto_picking_lineup_id": [ - 1736 + 2004 ], "map_veto_picks_aggregate": [ - 1397 + 1638 ], "map_veto_type": [ - 1736 + 2004 ], "match_maps_aggregate": [ - 1421 + 1662 ], "match_options_id": [ - 1736 + 2004 ], "max_players_per_lineup": [ - 1736 + 2004 ], "min_players_per_lineup": [ - 1736 + 2004 ], "opening_duels_aggregate": [ - 3496 + 3764 ], "options": [ - 1471 + 1712 ], "organizer": [ - 2616 + 2884 ], "organizer_steam_id": [ - 1736 + 2004 ], "password": [ - 1736 + 2004 ], "player_assists_aggregate": [ - 1881 + 2149 ], "player_damages_aggregate": [ - 1942 + 2210 ], "player_flashes_aggregate": [ - 2053 + 2321 ], "player_kills_aggregate": [ - 2098 + 2366 ], "player_objectives_aggregate": [ - 2297 + 2565 ], "player_unused_utilities_aggregate": [ - 2493 + 2761 ], "player_utility_aggregate": [ - 2534 + 2802 ], "region": [ - 1736 + 2004 ], "region_veto_picking_lineup_id": [ - 1736 + 2004 ], "region_veto_picks_aggregate": [ - 1491 + 1732 ], "requested_organizer": [ - 1736 + 2004 ], "scheduled_at": [ - 1736 + 2004 ], "server": [ - 2708 + 2976 ], "server_error": [ - 1736 + 2004 ], "server_id": [ - 1736 + 2004 ], "server_region": [ - 1736 + 2004 ], "server_type": [ - 1736 + 2004 ], "source": [ - 1736 + 2004 ], "started_at": [ - 1736 + 2004 ], "status": [ - 1736 + 2004 ], "streams_aggregate": [ - 1517 + 1758 ], "teams_aggregate": [ - 2884 + 3152 ], "tournament_brackets_aggregate": [ - 2931 + 3199 ], "tv_connection_string": [ - 1736 + 2004 ], "winner": [ - 1278 + 1519 ], "winning_lineup_id": [ - 1736 + 2004 ], "__typename": [ 63 @@ -31201,7 +35547,7 @@ export default { }, "matches_pk_columns_input": { "id": [ - 3319 + 3587 ], "__typename": [ 63 @@ -31210,31 +35556,31 @@ export default { "matches_select_column": {}, "matches_set_input": { "cancels_at": [ - 2922 + 3190 ], "created_at": [ - 2922 + 3190 ], "ended_at": [ - 2922 + 3190 ], "external_id": [ 63 ], "id": [ - 3319 + 3587 ], "label": [ 63 ], "lineup_1_id": [ - 3319 + 3587 ], "lineup_2_id": [ - 3319 + 3587 ], "match_options_id": [ - 3319 + 3587 ], "organizer_steam_id": [ 162 @@ -31246,25 +35592,25 @@ export default { 63 ], "scheduled_at": [ - 2922 + 3190 ], "server_error": [ 63 ], "server_id": [ - 3319 + 3587 ], "source": [ 63 ], "started_at": [ - 2922 + 3190 ], "status": [ - 454 + 695 ], "winning_lineup_id": [ - 3319 + 3587 ], "__typename": [ 63 @@ -31286,7 +35632,7 @@ export default { }, "matches_stddev_order_by": { "organizer_steam_id": [ - 1736 + 2004 ], "__typename": [ 63 @@ -31308,7 +35654,7 @@ export default { }, "matches_stddev_pop_order_by": { "organizer_steam_id": [ - 1736 + 2004 ], "__typename": [ 63 @@ -31330,7 +35676,7 @@ export default { }, "matches_stddev_samp_order_by": { "organizer_steam_id": [ - 1736 + 2004 ], "__typename": [ 63 @@ -31338,7 +35684,7 @@ export default { }, "matches_stream_cursor_input": { "initial_value": [ - 1609 + 1850 ], "ordering": [ 216 @@ -31349,34 +35695,34 @@ export default { }, "matches_stream_cursor_value_input": { "cancels_at": [ - 2922 + 3190 ], "created_at": [ - 2922 + 3190 ], "effective_at": [ - 2922 + 3190 ], "ended_at": [ - 2922 + 3190 ], "external_id": [ 63 ], "id": [ - 3319 + 3587 ], "label": [ 63 ], "lineup_1_id": [ - 3319 + 3587 ], "lineup_2_id": [ - 3319 + 3587 ], "match_options_id": [ - 3319 + 3587 ], "organizer_steam_id": [ 162 @@ -31388,25 +35734,25 @@ export default { 63 ], "scheduled_at": [ - 2922 + 3190 ], "server_error": [ 63 ], "server_id": [ - 3319 + 3587 ], "source": [ 63 ], "started_at": [ - 2922 + 3190 ], "status": [ - 454 + 695 ], "winning_lineup_id": [ - 3319 + 3587 ], "__typename": [ 63 @@ -31428,7 +35774,7 @@ export default { }, "matches_sum_order_by": { "organizer_steam_id": [ - 1736 + 2004 ], "__typename": [ 63 @@ -31437,13 +35783,13 @@ export default { "matches_update_column": {}, "matches_updates": { "_inc": [ - 1589 + 1830 ], "_set": [ - 1601 + 1842 ], "where": [ - 1587 + 1828 ], "__typename": [ 63 @@ -31465,7 +35811,7 @@ export default { }, "matches_var_pop_order_by": { "organizer_steam_id": [ - 1736 + 2004 ], "__typename": [ 63 @@ -31487,7 +35833,7 @@ export default { }, "matches_var_samp_order_by": { "organizer_steam_id": [ - 1736 + 2004 ], "__typename": [ 63 @@ -31509,7 +35855,7 @@ export default { }, "matches_variance_order_by": { "organizer_steam_id": [ - 1736 + 2004 ], "__typename": [ 63 @@ -31528,10 +35874,10 @@ export default { }, "migration_hashes_hashes_aggregate": { "aggregate": [ - 1622 + 1863 ], "nodes": [ - 1620 + 1861 ], "__typename": [ 63 @@ -31542,7 +35888,7 @@ export default { 34, { "columns": [ - 1632, + 1873, "[migration_hashes_hashes_select_column!]" ], "distinct": [ @@ -31551,10 +35897,10 @@ export default { } ], "max": [ - 1626 + 1867 ], "min": [ - 1627 + 1868 ], "__typename": [ 63 @@ -31562,13 +35908,13 @@ export default { }, "migration_hashes_hashes_bool_exp": { "_and": [ - 1623 + 1864 ], "_not": [ - 1623 + 1864 ], "_or": [ - 1623 + 1864 ], "hash": [ 65 @@ -31619,7 +35965,7 @@ export default { 34 ], "returning": [ - 1620 + 1861 ], "__typename": [ 63 @@ -31627,13 +35973,13 @@ export default { }, "migration_hashes_hashes_on_conflict": { "constraint": [ - 1624 + 1865 ], "update_columns": [ - 1636 + 1877 ], "where": [ - 1623 + 1864 ], "__typename": [ 63 @@ -31641,10 +35987,10 @@ export default { }, "migration_hashes_hashes_order_by": { "hash": [ - 1736 + 2004 ], "name": [ - 1736 + 2004 ], "__typename": [ 63 @@ -31672,7 +36018,7 @@ export default { }, "migration_hashes_hashes_stream_cursor_input": { "initial_value": [ - 1635 + 1876 ], "ordering": [ 216 @@ -31695,10 +36041,10 @@ export default { "migration_hashes_hashes_update_column": {}, "migration_hashes_hashes_updates": { "_set": [ - 1633 + 1874 ], "where": [ - 1623 + 1864 ], "__typename": [ 63 @@ -31712,13 +36058,13 @@ export default { 63 ], "created_at": [ - 2922 + 3190 ], "discord_id": [ 63 ], "elo": [ - 946, + 1187, { "path": [ 63 @@ -31735,7 +36081,7 @@ export default { 63 ], "last_sign_in_at": [ - 2922 + 3190 ], "name": [ 63 @@ -31744,7 +36090,7 @@ export default { 3 ], "player": [ - 2603 + 2871 ], "profile_url": [ 63 @@ -31764,10 +36110,10 @@ export default { }, "my_friends_aggregate": { "aggregate": [ - 1644 + 1885 ], "nodes": [ - 1638 + 1879 ], "__typename": [ 63 @@ -31775,13 +36121,13 @@ export default { }, "my_friends_aggregate_bool_exp": { "bool_and": [ - 1641 + 1882 ], "bool_or": [ - 1642 + 1883 ], "count": [ - 1643 + 1884 ], "__typename": [ 63 @@ -31789,13 +36135,13 @@ export default { }, "my_friends_aggregate_bool_exp_bool_and": { "arguments": [ - 1664 + 1905 ], "distinct": [ 3 ], "filter": [ - 1650 + 1891 ], "predicate": [ 4 @@ -31806,13 +36152,13 @@ export default { }, "my_friends_aggregate_bool_exp_bool_or": { "arguments": [ - 1665 + 1906 ], "distinct": [ 3 ], "filter": [ - 1650 + 1891 ], "predicate": [ 4 @@ -31823,13 +36169,13 @@ export default { }, "my_friends_aggregate_bool_exp_count": { "arguments": [ - 1663 + 1904 ], "distinct": [ 3 ], "filter": [ - 1650 + 1891 ], "predicate": [ 35 @@ -31840,13 +36186,13 @@ export default { }, "my_friends_aggregate_fields": { "avg": [ - 1648 + 1889 ], "count": [ 34, { "columns": [ - 1663, + 1904, "[my_friends_select_column!]" ], "distinct": [ @@ -31855,31 +36201,31 @@ export default { } ], "max": [ - 1656 + 1897 ], "min": [ - 1658 + 1899 ], "stddev": [ - 1667 + 1908 ], "stddev_pop": [ - 1669 + 1910 ], "stddev_samp": [ - 1671 + 1912 ], "sum": [ - 1675 + 1916 ], "var_pop": [ - 1678 + 1919 ], "var_samp": [ - 1680 + 1921 ], "variance": [ - 1682 + 1923 ], "__typename": [ 63 @@ -31887,37 +36233,37 @@ export default { }, "my_friends_aggregate_order_by": { "avg": [ - 1649 + 1890 ], "count": [ - 1736 + 2004 ], "max": [ - 1657 + 1898 ], "min": [ - 1659 + 1900 ], "stddev": [ - 1668 + 1909 ], "stddev_pop": [ - 1670 + 1911 ], "stddev_samp": [ - 1672 + 1913 ], "sum": [ - 1676 + 1917 ], "var_pop": [ - 1679 + 1920 ], "var_samp": [ - 1681 + 1922 ], "variance": [ - 1683 + 1924 ], "__typename": [ 63 @@ -31925,7 +36271,7 @@ export default { }, "my_friends_append_input": { "elo": [ - 946 + 1187 ], "__typename": [ 63 @@ -31933,141 +36279,590 @@ export default { }, "my_friends_arr_rel_insert_input": { "data": [ - 1655 + 1896 + ], + "__typename": [ + 63 + ] + }, + "my_friends_avg_fields": { + "friend_steam_id": [ + 25 + ], + "invited_by_steam_id": [ + 25 + ], + "steam_id": [ + 25 + ], + "__typename": [ + 63 + ] + }, + "my_friends_avg_order_by": { + "friend_steam_id": [ + 2004 + ], + "invited_by_steam_id": [ + 2004 + ], + "steam_id": [ + 2004 + ], + "__typename": [ + 63 + ] + }, + "my_friends_bool_exp": { + "_and": [ + 1891 + ], + "_not": [ + 1891 + ], + "_or": [ + 1891 + ], + "avatar_url": [ + 65 + ], + "country": [ + 65 + ], + "created_at": [ + 3191 + ], + "discord_id": [ + 65 + ], + "elo": [ + 1189 + ], + "friend_steam_id": [ + 163 + ], + "invited_by_steam_id": [ + 163 + ], + "language": [ + 65 + ], + "last_sign_in_at": [ + 3191 + ], + "name": [ + 65 + ], + "name_registered": [ + 4 + ], + "player": [ + 2875 + ], + "profile_url": [ + 65 + ], + "role": [ + 65 + ], + "status": [ + 65 + ], + "steam_id": [ + 163 + ], + "__typename": [ + 63 + ] + }, + "my_friends_delete_at_path_input": { + "elo": [ + 63 + ], + "__typename": [ + 63 + ] + }, + "my_friends_delete_elem_input": { + "elo": [ + 34 + ], + "__typename": [ + 63 + ] + }, + "my_friends_delete_key_input": { + "elo": [ + 63 + ], + "__typename": [ + 63 + ] + }, + "my_friends_inc_input": { + "friend_steam_id": [ + 162 + ], + "invited_by_steam_id": [ + 162 + ], + "steam_id": [ + 162 + ], + "__typename": [ + 63 + ] + }, + "my_friends_insert_input": { + "avatar_url": [ + 63 + ], + "country": [ + 63 + ], + "created_at": [ + 3190 + ], + "discord_id": [ + 63 + ], + "elo": [ + 1187 + ], + "friend_steam_id": [ + 162 + ], + "invited_by_steam_id": [ + 162 + ], + "language": [ + 63 + ], + "last_sign_in_at": [ + 3190 + ], + "name": [ + 63 + ], + "name_registered": [ + 3 + ], + "player": [ + 2882 + ], + "profile_url": [ + 63 + ], + "role": [ + 63 + ], + "status": [ + 63 + ], + "steam_id": [ + 162 + ], + "__typename": [ + 63 + ] + }, + "my_friends_max_fields": { + "avatar_url": [ + 63 + ], + "country": [ + 63 + ], + "created_at": [ + 3190 + ], + "discord_id": [ + 63 + ], + "friend_steam_id": [ + 162 + ], + "invited_by_steam_id": [ + 162 + ], + "language": [ + 63 + ], + "last_sign_in_at": [ + 3190 + ], + "name": [ + 63 + ], + "profile_url": [ + 63 + ], + "role": [ + 63 + ], + "status": [ + 63 + ], + "steam_id": [ + 162 + ], + "__typename": [ + 63 + ] + }, + "my_friends_max_order_by": { + "avatar_url": [ + 2004 + ], + "country": [ + 2004 + ], + "created_at": [ + 2004 + ], + "discord_id": [ + 2004 + ], + "friend_steam_id": [ + 2004 + ], + "invited_by_steam_id": [ + 2004 + ], + "language": [ + 2004 + ], + "last_sign_in_at": [ + 2004 + ], + "name": [ + 2004 + ], + "profile_url": [ + 2004 + ], + "role": [ + 2004 + ], + "status": [ + 2004 + ], + "steam_id": [ + 2004 + ], + "__typename": [ + 63 + ] + }, + "my_friends_min_fields": { + "avatar_url": [ + 63 + ], + "country": [ + 63 + ], + "created_at": [ + 3190 + ], + "discord_id": [ + 63 + ], + "friend_steam_id": [ + 162 + ], + "invited_by_steam_id": [ + 162 + ], + "language": [ + 63 + ], + "last_sign_in_at": [ + 3190 + ], + "name": [ + 63 + ], + "profile_url": [ + 63 + ], + "role": [ + 63 + ], + "status": [ + 63 + ], + "steam_id": [ + 162 + ], + "__typename": [ + 63 + ] + }, + "my_friends_min_order_by": { + "avatar_url": [ + 2004 + ], + "country": [ + 2004 + ], + "created_at": [ + 2004 + ], + "discord_id": [ + 2004 + ], + "friend_steam_id": [ + 2004 + ], + "invited_by_steam_id": [ + 2004 + ], + "language": [ + 2004 + ], + "last_sign_in_at": [ + 2004 + ], + "name": [ + 2004 + ], + "profile_url": [ + 2004 + ], + "role": [ + 2004 + ], + "status": [ + 2004 + ], + "steam_id": [ + 2004 + ], + "__typename": [ + 63 + ] + }, + "my_friends_mutation_response": { + "affected_rows": [ + 34 + ], + "returning": [ + 1879 + ], + "__typename": [ + 63 + ] + }, + "my_friends_order_by": { + "avatar_url": [ + 2004 + ], + "country": [ + 2004 + ], + "created_at": [ + 2004 + ], + "discord_id": [ + 2004 + ], + "elo": [ + 2004 ], - "__typename": [ - 63 - ] - }, - "my_friends_avg_fields": { "friend_steam_id": [ - 25 + 2004 ], "invited_by_steam_id": [ - 25 + 2004 + ], + "language": [ + 2004 + ], + "last_sign_in_at": [ + 2004 + ], + "name": [ + 2004 + ], + "name_registered": [ + 2004 + ], + "player": [ + 2884 + ], + "profile_url": [ + 2004 + ], + "role": [ + 2004 + ], + "status": [ + 2004 ], "steam_id": [ - 25 + 2004 ], "__typename": [ 63 ] }, - "my_friends_avg_order_by": { - "friend_steam_id": [ - 1736 - ], - "invited_by_steam_id": [ - 1736 - ], - "steam_id": [ - 1736 + "my_friends_prepend_input": { + "elo": [ + 1187 ], "__typename": [ 63 ] }, - "my_friends_bool_exp": { - "_and": [ - 1650 - ], - "_not": [ - 1650 - ], - "_or": [ - 1650 - ], + "my_friends_select_column": {}, + "my_friends_select_column_my_friends_aggregate_bool_exp_bool_and_arguments_columns": {}, + "my_friends_select_column_my_friends_aggregate_bool_exp_bool_or_arguments_columns": {}, + "my_friends_set_input": { "avatar_url": [ - 65 + 63 ], "country": [ - 65 + 63 ], "created_at": [ - 2923 + 3190 ], "discord_id": [ - 65 + 63 ], "elo": [ - 948 + 1187 ], "friend_steam_id": [ - 163 + 162 ], "invited_by_steam_id": [ - 163 + 162 ], "language": [ - 65 + 63 ], "last_sign_in_at": [ - 2923 + 3190 ], "name": [ - 65 + 63 ], "name_registered": [ - 4 - ], - "player": [ - 2607 + 3 ], "profile_url": [ - 65 + 63 ], "role": [ - 65 + 63 ], "status": [ - 65 + 63 ], "steam_id": [ - 163 + 162 ], "__typename": [ 63 ] }, - "my_friends_delete_at_path_input": { - "elo": [ + "my_friends_stddev_fields": { + "friend_steam_id": [ + 25 + ], + "invited_by_steam_id": [ + 25 + ], + "steam_id": [ + 25 + ], + "__typename": [ 63 + ] + }, + "my_friends_stddev_order_by": { + "friend_steam_id": [ + 2004 + ], + "invited_by_steam_id": [ + 2004 + ], + "steam_id": [ + 2004 ], "__typename": [ 63 ] }, - "my_friends_delete_elem_input": { - "elo": [ - 34 + "my_friends_stddev_pop_fields": { + "friend_steam_id": [ + 25 + ], + "invited_by_steam_id": [ + 25 + ], + "steam_id": [ + 25 ], "__typename": [ 63 ] }, - "my_friends_delete_key_input": { - "elo": [ + "my_friends_stddev_pop_order_by": { + "friend_steam_id": [ + 2004 + ], + "invited_by_steam_id": [ + 2004 + ], + "steam_id": [ + 2004 + ], + "__typename": [ 63 + ] + }, + "my_friends_stddev_samp_fields": { + "friend_steam_id": [ + 25 + ], + "invited_by_steam_id": [ + 25 + ], + "steam_id": [ + 25 ], "__typename": [ 63 ] }, - "my_friends_inc_input": { + "my_friends_stddev_samp_order_by": { "friend_steam_id": [ - 162 + 2004 ], "invited_by_steam_id": [ - 162 + 2004 ], "steam_id": [ - 162 + 2004 ], "__typename": [ 63 ] }, - "my_friends_insert_input": { + "my_friends_stream_cursor_input": { + "initial_value": [ + 1915 + ], + "ordering": [ + 216 + ], + "__typename": [ + 63 + ] + }, + "my_friends_stream_cursor_value_input": { "avatar_url": [ 63 ], @@ -32075,13 +36870,13 @@ export default { 63 ], "created_at": [ - 2922 + 3190 ], "discord_id": [ 63 ], "elo": [ - 946 + 1187 ], "friend_steam_id": [ 162 @@ -32093,7 +36888,7 @@ export default { 63 ], "last_sign_in_at": [ - 2922 + 3190 ], "name": [ 63 @@ -32101,9 +36896,6 @@ export default { "name_registered": [ 3 ], - "player": [ - 2614 - ], "profile_url": [ 63 ], @@ -32120,588 +36912,718 @@ export default { 63 ] }, - "my_friends_max_fields": { - "avatar_url": [ - 63 + "my_friends_sum_fields": { + "friend_steam_id": [ + 162 ], - "country": [ - 63 + "invited_by_steam_id": [ + 162 ], - "created_at": [ - 2922 + "steam_id": [ + 162 ], - "discord_id": [ + "__typename": [ 63 - ], + ] + }, + "my_friends_sum_order_by": { "friend_steam_id": [ - 162 + 2004 ], "invited_by_steam_id": [ - 162 + 2004 ], - "language": [ + "steam_id": [ + 2004 + ], + "__typename": [ 63 + ] + }, + "my_friends_updates": { + "_append": [ + 1887 ], - "last_sign_in_at": [ - 2922 + "_delete_at_path": [ + 1892 ], - "name": [ - 63 + "_delete_elem": [ + 1893 ], - "profile_url": [ - 63 + "_delete_key": [ + 1894 ], - "role": [ - 63 + "_inc": [ + 1895 ], - "status": [ + "_prepend": [ + 1903 + ], + "_set": [ + 1907 + ], + "where": [ + 1891 + ], + "__typename": [ 63 + ] + }, + "my_friends_var_pop_fields": { + "friend_steam_id": [ + 25 + ], + "invited_by_steam_id": [ + 25 ], "steam_id": [ - 162 + 25 ], "__typename": [ 63 ] }, - "my_friends_max_order_by": { - "avatar_url": [ - 1736 + "my_friends_var_pop_order_by": { + "friend_steam_id": [ + 2004 ], - "country": [ - 1736 + "invited_by_steam_id": [ + 2004 ], - "created_at": [ - 1736 + "steam_id": [ + 2004 ], - "discord_id": [ - 1736 + "__typename": [ + 63 + ] + }, + "my_friends_var_samp_fields": { + "friend_steam_id": [ + 25 + ], + "invited_by_steam_id": [ + 25 + ], + "steam_id": [ + 25 ], + "__typename": [ + 63 + ] + }, + "my_friends_var_samp_order_by": { "friend_steam_id": [ - 1736 + 2004 ], "invited_by_steam_id": [ - 1736 + 2004 ], - "language": [ - 1736 + "steam_id": [ + 2004 ], - "last_sign_in_at": [ - 1736 + "__typename": [ + 63 + ] + }, + "my_friends_variance_fields": { + "friend_steam_id": [ + 25 ], - "name": [ - 1736 + "invited_by_steam_id": [ + 25 ], - "profile_url": [ - 1736 + "steam_id": [ + 25 ], - "role": [ - 1736 + "__typename": [ + 63 + ] + }, + "my_friends_variance_order_by": { + "friend_steam_id": [ + 2004 ], - "status": [ - 1736 + "invited_by_steam_id": [ + 2004 ], "steam_id": [ - 1736 + 2004 ], "__typename": [ 63 ] }, - "my_friends_min_fields": { - "avatar_url": [ + "news_articles": { + "author": [ 63 ], - "country": [ + "content_html": [ + 63 + ], + "cover_image_url": [ 63 ], "created_at": [ - 2922 + 3190 ], - "discord_id": [ - 63 + "id": [ + 3587 ], - "friend_steam_id": [ - 162 + "issue_number": [ + 34 ], - "invited_by_steam_id": [ - 162 + "published_at": [ + 3190 ], - "language": [ + "scraped_at": [ + 3190 + ], + "slug": [ 63 ], - "last_sign_in_at": [ - 2922 + "source": [ + 63 ], - "name": [ + "teaser": [ 63 ], - "profile_url": [ + "title": [ 63 ], - "role": [ + "updated_at": [ + 3190 + ], + "url": [ 63 ], - "status": [ + "__typename": [ 63 + ] + }, + "news_articles_aggregate": { + "aggregate": [ + 1927 ], - "steam_id": [ - 162 + "nodes": [ + 1925 ], "__typename": [ 63 ] }, - "my_friends_min_order_by": { - "avatar_url": [ - 1736 + "news_articles_aggregate_fields": { + "avg": [ + 1928 ], - "country": [ - 1736 + "count": [ + 34, + { + "columns": [ + 1939, + "[news_articles_select_column!]" + ], + "distinct": [ + 3 + ] + } + ], + "max": [ + 1933 + ], + "min": [ + 1934 + ], + "stddev": [ + 1941 + ], + "stddev_pop": [ + 1942 + ], + "stddev_samp": [ + 1943 + ], + "sum": [ + 1946 + ], + "var_pop": [ + 1949 + ], + "var_samp": [ + 1950 + ], + "variance": [ + 1951 + ], + "__typename": [ + 63 + ] + }, + "news_articles_avg_fields": { + "issue_number": [ + 25 + ], + "__typename": [ + 63 + ] + }, + "news_articles_bool_exp": { + "_and": [ + 1929 + ], + "_not": [ + 1929 + ], + "_or": [ + 1929 + ], + "author": [ + 65 + ], + "content_html": [ + 65 + ], + "cover_image_url": [ + 65 ], "created_at": [ - 1736 + 3191 ], - "discord_id": [ - 1736 + "id": [ + 3588 ], - "friend_steam_id": [ - 1736 + "issue_number": [ + 35 ], - "invited_by_steam_id": [ - 1736 + "published_at": [ + 3191 ], - "language": [ - 1736 + "scraped_at": [ + 3191 ], - "last_sign_in_at": [ - 1736 + "slug": [ + 65 ], - "name": [ - 1736 + "source": [ + 65 ], - "profile_url": [ - 1736 + "teaser": [ + 65 ], - "role": [ - 1736 + "title": [ + 65 ], - "status": [ - 1736 + "updated_at": [ + 3191 ], - "steam_id": [ - 1736 + "url": [ + 65 ], "__typename": [ 63 ] }, - "my_friends_mutation_response": { - "affected_rows": [ + "news_articles_constraint": {}, + "news_articles_inc_input": { + "issue_number": [ 34 ], - "returning": [ - 1638 - ], "__typename": [ 63 ] }, - "my_friends_order_by": { - "avatar_url": [ - 1736 + "news_articles_insert_input": { + "author": [ + 63 ], - "country": [ - 1736 + "content_html": [ + 63 + ], + "cover_image_url": [ + 63 ], "created_at": [ - 1736 + 3190 ], - "discord_id": [ - 1736 + "id": [ + 3587 ], - "elo": [ - 1736 + "issue_number": [ + 34 + ], + "published_at": [ + 3190 + ], + "scraped_at": [ + 3190 + ], + "slug": [ + 63 + ], + "source": [ + 63 + ], + "teaser": [ + 63 + ], + "title": [ + 63 + ], + "updated_at": [ + 3190 + ], + "url": [ + 63 + ], + "__typename": [ + 63 + ] + }, + "news_articles_max_fields": { + "author": [ + 63 + ], + "content_html": [ + 63 ], - "friend_steam_id": [ - 1736 + "cover_image_url": [ + 63 ], - "invited_by_steam_id": [ - 1736 + "created_at": [ + 3190 ], - "language": [ - 1736 + "id": [ + 3587 ], - "last_sign_in_at": [ - 1736 + "issue_number": [ + 34 ], - "name": [ - 1736 + "published_at": [ + 3190 ], - "name_registered": [ - 1736 + "scraped_at": [ + 3190 ], - "player": [ - 2616 + "slug": [ + 63 ], - "profile_url": [ - 1736 + "source": [ + 63 ], - "role": [ - 1736 + "teaser": [ + 63 ], - "status": [ - 1736 + "title": [ + 63 ], - "steam_id": [ - 1736 + "updated_at": [ + 3190 ], - "__typename": [ + "url": [ 63 - ] - }, - "my_friends_prepend_input": { - "elo": [ - 946 ], "__typename": [ 63 ] }, - "my_friends_select_column": {}, - "my_friends_select_column_my_friends_aggregate_bool_exp_bool_and_arguments_columns": {}, - "my_friends_select_column_my_friends_aggregate_bool_exp_bool_or_arguments_columns": {}, - "my_friends_set_input": { - "avatar_url": [ + "news_articles_min_fields": { + "author": [ 63 ], - "country": [ + "content_html": [ 63 ], - "created_at": [ - 2922 - ], - "discord_id": [ + "cover_image_url": [ 63 ], - "elo": [ - 946 + "created_at": [ + 3190 ], - "friend_steam_id": [ - 162 + "id": [ + 3587 ], - "invited_by_steam_id": [ - 162 + "issue_number": [ + 34 ], - "language": [ - 63 + "published_at": [ + 3190 ], - "last_sign_in_at": [ - 2922 + "scraped_at": [ + 3190 ], - "name": [ + "slug": [ 63 ], - "name_registered": [ - 3 - ], - "profile_url": [ + "source": [ 63 ], - "role": [ + "teaser": [ 63 ], - "status": [ + "title": [ 63 ], - "steam_id": [ - 162 + "updated_at": [ + 3190 + ], + "url": [ + 63 ], "__typename": [ 63 ] }, - "my_friends_stddev_fields": { - "friend_steam_id": [ - 25 - ], - "invited_by_steam_id": [ - 25 + "news_articles_mutation_response": { + "affected_rows": [ + 34 ], - "steam_id": [ - 25 + "returning": [ + 1925 ], "__typename": [ 63 ] }, - "my_friends_stddev_order_by": { - "friend_steam_id": [ - 1736 + "news_articles_on_conflict": { + "constraint": [ + 1930 ], - "invited_by_steam_id": [ - 1736 + "update_columns": [ + 1947 ], - "steam_id": [ - 1736 + "where": [ + 1929 ], "__typename": [ 63 ] }, - "my_friends_stddev_pop_fields": { - "friend_steam_id": [ - 25 + "news_articles_order_by": { + "author": [ + 2004 ], - "invited_by_steam_id": [ - 25 + "content_html": [ + 2004 ], - "steam_id": [ - 25 + "cover_image_url": [ + 2004 ], - "__typename": [ - 63 - ] - }, - "my_friends_stddev_pop_order_by": { - "friend_steam_id": [ - 1736 + "created_at": [ + 2004 ], - "invited_by_steam_id": [ - 1736 + "id": [ + 2004 ], - "steam_id": [ - 1736 + "issue_number": [ + 2004 ], - "__typename": [ - 63 - ] - }, - "my_friends_stddev_samp_fields": { - "friend_steam_id": [ - 25 + "published_at": [ + 2004 ], - "invited_by_steam_id": [ - 25 + "scraped_at": [ + 2004 ], - "steam_id": [ - 25 + "slug": [ + 2004 ], - "__typename": [ - 63 - ] - }, - "my_friends_stddev_samp_order_by": { - "friend_steam_id": [ - 1736 + "source": [ + 2004 ], - "invited_by_steam_id": [ - 1736 + "teaser": [ + 2004 ], - "steam_id": [ - 1736 + "title": [ + 2004 + ], + "updated_at": [ + 2004 + ], + "url": [ + 2004 ], "__typename": [ 63 ] }, - "my_friends_stream_cursor_input": { - "initial_value": [ - 1674 - ], - "ordering": [ - 216 + "news_articles_pk_columns_input": { + "id": [ + 3587 ], "__typename": [ 63 ] }, - "my_friends_stream_cursor_value_input": { - "avatar_url": [ + "news_articles_select_column": {}, + "news_articles_set_input": { + "author": [ 63 ], - "country": [ + "content_html": [ 63 ], - "created_at": [ - 2922 - ], - "discord_id": [ + "cover_image_url": [ 63 ], - "elo": [ - 946 + "created_at": [ + 3190 ], - "friend_steam_id": [ - 162 + "id": [ + 3587 ], - "invited_by_steam_id": [ - 162 + "issue_number": [ + 34 ], - "language": [ - 63 + "published_at": [ + 3190 ], - "last_sign_in_at": [ - 2922 + "scraped_at": [ + 3190 ], - "name": [ + "slug": [ 63 ], - "name_registered": [ - 3 - ], - "profile_url": [ + "source": [ 63 ], - "role": [ + "teaser": [ 63 ], - "status": [ + "title": [ 63 ], - "steam_id": [ - 162 + "updated_at": [ + 3190 + ], + "url": [ + 63 ], "__typename": [ 63 ] }, - "my_friends_sum_fields": { - "friend_steam_id": [ - 162 - ], - "invited_by_steam_id": [ - 162 + "news_articles_stddev_fields": { + "issue_number": [ + 25 ], - "steam_id": [ - 162 + "__typename": [ + 63 + ] + }, + "news_articles_stddev_pop_fields": { + "issue_number": [ + 25 ], "__typename": [ 63 ] }, - "my_friends_sum_order_by": { - "friend_steam_id": [ - 1736 + "news_articles_stddev_samp_fields": { + "issue_number": [ + 25 ], - "invited_by_steam_id": [ - 1736 + "__typename": [ + 63 + ] + }, + "news_articles_stream_cursor_input": { + "initial_value": [ + 1945 ], - "steam_id": [ - 1736 + "ordering": [ + 216 ], "__typename": [ 63 ] }, - "my_friends_updates": { - "_append": [ - 1646 + "news_articles_stream_cursor_value_input": { + "author": [ + 63 ], - "_delete_at_path": [ - 1651 + "content_html": [ + 63 ], - "_delete_elem": [ - 1652 + "cover_image_url": [ + 63 ], - "_delete_key": [ - 1653 + "created_at": [ + 3190 ], - "_inc": [ - 1654 + "id": [ + 3587 ], - "_prepend": [ - 1662 + "issue_number": [ + 34 ], - "_set": [ - 1666 + "published_at": [ + 3190 ], - "where": [ - 1650 + "scraped_at": [ + 3190 ], - "__typename": [ + "slug": [ 63 - ] - }, - "my_friends_var_pop_fields": { - "friend_steam_id": [ - 25 ], - "invited_by_steam_id": [ - 25 + "source": [ + 63 ], - "steam_id": [ - 25 + "teaser": [ + 63 ], - "__typename": [ + "title": [ 63 - ] - }, - "my_friends_var_pop_order_by": { - "friend_steam_id": [ - 1736 ], - "invited_by_steam_id": [ - 1736 + "updated_at": [ + 3190 ], - "steam_id": [ - 1736 + "url": [ + 63 ], "__typename": [ 63 ] }, - "my_friends_var_samp_fields": { - "friend_steam_id": [ - 25 - ], - "invited_by_steam_id": [ - 25 - ], - "steam_id": [ - 25 + "news_articles_sum_fields": { + "issue_number": [ + 34 ], "__typename": [ 63 ] }, - "my_friends_var_samp_order_by": { - "friend_steam_id": [ - 1736 + "news_articles_update_column": {}, + "news_articles_updates": { + "_inc": [ + 1931 ], - "invited_by_steam_id": [ - 1736 + "_set": [ + 1940 ], - "steam_id": [ - 1736 + "where": [ + 1929 ], "__typename": [ 63 ] }, - "my_friends_variance_fields": { - "friend_steam_id": [ - 25 - ], - "invited_by_steam_id": [ + "news_articles_var_pop_fields": { + "issue_number": [ 25 ], - "steam_id": [ + "__typename": [ + 63 + ] + }, + "news_articles_var_samp_fields": { + "issue_number": [ 25 ], "__typename": [ 63 ] }, - "my_friends_variance_order_by": { - "friend_steam_id": [ - 1736 - ], - "invited_by_steam_id": [ - 1736 - ], - "steam_id": [ - 1736 + "news_articles_variance_fields": { + "issue_number": [ + 25 ], "__typename": [ 63 @@ -32709,7 +37631,7 @@ export default { }, "notifications": { "actions": [ - 946, + 1187, { "path": [ 63 @@ -32717,19 +37639,19 @@ export default { } ], "created_at": [ - 2922 + 3190 ], "deletable": [ 3 ], "deleted_at": [ - 2922 + 3190 ], "entity_id": [ 63 ], "id": [ - 3319 + 3587 ], "is_read": [ 3 @@ -32738,10 +37660,10 @@ export default { 63 ], "player": [ - 2603 + 2871 ], "role": [ - 536 + 777 ], "steam_id": [ 162 @@ -32750,7 +37672,7 @@ export default { 63 ], "type": [ - 496 + 737 ], "__typename": [ 63 @@ -32758,10 +37680,10 @@ export default { }, "notifications_aggregate": { "aggregate": [ - 1690 + 1958 ], "nodes": [ - 1684 + 1952 ], "__typename": [ 63 @@ -32769,13 +37691,13 @@ export default { }, "notifications_aggregate_bool_exp": { "bool_and": [ - 1687 + 1955 ], "bool_or": [ - 1688 + 1956 ], "count": [ - 1689 + 1957 ], "__typename": [ 63 @@ -32783,13 +37705,13 @@ export default { }, "notifications_aggregate_bool_exp_bool_and": { "arguments": [ - 1713 + 1981 ], "distinct": [ 3 ], "filter": [ - 1696 + 1964 ], "predicate": [ 4 @@ -32800,13 +37722,13 @@ export default { }, "notifications_aggregate_bool_exp_bool_or": { "arguments": [ - 1714 + 1982 ], "distinct": [ 3 ], "filter": [ - 1696 + 1964 ], "predicate": [ 4 @@ -32817,13 +37739,13 @@ export default { }, "notifications_aggregate_bool_exp_count": { "arguments": [ - 1712 + 1980 ], "distinct": [ 3 ], "filter": [ - 1696 + 1964 ], "predicate": [ 35 @@ -32834,13 +37756,13 @@ export default { }, "notifications_aggregate_fields": { "avg": [ - 1694 + 1962 ], "count": [ 34, { "columns": [ - 1712, + 1980, "[notifications_select_column!]" ], "distinct": [ @@ -32849,31 +37771,31 @@ export default { } ], "max": [ - 1703 + 1971 ], "min": [ - 1705 + 1973 ], "stddev": [ - 1716 + 1984 ], "stddev_pop": [ - 1718 + 1986 ], "stddev_samp": [ - 1720 + 1988 ], "sum": [ - 1724 + 1992 ], "var_pop": [ - 1728 + 1996 ], "var_samp": [ - 1730 + 1998 ], "variance": [ - 1732 + 2000 ], "__typename": [ 63 @@ -32881,37 +37803,37 @@ export default { }, "notifications_aggregate_order_by": { "avg": [ - 1695 + 1963 ], "count": [ - 1736 + 2004 ], "max": [ - 1704 + 1972 ], "min": [ - 1706 + 1974 ], "stddev": [ - 1717 + 1985 ], "stddev_pop": [ - 1719 + 1987 ], "stddev_samp": [ - 1721 + 1989 ], "sum": [ - 1725 + 1993 ], "var_pop": [ - 1729 + 1997 ], "var_samp": [ - 1731 + 1999 ], "variance": [ - 1733 + 2001 ], "__typename": [ 63 @@ -32919,7 +37841,7 @@ export default { }, "notifications_append_input": { "actions": [ - 946 + 1187 ], "__typename": [ 63 @@ -32927,10 +37849,10 @@ export default { }, "notifications_arr_rel_insert_input": { "data": [ - 1702 + 1970 ], "on_conflict": [ - 1708 + 1976 ], "__typename": [ 63 @@ -32946,7 +37868,7 @@ export default { }, "notifications_avg_order_by": { "steam_id": [ - 1736 + 2004 ], "__typename": [ 63 @@ -32954,31 +37876,31 @@ export default { }, "notifications_bool_exp": { "_and": [ - 1696 + 1964 ], "_not": [ - 1696 + 1964 ], "_or": [ - 1696 + 1964 ], "actions": [ - 948 + 1189 ], "created_at": [ - 2923 + 3191 ], "deletable": [ 4 ], "deleted_at": [ - 2923 + 3191 ], "entity_id": [ 65 ], "id": [ - 3320 + 3588 ], "is_read": [ 4 @@ -32987,10 +37909,10 @@ export default { 65 ], "player": [ - 2607 + 2875 ], "role": [ - 537 + 778 ], "steam_id": [ 163 @@ -32999,7 +37921,7 @@ export default { 65 ], "type": [ - 497 + 738 ], "__typename": [ 63 @@ -33040,22 +37962,22 @@ export default { }, "notifications_insert_input": { "actions": [ - 946 + 1187 ], "created_at": [ - 2922 + 3190 ], "deletable": [ 3 ], "deleted_at": [ - 2922 + 3190 ], "entity_id": [ 63 ], "id": [ - 3319 + 3587 ], "is_read": [ 3 @@ -33064,10 +37986,10 @@ export default { 63 ], "player": [ - 2614 + 2882 ], "role": [ - 536 + 777 ], "steam_id": [ 162 @@ -33076,7 +37998,7 @@ export default { 63 ], "type": [ - 496 + 737 ], "__typename": [ 63 @@ -33084,16 +38006,16 @@ export default { }, "notifications_max_fields": { "created_at": [ - 2922 + 3190 ], "deleted_at": [ - 2922 + 3190 ], "entity_id": [ 63 ], "id": [ - 3319 + 3587 ], "message": [ 63 @@ -33110,25 +38032,25 @@ export default { }, "notifications_max_order_by": { "created_at": [ - 1736 + 2004 ], "deleted_at": [ - 1736 + 2004 ], "entity_id": [ - 1736 + 2004 ], "id": [ - 1736 + 2004 ], "message": [ - 1736 + 2004 ], "steam_id": [ - 1736 + 2004 ], "title": [ - 1736 + 2004 ], "__typename": [ 63 @@ -33136,16 +38058,16 @@ export default { }, "notifications_min_fields": { "created_at": [ - 2922 + 3190 ], "deleted_at": [ - 2922 + 3190 ], "entity_id": [ 63 ], "id": [ - 3319 + 3587 ], "message": [ 63 @@ -33162,25 +38084,25 @@ export default { }, "notifications_min_order_by": { "created_at": [ - 1736 + 2004 ], "deleted_at": [ - 1736 + 2004 ], "entity_id": [ - 1736 + 2004 ], "id": [ - 1736 + 2004 ], "message": [ - 1736 + 2004 ], "steam_id": [ - 1736 + 2004 ], "title": [ - 1736 + 2004 ], "__typename": [ 63 @@ -33191,7 +38113,7 @@ export default { 34 ], "returning": [ - 1684 + 1952 ], "__typename": [ 63 @@ -33199,13 +38121,13 @@ export default { }, "notifications_on_conflict": { "constraint": [ - 1697 + 1965 ], "update_columns": [ - 1726 + 1994 ], "where": [ - 1696 + 1964 ], "__typename": [ 63 @@ -33213,43 +38135,43 @@ export default { }, "notifications_order_by": { "actions": [ - 1736 + 2004 ], "created_at": [ - 1736 + 2004 ], "deletable": [ - 1736 + 2004 ], "deleted_at": [ - 1736 + 2004 ], "entity_id": [ - 1736 + 2004 ], "id": [ - 1736 + 2004 ], "is_read": [ - 1736 + 2004 ], "message": [ - 1736 + 2004 ], "player": [ - 2616 + 2884 ], "role": [ - 1736 + 2004 ], "steam_id": [ - 1736 + 2004 ], "title": [ - 1736 + 2004 ], "type": [ - 1736 + 2004 ], "__typename": [ 63 @@ -33257,7 +38179,7 @@ export default { }, "notifications_pk_columns_input": { "id": [ - 3319 + 3587 ], "__typename": [ 63 @@ -33265,7 +38187,7 @@ export default { }, "notifications_prepend_input": { "actions": [ - 946 + 1187 ], "__typename": [ 63 @@ -33276,22 +38198,22 @@ export default { "notifications_select_column_notifications_aggregate_bool_exp_bool_or_arguments_columns": {}, "notifications_set_input": { "actions": [ - 946 + 1187 ], "created_at": [ - 2922 + 3190 ], "deletable": [ 3 ], "deleted_at": [ - 2922 + 3190 ], "entity_id": [ 63 ], "id": [ - 3319 + 3587 ], "is_read": [ 3 @@ -33300,7 +38222,7 @@ export default { 63 ], "role": [ - 536 + 777 ], "steam_id": [ 162 @@ -33309,7 +38231,7 @@ export default { 63 ], "type": [ - 496 + 737 ], "__typename": [ 63 @@ -33325,7 +38247,7 @@ export default { }, "notifications_stddev_order_by": { "steam_id": [ - 1736 + 2004 ], "__typename": [ 63 @@ -33341,7 +38263,7 @@ export default { }, "notifications_stddev_pop_order_by": { "steam_id": [ - 1736 + 2004 ], "__typename": [ 63 @@ -33357,7 +38279,7 @@ export default { }, "notifications_stddev_samp_order_by": { "steam_id": [ - 1736 + 2004 ], "__typename": [ 63 @@ -33365,7 +38287,7 @@ export default { }, "notifications_stream_cursor_input": { "initial_value": [ - 1723 + 1991 ], "ordering": [ 216 @@ -33376,22 +38298,22 @@ export default { }, "notifications_stream_cursor_value_input": { "actions": [ - 946 + 1187 ], "created_at": [ - 2922 + 3190 ], "deletable": [ 3 ], "deleted_at": [ - 2922 + 3190 ], "entity_id": [ 63 ], "id": [ - 3319 + 3587 ], "is_read": [ 3 @@ -33400,7 +38322,7 @@ export default { 63 ], "role": [ - 536 + 777 ], "steam_id": [ 162 @@ -33409,7 +38331,7 @@ export default { 63 ], "type": [ - 496 + 737 ], "__typename": [ 63 @@ -33425,7 +38347,7 @@ export default { }, "notifications_sum_order_by": { "steam_id": [ - 1736 + 2004 ], "__typename": [ 63 @@ -33434,28 +38356,28 @@ export default { "notifications_update_column": {}, "notifications_updates": { "_append": [ - 1692 + 1960 ], "_delete_at_path": [ - 1698 + 1966 ], "_delete_elem": [ - 1699 + 1967 ], "_delete_key": [ - 1700 + 1968 ], "_inc": [ - 1701 + 1969 ], "_prepend": [ - 1711 + 1979 ], "_set": [ - 1715 + 1983 ], "where": [ - 1696 + 1964 ], "__typename": [ 63 @@ -33471,7 +38393,7 @@ export default { }, "notifications_var_pop_order_by": { "steam_id": [ - 1736 + 2004 ], "__typename": [ 63 @@ -33487,7 +38409,7 @@ export default { }, "notifications_var_samp_order_by": { "steam_id": [ - 1736 + 2004 ], "__typename": [ 63 @@ -33503,7 +38425,7 @@ export default { }, "notifications_variance_order_by": { "steam_id": [ - 1736 + 2004 ], "__typename": [ 63 @@ -33512,31 +38434,31 @@ export default { "numeric": {}, "numeric_comparison_exp": { "_eq": [ - 1734 + 2002 ], "_gt": [ - 1734 + 2002 ], "_gte": [ - 1734 + 2002 ], "_in": [ - 1734 + 2002 ], "_is_null": [ 3 ], "_lt": [ - 1734 + 2002 ], "_lte": [ - 1734 + 2002 ], "_neq": [ - 1734 + 2002 ], "_nin": [ - 1734 + 2002 ], "__typename": [ 63 @@ -33545,19 +38467,19 @@ export default { "order_by": {}, "pending_match_import_players": { "created_at": [ - 2922 + 3190 ], "pending_match_import": [ - 1778 + 2046 ], "player": [ - 2603 + 2871 ], "steam_id": [ 162 ], "valve_match_id": [ - 1734 + 2002 ], "__typename": [ 63 @@ -33565,10 +38487,10 @@ export default { }, "pending_match_import_players_aggregate": { "aggregate": [ - 1741 + 2009 ], "nodes": [ - 1737 + 2005 ], "__typename": [ 63 @@ -33576,7 +38498,7 @@ export default { }, "pending_match_import_players_aggregate_bool_exp": { "count": [ - 1740 + 2008 ], "__typename": [ 63 @@ -33584,13 +38506,13 @@ export default { }, "pending_match_import_players_aggregate_bool_exp_count": { "arguments": [ - 1758 + 2026 ], "distinct": [ 3 ], "filter": [ - 1746 + 2014 ], "predicate": [ 35 @@ -33601,13 +38523,13 @@ export default { }, "pending_match_import_players_aggregate_fields": { "avg": [ - 1744 + 2012 ], "count": [ 34, { "columns": [ - 1758, + 2026, "[pending_match_import_players_select_column!]" ], "distinct": [ @@ -33616,31 +38538,31 @@ export default { } ], "max": [ - 1750 + 2018 ], "min": [ - 1752 + 2020 ], "stddev": [ - 1760 + 2028 ], "stddev_pop": [ - 1762 + 2030 ], "stddev_samp": [ - 1764 + 2032 ], "sum": [ - 1768 + 2036 ], "var_pop": [ - 1772 + 2040 ], "var_samp": [ - 1774 + 2042 ], "variance": [ - 1776 + 2044 ], "__typename": [ 63 @@ -33648,37 +38570,37 @@ export default { }, "pending_match_import_players_aggregate_order_by": { "avg": [ - 1745 + 2013 ], "count": [ - 1736 + 2004 ], "max": [ - 1751 + 2019 ], "min": [ - 1753 + 2021 ], "stddev": [ - 1761 + 2029 ], "stddev_pop": [ - 1763 + 2031 ], "stddev_samp": [ - 1765 + 2033 ], "sum": [ - 1769 + 2037 ], "var_pop": [ - 1773 + 2041 ], "var_samp": [ - 1775 + 2043 ], "variance": [ - 1777 + 2045 ], "__typename": [ 63 @@ -33686,10 +38608,10 @@ export default { }, "pending_match_import_players_arr_rel_insert_input": { "data": [ - 1749 + 2017 ], "on_conflict": [ - 1755 + 2023 ], "__typename": [ 63 @@ -33708,10 +38630,10 @@ export default { }, "pending_match_import_players_avg_order_by": { "steam_id": [ - 1736 + 2004 ], "valve_match_id": [ - 1736 + 2004 ], "__typename": [ 63 @@ -33719,28 +38641,28 @@ export default { }, "pending_match_import_players_bool_exp": { "_and": [ - 1746 + 2014 ], "_not": [ - 1746 + 2014 ], "_or": [ - 1746 + 2014 ], "created_at": [ - 2923 + 3191 ], "pending_match_import": [ - 1782 + 2050 ], "player": [ - 2607 + 2875 ], "steam_id": [ 163 ], "valve_match_id": [ - 1735 + 2003 ], "__typename": [ 63 @@ -33752,7 +38674,7 @@ export default { 162 ], "valve_match_id": [ - 1734 + 2002 ], "__typename": [ 63 @@ -33760,19 +38682,19 @@ export default { }, "pending_match_import_players_insert_input": { "created_at": [ - 2922 + 3190 ], "pending_match_import": [ - 1789 + 2057 ], "player": [ - 2614 + 2882 ], "steam_id": [ 162 ], "valve_match_id": [ - 1734 + 2002 ], "__typename": [ 63 @@ -33780,13 +38702,13 @@ export default { }, "pending_match_import_players_max_fields": { "created_at": [ - 2922 + 3190 ], "steam_id": [ 162 ], "valve_match_id": [ - 1734 + 2002 ], "__typename": [ 63 @@ -33794,13 +38716,13 @@ export default { }, "pending_match_import_players_max_order_by": { "created_at": [ - 1736 + 2004 ], "steam_id": [ - 1736 + 2004 ], "valve_match_id": [ - 1736 + 2004 ], "__typename": [ 63 @@ -33808,13 +38730,13 @@ export default { }, "pending_match_import_players_min_fields": { "created_at": [ - 2922 + 3190 ], "steam_id": [ 162 ], "valve_match_id": [ - 1734 + 2002 ], "__typename": [ 63 @@ -33822,13 +38744,13 @@ export default { }, "pending_match_import_players_min_order_by": { "created_at": [ - 1736 + 2004 ], "steam_id": [ - 1736 + 2004 ], "valve_match_id": [ - 1736 + 2004 ], "__typename": [ 63 @@ -33839,7 +38761,7 @@ export default { 34 ], "returning": [ - 1737 + 2005 ], "__typename": [ 63 @@ -33847,13 +38769,13 @@ export default { }, "pending_match_import_players_on_conflict": { "constraint": [ - 1747 + 2015 ], "update_columns": [ - 1770 + 2038 ], "where": [ - 1746 + 2014 ], "__typename": [ 63 @@ -33861,19 +38783,19 @@ export default { }, "pending_match_import_players_order_by": { "created_at": [ - 1736 + 2004 ], "pending_match_import": [ - 1791 + 2059 ], "player": [ - 2616 + 2884 ], "steam_id": [ - 1736 + 2004 ], "valve_match_id": [ - 1736 + 2004 ], "__typename": [ 63 @@ -33884,7 +38806,7 @@ export default { 162 ], "valve_match_id": [ - 1734 + 2002 ], "__typename": [ 63 @@ -33893,13 +38815,13 @@ export default { "pending_match_import_players_select_column": {}, "pending_match_import_players_set_input": { "created_at": [ - 2922 + 3190 ], "steam_id": [ 162 ], "valve_match_id": [ - 1734 + 2002 ], "__typename": [ 63 @@ -33918,10 +38840,10 @@ export default { }, "pending_match_import_players_stddev_order_by": { "steam_id": [ - 1736 + 2004 ], "valve_match_id": [ - 1736 + 2004 ], "__typename": [ 63 @@ -33940,10 +38862,10 @@ export default { }, "pending_match_import_players_stddev_pop_order_by": { "steam_id": [ - 1736 + 2004 ], "valve_match_id": [ - 1736 + 2004 ], "__typename": [ 63 @@ -33962,10 +38884,10 @@ export default { }, "pending_match_import_players_stddev_samp_order_by": { "steam_id": [ - 1736 + 2004 ], "valve_match_id": [ - 1736 + 2004 ], "__typename": [ 63 @@ -33973,7 +38895,7 @@ export default { }, "pending_match_import_players_stream_cursor_input": { "initial_value": [ - 1767 + 2035 ], "ordering": [ 216 @@ -33984,13 +38906,13 @@ export default { }, "pending_match_import_players_stream_cursor_value_input": { "created_at": [ - 2922 + 3190 ], "steam_id": [ 162 ], "valve_match_id": [ - 1734 + 2002 ], "__typename": [ 63 @@ -34001,7 +38923,7 @@ export default { 162 ], "valve_match_id": [ - 1734 + 2002 ], "__typename": [ 63 @@ -34009,10 +38931,10 @@ export default { }, "pending_match_import_players_sum_order_by": { "steam_id": [ - 1736 + 2004 ], "valve_match_id": [ - 1736 + 2004 ], "__typename": [ 63 @@ -34021,13 +38943,13 @@ export default { "pending_match_import_players_update_column": {}, "pending_match_import_players_updates": { "_inc": [ - 1748 + 2016 ], "_set": [ - 1759 + 2027 ], "where": [ - 1746 + 2014 ], "__typename": [ 63 @@ -34046,10 +38968,10 @@ export default { }, "pending_match_import_players_var_pop_order_by": { "steam_id": [ - 1736 + 2004 ], "valve_match_id": [ - 1736 + 2004 ], "__typename": [ 63 @@ -34068,10 +38990,10 @@ export default { }, "pending_match_import_players_var_samp_order_by": { "steam_id": [ - 1736 + 2004 ], "valve_match_id": [ - 1736 + 2004 ], "__typename": [ 63 @@ -34090,10 +39012,10 @@ export default { }, "pending_match_import_players_variance_order_by": { "steam_id": [ - 1736 + 2004 ], "valve_match_id": [ - 1736 + 2004 ], "__typename": [ 63 @@ -34101,7 +39023,7 @@ export default { }, "pending_match_imports": { "created_at": [ - 2922 + 3190 ], "demo_url": [ 63 @@ -34113,13 +39035,13 @@ export default { 63 ], "match_start_time": [ - 2922 + 3190 ], "players": [ - 1737, + 2005, { "distinct_on": [ - 1758, + 2026, "[pending_match_import_players_select_column!]" ], "limit": [ @@ -34129,19 +39051,19 @@ export default { 34 ], "order_by": [ - 1756, + 2024, "[pending_match_import_players_order_by!]" ], "where": [ - 1746 + 2014 ] } ], "players_aggregate": [ - 1738, + 2006, { "distinct_on": [ - 1758, + 2026, "[pending_match_import_players_select_column!]" ], "limit": [ @@ -34151,11 +39073,11 @@ export default { 34 ], "order_by": [ - 1756, + 2024, "[pending_match_import_players_order_by!]" ], "where": [ - 1746 + 2014 ] } ], @@ -34166,10 +39088,10 @@ export default { 63 ], "updated_at": [ - 2922 + 3190 ], "valve_match_id": [ - 1734 + 2002 ], "__typename": [ 63 @@ -34177,10 +39099,10 @@ export default { }, "pending_match_imports_aggregate": { "aggregate": [ - 1780 + 2048 ], "nodes": [ - 1778 + 2046 ], "__typename": [ 63 @@ -34188,13 +39110,13 @@ export default { }, "pending_match_imports_aggregate_fields": { "avg": [ - 1781 + 2049 ], "count": [ 34, { "columns": [ - 1793, + 2061, "[pending_match_imports_select_column!]" ], "distinct": [ @@ -34203,31 +39125,31 @@ export default { } ], "max": [ - 1786 + 2054 ], "min": [ - 1787 + 2055 ], "stddev": [ - 1795 + 2063 ], "stddev_pop": [ - 1796 + 2064 ], "stddev_samp": [ - 1797 + 2065 ], "sum": [ - 1800 + 2068 ], "var_pop": [ - 1803 + 2071 ], "var_samp": [ - 1804 + 2072 ], "variance": [ - 1805 + 2073 ], "__typename": [ 63 @@ -34243,16 +39165,16 @@ export default { }, "pending_match_imports_bool_exp": { "_and": [ - 1782 + 2050 ], "_not": [ - 1782 + 2050 ], "_or": [ - 1782 + 2050 ], "created_at": [ - 2923 + 3191 ], "demo_url": [ 65 @@ -34264,13 +39186,13 @@ export default { 65 ], "match_start_time": [ - 2923 + 3191 ], "players": [ - 1746 + 2014 ], "players_aggregate": [ - 1739 + 2007 ], "share_code": [ 65 @@ -34279,10 +39201,10 @@ export default { 65 ], "updated_at": [ - 2923 + 3191 ], "valve_match_id": [ - 1735 + 2003 ], "__typename": [ 63 @@ -34291,7 +39213,7 @@ export default { "pending_match_imports_constraint": {}, "pending_match_imports_inc_input": { "valve_match_id": [ - 1734 + 2002 ], "__typename": [ 63 @@ -34299,7 +39221,7 @@ export default { }, "pending_match_imports_insert_input": { "created_at": [ - 2922 + 3190 ], "demo_url": [ 63 @@ -34311,10 +39233,10 @@ export default { 63 ], "match_start_time": [ - 2922 + 3190 ], "players": [ - 1743 + 2011 ], "share_code": [ 63 @@ -34323,10 +39245,10 @@ export default { 63 ], "updated_at": [ - 2922 + 3190 ], "valve_match_id": [ - 1734 + 2002 ], "__typename": [ 63 @@ -34334,7 +39256,7 @@ export default { }, "pending_match_imports_max_fields": { "created_at": [ - 2922 + 3190 ], "demo_url": [ 63 @@ -34346,7 +39268,7 @@ export default { 63 ], "match_start_time": [ - 2922 + 3190 ], "share_code": [ 63 @@ -34355,10 +39277,10 @@ export default { 63 ], "updated_at": [ - 2922 + 3190 ], "valve_match_id": [ - 1734 + 2002 ], "__typename": [ 63 @@ -34366,7 +39288,7 @@ export default { }, "pending_match_imports_min_fields": { "created_at": [ - 2922 + 3190 ], "demo_url": [ 63 @@ -34378,7 +39300,7 @@ export default { 63 ], "match_start_time": [ - 2922 + 3190 ], "share_code": [ 63 @@ -34387,10 +39309,10 @@ export default { 63 ], "updated_at": [ - 2922 + 3190 ], "valve_match_id": [ - 1734 + 2002 ], "__typename": [ 63 @@ -34401,7 +39323,7 @@ export default { 34 ], "returning": [ - 1778 + 2046 ], "__typename": [ 63 @@ -34409,10 +39331,10 @@ export default { }, "pending_match_imports_obj_rel_insert_input": { "data": [ - 1785 + 2053 ], "on_conflict": [ - 1790 + 2058 ], "__typename": [ 63 @@ -34420,13 +39342,13 @@ export default { }, "pending_match_imports_on_conflict": { "constraint": [ - 1783 + 2051 ], "update_columns": [ - 1801 + 2069 ], "where": [ - 1782 + 2050 ], "__typename": [ 63 @@ -34434,34 +39356,34 @@ export default { }, "pending_match_imports_order_by": { "created_at": [ - 1736 + 2004 ], "demo_url": [ - 1736 + 2004 ], "error": [ - 1736 + 2004 ], "map_name": [ - 1736 + 2004 ], "match_start_time": [ - 1736 + 2004 ], "players_aggregate": [ - 1742 + 2010 ], "share_code": [ - 1736 + 2004 ], "status": [ - 1736 + 2004 ], "updated_at": [ - 1736 + 2004 ], "valve_match_id": [ - 1736 + 2004 ], "__typename": [ 63 @@ -34469,7 +39391,7 @@ export default { }, "pending_match_imports_pk_columns_input": { "valve_match_id": [ - 1734 + 2002 ], "__typename": [ 63 @@ -34478,7 +39400,7 @@ export default { "pending_match_imports_select_column": {}, "pending_match_imports_set_input": { "created_at": [ - 2922 + 3190 ], "demo_url": [ 63 @@ -34490,7 +39412,7 @@ export default { 63 ], "match_start_time": [ - 2922 + 3190 ], "share_code": [ 63 @@ -34499,10 +39421,10 @@ export default { 63 ], "updated_at": [ - 2922 + 3190 ], "valve_match_id": [ - 1734 + 2002 ], "__typename": [ 63 @@ -34534,7 +39456,7 @@ export default { }, "pending_match_imports_stream_cursor_input": { "initial_value": [ - 1799 + 2067 ], "ordering": [ 216 @@ -34545,7 +39467,7 @@ export default { }, "pending_match_imports_stream_cursor_value_input": { "created_at": [ - 2922 + 3190 ], "demo_url": [ 63 @@ -34557,7 +39479,7 @@ export default { 63 ], "match_start_time": [ - 2922 + 3190 ], "share_code": [ 63 @@ -34566,10 +39488,10 @@ export default { 63 ], "updated_at": [ - 2922 + 3190 ], "valve_match_id": [ - 1734 + 2002 ], "__typename": [ 63 @@ -34577,7 +39499,7 @@ export default { }, "pending_match_imports_sum_fields": { "valve_match_id": [ - 1734 + 2002 ], "__typename": [ 63 @@ -34586,13 +39508,13 @@ export default { "pending_match_imports_update_column": {}, "pending_match_imports_updates": { "_inc": [ - 1784 + 2052 ], "_set": [ - 1794 + 2062 ], "where": [ - 1782 + 2050 ], "__typename": [ 63 @@ -34624,7 +39546,7 @@ export default { }, "player_aim_stats_demo": { "attacker": [ - 2603 + 2871 ], "attacker_steam_id": [ 162 @@ -34639,7 +39561,7 @@ export default { 34 ], "crosshair_angle_sum_deg": [ - 1734 + 2002 ], "first_bullet_hits": [ 34 @@ -34657,16 +39579,16 @@ export default { 34 ], "match": [ - 1578 + 1819 ], "match_id": [ - 3319 + 3587 ], "match_map": [ - 1416 + 1657 ], "match_map_id": [ - 3319 + 3587 ], "non_awp_hits": [ 34 @@ -34687,7 +39609,7 @@ export default { 34 ], "time_to_damage_sum_s": [ - 1734 + 2002 ], "total_engagement_frames": [ 34 @@ -34698,10 +39620,10 @@ export default { }, "player_aim_stats_demo_aggregate": { "aggregate": [ - 1808 + 2076 ], "nodes": [ - 1806 + 2074 ], "__typename": [ 63 @@ -34709,13 +39631,13 @@ export default { }, "player_aim_stats_demo_aggregate_fields": { "avg": [ - 1809 + 2077 ], "count": [ 34, { "columns": [ - 1820, + 2088, "[player_aim_stats_demo_select_column!]" ], "distinct": [ @@ -34724,31 +39646,31 @@ export default { } ], "max": [ - 1814 + 2082 ], "min": [ - 1815 + 2083 ], "stddev": [ - 1822 + 2090 ], "stddev_pop": [ - 1823 + 2091 ], "stddev_samp": [ - 1824 + 2092 ], "sum": [ - 1827 + 2095 ], "var_pop": [ - 1830 + 2098 ], "var_samp": [ - 1831 + 2099 ], "variance": [ - 1832 + 2100 ], "__typename": [ 63 @@ -34815,16 +39737,16 @@ export default { }, "player_aim_stats_demo_bool_exp": { "_and": [ - 1810 + 2078 ], "_not": [ - 1810 + 2078 ], "_or": [ - 1810 + 2078 ], "attacker": [ - 2607 + 2875 ], "attacker_steam_id": [ 163 @@ -34839,7 +39761,7 @@ export default { 35 ], "crosshair_angle_sum_deg": [ - 1735 + 2003 ], "first_bullet_hits": [ 35 @@ -34857,16 +39779,16 @@ export default { 35 ], "match": [ - 1587 + 1828 ], "match_id": [ - 3320 + 3588 ], "match_map": [ - 1425 + 1666 ], "match_map_id": [ - 3320 + 3588 ], "non_awp_hits": [ 35 @@ -34887,7 +39809,7 @@ export default { 35 ], "time_to_damage_sum_s": [ - 1735 + 2003 ], "total_engagement_frames": [ 35 @@ -34911,7 +39833,7 @@ export default { 34 ], "crosshair_angle_sum_deg": [ - 1734 + 2002 ], "first_bullet_hits": [ 34 @@ -34947,7 +39869,7 @@ export default { 34 ], "time_to_damage_sum_s": [ - 1734 + 2002 ], "total_engagement_frames": [ 34 @@ -34958,7 +39880,7 @@ export default { }, "player_aim_stats_demo_insert_input": { "attacker": [ - 2614 + 2882 ], "attacker_steam_id": [ 162 @@ -34973,7 +39895,7 @@ export default { 34 ], "crosshair_angle_sum_deg": [ - 1734 + 2002 ], "first_bullet_hits": [ 34 @@ -34991,16 +39913,16 @@ export default { 34 ], "match": [ - 1596 + 1837 ], "match_id": [ - 3319 + 3587 ], "match_map": [ - 1434 + 1675 ], "match_map_id": [ - 3319 + 3587 ], "non_awp_hits": [ 34 @@ -35021,7 +39943,7 @@ export default { 34 ], "time_to_damage_sum_s": [ - 1734 + 2002 ], "total_engagement_frames": [ 34 @@ -35044,7 +39966,7 @@ export default { 34 ], "crosshair_angle_sum_deg": [ - 1734 + 2002 ], "first_bullet_hits": [ 34 @@ -35062,10 +39984,10 @@ export default { 34 ], "match_id": [ - 3319 + 3587 ], "match_map_id": [ - 3319 + 3587 ], "non_awp_hits": [ 34 @@ -35086,7 +40008,7 @@ export default { 34 ], "time_to_damage_sum_s": [ - 1734 + 2002 ], "total_engagement_frames": [ 34 @@ -35109,7 +40031,7 @@ export default { 34 ], "crosshair_angle_sum_deg": [ - 1734 + 2002 ], "first_bullet_hits": [ 34 @@ -35127,10 +40049,10 @@ export default { 34 ], "match_id": [ - 3319 + 3587 ], "match_map_id": [ - 3319 + 3587 ], "non_awp_hits": [ 34 @@ -35151,7 +40073,7 @@ export default { 34 ], "time_to_damage_sum_s": [ - 1734 + 2002 ], "total_engagement_frames": [ 34 @@ -35165,7 +40087,7 @@ export default { 34 ], "returning": [ - 1806 + 2074 ], "__typename": [ 63 @@ -35173,13 +40095,13 @@ export default { }, "player_aim_stats_demo_on_conflict": { "constraint": [ - 1811 + 2079 ], "update_columns": [ - 1828 + 2096 ], "where": [ - 1810 + 2078 ], "__typename": [ 63 @@ -35187,73 +40109,73 @@ export default { }, "player_aim_stats_demo_order_by": { "attacker": [ - 2616 + 2884 ], "attacker_steam_id": [ - 1736 + 2004 ], "counter_strafe_eligible_shots": [ - 1736 + 2004 ], "counter_strafed_shots": [ - 1736 + 2004 ], "crosshair_angle_count": [ - 1736 + 2004 ], "crosshair_angle_sum_deg": [ - 1736 + 2004 ], "first_bullet_hits": [ - 1736 + 2004 ], "first_bullet_shots": [ - 1736 + 2004 ], "headshot_hits": [ - 1736 + 2004 ], "hits": [ - 1736 + 2004 ], "hits_at_spotted": [ - 1736 + 2004 ], "match": [ - 1598 + 1839 ], "match_id": [ - 1736 + 2004 ], "match_map": [ - 1436 + 1677 ], "match_map_id": [ - 1736 + 2004 ], "non_awp_hits": [ - 1736 + 2004 ], "on_target_frames": [ - 1736 + 2004 ], "shots_at_spotted": [ - 1736 + 2004 ], "spray_hits": [ - 1736 + 2004 ], "spray_shots": [ - 1736 + 2004 ], "time_to_damage_count": [ - 1736 + 2004 ], "time_to_damage_sum_s": [ - 1736 + 2004 ], "total_engagement_frames": [ - 1736 + 2004 ], "__typename": [ 63 @@ -35264,7 +40186,7 @@ export default { 162 ], "match_map_id": [ - 3319 + 3587 ], "__typename": [ 63 @@ -35285,7 +40207,7 @@ export default { 34 ], "crosshair_angle_sum_deg": [ - 1734 + 2002 ], "first_bullet_hits": [ 34 @@ -35303,10 +40225,10 @@ export default { 34 ], "match_id": [ - 3319 + 3587 ], "match_map_id": [ - 3319 + 3587 ], "non_awp_hits": [ 34 @@ -35327,7 +40249,7 @@ export default { 34 ], "time_to_damage_sum_s": [ - 1734 + 2002 ], "total_engagement_frames": [ 34 @@ -35515,7 +40437,7 @@ export default { }, "player_aim_stats_demo_stream_cursor_input": { "initial_value": [ - 1826 + 2094 ], "ordering": [ 216 @@ -35538,7 +40460,7 @@ export default { 34 ], "crosshair_angle_sum_deg": [ - 1734 + 2002 ], "first_bullet_hits": [ 34 @@ -35556,10 +40478,10 @@ export default { 34 ], "match_id": [ - 3319 + 3587 ], "match_map_id": [ - 3319 + 3587 ], "non_awp_hits": [ 34 @@ -35580,7 +40502,7 @@ export default { 34 ], "time_to_damage_sum_s": [ - 1734 + 2002 ], "total_engagement_frames": [ 34 @@ -35603,7 +40525,7 @@ export default { 34 ], "crosshair_angle_sum_deg": [ - 1734 + 2002 ], "first_bullet_hits": [ 34 @@ -35639,7 +40561,7 @@ export default { 34 ], "time_to_damage_sum_s": [ - 1734 + 2002 ], "total_engagement_frames": [ 34 @@ -35651,13 +40573,13 @@ export default { "player_aim_stats_demo_update_column": {}, "player_aim_stats_demo_updates": { "_inc": [ - 1812 + 2080 ], "_set": [ - 1821 + 2089 ], "where": [ - 1810 + 2078 ], "__typename": [ 63 @@ -35854,19 +40776,19 @@ export default { 34 ], "match": [ - 1578 + 1819 ], "match_id": [ - 3319 + 3587 ], "match_map": [ - 1416 + 1657 ], "match_map_id": [ - 3319 + 3587 ], "player": [ - 2603 + 2871 ], "shots": [ 34 @@ -35886,10 +40808,10 @@ export default { }, "player_aim_weapon_stats_aggregate": { "aggregate": [ - 1837 + 2105 ], "nodes": [ - 1833 + 2101 ], "__typename": [ 63 @@ -35897,7 +40819,7 @@ export default { }, "player_aim_weapon_stats_aggregate_bool_exp": { "count": [ - 1836 + 2104 ], "__typename": [ 63 @@ -35905,13 +40827,13 @@ export default { }, "player_aim_weapon_stats_aggregate_bool_exp_count": { "arguments": [ - 1854 + 2122 ], "distinct": [ 3 ], "filter": [ - 1842 + 2110 ], "predicate": [ 35 @@ -35922,13 +40844,13 @@ export default { }, "player_aim_weapon_stats_aggregate_fields": { "avg": [ - 1840 + 2108 ], "count": [ 34, { "columns": [ - 1854, + 2122, "[player_aim_weapon_stats_select_column!]" ], "distinct": [ @@ -35937,31 +40859,31 @@ export default { } ], "max": [ - 1846 + 2114 ], "min": [ - 1848 + 2116 ], "stddev": [ - 1856 + 2124 ], "stddev_pop": [ - 1858 + 2126 ], "stddev_samp": [ - 1860 + 2128 ], "sum": [ - 1864 + 2132 ], "var_pop": [ - 1868 + 2136 ], "var_samp": [ - 1870 + 2138 ], "variance": [ - 1872 + 2140 ], "__typename": [ 63 @@ -35969,37 +40891,37 @@ export default { }, "player_aim_weapon_stats_aggregate_order_by": { "avg": [ - 1841 + 2109 ], "count": [ - 1736 + 2004 ], "max": [ - 1847 + 2115 ], "min": [ - 1849 + 2117 ], "stddev": [ - 1857 + 2125 ], "stddev_pop": [ - 1859 + 2127 ], "stddev_samp": [ - 1861 + 2129 ], "sum": [ - 1865 + 2133 ], "var_pop": [ - 1869 + 2137 ], "var_samp": [ - 1871 + 2139 ], "variance": [ - 1873 + 2141 ], "__typename": [ 63 @@ -36007,10 +40929,10 @@ export default { }, "player_aim_weapon_stats_arr_rel_insert_input": { "data": [ - 1845 + 2113 ], "on_conflict": [ - 1851 + 2119 ], "__typename": [ 63 @@ -36044,25 +40966,25 @@ export default { }, "player_aim_weapon_stats_avg_order_by": { "first_bullet_hits": [ - 1736 + 2004 ], "first_bullet_shots": [ - 1736 + 2004 ], "hits": [ - 1736 + 2004 ], "hits_spotted": [ - 1736 + 2004 ], "shots": [ - 1736 + 2004 ], "shots_spotted": [ - 1736 + 2004 ], "steam_id": [ - 1736 + 2004 ], "__typename": [ 63 @@ -36070,13 +40992,13 @@ export default { }, "player_aim_weapon_stats_bool_exp": { "_and": [ - 1842 + 2110 ], "_not": [ - 1842 + 2110 ], "_or": [ - 1842 + 2110 ], "first_bullet_hits": [ 35 @@ -36091,19 +41013,19 @@ export default { 35 ], "match": [ - 1587 + 1828 ], "match_id": [ - 3320 + 3588 ], "match_map": [ - 1425 + 1666 ], "match_map_id": [ - 3320 + 3588 ], "player": [ - 2607 + 2875 ], "shots": [ 35 @@ -36162,19 +41084,19 @@ export default { 34 ], "match": [ - 1596 + 1837 ], "match_id": [ - 3319 + 3587 ], "match_map": [ - 1434 + 1675 ], "match_map_id": [ - 3319 + 3587 ], "player": [ - 2614 + 2882 ], "shots": [ 34 @@ -36206,10 +41128,10 @@ export default { 34 ], "match_id": [ - 3319 + 3587 ], "match_map_id": [ - 3319 + 3587 ], "shots": [ 34 @@ -36229,34 +41151,34 @@ export default { }, "player_aim_weapon_stats_max_order_by": { "first_bullet_hits": [ - 1736 + 2004 ], "first_bullet_shots": [ - 1736 + 2004 ], "hits": [ - 1736 + 2004 ], "hits_spotted": [ - 1736 + 2004 ], "match_id": [ - 1736 + 2004 ], "match_map_id": [ - 1736 + 2004 ], "shots": [ - 1736 + 2004 ], "shots_spotted": [ - 1736 + 2004 ], "steam_id": [ - 1736 + 2004 ], "weapon_class": [ - 1736 + 2004 ], "__typename": [ 63 @@ -36276,10 +41198,10 @@ export default { 34 ], "match_id": [ - 3319 + 3587 ], "match_map_id": [ - 3319 + 3587 ], "shots": [ 34 @@ -36299,34 +41221,34 @@ export default { }, "player_aim_weapon_stats_min_order_by": { "first_bullet_hits": [ - 1736 + 2004 ], "first_bullet_shots": [ - 1736 + 2004 ], "hits": [ - 1736 + 2004 ], "hits_spotted": [ - 1736 + 2004 ], "match_id": [ - 1736 + 2004 ], "match_map_id": [ - 1736 + 2004 ], "shots": [ - 1736 + 2004 ], "shots_spotted": [ - 1736 + 2004 ], "steam_id": [ - 1736 + 2004 ], "weapon_class": [ - 1736 + 2004 ], "__typename": [ 63 @@ -36337,7 +41259,7 @@ export default { 34 ], "returning": [ - 1833 + 2101 ], "__typename": [ 63 @@ -36345,13 +41267,13 @@ export default { }, "player_aim_weapon_stats_on_conflict": { "constraint": [ - 1843 + 2111 ], "update_columns": [ - 1866 + 2134 ], "where": [ - 1842 + 2110 ], "__typename": [ 63 @@ -36359,43 +41281,43 @@ export default { }, "player_aim_weapon_stats_order_by": { "first_bullet_hits": [ - 1736 + 2004 ], "first_bullet_shots": [ - 1736 + 2004 ], "hits": [ - 1736 + 2004 ], "hits_spotted": [ - 1736 + 2004 ], "match": [ - 1598 + 1839 ], "match_id": [ - 1736 + 2004 ], "match_map": [ - 1436 + 1677 ], "match_map_id": [ - 1736 + 2004 ], "player": [ - 2616 + 2884 ], "shots": [ - 1736 + 2004 ], "shots_spotted": [ - 1736 + 2004 ], "steam_id": [ - 1736 + 2004 ], "weapon_class": [ - 1736 + 2004 ], "__typename": [ 63 @@ -36403,7 +41325,7 @@ export default { }, "player_aim_weapon_stats_pk_columns_input": { "match_map_id": [ - 3319 + 3587 ], "steam_id": [ 162 @@ -36430,10 +41352,10 @@ export default { 34 ], "match_id": [ - 3319 + 3587 ], "match_map_id": [ - 3319 + 3587 ], "shots": [ 34 @@ -36479,25 +41401,25 @@ export default { }, "player_aim_weapon_stats_stddev_order_by": { "first_bullet_hits": [ - 1736 + 2004 ], "first_bullet_shots": [ - 1736 + 2004 ], "hits": [ - 1736 + 2004 ], "hits_spotted": [ - 1736 + 2004 ], "shots": [ - 1736 + 2004 ], "shots_spotted": [ - 1736 + 2004 ], "steam_id": [ - 1736 + 2004 ], "__typename": [ 63 @@ -36531,25 +41453,25 @@ export default { }, "player_aim_weapon_stats_stddev_pop_order_by": { "first_bullet_hits": [ - 1736 + 2004 ], "first_bullet_shots": [ - 1736 + 2004 ], "hits": [ - 1736 + 2004 ], "hits_spotted": [ - 1736 + 2004 ], "shots": [ - 1736 + 2004 ], "shots_spotted": [ - 1736 + 2004 ], "steam_id": [ - 1736 + 2004 ], "__typename": [ 63 @@ -36583,25 +41505,25 @@ export default { }, "player_aim_weapon_stats_stddev_samp_order_by": { "first_bullet_hits": [ - 1736 + 2004 ], "first_bullet_shots": [ - 1736 + 2004 ], "hits": [ - 1736 + 2004 ], "hits_spotted": [ - 1736 + 2004 ], "shots": [ - 1736 + 2004 ], "shots_spotted": [ - 1736 + 2004 ], "steam_id": [ - 1736 + 2004 ], "__typename": [ 63 @@ -36609,7 +41531,7 @@ export default { }, "player_aim_weapon_stats_stream_cursor_input": { "initial_value": [ - 1863 + 2131 ], "ordering": [ 216 @@ -36632,10 +41554,10 @@ export default { 34 ], "match_id": [ - 3319 + 3587 ], "match_map_id": [ - 3319 + 3587 ], "shots": [ 34 @@ -36681,25 +41603,25 @@ export default { }, "player_aim_weapon_stats_sum_order_by": { "first_bullet_hits": [ - 1736 + 2004 ], "first_bullet_shots": [ - 1736 + 2004 ], "hits": [ - 1736 + 2004 ], "hits_spotted": [ - 1736 + 2004 ], "shots": [ - 1736 + 2004 ], "shots_spotted": [ - 1736 + 2004 ], "steam_id": [ - 1736 + 2004 ], "__typename": [ 63 @@ -36708,13 +41630,13 @@ export default { "player_aim_weapon_stats_update_column": {}, "player_aim_weapon_stats_updates": { "_inc": [ - 1844 + 2112 ], "_set": [ - 1855 + 2123 ], "where": [ - 1842 + 2110 ], "__typename": [ 63 @@ -36748,25 +41670,25 @@ export default { }, "player_aim_weapon_stats_var_pop_order_by": { "first_bullet_hits": [ - 1736 + 2004 ], "first_bullet_shots": [ - 1736 + 2004 ], "hits": [ - 1736 + 2004 ], "hits_spotted": [ - 1736 + 2004 ], "shots": [ - 1736 + 2004 ], "shots_spotted": [ - 1736 + 2004 ], "steam_id": [ - 1736 + 2004 ], "__typename": [ 63 @@ -36800,25 +41722,25 @@ export default { }, "player_aim_weapon_stats_var_samp_order_by": { "first_bullet_hits": [ - 1736 + 2004 ], "first_bullet_shots": [ - 1736 + 2004 ], "hits": [ - 1736 + 2004 ], "hits_spotted": [ - 1736 + 2004 ], "shots": [ - 1736 + 2004 ], "shots_spotted": [ - 1736 + 2004 ], "steam_id": [ - 1736 + 2004 ], "__typename": [ 63 @@ -36852,25 +41774,25 @@ export default { }, "player_aim_weapon_stats_variance_order_by": { "first_bullet_hits": [ - 1736 + 2004 ], "first_bullet_shots": [ - 1736 + 2004 ], "hits": [ - 1736 + 2004 ], "hits_spotted": [ - 1736 + 2004 ], "shots": [ - 1736 + 2004 ], "shots_spotted": [ - 1736 + 2004 ], "steam_id": [ - 1736 + 2004 ], "__typename": [ 63 @@ -36878,7 +41800,7 @@ export default { }, "player_assists": { "attacked_player": [ - 2603 + 2871 ], "attacked_steam_id": [ 162 @@ -36893,7 +41815,7 @@ export default { 63 ], "deleted_at": [ - 2922 + 3190 ], "flash": [ 3 @@ -36902,25 +41824,25 @@ export default { 3 ], "match": [ - 1578 + 1819 ], "match_id": [ - 3319 + 3587 ], "match_map": [ - 1416 + 1657 ], "match_map_id": [ - 3319 + 3587 ], "player": [ - 2603 + 2871 ], "round": [ 34 ], "time": [ - 2922 + 3190 ], "__typename": [ 63 @@ -36928,10 +41850,10 @@ export default { }, "player_assists_aggregate": { "aggregate": [ - 1880 + 2148 ], "nodes": [ - 1874 + 2142 ], "__typename": [ 63 @@ -36939,13 +41861,13 @@ export default { }, "player_assists_aggregate_bool_exp": { "bool_and": [ - 1877 + 2145 ], "bool_or": [ - 1878 + 2146 ], "count": [ - 1879 + 2147 ], "__typename": [ 63 @@ -36953,13 +41875,13 @@ export default { }, "player_assists_aggregate_bool_exp_bool_and": { "arguments": [ - 1898 + 2166 ], "distinct": [ 3 ], "filter": [ - 1885 + 2153 ], "predicate": [ 4 @@ -36970,13 +41892,13 @@ export default { }, "player_assists_aggregate_bool_exp_bool_or": { "arguments": [ - 1899 + 2167 ], "distinct": [ 3 ], "filter": [ - 1885 + 2153 ], "predicate": [ 4 @@ -36987,13 +41909,13 @@ export default { }, "player_assists_aggregate_bool_exp_count": { "arguments": [ - 1897 + 2165 ], "distinct": [ 3 ], "filter": [ - 1885 + 2153 ], "predicate": [ 35 @@ -37004,13 +41926,13 @@ export default { }, "player_assists_aggregate_fields": { "avg": [ - 1883 + 2151 ], "count": [ 34, { "columns": [ - 1897, + 2165, "[player_assists_select_column!]" ], "distinct": [ @@ -37019,31 +41941,31 @@ export default { } ], "max": [ - 1889 + 2157 ], "min": [ - 1891 + 2159 ], "stddev": [ - 1901 + 2169 ], "stddev_pop": [ - 1903 + 2171 ], "stddev_samp": [ - 1905 + 2173 ], "sum": [ - 1909 + 2177 ], "var_pop": [ - 1913 + 2181 ], "var_samp": [ - 1915 + 2183 ], "variance": [ - 1917 + 2185 ], "__typename": [ 63 @@ -37051,37 +41973,37 @@ export default { }, "player_assists_aggregate_order_by": { "avg": [ - 1884 + 2152 ], "count": [ - 1736 + 2004 ], "max": [ - 1890 + 2158 ], "min": [ - 1892 + 2160 ], "stddev": [ - 1902 + 2170 ], "stddev_pop": [ - 1904 + 2172 ], "stddev_samp": [ - 1906 + 2174 ], "sum": [ - 1910 + 2178 ], "var_pop": [ - 1914 + 2182 ], "var_samp": [ - 1916 + 2184 ], "variance": [ - 1918 + 2186 ], "__typename": [ 63 @@ -37089,10 +42011,10 @@ export default { }, "player_assists_arr_rel_insert_input": { "data": [ - 1888 + 2156 ], "on_conflict": [ - 1894 + 2162 ], "__typename": [ 63 @@ -37114,13 +42036,13 @@ export default { }, "player_assists_avg_order_by": { "attacked_steam_id": [ - 1736 + 2004 ], "attacker_steam_id": [ - 1736 + 2004 ], "round": [ - 1736 + 2004 ], "__typename": [ 63 @@ -37128,16 +42050,16 @@ export default { }, "player_assists_bool_exp": { "_and": [ - 1885 + 2153 ], "_not": [ - 1885 + 2153 ], "_or": [ - 1885 + 2153 ], "attacked_player": [ - 2607 + 2875 ], "attacked_steam_id": [ 163 @@ -37152,7 +42074,7 @@ export default { 65 ], "deleted_at": [ - 2923 + 3191 ], "flash": [ 4 @@ -37161,25 +42083,25 @@ export default { 4 ], "match": [ - 1587 + 1828 ], "match_id": [ - 3320 + 3588 ], "match_map": [ - 1425 + 1666 ], "match_map_id": [ - 3320 + 3588 ], "player": [ - 2607 + 2875 ], "round": [ 35 ], "time": [ - 2923 + 3191 ], "__typename": [ 63 @@ -37202,7 +42124,7 @@ export default { }, "player_assists_insert_input": { "attacked_player": [ - 2614 + 2882 ], "attacked_steam_id": [ 162 @@ -37217,31 +42139,31 @@ export default { 63 ], "deleted_at": [ - 2922 + 3190 ], "flash": [ 3 ], "match": [ - 1596 + 1837 ], "match_id": [ - 3319 + 3587 ], "match_map": [ - 1434 + 1675 ], "match_map_id": [ - 3319 + 3587 ], "player": [ - 2614 + 2882 ], "round": [ 34 ], "time": [ - 2922 + 3190 ], "__typename": [ 63 @@ -37261,19 +42183,19 @@ export default { 63 ], "deleted_at": [ - 2922 + 3190 ], "match_id": [ - 3319 + 3587 ], "match_map_id": [ - 3319 + 3587 ], "round": [ 34 ], "time": [ - 2922 + 3190 ], "__typename": [ 63 @@ -37281,31 +42203,31 @@ export default { }, "player_assists_max_order_by": { "attacked_steam_id": [ - 1736 + 2004 ], "attacked_team": [ - 1736 + 2004 ], "attacker_steam_id": [ - 1736 + 2004 ], "attacker_team": [ - 1736 + 2004 ], "deleted_at": [ - 1736 + 2004 ], "match_id": [ - 1736 + 2004 ], "match_map_id": [ - 1736 + 2004 ], "round": [ - 1736 + 2004 ], "time": [ - 1736 + 2004 ], "__typename": [ 63 @@ -37325,19 +42247,19 @@ export default { 63 ], "deleted_at": [ - 2922 + 3190 ], "match_id": [ - 3319 + 3587 ], "match_map_id": [ - 3319 + 3587 ], "round": [ 34 ], "time": [ - 2922 + 3190 ], "__typename": [ 63 @@ -37345,31 +42267,31 @@ export default { }, "player_assists_min_order_by": { "attacked_steam_id": [ - 1736 + 2004 ], "attacked_team": [ - 1736 + 2004 ], "attacker_steam_id": [ - 1736 + 2004 ], "attacker_team": [ - 1736 + 2004 ], "deleted_at": [ - 1736 + 2004 ], "match_id": [ - 1736 + 2004 ], "match_map_id": [ - 1736 + 2004 ], "round": [ - 1736 + 2004 ], "time": [ - 1736 + 2004 ], "__typename": [ 63 @@ -37380,7 +42302,7 @@ export default { 34 ], "returning": [ - 1874 + 2142 ], "__typename": [ 63 @@ -37388,13 +42310,13 @@ export default { }, "player_assists_on_conflict": { "constraint": [ - 1886 + 2154 ], "update_columns": [ - 1911 + 2179 ], "where": [ - 1885 + 2153 ], "__typename": [ 63 @@ -37402,49 +42324,49 @@ export default { }, "player_assists_order_by": { "attacked_player": [ - 2616 + 2884 ], "attacked_steam_id": [ - 1736 + 2004 ], "attacked_team": [ - 1736 + 2004 ], "attacker_steam_id": [ - 1736 + 2004 ], "attacker_team": [ - 1736 + 2004 ], "deleted_at": [ - 1736 + 2004 ], "flash": [ - 1736 + 2004 ], "is_team_assist": [ - 1736 + 2004 ], "match": [ - 1598 + 1839 ], "match_id": [ - 1736 + 2004 ], "match_map": [ - 1436 + 1677 ], "match_map_id": [ - 1736 + 2004 ], "player": [ - 2616 + 2884 ], "round": [ - 1736 + 2004 ], "time": [ - 1736 + 2004 ], "__typename": [ 63 @@ -37458,10 +42380,10 @@ export default { 162 ], "match_map_id": [ - 3319 + 3587 ], "time": [ - 2922 + 3190 ], "__typename": [ 63 @@ -37484,22 +42406,22 @@ export default { 63 ], "deleted_at": [ - 2922 + 3190 ], "flash": [ 3 ], "match_id": [ - 3319 + 3587 ], "match_map_id": [ - 3319 + 3587 ], "round": [ 34 ], "time": [ - 2922 + 3190 ], "__typename": [ 63 @@ -37521,13 +42443,13 @@ export default { }, "player_assists_stddev_order_by": { "attacked_steam_id": [ - 1736 + 2004 ], "attacker_steam_id": [ - 1736 + 2004 ], "round": [ - 1736 + 2004 ], "__typename": [ 63 @@ -37549,13 +42471,13 @@ export default { }, "player_assists_stddev_pop_order_by": { "attacked_steam_id": [ - 1736 + 2004 ], "attacker_steam_id": [ - 1736 + 2004 ], "round": [ - 1736 + 2004 ], "__typename": [ 63 @@ -37577,13 +42499,13 @@ export default { }, "player_assists_stddev_samp_order_by": { "attacked_steam_id": [ - 1736 + 2004 ], "attacker_steam_id": [ - 1736 + 2004 ], "round": [ - 1736 + 2004 ], "__typename": [ 63 @@ -37591,7 +42513,7 @@ export default { }, "player_assists_stream_cursor_input": { "initial_value": [ - 1908 + 2176 ], "ordering": [ 216 @@ -37614,22 +42536,22 @@ export default { 63 ], "deleted_at": [ - 2922 + 3190 ], "flash": [ 3 ], "match_id": [ - 3319 + 3587 ], "match_map_id": [ - 3319 + 3587 ], "round": [ 34 ], "time": [ - 2922 + 3190 ], "__typename": [ 63 @@ -37651,13 +42573,13 @@ export default { }, "player_assists_sum_order_by": { "attacked_steam_id": [ - 1736 + 2004 ], "attacker_steam_id": [ - 1736 + 2004 ], "round": [ - 1736 + 2004 ], "__typename": [ 63 @@ -37666,13 +42588,13 @@ export default { "player_assists_update_column": {}, "player_assists_updates": { "_inc": [ - 1887 + 2155 ], "_set": [ - 1900 + 2168 ], "where": [ - 1885 + 2153 ], "__typename": [ 63 @@ -37694,13 +42616,13 @@ export default { }, "player_assists_var_pop_order_by": { "attacked_steam_id": [ - 1736 + 2004 ], "attacker_steam_id": [ - 1736 + 2004 ], "round": [ - 1736 + 2004 ], "__typename": [ 63 @@ -37722,13 +42644,13 @@ export default { }, "player_assists_var_samp_order_by": { "attacked_steam_id": [ - 1736 + 2004 ], "attacker_steam_id": [ - 1736 + 2004 ], "round": [ - 1736 + 2004 ], "__typename": [ 63 @@ -37750,13 +42672,13 @@ export default { }, "player_assists_variance_order_by": { "attacked_steam_id": [ - 1736 + 2004 ], "attacker_steam_id": [ - 1736 + 2004 ], "round": [ - 1736 + 2004 ], "__typename": [ 63 @@ -37764,28 +42686,28 @@ export default { }, "player_career_stats_v": { "accuracy": [ - 1734 + 2002 ], "accuracy_spotted": [ - 1734 + 2002 ], "counter_strafe_pct": [ - 1734 + 2002 ], "crosshair_deg": [ - 1734 + 2002 ], "enemy_blind_pr": [ - 1734 + 2002 ], "flash_assists_pr": [ - 1734 + 2002 ], "hs_pct": [ - 1734 + 2002 ], "kast_pct": [ - 1734 + 2002 ], "maps": [ 34 @@ -37800,16 +42722,16 @@ export default { 162 ], "survival_pct": [ - 1734 + 2002 ], "time_to_damage_s": [ - 1734 + 2002 ], "traded_death_pct": [ - 1734 + 2002 ], "util_efficiency": [ - 1734 + 2002 ], "__typename": [ 63 @@ -37817,10 +42739,10 @@ export default { }, "player_career_stats_v_aggregate": { "aggregate": [ - 1921 + 2189 ], "nodes": [ - 1919 + 2187 ], "__typename": [ 63 @@ -37828,13 +42750,13 @@ export default { }, "player_career_stats_v_aggregate_fields": { "avg": [ - 1922 + 2190 ], "count": [ 34, { "columns": [ - 1927, + 2195, "[player_career_stats_v_select_column!]" ], "distinct": [ @@ -37843,31 +42765,31 @@ export default { } ], "max": [ - 1924 + 2192 ], "min": [ - 1925 + 2193 ], "stddev": [ - 1928 + 2196 ], "stddev_pop": [ - 1929 + 2197 ], "stddev_samp": [ - 1930 + 2198 ], "sum": [ - 1933 + 2201 ], "var_pop": [ - 1934 + 2202 ], "var_samp": [ - 1935 + 2203 ], "variance": [ - 1936 + 2204 ], "__typename": [ 63 @@ -37928,37 +42850,37 @@ export default { }, "player_career_stats_v_bool_exp": { "_and": [ - 1923 + 2191 ], "_not": [ - 1923 + 2191 ], "_or": [ - 1923 + 2191 ], "accuracy": [ - 1735 + 2003 ], "accuracy_spotted": [ - 1735 + 2003 ], "counter_strafe_pct": [ - 1735 + 2003 ], "crosshair_deg": [ - 1735 + 2003 ], "enemy_blind_pr": [ - 1735 + 2003 ], "flash_assists_pr": [ - 1735 + 2003 ], "hs_pct": [ - 1735 + 2003 ], "kast_pct": [ - 1735 + 2003 ], "maps": [ 35 @@ -37973,16 +42895,16 @@ export default { 163 ], "survival_pct": [ - 1735 + 2003 ], "time_to_damage_s": [ - 1735 + 2003 ], "traded_death_pct": [ - 1735 + 2003 ], "util_efficiency": [ - 1735 + 2003 ], "__typename": [ 63 @@ -37990,28 +42912,28 @@ export default { }, "player_career_stats_v_max_fields": { "accuracy": [ - 1734 + 2002 ], "accuracy_spotted": [ - 1734 + 2002 ], "counter_strafe_pct": [ - 1734 + 2002 ], "crosshair_deg": [ - 1734 + 2002 ], "enemy_blind_pr": [ - 1734 + 2002 ], "flash_assists_pr": [ - 1734 + 2002 ], "hs_pct": [ - 1734 + 2002 ], "kast_pct": [ - 1734 + 2002 ], "maps": [ 34 @@ -38026,16 +42948,16 @@ export default { 162 ], "survival_pct": [ - 1734 + 2002 ], "time_to_damage_s": [ - 1734 + 2002 ], "traded_death_pct": [ - 1734 + 2002 ], "util_efficiency": [ - 1734 + 2002 ], "__typename": [ 63 @@ -38043,28 +42965,28 @@ export default { }, "player_career_stats_v_min_fields": { "accuracy": [ - 1734 + 2002 ], "accuracy_spotted": [ - 1734 + 2002 ], "counter_strafe_pct": [ - 1734 + 2002 ], "crosshair_deg": [ - 1734 + 2002 ], "enemy_blind_pr": [ - 1734 + 2002 ], "flash_assists_pr": [ - 1734 + 2002 ], "hs_pct": [ - 1734 + 2002 ], "kast_pct": [ - 1734 + 2002 ], "maps": [ 34 @@ -38079,16 +43001,16 @@ export default { 162 ], "survival_pct": [ - 1734 + 2002 ], "time_to_damage_s": [ - 1734 + 2002 ], "traded_death_pct": [ - 1734 + 2002 ], "util_efficiency": [ - 1734 + 2002 ], "__typename": [ 63 @@ -38096,52 +43018,52 @@ export default { }, "player_career_stats_v_order_by": { "accuracy": [ - 1736 + 2004 ], "accuracy_spotted": [ - 1736 + 2004 ], "counter_strafe_pct": [ - 1736 + 2004 ], "crosshair_deg": [ - 1736 + 2004 ], "enemy_blind_pr": [ - 1736 + 2004 ], "flash_assists_pr": [ - 1736 + 2004 ], "hs_pct": [ - 1736 + 2004 ], "kast_pct": [ - 1736 + 2004 ], "maps": [ - 1736 + 2004 ], "premier_rank": [ - 1736 + 2004 ], "rounds": [ - 1736 + 2004 ], "steam_id": [ - 1736 + 2004 ], "survival_pct": [ - 1736 + 2004 ], "time_to_damage_s": [ - 1736 + 2004 ], "traded_death_pct": [ - 1736 + 2004 ], "util_efficiency": [ - 1736 + 2004 ], "__typename": [ 63 @@ -38309,7 +43231,7 @@ export default { }, "player_career_stats_v_stream_cursor_input": { "initial_value": [ - 1932 + 2200 ], "ordering": [ 216 @@ -38320,28 +43242,28 @@ export default { }, "player_career_stats_v_stream_cursor_value_input": { "accuracy": [ - 1734 + 2002 ], "accuracy_spotted": [ - 1734 + 2002 ], "counter_strafe_pct": [ - 1734 + 2002 ], "crosshair_deg": [ - 1734 + 2002 ], "enemy_blind_pr": [ - 1734 + 2002 ], "flash_assists_pr": [ - 1734 + 2002 ], "hs_pct": [ - 1734 + 2002 ], "kast_pct": [ - 1734 + 2002 ], "maps": [ 34 @@ -38356,16 +43278,16 @@ export default { 162 ], "survival_pct": [ - 1734 + 2002 ], "time_to_damage_s": [ - 1734 + 2002 ], "traded_death_pct": [ - 1734 + 2002 ], "util_efficiency": [ - 1734 + 2002 ], "__typename": [ 63 @@ -38373,28 +43295,28 @@ export default { }, "player_career_stats_v_sum_fields": { "accuracy": [ - 1734 + 2002 ], "accuracy_spotted": [ - 1734 + 2002 ], "counter_strafe_pct": [ - 1734 + 2002 ], "crosshair_deg": [ - 1734 + 2002 ], "enemy_blind_pr": [ - 1734 + 2002 ], "flash_assists_pr": [ - 1734 + 2002 ], "hs_pct": [ - 1734 + 2002 ], "kast_pct": [ - 1734 + 2002 ], "maps": [ 34 @@ -38409,16 +43331,16 @@ export default { 162 ], "survival_pct": [ - 1734 + 2002 ], "time_to_damage_s": [ - 1734 + 2002 ], "traded_death_pct": [ - 1734 + 2002 ], "util_efficiency": [ - 1734 + 2002 ], "__typename": [ 63 @@ -38594,7 +43516,7 @@ export default { 63 ], "attacked_player": [ - 2603 + 2871 ], "attacked_steam_id": [ 162 @@ -38621,7 +43543,7 @@ export default { 34 ], "deleted_at": [ - 2922 + 3190 ], "health": [ 34 @@ -38630,31 +43552,31 @@ export default { 63 ], "id": [ - 3319 + 3587 ], "match": [ - 1578 + 1819 ], "match_id": [ - 3319 + 3587 ], "match_map": [ - 1416 + 1657 ], "match_map_id": [ - 3319 + 3587 ], "player": [ - 2603 + 2871 ], "round": [ - 1734 + 2002 ], "team_damage": [ 3 ], "time": [ - 2922 + 3190 ], "with": [ 63 @@ -38665,10 +43587,10 @@ export default { }, "player_damages_aggregate": { "aggregate": [ - 1941 + 2209 ], "nodes": [ - 1937 + 2205 ], "__typename": [ 63 @@ -38676,7 +43598,7 @@ export default { }, "player_damages_aggregate_bool_exp": { "count": [ - 1940 + 2208 ], "__typename": [ 63 @@ -38684,13 +43606,13 @@ export default { }, "player_damages_aggregate_bool_exp_count": { "arguments": [ - 1958 + 2226 ], "distinct": [ 3 ], "filter": [ - 1946 + 2214 ], "predicate": [ 35 @@ -38701,13 +43623,13 @@ export default { }, "player_damages_aggregate_fields": { "avg": [ - 1944 + 2212 ], "count": [ 34, { "columns": [ - 1958, + 2226, "[player_damages_select_column!]" ], "distinct": [ @@ -38716,31 +43638,31 @@ export default { } ], "max": [ - 1950 + 2218 ], "min": [ - 1952 + 2220 ], "stddev": [ - 1960 + 2228 ], "stddev_pop": [ - 1962 + 2230 ], "stddev_samp": [ - 1964 + 2232 ], "sum": [ - 1968 + 2236 ], "var_pop": [ - 1972 + 2240 ], "var_samp": [ - 1974 + 2242 ], "variance": [ - 1976 + 2244 ], "__typename": [ 63 @@ -38748,37 +43670,37 @@ export default { }, "player_damages_aggregate_order_by": { "avg": [ - 1945 + 2213 ], "count": [ - 1736 + 2004 ], "max": [ - 1951 + 2219 ], "min": [ - 1953 + 2221 ], "stddev": [ - 1961 + 2229 ], "stddev_pop": [ - 1963 + 2231 ], "stddev_samp": [ - 1965 + 2233 ], "sum": [ - 1969 + 2237 ], "var_pop": [ - 1973 + 2241 ], "var_samp": [ - 1975 + 2243 ], "variance": [ - 1977 + 2245 ], "__typename": [ 63 @@ -38786,10 +43708,10 @@ export default { }, "player_damages_arr_rel_insert_input": { "data": [ - 1949 + 2217 ], "on_conflict": [ - 1955 + 2223 ], "__typename": [ 63 @@ -38823,25 +43745,25 @@ export default { }, "player_damages_avg_order_by": { "armor": [ - 1736 + 2004 ], "attacked_steam_id": [ - 1736 + 2004 ], "attacker_steam_id": [ - 1736 + 2004 ], "damage": [ - 1736 + 2004 ], "damage_armor": [ - 1736 + 2004 ], "health": [ - 1736 + 2004 ], "round": [ - 1736 + 2004 ], "__typename": [ 63 @@ -38849,13 +43771,13 @@ export default { }, "player_damages_bool_exp": { "_and": [ - 1946 + 2214 ], "_not": [ - 1946 + 2214 ], "_or": [ - 1946 + 2214 ], "armor": [ 35 @@ -38867,7 +43789,7 @@ export default { 65 ], "attacked_player": [ - 2607 + 2875 ], "attacked_steam_id": [ 163 @@ -38894,7 +43816,7 @@ export default { 35 ], "deleted_at": [ - 2923 + 3191 ], "health": [ 35 @@ -38903,31 +43825,31 @@ export default { 65 ], "id": [ - 3320 + 3588 ], "match": [ - 1587 + 1828 ], "match_id": [ - 3320 + 3588 ], "match_map": [ - 1425 + 1666 ], "match_map_id": [ - 3320 + 3588 ], "player": [ - 2607 + 2875 ], "round": [ - 1735 + 2003 ], "team_damage": [ 4 ], "time": [ - 2923 + 3191 ], "with": [ 65 @@ -38957,7 +43879,7 @@ export default { 34 ], "round": [ - 1734 + 2002 ], "__typename": [ 63 @@ -38974,7 +43896,7 @@ export default { 63 ], "attacked_player": [ - 2614 + 2882 ], "attacked_steam_id": [ 162 @@ -39001,7 +43923,7 @@ export default { 34 ], "deleted_at": [ - 2922 + 3190 ], "health": [ 34 @@ -39010,28 +43932,28 @@ export default { 63 ], "id": [ - 3319 + 3587 ], "match": [ - 1596 + 1837 ], "match_id": [ - 3319 + 3587 ], "match_map": [ - 1434 + 1675 ], "match_map_id": [ - 3319 + 3587 ], "player": [ - 2614 + 2882 ], "round": [ - 1734 + 2002 ], "time": [ - 2922 + 3190 ], "with": [ 63 @@ -39075,7 +43997,7 @@ export default { 34 ], "deleted_at": [ - 2922 + 3190 ], "health": [ 34 @@ -39084,19 +44006,19 @@ export default { 63 ], "id": [ - 3319 + 3587 ], "match_id": [ - 3319 + 3587 ], "match_map_id": [ - 3319 + 3587 ], "round": [ - 1734 + 2002 ], "time": [ - 2922 + 3190 ], "with": [ 63 @@ -39107,64 +44029,64 @@ export default { }, "player_damages_max_order_by": { "armor": [ - 1736 + 2004 ], "attacked_location": [ - 1736 + 2004 ], "attacked_location_coordinates": [ - 1736 + 2004 ], "attacked_steam_id": [ - 1736 + 2004 ], "attacked_team": [ - 1736 + 2004 ], "attacker_location": [ - 1736 + 2004 ], "attacker_location_coordinates": [ - 1736 + 2004 ], "attacker_steam_id": [ - 1736 + 2004 ], "attacker_team": [ - 1736 + 2004 ], "damage": [ - 1736 + 2004 ], "damage_armor": [ - 1736 + 2004 ], "deleted_at": [ - 1736 + 2004 ], "health": [ - 1736 + 2004 ], "hitgroup": [ - 1736 + 2004 ], "id": [ - 1736 + 2004 ], "match_id": [ - 1736 + 2004 ], "match_map_id": [ - 1736 + 2004 ], "round": [ - 1736 + 2004 ], "time": [ - 1736 + 2004 ], "with": [ - 1736 + 2004 ], "__typename": [ 63 @@ -39205,7 +44127,7 @@ export default { 34 ], "deleted_at": [ - 2922 + 3190 ], "health": [ 34 @@ -39214,19 +44136,19 @@ export default { 63 ], "id": [ - 3319 + 3587 ], "match_id": [ - 3319 + 3587 ], "match_map_id": [ - 3319 + 3587 ], "round": [ - 1734 + 2002 ], "time": [ - 2922 + 3190 ], "with": [ 63 @@ -39237,64 +44159,64 @@ export default { }, "player_damages_min_order_by": { "armor": [ - 1736 + 2004 ], "attacked_location": [ - 1736 + 2004 ], "attacked_location_coordinates": [ - 1736 + 2004 ], "attacked_steam_id": [ - 1736 + 2004 ], "attacked_team": [ - 1736 + 2004 ], "attacker_location": [ - 1736 + 2004 ], "attacker_location_coordinates": [ - 1736 + 2004 ], "attacker_steam_id": [ - 1736 + 2004 ], "attacker_team": [ - 1736 + 2004 ], "damage": [ - 1736 + 2004 ], "damage_armor": [ - 1736 + 2004 ], "deleted_at": [ - 1736 + 2004 ], "health": [ - 1736 + 2004 ], "hitgroup": [ - 1736 + 2004 ], "id": [ - 1736 + 2004 ], "match_id": [ - 1736 + 2004 ], "match_map_id": [ - 1736 + 2004 ], "round": [ - 1736 + 2004 ], "time": [ - 1736 + 2004 ], "with": [ - 1736 + 2004 ], "__typename": [ 63 @@ -39305,7 +44227,7 @@ export default { 34 ], "returning": [ - 1937 + 2205 ], "__typename": [ 63 @@ -39313,13 +44235,13 @@ export default { }, "player_damages_on_conflict": { "constraint": [ - 1947 + 2215 ], "update_columns": [ - 1970 + 2238 ], "where": [ - 1946 + 2214 ], "__typename": [ 63 @@ -39327,79 +44249,79 @@ export default { }, "player_damages_order_by": { "armor": [ - 1736 + 2004 ], "attacked_location": [ - 1736 + 2004 ], "attacked_location_coordinates": [ - 1736 + 2004 ], "attacked_player": [ - 2616 + 2884 ], "attacked_steam_id": [ - 1736 + 2004 ], "attacked_team": [ - 1736 + 2004 ], "attacker_location": [ - 1736 + 2004 ], "attacker_location_coordinates": [ - 1736 + 2004 ], "attacker_steam_id": [ - 1736 + 2004 ], "attacker_team": [ - 1736 + 2004 ], "damage": [ - 1736 + 2004 ], "damage_armor": [ - 1736 + 2004 ], "deleted_at": [ - 1736 + 2004 ], "health": [ - 1736 + 2004 ], "hitgroup": [ - 1736 + 2004 ], "id": [ - 1736 + 2004 ], "match": [ - 1598 + 1839 ], "match_id": [ - 1736 + 2004 ], "match_map": [ - 1436 + 1677 ], "match_map_id": [ - 1736 + 2004 ], "player": [ - 2616 + 2884 ], "round": [ - 1736 + 2004 ], "team_damage": [ - 1736 + 2004 ], "time": [ - 1736 + 2004 ], "with": [ - 1736 + 2004 ], "__typename": [ 63 @@ -39407,13 +44329,13 @@ export default { }, "player_damages_pk_columns_input": { "id": [ - 3319 + 3587 ], "match_map_id": [ - 3319 + 3587 ], "time": [ - 2922 + 3190 ], "__typename": [ 63 @@ -39455,7 +44377,7 @@ export default { 34 ], "deleted_at": [ - 2922 + 3190 ], "health": [ 34 @@ -39464,19 +44386,19 @@ export default { 63 ], "id": [ - 3319 + 3587 ], "match_id": [ - 3319 + 3587 ], "match_map_id": [ - 3319 + 3587 ], "round": [ - 1734 + 2002 ], "time": [ - 2922 + 3190 ], "with": [ 63 @@ -39513,25 +44435,25 @@ export default { }, "player_damages_stddev_order_by": { "armor": [ - 1736 + 2004 ], "attacked_steam_id": [ - 1736 + 2004 ], "attacker_steam_id": [ - 1736 + 2004 ], "damage": [ - 1736 + 2004 ], "damage_armor": [ - 1736 + 2004 ], "health": [ - 1736 + 2004 ], "round": [ - 1736 + 2004 ], "__typename": [ 63 @@ -39565,25 +44487,25 @@ export default { }, "player_damages_stddev_pop_order_by": { "armor": [ - 1736 + 2004 ], "attacked_steam_id": [ - 1736 + 2004 ], "attacker_steam_id": [ - 1736 + 2004 ], "damage": [ - 1736 + 2004 ], "damage_armor": [ - 1736 + 2004 ], "health": [ - 1736 + 2004 ], "round": [ - 1736 + 2004 ], "__typename": [ 63 @@ -39617,25 +44539,25 @@ export default { }, "player_damages_stddev_samp_order_by": { "armor": [ - 1736 + 2004 ], "attacked_steam_id": [ - 1736 + 2004 ], "attacker_steam_id": [ - 1736 + 2004 ], "damage": [ - 1736 + 2004 ], "damage_armor": [ - 1736 + 2004 ], "health": [ - 1736 + 2004 ], "round": [ - 1736 + 2004 ], "__typename": [ 63 @@ -39643,7 +44565,7 @@ export default { }, "player_damages_stream_cursor_input": { "initial_value": [ - 1967 + 2235 ], "ordering": [ 216 @@ -39687,7 +44609,7 @@ export default { 34 ], "deleted_at": [ - 2922 + 3190 ], "health": [ 34 @@ -39696,19 +44618,19 @@ export default { 63 ], "id": [ - 3319 + 3587 ], "match_id": [ - 3319 + 3587 ], "match_map_id": [ - 3319 + 3587 ], "round": [ - 1734 + 2002 ], "time": [ - 2922 + 3190 ], "with": [ 63 @@ -39737,7 +44659,7 @@ export default { 34 ], "round": [ - 1734 + 2002 ], "__typename": [ 63 @@ -39745,25 +44667,25 @@ export default { }, "player_damages_sum_order_by": { "armor": [ - 1736 + 2004 ], "attacked_steam_id": [ - 1736 + 2004 ], "attacker_steam_id": [ - 1736 + 2004 ], "damage": [ - 1736 + 2004 ], "damage_armor": [ - 1736 + 2004 ], "health": [ - 1736 + 2004 ], "round": [ - 1736 + 2004 ], "__typename": [ 63 @@ -39772,13 +44694,13 @@ export default { "player_damages_update_column": {}, "player_damages_updates": { "_inc": [ - 1948 + 2216 ], "_set": [ - 1959 + 2227 ], "where": [ - 1946 + 2214 ], "__typename": [ 63 @@ -39812,25 +44734,25 @@ export default { }, "player_damages_var_pop_order_by": { "armor": [ - 1736 + 2004 ], "attacked_steam_id": [ - 1736 + 2004 ], "attacker_steam_id": [ - 1736 + 2004 ], "damage": [ - 1736 + 2004 ], "damage_armor": [ - 1736 + 2004 ], "health": [ - 1736 + 2004 ], "round": [ - 1736 + 2004 ], "__typename": [ 63 @@ -39864,25 +44786,25 @@ export default { }, "player_damages_var_samp_order_by": { "armor": [ - 1736 + 2004 ], "attacked_steam_id": [ - 1736 + 2004 ], "attacker_steam_id": [ - 1736 + 2004 ], "damage": [ - 1736 + 2004 ], "damage_armor": [ - 1736 + 2004 ], "health": [ - 1736 + 2004 ], "round": [ - 1736 + 2004 ], "__typename": [ 63 @@ -39916,25 +44838,25 @@ export default { }, "player_damages_variance_order_by": { "armor": [ - 1736 + 2004 ], "attacked_steam_id": [ - 1736 + 2004 ], "attacker_steam_id": [ - 1736 + 2004 ], "damage": [ - 1736 + 2004 ], "damage_armor": [ - 1736 + 2004 ], "health": [ - 1736 + 2004 ], "round": [ - 1736 + 2004 ], "__typename": [ 63 @@ -39942,40 +44864,40 @@ export default { }, "player_elo": { "actual_score": [ - 795 + 1036 ], "assists": [ 34 ], "change": [ - 1734 + 2002 ], "created_at": [ - 2922 + 3190 ], "current": [ - 1734 + 2002 ], "damage": [ 34 ], "damage_percent": [ - 795 + 1036 ], "deaths": [ 34 ], "expected_score": [ - 795 + 1036 ], "impact": [ - 1734 + 2002 ], "k_factor": [ 34 ], "kda": [ - 795 + 1036 ], "kills": [ 34 @@ -39987,22 +44909,22 @@ export default { 34 ], "match": [ - 1578 + 1819 ], "match_id": [ - 3319 + 3587 ], "opponent_team_elo_avg": [ - 795 + 1036 ], "performance_multiplier": [ - 795 + 1036 ], "player": [ - 2603 + 2871 ], "player_team_elo_avg": [ - 795 + 1036 ], "series_multiplier": [ 34 @@ -40011,10 +44933,10 @@ export default { 162 ], "team_avg_kda": [ - 795 + 1036 ], "type": [ - 475 + 716 ], "__typename": [ 63 @@ -40022,10 +44944,10 @@ export default { }, "player_elo_aggregate": { "aggregate": [ - 1980 + 2248 ], "nodes": [ - 1978 + 2246 ], "__typename": [ 63 @@ -40033,13 +44955,13 @@ export default { }, "player_elo_aggregate_fields": { "avg": [ - 1981 + 2249 ], "count": [ 34, { "columns": [ - 1992, + 2260, "[player_elo_select_column!]" ], "distinct": [ @@ -40048,31 +44970,31 @@ export default { } ], "max": [ - 1986 + 2254 ], "min": [ - 1987 + 2255 ], "stddev": [ - 1994 + 2262 ], "stddev_pop": [ - 1995 + 2263 ], "stddev_samp": [ - 1996 + 2264 ], "sum": [ - 1999 + 2267 ], "var_pop": [ - 2002 + 2270 ], "var_samp": [ - 2003 + 2271 ], "variance": [ - 2004 + 2272 ], "__typename": [ 63 @@ -40145,49 +45067,49 @@ export default { }, "player_elo_bool_exp": { "_and": [ - 1982 + 2250 ], "_not": [ - 1982 + 2250 ], "_or": [ - 1982 + 2250 ], "actual_score": [ - 796 + 1037 ], "assists": [ 35 ], "change": [ - 1735 + 2003 ], "created_at": [ - 2923 + 3191 ], "current": [ - 1735 + 2003 ], "damage": [ 35 ], "damage_percent": [ - 796 + 1037 ], "deaths": [ 35 ], "expected_score": [ - 796 + 1037 ], "impact": [ - 1735 + 2003 ], "k_factor": [ 35 ], "kda": [ - 796 + 1037 ], "kills": [ 35 @@ -40199,22 +45121,22 @@ export default { 35 ], "match": [ - 1587 + 1828 ], "match_id": [ - 3320 + 3588 ], "opponent_team_elo_avg": [ - 796 + 1037 ], "performance_multiplier": [ - 796 + 1037 ], "player": [ - 2607 + 2875 ], "player_team_elo_avg": [ - 796 + 1037 ], "series_multiplier": [ 35 @@ -40223,10 +45145,10 @@ export default { 163 ], "team_avg_kda": [ - 796 + 1037 ], "type": [ - 476 + 717 ], "__typename": [ 63 @@ -40235,37 +45157,37 @@ export default { "player_elo_constraint": {}, "player_elo_inc_input": { "actual_score": [ - 795 + 1036 ], "assists": [ 34 ], "change": [ - 1734 + 2002 ], "current": [ - 1734 + 2002 ], "damage": [ 34 ], "damage_percent": [ - 795 + 1036 ], "deaths": [ 34 ], "expected_score": [ - 795 + 1036 ], "impact": [ - 1734 + 2002 ], "k_factor": [ 34 ], "kda": [ - 795 + 1036 ], "kills": [ 34 @@ -40277,13 +45199,13 @@ export default { 34 ], "opponent_team_elo_avg": [ - 795 + 1036 ], "performance_multiplier": [ - 795 + 1036 ], "player_team_elo_avg": [ - 795 + 1036 ], "series_multiplier": [ 34 @@ -40292,7 +45214,7 @@ export default { 162 ], "team_avg_kda": [ - 795 + 1036 ], "__typename": [ 63 @@ -40300,40 +45222,40 @@ export default { }, "player_elo_insert_input": { "actual_score": [ - 795 + 1036 ], "assists": [ 34 ], "change": [ - 1734 + 2002 ], "created_at": [ - 2922 + 3190 ], "current": [ - 1734 + 2002 ], "damage": [ 34 ], "damage_percent": [ - 795 + 1036 ], "deaths": [ 34 ], "expected_score": [ - 795 + 1036 ], "impact": [ - 1734 + 2002 ], "k_factor": [ 34 ], "kda": [ - 795 + 1036 ], "kills": [ 34 @@ -40345,22 +45267,22 @@ export default { 34 ], "match": [ - 1596 + 1837 ], "match_id": [ - 3319 + 3587 ], "opponent_team_elo_avg": [ - 795 + 1036 ], "performance_multiplier": [ - 795 + 1036 ], "player": [ - 2614 + 2882 ], "player_team_elo_avg": [ - 795 + 1036 ], "series_multiplier": [ 34 @@ -40369,10 +45291,10 @@ export default { 162 ], "team_avg_kda": [ - 795 + 1036 ], "type": [ - 475 + 716 ], "__typename": [ 63 @@ -40380,40 +45302,40 @@ export default { }, "player_elo_max_fields": { "actual_score": [ - 795 + 1036 ], "assists": [ 34 ], "change": [ - 1734 + 2002 ], "created_at": [ - 2922 + 3190 ], "current": [ - 1734 + 2002 ], "damage": [ 34 ], "damage_percent": [ - 795 + 1036 ], "deaths": [ 34 ], "expected_score": [ - 795 + 1036 ], "impact": [ - 1734 + 2002 ], "k_factor": [ 34 ], "kda": [ - 795 + 1036 ], "kills": [ 34 @@ -40425,16 +45347,16 @@ export default { 34 ], "match_id": [ - 3319 + 3587 ], "opponent_team_elo_avg": [ - 795 + 1036 ], "performance_multiplier": [ - 795 + 1036 ], "player_team_elo_avg": [ - 795 + 1036 ], "series_multiplier": [ 34 @@ -40443,7 +45365,7 @@ export default { 162 ], "team_avg_kda": [ - 795 + 1036 ], "__typename": [ 63 @@ -40451,40 +45373,40 @@ export default { }, "player_elo_min_fields": { "actual_score": [ - 795 + 1036 ], "assists": [ 34 ], "change": [ - 1734 + 2002 ], "created_at": [ - 2922 + 3190 ], "current": [ - 1734 + 2002 ], "damage": [ 34 ], "damage_percent": [ - 795 + 1036 ], "deaths": [ 34 ], "expected_score": [ - 795 + 1036 ], "impact": [ - 1734 + 2002 ], "k_factor": [ 34 ], "kda": [ - 795 + 1036 ], "kills": [ 34 @@ -40496,16 +45418,16 @@ export default { 34 ], "match_id": [ - 3319 + 3587 ], "opponent_team_elo_avg": [ - 795 + 1036 ], "performance_multiplier": [ - 795 + 1036 ], "player_team_elo_avg": [ - 795 + 1036 ], "series_multiplier": [ 34 @@ -40514,7 +45436,7 @@ export default { 162 ], "team_avg_kda": [ - 795 + 1036 ], "__typename": [ 63 @@ -40525,7 +45447,7 @@ export default { 34 ], "returning": [ - 1978 + 2246 ], "__typename": [ 63 @@ -40533,13 +45455,13 @@ export default { }, "player_elo_on_conflict": { "constraint": [ - 1983 + 2251 ], "update_columns": [ - 2000 + 2268 ], "where": [ - 1982 + 2250 ], "__typename": [ 63 @@ -40547,79 +45469,79 @@ export default { }, "player_elo_order_by": { "actual_score": [ - 1736 + 2004 ], "assists": [ - 1736 + 2004 ], "change": [ - 1736 + 2004 ], "created_at": [ - 1736 + 2004 ], "current": [ - 1736 + 2004 ], "damage": [ - 1736 + 2004 ], "damage_percent": [ - 1736 + 2004 ], "deaths": [ - 1736 + 2004 ], "expected_score": [ - 1736 + 2004 ], "impact": [ - 1736 + 2004 ], "k_factor": [ - 1736 + 2004 ], "kda": [ - 1736 + 2004 ], "kills": [ - 1736 + 2004 ], "map_losses": [ - 1736 + 2004 ], "map_wins": [ - 1736 + 2004 ], "match": [ - 1598 + 1839 ], "match_id": [ - 1736 + 2004 ], "opponent_team_elo_avg": [ - 1736 + 2004 ], "performance_multiplier": [ - 1736 + 2004 ], "player": [ - 2616 + 2884 ], "player_team_elo_avg": [ - 1736 + 2004 ], "series_multiplier": [ - 1736 + 2004 ], "steam_id": [ - 1736 + 2004 ], "team_avg_kda": [ - 1736 + 2004 ], "type": [ - 1736 + 2004 ], "__typename": [ 63 @@ -40627,13 +45549,13 @@ export default { }, "player_elo_pk_columns_input": { "match_id": [ - 3319 + 3587 ], "steam_id": [ 162 ], "type": [ - 475 + 716 ], "__typename": [ 63 @@ -40642,40 +45564,40 @@ export default { "player_elo_select_column": {}, "player_elo_set_input": { "actual_score": [ - 795 + 1036 ], "assists": [ 34 ], "change": [ - 1734 + 2002 ], "created_at": [ - 2922 + 3190 ], "current": [ - 1734 + 2002 ], "damage": [ 34 ], "damage_percent": [ - 795 + 1036 ], "deaths": [ 34 ], "expected_score": [ - 795 + 1036 ], "impact": [ - 1734 + 2002 ], "k_factor": [ 34 ], "kda": [ - 795 + 1036 ], "kills": [ 34 @@ -40687,16 +45609,16 @@ export default { 34 ], "match_id": [ - 3319 + 3587 ], "opponent_team_elo_avg": [ - 795 + 1036 ], "performance_multiplier": [ - 795 + 1036 ], "player_team_elo_avg": [ - 795 + 1036 ], "series_multiplier": [ 34 @@ -40705,10 +45627,10 @@ export default { 162 ], "team_avg_kda": [ - 795 + 1036 ], "type": [ - 475 + 716 ], "__typename": [ 63 @@ -40911,7 +45833,7 @@ export default { }, "player_elo_stream_cursor_input": { "initial_value": [ - 1998 + 2266 ], "ordering": [ 216 @@ -40922,40 +45844,40 @@ export default { }, "player_elo_stream_cursor_value_input": { "actual_score": [ - 795 + 1036 ], "assists": [ 34 ], "change": [ - 1734 + 2002 ], "created_at": [ - 2922 + 3190 ], "current": [ - 1734 + 2002 ], "damage": [ 34 ], "damage_percent": [ - 795 + 1036 ], "deaths": [ 34 ], "expected_score": [ - 795 + 1036 ], "impact": [ - 1734 + 2002 ], "k_factor": [ 34 ], "kda": [ - 795 + 1036 ], "kills": [ 34 @@ -40967,16 +45889,16 @@ export default { 34 ], "match_id": [ - 3319 + 3587 ], "opponent_team_elo_avg": [ - 795 + 1036 ], "performance_multiplier": [ - 795 + 1036 ], "player_team_elo_avg": [ - 795 + 1036 ], "series_multiplier": [ 34 @@ -40985,10 +45907,10 @@ export default { 162 ], "team_avg_kda": [ - 795 + 1036 ], "type": [ - 475 + 716 ], "__typename": [ 63 @@ -40996,37 +45918,37 @@ export default { }, "player_elo_sum_fields": { "actual_score": [ - 795 + 1036 ], "assists": [ 34 ], "change": [ - 1734 + 2002 ], "current": [ - 1734 + 2002 ], "damage": [ 34 ], "damage_percent": [ - 795 + 1036 ], "deaths": [ 34 ], "expected_score": [ - 795 + 1036 ], "impact": [ - 1734 + 2002 ], "k_factor": [ 34 ], "kda": [ - 795 + 1036 ], "kills": [ 34 @@ -41038,13 +45960,13 @@ export default { 34 ], "opponent_team_elo_avg": [ - 795 + 1036 ], "performance_multiplier": [ - 795 + 1036 ], "player_team_elo_avg": [ - 795 + 1036 ], "series_multiplier": [ 34 @@ -41053,7 +45975,7 @@ export default { 162 ], "team_avg_kda": [ - 795 + 1036 ], "__typename": [ 63 @@ -41062,13 +45984,13 @@ export default { "player_elo_update_column": {}, "player_elo_updates": { "_inc": [ - 1984 + 2252 ], "_set": [ - 1993 + 2261 ], "where": [ - 1982 + 2250 ], "__typename": [ 63 @@ -41274,19 +46196,19 @@ export default { 34 ], "id": [ - 3319 + 3587 ], "match": [ - 1578 + 1819 ], "match_id": [ - 3319 + 3587 ], "observed_at": [ - 2922 + 3190 ], "player": [ - 2603 + 2871 ], "previous_rank": [ 34 @@ -41303,10 +46225,10 @@ export default { }, "player_faceit_rank_history_aggregate": { "aggregate": [ - 2009 + 2277 ], "nodes": [ - 2005 + 2273 ], "__typename": [ 63 @@ -41314,7 +46236,7 @@ export default { }, "player_faceit_rank_history_aggregate_bool_exp": { "count": [ - 2008 + 2276 ], "__typename": [ 63 @@ -41322,13 +46244,13 @@ export default { }, "player_faceit_rank_history_aggregate_bool_exp_count": { "arguments": [ - 2026 + 2294 ], "distinct": [ 3 ], "filter": [ - 2014 + 2282 ], "predicate": [ 35 @@ -41339,13 +46261,13 @@ export default { }, "player_faceit_rank_history_aggregate_fields": { "avg": [ - 2012 + 2280 ], "count": [ 34, { "columns": [ - 2026, + 2294, "[player_faceit_rank_history_select_column!]" ], "distinct": [ @@ -41354,31 +46276,31 @@ export default { } ], "max": [ - 2018 + 2286 ], "min": [ - 2020 + 2288 ], "stddev": [ - 2028 + 2296 ], "stddev_pop": [ - 2030 + 2298 ], "stddev_samp": [ - 2032 + 2300 ], "sum": [ - 2036 + 2304 ], "var_pop": [ - 2040 + 2308 ], "var_samp": [ - 2042 + 2310 ], "variance": [ - 2044 + 2312 ], "__typename": [ 63 @@ -41386,37 +46308,37 @@ export default { }, "player_faceit_rank_history_aggregate_order_by": { "avg": [ - 2013 + 2281 ], "count": [ - 1736 + 2004 ], "max": [ - 2019 + 2287 ], "min": [ - 2021 + 2289 ], "stddev": [ - 2029 + 2297 ], "stddev_pop": [ - 2031 + 2299 ], "stddev_samp": [ - 2033 + 2301 ], "sum": [ - 2037 + 2305 ], "var_pop": [ - 2041 + 2309 ], "var_samp": [ - 2043 + 2311 ], "variance": [ - 2045 + 2313 ], "__typename": [ 63 @@ -41424,10 +46346,10 @@ export default { }, "player_faceit_rank_history_arr_rel_insert_input": { "data": [ - 2017 + 2285 ], "on_conflict": [ - 2023 + 2291 ], "__typename": [ 63 @@ -41452,16 +46374,16 @@ export default { }, "player_faceit_rank_history_avg_order_by": { "elo": [ - 1736 + 2004 ], "previous_rank": [ - 1736 + 2004 ], "skill_level": [ - 1736 + 2004 ], "steam_id": [ - 1736 + 2004 ], "__typename": [ 63 @@ -41469,31 +46391,31 @@ export default { }, "player_faceit_rank_history_bool_exp": { "_and": [ - 2014 + 2282 ], "_not": [ - 2014 + 2282 ], "_or": [ - 2014 + 2282 ], "elo": [ 35 ], "id": [ - 3320 + 3588 ], "match": [ - 1587 + 1828 ], "match_id": [ - 3320 + 3588 ], "observed_at": [ - 2923 + 3191 ], "player": [ - 2607 + 2875 ], "previous_rank": [ 35 @@ -41531,19 +46453,19 @@ export default { 34 ], "id": [ - 3319 + 3587 ], "match": [ - 1596 + 1837 ], "match_id": [ - 3319 + 3587 ], "observed_at": [ - 2922 + 3190 ], "player": [ - 2614 + 2882 ], "previous_rank": [ 34 @@ -41563,13 +46485,13 @@ export default { 34 ], "id": [ - 3319 + 3587 ], "match_id": [ - 3319 + 3587 ], "observed_at": [ - 2922 + 3190 ], "previous_rank": [ 34 @@ -41586,25 +46508,25 @@ export default { }, "player_faceit_rank_history_max_order_by": { "elo": [ - 1736 + 2004 ], "id": [ - 1736 + 2004 ], "match_id": [ - 1736 + 2004 ], "observed_at": [ - 1736 + 2004 ], "previous_rank": [ - 1736 + 2004 ], "skill_level": [ - 1736 + 2004 ], "steam_id": [ - 1736 + 2004 ], "__typename": [ 63 @@ -41615,13 +46537,13 @@ export default { 34 ], "id": [ - 3319 + 3587 ], "match_id": [ - 3319 + 3587 ], "observed_at": [ - 2922 + 3190 ], "previous_rank": [ 34 @@ -41638,25 +46560,25 @@ export default { }, "player_faceit_rank_history_min_order_by": { "elo": [ - 1736 + 2004 ], "id": [ - 1736 + 2004 ], "match_id": [ - 1736 + 2004 ], "observed_at": [ - 1736 + 2004 ], "previous_rank": [ - 1736 + 2004 ], "skill_level": [ - 1736 + 2004 ], "steam_id": [ - 1736 + 2004 ], "__typename": [ 63 @@ -41667,7 +46589,7 @@ export default { 34 ], "returning": [ - 2005 + 2273 ], "__typename": [ 63 @@ -41675,13 +46597,13 @@ export default { }, "player_faceit_rank_history_on_conflict": { "constraint": [ - 2015 + 2283 ], "update_columns": [ - 2038 + 2306 ], "where": [ - 2014 + 2282 ], "__typename": [ 63 @@ -41689,31 +46611,31 @@ export default { }, "player_faceit_rank_history_order_by": { "elo": [ - 1736 + 2004 ], "id": [ - 1736 + 2004 ], "match": [ - 1598 + 1839 ], "match_id": [ - 1736 + 2004 ], "observed_at": [ - 1736 + 2004 ], "player": [ - 2616 + 2884 ], "previous_rank": [ - 1736 + 2004 ], "skill_level": [ - 1736 + 2004 ], "steam_id": [ - 1736 + 2004 ], "__typename": [ 63 @@ -41721,7 +46643,7 @@ export default { }, "player_faceit_rank_history_pk_columns_input": { "id": [ - 3319 + 3587 ], "__typename": [ 63 @@ -41733,13 +46655,13 @@ export default { 34 ], "id": [ - 3319 + 3587 ], "match_id": [ - 3319 + 3587 ], "observed_at": [ - 2922 + 3190 ], "previous_rank": [ 34 @@ -41773,16 +46695,16 @@ export default { }, "player_faceit_rank_history_stddev_order_by": { "elo": [ - 1736 + 2004 ], "previous_rank": [ - 1736 + 2004 ], "skill_level": [ - 1736 + 2004 ], "steam_id": [ - 1736 + 2004 ], "__typename": [ 63 @@ -41807,16 +46729,16 @@ export default { }, "player_faceit_rank_history_stddev_pop_order_by": { "elo": [ - 1736 + 2004 ], "previous_rank": [ - 1736 + 2004 ], "skill_level": [ - 1736 + 2004 ], "steam_id": [ - 1736 + 2004 ], "__typename": [ 63 @@ -41841,16 +46763,16 @@ export default { }, "player_faceit_rank_history_stddev_samp_order_by": { "elo": [ - 1736 + 2004 ], "previous_rank": [ - 1736 + 2004 ], "skill_level": [ - 1736 + 2004 ], "steam_id": [ - 1736 + 2004 ], "__typename": [ 63 @@ -41858,7 +46780,7 @@ export default { }, "player_faceit_rank_history_stream_cursor_input": { "initial_value": [ - 2035 + 2303 ], "ordering": [ 216 @@ -41872,13 +46794,13 @@ export default { 34 ], "id": [ - 3319 + 3587 ], "match_id": [ - 3319 + 3587 ], "observed_at": [ - 2922 + 3190 ], "previous_rank": [ 34 @@ -41912,16 +46834,16 @@ export default { }, "player_faceit_rank_history_sum_order_by": { "elo": [ - 1736 + 2004 ], "previous_rank": [ - 1736 + 2004 ], "skill_level": [ - 1736 + 2004 ], "steam_id": [ - 1736 + 2004 ], "__typename": [ 63 @@ -41930,13 +46852,13 @@ export default { "player_faceit_rank_history_update_column": {}, "player_faceit_rank_history_updates": { "_inc": [ - 2016 + 2284 ], "_set": [ - 2027 + 2295 ], "where": [ - 2014 + 2282 ], "__typename": [ 63 @@ -41961,16 +46883,16 @@ export default { }, "player_faceit_rank_history_var_pop_order_by": { "elo": [ - 1736 + 2004 ], "previous_rank": [ - 1736 + 2004 ], "skill_level": [ - 1736 + 2004 ], "steam_id": [ - 1736 + 2004 ], "__typename": [ 63 @@ -41995,16 +46917,16 @@ export default { }, "player_faceit_rank_history_var_samp_order_by": { "elo": [ - 1736 + 2004 ], "previous_rank": [ - 1736 + 2004 ], "skill_level": [ - 1736 + 2004 ], "steam_id": [ - 1736 + 2004 ], "__typename": [ 63 @@ -42029,16 +46951,16 @@ export default { }, "player_faceit_rank_history_variance_order_by": { "elo": [ - 1736 + 2004 ], "previous_rank": [ - 1736 + 2004 ], "skill_level": [ - 1736 + 2004 ], "steam_id": [ - 1736 + 2004 ], "__typename": [ 63 @@ -42052,25 +46974,25 @@ export default { 162 ], "blinded": [ - 2603 + 2871 ], "deleted_at": [ - 2922 + 3190 ], "duration": [ - 1734 + 2002 ], "match": [ - 1578 + 1819 ], "match_id": [ - 3319 + 3587 ], "match_map": [ - 1416 + 1657 ], "match_map_id": [ - 3319 + 3587 ], "round": [ 34 @@ -42079,10 +47001,10 @@ export default { 3 ], "thrown_by": [ - 2603 + 2871 ], "time": [ - 2922 + 3190 ], "__typename": [ 63 @@ -42090,10 +47012,10 @@ export default { }, "player_flashes_aggregate": { "aggregate": [ - 2052 + 2320 ], "nodes": [ - 2046 + 2314 ], "__typename": [ 63 @@ -42101,13 +47023,13 @@ export default { }, "player_flashes_aggregate_bool_exp": { "bool_and": [ - 2049 + 2317 ], "bool_or": [ - 2050 + 2318 ], "count": [ - 2051 + 2319 ], "__typename": [ 63 @@ -42115,13 +47037,13 @@ export default { }, "player_flashes_aggregate_bool_exp_bool_and": { "arguments": [ - 2070 + 2338 ], "distinct": [ 3 ], "filter": [ - 2057 + 2325 ], "predicate": [ 4 @@ -42132,13 +47054,13 @@ export default { }, "player_flashes_aggregate_bool_exp_bool_or": { "arguments": [ - 2071 + 2339 ], "distinct": [ 3 ], "filter": [ - 2057 + 2325 ], "predicate": [ 4 @@ -42149,13 +47071,13 @@ export default { }, "player_flashes_aggregate_bool_exp_count": { "arguments": [ - 2069 + 2337 ], "distinct": [ 3 ], "filter": [ - 2057 + 2325 ], "predicate": [ 35 @@ -42166,13 +47088,13 @@ export default { }, "player_flashes_aggregate_fields": { "avg": [ - 2055 + 2323 ], "count": [ 34, { "columns": [ - 2069, + 2337, "[player_flashes_select_column!]" ], "distinct": [ @@ -42181,31 +47103,31 @@ export default { } ], "max": [ - 2061 + 2329 ], "min": [ - 2063 + 2331 ], "stddev": [ - 2073 + 2341 ], "stddev_pop": [ - 2075 + 2343 ], "stddev_samp": [ - 2077 + 2345 ], "sum": [ - 2081 + 2349 ], "var_pop": [ - 2085 + 2353 ], "var_samp": [ - 2087 + 2355 ], "variance": [ - 2089 + 2357 ], "__typename": [ 63 @@ -42213,37 +47135,37 @@ export default { }, "player_flashes_aggregate_order_by": { "avg": [ - 2056 + 2324 ], "count": [ - 1736 + 2004 ], "max": [ - 2062 + 2330 ], "min": [ - 2064 + 2332 ], "stddev": [ - 2074 + 2342 ], "stddev_pop": [ - 2076 + 2344 ], "stddev_samp": [ - 2078 + 2346 ], "sum": [ - 2082 + 2350 ], "var_pop": [ - 2086 + 2354 ], "var_samp": [ - 2088 + 2356 ], "variance": [ - 2090 + 2358 ], "__typename": [ 63 @@ -42251,10 +47173,10 @@ export default { }, "player_flashes_arr_rel_insert_input": { "data": [ - 2060 + 2328 ], "on_conflict": [ - 2066 + 2334 ], "__typename": [ 63 @@ -42279,16 +47201,16 @@ export default { }, "player_flashes_avg_order_by": { "attacked_steam_id": [ - 1736 + 2004 ], "attacker_steam_id": [ - 1736 + 2004 ], "duration": [ - 1736 + 2004 ], "round": [ - 1736 + 2004 ], "__typename": [ 63 @@ -42296,13 +47218,13 @@ export default { }, "player_flashes_bool_exp": { "_and": [ - 2057 + 2325 ], "_not": [ - 2057 + 2325 ], "_or": [ - 2057 + 2325 ], "attacked_steam_id": [ 163 @@ -42311,25 +47233,25 @@ export default { 163 ], "blinded": [ - 2607 + 2875 ], "deleted_at": [ - 2923 + 3191 ], "duration": [ - 1735 + 2003 ], "match": [ - 1587 + 1828 ], "match_id": [ - 3320 + 3588 ], "match_map": [ - 1425 + 1666 ], "match_map_id": [ - 3320 + 3588 ], "round": [ 35 @@ -42338,10 +47260,10 @@ export default { 4 ], "thrown_by": [ - 2607 + 2875 ], "time": [ - 2923 + 3191 ], "__typename": [ 63 @@ -42356,7 +47278,7 @@ export default { 162 ], "duration": [ - 1734 + 2002 ], "round": [ 34 @@ -42373,25 +47295,25 @@ export default { 162 ], "blinded": [ - 2614 + 2882 ], "deleted_at": [ - 2922 + 3190 ], "duration": [ - 1734 + 2002 ], "match": [ - 1596 + 1837 ], "match_id": [ - 3319 + 3587 ], "match_map": [ - 1434 + 1675 ], "match_map_id": [ - 3319 + 3587 ], "round": [ 34 @@ -42400,10 +47322,10 @@ export default { 3 ], "thrown_by": [ - 2614 + 2882 ], "time": [ - 2922 + 3190 ], "__typename": [ 63 @@ -42417,22 +47339,22 @@ export default { 162 ], "deleted_at": [ - 2922 + 3190 ], "duration": [ - 1734 + 2002 ], "match_id": [ - 3319 + 3587 ], "match_map_id": [ - 3319 + 3587 ], "round": [ 34 ], "time": [ - 2922 + 3190 ], "__typename": [ 63 @@ -42440,28 +47362,28 @@ export default { }, "player_flashes_max_order_by": { "attacked_steam_id": [ - 1736 + 2004 ], "attacker_steam_id": [ - 1736 + 2004 ], "deleted_at": [ - 1736 + 2004 ], "duration": [ - 1736 + 2004 ], "match_id": [ - 1736 + 2004 ], "match_map_id": [ - 1736 + 2004 ], "round": [ - 1736 + 2004 ], "time": [ - 1736 + 2004 ], "__typename": [ 63 @@ -42475,22 +47397,22 @@ export default { 162 ], "deleted_at": [ - 2922 + 3190 ], "duration": [ - 1734 + 2002 ], "match_id": [ - 3319 + 3587 ], "match_map_id": [ - 3319 + 3587 ], "round": [ 34 ], "time": [ - 2922 + 3190 ], "__typename": [ 63 @@ -42498,28 +47420,28 @@ export default { }, "player_flashes_min_order_by": { "attacked_steam_id": [ - 1736 + 2004 ], "attacker_steam_id": [ - 1736 + 2004 ], "deleted_at": [ - 1736 + 2004 ], "duration": [ - 1736 + 2004 ], "match_id": [ - 1736 + 2004 ], "match_map_id": [ - 1736 + 2004 ], "round": [ - 1736 + 2004 ], "time": [ - 1736 + 2004 ], "__typename": [ 63 @@ -42530,7 +47452,7 @@ export default { 34 ], "returning": [ - 2046 + 2314 ], "__typename": [ 63 @@ -42538,13 +47460,13 @@ export default { }, "player_flashes_on_conflict": { "constraint": [ - 2058 + 2326 ], "update_columns": [ - 2083 + 2351 ], "where": [ - 2057 + 2325 ], "__typename": [ 63 @@ -42552,43 +47474,43 @@ export default { }, "player_flashes_order_by": { "attacked_steam_id": [ - 1736 + 2004 ], "attacker_steam_id": [ - 1736 + 2004 ], "blinded": [ - 2616 + 2884 ], "deleted_at": [ - 1736 + 2004 ], "duration": [ - 1736 + 2004 ], "match": [ - 1598 + 1839 ], "match_id": [ - 1736 + 2004 ], "match_map": [ - 1436 + 1677 ], "match_map_id": [ - 1736 + 2004 ], "round": [ - 1736 + 2004 ], "team_flash": [ - 1736 + 2004 ], "thrown_by": [ - 2616 + 2884 ], "time": [ - 1736 + 2004 ], "__typename": [ 63 @@ -42602,10 +47524,10 @@ export default { 162 ], "match_map_id": [ - 3319 + 3587 ], "time": [ - 2922 + 3190 ], "__typename": [ 63 @@ -42622,16 +47544,16 @@ export default { 162 ], "deleted_at": [ - 2922 + 3190 ], "duration": [ - 1734 + 2002 ], "match_id": [ - 3319 + 3587 ], "match_map_id": [ - 3319 + 3587 ], "round": [ 34 @@ -42640,7 +47562,7 @@ export default { 3 ], "time": [ - 2922 + 3190 ], "__typename": [ 63 @@ -42665,16 +47587,16 @@ export default { }, "player_flashes_stddev_order_by": { "attacked_steam_id": [ - 1736 + 2004 ], "attacker_steam_id": [ - 1736 + 2004 ], "duration": [ - 1736 + 2004 ], "round": [ - 1736 + 2004 ], "__typename": [ 63 @@ -42699,16 +47621,16 @@ export default { }, "player_flashes_stddev_pop_order_by": { "attacked_steam_id": [ - 1736 + 2004 ], "attacker_steam_id": [ - 1736 + 2004 ], "duration": [ - 1736 + 2004 ], "round": [ - 1736 + 2004 ], "__typename": [ 63 @@ -42733,16 +47655,16 @@ export default { }, "player_flashes_stddev_samp_order_by": { "attacked_steam_id": [ - 1736 + 2004 ], "attacker_steam_id": [ - 1736 + 2004 ], "duration": [ - 1736 + 2004 ], "round": [ - 1736 + 2004 ], "__typename": [ 63 @@ -42750,7 +47672,7 @@ export default { }, "player_flashes_stream_cursor_input": { "initial_value": [ - 2080 + 2348 ], "ordering": [ 216 @@ -42767,16 +47689,16 @@ export default { 162 ], "deleted_at": [ - 2922 + 3190 ], "duration": [ - 1734 + 2002 ], "match_id": [ - 3319 + 3587 ], "match_map_id": [ - 3319 + 3587 ], "round": [ 34 @@ -42785,7 +47707,7 @@ export default { 3 ], "time": [ - 2922 + 3190 ], "__typename": [ 63 @@ -42799,7 +47721,7 @@ export default { 162 ], "duration": [ - 1734 + 2002 ], "round": [ 34 @@ -42810,16 +47732,16 @@ export default { }, "player_flashes_sum_order_by": { "attacked_steam_id": [ - 1736 + 2004 ], "attacker_steam_id": [ - 1736 + 2004 ], "duration": [ - 1736 + 2004 ], "round": [ - 1736 + 2004 ], "__typename": [ 63 @@ -42828,13 +47750,13 @@ export default { "player_flashes_update_column": {}, "player_flashes_updates": { "_inc": [ - 2059 + 2327 ], "_set": [ - 2072 + 2340 ], "where": [ - 2057 + 2325 ], "__typename": [ 63 @@ -42859,16 +47781,16 @@ export default { }, "player_flashes_var_pop_order_by": { "attacked_steam_id": [ - 1736 + 2004 ], "attacker_steam_id": [ - 1736 + 2004 ], "duration": [ - 1736 + 2004 ], "round": [ - 1736 + 2004 ], "__typename": [ 63 @@ -42893,16 +47815,16 @@ export default { }, "player_flashes_var_samp_order_by": { "attacked_steam_id": [ - 1736 + 2004 ], "attacker_steam_id": [ - 1736 + 2004 ], "duration": [ - 1736 + 2004 ], "round": [ - 1736 + 2004 ], "__typename": [ 63 @@ -42927,16 +47849,16 @@ export default { }, "player_flashes_variance_order_by": { "attacked_steam_id": [ - 1736 + 2004 ], "attacker_steam_id": [ - 1736 + 2004 ], "duration": [ - 1736 + 2004 ], "round": [ - 1736 + 2004 ], "__typename": [ 63 @@ -42953,7 +47875,7 @@ export default { 63 ], "attacked_player": [ - 2603 + 2871 ], "attacked_steam_id": [ 162 @@ -42977,7 +47899,7 @@ export default { 3 ], "deleted_at": [ - 2922 + 3190 ], "headshot": [ 3 @@ -42992,22 +47914,22 @@ export default { 3 ], "match": [ - 1578 + 1819 ], "match_id": [ - 3319 + 3587 ], "match_map": [ - 1416 + 1657 ], "match_map_id": [ - 3319 + 3587 ], "no_scope": [ 3 ], "player": [ - 2603 + 2871 ], "round": [ 34 @@ -43022,7 +47944,7 @@ export default { 3 ], "time": [ - 2922 + 3190 ], "with": [ 63 @@ -43033,10 +47955,10 @@ export default { }, "player_kills_aggregate": { "aggregate": [ - 2097 + 2365 ], "nodes": [ - 2091 + 2359 ], "__typename": [ 63 @@ -43044,13 +47966,13 @@ export default { }, "player_kills_aggregate_bool_exp": { "bool_and": [ - 2094 + 2362 ], "bool_or": [ - 2095 + 2363 ], "count": [ - 2096 + 2364 ], "__typename": [ 63 @@ -43058,13 +47980,13 @@ export default { }, "player_kills_aggregate_bool_exp_bool_and": { "arguments": [ - 2156 + 2424 ], "distinct": [ 3 ], "filter": [ - 2102 + 2370 ], "predicate": [ 4 @@ -43075,13 +47997,13 @@ export default { }, "player_kills_aggregate_bool_exp_bool_or": { "arguments": [ - 2157 + 2425 ], "distinct": [ 3 ], "filter": [ - 2102 + 2370 ], "predicate": [ 4 @@ -43092,13 +48014,13 @@ export default { }, "player_kills_aggregate_bool_exp_count": { "arguments": [ - 2155 + 2423 ], "distinct": [ 3 ], "filter": [ - 2102 + 2370 ], "predicate": [ 35 @@ -43109,13 +48031,13 @@ export default { }, "player_kills_aggregate_fields": { "avg": [ - 2100 + 2368 ], "count": [ 34, { "columns": [ - 2155, + 2423, "[player_kills_select_column!]" ], "distinct": [ @@ -43124,31 +48046,31 @@ export default { } ], "max": [ - 2147 + 2415 ], "min": [ - 2149 + 2417 ], "stddev": [ - 2159 + 2427 ], "stddev_pop": [ - 2161 + 2429 ], "stddev_samp": [ - 2163 + 2431 ], "sum": [ - 2167 + 2435 ], "var_pop": [ - 2171 + 2439 ], "var_samp": [ - 2173 + 2441 ], "variance": [ - 2175 + 2443 ], "__typename": [ 63 @@ -43156,37 +48078,37 @@ export default { }, "player_kills_aggregate_order_by": { "avg": [ - 2101 + 2369 ], "count": [ - 1736 + 2004 ], "max": [ - 2148 + 2416 ], "min": [ - 2150 + 2418 ], "stddev": [ - 2160 + 2428 ], "stddev_pop": [ - 2162 + 2430 ], "stddev_samp": [ - 2164 + 2432 ], "sum": [ - 2168 + 2436 ], "var_pop": [ - 2172 + 2440 ], "var_samp": [ - 2174 + 2442 ], "variance": [ - 2176 + 2444 ], "__typename": [ 63 @@ -43194,10 +48116,10 @@ export default { }, "player_kills_arr_rel_insert_input": { "data": [ - 2146 + 2414 ], "on_conflict": [ - 2152 + 2420 ], "__typename": [ 63 @@ -43219,13 +48141,13 @@ export default { }, "player_kills_avg_order_by": { "attacked_steam_id": [ - 1736 + 2004 ], "attacker_steam_id": [ - 1736 + 2004 ], "round": [ - 1736 + 2004 ], "__typename": [ 63 @@ -43233,13 +48155,13 @@ export default { }, "player_kills_bool_exp": { "_and": [ - 2102 + 2370 ], "_not": [ - 2102 + 2370 ], "_or": [ - 2102 + 2370 ], "assisted": [ 4 @@ -43251,7 +48173,7 @@ export default { 65 ], "attacked_player": [ - 2607 + 2875 ], "attacked_steam_id": [ 163 @@ -43275,7 +48197,7 @@ export default { 4 ], "deleted_at": [ - 2923 + 3191 ], "headshot": [ 4 @@ -43290,22 +48212,22 @@ export default { 4 ], "match": [ - 1587 + 1828 ], "match_id": [ - 3320 + 3588 ], "match_map": [ - 1425 + 1666 ], "match_map_id": [ - 3320 + 3588 ], "no_scope": [ 4 ], "player": [ - 2607 + 2875 ], "round": [ 35 @@ -43320,7 +48242,7 @@ export default { 4 ], "time": [ - 2923 + 3191 ], "with": [ 65 @@ -43334,7 +48256,7 @@ export default { 162 ], "player": [ - 2603 + 2871 ], "player_steam_id": [ 162 @@ -43348,10 +48270,10 @@ export default { }, "player_kills_by_weapon_aggregate": { "aggregate": [ - 2107 + 2375 ], "nodes": [ - 2103 + 2371 ], "__typename": [ 63 @@ -43359,7 +48281,7 @@ export default { }, "player_kills_by_weapon_aggregate_bool_exp": { "count": [ - 2106 + 2374 ], "__typename": [ 63 @@ -43367,13 +48289,13 @@ export default { }, "player_kills_by_weapon_aggregate_bool_exp_count": { "arguments": [ - 2124 + 2392 ], "distinct": [ 3 ], "filter": [ - 2112 + 2380 ], "predicate": [ 35 @@ -43384,13 +48306,13 @@ export default { }, "player_kills_by_weapon_aggregate_fields": { "avg": [ - 2110 + 2378 ], "count": [ 34, { "columns": [ - 2124, + 2392, "[player_kills_by_weapon_select_column!]" ], "distinct": [ @@ -43399,31 +48321,31 @@ export default { } ], "max": [ - 2116 + 2384 ], "min": [ - 2118 + 2386 ], "stddev": [ - 2126 + 2394 ], "stddev_pop": [ - 2128 + 2396 ], "stddev_samp": [ - 2130 + 2398 ], "sum": [ - 2134 + 2402 ], "var_pop": [ - 2138 + 2406 ], "var_samp": [ - 2140 + 2408 ], "variance": [ - 2142 + 2410 ], "__typename": [ 63 @@ -43431,37 +48353,37 @@ export default { }, "player_kills_by_weapon_aggregate_order_by": { "avg": [ - 2111 + 2379 ], "count": [ - 1736 + 2004 ], "max": [ - 2117 + 2385 ], "min": [ - 2119 + 2387 ], "stddev": [ - 2127 + 2395 ], "stddev_pop": [ - 2129 + 2397 ], "stddev_samp": [ - 2131 + 2399 ], "sum": [ - 2135 + 2403 ], "var_pop": [ - 2139 + 2407 ], "var_samp": [ - 2141 + 2409 ], "variance": [ - 2143 + 2411 ], "__typename": [ 63 @@ -43469,10 +48391,10 @@ export default { }, "player_kills_by_weapon_arr_rel_insert_input": { "data": [ - 2115 + 2383 ], "on_conflict": [ - 2121 + 2389 ], "__typename": [ 63 @@ -43491,10 +48413,10 @@ export default { }, "player_kills_by_weapon_avg_order_by": { "kill_count": [ - 1736 + 2004 ], "player_steam_id": [ - 1736 + 2004 ], "__typename": [ 63 @@ -43502,19 +48424,19 @@ export default { }, "player_kills_by_weapon_bool_exp": { "_and": [ - 2112 + 2380 ], "_not": [ - 2112 + 2380 ], "_or": [ - 2112 + 2380 ], "kill_count": [ 163 ], "player": [ - 2607 + 2875 ], "player_steam_id": [ 163 @@ -43543,7 +48465,7 @@ export default { 162 ], "player": [ - 2614 + 2882 ], "player_steam_id": [ 162 @@ -43571,13 +48493,13 @@ export default { }, "player_kills_by_weapon_max_order_by": { "kill_count": [ - 1736 + 2004 ], "player_steam_id": [ - 1736 + 2004 ], "with": [ - 1736 + 2004 ], "__typename": [ 63 @@ -43599,13 +48521,13 @@ export default { }, "player_kills_by_weapon_min_order_by": { "kill_count": [ - 1736 + 2004 ], "player_steam_id": [ - 1736 + 2004 ], "with": [ - 1736 + 2004 ], "__typename": [ 63 @@ -43616,7 +48538,7 @@ export default { 34 ], "returning": [ - 2103 + 2371 ], "__typename": [ 63 @@ -43624,13 +48546,13 @@ export default { }, "player_kills_by_weapon_on_conflict": { "constraint": [ - 2113 + 2381 ], "update_columns": [ - 2136 + 2404 ], "where": [ - 2112 + 2380 ], "__typename": [ 63 @@ -43638,16 +48560,16 @@ export default { }, "player_kills_by_weapon_order_by": { "kill_count": [ - 1736 + 2004 ], "player": [ - 2616 + 2884 ], "player_steam_id": [ - 1736 + 2004 ], "with": [ - 1736 + 2004 ], "__typename": [ 63 @@ -43692,10 +48614,10 @@ export default { }, "player_kills_by_weapon_stddev_order_by": { "kill_count": [ - 1736 + 2004 ], "player_steam_id": [ - 1736 + 2004 ], "__typename": [ 63 @@ -43714,10 +48636,10 @@ export default { }, "player_kills_by_weapon_stddev_pop_order_by": { "kill_count": [ - 1736 + 2004 ], "player_steam_id": [ - 1736 + 2004 ], "__typename": [ 63 @@ -43736,10 +48658,10 @@ export default { }, "player_kills_by_weapon_stddev_samp_order_by": { "kill_count": [ - 1736 + 2004 ], "player_steam_id": [ - 1736 + 2004 ], "__typename": [ 63 @@ -43747,7 +48669,7 @@ export default { }, "player_kills_by_weapon_stream_cursor_input": { "initial_value": [ - 2133 + 2401 ], "ordering": [ 216 @@ -43783,10 +48705,10 @@ export default { }, "player_kills_by_weapon_sum_order_by": { "kill_count": [ - 1736 + 2004 ], "player_steam_id": [ - 1736 + 2004 ], "__typename": [ 63 @@ -43795,13 +48717,13 @@ export default { "player_kills_by_weapon_update_column": {}, "player_kills_by_weapon_updates": { "_inc": [ - 2114 + 2382 ], "_set": [ - 2125 + 2393 ], "where": [ - 2112 + 2380 ], "__typename": [ 63 @@ -43820,10 +48742,10 @@ export default { }, "player_kills_by_weapon_var_pop_order_by": { "kill_count": [ - 1736 + 2004 ], "player_steam_id": [ - 1736 + 2004 ], "__typename": [ 63 @@ -43842,10 +48764,10 @@ export default { }, "player_kills_by_weapon_var_samp_order_by": { "kill_count": [ - 1736 + 2004 ], "player_steam_id": [ - 1736 + 2004 ], "__typename": [ 63 @@ -43864,10 +48786,10 @@ export default { }, "player_kills_by_weapon_variance_order_by": { "kill_count": [ - 1736 + 2004 ], "player_steam_id": [ - 1736 + 2004 ], "__typename": [ 63 @@ -43899,7 +48821,7 @@ export default { 63 ], "attacked_player": [ - 2614 + 2882 ], "attacked_steam_id": [ 162 @@ -43923,7 +48845,7 @@ export default { 3 ], "deleted_at": [ - 2922 + 3190 ], "headshot": [ 3 @@ -43935,22 +48857,22 @@ export default { 3 ], "match": [ - 1596 + 1837 ], "match_id": [ - 3319 + 3587 ], "match_map": [ - 1434 + 1675 ], "match_map_id": [ - 3319 + 3587 ], "no_scope": [ 3 ], "player": [ - 2614 + 2882 ], "round": [ 34 @@ -43962,7 +48884,7 @@ export default { 3 ], "time": [ - 2922 + 3190 ], "with": [ 63 @@ -43997,22 +48919,22 @@ export default { 63 ], "deleted_at": [ - 2922 + 3190 ], "hitgroup": [ 63 ], "match_id": [ - 3319 + 3587 ], "match_map_id": [ - 3319 + 3587 ], "round": [ 34 ], "time": [ - 2922 + 3190 ], "with": [ 63 @@ -44023,49 +48945,49 @@ export default { }, "player_kills_max_order_by": { "attacked_location": [ - 1736 + 2004 ], "attacked_location_coordinates": [ - 1736 + 2004 ], "attacked_steam_id": [ - 1736 + 2004 ], "attacked_team": [ - 1736 + 2004 ], "attacker_location": [ - 1736 + 2004 ], "attacker_location_coordinates": [ - 1736 + 2004 ], "attacker_steam_id": [ - 1736 + 2004 ], "attacker_team": [ - 1736 + 2004 ], "deleted_at": [ - 1736 + 2004 ], "hitgroup": [ - 1736 + 2004 ], "match_id": [ - 1736 + 2004 ], "match_map_id": [ - 1736 + 2004 ], "round": [ - 1736 + 2004 ], "time": [ - 1736 + 2004 ], "with": [ - 1736 + 2004 ], "__typename": [ 63 @@ -44097,22 +49019,22 @@ export default { 63 ], "deleted_at": [ - 2922 + 3190 ], "hitgroup": [ 63 ], "match_id": [ - 3319 + 3587 ], "match_map_id": [ - 3319 + 3587 ], "round": [ 34 ], "time": [ - 2922 + 3190 ], "with": [ 63 @@ -44123,49 +49045,49 @@ export default { }, "player_kills_min_order_by": { "attacked_location": [ - 1736 + 2004 ], "attacked_location_coordinates": [ - 1736 + 2004 ], "attacked_steam_id": [ - 1736 + 2004 ], "attacked_team": [ - 1736 + 2004 ], "attacker_location": [ - 1736 + 2004 ], "attacker_location_coordinates": [ - 1736 + 2004 ], "attacker_steam_id": [ - 1736 + 2004 ], "attacker_team": [ - 1736 + 2004 ], "deleted_at": [ - 1736 + 2004 ], "hitgroup": [ - 1736 + 2004 ], "match_id": [ - 1736 + 2004 ], "match_map_id": [ - 1736 + 2004 ], "round": [ - 1736 + 2004 ], "time": [ - 1736 + 2004 ], "with": [ - 1736 + 2004 ], "__typename": [ 63 @@ -44176,7 +49098,7 @@ export default { 34 ], "returning": [ - 2091 + 2359 ], "__typename": [ 63 @@ -44184,13 +49106,13 @@ export default { }, "player_kills_on_conflict": { "constraint": [ - 2144 + 2412 ], "update_columns": [ - 2169 + 2437 ], "where": [ - 2102 + 2370 ], "__typename": [ 63 @@ -44198,88 +49120,88 @@ export default { }, "player_kills_order_by": { "assisted": [ - 1736 + 2004 ], "attacked_location": [ - 1736 + 2004 ], "attacked_location_coordinates": [ - 1736 + 2004 ], "attacked_player": [ - 2616 + 2884 ], "attacked_steam_id": [ - 1736 + 2004 ], "attacked_team": [ - 1736 + 2004 ], "attacker_location": [ - 1736 + 2004 ], "attacker_location_coordinates": [ - 1736 + 2004 ], "attacker_steam_id": [ - 1736 + 2004 ], "attacker_team": [ - 1736 + 2004 ], "blinded": [ - 1736 + 2004 ], "deleted_at": [ - 1736 + 2004 ], "headshot": [ - 1736 + 2004 ], "hitgroup": [ - 1736 + 2004 ], "in_air": [ - 1736 + 2004 ], "is_suicide": [ - 1736 + 2004 ], "match": [ - 1598 + 1839 ], "match_id": [ - 1736 + 2004 ], "match_map": [ - 1436 + 1677 ], "match_map_id": [ - 1736 + 2004 ], "no_scope": [ - 1736 + 2004 ], "player": [ - 2616 + 2884 ], "round": [ - 1736 + 2004 ], "team_kill": [ - 1736 + 2004 ], "thru_smoke": [ - 1736 + 2004 ], "thru_wall": [ - 1736 + 2004 ], "time": [ - 1736 + 2004 ], "with": [ - 1736 + 2004 ], "__typename": [ 63 @@ -44293,10 +49215,10 @@ export default { 162 ], "match_map_id": [ - 3319 + 3587 ], "time": [ - 2922 + 3190 ], "__typename": [ 63 @@ -44337,7 +49259,7 @@ export default { 3 ], "deleted_at": [ - 2922 + 3190 ], "headshot": [ 3 @@ -44349,10 +49271,10 @@ export default { 3 ], "match_id": [ - 3319 + 3587 ], "match_map_id": [ - 3319 + 3587 ], "no_scope": [ 3 @@ -44367,7 +49289,7 @@ export default { 3 ], "time": [ - 2922 + 3190 ], "with": [ 63 @@ -44392,13 +49314,13 @@ export default { }, "player_kills_stddev_order_by": { "attacked_steam_id": [ - 1736 + 2004 ], "attacker_steam_id": [ - 1736 + 2004 ], "round": [ - 1736 + 2004 ], "__typename": [ 63 @@ -44420,13 +49342,13 @@ export default { }, "player_kills_stddev_pop_order_by": { "attacked_steam_id": [ - 1736 + 2004 ], "attacker_steam_id": [ - 1736 + 2004 ], "round": [ - 1736 + 2004 ], "__typename": [ 63 @@ -44448,13 +49370,13 @@ export default { }, "player_kills_stddev_samp_order_by": { "attacked_steam_id": [ - 1736 + 2004 ], "attacker_steam_id": [ - 1736 + 2004 ], "round": [ - 1736 + 2004 ], "__typename": [ 63 @@ -44462,7 +49384,7 @@ export default { }, "player_kills_stream_cursor_input": { "initial_value": [ - 2166 + 2434 ], "ordering": [ 216 @@ -44503,7 +49425,7 @@ export default { 3 ], "deleted_at": [ - 2922 + 3190 ], "headshot": [ 3 @@ -44515,10 +49437,10 @@ export default { 3 ], "match_id": [ - 3319 + 3587 ], "match_map_id": [ - 3319 + 3587 ], "no_scope": [ 3 @@ -44533,7 +49455,7 @@ export default { 3 ], "time": [ - 2922 + 3190 ], "with": [ 63 @@ -44558,13 +49480,13 @@ export default { }, "player_kills_sum_order_by": { "attacked_steam_id": [ - 1736 + 2004 ], "attacker_steam_id": [ - 1736 + 2004 ], "round": [ - 1736 + 2004 ], "__typename": [ 63 @@ -44573,13 +49495,13 @@ export default { "player_kills_update_column": {}, "player_kills_updates": { "_inc": [ - 2145 + 2413 ], "_set": [ - 2158 + 2426 ], "where": [ - 2102 + 2370 ], "__typename": [ 63 @@ -44601,13 +49523,13 @@ export default { }, "player_kills_var_pop_order_by": { "attacked_steam_id": [ - 1736 + 2004 ], "attacker_steam_id": [ - 1736 + 2004 ], "round": [ - 1736 + 2004 ], "__typename": [ 63 @@ -44629,13 +49551,13 @@ export default { }, "player_kills_var_samp_order_by": { "attacked_steam_id": [ - 1736 + 2004 ], "attacker_steam_id": [ - 1736 + 2004 ], "round": [ - 1736 + 2004 ], "__typename": [ 63 @@ -44657,13 +49579,13 @@ export default { }, "player_kills_variance_order_by": { "attacked_steam_id": [ - 1736 + 2004 ], "attacker_steam_id": [ - 1736 + 2004 ], "round": [ - 1736 + 2004 ], "__typename": [ 63 @@ -44680,7 +49602,7 @@ export default { 34 ], "value": [ - 795 + 1036 ], "__typename": [ 63 @@ -44688,10 +49610,10 @@ export default { }, "player_leaderboard_rank_aggregate": { "aggregate": [ - 2179 + 2447 ], "nodes": [ - 2177 + 2445 ], "__typename": [ 63 @@ -44699,13 +49621,13 @@ export default { }, "player_leaderboard_rank_aggregate_fields": { "avg": [ - 2180 + 2448 ], "count": [ 34, { "columns": [ - 2188, + 2456, "[player_leaderboard_rank_select_column!]" ], "distinct": [ @@ -44714,31 +49636,31 @@ export default { } ], "max": [ - 2184 + 2452 ], "min": [ - 2185 + 2453 ], "stddev": [ - 2190 + 2458 ], "stddev_pop": [ - 2191 + 2459 ], "stddev_samp": [ - 2192 + 2460 ], "sum": [ - 2195 + 2463 ], "var_pop": [ - 2197 + 2465 ], "var_samp": [ - 2198 + 2466 ], "variance": [ - 2199 + 2467 ], "__typename": [ 63 @@ -44760,13 +49682,13 @@ export default { }, "player_leaderboard_rank_bool_exp": { "_and": [ - 2181 + 2449 ], "_not": [ - 2181 + 2449 ], "_or": [ - 2181 + 2449 ], "player_steam_id": [ 65 @@ -44778,7 +49700,7 @@ export default { 35 ], "value": [ - 796 + 1037 ], "__typename": [ 63 @@ -44792,7 +49714,7 @@ export default { 34 ], "value": [ - 795 + 1036 ], "__typename": [ 63 @@ -44809,7 +49731,7 @@ export default { 34 ], "value": [ - 795 + 1036 ], "__typename": [ 63 @@ -44826,7 +49748,7 @@ export default { 34 ], "value": [ - 795 + 1036 ], "__typename": [ 63 @@ -44843,7 +49765,7 @@ export default { 34 ], "value": [ - 795 + 1036 ], "__typename": [ 63 @@ -44854,7 +49776,7 @@ export default { 34 ], "returning": [ - 2177 + 2445 ], "__typename": [ 63 @@ -44862,16 +49784,16 @@ export default { }, "player_leaderboard_rank_order_by": { "player_steam_id": [ - 1736 + 2004 ], "rank": [ - 1736 + 2004 ], "total": [ - 1736 + 2004 ], "value": [ - 1736 + 2004 ], "__typename": [ 63 @@ -44889,7 +49811,7 @@ export default { 34 ], "value": [ - 795 + 1036 ], "__typename": [ 63 @@ -44939,7 +49861,7 @@ export default { }, "player_leaderboard_rank_stream_cursor_input": { "initial_value": [ - 2194 + 2462 ], "ordering": [ 216 @@ -44959,7 +49881,7 @@ export default { 34 ], "value": [ - 795 + 1036 ], "__typename": [ 63 @@ -44973,7 +49895,7 @@ export default { 34 ], "value": [ - 795 + 1036 ], "__typename": [ 63 @@ -44981,13 +49903,13 @@ export default { }, "player_leaderboard_rank_updates": { "_inc": [ - 2182 + 2450 ], "_set": [ - 2189 + 2457 ], "where": [ - 2181 + 2449 ], "__typename": [ 63 @@ -45055,7 +49977,7 @@ export default { 34 ], "crosshair_angle_sum_deg": [ - 1734 + 2002 ], "damage": [ 34 @@ -45097,7 +50019,7 @@ export default { 34 ], "flash_duration_sum": [ - 1734 + 2002 ], "flashes_thrown": [ 34 @@ -45151,16 +50073,16 @@ export default { 34 ], "match": [ - 1578 + 1819 ], "match_id": [ - 3319 + 3587 ], "match_map": [ - 1416 + 1657 ], "match_map_id": [ - 3319 + 3587 ], "molotov_damage": [ 34 @@ -45175,7 +50097,7 @@ export default { 34 ], "player": [ - 2603 + 2871 ], "rounds_ct": [ 34 @@ -45223,7 +50145,7 @@ export default { 34 ], "time_to_damage_sum_s": [ - 1734 + 2002 ], "total_engagement_frames": [ 34 @@ -45253,7 +50175,7 @@ export default { 34 ], "updated_at": [ - 2922 + 3190 ], "util_on_death_count": [ 34 @@ -45273,10 +50195,10 @@ export default { }, "player_match_map_stats_aggregate": { "aggregate": [ - 2204 + 2472 ], "nodes": [ - 2200 + 2468 ], "__typename": [ 63 @@ -45284,7 +50206,7 @@ export default { }, "player_match_map_stats_aggregate_bool_exp": { "count": [ - 2203 + 2471 ], "__typename": [ 63 @@ -45292,13 +50214,13 @@ export default { }, "player_match_map_stats_aggregate_bool_exp_count": { "arguments": [ - 2221 + 2489 ], "distinct": [ 3 ], "filter": [ - 2209 + 2477 ], "predicate": [ 35 @@ -45309,13 +50231,13 @@ export default { }, "player_match_map_stats_aggregate_fields": { "avg": [ - 2207 + 2475 ], "count": [ 34, { "columns": [ - 2221, + 2489, "[player_match_map_stats_select_column!]" ], "distinct": [ @@ -45324,31 +50246,31 @@ export default { } ], "max": [ - 2213 + 2481 ], "min": [ - 2215 + 2483 ], "stddev": [ - 2223 + 2491 ], "stddev_pop": [ - 2225 + 2493 ], "stddev_samp": [ - 2227 + 2495 ], "sum": [ - 2231 + 2499 ], "var_pop": [ - 2235 + 2503 ], "var_samp": [ - 2237 + 2505 ], "variance": [ - 2239 + 2507 ], "__typename": [ 63 @@ -45356,37 +50278,37 @@ export default { }, "player_match_map_stats_aggregate_order_by": { "avg": [ - 2208 + 2476 ], "count": [ - 1736 + 2004 ], "max": [ - 2214 + 2482 ], "min": [ - 2216 + 2484 ], "stddev": [ - 2224 + 2492 ], "stddev_pop": [ - 2226 + 2494 ], "stddev_samp": [ - 2228 + 2496 ], "sum": [ - 2232 + 2500 ], "var_pop": [ - 2236 + 2504 ], "var_samp": [ - 2238 + 2506 ], "variance": [ - 2240 + 2508 ], "__typename": [ 63 @@ -45394,10 +50316,10 @@ export default { }, "player_match_map_stats_arr_rel_insert_input": { "data": [ - 2212 + 2480 ], "on_conflict": [ - 2218 + 2486 ], "__typename": [ 63 @@ -45623,217 +50545,217 @@ export default { }, "player_match_map_stats_avg_order_by": { "assists": [ - 1736 + 2004 ], "assists_ct": [ - 1736 + 2004 ], "assists_t": [ - 1736 + 2004 ], "counter_strafe_eligible_shots": [ - 1736 + 2004 ], "counter_strafed_shots": [ - 1736 + 2004 ], "crosshair_angle_count": [ - 1736 + 2004 ], "crosshair_angle_sum_deg": [ - 1736 + 2004 ], "damage": [ - 1736 + 2004 ], "damage_ct": [ - 1736 + 2004 ], "damage_t": [ - 1736 + 2004 ], "deaths": [ - 1736 + 2004 ], "deaths_ct": [ - 1736 + 2004 ], "deaths_t": [ - 1736 + 2004 ], "decoy_throws": [ - 1736 + 2004 ], "enemies_flashed": [ - 1736 + 2004 ], "first_bullet_hits": [ - 1736 + 2004 ], "first_bullet_shots": [ - 1736 + 2004 ], "five_kill_rounds": [ - 1736 + 2004 ], "flash_assists": [ - 1736 + 2004 ], "flash_duration_count": [ - 1736 + 2004 ], "flash_duration_sum": [ - 1736 + 2004 ], "flashes_thrown": [ - 1736 + 2004 ], "four_kill_rounds": [ - 1736 + 2004 ], "he_damage": [ - 1736 + 2004 ], "he_team_damage": [ - 1736 + 2004 ], "he_throws": [ - 1736 + 2004 ], "headshot_hits": [ - 1736 + 2004 ], "hits": [ - 1736 + 2004 ], "hits_at_spotted": [ - 1736 + 2004 ], "hs_kills": [ - 1736 + 2004 ], "hs_kills_ct": [ - 1736 + 2004 ], "hs_kills_t": [ - 1736 + 2004 ], "kast_rounds": [ - 1736 + 2004 ], "kast_total_rounds": [ - 1736 + 2004 ], "kills": [ - 1736 + 2004 ], "kills_ct": [ - 1736 + 2004 ], "kills_t": [ - 1736 + 2004 ], "knife_kills": [ - 1736 + 2004 ], "molotov_damage": [ - 1736 + 2004 ], "molotov_throws": [ - 1736 + 2004 ], "non_awp_hits": [ - 1736 + 2004 ], "on_target_frames": [ - 1736 + 2004 ], "rounds_ct": [ - 1736 + 2004 ], "rounds_played": [ - 1736 + 2004 ], "rounds_t": [ - 1736 + 2004 ], "shots_at_spotted": [ - 1736 + 2004 ], "shots_fired": [ - 1736 + 2004 ], "smoke_throws": [ - 1736 + 2004 ], "spotted_count": [ - 1736 + 2004 ], "spotted_with_damage_count": [ - 1736 + 2004 ], "spray_hits": [ - 1736 + 2004 ], "spray_shots": [ - 1736 + 2004 ], "steam_id": [ - 1736 + 2004 ], "team_damage": [ - 1736 + 2004 ], "team_flashed": [ - 1736 + 2004 ], "three_kill_rounds": [ - 1736 + 2004 ], "time_to_damage_count": [ - 1736 + 2004 ], "time_to_damage_sum_s": [ - 1736 + 2004 ], "total_engagement_frames": [ - 1736 + 2004 ], "trade_kill_attempts": [ - 1736 + 2004 ], "trade_kill_opportunities": [ - 1736 + 2004 ], "trade_kill_successes": [ - 1736 + 2004 ], "traded_death_attempts": [ - 1736 + 2004 ], "traded_death_opportunities": [ - 1736 + 2004 ], "traded_death_successes": [ - 1736 + 2004 ], "two_kill_rounds": [ - 1736 + 2004 ], "unused_utility_value": [ - 1736 + 2004 ], "util_on_death_count": [ - 1736 + 2004 ], "util_on_death_sum": [ - 1736 + 2004 ], "wasted_magazine_shots": [ - 1736 + 2004 ], "zeus_kills": [ - 1736 + 2004 ], "__typename": [ 63 @@ -45841,13 +50763,13 @@ export default { }, "player_match_map_stats_bool_exp": { "_and": [ - 2209 + 2477 ], "_not": [ - 2209 + 2477 ], "_or": [ - 2209 + 2477 ], "assists": [ 35 @@ -45868,7 +50790,7 @@ export default { 35 ], "crosshair_angle_sum_deg": [ - 1735 + 2003 ], "damage": [ 35 @@ -45910,7 +50832,7 @@ export default { 35 ], "flash_duration_sum": [ - 1735 + 2003 ], "flashes_thrown": [ 35 @@ -45964,16 +50886,16 @@ export default { 35 ], "match": [ - 1587 + 1828 ], "match_id": [ - 3320 + 3588 ], "match_map": [ - 1425 + 1666 ], "match_map_id": [ - 3320 + 3588 ], "molotov_damage": [ 35 @@ -45988,7 +50910,7 @@ export default { 35 ], "player": [ - 2607 + 2875 ], "rounds_ct": [ 35 @@ -46036,7 +50958,7 @@ export default { 35 ], "time_to_damage_sum_s": [ - 1735 + 2003 ], "total_engagement_frames": [ 35 @@ -46066,7 +50988,7 @@ export default { 35 ], "updated_at": [ - 2923 + 3191 ], "util_on_death_count": [ 35 @@ -46105,7 +51027,7 @@ export default { 34 ], "crosshair_angle_sum_deg": [ - 1734 + 2002 ], "damage": [ 34 @@ -46147,7 +51069,7 @@ export default { 34 ], "flash_duration_sum": [ - 1734 + 2002 ], "flashes_thrown": [ 34 @@ -46258,7 +51180,7 @@ export default { 34 ], "time_to_damage_sum_s": [ - 1734 + 2002 ], "total_engagement_frames": [ 34 @@ -46323,7 +51245,7 @@ export default { 34 ], "crosshair_angle_sum_deg": [ - 1734 + 2002 ], "damage": [ 34 @@ -46365,7 +51287,7 @@ export default { 34 ], "flash_duration_sum": [ - 1734 + 2002 ], "flashes_thrown": [ 34 @@ -46419,16 +51341,16 @@ export default { 34 ], "match": [ - 1596 + 1837 ], "match_id": [ - 3319 + 3587 ], "match_map": [ - 1434 + 1675 ], "match_map_id": [ - 3319 + 3587 ], "molotov_damage": [ 34 @@ -46443,7 +51365,7 @@ export default { 34 ], "player": [ - 2614 + 2882 ], "rounds_ct": [ 34 @@ -46491,7 +51413,7 @@ export default { 34 ], "time_to_damage_sum_s": [ - 1734 + 2002 ], "total_engagement_frames": [ 34 @@ -46521,7 +51443,7 @@ export default { 34 ], "updated_at": [ - 2922 + 3190 ], "util_on_death_count": [ 34 @@ -46559,7 +51481,7 @@ export default { 34 ], "crosshair_angle_sum_deg": [ - 1734 + 2002 ], "damage": [ 34 @@ -46601,7 +51523,7 @@ export default { 34 ], "flash_duration_sum": [ - 1734 + 2002 ], "flashes_thrown": [ 34 @@ -46655,10 +51577,10 @@ export default { 34 ], "match_id": [ - 3319 + 3587 ], "match_map_id": [ - 3319 + 3587 ], "molotov_damage": [ 34 @@ -46718,7 +51640,7 @@ export default { 34 ], "time_to_damage_sum_s": [ - 1734 + 2002 ], "total_engagement_frames": [ 34 @@ -46748,7 +51670,7 @@ export default { 34 ], "updated_at": [ - 2922 + 3190 ], "util_on_death_count": [ 34 @@ -46768,226 +51690,226 @@ export default { }, "player_match_map_stats_max_order_by": { "assists": [ - 1736 + 2004 ], "assists_ct": [ - 1736 + 2004 ], "assists_t": [ - 1736 + 2004 ], "counter_strafe_eligible_shots": [ - 1736 + 2004 ], "counter_strafed_shots": [ - 1736 + 2004 ], "crosshair_angle_count": [ - 1736 + 2004 ], "crosshair_angle_sum_deg": [ - 1736 + 2004 ], "damage": [ - 1736 + 2004 ], "damage_ct": [ - 1736 + 2004 ], "damage_t": [ - 1736 + 2004 ], "deaths": [ - 1736 + 2004 ], "deaths_ct": [ - 1736 + 2004 ], "deaths_t": [ - 1736 + 2004 ], "decoy_throws": [ - 1736 + 2004 ], "enemies_flashed": [ - 1736 + 2004 ], "first_bullet_hits": [ - 1736 + 2004 ], "first_bullet_shots": [ - 1736 + 2004 ], "five_kill_rounds": [ - 1736 + 2004 ], "flash_assists": [ - 1736 + 2004 ], "flash_duration_count": [ - 1736 + 2004 ], "flash_duration_sum": [ - 1736 + 2004 ], "flashes_thrown": [ - 1736 + 2004 ], "four_kill_rounds": [ - 1736 + 2004 ], "he_damage": [ - 1736 + 2004 ], "he_team_damage": [ - 1736 + 2004 ], "he_throws": [ - 1736 + 2004 ], "headshot_hits": [ - 1736 + 2004 ], "hits": [ - 1736 + 2004 ], "hits_at_spotted": [ - 1736 + 2004 ], "hs_kills": [ - 1736 + 2004 ], "hs_kills_ct": [ - 1736 + 2004 ], "hs_kills_t": [ - 1736 + 2004 ], "kast_rounds": [ - 1736 + 2004 ], "kast_total_rounds": [ - 1736 + 2004 ], "kills": [ - 1736 + 2004 ], "kills_ct": [ - 1736 + 2004 ], "kills_t": [ - 1736 + 2004 ], "knife_kills": [ - 1736 + 2004 ], "match_id": [ - 1736 + 2004 ], "match_map_id": [ - 1736 + 2004 ], "molotov_damage": [ - 1736 + 2004 ], "molotov_throws": [ - 1736 + 2004 ], "non_awp_hits": [ - 1736 + 2004 ], "on_target_frames": [ - 1736 + 2004 ], "rounds_ct": [ - 1736 + 2004 ], "rounds_played": [ - 1736 + 2004 ], "rounds_t": [ - 1736 + 2004 ], "shots_at_spotted": [ - 1736 + 2004 ], "shots_fired": [ - 1736 + 2004 ], "smoke_throws": [ - 1736 + 2004 ], "spotted_count": [ - 1736 + 2004 ], "spotted_with_damage_count": [ - 1736 + 2004 ], "spray_hits": [ - 1736 + 2004 ], "spray_shots": [ - 1736 + 2004 ], "steam_id": [ - 1736 + 2004 ], "team_damage": [ - 1736 + 2004 ], "team_flashed": [ - 1736 + 2004 ], "three_kill_rounds": [ - 1736 + 2004 ], "time_to_damage_count": [ - 1736 + 2004 ], "time_to_damage_sum_s": [ - 1736 + 2004 ], "total_engagement_frames": [ - 1736 + 2004 ], "trade_kill_attempts": [ - 1736 + 2004 ], "trade_kill_opportunities": [ - 1736 + 2004 ], "trade_kill_successes": [ - 1736 + 2004 ], "traded_death_attempts": [ - 1736 + 2004 ], "traded_death_opportunities": [ - 1736 + 2004 ], "traded_death_successes": [ - 1736 + 2004 ], "two_kill_rounds": [ - 1736 + 2004 ], "unused_utility_value": [ - 1736 + 2004 ], "updated_at": [ - 1736 + 2004 ], "util_on_death_count": [ - 1736 + 2004 ], "util_on_death_sum": [ - 1736 + 2004 ], "wasted_magazine_shots": [ - 1736 + 2004 ], "zeus_kills": [ - 1736 + 2004 ], "__typename": [ 63 @@ -47013,7 +51935,7 @@ export default { 34 ], "crosshair_angle_sum_deg": [ - 1734 + 2002 ], "damage": [ 34 @@ -47055,7 +51977,7 @@ export default { 34 ], "flash_duration_sum": [ - 1734 + 2002 ], "flashes_thrown": [ 34 @@ -47109,10 +52031,10 @@ export default { 34 ], "match_id": [ - 3319 + 3587 ], "match_map_id": [ - 3319 + 3587 ], "molotov_damage": [ 34 @@ -47172,7 +52094,7 @@ export default { 34 ], "time_to_damage_sum_s": [ - 1734 + 2002 ], "total_engagement_frames": [ 34 @@ -47202,7 +52124,7 @@ export default { 34 ], "updated_at": [ - 2922 + 3190 ], "util_on_death_count": [ 34 @@ -47222,226 +52144,226 @@ export default { }, "player_match_map_stats_min_order_by": { "assists": [ - 1736 + 2004 ], "assists_ct": [ - 1736 + 2004 ], "assists_t": [ - 1736 + 2004 ], "counter_strafe_eligible_shots": [ - 1736 + 2004 ], "counter_strafed_shots": [ - 1736 + 2004 ], "crosshair_angle_count": [ - 1736 + 2004 ], "crosshair_angle_sum_deg": [ - 1736 + 2004 ], "damage": [ - 1736 + 2004 ], "damage_ct": [ - 1736 + 2004 ], "damage_t": [ - 1736 + 2004 ], "deaths": [ - 1736 + 2004 ], "deaths_ct": [ - 1736 + 2004 ], "deaths_t": [ - 1736 + 2004 ], "decoy_throws": [ - 1736 + 2004 ], "enemies_flashed": [ - 1736 + 2004 ], "first_bullet_hits": [ - 1736 + 2004 ], "first_bullet_shots": [ - 1736 + 2004 ], "five_kill_rounds": [ - 1736 + 2004 ], "flash_assists": [ - 1736 + 2004 ], "flash_duration_count": [ - 1736 + 2004 ], "flash_duration_sum": [ - 1736 + 2004 ], "flashes_thrown": [ - 1736 + 2004 ], "four_kill_rounds": [ - 1736 + 2004 ], "he_damage": [ - 1736 + 2004 ], "he_team_damage": [ - 1736 + 2004 ], "he_throws": [ - 1736 + 2004 ], "headshot_hits": [ - 1736 + 2004 ], "hits": [ - 1736 + 2004 ], "hits_at_spotted": [ - 1736 + 2004 ], "hs_kills": [ - 1736 + 2004 ], "hs_kills_ct": [ - 1736 + 2004 ], "hs_kills_t": [ - 1736 + 2004 ], "kast_rounds": [ - 1736 + 2004 ], "kast_total_rounds": [ - 1736 + 2004 ], "kills": [ - 1736 + 2004 ], "kills_ct": [ - 1736 + 2004 ], "kills_t": [ - 1736 + 2004 ], "knife_kills": [ - 1736 + 2004 ], "match_id": [ - 1736 + 2004 ], "match_map_id": [ - 1736 + 2004 ], "molotov_damage": [ - 1736 + 2004 ], "molotov_throws": [ - 1736 + 2004 ], "non_awp_hits": [ - 1736 + 2004 ], "on_target_frames": [ - 1736 + 2004 ], "rounds_ct": [ - 1736 + 2004 ], "rounds_played": [ - 1736 + 2004 ], "rounds_t": [ - 1736 + 2004 ], "shots_at_spotted": [ - 1736 + 2004 ], "shots_fired": [ - 1736 + 2004 ], "smoke_throws": [ - 1736 + 2004 ], "spotted_count": [ - 1736 + 2004 ], "spotted_with_damage_count": [ - 1736 + 2004 ], "spray_hits": [ - 1736 + 2004 ], "spray_shots": [ - 1736 + 2004 ], "steam_id": [ - 1736 + 2004 ], "team_damage": [ - 1736 + 2004 ], "team_flashed": [ - 1736 + 2004 ], "three_kill_rounds": [ - 1736 + 2004 ], "time_to_damage_count": [ - 1736 + 2004 ], "time_to_damage_sum_s": [ - 1736 + 2004 ], "total_engagement_frames": [ - 1736 + 2004 ], "trade_kill_attempts": [ - 1736 + 2004 ], "trade_kill_opportunities": [ - 1736 + 2004 ], "trade_kill_successes": [ - 1736 + 2004 ], "traded_death_attempts": [ - 1736 + 2004 ], "traded_death_opportunities": [ - 1736 + 2004 ], "traded_death_successes": [ - 1736 + 2004 ], "two_kill_rounds": [ - 1736 + 2004 ], "unused_utility_value": [ - 1736 + 2004 ], "updated_at": [ - 1736 + 2004 ], "util_on_death_count": [ - 1736 + 2004 ], "util_on_death_sum": [ - 1736 + 2004 ], "wasted_magazine_shots": [ - 1736 + 2004 ], "zeus_kills": [ - 1736 + 2004 ], "__typename": [ 63 @@ -47452,7 +52374,7 @@ export default { 34 ], "returning": [ - 2200 + 2468 ], "__typename": [ 63 @@ -47460,13 +52382,13 @@ export default { }, "player_match_map_stats_on_conflict": { "constraint": [ - 2210 + 2478 ], "update_columns": [ - 2233 + 2501 ], "where": [ - 2209 + 2477 ], "__typename": [ 63 @@ -47474,235 +52396,235 @@ export default { }, "player_match_map_stats_order_by": { "assists": [ - 1736 + 2004 ], "assists_ct": [ - 1736 + 2004 ], "assists_t": [ - 1736 + 2004 ], "counter_strafe_eligible_shots": [ - 1736 + 2004 ], "counter_strafed_shots": [ - 1736 + 2004 ], "crosshair_angle_count": [ - 1736 + 2004 ], "crosshair_angle_sum_deg": [ - 1736 + 2004 ], "damage": [ - 1736 + 2004 ], "damage_ct": [ - 1736 + 2004 ], "damage_t": [ - 1736 + 2004 ], "deaths": [ - 1736 + 2004 ], "deaths_ct": [ - 1736 + 2004 ], "deaths_t": [ - 1736 + 2004 ], "decoy_throws": [ - 1736 + 2004 ], "enemies_flashed": [ - 1736 + 2004 ], "first_bullet_hits": [ - 1736 + 2004 ], "first_bullet_shots": [ - 1736 + 2004 ], "five_kill_rounds": [ - 1736 + 2004 ], "flash_assists": [ - 1736 + 2004 ], "flash_duration_count": [ - 1736 + 2004 ], "flash_duration_sum": [ - 1736 + 2004 ], "flashes_thrown": [ - 1736 + 2004 ], "four_kill_rounds": [ - 1736 + 2004 ], "he_damage": [ - 1736 + 2004 ], "he_team_damage": [ - 1736 + 2004 ], "he_throws": [ - 1736 + 2004 ], "headshot_hits": [ - 1736 + 2004 ], "hits": [ - 1736 + 2004 ], "hits_at_spotted": [ - 1736 + 2004 ], "hs_kills": [ - 1736 + 2004 ], "hs_kills_ct": [ - 1736 + 2004 ], "hs_kills_t": [ - 1736 + 2004 ], "kast_rounds": [ - 1736 + 2004 ], "kast_total_rounds": [ - 1736 + 2004 ], "kills": [ - 1736 + 2004 ], "kills_ct": [ - 1736 + 2004 ], "kills_t": [ - 1736 + 2004 ], "knife_kills": [ - 1736 + 2004 ], "match": [ - 1598 + 1839 ], "match_id": [ - 1736 + 2004 ], "match_map": [ - 1436 + 1677 ], "match_map_id": [ - 1736 + 2004 ], "molotov_damage": [ - 1736 + 2004 ], "molotov_throws": [ - 1736 + 2004 ], "non_awp_hits": [ - 1736 + 2004 ], "on_target_frames": [ - 1736 + 2004 ], "player": [ - 2616 + 2884 ], "rounds_ct": [ - 1736 + 2004 ], "rounds_played": [ - 1736 + 2004 ], "rounds_t": [ - 1736 + 2004 ], "shots_at_spotted": [ - 1736 + 2004 ], "shots_fired": [ - 1736 + 2004 ], "smoke_throws": [ - 1736 + 2004 ], "spotted_count": [ - 1736 + 2004 ], "spotted_with_damage_count": [ - 1736 + 2004 ], "spray_hits": [ - 1736 + 2004 ], "spray_shots": [ - 1736 + 2004 ], "steam_id": [ - 1736 + 2004 ], "team_damage": [ - 1736 + 2004 ], "team_flashed": [ - 1736 + 2004 ], "three_kill_rounds": [ - 1736 + 2004 ], "time_to_damage_count": [ - 1736 + 2004 ], "time_to_damage_sum_s": [ - 1736 + 2004 ], "total_engagement_frames": [ - 1736 + 2004 ], "trade_kill_attempts": [ - 1736 + 2004 ], "trade_kill_opportunities": [ - 1736 + 2004 ], "trade_kill_successes": [ - 1736 + 2004 ], "traded_death_attempts": [ - 1736 + 2004 ], "traded_death_opportunities": [ - 1736 + 2004 ], "traded_death_successes": [ - 1736 + 2004 ], "two_kill_rounds": [ - 1736 + 2004 ], "unused_utility_value": [ - 1736 + 2004 ], "updated_at": [ - 1736 + 2004 ], "util_on_death_count": [ - 1736 + 2004 ], "util_on_death_sum": [ - 1736 + 2004 ], "wasted_magazine_shots": [ - 1736 + 2004 ], "zeus_kills": [ - 1736 + 2004 ], "__typename": [ 63 @@ -47710,7 +52632,7 @@ export default { }, "player_match_map_stats_pk_columns_input": { "match_map_id": [ - 3319 + 3587 ], "steam_id": [ 162 @@ -47740,7 +52662,7 @@ export default { 34 ], "crosshair_angle_sum_deg": [ - 1734 + 2002 ], "damage": [ 34 @@ -47782,7 +52704,7 @@ export default { 34 ], "flash_duration_sum": [ - 1734 + 2002 ], "flashes_thrown": [ 34 @@ -47836,10 +52758,10 @@ export default { 34 ], "match_id": [ - 3319 + 3587 ], "match_map_id": [ - 3319 + 3587 ], "molotov_damage": [ 34 @@ -47899,7 +52821,7 @@ export default { 34 ], "time_to_damage_sum_s": [ - 1734 + 2002 ], "total_engagement_frames": [ 34 @@ -47929,7 +52851,7 @@ export default { 34 ], "updated_at": [ - 2922 + 3190 ], "util_on_death_count": [ 34 @@ -48167,217 +53089,217 @@ export default { }, "player_match_map_stats_stddev_order_by": { "assists": [ - 1736 + 2004 ], "assists_ct": [ - 1736 + 2004 ], "assists_t": [ - 1736 + 2004 ], "counter_strafe_eligible_shots": [ - 1736 + 2004 ], "counter_strafed_shots": [ - 1736 + 2004 ], "crosshair_angle_count": [ - 1736 + 2004 ], "crosshair_angle_sum_deg": [ - 1736 + 2004 ], "damage": [ - 1736 + 2004 ], "damage_ct": [ - 1736 + 2004 ], "damage_t": [ - 1736 + 2004 ], "deaths": [ - 1736 + 2004 ], "deaths_ct": [ - 1736 + 2004 ], "deaths_t": [ - 1736 + 2004 ], "decoy_throws": [ - 1736 + 2004 ], "enemies_flashed": [ - 1736 + 2004 ], "first_bullet_hits": [ - 1736 + 2004 ], "first_bullet_shots": [ - 1736 + 2004 ], "five_kill_rounds": [ - 1736 + 2004 ], "flash_assists": [ - 1736 + 2004 ], "flash_duration_count": [ - 1736 + 2004 ], "flash_duration_sum": [ - 1736 + 2004 ], "flashes_thrown": [ - 1736 + 2004 ], "four_kill_rounds": [ - 1736 + 2004 ], "he_damage": [ - 1736 + 2004 ], "he_team_damage": [ - 1736 + 2004 ], "he_throws": [ - 1736 + 2004 ], "headshot_hits": [ - 1736 + 2004 ], "hits": [ - 1736 + 2004 ], "hits_at_spotted": [ - 1736 + 2004 ], "hs_kills": [ - 1736 + 2004 ], "hs_kills_ct": [ - 1736 + 2004 ], "hs_kills_t": [ - 1736 + 2004 ], "kast_rounds": [ - 1736 + 2004 ], "kast_total_rounds": [ - 1736 + 2004 ], "kills": [ - 1736 + 2004 ], "kills_ct": [ - 1736 + 2004 ], "kills_t": [ - 1736 + 2004 ], "knife_kills": [ - 1736 + 2004 ], "molotov_damage": [ - 1736 + 2004 ], "molotov_throws": [ - 1736 + 2004 ], "non_awp_hits": [ - 1736 + 2004 ], "on_target_frames": [ - 1736 + 2004 ], "rounds_ct": [ - 1736 + 2004 ], "rounds_played": [ - 1736 + 2004 ], "rounds_t": [ - 1736 + 2004 ], "shots_at_spotted": [ - 1736 + 2004 ], "shots_fired": [ - 1736 + 2004 ], "smoke_throws": [ - 1736 + 2004 ], "spotted_count": [ - 1736 + 2004 ], "spotted_with_damage_count": [ - 1736 + 2004 ], "spray_hits": [ - 1736 + 2004 ], "spray_shots": [ - 1736 + 2004 ], "steam_id": [ - 1736 + 2004 ], "team_damage": [ - 1736 + 2004 ], "team_flashed": [ - 1736 + 2004 ], "three_kill_rounds": [ - 1736 + 2004 ], "time_to_damage_count": [ - 1736 + 2004 ], "time_to_damage_sum_s": [ - 1736 + 2004 ], "total_engagement_frames": [ - 1736 + 2004 ], "trade_kill_attempts": [ - 1736 + 2004 ], "trade_kill_opportunities": [ - 1736 + 2004 ], "trade_kill_successes": [ - 1736 + 2004 ], "traded_death_attempts": [ - 1736 + 2004 ], "traded_death_opportunities": [ - 1736 + 2004 ], "traded_death_successes": [ - 1736 + 2004 ], "two_kill_rounds": [ - 1736 + 2004 ], "unused_utility_value": [ - 1736 + 2004 ], "util_on_death_count": [ - 1736 + 2004 ], "util_on_death_sum": [ - 1736 + 2004 ], "wasted_magazine_shots": [ - 1736 + 2004 ], "zeus_kills": [ - 1736 + 2004 ], "__typename": [ 63 @@ -48603,217 +53525,217 @@ export default { }, "player_match_map_stats_stddev_pop_order_by": { "assists": [ - 1736 + 2004 ], "assists_ct": [ - 1736 + 2004 ], "assists_t": [ - 1736 + 2004 ], "counter_strafe_eligible_shots": [ - 1736 + 2004 ], "counter_strafed_shots": [ - 1736 + 2004 ], "crosshair_angle_count": [ - 1736 + 2004 ], "crosshair_angle_sum_deg": [ - 1736 + 2004 ], "damage": [ - 1736 + 2004 ], "damage_ct": [ - 1736 + 2004 ], "damage_t": [ - 1736 + 2004 ], "deaths": [ - 1736 + 2004 ], "deaths_ct": [ - 1736 + 2004 ], "deaths_t": [ - 1736 + 2004 ], "decoy_throws": [ - 1736 + 2004 ], "enemies_flashed": [ - 1736 + 2004 ], "first_bullet_hits": [ - 1736 + 2004 ], "first_bullet_shots": [ - 1736 + 2004 ], "five_kill_rounds": [ - 1736 + 2004 ], "flash_assists": [ - 1736 + 2004 ], "flash_duration_count": [ - 1736 + 2004 ], "flash_duration_sum": [ - 1736 + 2004 ], "flashes_thrown": [ - 1736 + 2004 ], "four_kill_rounds": [ - 1736 + 2004 ], "he_damage": [ - 1736 + 2004 ], "he_team_damage": [ - 1736 + 2004 ], "he_throws": [ - 1736 + 2004 ], "headshot_hits": [ - 1736 + 2004 ], "hits": [ - 1736 + 2004 ], "hits_at_spotted": [ - 1736 + 2004 ], "hs_kills": [ - 1736 + 2004 ], "hs_kills_ct": [ - 1736 + 2004 ], "hs_kills_t": [ - 1736 + 2004 ], "kast_rounds": [ - 1736 + 2004 ], "kast_total_rounds": [ - 1736 + 2004 ], "kills": [ - 1736 + 2004 ], "kills_ct": [ - 1736 + 2004 ], "kills_t": [ - 1736 + 2004 ], "knife_kills": [ - 1736 + 2004 ], "molotov_damage": [ - 1736 + 2004 ], "molotov_throws": [ - 1736 + 2004 ], "non_awp_hits": [ - 1736 + 2004 ], "on_target_frames": [ - 1736 + 2004 ], "rounds_ct": [ - 1736 + 2004 ], "rounds_played": [ - 1736 + 2004 ], "rounds_t": [ - 1736 + 2004 ], "shots_at_spotted": [ - 1736 + 2004 ], "shots_fired": [ - 1736 + 2004 ], "smoke_throws": [ - 1736 + 2004 ], "spotted_count": [ - 1736 + 2004 ], "spotted_with_damage_count": [ - 1736 + 2004 ], "spray_hits": [ - 1736 + 2004 ], "spray_shots": [ - 1736 + 2004 ], "steam_id": [ - 1736 + 2004 ], "team_damage": [ - 1736 + 2004 ], "team_flashed": [ - 1736 + 2004 ], "three_kill_rounds": [ - 1736 + 2004 ], "time_to_damage_count": [ - 1736 + 2004 ], "time_to_damage_sum_s": [ - 1736 + 2004 ], "total_engagement_frames": [ - 1736 + 2004 ], "trade_kill_attempts": [ - 1736 + 2004 ], "trade_kill_opportunities": [ - 1736 + 2004 ], "trade_kill_successes": [ - 1736 + 2004 ], "traded_death_attempts": [ - 1736 + 2004 ], "traded_death_opportunities": [ - 1736 + 2004 ], "traded_death_successes": [ - 1736 + 2004 ], "two_kill_rounds": [ - 1736 + 2004 ], "unused_utility_value": [ - 1736 + 2004 ], "util_on_death_count": [ - 1736 + 2004 ], "util_on_death_sum": [ - 1736 + 2004 ], "wasted_magazine_shots": [ - 1736 + 2004 ], "zeus_kills": [ - 1736 + 2004 ], "__typename": [ 63 @@ -49039,217 +53961,217 @@ export default { }, "player_match_map_stats_stddev_samp_order_by": { "assists": [ - 1736 + 2004 ], "assists_ct": [ - 1736 + 2004 ], "assists_t": [ - 1736 + 2004 ], "counter_strafe_eligible_shots": [ - 1736 + 2004 ], "counter_strafed_shots": [ - 1736 + 2004 ], "crosshair_angle_count": [ - 1736 + 2004 ], "crosshair_angle_sum_deg": [ - 1736 + 2004 ], "damage": [ - 1736 + 2004 ], "damage_ct": [ - 1736 + 2004 ], "damage_t": [ - 1736 + 2004 ], "deaths": [ - 1736 + 2004 ], "deaths_ct": [ - 1736 + 2004 ], "deaths_t": [ - 1736 + 2004 ], "decoy_throws": [ - 1736 + 2004 ], "enemies_flashed": [ - 1736 + 2004 ], "first_bullet_hits": [ - 1736 + 2004 ], "first_bullet_shots": [ - 1736 + 2004 ], "five_kill_rounds": [ - 1736 + 2004 ], "flash_assists": [ - 1736 + 2004 ], "flash_duration_count": [ - 1736 + 2004 ], "flash_duration_sum": [ - 1736 + 2004 ], "flashes_thrown": [ - 1736 + 2004 ], "four_kill_rounds": [ - 1736 + 2004 ], "he_damage": [ - 1736 + 2004 ], "he_team_damage": [ - 1736 + 2004 ], "he_throws": [ - 1736 + 2004 ], "headshot_hits": [ - 1736 + 2004 ], "hits": [ - 1736 + 2004 ], "hits_at_spotted": [ - 1736 + 2004 ], "hs_kills": [ - 1736 + 2004 ], "hs_kills_ct": [ - 1736 + 2004 ], "hs_kills_t": [ - 1736 + 2004 ], "kast_rounds": [ - 1736 + 2004 ], "kast_total_rounds": [ - 1736 + 2004 ], "kills": [ - 1736 + 2004 ], "kills_ct": [ - 1736 + 2004 ], "kills_t": [ - 1736 + 2004 ], "knife_kills": [ - 1736 + 2004 ], "molotov_damage": [ - 1736 + 2004 ], "molotov_throws": [ - 1736 + 2004 ], "non_awp_hits": [ - 1736 + 2004 ], "on_target_frames": [ - 1736 + 2004 ], "rounds_ct": [ - 1736 + 2004 ], "rounds_played": [ - 1736 + 2004 ], "rounds_t": [ - 1736 + 2004 ], "shots_at_spotted": [ - 1736 + 2004 ], "shots_fired": [ - 1736 + 2004 ], "smoke_throws": [ - 1736 + 2004 ], "spotted_count": [ - 1736 + 2004 ], "spotted_with_damage_count": [ - 1736 + 2004 ], "spray_hits": [ - 1736 + 2004 ], "spray_shots": [ - 1736 + 2004 ], "steam_id": [ - 1736 + 2004 ], "team_damage": [ - 1736 + 2004 ], "team_flashed": [ - 1736 + 2004 ], "three_kill_rounds": [ - 1736 + 2004 ], "time_to_damage_count": [ - 1736 + 2004 ], "time_to_damage_sum_s": [ - 1736 + 2004 ], "total_engagement_frames": [ - 1736 + 2004 ], "trade_kill_attempts": [ - 1736 + 2004 ], "trade_kill_opportunities": [ - 1736 + 2004 ], "trade_kill_successes": [ - 1736 + 2004 ], "traded_death_attempts": [ - 1736 + 2004 ], "traded_death_opportunities": [ - 1736 + 2004 ], "traded_death_successes": [ - 1736 + 2004 ], "two_kill_rounds": [ - 1736 + 2004 ], "unused_utility_value": [ - 1736 + 2004 ], "util_on_death_count": [ - 1736 + 2004 ], "util_on_death_sum": [ - 1736 + 2004 ], "wasted_magazine_shots": [ - 1736 + 2004 ], "zeus_kills": [ - 1736 + 2004 ], "__typename": [ 63 @@ -49257,7 +54179,7 @@ export default { }, "player_match_map_stats_stream_cursor_input": { "initial_value": [ - 2230 + 2498 ], "ordering": [ 216 @@ -49286,7 +54208,7 @@ export default { 34 ], "crosshair_angle_sum_deg": [ - 1734 + 2002 ], "damage": [ 34 @@ -49328,7 +54250,7 @@ export default { 34 ], "flash_duration_sum": [ - 1734 + 2002 ], "flashes_thrown": [ 34 @@ -49382,10 +54304,10 @@ export default { 34 ], "match_id": [ - 3319 + 3587 ], "match_map_id": [ - 3319 + 3587 ], "molotov_damage": [ 34 @@ -49445,7 +54367,7 @@ export default { 34 ], "time_to_damage_sum_s": [ - 1734 + 2002 ], "total_engagement_frames": [ 34 @@ -49475,7 +54397,7 @@ export default { 34 ], "updated_at": [ - 2922 + 3190 ], "util_on_death_count": [ 34 @@ -49513,7 +54435,7 @@ export default { 34 ], "crosshair_angle_sum_deg": [ - 1734 + 2002 ], "damage": [ 34 @@ -49555,7 +54477,7 @@ export default { 34 ], "flash_duration_sum": [ - 1734 + 2002 ], "flashes_thrown": [ 34 @@ -49666,7 +54588,7 @@ export default { 34 ], "time_to_damage_sum_s": [ - 1734 + 2002 ], "total_engagement_frames": [ 34 @@ -49713,217 +54635,217 @@ export default { }, "player_match_map_stats_sum_order_by": { "assists": [ - 1736 + 2004 ], "assists_ct": [ - 1736 + 2004 ], "assists_t": [ - 1736 + 2004 ], "counter_strafe_eligible_shots": [ - 1736 + 2004 ], "counter_strafed_shots": [ - 1736 + 2004 ], "crosshair_angle_count": [ - 1736 + 2004 ], "crosshair_angle_sum_deg": [ - 1736 + 2004 ], "damage": [ - 1736 + 2004 ], "damage_ct": [ - 1736 + 2004 ], "damage_t": [ - 1736 + 2004 ], "deaths": [ - 1736 + 2004 ], "deaths_ct": [ - 1736 + 2004 ], "deaths_t": [ - 1736 + 2004 ], "decoy_throws": [ - 1736 + 2004 ], "enemies_flashed": [ - 1736 + 2004 ], "first_bullet_hits": [ - 1736 + 2004 ], "first_bullet_shots": [ - 1736 + 2004 ], "five_kill_rounds": [ - 1736 + 2004 ], "flash_assists": [ - 1736 + 2004 ], "flash_duration_count": [ - 1736 + 2004 ], "flash_duration_sum": [ - 1736 + 2004 ], "flashes_thrown": [ - 1736 + 2004 ], "four_kill_rounds": [ - 1736 + 2004 ], "he_damage": [ - 1736 + 2004 ], "he_team_damage": [ - 1736 + 2004 ], "he_throws": [ - 1736 + 2004 ], "headshot_hits": [ - 1736 + 2004 ], "hits": [ - 1736 + 2004 ], "hits_at_spotted": [ - 1736 + 2004 ], "hs_kills": [ - 1736 + 2004 ], "hs_kills_ct": [ - 1736 + 2004 ], "hs_kills_t": [ - 1736 + 2004 ], "kast_rounds": [ - 1736 + 2004 ], "kast_total_rounds": [ - 1736 + 2004 ], "kills": [ - 1736 + 2004 ], "kills_ct": [ - 1736 + 2004 ], "kills_t": [ - 1736 + 2004 ], "knife_kills": [ - 1736 + 2004 ], "molotov_damage": [ - 1736 + 2004 ], "molotov_throws": [ - 1736 + 2004 ], "non_awp_hits": [ - 1736 + 2004 ], "on_target_frames": [ - 1736 + 2004 ], "rounds_ct": [ - 1736 + 2004 ], "rounds_played": [ - 1736 + 2004 ], "rounds_t": [ - 1736 + 2004 ], "shots_at_spotted": [ - 1736 + 2004 ], "shots_fired": [ - 1736 + 2004 ], "smoke_throws": [ - 1736 + 2004 ], "spotted_count": [ - 1736 + 2004 ], "spotted_with_damage_count": [ - 1736 + 2004 ], "spray_hits": [ - 1736 + 2004 ], "spray_shots": [ - 1736 + 2004 ], "steam_id": [ - 1736 + 2004 ], "team_damage": [ - 1736 + 2004 ], "team_flashed": [ - 1736 + 2004 ], "three_kill_rounds": [ - 1736 + 2004 ], "time_to_damage_count": [ - 1736 + 2004 ], "time_to_damage_sum_s": [ - 1736 + 2004 ], "total_engagement_frames": [ - 1736 + 2004 ], "trade_kill_attempts": [ - 1736 + 2004 ], "trade_kill_opportunities": [ - 1736 + 2004 ], "trade_kill_successes": [ - 1736 + 2004 ], "traded_death_attempts": [ - 1736 + 2004 ], "traded_death_opportunities": [ - 1736 + 2004 ], "traded_death_successes": [ - 1736 + 2004 ], "two_kill_rounds": [ - 1736 + 2004 ], "unused_utility_value": [ - 1736 + 2004 ], "util_on_death_count": [ - 1736 + 2004 ], "util_on_death_sum": [ - 1736 + 2004 ], "wasted_magazine_shots": [ - 1736 + 2004 ], "zeus_kills": [ - 1736 + 2004 ], "__typename": [ 63 @@ -49932,13 +54854,13 @@ export default { "player_match_map_stats_update_column": {}, "player_match_map_stats_updates": { "_inc": [ - 2211 + 2479 ], "_set": [ - 2222 + 2490 ], "where": [ - 2209 + 2477 ], "__typename": [ 63 @@ -50164,217 +55086,217 @@ export default { }, "player_match_map_stats_var_pop_order_by": { "assists": [ - 1736 + 2004 ], "assists_ct": [ - 1736 + 2004 ], "assists_t": [ - 1736 + 2004 ], "counter_strafe_eligible_shots": [ - 1736 + 2004 ], "counter_strafed_shots": [ - 1736 + 2004 ], "crosshair_angle_count": [ - 1736 + 2004 ], "crosshair_angle_sum_deg": [ - 1736 + 2004 ], "damage": [ - 1736 + 2004 ], "damage_ct": [ - 1736 + 2004 ], "damage_t": [ - 1736 + 2004 ], "deaths": [ - 1736 + 2004 ], "deaths_ct": [ - 1736 + 2004 ], "deaths_t": [ - 1736 + 2004 ], "decoy_throws": [ - 1736 + 2004 ], "enemies_flashed": [ - 1736 + 2004 ], "first_bullet_hits": [ - 1736 + 2004 ], "first_bullet_shots": [ - 1736 + 2004 ], "five_kill_rounds": [ - 1736 + 2004 ], "flash_assists": [ - 1736 + 2004 ], "flash_duration_count": [ - 1736 + 2004 ], "flash_duration_sum": [ - 1736 + 2004 ], "flashes_thrown": [ - 1736 + 2004 ], "four_kill_rounds": [ - 1736 + 2004 ], "he_damage": [ - 1736 + 2004 ], "he_team_damage": [ - 1736 + 2004 ], "he_throws": [ - 1736 + 2004 ], "headshot_hits": [ - 1736 + 2004 ], "hits": [ - 1736 + 2004 ], "hits_at_spotted": [ - 1736 + 2004 ], "hs_kills": [ - 1736 + 2004 ], "hs_kills_ct": [ - 1736 + 2004 ], "hs_kills_t": [ - 1736 + 2004 ], "kast_rounds": [ - 1736 + 2004 ], "kast_total_rounds": [ - 1736 + 2004 ], "kills": [ - 1736 + 2004 ], "kills_ct": [ - 1736 + 2004 ], "kills_t": [ - 1736 + 2004 ], "knife_kills": [ - 1736 + 2004 ], "molotov_damage": [ - 1736 + 2004 ], "molotov_throws": [ - 1736 + 2004 ], "non_awp_hits": [ - 1736 + 2004 ], "on_target_frames": [ - 1736 + 2004 ], "rounds_ct": [ - 1736 + 2004 ], "rounds_played": [ - 1736 + 2004 ], "rounds_t": [ - 1736 + 2004 ], "shots_at_spotted": [ - 1736 + 2004 ], "shots_fired": [ - 1736 + 2004 ], "smoke_throws": [ - 1736 + 2004 ], "spotted_count": [ - 1736 + 2004 ], "spotted_with_damage_count": [ - 1736 + 2004 ], "spray_hits": [ - 1736 + 2004 ], "spray_shots": [ - 1736 + 2004 ], "steam_id": [ - 1736 + 2004 ], "team_damage": [ - 1736 + 2004 ], "team_flashed": [ - 1736 + 2004 ], "three_kill_rounds": [ - 1736 + 2004 ], "time_to_damage_count": [ - 1736 + 2004 ], "time_to_damage_sum_s": [ - 1736 + 2004 ], "total_engagement_frames": [ - 1736 + 2004 ], "trade_kill_attempts": [ - 1736 + 2004 ], "trade_kill_opportunities": [ - 1736 + 2004 ], "trade_kill_successes": [ - 1736 + 2004 ], "traded_death_attempts": [ - 1736 + 2004 ], "traded_death_opportunities": [ - 1736 + 2004 ], "traded_death_successes": [ - 1736 + 2004 ], "two_kill_rounds": [ - 1736 + 2004 ], "unused_utility_value": [ - 1736 + 2004 ], "util_on_death_count": [ - 1736 + 2004 ], "util_on_death_sum": [ - 1736 + 2004 ], "wasted_magazine_shots": [ - 1736 + 2004 ], "zeus_kills": [ - 1736 + 2004 ], "__typename": [ 63 @@ -50600,217 +55522,217 @@ export default { }, "player_match_map_stats_var_samp_order_by": { "assists": [ - 1736 + 2004 ], "assists_ct": [ - 1736 + 2004 ], "assists_t": [ - 1736 + 2004 ], "counter_strafe_eligible_shots": [ - 1736 + 2004 ], "counter_strafed_shots": [ - 1736 + 2004 ], "crosshair_angle_count": [ - 1736 + 2004 ], "crosshair_angle_sum_deg": [ - 1736 + 2004 ], "damage": [ - 1736 + 2004 ], "damage_ct": [ - 1736 + 2004 ], "damage_t": [ - 1736 + 2004 ], "deaths": [ - 1736 + 2004 ], "deaths_ct": [ - 1736 + 2004 ], "deaths_t": [ - 1736 + 2004 ], "decoy_throws": [ - 1736 + 2004 ], "enemies_flashed": [ - 1736 + 2004 ], "first_bullet_hits": [ - 1736 + 2004 ], "first_bullet_shots": [ - 1736 + 2004 ], "five_kill_rounds": [ - 1736 + 2004 ], "flash_assists": [ - 1736 + 2004 ], "flash_duration_count": [ - 1736 + 2004 ], "flash_duration_sum": [ - 1736 + 2004 ], "flashes_thrown": [ - 1736 + 2004 ], "four_kill_rounds": [ - 1736 + 2004 ], "he_damage": [ - 1736 + 2004 ], "he_team_damage": [ - 1736 + 2004 ], "he_throws": [ - 1736 + 2004 ], "headshot_hits": [ - 1736 + 2004 ], "hits": [ - 1736 + 2004 ], "hits_at_spotted": [ - 1736 + 2004 ], "hs_kills": [ - 1736 + 2004 ], "hs_kills_ct": [ - 1736 + 2004 ], "hs_kills_t": [ - 1736 + 2004 ], "kast_rounds": [ - 1736 + 2004 ], "kast_total_rounds": [ - 1736 + 2004 ], "kills": [ - 1736 + 2004 ], "kills_ct": [ - 1736 + 2004 ], "kills_t": [ - 1736 + 2004 ], "knife_kills": [ - 1736 + 2004 ], "molotov_damage": [ - 1736 + 2004 ], "molotov_throws": [ - 1736 + 2004 ], "non_awp_hits": [ - 1736 + 2004 ], "on_target_frames": [ - 1736 + 2004 ], "rounds_ct": [ - 1736 + 2004 ], "rounds_played": [ - 1736 + 2004 ], "rounds_t": [ - 1736 + 2004 ], "shots_at_spotted": [ - 1736 + 2004 ], "shots_fired": [ - 1736 + 2004 ], "smoke_throws": [ - 1736 + 2004 ], "spotted_count": [ - 1736 + 2004 ], "spotted_with_damage_count": [ - 1736 + 2004 ], "spray_hits": [ - 1736 + 2004 ], "spray_shots": [ - 1736 + 2004 ], "steam_id": [ - 1736 + 2004 ], "team_damage": [ - 1736 + 2004 ], "team_flashed": [ - 1736 + 2004 ], "three_kill_rounds": [ - 1736 + 2004 ], "time_to_damage_count": [ - 1736 + 2004 ], "time_to_damage_sum_s": [ - 1736 + 2004 ], "total_engagement_frames": [ - 1736 + 2004 ], "trade_kill_attempts": [ - 1736 + 2004 ], "trade_kill_opportunities": [ - 1736 + 2004 ], "trade_kill_successes": [ - 1736 + 2004 ], "traded_death_attempts": [ - 1736 + 2004 ], "traded_death_opportunities": [ - 1736 + 2004 ], "traded_death_successes": [ - 1736 + 2004 ], "two_kill_rounds": [ - 1736 + 2004 ], "unused_utility_value": [ - 1736 + 2004 ], "util_on_death_count": [ - 1736 + 2004 ], "util_on_death_sum": [ - 1736 + 2004 ], "wasted_magazine_shots": [ - 1736 + 2004 ], "zeus_kills": [ - 1736 + 2004 ], "__typename": [ 63 @@ -51036,217 +55958,217 @@ export default { }, "player_match_map_stats_variance_order_by": { "assists": [ - 1736 + 2004 ], "assists_ct": [ - 1736 + 2004 ], "assists_t": [ - 1736 + 2004 ], "counter_strafe_eligible_shots": [ - 1736 + 2004 ], "counter_strafed_shots": [ - 1736 + 2004 ], "crosshair_angle_count": [ - 1736 + 2004 ], "crosshair_angle_sum_deg": [ - 1736 + 2004 ], "damage": [ - 1736 + 2004 ], "damage_ct": [ - 1736 + 2004 ], "damage_t": [ - 1736 + 2004 ], "deaths": [ - 1736 + 2004 ], "deaths_ct": [ - 1736 + 2004 ], "deaths_t": [ - 1736 + 2004 ], "decoy_throws": [ - 1736 + 2004 ], "enemies_flashed": [ - 1736 + 2004 ], "first_bullet_hits": [ - 1736 + 2004 ], "first_bullet_shots": [ - 1736 + 2004 ], "five_kill_rounds": [ - 1736 + 2004 ], "flash_assists": [ - 1736 + 2004 ], "flash_duration_count": [ - 1736 + 2004 ], "flash_duration_sum": [ - 1736 + 2004 ], "flashes_thrown": [ - 1736 + 2004 ], "four_kill_rounds": [ - 1736 + 2004 ], "he_damage": [ - 1736 + 2004 ], "he_team_damage": [ - 1736 + 2004 ], "he_throws": [ - 1736 + 2004 ], "headshot_hits": [ - 1736 + 2004 ], "hits": [ - 1736 + 2004 ], "hits_at_spotted": [ - 1736 + 2004 ], "hs_kills": [ - 1736 + 2004 ], "hs_kills_ct": [ - 1736 + 2004 ], "hs_kills_t": [ - 1736 + 2004 ], "kast_rounds": [ - 1736 + 2004 ], "kast_total_rounds": [ - 1736 + 2004 ], "kills": [ - 1736 + 2004 ], "kills_ct": [ - 1736 + 2004 ], "kills_t": [ - 1736 + 2004 ], "knife_kills": [ - 1736 + 2004 ], "molotov_damage": [ - 1736 + 2004 ], "molotov_throws": [ - 1736 + 2004 ], "non_awp_hits": [ - 1736 + 2004 ], "on_target_frames": [ - 1736 + 2004 ], "rounds_ct": [ - 1736 + 2004 ], "rounds_played": [ - 1736 + 2004 ], "rounds_t": [ - 1736 + 2004 ], "shots_at_spotted": [ - 1736 + 2004 ], "shots_fired": [ - 1736 + 2004 ], "smoke_throws": [ - 1736 + 2004 ], "spotted_count": [ - 1736 + 2004 ], "spotted_with_damage_count": [ - 1736 + 2004 ], "spray_hits": [ - 1736 + 2004 ], "spray_shots": [ - 1736 + 2004 ], "steam_id": [ - 1736 + 2004 ], "team_damage": [ - 1736 + 2004 ], "team_flashed": [ - 1736 + 2004 ], "three_kill_rounds": [ - 1736 + 2004 ], "time_to_damage_count": [ - 1736 + 2004 ], "time_to_damage_sum_s": [ - 1736 + 2004 ], "total_engagement_frames": [ - 1736 + 2004 ], "trade_kill_attempts": [ - 1736 + 2004 ], "trade_kill_opportunities": [ - 1736 + 2004 ], "trade_kill_successes": [ - 1736 + 2004 ], "traded_death_attempts": [ - 1736 + 2004 ], "traded_death_opportunities": [ - 1736 + 2004 ], "traded_death_successes": [ - 1736 + 2004 ], "two_kill_rounds": [ - 1736 + 2004 ], "unused_utility_value": [ - 1736 + 2004 ], "util_on_death_count": [ - 1736 + 2004 ], "util_on_death_sum": [ - 1736 + 2004 ], "wasted_magazine_shots": [ - 1736 + 2004 ], "zeus_kills": [ - 1736 + 2004 ], "__typename": [ 63 @@ -51254,40 +56176,40 @@ export default { }, "player_match_performance_v": { "accuracy": [ - 1734 + 2002 ], "accuracy_spotted": [ - 1734 + 2002 ], "aim_rating": [ - 795 + 1036 ], "counter_strafe_pct": [ - 1734 + 2002 ], "enemy_blind_pr": [ - 1734 + 2002 ], "flash_assists_pr": [ - 1734 + 2002 ], "hs_pct": [ - 1734 + 2002 ], "kast_pct": [ - 1734 + 2002 ], "match_id": [ - 3319 + 3587 ], "overall_rating": [ - 795 + 1036 ], "played_at": [ - 2922 + 3190 ], "positioning_rating": [ - 795 + 1036 ], "rounds": [ 34 @@ -51299,16 +56221,16 @@ export default { 162 ], "survival_pct": [ - 1734 + 2002 ], "traded_death_pct": [ - 1734 + 2002 ], "util_efficiency": [ - 1734 + 2002 ], "utility_rating": [ - 795 + 1036 ], "__typename": [ 63 @@ -51316,10 +56238,10 @@ export default { }, "player_match_performance_v_aggregate": { "aggregate": [ - 2243 + 2511 ], "nodes": [ - 2241 + 2509 ], "__typename": [ 63 @@ -51327,13 +56249,13 @@ export default { }, "player_match_performance_v_aggregate_fields": { "avg": [ - 2244 + 2512 ], "count": [ 34, { "columns": [ - 2249, + 2517, "[player_match_performance_v_select_column!]" ], "distinct": [ @@ -51342,31 +56264,31 @@ export default { } ], "max": [ - 2246 + 2514 ], "min": [ - 2247 + 2515 ], "stddev": [ - 2250 + 2518 ], "stddev_pop": [ - 2251 + 2519 ], "stddev_samp": [ - 2252 + 2520 ], "sum": [ - 2255 + 2523 ], "var_pop": [ - 2256 + 2524 ], "var_samp": [ - 2257 + 2525 ], "variance": [ - 2258 + 2526 ], "__typename": [ 63 @@ -51427,49 +56349,49 @@ export default { }, "player_match_performance_v_bool_exp": { "_and": [ - 2245 + 2513 ], "_not": [ - 2245 + 2513 ], "_or": [ - 2245 + 2513 ], "accuracy": [ - 1735 + 2003 ], "accuracy_spotted": [ - 1735 + 2003 ], "aim_rating": [ - 796 + 1037 ], "counter_strafe_pct": [ - 1735 + 2003 ], "enemy_blind_pr": [ - 1735 + 2003 ], "flash_assists_pr": [ - 1735 + 2003 ], "hs_pct": [ - 1735 + 2003 ], "kast_pct": [ - 1735 + 2003 ], "match_id": [ - 3320 + 3588 ], "overall_rating": [ - 796 + 1037 ], "played_at": [ - 2923 + 3191 ], "positioning_rating": [ - 796 + 1037 ], "rounds": [ 35 @@ -51481,16 +56403,16 @@ export default { 163 ], "survival_pct": [ - 1735 + 2003 ], "traded_death_pct": [ - 1735 + 2003 ], "util_efficiency": [ - 1735 + 2003 ], "utility_rating": [ - 796 + 1037 ], "__typename": [ 63 @@ -51498,40 +56420,40 @@ export default { }, "player_match_performance_v_max_fields": { "accuracy": [ - 1734 + 2002 ], "accuracy_spotted": [ - 1734 + 2002 ], "aim_rating": [ - 795 + 1036 ], "counter_strafe_pct": [ - 1734 + 2002 ], "enemy_blind_pr": [ - 1734 + 2002 ], "flash_assists_pr": [ - 1734 + 2002 ], "hs_pct": [ - 1734 + 2002 ], "kast_pct": [ - 1734 + 2002 ], "match_id": [ - 3319 + 3587 ], "overall_rating": [ - 795 + 1036 ], "played_at": [ - 2922 + 3190 ], "positioning_rating": [ - 795 + 1036 ], "rounds": [ 34 @@ -51543,16 +56465,16 @@ export default { 162 ], "survival_pct": [ - 1734 + 2002 ], "traded_death_pct": [ - 1734 + 2002 ], "util_efficiency": [ - 1734 + 2002 ], "utility_rating": [ - 795 + 1036 ], "__typename": [ 63 @@ -51560,40 +56482,40 @@ export default { }, "player_match_performance_v_min_fields": { "accuracy": [ - 1734 + 2002 ], "accuracy_spotted": [ - 1734 + 2002 ], "aim_rating": [ - 795 + 1036 ], "counter_strafe_pct": [ - 1734 + 2002 ], "enemy_blind_pr": [ - 1734 + 2002 ], "flash_assists_pr": [ - 1734 + 2002 ], "hs_pct": [ - 1734 + 2002 ], "kast_pct": [ - 1734 + 2002 ], "match_id": [ - 3319 + 3587 ], "overall_rating": [ - 795 + 1036 ], "played_at": [ - 2922 + 3190 ], "positioning_rating": [ - 795 + 1036 ], "rounds": [ 34 @@ -51605,16 +56527,16 @@ export default { 162 ], "survival_pct": [ - 1734 + 2002 ], "traded_death_pct": [ - 1734 + 2002 ], "util_efficiency": [ - 1734 + 2002 ], "utility_rating": [ - 795 + 1036 ], "__typename": [ 63 @@ -51622,61 +56544,61 @@ export default { }, "player_match_performance_v_order_by": { "accuracy": [ - 1736 + 2004 ], "accuracy_spotted": [ - 1736 + 2004 ], "aim_rating": [ - 1736 + 2004 ], "counter_strafe_pct": [ - 1736 + 2004 ], "enemy_blind_pr": [ - 1736 + 2004 ], "flash_assists_pr": [ - 1736 + 2004 ], "hs_pct": [ - 1736 + 2004 ], "kast_pct": [ - 1736 + 2004 ], "match_id": [ - 1736 + 2004 ], "overall_rating": [ - 1736 + 2004 ], "played_at": [ - 1736 + 2004 ], "positioning_rating": [ - 1736 + 2004 ], "rounds": [ - 1736 + 2004 ], "source": [ - 1736 + 2004 ], "steam_id": [ - 1736 + 2004 ], "survival_pct": [ - 1736 + 2004 ], "traded_death_pct": [ - 1736 + 2004 ], "util_efficiency": [ - 1736 + 2004 ], "utility_rating": [ - 1736 + 2004 ], "__typename": [ 63 @@ -51844,7 +56766,7 @@ export default { }, "player_match_performance_v_stream_cursor_input": { "initial_value": [ - 2254 + 2522 ], "ordering": [ 216 @@ -51855,40 +56777,40 @@ export default { }, "player_match_performance_v_stream_cursor_value_input": { "accuracy": [ - 1734 + 2002 ], "accuracy_spotted": [ - 1734 + 2002 ], "aim_rating": [ - 795 + 1036 ], "counter_strafe_pct": [ - 1734 + 2002 ], "enemy_blind_pr": [ - 1734 + 2002 ], "flash_assists_pr": [ - 1734 + 2002 ], "hs_pct": [ - 1734 + 2002 ], "kast_pct": [ - 1734 + 2002 ], "match_id": [ - 3319 + 3587 ], "overall_rating": [ - 795 + 1036 ], "played_at": [ - 2922 + 3190 ], "positioning_rating": [ - 795 + 1036 ], "rounds": [ 34 @@ -51900,16 +56822,16 @@ export default { 162 ], "survival_pct": [ - 1734 + 2002 ], "traded_death_pct": [ - 1734 + 2002 ], "util_efficiency": [ - 1734 + 2002 ], "utility_rating": [ - 795 + 1036 ], "__typename": [ 63 @@ -51917,34 +56839,34 @@ export default { }, "player_match_performance_v_sum_fields": { "accuracy": [ - 1734 + 2002 ], "accuracy_spotted": [ - 1734 + 2002 ], "aim_rating": [ - 795 + 1036 ], "counter_strafe_pct": [ - 1734 + 2002 ], "enemy_blind_pr": [ - 1734 + 2002 ], "flash_assists_pr": [ - 1734 + 2002 ], "hs_pct": [ - 1734 + 2002 ], "kast_pct": [ - 1734 + 2002 ], "overall_rating": [ - 795 + 1036 ], "positioning_rating": [ - 795 + 1036 ], "rounds": [ 34 @@ -51953,16 +56875,16 @@ export default { 162 ], "survival_pct": [ - 1734 + 2002 ], "traded_death_pct": [ - 1734 + 2002 ], "util_efficiency": [ - 1734 + 2002 ], "utility_rating": [ - 795 + 1036 ], "__typename": [ 63 @@ -52138,13 +57060,13 @@ export default { 34 ], "avg_crosshair_angle_deg": [ - 1734 + 2002 ], "avg_flash_duration": [ - 1734 + 2002 ], "avg_time_to_damage_s": [ - 1734 + 2002 ], "counter_strafe_eligible_shots": [ 34 @@ -52234,7 +57156,7 @@ export default { 34 ], "match_id": [ - 3319 + 3587 ], "molotov_damage": [ 34 @@ -52318,7 +57240,7 @@ export default { 34 ], "utility_on_death": [ - 1734 + 2002 ], "wasted_magazine_shots": [ 34 @@ -52332,10 +57254,10 @@ export default { }, "player_match_stats_v_aggregate": { "aggregate": [ - 2263 + 2531 ], "nodes": [ - 2259 + 2527 ], "__typename": [ 63 @@ -52343,7 +57265,7 @@ export default { }, "player_match_stats_v_aggregate_bool_exp": { "count": [ - 2262 + 2530 ], "__typename": [ 63 @@ -52351,13 +57273,13 @@ export default { }, "player_match_stats_v_aggregate_bool_exp_count": { "arguments": [ - 2275 + 2543 ], "distinct": [ 3 ], "filter": [ - 2268 + 2536 ], "predicate": [ 35 @@ -52368,13 +57290,13 @@ export default { }, "player_match_stats_v_aggregate_fields": { "avg": [ - 2266 + 2534 ], "count": [ 34, { "columns": [ - 2275, + 2543, "[player_match_stats_v_select_column!]" ], "distinct": [ @@ -52383,31 +57305,31 @@ export default { } ], "max": [ - 2270 + 2538 ], "min": [ - 2272 + 2540 ], "stddev": [ - 2276 + 2544 ], "stddev_pop": [ - 2278 + 2546 ], "stddev_samp": [ - 2280 + 2548 ], "sum": [ - 2284 + 2552 ], "var_pop": [ - 2286 + 2554 ], "var_samp": [ - 2288 + 2556 ], "variance": [ - 2290 + 2558 ], "__typename": [ 63 @@ -52415,37 +57337,37 @@ export default { }, "player_match_stats_v_aggregate_order_by": { "avg": [ - 2267 + 2535 ], "count": [ - 1736 + 2004 ], "max": [ - 2271 + 2539 ], "min": [ - 2273 + 2541 ], "stddev": [ - 2277 + 2545 ], "stddev_pop": [ - 2279 + 2547 ], "stddev_samp": [ - 2281 + 2549 ], "sum": [ - 2285 + 2553 ], "var_pop": [ - 2287 + 2555 ], "var_samp": [ - 2289 + 2557 ], "variance": [ - 2291 + 2559 ], "__typename": [ 63 @@ -52453,7 +57375,7 @@ export default { }, "player_match_stats_v_arr_rel_insert_input": { "data": [ - 2269 + 2537 ], "__typename": [ 63 @@ -52661,199 +57583,199 @@ export default { }, "player_match_stats_v_avg_order_by": { "assists": [ - 1736 + 2004 ], "assists_ct": [ - 1736 + 2004 ], "assists_t": [ - 1736 + 2004 ], "avg_crosshair_angle_deg": [ - 1736 + 2004 ], "avg_flash_duration": [ - 1736 + 2004 ], "avg_time_to_damage_s": [ - 1736 + 2004 ], "counter_strafe_eligible_shots": [ - 1736 + 2004 ], "counter_strafed_shots": [ - 1736 + 2004 ], "damage": [ - 1736 + 2004 ], "damage_ct": [ - 1736 + 2004 ], "damage_t": [ - 1736 + 2004 ], "deaths": [ - 1736 + 2004 ], "deaths_ct": [ - 1736 + 2004 ], "deaths_t": [ - 1736 + 2004 ], "decoy_throws": [ - 1736 + 2004 ], "enemies_flashed": [ - 1736 + 2004 ], "first_bullet_hits": [ - 1736 + 2004 ], "first_bullet_shots": [ - 1736 + 2004 ], "five_kill_rounds": [ - 1736 + 2004 ], "flash_assists": [ - 1736 + 2004 ], "flashes_thrown": [ - 1736 + 2004 ], "four_kill_rounds": [ - 1736 + 2004 ], "he_damage": [ - 1736 + 2004 ], "he_team_damage": [ - 1736 + 2004 ], "he_throws": [ - 1736 + 2004 ], "headshot_hits": [ - 1736 + 2004 ], "hits": [ - 1736 + 2004 ], "hits_at_spotted": [ - 1736 + 2004 ], "hs_kills": [ - 1736 + 2004 ], "hs_kills_ct": [ - 1736 + 2004 ], "hs_kills_t": [ - 1736 + 2004 ], "kills": [ - 1736 + 2004 ], "kills_ct": [ - 1736 + 2004 ], "kills_t": [ - 1736 + 2004 ], "knife_kills": [ - 1736 + 2004 ], "molotov_damage": [ - 1736 + 2004 ], "molotov_throws": [ - 1736 + 2004 ], "non_awp_hits": [ - 1736 + 2004 ], "on_target_frames": [ - 1736 + 2004 ], "rounds_ct": [ - 1736 + 2004 ], "rounds_played": [ - 1736 + 2004 ], "rounds_t": [ - 1736 + 2004 ], "shots_at_spotted": [ - 1736 + 2004 ], "shots_fired": [ - 1736 + 2004 ], "smoke_throws": [ - 1736 + 2004 ], "spotted_count": [ - 1736 + 2004 ], "spotted_with_damage_count": [ - 1736 + 2004 ], "spray_hits": [ - 1736 + 2004 ], "spray_shots": [ - 1736 + 2004 ], "steam_id": [ - 1736 + 2004 ], "team_damage": [ - 1736 + 2004 ], "team_flashed": [ - 1736 + 2004 ], "three_kill_rounds": [ - 1736 + 2004 ], "total_engagement_frames": [ - 1736 + 2004 ], "trade_kill_attempts": [ - 1736 + 2004 ], "trade_kill_opportunities": [ - 1736 + 2004 ], "trade_kill_successes": [ - 1736 + 2004 ], "traded_death_attempts": [ - 1736 + 2004 ], "traded_death_opportunities": [ - 1736 + 2004 ], "traded_death_successes": [ - 1736 + 2004 ], "two_kill_rounds": [ - 1736 + 2004 ], "unused_utility_value": [ - 1736 + 2004 ], "utility_on_death": [ - 1736 + 2004 ], "wasted_magazine_shots": [ - 1736 + 2004 ], "zeus_kills": [ - 1736 + 2004 ], "__typename": [ 63 @@ -52861,13 +57783,13 @@ export default { }, "player_match_stats_v_bool_exp": { "_and": [ - 2268 + 2536 ], "_not": [ - 2268 + 2536 ], "_or": [ - 2268 + 2536 ], "assists": [ 35 @@ -52879,13 +57801,13 @@ export default { 35 ], "avg_crosshair_angle_deg": [ - 1735 + 2003 ], "avg_flash_duration": [ - 1735 + 2003 ], "avg_time_to_damage_s": [ - 1735 + 2003 ], "counter_strafe_eligible_shots": [ 35 @@ -52975,7 +57897,7 @@ export default { 35 ], "match_id": [ - 3320 + 3588 ], "molotov_damage": [ 35 @@ -53059,7 +57981,7 @@ export default { 35 ], "utility_on_death": [ - 1735 + 2003 ], "wasted_magazine_shots": [ 35 @@ -53082,13 +58004,13 @@ export default { 34 ], "avg_crosshair_angle_deg": [ - 1734 + 2002 ], "avg_flash_duration": [ - 1734 + 2002 ], "avg_time_to_damage_s": [ - 1734 + 2002 ], "counter_strafe_eligible_shots": [ 34 @@ -53178,7 +58100,7 @@ export default { 34 ], "match_id": [ - 3319 + 3587 ], "molotov_damage": [ 34 @@ -53262,7 +58184,7 @@ export default { 34 ], "utility_on_death": [ - 1734 + 2002 ], "wasted_magazine_shots": [ 34 @@ -53285,13 +58207,13 @@ export default { 34 ], "avg_crosshair_angle_deg": [ - 1734 + 2002 ], "avg_flash_duration": [ - 1734 + 2002 ], "avg_time_to_damage_s": [ - 1734 + 2002 ], "counter_strafe_eligible_shots": [ 34 @@ -53381,7 +58303,7 @@ export default { 34 ], "match_id": [ - 3319 + 3587 ], "molotov_damage": [ 34 @@ -53465,7 +58387,7 @@ export default { 34 ], "utility_on_death": [ - 1734 + 2002 ], "wasted_magazine_shots": [ 34 @@ -53479,202 +58401,202 @@ export default { }, "player_match_stats_v_max_order_by": { "assists": [ - 1736 + 2004 ], "assists_ct": [ - 1736 + 2004 ], "assists_t": [ - 1736 + 2004 ], "avg_crosshair_angle_deg": [ - 1736 + 2004 ], "avg_flash_duration": [ - 1736 + 2004 ], "avg_time_to_damage_s": [ - 1736 + 2004 ], "counter_strafe_eligible_shots": [ - 1736 + 2004 ], "counter_strafed_shots": [ - 1736 + 2004 ], "damage": [ - 1736 + 2004 ], "damage_ct": [ - 1736 + 2004 ], "damage_t": [ - 1736 + 2004 ], "deaths": [ - 1736 + 2004 ], "deaths_ct": [ - 1736 + 2004 ], "deaths_t": [ - 1736 + 2004 ], "decoy_throws": [ - 1736 + 2004 ], "enemies_flashed": [ - 1736 + 2004 ], "first_bullet_hits": [ - 1736 + 2004 ], "first_bullet_shots": [ - 1736 + 2004 ], "five_kill_rounds": [ - 1736 + 2004 ], "flash_assists": [ - 1736 + 2004 ], "flashes_thrown": [ - 1736 + 2004 ], "four_kill_rounds": [ - 1736 + 2004 ], "he_damage": [ - 1736 + 2004 ], "he_team_damage": [ - 1736 + 2004 ], "he_throws": [ - 1736 + 2004 ], "headshot_hits": [ - 1736 + 2004 ], "hits": [ - 1736 + 2004 ], "hits_at_spotted": [ - 1736 + 2004 ], "hs_kills": [ - 1736 + 2004 ], "hs_kills_ct": [ - 1736 + 2004 ], "hs_kills_t": [ - 1736 + 2004 ], "kills": [ - 1736 + 2004 ], "kills_ct": [ - 1736 + 2004 ], "kills_t": [ - 1736 + 2004 ], "knife_kills": [ - 1736 + 2004 ], "match_id": [ - 1736 + 2004 ], "molotov_damage": [ - 1736 + 2004 ], "molotov_throws": [ - 1736 + 2004 ], "non_awp_hits": [ - 1736 + 2004 ], "on_target_frames": [ - 1736 + 2004 ], "rounds_ct": [ - 1736 + 2004 ], "rounds_played": [ - 1736 + 2004 ], "rounds_t": [ - 1736 + 2004 ], "shots_at_spotted": [ - 1736 + 2004 ], "shots_fired": [ - 1736 + 2004 ], "smoke_throws": [ - 1736 + 2004 ], "spotted_count": [ - 1736 + 2004 ], "spotted_with_damage_count": [ - 1736 + 2004 ], "spray_hits": [ - 1736 + 2004 ], "spray_shots": [ - 1736 + 2004 ], "steam_id": [ - 1736 + 2004 ], "team_damage": [ - 1736 + 2004 ], "team_flashed": [ - 1736 + 2004 ], "three_kill_rounds": [ - 1736 + 2004 ], "total_engagement_frames": [ - 1736 + 2004 ], "trade_kill_attempts": [ - 1736 + 2004 ], "trade_kill_opportunities": [ - 1736 + 2004 ], "trade_kill_successes": [ - 1736 + 2004 ], "traded_death_attempts": [ - 1736 + 2004 ], "traded_death_opportunities": [ - 1736 + 2004 ], "traded_death_successes": [ - 1736 + 2004 ], "two_kill_rounds": [ - 1736 + 2004 ], "unused_utility_value": [ - 1736 + 2004 ], "utility_on_death": [ - 1736 + 2004 ], "wasted_magazine_shots": [ - 1736 + 2004 ], "zeus_kills": [ - 1736 + 2004 ], "__typename": [ 63 @@ -53691,13 +58613,13 @@ export default { 34 ], "avg_crosshair_angle_deg": [ - 1734 + 2002 ], "avg_flash_duration": [ - 1734 + 2002 ], "avg_time_to_damage_s": [ - 1734 + 2002 ], "counter_strafe_eligible_shots": [ 34 @@ -53787,7 +58709,7 @@ export default { 34 ], "match_id": [ - 3319 + 3587 ], "molotov_damage": [ 34 @@ -53871,7 +58793,7 @@ export default { 34 ], "utility_on_death": [ - 1734 + 2002 ], "wasted_magazine_shots": [ 34 @@ -53885,202 +58807,202 @@ export default { }, "player_match_stats_v_min_order_by": { "assists": [ - 1736 + 2004 ], "assists_ct": [ - 1736 + 2004 ], "assists_t": [ - 1736 + 2004 ], "avg_crosshair_angle_deg": [ - 1736 + 2004 ], "avg_flash_duration": [ - 1736 + 2004 ], "avg_time_to_damage_s": [ - 1736 + 2004 ], "counter_strafe_eligible_shots": [ - 1736 + 2004 ], "counter_strafed_shots": [ - 1736 + 2004 ], "damage": [ - 1736 + 2004 ], "damage_ct": [ - 1736 + 2004 ], "damage_t": [ - 1736 + 2004 ], "deaths": [ - 1736 + 2004 ], "deaths_ct": [ - 1736 + 2004 ], "deaths_t": [ - 1736 + 2004 ], "decoy_throws": [ - 1736 + 2004 ], "enemies_flashed": [ - 1736 + 2004 ], "first_bullet_hits": [ - 1736 + 2004 ], "first_bullet_shots": [ - 1736 + 2004 ], "five_kill_rounds": [ - 1736 + 2004 ], "flash_assists": [ - 1736 + 2004 ], "flashes_thrown": [ - 1736 + 2004 ], "four_kill_rounds": [ - 1736 + 2004 ], "he_damage": [ - 1736 + 2004 ], "he_team_damage": [ - 1736 + 2004 ], "he_throws": [ - 1736 + 2004 ], "headshot_hits": [ - 1736 + 2004 ], "hits": [ - 1736 + 2004 ], "hits_at_spotted": [ - 1736 + 2004 ], "hs_kills": [ - 1736 + 2004 ], "hs_kills_ct": [ - 1736 + 2004 ], "hs_kills_t": [ - 1736 + 2004 ], "kills": [ - 1736 + 2004 ], "kills_ct": [ - 1736 + 2004 ], "kills_t": [ - 1736 + 2004 ], "knife_kills": [ - 1736 + 2004 ], "match_id": [ - 1736 + 2004 ], "molotov_damage": [ - 1736 + 2004 ], "molotov_throws": [ - 1736 + 2004 ], "non_awp_hits": [ - 1736 + 2004 ], "on_target_frames": [ - 1736 + 2004 ], "rounds_ct": [ - 1736 + 2004 ], "rounds_played": [ - 1736 + 2004 ], "rounds_t": [ - 1736 + 2004 ], "shots_at_spotted": [ - 1736 + 2004 ], "shots_fired": [ - 1736 + 2004 ], "smoke_throws": [ - 1736 + 2004 ], "spotted_count": [ - 1736 + 2004 ], "spotted_with_damage_count": [ - 1736 + 2004 ], "spray_hits": [ - 1736 + 2004 ], "spray_shots": [ - 1736 + 2004 ], "steam_id": [ - 1736 + 2004 ], "team_damage": [ - 1736 + 2004 ], "team_flashed": [ - 1736 + 2004 ], "three_kill_rounds": [ - 1736 + 2004 ], "total_engagement_frames": [ - 1736 + 2004 ], "trade_kill_attempts": [ - 1736 + 2004 ], "trade_kill_opportunities": [ - 1736 + 2004 ], "trade_kill_successes": [ - 1736 + 2004 ], "traded_death_attempts": [ - 1736 + 2004 ], "traded_death_opportunities": [ - 1736 + 2004 ], "traded_death_successes": [ - 1736 + 2004 ], "two_kill_rounds": [ - 1736 + 2004 ], "unused_utility_value": [ - 1736 + 2004 ], "utility_on_death": [ - 1736 + 2004 ], "wasted_magazine_shots": [ - 1736 + 2004 ], "zeus_kills": [ - 1736 + 2004 ], "__typename": [ 63 @@ -54088,202 +59010,202 @@ export default { }, "player_match_stats_v_order_by": { "assists": [ - 1736 + 2004 ], "assists_ct": [ - 1736 + 2004 ], "assists_t": [ - 1736 + 2004 ], "avg_crosshair_angle_deg": [ - 1736 + 2004 ], "avg_flash_duration": [ - 1736 + 2004 ], "avg_time_to_damage_s": [ - 1736 + 2004 ], "counter_strafe_eligible_shots": [ - 1736 + 2004 ], "counter_strafed_shots": [ - 1736 + 2004 ], "damage": [ - 1736 + 2004 ], "damage_ct": [ - 1736 + 2004 ], "damage_t": [ - 1736 + 2004 ], "deaths": [ - 1736 + 2004 ], "deaths_ct": [ - 1736 + 2004 ], "deaths_t": [ - 1736 + 2004 ], "decoy_throws": [ - 1736 + 2004 ], "enemies_flashed": [ - 1736 + 2004 ], "first_bullet_hits": [ - 1736 + 2004 ], "first_bullet_shots": [ - 1736 + 2004 ], "five_kill_rounds": [ - 1736 + 2004 ], "flash_assists": [ - 1736 + 2004 ], "flashes_thrown": [ - 1736 + 2004 ], "four_kill_rounds": [ - 1736 + 2004 ], "he_damage": [ - 1736 + 2004 ], "he_team_damage": [ - 1736 + 2004 ], "he_throws": [ - 1736 + 2004 ], "headshot_hits": [ - 1736 + 2004 ], "hits": [ - 1736 + 2004 ], "hits_at_spotted": [ - 1736 + 2004 ], "hs_kills": [ - 1736 + 2004 ], "hs_kills_ct": [ - 1736 + 2004 ], "hs_kills_t": [ - 1736 + 2004 ], "kills": [ - 1736 + 2004 ], "kills_ct": [ - 1736 + 2004 ], "kills_t": [ - 1736 + 2004 ], "knife_kills": [ - 1736 + 2004 ], "match_id": [ - 1736 + 2004 ], "molotov_damage": [ - 1736 + 2004 ], "molotov_throws": [ - 1736 + 2004 ], "non_awp_hits": [ - 1736 + 2004 ], "on_target_frames": [ - 1736 + 2004 ], "rounds_ct": [ - 1736 + 2004 ], "rounds_played": [ - 1736 + 2004 ], "rounds_t": [ - 1736 + 2004 ], "shots_at_spotted": [ - 1736 + 2004 ], "shots_fired": [ - 1736 + 2004 ], "smoke_throws": [ - 1736 + 2004 ], "spotted_count": [ - 1736 + 2004 ], "spotted_with_damage_count": [ - 1736 + 2004 ], "spray_hits": [ - 1736 + 2004 ], "spray_shots": [ - 1736 + 2004 ], "steam_id": [ - 1736 + 2004 ], "team_damage": [ - 1736 + 2004 ], "team_flashed": [ - 1736 + 2004 ], "three_kill_rounds": [ - 1736 + 2004 ], "total_engagement_frames": [ - 1736 + 2004 ], "trade_kill_attempts": [ - 1736 + 2004 ], "trade_kill_opportunities": [ - 1736 + 2004 ], "trade_kill_successes": [ - 1736 + 2004 ], "traded_death_attempts": [ - 1736 + 2004 ], "traded_death_opportunities": [ - 1736 + 2004 ], "traded_death_successes": [ - 1736 + 2004 ], "two_kill_rounds": [ - 1736 + 2004 ], "unused_utility_value": [ - 1736 + 2004 ], "utility_on_death": [ - 1736 + 2004 ], "wasted_magazine_shots": [ - 1736 + 2004 ], "zeus_kills": [ - 1736 + 2004 ], "__typename": [ 63 @@ -54492,199 +59414,199 @@ export default { }, "player_match_stats_v_stddev_order_by": { "assists": [ - 1736 + 2004 ], "assists_ct": [ - 1736 + 2004 ], "assists_t": [ - 1736 + 2004 ], "avg_crosshair_angle_deg": [ - 1736 + 2004 ], "avg_flash_duration": [ - 1736 + 2004 ], "avg_time_to_damage_s": [ - 1736 + 2004 ], "counter_strafe_eligible_shots": [ - 1736 + 2004 ], "counter_strafed_shots": [ - 1736 + 2004 ], "damage": [ - 1736 + 2004 ], "damage_ct": [ - 1736 + 2004 ], "damage_t": [ - 1736 + 2004 ], "deaths": [ - 1736 + 2004 ], "deaths_ct": [ - 1736 + 2004 ], "deaths_t": [ - 1736 + 2004 ], "decoy_throws": [ - 1736 + 2004 ], "enemies_flashed": [ - 1736 + 2004 ], "first_bullet_hits": [ - 1736 + 2004 ], "first_bullet_shots": [ - 1736 + 2004 ], "five_kill_rounds": [ - 1736 + 2004 ], "flash_assists": [ - 1736 + 2004 ], "flashes_thrown": [ - 1736 + 2004 ], "four_kill_rounds": [ - 1736 + 2004 ], "he_damage": [ - 1736 + 2004 ], "he_team_damage": [ - 1736 + 2004 ], "he_throws": [ - 1736 + 2004 ], "headshot_hits": [ - 1736 + 2004 ], "hits": [ - 1736 + 2004 ], "hits_at_spotted": [ - 1736 + 2004 ], "hs_kills": [ - 1736 + 2004 ], "hs_kills_ct": [ - 1736 + 2004 ], "hs_kills_t": [ - 1736 + 2004 ], "kills": [ - 1736 + 2004 ], "kills_ct": [ - 1736 + 2004 ], "kills_t": [ - 1736 + 2004 ], "knife_kills": [ - 1736 + 2004 ], "molotov_damage": [ - 1736 + 2004 ], "molotov_throws": [ - 1736 + 2004 ], "non_awp_hits": [ - 1736 + 2004 ], "on_target_frames": [ - 1736 + 2004 ], "rounds_ct": [ - 1736 + 2004 ], "rounds_played": [ - 1736 + 2004 ], "rounds_t": [ - 1736 + 2004 ], "shots_at_spotted": [ - 1736 + 2004 ], "shots_fired": [ - 1736 + 2004 ], "smoke_throws": [ - 1736 + 2004 ], "spotted_count": [ - 1736 + 2004 ], "spotted_with_damage_count": [ - 1736 + 2004 ], "spray_hits": [ - 1736 + 2004 ], "spray_shots": [ - 1736 + 2004 ], "steam_id": [ - 1736 + 2004 ], "team_damage": [ - 1736 + 2004 ], "team_flashed": [ - 1736 + 2004 ], "three_kill_rounds": [ - 1736 + 2004 ], "total_engagement_frames": [ - 1736 + 2004 ], "trade_kill_attempts": [ - 1736 + 2004 ], "trade_kill_opportunities": [ - 1736 + 2004 ], "trade_kill_successes": [ - 1736 + 2004 ], "traded_death_attempts": [ - 1736 + 2004 ], "traded_death_opportunities": [ - 1736 + 2004 ], "traded_death_successes": [ - 1736 + 2004 ], "two_kill_rounds": [ - 1736 + 2004 ], "unused_utility_value": [ - 1736 + 2004 ], "utility_on_death": [ - 1736 + 2004 ], "wasted_magazine_shots": [ - 1736 + 2004 ], "zeus_kills": [ - 1736 + 2004 ], "__typename": [ 63 @@ -54892,199 +59814,199 @@ export default { }, "player_match_stats_v_stddev_pop_order_by": { "assists": [ - 1736 + 2004 ], "assists_ct": [ - 1736 + 2004 ], "assists_t": [ - 1736 + 2004 ], "avg_crosshair_angle_deg": [ - 1736 + 2004 ], "avg_flash_duration": [ - 1736 + 2004 ], "avg_time_to_damage_s": [ - 1736 + 2004 ], "counter_strafe_eligible_shots": [ - 1736 + 2004 ], "counter_strafed_shots": [ - 1736 + 2004 ], "damage": [ - 1736 + 2004 ], "damage_ct": [ - 1736 + 2004 ], "damage_t": [ - 1736 + 2004 ], "deaths": [ - 1736 + 2004 ], "deaths_ct": [ - 1736 + 2004 ], "deaths_t": [ - 1736 + 2004 ], "decoy_throws": [ - 1736 + 2004 ], "enemies_flashed": [ - 1736 + 2004 ], "first_bullet_hits": [ - 1736 + 2004 ], "first_bullet_shots": [ - 1736 + 2004 ], "five_kill_rounds": [ - 1736 + 2004 ], "flash_assists": [ - 1736 + 2004 ], "flashes_thrown": [ - 1736 + 2004 ], "four_kill_rounds": [ - 1736 + 2004 ], "he_damage": [ - 1736 + 2004 ], "he_team_damage": [ - 1736 + 2004 ], "he_throws": [ - 1736 + 2004 ], "headshot_hits": [ - 1736 + 2004 ], "hits": [ - 1736 + 2004 ], "hits_at_spotted": [ - 1736 + 2004 ], "hs_kills": [ - 1736 + 2004 ], "hs_kills_ct": [ - 1736 + 2004 ], "hs_kills_t": [ - 1736 + 2004 ], "kills": [ - 1736 + 2004 ], "kills_ct": [ - 1736 + 2004 ], "kills_t": [ - 1736 + 2004 ], "knife_kills": [ - 1736 + 2004 ], "molotov_damage": [ - 1736 + 2004 ], "molotov_throws": [ - 1736 + 2004 ], "non_awp_hits": [ - 1736 + 2004 ], "on_target_frames": [ - 1736 + 2004 ], "rounds_ct": [ - 1736 + 2004 ], "rounds_played": [ - 1736 + 2004 ], "rounds_t": [ - 1736 + 2004 ], "shots_at_spotted": [ - 1736 + 2004 ], "shots_fired": [ - 1736 + 2004 ], "smoke_throws": [ - 1736 + 2004 ], "spotted_count": [ - 1736 + 2004 ], "spotted_with_damage_count": [ - 1736 + 2004 ], "spray_hits": [ - 1736 + 2004 ], "spray_shots": [ - 1736 + 2004 ], "steam_id": [ - 1736 + 2004 ], "team_damage": [ - 1736 + 2004 ], "team_flashed": [ - 1736 + 2004 ], "three_kill_rounds": [ - 1736 + 2004 ], "total_engagement_frames": [ - 1736 + 2004 ], "trade_kill_attempts": [ - 1736 + 2004 ], "trade_kill_opportunities": [ - 1736 + 2004 ], "trade_kill_successes": [ - 1736 + 2004 ], "traded_death_attempts": [ - 1736 + 2004 ], "traded_death_opportunities": [ - 1736 + 2004 ], "traded_death_successes": [ - 1736 + 2004 ], "two_kill_rounds": [ - 1736 + 2004 ], "unused_utility_value": [ - 1736 + 2004 ], "utility_on_death": [ - 1736 + 2004 ], "wasted_magazine_shots": [ - 1736 + 2004 ], "zeus_kills": [ - 1736 + 2004 ], "__typename": [ 63 @@ -55292,199 +60214,199 @@ export default { }, "player_match_stats_v_stddev_samp_order_by": { "assists": [ - 1736 + 2004 ], "assists_ct": [ - 1736 + 2004 ], "assists_t": [ - 1736 + 2004 ], "avg_crosshair_angle_deg": [ - 1736 + 2004 ], "avg_flash_duration": [ - 1736 + 2004 ], "avg_time_to_damage_s": [ - 1736 + 2004 ], "counter_strafe_eligible_shots": [ - 1736 + 2004 ], "counter_strafed_shots": [ - 1736 + 2004 ], "damage": [ - 1736 + 2004 ], "damage_ct": [ - 1736 + 2004 ], "damage_t": [ - 1736 + 2004 ], "deaths": [ - 1736 + 2004 ], "deaths_ct": [ - 1736 + 2004 ], "deaths_t": [ - 1736 + 2004 ], "decoy_throws": [ - 1736 + 2004 ], "enemies_flashed": [ - 1736 + 2004 ], "first_bullet_hits": [ - 1736 + 2004 ], "first_bullet_shots": [ - 1736 + 2004 ], "five_kill_rounds": [ - 1736 + 2004 ], "flash_assists": [ - 1736 + 2004 ], "flashes_thrown": [ - 1736 + 2004 ], "four_kill_rounds": [ - 1736 + 2004 ], "he_damage": [ - 1736 + 2004 ], "he_team_damage": [ - 1736 + 2004 ], "he_throws": [ - 1736 + 2004 ], "headshot_hits": [ - 1736 + 2004 ], "hits": [ - 1736 + 2004 ], "hits_at_spotted": [ - 1736 + 2004 ], "hs_kills": [ - 1736 + 2004 ], "hs_kills_ct": [ - 1736 + 2004 ], "hs_kills_t": [ - 1736 + 2004 ], "kills": [ - 1736 + 2004 ], "kills_ct": [ - 1736 + 2004 ], "kills_t": [ - 1736 + 2004 ], "knife_kills": [ - 1736 + 2004 ], "molotov_damage": [ - 1736 + 2004 ], "molotov_throws": [ - 1736 + 2004 ], "non_awp_hits": [ - 1736 + 2004 ], "on_target_frames": [ - 1736 + 2004 ], "rounds_ct": [ - 1736 + 2004 ], "rounds_played": [ - 1736 + 2004 ], "rounds_t": [ - 1736 + 2004 ], "shots_at_spotted": [ - 1736 + 2004 ], "shots_fired": [ - 1736 + 2004 ], "smoke_throws": [ - 1736 + 2004 ], "spotted_count": [ - 1736 + 2004 ], "spotted_with_damage_count": [ - 1736 + 2004 ], "spray_hits": [ - 1736 + 2004 ], "spray_shots": [ - 1736 + 2004 ], "steam_id": [ - 1736 + 2004 ], "team_damage": [ - 1736 + 2004 ], "team_flashed": [ - 1736 + 2004 ], "three_kill_rounds": [ - 1736 + 2004 ], "total_engagement_frames": [ - 1736 + 2004 ], "trade_kill_attempts": [ - 1736 + 2004 ], "trade_kill_opportunities": [ - 1736 + 2004 ], "trade_kill_successes": [ - 1736 + 2004 ], "traded_death_attempts": [ - 1736 + 2004 ], "traded_death_opportunities": [ - 1736 + 2004 ], "traded_death_successes": [ - 1736 + 2004 ], "two_kill_rounds": [ - 1736 + 2004 ], "unused_utility_value": [ - 1736 + 2004 ], "utility_on_death": [ - 1736 + 2004 ], "wasted_magazine_shots": [ - 1736 + 2004 ], "zeus_kills": [ - 1736 + 2004 ], "__typename": [ 63 @@ -55492,7 +60414,7 @@ export default { }, "player_match_stats_v_stream_cursor_input": { "initial_value": [ - 2283 + 2551 ], "ordering": [ 216 @@ -55512,13 +60434,13 @@ export default { 34 ], "avg_crosshair_angle_deg": [ - 1734 + 2002 ], "avg_flash_duration": [ - 1734 + 2002 ], "avg_time_to_damage_s": [ - 1734 + 2002 ], "counter_strafe_eligible_shots": [ 34 @@ -55608,7 +60530,7 @@ export default { 34 ], "match_id": [ - 3319 + 3587 ], "molotov_damage": [ 34 @@ -55692,7 +60614,7 @@ export default { 34 ], "utility_on_death": [ - 1734 + 2002 ], "wasted_magazine_shots": [ 34 @@ -55715,13 +60637,13 @@ export default { 34 ], "avg_crosshair_angle_deg": [ - 1734 + 2002 ], "avg_flash_duration": [ - 1734 + 2002 ], "avg_time_to_damage_s": [ - 1734 + 2002 ], "counter_strafe_eligible_shots": [ 34 @@ -55892,7 +60814,7 @@ export default { 34 ], "utility_on_death": [ - 1734 + 2002 ], "wasted_magazine_shots": [ 34 @@ -55906,199 +60828,199 @@ export default { }, "player_match_stats_v_sum_order_by": { "assists": [ - 1736 + 2004 ], "assists_ct": [ - 1736 + 2004 ], "assists_t": [ - 1736 + 2004 ], "avg_crosshair_angle_deg": [ - 1736 + 2004 ], "avg_flash_duration": [ - 1736 + 2004 ], "avg_time_to_damage_s": [ - 1736 + 2004 ], "counter_strafe_eligible_shots": [ - 1736 + 2004 ], "counter_strafed_shots": [ - 1736 + 2004 ], "damage": [ - 1736 + 2004 ], "damage_ct": [ - 1736 + 2004 ], "damage_t": [ - 1736 + 2004 ], "deaths": [ - 1736 + 2004 ], "deaths_ct": [ - 1736 + 2004 ], "deaths_t": [ - 1736 + 2004 ], "decoy_throws": [ - 1736 + 2004 ], "enemies_flashed": [ - 1736 + 2004 ], "first_bullet_hits": [ - 1736 + 2004 ], "first_bullet_shots": [ - 1736 + 2004 ], "five_kill_rounds": [ - 1736 + 2004 ], "flash_assists": [ - 1736 + 2004 ], "flashes_thrown": [ - 1736 + 2004 ], "four_kill_rounds": [ - 1736 + 2004 ], "he_damage": [ - 1736 + 2004 ], "he_team_damage": [ - 1736 + 2004 ], "he_throws": [ - 1736 + 2004 ], "headshot_hits": [ - 1736 + 2004 ], "hits": [ - 1736 + 2004 ], "hits_at_spotted": [ - 1736 + 2004 ], "hs_kills": [ - 1736 + 2004 ], "hs_kills_ct": [ - 1736 + 2004 ], "hs_kills_t": [ - 1736 + 2004 ], "kills": [ - 1736 + 2004 ], "kills_ct": [ - 1736 + 2004 ], "kills_t": [ - 1736 + 2004 ], "knife_kills": [ - 1736 + 2004 ], "molotov_damage": [ - 1736 + 2004 ], "molotov_throws": [ - 1736 + 2004 ], "non_awp_hits": [ - 1736 + 2004 ], "on_target_frames": [ - 1736 + 2004 ], "rounds_ct": [ - 1736 + 2004 ], "rounds_played": [ - 1736 + 2004 ], "rounds_t": [ - 1736 + 2004 ], "shots_at_spotted": [ - 1736 + 2004 ], "shots_fired": [ - 1736 + 2004 ], "smoke_throws": [ - 1736 + 2004 ], "spotted_count": [ - 1736 + 2004 ], "spotted_with_damage_count": [ - 1736 + 2004 ], "spray_hits": [ - 1736 + 2004 ], "spray_shots": [ - 1736 + 2004 ], "steam_id": [ - 1736 + 2004 ], "team_damage": [ - 1736 + 2004 ], "team_flashed": [ - 1736 + 2004 ], "three_kill_rounds": [ - 1736 + 2004 ], "total_engagement_frames": [ - 1736 + 2004 ], "trade_kill_attempts": [ - 1736 + 2004 ], "trade_kill_opportunities": [ - 1736 + 2004 ], "trade_kill_successes": [ - 1736 + 2004 ], "traded_death_attempts": [ - 1736 + 2004 ], "traded_death_opportunities": [ - 1736 + 2004 ], "traded_death_successes": [ - 1736 + 2004 ], "two_kill_rounds": [ - 1736 + 2004 ], "unused_utility_value": [ - 1736 + 2004 ], "utility_on_death": [ - 1736 + 2004 ], "wasted_magazine_shots": [ - 1736 + 2004 ], "zeus_kills": [ - 1736 + 2004 ], "__typename": [ 63 @@ -56306,199 +61228,199 @@ export default { }, "player_match_stats_v_var_pop_order_by": { "assists": [ - 1736 + 2004 ], "assists_ct": [ - 1736 + 2004 ], "assists_t": [ - 1736 + 2004 ], "avg_crosshair_angle_deg": [ - 1736 + 2004 ], "avg_flash_duration": [ - 1736 + 2004 ], "avg_time_to_damage_s": [ - 1736 + 2004 ], "counter_strafe_eligible_shots": [ - 1736 + 2004 ], "counter_strafed_shots": [ - 1736 + 2004 ], "damage": [ - 1736 + 2004 ], "damage_ct": [ - 1736 + 2004 ], "damage_t": [ - 1736 + 2004 ], "deaths": [ - 1736 + 2004 ], "deaths_ct": [ - 1736 + 2004 ], "deaths_t": [ - 1736 + 2004 ], "decoy_throws": [ - 1736 + 2004 ], "enemies_flashed": [ - 1736 + 2004 ], "first_bullet_hits": [ - 1736 + 2004 ], "first_bullet_shots": [ - 1736 + 2004 ], "five_kill_rounds": [ - 1736 + 2004 ], "flash_assists": [ - 1736 + 2004 ], "flashes_thrown": [ - 1736 + 2004 ], "four_kill_rounds": [ - 1736 + 2004 ], "he_damage": [ - 1736 + 2004 ], "he_team_damage": [ - 1736 + 2004 ], "he_throws": [ - 1736 + 2004 ], "headshot_hits": [ - 1736 + 2004 ], "hits": [ - 1736 + 2004 ], "hits_at_spotted": [ - 1736 + 2004 ], "hs_kills": [ - 1736 + 2004 ], "hs_kills_ct": [ - 1736 + 2004 ], "hs_kills_t": [ - 1736 + 2004 ], "kills": [ - 1736 + 2004 ], "kills_ct": [ - 1736 + 2004 ], "kills_t": [ - 1736 + 2004 ], "knife_kills": [ - 1736 + 2004 ], "molotov_damage": [ - 1736 + 2004 ], "molotov_throws": [ - 1736 + 2004 ], "non_awp_hits": [ - 1736 + 2004 ], "on_target_frames": [ - 1736 + 2004 ], "rounds_ct": [ - 1736 + 2004 ], "rounds_played": [ - 1736 + 2004 ], "rounds_t": [ - 1736 + 2004 ], "shots_at_spotted": [ - 1736 + 2004 ], "shots_fired": [ - 1736 + 2004 ], "smoke_throws": [ - 1736 + 2004 ], "spotted_count": [ - 1736 + 2004 ], "spotted_with_damage_count": [ - 1736 + 2004 ], "spray_hits": [ - 1736 + 2004 ], "spray_shots": [ - 1736 + 2004 ], "steam_id": [ - 1736 + 2004 ], "team_damage": [ - 1736 + 2004 ], "team_flashed": [ - 1736 + 2004 ], "three_kill_rounds": [ - 1736 + 2004 ], "total_engagement_frames": [ - 1736 + 2004 ], "trade_kill_attempts": [ - 1736 + 2004 ], "trade_kill_opportunities": [ - 1736 + 2004 ], "trade_kill_successes": [ - 1736 + 2004 ], "traded_death_attempts": [ - 1736 + 2004 ], "traded_death_opportunities": [ - 1736 + 2004 ], "traded_death_successes": [ - 1736 + 2004 ], "two_kill_rounds": [ - 1736 + 2004 ], "unused_utility_value": [ - 1736 + 2004 ], "utility_on_death": [ - 1736 + 2004 ], "wasted_magazine_shots": [ - 1736 + 2004 ], "zeus_kills": [ - 1736 + 2004 ], "__typename": [ 63 @@ -56706,199 +61628,199 @@ export default { }, "player_match_stats_v_var_samp_order_by": { "assists": [ - 1736 + 2004 ], "assists_ct": [ - 1736 + 2004 ], "assists_t": [ - 1736 + 2004 ], "avg_crosshair_angle_deg": [ - 1736 + 2004 ], "avg_flash_duration": [ - 1736 + 2004 ], "avg_time_to_damage_s": [ - 1736 + 2004 ], "counter_strafe_eligible_shots": [ - 1736 + 2004 ], "counter_strafed_shots": [ - 1736 + 2004 ], "damage": [ - 1736 + 2004 ], "damage_ct": [ - 1736 + 2004 ], "damage_t": [ - 1736 + 2004 ], "deaths": [ - 1736 + 2004 ], "deaths_ct": [ - 1736 + 2004 ], "deaths_t": [ - 1736 + 2004 ], "decoy_throws": [ - 1736 + 2004 ], "enemies_flashed": [ - 1736 + 2004 ], "first_bullet_hits": [ - 1736 + 2004 ], "first_bullet_shots": [ - 1736 + 2004 ], "five_kill_rounds": [ - 1736 + 2004 ], "flash_assists": [ - 1736 + 2004 ], "flashes_thrown": [ - 1736 + 2004 ], "four_kill_rounds": [ - 1736 + 2004 ], "he_damage": [ - 1736 + 2004 ], "he_team_damage": [ - 1736 + 2004 ], "he_throws": [ - 1736 + 2004 ], "headshot_hits": [ - 1736 + 2004 ], "hits": [ - 1736 + 2004 ], "hits_at_spotted": [ - 1736 + 2004 ], "hs_kills": [ - 1736 + 2004 ], "hs_kills_ct": [ - 1736 + 2004 ], "hs_kills_t": [ - 1736 + 2004 ], "kills": [ - 1736 + 2004 ], "kills_ct": [ - 1736 + 2004 ], "kills_t": [ - 1736 + 2004 ], "knife_kills": [ - 1736 + 2004 ], "molotov_damage": [ - 1736 + 2004 ], "molotov_throws": [ - 1736 + 2004 ], "non_awp_hits": [ - 1736 + 2004 ], "on_target_frames": [ - 1736 + 2004 ], "rounds_ct": [ - 1736 + 2004 ], "rounds_played": [ - 1736 + 2004 ], "rounds_t": [ - 1736 + 2004 ], "shots_at_spotted": [ - 1736 + 2004 ], "shots_fired": [ - 1736 + 2004 ], "smoke_throws": [ - 1736 + 2004 ], "spotted_count": [ - 1736 + 2004 ], "spotted_with_damage_count": [ - 1736 + 2004 ], "spray_hits": [ - 1736 + 2004 ], "spray_shots": [ - 1736 + 2004 ], "steam_id": [ - 1736 + 2004 ], "team_damage": [ - 1736 + 2004 ], "team_flashed": [ - 1736 + 2004 ], "three_kill_rounds": [ - 1736 + 2004 ], "total_engagement_frames": [ - 1736 + 2004 ], "trade_kill_attempts": [ - 1736 + 2004 ], "trade_kill_opportunities": [ - 1736 + 2004 ], "trade_kill_successes": [ - 1736 + 2004 ], "traded_death_attempts": [ - 1736 + 2004 ], "traded_death_opportunities": [ - 1736 + 2004 ], "traded_death_successes": [ - 1736 + 2004 ], "two_kill_rounds": [ - 1736 + 2004 ], "unused_utility_value": [ - 1736 + 2004 ], "utility_on_death": [ - 1736 + 2004 ], "wasted_magazine_shots": [ - 1736 + 2004 ], "zeus_kills": [ - 1736 + 2004 ], "__typename": [ 63 @@ -57106,199 +62028,199 @@ export default { }, "player_match_stats_v_variance_order_by": { "assists": [ - 1736 + 2004 ], "assists_ct": [ - 1736 + 2004 ], "assists_t": [ - 1736 + 2004 ], "avg_crosshair_angle_deg": [ - 1736 + 2004 ], "avg_flash_duration": [ - 1736 + 2004 ], "avg_time_to_damage_s": [ - 1736 + 2004 ], "counter_strafe_eligible_shots": [ - 1736 + 2004 ], "counter_strafed_shots": [ - 1736 + 2004 ], "damage": [ - 1736 + 2004 ], "damage_ct": [ - 1736 + 2004 ], "damage_t": [ - 1736 + 2004 ], "deaths": [ - 1736 + 2004 ], "deaths_ct": [ - 1736 + 2004 ], "deaths_t": [ - 1736 + 2004 ], "decoy_throws": [ - 1736 + 2004 ], "enemies_flashed": [ - 1736 + 2004 ], "first_bullet_hits": [ - 1736 + 2004 ], "first_bullet_shots": [ - 1736 + 2004 ], "five_kill_rounds": [ - 1736 + 2004 ], "flash_assists": [ - 1736 + 2004 ], "flashes_thrown": [ - 1736 + 2004 ], "four_kill_rounds": [ - 1736 + 2004 ], "he_damage": [ - 1736 + 2004 ], "he_team_damage": [ - 1736 + 2004 ], "he_throws": [ - 1736 + 2004 ], "headshot_hits": [ - 1736 + 2004 ], "hits": [ - 1736 + 2004 ], "hits_at_spotted": [ - 1736 + 2004 ], "hs_kills": [ - 1736 + 2004 ], "hs_kills_ct": [ - 1736 + 2004 ], "hs_kills_t": [ - 1736 + 2004 ], "kills": [ - 1736 + 2004 ], "kills_ct": [ - 1736 + 2004 ], "kills_t": [ - 1736 + 2004 ], "knife_kills": [ - 1736 + 2004 ], "molotov_damage": [ - 1736 + 2004 ], "molotov_throws": [ - 1736 + 2004 ], "non_awp_hits": [ - 1736 + 2004 ], "on_target_frames": [ - 1736 + 2004 ], "rounds_ct": [ - 1736 + 2004 ], "rounds_played": [ - 1736 + 2004 ], "rounds_t": [ - 1736 + 2004 ], "shots_at_spotted": [ - 1736 + 2004 ], "shots_fired": [ - 1736 + 2004 ], "smoke_throws": [ - 1736 + 2004 ], "spotted_count": [ - 1736 + 2004 ], "spotted_with_damage_count": [ - 1736 + 2004 ], "spray_hits": [ - 1736 + 2004 ], "spray_shots": [ - 1736 + 2004 ], "steam_id": [ - 1736 + 2004 ], "team_damage": [ - 1736 + 2004 ], "team_flashed": [ - 1736 + 2004 ], "three_kill_rounds": [ - 1736 + 2004 ], "total_engagement_frames": [ - 1736 + 2004 ], "trade_kill_attempts": [ - 1736 + 2004 ], "trade_kill_opportunities": [ - 1736 + 2004 ], "trade_kill_successes": [ - 1736 + 2004 ], "traded_death_attempts": [ - 1736 + 2004 ], "traded_death_opportunities": [ - 1736 + 2004 ], "traded_death_successes": [ - 1736 + 2004 ], "two_kill_rounds": [ - 1736 + 2004 ], "unused_utility_value": [ - 1736 + 2004 ], "utility_on_death": [ - 1736 + 2004 ], "wasted_magazine_shots": [ - 1736 + 2004 ], "zeus_kills": [ - 1736 + 2004 ], "__typename": [ 63 @@ -57306,22 +62228,22 @@ export default { }, "player_objectives": { "deleted_at": [ - 2922 + 3190 ], "match": [ - 1578 + 1819 ], "match_id": [ - 3319 + 3587 ], "match_map": [ - 1416 + 1657 ], "match_map_id": [ - 3319 + 3587 ], "player": [ - 2603 + 2871 ], "player_steam_id": [ 162 @@ -57330,10 +62252,10 @@ export default { 34 ], "time": [ - 2922 + 3190 ], "type": [ - 516 + 757 ], "__typename": [ 63 @@ -57341,10 +62263,10 @@ export default { }, "player_objectives_aggregate": { "aggregate": [ - 2296 + 2564 ], "nodes": [ - 2292 + 2560 ], "__typename": [ 63 @@ -57352,7 +62274,7 @@ export default { }, "player_objectives_aggregate_bool_exp": { "count": [ - 2295 + 2563 ], "__typename": [ 63 @@ -57360,13 +62282,13 @@ export default { }, "player_objectives_aggregate_bool_exp_count": { "arguments": [ - 2313 + 2581 ], "distinct": [ 3 ], "filter": [ - 2301 + 2569 ], "predicate": [ 35 @@ -57377,13 +62299,13 @@ export default { }, "player_objectives_aggregate_fields": { "avg": [ - 2299 + 2567 ], "count": [ 34, { "columns": [ - 2313, + 2581, "[player_objectives_select_column!]" ], "distinct": [ @@ -57392,31 +62314,31 @@ export default { } ], "max": [ - 2305 + 2573 ], "min": [ - 2307 + 2575 ], "stddev": [ - 2315 + 2583 ], "stddev_pop": [ - 2317 + 2585 ], "stddev_samp": [ - 2319 + 2587 ], "sum": [ - 2323 + 2591 ], "var_pop": [ - 2327 + 2595 ], "var_samp": [ - 2329 + 2597 ], "variance": [ - 2331 + 2599 ], "__typename": [ 63 @@ -57424,37 +62346,37 @@ export default { }, "player_objectives_aggregate_order_by": { "avg": [ - 2300 + 2568 ], "count": [ - 1736 + 2004 ], "max": [ - 2306 + 2574 ], "min": [ - 2308 + 2576 ], "stddev": [ - 2316 + 2584 ], "stddev_pop": [ - 2318 + 2586 ], "stddev_samp": [ - 2320 + 2588 ], "sum": [ - 2324 + 2592 ], "var_pop": [ - 2328 + 2596 ], "var_samp": [ - 2330 + 2598 ], "variance": [ - 2332 + 2600 ], "__typename": [ 63 @@ -57462,10 +62384,10 @@ export default { }, "player_objectives_arr_rel_insert_input": { "data": [ - 2304 + 2572 ], "on_conflict": [ - 2310 + 2578 ], "__typename": [ 63 @@ -57484,10 +62406,10 @@ export default { }, "player_objectives_avg_order_by": { "player_steam_id": [ - 1736 + 2004 ], "round": [ - 1736 + 2004 ], "__typename": [ 63 @@ -57495,31 +62417,31 @@ export default { }, "player_objectives_bool_exp": { "_and": [ - 2301 + 2569 ], "_not": [ - 2301 + 2569 ], "_or": [ - 2301 + 2569 ], "deleted_at": [ - 2923 + 3191 ], "match": [ - 1587 + 1828 ], "match_id": [ - 3320 + 3588 ], "match_map": [ - 1425 + 1666 ], "match_map_id": [ - 3320 + 3588 ], "player": [ - 2607 + 2875 ], "player_steam_id": [ 163 @@ -57528,10 +62450,10 @@ export default { 35 ], "time": [ - 2923 + 3191 ], "type": [ - 517 + 758 ], "__typename": [ 63 @@ -57551,22 +62473,22 @@ export default { }, "player_objectives_insert_input": { "deleted_at": [ - 2922 + 3190 ], "match": [ - 1596 + 1837 ], "match_id": [ - 3319 + 3587 ], "match_map": [ - 1434 + 1675 ], "match_map_id": [ - 3319 + 3587 ], "player": [ - 2614 + 2882 ], "player_steam_id": [ 162 @@ -57575,10 +62497,10 @@ export default { 34 ], "time": [ - 2922 + 3190 ], "type": [ - 516 + 757 ], "__typename": [ 63 @@ -57586,13 +62508,13 @@ export default { }, "player_objectives_max_fields": { "deleted_at": [ - 2922 + 3190 ], "match_id": [ - 3319 + 3587 ], "match_map_id": [ - 3319 + 3587 ], "player_steam_id": [ 162 @@ -57601,7 +62523,7 @@ export default { 34 ], "time": [ - 2922 + 3190 ], "__typename": [ 63 @@ -57609,22 +62531,22 @@ export default { }, "player_objectives_max_order_by": { "deleted_at": [ - 1736 + 2004 ], "match_id": [ - 1736 + 2004 ], "match_map_id": [ - 1736 + 2004 ], "player_steam_id": [ - 1736 + 2004 ], "round": [ - 1736 + 2004 ], "time": [ - 1736 + 2004 ], "__typename": [ 63 @@ -57632,13 +62554,13 @@ export default { }, "player_objectives_min_fields": { "deleted_at": [ - 2922 + 3190 ], "match_id": [ - 3319 + 3587 ], "match_map_id": [ - 3319 + 3587 ], "player_steam_id": [ 162 @@ -57647,7 +62569,7 @@ export default { 34 ], "time": [ - 2922 + 3190 ], "__typename": [ 63 @@ -57655,22 +62577,22 @@ export default { }, "player_objectives_min_order_by": { "deleted_at": [ - 1736 + 2004 ], "match_id": [ - 1736 + 2004 ], "match_map_id": [ - 1736 + 2004 ], "player_steam_id": [ - 1736 + 2004 ], "round": [ - 1736 + 2004 ], "time": [ - 1736 + 2004 ], "__typename": [ 63 @@ -57681,7 +62603,7 @@ export default { 34 ], "returning": [ - 2292 + 2560 ], "__typename": [ 63 @@ -57689,13 +62611,13 @@ export default { }, "player_objectives_on_conflict": { "constraint": [ - 2302 + 2570 ], "update_columns": [ - 2325 + 2593 ], "where": [ - 2301 + 2569 ], "__typename": [ 63 @@ -57703,34 +62625,34 @@ export default { }, "player_objectives_order_by": { "deleted_at": [ - 1736 + 2004 ], "match": [ - 1598 + 1839 ], "match_id": [ - 1736 + 2004 ], "match_map": [ - 1436 + 1677 ], "match_map_id": [ - 1736 + 2004 ], "player": [ - 2616 + 2884 ], "player_steam_id": [ - 1736 + 2004 ], "round": [ - 1736 + 2004 ], "time": [ - 1736 + 2004 ], "type": [ - 1736 + 2004 ], "__typename": [ 63 @@ -57738,13 +62660,13 @@ export default { }, "player_objectives_pk_columns_input": { "match_map_id": [ - 3319 + 3587 ], "player_steam_id": [ 162 ], "time": [ - 2922 + 3190 ], "__typename": [ 63 @@ -57753,13 +62675,13 @@ export default { "player_objectives_select_column": {}, "player_objectives_set_input": { "deleted_at": [ - 2922 + 3190 ], "match_id": [ - 3319 + 3587 ], "match_map_id": [ - 3319 + 3587 ], "player_steam_id": [ 162 @@ -57768,10 +62690,10 @@ export default { 34 ], "time": [ - 2922 + 3190 ], "type": [ - 516 + 757 ], "__typename": [ 63 @@ -57790,10 +62712,10 @@ export default { }, "player_objectives_stddev_order_by": { "player_steam_id": [ - 1736 + 2004 ], "round": [ - 1736 + 2004 ], "__typename": [ 63 @@ -57812,10 +62734,10 @@ export default { }, "player_objectives_stddev_pop_order_by": { "player_steam_id": [ - 1736 + 2004 ], "round": [ - 1736 + 2004 ], "__typename": [ 63 @@ -57834,10 +62756,10 @@ export default { }, "player_objectives_stddev_samp_order_by": { "player_steam_id": [ - 1736 + 2004 ], "round": [ - 1736 + 2004 ], "__typename": [ 63 @@ -57845,7 +62767,7 @@ export default { }, "player_objectives_stream_cursor_input": { "initial_value": [ - 2322 + 2590 ], "ordering": [ 216 @@ -57856,13 +62778,13 @@ export default { }, "player_objectives_stream_cursor_value_input": { "deleted_at": [ - 2922 + 3190 ], "match_id": [ - 3319 + 3587 ], "match_map_id": [ - 3319 + 3587 ], "player_steam_id": [ 162 @@ -57871,10 +62793,10 @@ export default { 34 ], "time": [ - 2922 + 3190 ], "type": [ - 516 + 757 ], "__typename": [ 63 @@ -57893,10 +62815,10 @@ export default { }, "player_objectives_sum_order_by": { "player_steam_id": [ - 1736 + 2004 ], "round": [ - 1736 + 2004 ], "__typename": [ 63 @@ -57905,13 +62827,13 @@ export default { "player_objectives_update_column": {}, "player_objectives_updates": { "_inc": [ - 2303 + 2571 ], "_set": [ - 2314 + 2582 ], "where": [ - 2301 + 2569 ], "__typename": [ 63 @@ -57930,10 +62852,10 @@ export default { }, "player_objectives_var_pop_order_by": { "player_steam_id": [ - 1736 + 2004 ], "round": [ - 1736 + 2004 ], "__typename": [ 63 @@ -57952,10 +62874,10 @@ export default { }, "player_objectives_var_samp_order_by": { "player_steam_id": [ - 1736 + 2004 ], "round": [ - 1736 + 2004 ], "__typename": [ 63 @@ -57974,10 +62896,10 @@ export default { }, "player_objectives_variance_order_by": { "player_steam_id": [ - 1736 + 2004 ], "round": [ - 1736 + 2004 ], "__typename": [ 63 @@ -57985,13 +62907,13 @@ export default { }, "player_performance_v": { "accuracy_score": [ - 795 + 1036 ], "aim_goal": [ - 795 + 1036 ], "aim_rating": [ - 795 + 1036 ], "band": [ 34 @@ -58000,31 +62922,31 @@ export default { 162 ], "blind_score": [ - 795 + 1036 ], "counter_strafe_score": [ - 795 + 1036 ], "crosshair_score": [ - 795 + 1036 ], "flash_assists_score": [ - 795 + 1036 ], "hs_score": [ - 795 + 1036 ], "kast_score": [ - 795 + 1036 ], "maps": [ 34 ], "positioning_goal": [ - 795 + 1036 ], "positioning_rating": [ - 795 + 1036 ], "premier_rank": [ 34 @@ -58033,28 +62955,28 @@ export default { 34 ], "spotted_score": [ - 795 + 1036 ], "steam_id": [ 162 ], "survival_score": [ - 795 + 1036 ], "traded_score": [ - 795 + 1036 ], "ttd_score": [ - 795 + 1036 ], "util_eff_score": [ - 795 + 1036 ], "utility_goal": [ - 795 + 1036 ], "utility_rating": [ - 795 + 1036 ], "__typename": [ 63 @@ -58062,10 +62984,10 @@ export default { }, "player_performance_v_aggregate": { "aggregate": [ - 2335 + 2603 ], "nodes": [ - 2333 + 2601 ], "__typename": [ 63 @@ -58073,13 +62995,13 @@ export default { }, "player_performance_v_aggregate_fields": { "avg": [ - 2336 + 2604 ], "count": [ 34, { "columns": [ - 2341, + 2609, "[player_performance_v_select_column!]" ], "distinct": [ @@ -58088,31 +63010,31 @@ export default { } ], "max": [ - 2338 + 2606 ], "min": [ - 2339 + 2607 ], "stddev": [ - 2342 + 2610 ], "stddev_pop": [ - 2343 + 2611 ], "stddev_samp": [ - 2344 + 2612 ], "sum": [ - 2347 + 2615 ], "var_pop": [ - 2348 + 2616 ], "var_samp": [ - 2349 + 2617 ], "variance": [ - 2350 + 2618 ], "__typename": [ 63 @@ -58197,22 +63119,22 @@ export default { }, "player_performance_v_bool_exp": { "_and": [ - 2337 + 2605 ], "_not": [ - 2337 + 2605 ], "_or": [ - 2337 + 2605 ], "accuracy_score": [ - 796 + 1037 ], "aim_goal": [ - 796 + 1037 ], "aim_rating": [ - 796 + 1037 ], "band": [ 35 @@ -58221,31 +63143,31 @@ export default { 163 ], "blind_score": [ - 796 + 1037 ], "counter_strafe_score": [ - 796 + 1037 ], "crosshair_score": [ - 796 + 1037 ], "flash_assists_score": [ - 796 + 1037 ], "hs_score": [ - 796 + 1037 ], "kast_score": [ - 796 + 1037 ], "maps": [ 35 ], "positioning_goal": [ - 796 + 1037 ], "positioning_rating": [ - 796 + 1037 ], "premier_rank": [ 35 @@ -58254,28 +63176,28 @@ export default { 35 ], "spotted_score": [ - 796 + 1037 ], "steam_id": [ 163 ], "survival_score": [ - 796 + 1037 ], "traded_score": [ - 796 + 1037 ], "ttd_score": [ - 796 + 1037 ], "util_eff_score": [ - 796 + 1037 ], "utility_goal": [ - 796 + 1037 ], "utility_rating": [ - 796 + 1037 ], "__typename": [ 63 @@ -58283,13 +63205,13 @@ export default { }, "player_performance_v_max_fields": { "accuracy_score": [ - 795 + 1036 ], "aim_goal": [ - 795 + 1036 ], "aim_rating": [ - 795 + 1036 ], "band": [ 34 @@ -58298,31 +63220,31 @@ export default { 162 ], "blind_score": [ - 795 + 1036 ], "counter_strafe_score": [ - 795 + 1036 ], "crosshair_score": [ - 795 + 1036 ], "flash_assists_score": [ - 795 + 1036 ], "hs_score": [ - 795 + 1036 ], "kast_score": [ - 795 + 1036 ], "maps": [ 34 ], "positioning_goal": [ - 795 + 1036 ], "positioning_rating": [ - 795 + 1036 ], "premier_rank": [ 34 @@ -58331,28 +63253,28 @@ export default { 34 ], "spotted_score": [ - 795 + 1036 ], "steam_id": [ 162 ], "survival_score": [ - 795 + 1036 ], "traded_score": [ - 795 + 1036 ], "ttd_score": [ - 795 + 1036 ], "util_eff_score": [ - 795 + 1036 ], "utility_goal": [ - 795 + 1036 ], "utility_rating": [ - 795 + 1036 ], "__typename": [ 63 @@ -58360,13 +63282,13 @@ export default { }, "player_performance_v_min_fields": { "accuracy_score": [ - 795 + 1036 ], "aim_goal": [ - 795 + 1036 ], "aim_rating": [ - 795 + 1036 ], "band": [ 34 @@ -58375,31 +63297,31 @@ export default { 162 ], "blind_score": [ - 795 + 1036 ], "counter_strafe_score": [ - 795 + 1036 ], "crosshair_score": [ - 795 + 1036 ], "flash_assists_score": [ - 795 + 1036 ], "hs_score": [ - 795 + 1036 ], "kast_score": [ - 795 + 1036 ], "maps": [ 34 ], "positioning_goal": [ - 795 + 1036 ], "positioning_rating": [ - 795 + 1036 ], "premier_rank": [ 34 @@ -58408,28 +63330,28 @@ export default { 34 ], "spotted_score": [ - 795 + 1036 ], "steam_id": [ 162 ], "survival_score": [ - 795 + 1036 ], "traded_score": [ - 795 + 1036 ], "ttd_score": [ - 795 + 1036 ], "util_eff_score": [ - 795 + 1036 ], "utility_goal": [ - 795 + 1036 ], "utility_rating": [ - 795 + 1036 ], "__typename": [ 63 @@ -58437,76 +63359,76 @@ export default { }, "player_performance_v_order_by": { "accuracy_score": [ - 1736 + 2004 ], "aim_goal": [ - 1736 + 2004 ], "aim_rating": [ - 1736 + 2004 ], "band": [ - 1736 + 2004 ], "band_sample": [ - 1736 + 2004 ], "blind_score": [ - 1736 + 2004 ], "counter_strafe_score": [ - 1736 + 2004 ], "crosshair_score": [ - 1736 + 2004 ], "flash_assists_score": [ - 1736 + 2004 ], "hs_score": [ - 1736 + 2004 ], "kast_score": [ - 1736 + 2004 ], "maps": [ - 1736 + 2004 ], "positioning_goal": [ - 1736 + 2004 ], "positioning_rating": [ - 1736 + 2004 ], "premier_rank": [ - 1736 + 2004 ], "rounds": [ - 1736 + 2004 ], "spotted_score": [ - 1736 + 2004 ], "steam_id": [ - 1736 + 2004 ], "survival_score": [ - 1736 + 2004 ], "traded_score": [ - 1736 + 2004 ], "ttd_score": [ - 1736 + 2004 ], "util_eff_score": [ - 1736 + 2004 ], "utility_goal": [ - 1736 + 2004 ], "utility_rating": [ - 1736 + 2004 ], "__typename": [ 63 @@ -58746,7 +63668,7 @@ export default { }, "player_performance_v_stream_cursor_input": { "initial_value": [ - 2346 + 2614 ], "ordering": [ 216 @@ -58757,13 +63679,13 @@ export default { }, "player_performance_v_stream_cursor_value_input": { "accuracy_score": [ - 795 + 1036 ], "aim_goal": [ - 795 + 1036 ], "aim_rating": [ - 795 + 1036 ], "band": [ 34 @@ -58772,31 +63694,31 @@ export default { 162 ], "blind_score": [ - 795 + 1036 ], "counter_strafe_score": [ - 795 + 1036 ], "crosshair_score": [ - 795 + 1036 ], "flash_assists_score": [ - 795 + 1036 ], "hs_score": [ - 795 + 1036 ], "kast_score": [ - 795 + 1036 ], "maps": [ 34 ], "positioning_goal": [ - 795 + 1036 ], "positioning_rating": [ - 795 + 1036 ], "premier_rank": [ 34 @@ -58805,28 +63727,28 @@ export default { 34 ], "spotted_score": [ - 795 + 1036 ], "steam_id": [ 162 ], "survival_score": [ - 795 + 1036 ], "traded_score": [ - 795 + 1036 ], "ttd_score": [ - 795 + 1036 ], "util_eff_score": [ - 795 + 1036 ], "utility_goal": [ - 795 + 1036 ], "utility_rating": [ - 795 + 1036 ], "__typename": [ 63 @@ -58834,13 +63756,13 @@ export default { }, "player_performance_v_sum_fields": { "accuracy_score": [ - 795 + 1036 ], "aim_goal": [ - 795 + 1036 ], "aim_rating": [ - 795 + 1036 ], "band": [ 34 @@ -58849,31 +63771,31 @@ export default { 162 ], "blind_score": [ - 795 + 1036 ], "counter_strafe_score": [ - 795 + 1036 ], "crosshair_score": [ - 795 + 1036 ], "flash_assists_score": [ - 795 + 1036 ], "hs_score": [ - 795 + 1036 ], "kast_score": [ - 795 + 1036 ], "maps": [ 34 ], "positioning_goal": [ - 795 + 1036 ], "positioning_rating": [ - 795 + 1036 ], "premier_rank": [ 34 @@ -58882,28 +63804,28 @@ export default { 34 ], "spotted_score": [ - 795 + 1036 ], "steam_id": [ 162 ], "survival_score": [ - 795 + 1036 ], "traded_score": [ - 795 + 1036 ], "ttd_score": [ - 795 + 1036 ], "util_eff_score": [ - 795 + 1036 ], "utility_goal": [ - 795 + 1036 ], "utility_rating": [ - 795 + 1036 ], "__typename": [ 63 @@ -59142,25 +64064,25 @@ export default { }, "player_premier_rank_history": { "id": [ - 3319 + 3587 ], "map": [ - 1055 + 1296 ], "map_id": [ - 3319 + 3587 ], "match": [ - 1578 + 1819 ], "match_id": [ - 3319 + 3587 ], "observed_at": [ - 2922 + 3190 ], "player": [ - 2603 + 2871 ], "previous_rank": [ 34 @@ -59180,10 +64102,10 @@ export default { }, "player_premier_rank_history_aggregate": { "aggregate": [ - 2355 + 2623 ], "nodes": [ - 2351 + 2619 ], "__typename": [ 63 @@ -59191,7 +64113,7 @@ export default { }, "player_premier_rank_history_aggregate_bool_exp": { "count": [ - 2354 + 2622 ], "__typename": [ 63 @@ -59199,13 +64121,13 @@ export default { }, "player_premier_rank_history_aggregate_bool_exp_count": { "arguments": [ - 2372 + 2640 ], "distinct": [ 3 ], "filter": [ - 2360 + 2628 ], "predicate": [ 35 @@ -59216,13 +64138,13 @@ export default { }, "player_premier_rank_history_aggregate_fields": { "avg": [ - 2358 + 2626 ], "count": [ 34, { "columns": [ - 2372, + 2640, "[player_premier_rank_history_select_column!]" ], "distinct": [ @@ -59231,31 +64153,31 @@ export default { } ], "max": [ - 2364 + 2632 ], "min": [ - 2366 + 2634 ], "stddev": [ - 2374 + 2642 ], "stddev_pop": [ - 2376 + 2644 ], "stddev_samp": [ - 2378 + 2646 ], "sum": [ - 2382 + 2650 ], "var_pop": [ - 2386 + 2654 ], "var_samp": [ - 2388 + 2656 ], "variance": [ - 2390 + 2658 ], "__typename": [ 63 @@ -59263,37 +64185,37 @@ export default { }, "player_premier_rank_history_aggregate_order_by": { "avg": [ - 2359 + 2627 ], "count": [ - 1736 + 2004 ], "max": [ - 2365 + 2633 ], "min": [ - 2367 + 2635 ], "stddev": [ - 2375 + 2643 ], "stddev_pop": [ - 2377 + 2645 ], "stddev_samp": [ - 2379 + 2647 ], "sum": [ - 2383 + 2651 ], "var_pop": [ - 2387 + 2655 ], "var_samp": [ - 2389 + 2657 ], "variance": [ - 2391 + 2659 ], "__typename": [ 63 @@ -59301,10 +64223,10 @@ export default { }, "player_premier_rank_history_arr_rel_insert_input": { "data": [ - 2363 + 2631 ], "on_conflict": [ - 2369 + 2637 ], "__typename": [ 63 @@ -59329,16 +64251,16 @@ export default { }, "player_premier_rank_history_avg_order_by": { "previous_rank": [ - 1736 + 2004 ], "rank": [ - 1736 + 2004 ], "rank_type": [ - 1736 + 2004 ], "steam_id": [ - 1736 + 2004 ], "__typename": [ 63 @@ -59346,34 +64268,34 @@ export default { }, "player_premier_rank_history_bool_exp": { "_and": [ - 2360 + 2628 ], "_not": [ - 2360 + 2628 ], "_or": [ - 2360 + 2628 ], "id": [ - 3320 + 3588 ], "map": [ - 1064 + 1305 ], "map_id": [ - 3320 + 3588 ], "match": [ - 1587 + 1828 ], "match_id": [ - 3320 + 3588 ], "observed_at": [ - 2923 + 3191 ], "player": [ - 2607 + 2875 ], "previous_rank": [ 35 @@ -59411,25 +64333,25 @@ export default { }, "player_premier_rank_history_insert_input": { "id": [ - 3319 + 3587 ], "map": [ - 1072 + 1313 ], "map_id": [ - 3319 + 3587 ], "match": [ - 1596 + 1837 ], "match_id": [ - 3319 + 3587 ], "observed_at": [ - 2922 + 3190 ], "player": [ - 2614 + 2882 ], "previous_rank": [ 34 @@ -59449,16 +64371,16 @@ export default { }, "player_premier_rank_history_max_fields": { "id": [ - 3319 + 3587 ], "map_id": [ - 3319 + 3587 ], "match_id": [ - 3319 + 3587 ], "observed_at": [ - 2922 + 3190 ], "previous_rank": [ 34 @@ -59478,28 +64400,28 @@ export default { }, "player_premier_rank_history_max_order_by": { "id": [ - 1736 + 2004 ], "map_id": [ - 1736 + 2004 ], "match_id": [ - 1736 + 2004 ], "observed_at": [ - 1736 + 2004 ], "previous_rank": [ - 1736 + 2004 ], "rank": [ - 1736 + 2004 ], "rank_type": [ - 1736 + 2004 ], "steam_id": [ - 1736 + 2004 ], "__typename": [ 63 @@ -59507,16 +64429,16 @@ export default { }, "player_premier_rank_history_min_fields": { "id": [ - 3319 + 3587 ], "map_id": [ - 3319 + 3587 ], "match_id": [ - 3319 + 3587 ], "observed_at": [ - 2922 + 3190 ], "previous_rank": [ 34 @@ -59536,28 +64458,28 @@ export default { }, "player_premier_rank_history_min_order_by": { "id": [ - 1736 + 2004 ], "map_id": [ - 1736 + 2004 ], "match_id": [ - 1736 + 2004 ], "observed_at": [ - 1736 + 2004 ], "previous_rank": [ - 1736 + 2004 ], "rank": [ - 1736 + 2004 ], "rank_type": [ - 1736 + 2004 ], "steam_id": [ - 1736 + 2004 ], "__typename": [ 63 @@ -59568,7 +64490,7 @@ export default { 34 ], "returning": [ - 2351 + 2619 ], "__typename": [ 63 @@ -59576,13 +64498,13 @@ export default { }, "player_premier_rank_history_on_conflict": { "constraint": [ - 2361 + 2629 ], "update_columns": [ - 2384 + 2652 ], "where": [ - 2360 + 2628 ], "__typename": [ 63 @@ -59590,37 +64512,37 @@ export default { }, "player_premier_rank_history_order_by": { "id": [ - 1736 + 2004 ], "map": [ - 1074 + 1315 ], "map_id": [ - 1736 + 2004 ], "match": [ - 1598 + 1839 ], "match_id": [ - 1736 + 2004 ], "observed_at": [ - 1736 + 2004 ], "player": [ - 2616 + 2884 ], "previous_rank": [ - 1736 + 2004 ], "rank": [ - 1736 + 2004 ], "rank_type": [ - 1736 + 2004 ], "steam_id": [ - 1736 + 2004 ], "__typename": [ 63 @@ -59628,7 +64550,7 @@ export default { }, "player_premier_rank_history_pk_columns_input": { "id": [ - 3319 + 3587 ], "__typename": [ 63 @@ -59637,16 +64559,16 @@ export default { "player_premier_rank_history_select_column": {}, "player_premier_rank_history_set_input": { "id": [ - 3319 + 3587 ], "map_id": [ - 3319 + 3587 ], "match_id": [ - 3319 + 3587 ], "observed_at": [ - 2922 + 3190 ], "previous_rank": [ 34 @@ -59683,16 +64605,16 @@ export default { }, "player_premier_rank_history_stddev_order_by": { "previous_rank": [ - 1736 + 2004 ], "rank": [ - 1736 + 2004 ], "rank_type": [ - 1736 + 2004 ], "steam_id": [ - 1736 + 2004 ], "__typename": [ 63 @@ -59717,16 +64639,16 @@ export default { }, "player_premier_rank_history_stddev_pop_order_by": { "previous_rank": [ - 1736 + 2004 ], "rank": [ - 1736 + 2004 ], "rank_type": [ - 1736 + 2004 ], "steam_id": [ - 1736 + 2004 ], "__typename": [ 63 @@ -59751,16 +64673,16 @@ export default { }, "player_premier_rank_history_stddev_samp_order_by": { "previous_rank": [ - 1736 + 2004 ], "rank": [ - 1736 + 2004 ], "rank_type": [ - 1736 + 2004 ], "steam_id": [ - 1736 + 2004 ], "__typename": [ 63 @@ -59768,7 +64690,7 @@ export default { }, "player_premier_rank_history_stream_cursor_input": { "initial_value": [ - 2381 + 2649 ], "ordering": [ 216 @@ -59779,16 +64701,16 @@ export default { }, "player_premier_rank_history_stream_cursor_value_input": { "id": [ - 3319 + 3587 ], "map_id": [ - 3319 + 3587 ], "match_id": [ - 3319 + 3587 ], "observed_at": [ - 2922 + 3190 ], "previous_rank": [ 34 @@ -59825,16 +64747,16 @@ export default { }, "player_premier_rank_history_sum_order_by": { "previous_rank": [ - 1736 + 2004 ], "rank": [ - 1736 + 2004 ], "rank_type": [ - 1736 + 2004 ], "steam_id": [ - 1736 + 2004 ], "__typename": [ 63 @@ -59843,13 +64765,13 @@ export default { "player_premier_rank_history_update_column": {}, "player_premier_rank_history_updates": { "_inc": [ - 2362 + 2630 ], "_set": [ - 2373 + 2641 ], "where": [ - 2360 + 2628 ], "__typename": [ 63 @@ -59874,16 +64796,16 @@ export default { }, "player_premier_rank_history_var_pop_order_by": { "previous_rank": [ - 1736 + 2004 ], "rank": [ - 1736 + 2004 ], "rank_type": [ - 1736 + 2004 ], "steam_id": [ - 1736 + 2004 ], "__typename": [ 63 @@ -59908,16 +64830,16 @@ export default { }, "player_premier_rank_history_var_samp_order_by": { "previous_rank": [ - 1736 + 2004 ], "rank": [ - 1736 + 2004 ], "rank_type": [ - 1736 + 2004 ], "steam_id": [ - 1736 + 2004 ], "__typename": [ 63 @@ -59942,16 +64864,16 @@ export default { }, "player_premier_rank_history_variance_order_by": { "previous_rank": [ - 1736 + 2004 ], "rank": [ - 1736 + 2004 ], "rank_type": [ - 1736 + 2004 ], "steam_id": [ - 1736 + 2004 ], "__typename": [ 63 @@ -59959,19 +64881,19 @@ export default { }, "player_sanctions": { "created_at": [ - 2922 + 3190 ], "deleted_at": [ - 2922 + 3190 ], "e_sanction_type": [ - 571 + 812 ], "id": [ - 3319 + 3587 ], "player": [ - 2603 + 2871 ], "player_steam_id": [ 162 @@ -59980,16 +64902,16 @@ export default { 63 ], "remove_sanction_date": [ - 2922 + 3190 ], "sanctioned_by": [ - 2603 + 2871 ], "sanctioned_by_steam_id": [ 162 ], "type": [ - 576 + 817 ], "__typename": [ 63 @@ -59997,10 +64919,10 @@ export default { }, "player_sanctions_aggregate": { "aggregate": [ - 2396 + 2664 ], "nodes": [ - 2392 + 2660 ], "__typename": [ 63 @@ -60008,7 +64930,7 @@ export default { }, "player_sanctions_aggregate_bool_exp": { "count": [ - 2395 + 2663 ], "__typename": [ 63 @@ -60016,13 +64938,13 @@ export default { }, "player_sanctions_aggregate_bool_exp_count": { "arguments": [ - 2413 + 2681 ], "distinct": [ 3 ], "filter": [ - 2401 + 2669 ], "predicate": [ 35 @@ -60033,13 +64955,13 @@ export default { }, "player_sanctions_aggregate_fields": { "avg": [ - 2399 + 2667 ], "count": [ 34, { "columns": [ - 2413, + 2681, "[player_sanctions_select_column!]" ], "distinct": [ @@ -60048,31 +64970,31 @@ export default { } ], "max": [ - 2405 + 2673 ], "min": [ - 2407 + 2675 ], "stddev": [ - 2415 + 2683 ], "stddev_pop": [ - 2417 + 2685 ], "stddev_samp": [ - 2419 + 2687 ], "sum": [ - 2423 + 2691 ], "var_pop": [ - 2427 + 2695 ], "var_samp": [ - 2429 + 2697 ], "variance": [ - 2431 + 2699 ], "__typename": [ 63 @@ -60080,37 +65002,37 @@ export default { }, "player_sanctions_aggregate_order_by": { "avg": [ - 2400 + 2668 ], "count": [ - 1736 + 2004 ], "max": [ - 2406 + 2674 ], "min": [ - 2408 + 2676 ], "stddev": [ - 2416 + 2684 ], "stddev_pop": [ - 2418 + 2686 ], "stddev_samp": [ - 2420 + 2688 ], "sum": [ - 2424 + 2692 ], "var_pop": [ - 2428 + 2696 ], "var_samp": [ - 2430 + 2698 ], "variance": [ - 2432 + 2700 ], "__typename": [ 63 @@ -60118,10 +65040,10 @@ export default { }, "player_sanctions_arr_rel_insert_input": { "data": [ - 2404 + 2672 ], "on_conflict": [ - 2410 + 2678 ], "__typename": [ 63 @@ -60140,10 +65062,10 @@ export default { }, "player_sanctions_avg_order_by": { "player_steam_id": [ - 1736 + 2004 ], "sanctioned_by_steam_id": [ - 1736 + 2004 ], "__typename": [ 63 @@ -60151,28 +65073,28 @@ export default { }, "player_sanctions_bool_exp": { "_and": [ - 2401 + 2669 ], "_not": [ - 2401 + 2669 ], "_or": [ - 2401 + 2669 ], "created_at": [ - 2923 + 3191 ], "deleted_at": [ - 2923 + 3191 ], "e_sanction_type": [ - 574 + 815 ], "id": [ - 3320 + 3588 ], "player": [ - 2607 + 2875 ], "player_steam_id": [ 163 @@ -60181,16 +65103,16 @@ export default { 65 ], "remove_sanction_date": [ - 2923 + 3191 ], "sanctioned_by": [ - 2607 + 2875 ], "sanctioned_by_steam_id": [ 163 ], "type": [ - 577 + 818 ], "__typename": [ 63 @@ -60210,19 +65132,19 @@ export default { }, "player_sanctions_insert_input": { "created_at": [ - 2922 + 3190 ], "deleted_at": [ - 2922 + 3190 ], "e_sanction_type": [ - 582 + 823 ], "id": [ - 3319 + 3587 ], "player": [ - 2614 + 2882 ], "player_steam_id": [ 162 @@ -60231,16 +65153,16 @@ export default { 63 ], "remove_sanction_date": [ - 2922 + 3190 ], "sanctioned_by": [ - 2614 + 2882 ], "sanctioned_by_steam_id": [ 162 ], "type": [ - 576 + 817 ], "__typename": [ 63 @@ -60248,13 +65170,13 @@ export default { }, "player_sanctions_max_fields": { "created_at": [ - 2922 + 3190 ], "deleted_at": [ - 2922 + 3190 ], "id": [ - 3319 + 3587 ], "player_steam_id": [ 162 @@ -60263,7 +65185,7 @@ export default { 63 ], "remove_sanction_date": [ - 2922 + 3190 ], "sanctioned_by_steam_id": [ 162 @@ -60274,25 +65196,25 @@ export default { }, "player_sanctions_max_order_by": { "created_at": [ - 1736 + 2004 ], "deleted_at": [ - 1736 + 2004 ], "id": [ - 1736 + 2004 ], "player_steam_id": [ - 1736 + 2004 ], "reason": [ - 1736 + 2004 ], "remove_sanction_date": [ - 1736 + 2004 ], "sanctioned_by_steam_id": [ - 1736 + 2004 ], "__typename": [ 63 @@ -60300,13 +65222,13 @@ export default { }, "player_sanctions_min_fields": { "created_at": [ - 2922 + 3190 ], "deleted_at": [ - 2922 + 3190 ], "id": [ - 3319 + 3587 ], "player_steam_id": [ 162 @@ -60315,7 +65237,7 @@ export default { 63 ], "remove_sanction_date": [ - 2922 + 3190 ], "sanctioned_by_steam_id": [ 162 @@ -60326,25 +65248,25 @@ export default { }, "player_sanctions_min_order_by": { "created_at": [ - 1736 + 2004 ], "deleted_at": [ - 1736 + 2004 ], "id": [ - 1736 + 2004 ], "player_steam_id": [ - 1736 + 2004 ], "reason": [ - 1736 + 2004 ], "remove_sanction_date": [ - 1736 + 2004 ], "sanctioned_by_steam_id": [ - 1736 + 2004 ], "__typename": [ 63 @@ -60355,7 +65277,7 @@ export default { 34 ], "returning": [ - 2392 + 2660 ], "__typename": [ 63 @@ -60363,13 +65285,13 @@ export default { }, "player_sanctions_on_conflict": { "constraint": [ - 2402 + 2670 ], "update_columns": [ - 2425 + 2693 ], "where": [ - 2401 + 2669 ], "__typename": [ 63 @@ -60377,37 +65299,37 @@ export default { }, "player_sanctions_order_by": { "created_at": [ - 1736 + 2004 ], "deleted_at": [ - 1736 + 2004 ], "e_sanction_type": [ - 584 + 825 ], "id": [ - 1736 + 2004 ], "player": [ - 2616 + 2884 ], "player_steam_id": [ - 1736 + 2004 ], "reason": [ - 1736 + 2004 ], "remove_sanction_date": [ - 1736 + 2004 ], "sanctioned_by": [ - 2616 + 2884 ], "sanctioned_by_steam_id": [ - 1736 + 2004 ], "type": [ - 1736 + 2004 ], "__typename": [ 63 @@ -60415,10 +65337,10 @@ export default { }, "player_sanctions_pk_columns_input": { "created_at": [ - 2922 + 3190 ], "id": [ - 3319 + 3587 ], "__typename": [ 63 @@ -60427,13 +65349,13 @@ export default { "player_sanctions_select_column": {}, "player_sanctions_set_input": { "created_at": [ - 2922 + 3190 ], "deleted_at": [ - 2922 + 3190 ], "id": [ - 3319 + 3587 ], "player_steam_id": [ 162 @@ -60442,13 +65364,13 @@ export default { 63 ], "remove_sanction_date": [ - 2922 + 3190 ], "sanctioned_by_steam_id": [ 162 ], "type": [ - 576 + 817 ], "__typename": [ 63 @@ -60467,10 +65389,10 @@ export default { }, "player_sanctions_stddev_order_by": { "player_steam_id": [ - 1736 + 2004 ], "sanctioned_by_steam_id": [ - 1736 + 2004 ], "__typename": [ 63 @@ -60489,10 +65411,10 @@ export default { }, "player_sanctions_stddev_pop_order_by": { "player_steam_id": [ - 1736 + 2004 ], "sanctioned_by_steam_id": [ - 1736 + 2004 ], "__typename": [ 63 @@ -60511,10 +65433,10 @@ export default { }, "player_sanctions_stddev_samp_order_by": { "player_steam_id": [ - 1736 + 2004 ], "sanctioned_by_steam_id": [ - 1736 + 2004 ], "__typename": [ 63 @@ -60522,7 +65444,7 @@ export default { }, "player_sanctions_stream_cursor_input": { "initial_value": [ - 2422 + 2690 ], "ordering": [ 216 @@ -60533,13 +65455,13 @@ export default { }, "player_sanctions_stream_cursor_value_input": { "created_at": [ - 2922 + 3190 ], "deleted_at": [ - 2922 + 3190 ], "id": [ - 3319 + 3587 ], "player_steam_id": [ 162 @@ -60548,13 +65470,13 @@ export default { 63 ], "remove_sanction_date": [ - 2922 + 3190 ], "sanctioned_by_steam_id": [ 162 ], "type": [ - 576 + 817 ], "__typename": [ 63 @@ -60573,10 +65495,10 @@ export default { }, "player_sanctions_sum_order_by": { "player_steam_id": [ - 1736 + 2004 ], "sanctioned_by_steam_id": [ - 1736 + 2004 ], "__typename": [ 63 @@ -60585,13 +65507,13 @@ export default { "player_sanctions_update_column": {}, "player_sanctions_updates": { "_inc": [ - 2403 + 2671 ], "_set": [ - 2414 + 2682 ], "where": [ - 2401 + 2669 ], "__typename": [ 63 @@ -60610,10 +65532,10 @@ export default { }, "player_sanctions_var_pop_order_by": { "player_steam_id": [ - 1736 + 2004 ], "sanctioned_by_steam_id": [ - 1736 + 2004 ], "__typename": [ 63 @@ -60632,10 +65554,10 @@ export default { }, "player_sanctions_var_samp_order_by": { "player_steam_id": [ - 1736 + 2004 ], "sanctioned_by_steam_id": [ - 1736 + 2004 ], "__typename": [ 63 @@ -60654,10 +65576,10 @@ export default { }, "player_sanctions_variance_order_by": { "player_steam_id": [ - 1736 + 2004 ], "sanctioned_by_steam_id": [ - 1736 + 2004 ], "__typename": [ 63 @@ -60671,7 +65593,7 @@ export default { 162 ], "headshot_percentage": [ - 795 + 1036 ], "headshots": [ 162 @@ -60680,7 +65602,7 @@ export default { 162 ], "player": [ - 2603 + 2871 ], "player_steam_id": [ 162 @@ -60691,10 +65613,10 @@ export default { }, "player_stats_aggregate": { "aggregate": [ - 2435 + 2703 ], "nodes": [ - 2433 + 2701 ], "__typename": [ 63 @@ -60702,13 +65624,13 @@ export default { }, "player_stats_aggregate_fields": { "avg": [ - 2436 + 2704 ], "count": [ 34, { "columns": [ - 2448, + 2716, "[player_stats_select_column!]" ], "distinct": [ @@ -60717,31 +65639,31 @@ export default { } ], "max": [ - 2441 + 2709 ], "min": [ - 2442 + 2710 ], "stddev": [ - 2450 + 2718 ], "stddev_pop": [ - 2451 + 2719 ], "stddev_samp": [ - 2452 + 2720 ], "sum": [ - 2455 + 2723 ], "var_pop": [ - 2458 + 2726 ], "var_samp": [ - 2459 + 2727 ], "variance": [ - 2460 + 2728 ], "__typename": [ 63 @@ -60772,13 +65694,13 @@ export default { }, "player_stats_bool_exp": { "_and": [ - 2437 + 2705 ], "_not": [ - 2437 + 2705 ], "_or": [ - 2437 + 2705 ], "assists": [ 163 @@ -60787,7 +65709,7 @@ export default { 163 ], "headshot_percentage": [ - 796 + 1037 ], "headshots": [ 163 @@ -60796,7 +65718,7 @@ export default { 163 ], "player": [ - 2607 + 2875 ], "player_steam_id": [ 163 @@ -60814,7 +65736,7 @@ export default { 162 ], "headshot_percentage": [ - 795 + 1036 ], "headshots": [ 162 @@ -60837,7 +65759,7 @@ export default { 162 ], "headshot_percentage": [ - 795 + 1036 ], "headshots": [ 162 @@ -60846,7 +65768,7 @@ export default { 162 ], "player": [ - 2614 + 2882 ], "player_steam_id": [ 162 @@ -60863,7 +65785,7 @@ export default { 162 ], "headshot_percentage": [ - 795 + 1036 ], "headshots": [ 162 @@ -60886,7 +65808,7 @@ export default { 162 ], "headshot_percentage": [ - 795 + 1036 ], "headshots": [ 162 @@ -60906,7 +65828,7 @@ export default { 34 ], "returning": [ - 2433 + 2701 ], "__typename": [ 63 @@ -60914,10 +65836,10 @@ export default { }, "player_stats_obj_rel_insert_input": { "data": [ - 2440 + 2708 ], "on_conflict": [ - 2445 + 2713 ], "__typename": [ 63 @@ -60925,13 +65847,13 @@ export default { }, "player_stats_on_conflict": { "constraint": [ - 2438 + 2706 ], "update_columns": [ - 2456 + 2724 ], "where": [ - 2437 + 2705 ], "__typename": [ 63 @@ -60939,25 +65861,25 @@ export default { }, "player_stats_order_by": { "assists": [ - 1736 + 2004 ], "deaths": [ - 1736 + 2004 ], "headshot_percentage": [ - 1736 + 2004 ], "headshots": [ - 1736 + 2004 ], "kills": [ - 1736 + 2004 ], "player": [ - 2616 + 2884 ], "player_steam_id": [ - 1736 + 2004 ], "__typename": [ 63 @@ -60980,7 +65902,7 @@ export default { 162 ], "headshot_percentage": [ - 795 + 1036 ], "headshots": [ 162 @@ -61066,7 +65988,7 @@ export default { }, "player_stats_stream_cursor_input": { "initial_value": [ - 2454 + 2722 ], "ordering": [ 216 @@ -61083,7 +66005,7 @@ export default { 162 ], "headshot_percentage": [ - 795 + 1036 ], "headshots": [ 162 @@ -61106,7 +66028,7 @@ export default { 162 ], "headshot_percentage": [ - 795 + 1036 ], "headshots": [ 162 @@ -61124,13 +66046,13 @@ export default { "player_stats_update_column": {}, "player_stats_updates": { "_inc": [ - 2439 + 2707 ], "_set": [ - 2449 + 2717 ], "where": [ - 2437 + 2705 ], "__typename": [ 63 @@ -61210,7 +66132,7 @@ export default { 63 ], "created_at": [ - 2922 + 3190 ], "last_error": [ 63 @@ -61219,16 +66141,16 @@ export default { 63 ], "last_polled_at": [ - 2922 + 3190 ], "player": [ - 2603 + 2871 ], "steam_id": [ 162 ], "updated_at": [ - 2922 + 3190 ], "__typename": [ 63 @@ -61236,10 +66158,10 @@ export default { }, "player_steam_match_auth_aggregate": { "aggregate": [ - 2463 + 2731 ], "nodes": [ - 2461 + 2729 ], "__typename": [ 63 @@ -61247,13 +66169,13 @@ export default { }, "player_steam_match_auth_aggregate_fields": { "avg": [ - 2464 + 2732 ], "count": [ 34, { "columns": [ - 2475, + 2743, "[player_steam_match_auth_select_column!]" ], "distinct": [ @@ -61262,31 +66184,31 @@ export default { } ], "max": [ - 2469 + 2737 ], "min": [ - 2470 + 2738 ], "stddev": [ - 2477 + 2745 ], "stddev_pop": [ - 2478 + 2746 ], "stddev_samp": [ - 2479 + 2747 ], "sum": [ - 2482 + 2750 ], "var_pop": [ - 2485 + 2753 ], "var_samp": [ - 2486 + 2754 ], "variance": [ - 2487 + 2755 ], "__typename": [ 63 @@ -61302,19 +66224,19 @@ export default { }, "player_steam_match_auth_bool_exp": { "_and": [ - 2465 + 2733 ], "_not": [ - 2465 + 2733 ], "_or": [ - 2465 + 2733 ], "auth_code": [ 65 ], "created_at": [ - 2923 + 3191 ], "last_error": [ 65 @@ -61323,16 +66245,16 @@ export default { 65 ], "last_polled_at": [ - 2923 + 3191 ], "player": [ - 2607 + 2875 ], "steam_id": [ 163 ], "updated_at": [ - 2923 + 3191 ], "__typename": [ 63 @@ -61352,7 +66274,7 @@ export default { 63 ], "created_at": [ - 2922 + 3190 ], "last_error": [ 63 @@ -61361,16 +66283,16 @@ export default { 63 ], "last_polled_at": [ - 2922 + 3190 ], "player": [ - 2614 + 2882 ], "steam_id": [ 162 ], "updated_at": [ - 2922 + 3190 ], "__typename": [ 63 @@ -61381,7 +66303,7 @@ export default { 63 ], "created_at": [ - 2922 + 3190 ], "last_error": [ 63 @@ -61390,13 +66312,13 @@ export default { 63 ], "last_polled_at": [ - 2922 + 3190 ], "steam_id": [ 162 ], "updated_at": [ - 2922 + 3190 ], "__typename": [ 63 @@ -61407,7 +66329,7 @@ export default { 63 ], "created_at": [ - 2922 + 3190 ], "last_error": [ 63 @@ -61416,13 +66338,13 @@ export default { 63 ], "last_polled_at": [ - 2922 + 3190 ], "steam_id": [ 162 ], "updated_at": [ - 2922 + 3190 ], "__typename": [ 63 @@ -61433,7 +66355,7 @@ export default { 34 ], "returning": [ - 2461 + 2729 ], "__typename": [ 63 @@ -61441,13 +66363,13 @@ export default { }, "player_steam_match_auth_on_conflict": { "constraint": [ - 2466 + 2734 ], "update_columns": [ - 2483 + 2751 ], "where": [ - 2465 + 2733 ], "__typename": [ 63 @@ -61455,28 +66377,28 @@ export default { }, "player_steam_match_auth_order_by": { "auth_code": [ - 1736 + 2004 ], "created_at": [ - 1736 + 2004 ], "last_error": [ - 1736 + 2004 ], "last_known_share_code": [ - 1736 + 2004 ], "last_polled_at": [ - 1736 + 2004 ], "player": [ - 2616 + 2884 ], "steam_id": [ - 1736 + 2004 ], "updated_at": [ - 1736 + 2004 ], "__typename": [ 63 @@ -61496,7 +66418,7 @@ export default { 63 ], "created_at": [ - 2922 + 3190 ], "last_error": [ 63 @@ -61505,13 +66427,13 @@ export default { 63 ], "last_polled_at": [ - 2922 + 3190 ], "steam_id": [ 162 ], "updated_at": [ - 2922 + 3190 ], "__typename": [ 63 @@ -61543,7 +66465,7 @@ export default { }, "player_steam_match_auth_stream_cursor_input": { "initial_value": [ - 2481 + 2749 ], "ordering": [ 216 @@ -61557,7 +66479,7 @@ export default { 63 ], "created_at": [ - 2922 + 3190 ], "last_error": [ 63 @@ -61566,13 +66488,13 @@ export default { 63 ], "last_polled_at": [ - 2922 + 3190 ], "steam_id": [ 162 ], "updated_at": [ - 2922 + 3190 ], "__typename": [ 63 @@ -61589,13 +66511,13 @@ export default { "player_steam_match_auth_update_column": {}, "player_steam_match_auth_updates": { "_inc": [ - 2467 + 2735 ], "_set": [ - 2476 + 2744 ], "where": [ - 2465 + 2733 ], "__typename": [ 63 @@ -61627,22 +66549,22 @@ export default { }, "player_unused_utility": { "deleted_at": [ - 2922 + 3190 ], "match": [ - 1578 + 1819 ], "match_id": [ - 3319 + 3587 ], "match_map": [ - 1416 + 1657 ], "match_map_id": [ - 3319 + 3587 ], "player": [ - 2603 + 2871 ], "player_steam_id": [ 162 @@ -61659,10 +66581,10 @@ export default { }, "player_unused_utility_aggregate": { "aggregate": [ - 2492 + 2760 ], "nodes": [ - 2488 + 2756 ], "__typename": [ 63 @@ -61670,7 +66592,7 @@ export default { }, "player_unused_utility_aggregate_bool_exp": { "count": [ - 2491 + 2759 ], "__typename": [ 63 @@ -61678,13 +66600,13 @@ export default { }, "player_unused_utility_aggregate_bool_exp_count": { "arguments": [ - 2509 + 2777 ], "distinct": [ 3 ], "filter": [ - 2497 + 2765 ], "predicate": [ 35 @@ -61695,13 +66617,13 @@ export default { }, "player_unused_utility_aggregate_fields": { "avg": [ - 2495 + 2763 ], "count": [ 34, { "columns": [ - 2509, + 2777, "[player_unused_utility_select_column!]" ], "distinct": [ @@ -61710,31 +66632,31 @@ export default { } ], "max": [ - 2501 + 2769 ], "min": [ - 2503 + 2771 ], "stddev": [ - 2511 + 2779 ], "stddev_pop": [ - 2513 + 2781 ], "stddev_samp": [ - 2515 + 2783 ], "sum": [ - 2519 + 2787 ], "var_pop": [ - 2523 + 2791 ], "var_samp": [ - 2525 + 2793 ], "variance": [ - 2527 + 2795 ], "__typename": [ 63 @@ -61742,37 +66664,37 @@ export default { }, "player_unused_utility_aggregate_order_by": { "avg": [ - 2496 + 2764 ], "count": [ - 1736 + 2004 ], "max": [ - 2502 + 2770 ], "min": [ - 2504 + 2772 ], "stddev": [ - 2512 + 2780 ], "stddev_pop": [ - 2514 + 2782 ], "stddev_samp": [ - 2516 + 2784 ], "sum": [ - 2520 + 2788 ], "var_pop": [ - 2524 + 2792 ], "var_samp": [ - 2526 + 2794 ], "variance": [ - 2528 + 2796 ], "__typename": [ 63 @@ -61780,10 +66702,10 @@ export default { }, "player_unused_utility_arr_rel_insert_input": { "data": [ - 2500 + 2768 ], "on_conflict": [ - 2506 + 2774 ], "__typename": [ 63 @@ -61805,13 +66727,13 @@ export default { }, "player_unused_utility_avg_order_by": { "player_steam_id": [ - 1736 + 2004 ], "round": [ - 1736 + 2004 ], "unused": [ - 1736 + 2004 ], "__typename": [ 63 @@ -61819,31 +66741,31 @@ export default { }, "player_unused_utility_bool_exp": { "_and": [ - 2497 + 2765 ], "_not": [ - 2497 + 2765 ], "_or": [ - 2497 + 2765 ], "deleted_at": [ - 2923 + 3191 ], "match": [ - 1587 + 1828 ], "match_id": [ - 3320 + 3588 ], "match_map": [ - 1425 + 1666 ], "match_map_id": [ - 3320 + 3588 ], "player": [ - 2607 + 2875 ], "player_steam_id": [ 163 @@ -61875,22 +66797,22 @@ export default { }, "player_unused_utility_insert_input": { "deleted_at": [ - 2922 + 3190 ], "match": [ - 1596 + 1837 ], "match_id": [ - 3319 + 3587 ], "match_map": [ - 1434 + 1675 ], "match_map_id": [ - 3319 + 3587 ], "player": [ - 2614 + 2882 ], "player_steam_id": [ 162 @@ -61907,13 +66829,13 @@ export default { }, "player_unused_utility_max_fields": { "deleted_at": [ - 2922 + 3190 ], "match_id": [ - 3319 + 3587 ], "match_map_id": [ - 3319 + 3587 ], "player_steam_id": [ 162 @@ -61930,22 +66852,22 @@ export default { }, "player_unused_utility_max_order_by": { "deleted_at": [ - 1736 + 2004 ], "match_id": [ - 1736 + 2004 ], "match_map_id": [ - 1736 + 2004 ], "player_steam_id": [ - 1736 + 2004 ], "round": [ - 1736 + 2004 ], "unused": [ - 1736 + 2004 ], "__typename": [ 63 @@ -61953,13 +66875,13 @@ export default { }, "player_unused_utility_min_fields": { "deleted_at": [ - 2922 + 3190 ], "match_id": [ - 3319 + 3587 ], "match_map_id": [ - 3319 + 3587 ], "player_steam_id": [ 162 @@ -61976,22 +66898,22 @@ export default { }, "player_unused_utility_min_order_by": { "deleted_at": [ - 1736 + 2004 ], "match_id": [ - 1736 + 2004 ], "match_map_id": [ - 1736 + 2004 ], "player_steam_id": [ - 1736 + 2004 ], "round": [ - 1736 + 2004 ], "unused": [ - 1736 + 2004 ], "__typename": [ 63 @@ -62002,7 +66924,7 @@ export default { 34 ], "returning": [ - 2488 + 2756 ], "__typename": [ 63 @@ -62010,13 +66932,13 @@ export default { }, "player_unused_utility_on_conflict": { "constraint": [ - 2498 + 2766 ], "update_columns": [ - 2521 + 2789 ], "where": [ - 2497 + 2765 ], "__typename": [ 63 @@ -62024,31 +66946,31 @@ export default { }, "player_unused_utility_order_by": { "deleted_at": [ - 1736 + 2004 ], "match": [ - 1598 + 1839 ], "match_id": [ - 1736 + 2004 ], "match_map": [ - 1436 + 1677 ], "match_map_id": [ - 1736 + 2004 ], "player": [ - 2616 + 2884 ], "player_steam_id": [ - 1736 + 2004 ], "round": [ - 1736 + 2004 ], "unused": [ - 1736 + 2004 ], "__typename": [ 63 @@ -62056,7 +66978,7 @@ export default { }, "player_unused_utility_pk_columns_input": { "match_map_id": [ - 3319 + 3587 ], "player_steam_id": [ 162 @@ -62068,13 +66990,13 @@ export default { "player_unused_utility_select_column": {}, "player_unused_utility_set_input": { "deleted_at": [ - 2922 + 3190 ], "match_id": [ - 3319 + 3587 ], "match_map_id": [ - 3319 + 3587 ], "player_steam_id": [ 162 @@ -62105,13 +67027,13 @@ export default { }, "player_unused_utility_stddev_order_by": { "player_steam_id": [ - 1736 + 2004 ], "round": [ - 1736 + 2004 ], "unused": [ - 1736 + 2004 ], "__typename": [ 63 @@ -62133,13 +67055,13 @@ export default { }, "player_unused_utility_stddev_pop_order_by": { "player_steam_id": [ - 1736 + 2004 ], "round": [ - 1736 + 2004 ], "unused": [ - 1736 + 2004 ], "__typename": [ 63 @@ -62161,13 +67083,13 @@ export default { }, "player_unused_utility_stddev_samp_order_by": { "player_steam_id": [ - 1736 + 2004 ], "round": [ - 1736 + 2004 ], "unused": [ - 1736 + 2004 ], "__typename": [ 63 @@ -62175,7 +67097,7 @@ export default { }, "player_unused_utility_stream_cursor_input": { "initial_value": [ - 2518 + 2786 ], "ordering": [ 216 @@ -62186,13 +67108,13 @@ export default { }, "player_unused_utility_stream_cursor_value_input": { "deleted_at": [ - 2922 + 3190 ], "match_id": [ - 3319 + 3587 ], "match_map_id": [ - 3319 + 3587 ], "player_steam_id": [ 162 @@ -62223,13 +67145,13 @@ export default { }, "player_unused_utility_sum_order_by": { "player_steam_id": [ - 1736 + 2004 ], "round": [ - 1736 + 2004 ], "unused": [ - 1736 + 2004 ], "__typename": [ 63 @@ -62238,13 +67160,13 @@ export default { "player_unused_utility_update_column": {}, "player_unused_utility_updates": { "_inc": [ - 2499 + 2767 ], "_set": [ - 2510 + 2778 ], "where": [ - 2497 + 2765 ], "__typename": [ 63 @@ -62266,13 +67188,13 @@ export default { }, "player_unused_utility_var_pop_order_by": { "player_steam_id": [ - 1736 + 2004 ], "round": [ - 1736 + 2004 ], "unused": [ - 1736 + 2004 ], "__typename": [ 63 @@ -62294,13 +67216,13 @@ export default { }, "player_unused_utility_var_samp_order_by": { "player_steam_id": [ - 1736 + 2004 ], "round": [ - 1736 + 2004 ], "unused": [ - 1736 + 2004 ], "__typename": [ 63 @@ -62322,13 +67244,13 @@ export default { }, "player_unused_utility_variance_order_by": { "player_steam_id": [ - 1736 + 2004 ], "round": [ - 1736 + 2004 ], "unused": [ - 1736 + 2004 ], "__typename": [ 63 @@ -62342,31 +67264,31 @@ export default { 162 ], "deleted_at": [ - 2922 + 3190 ], "match": [ - 1578 + 1819 ], "match_id": [ - 3319 + 3587 ], "match_map": [ - 1416 + 1657 ], "match_map_id": [ - 3319 + 3587 ], "player": [ - 2603 + 2871 ], "round": [ 34 ], "time": [ - 2922 + 3190 ], "type": [ - 740 + 981 ], "__typename": [ 63 @@ -62374,10 +67296,10 @@ export default { }, "player_utility_aggregate": { "aggregate": [ - 2533 + 2801 ], "nodes": [ - 2529 + 2797 ], "__typename": [ 63 @@ -62385,7 +67307,7 @@ export default { }, "player_utility_aggregate_bool_exp": { "count": [ - 2532 + 2800 ], "__typename": [ 63 @@ -62393,13 +67315,13 @@ export default { }, "player_utility_aggregate_bool_exp_count": { "arguments": [ - 2550 + 2818 ], "distinct": [ 3 ], "filter": [ - 2538 + 2806 ], "predicate": [ 35 @@ -62410,13 +67332,13 @@ export default { }, "player_utility_aggregate_fields": { "avg": [ - 2536 + 2804 ], "count": [ 34, { "columns": [ - 2550, + 2818, "[player_utility_select_column!]" ], "distinct": [ @@ -62425,31 +67347,31 @@ export default { } ], "max": [ - 2542 + 2810 ], "min": [ - 2544 + 2812 ], "stddev": [ - 2552 + 2820 ], "stddev_pop": [ - 2554 + 2822 ], "stddev_samp": [ - 2556 + 2824 ], "sum": [ - 2560 + 2828 ], "var_pop": [ - 2564 + 2832 ], "var_samp": [ - 2566 + 2834 ], "variance": [ - 2568 + 2836 ], "__typename": [ 63 @@ -62457,37 +67379,37 @@ export default { }, "player_utility_aggregate_order_by": { "avg": [ - 2537 + 2805 ], "count": [ - 1736 + 2004 ], "max": [ - 2543 + 2811 ], "min": [ - 2545 + 2813 ], "stddev": [ - 2553 + 2821 ], "stddev_pop": [ - 2555 + 2823 ], "stddev_samp": [ - 2557 + 2825 ], "sum": [ - 2561 + 2829 ], "var_pop": [ - 2565 + 2833 ], "var_samp": [ - 2567 + 2835 ], "variance": [ - 2569 + 2837 ], "__typename": [ 63 @@ -62495,10 +67417,10 @@ export default { }, "player_utility_arr_rel_insert_input": { "data": [ - 2541 + 2809 ], "on_conflict": [ - 2547 + 2815 ], "__typename": [ 63 @@ -62517,10 +67439,10 @@ export default { }, "player_utility_avg_order_by": { "attacker_steam_id": [ - 1736 + 2004 ], "round": [ - 1736 + 2004 ], "__typename": [ 63 @@ -62528,13 +67450,13 @@ export default { }, "player_utility_bool_exp": { "_and": [ - 2538 + 2806 ], "_not": [ - 2538 + 2806 ], "_or": [ - 2538 + 2806 ], "attacker_location_coordinates": [ 65 @@ -62543,31 +67465,31 @@ export default { 163 ], "deleted_at": [ - 2923 + 3191 ], "match": [ - 1587 + 1828 ], "match_id": [ - 3320 + 3588 ], "match_map": [ - 1425 + 1666 ], "match_map_id": [ - 3320 + 3588 ], "player": [ - 2607 + 2875 ], "round": [ 35 ], "time": [ - 2923 + 3191 ], "type": [ - 741 + 982 ], "__typename": [ 63 @@ -62593,31 +67515,31 @@ export default { 162 ], "deleted_at": [ - 2922 + 3190 ], "match": [ - 1596 + 1837 ], "match_id": [ - 3319 + 3587 ], "match_map": [ - 1434 + 1675 ], "match_map_id": [ - 3319 + 3587 ], "player": [ - 2614 + 2882 ], "round": [ 34 ], "time": [ - 2922 + 3190 ], "type": [ - 740 + 981 ], "__typename": [ 63 @@ -62631,19 +67553,19 @@ export default { 162 ], "deleted_at": [ - 2922 + 3190 ], "match_id": [ - 3319 + 3587 ], "match_map_id": [ - 3319 + 3587 ], "round": [ 34 ], "time": [ - 2922 + 3190 ], "__typename": [ 63 @@ -62651,25 +67573,25 @@ export default { }, "player_utility_max_order_by": { "attacker_location_coordinates": [ - 1736 + 2004 ], "attacker_steam_id": [ - 1736 + 2004 ], "deleted_at": [ - 1736 + 2004 ], "match_id": [ - 1736 + 2004 ], "match_map_id": [ - 1736 + 2004 ], "round": [ - 1736 + 2004 ], "time": [ - 1736 + 2004 ], "__typename": [ 63 @@ -62683,19 +67605,19 @@ export default { 162 ], "deleted_at": [ - 2922 + 3190 ], "match_id": [ - 3319 + 3587 ], "match_map_id": [ - 3319 + 3587 ], "round": [ 34 ], "time": [ - 2922 + 3190 ], "__typename": [ 63 @@ -62703,25 +67625,25 @@ export default { }, "player_utility_min_order_by": { "attacker_location_coordinates": [ - 1736 + 2004 ], "attacker_steam_id": [ - 1736 + 2004 ], "deleted_at": [ - 1736 + 2004 ], "match_id": [ - 1736 + 2004 ], "match_map_id": [ - 1736 + 2004 ], "round": [ - 1736 + 2004 ], "time": [ - 1736 + 2004 ], "__typename": [ 63 @@ -62732,7 +67654,7 @@ export default { 34 ], "returning": [ - 2529 + 2797 ], "__typename": [ 63 @@ -62740,13 +67662,13 @@ export default { }, "player_utility_on_conflict": { "constraint": [ - 2539 + 2807 ], "update_columns": [ - 2562 + 2830 ], "where": [ - 2538 + 2806 ], "__typename": [ 63 @@ -62754,37 +67676,37 @@ export default { }, "player_utility_order_by": { "attacker_location_coordinates": [ - 1736 + 2004 ], "attacker_steam_id": [ - 1736 + 2004 ], "deleted_at": [ - 1736 + 2004 ], "match": [ - 1598 + 1839 ], "match_id": [ - 1736 + 2004 ], "match_map": [ - 1436 + 1677 ], "match_map_id": [ - 1736 + 2004 ], "player": [ - 2616 + 2884 ], "round": [ - 1736 + 2004 ], "time": [ - 1736 + 2004 ], "type": [ - 1736 + 2004 ], "__typename": [ 63 @@ -62795,10 +67717,10 @@ export default { 162 ], "match_map_id": [ - 3319 + 3587 ], "time": [ - 2922 + 3190 ], "__typename": [ 63 @@ -62813,22 +67735,22 @@ export default { 162 ], "deleted_at": [ - 2922 + 3190 ], "match_id": [ - 3319 + 3587 ], "match_map_id": [ - 3319 + 3587 ], "round": [ 34 ], "time": [ - 2922 + 3190 ], "type": [ - 740 + 981 ], "__typename": [ 63 @@ -62847,10 +67769,10 @@ export default { }, "player_utility_stddev_order_by": { "attacker_steam_id": [ - 1736 + 2004 ], "round": [ - 1736 + 2004 ], "__typename": [ 63 @@ -62869,10 +67791,10 @@ export default { }, "player_utility_stddev_pop_order_by": { "attacker_steam_id": [ - 1736 + 2004 ], "round": [ - 1736 + 2004 ], "__typename": [ 63 @@ -62891,10 +67813,10 @@ export default { }, "player_utility_stddev_samp_order_by": { "attacker_steam_id": [ - 1736 + 2004 ], "round": [ - 1736 + 2004 ], "__typename": [ 63 @@ -62902,7 +67824,7 @@ export default { }, "player_utility_stream_cursor_input": { "initial_value": [ - 2559 + 2827 ], "ordering": [ 216 @@ -62919,22 +67841,22 @@ export default { 162 ], "deleted_at": [ - 2922 + 3190 ], "match_id": [ - 3319 + 3587 ], "match_map_id": [ - 3319 + 3587 ], "round": [ 34 ], "time": [ - 2922 + 3190 ], "type": [ - 740 + 981 ], "__typename": [ 63 @@ -62953,10 +67875,10 @@ export default { }, "player_utility_sum_order_by": { "attacker_steam_id": [ - 1736 + 2004 ], "round": [ - 1736 + 2004 ], "__typename": [ 63 @@ -62965,13 +67887,13 @@ export default { "player_utility_update_column": {}, "player_utility_updates": { "_inc": [ - 2540 + 2808 ], "_set": [ - 2551 + 2819 ], "where": [ - 2538 + 2806 ], "__typename": [ 63 @@ -62990,10 +67912,10 @@ export default { }, "player_utility_var_pop_order_by": { "attacker_steam_id": [ - 1736 + 2004 ], "round": [ - 1736 + 2004 ], "__typename": [ 63 @@ -63012,10 +67934,10 @@ export default { }, "player_utility_var_samp_order_by": { "attacker_steam_id": [ - 1736 + 2004 ], "round": [ - 1736 + 2004 ], "__typename": [ 63 @@ -63034,10 +67956,10 @@ export default { }, "player_utility_variance_order_by": { "attacker_steam_id": [ - 1736 + 2004 ], "round": [ - 1736 + 2004 ], "__typename": [ 63 @@ -63057,7 +67979,7 @@ export default { 34 ], "match_id": [ - 3319 + 3587 ], "shots": [ 34 @@ -63077,10 +67999,10 @@ export default { }, "player_weapon_stats_v_aggregate": { "aggregate": [ - 2574 + 2842 ], "nodes": [ - 2570 + 2838 ], "__typename": [ 63 @@ -63088,7 +68010,7 @@ export default { }, "player_weapon_stats_v_aggregate_bool_exp": { "count": [ - 2573 + 2841 ], "__typename": [ 63 @@ -63096,13 +68018,13 @@ export default { }, "player_weapon_stats_v_aggregate_bool_exp_count": { "arguments": [ - 2586 + 2854 ], "distinct": [ 3 ], "filter": [ - 2579 + 2847 ], "predicate": [ 35 @@ -63113,13 +68035,13 @@ export default { }, "player_weapon_stats_v_aggregate_fields": { "avg": [ - 2577 + 2845 ], "count": [ 34, { "columns": [ - 2586, + 2854, "[player_weapon_stats_v_select_column!]" ], "distinct": [ @@ -63128,31 +68050,31 @@ export default { } ], "max": [ - 2581 + 2849 ], "min": [ - 2583 + 2851 ], "stddev": [ - 2587 + 2855 ], "stddev_pop": [ - 2589 + 2857 ], "stddev_samp": [ - 2591 + 2859 ], "sum": [ - 2595 + 2863 ], "var_pop": [ - 2597 + 2865 ], "var_samp": [ - 2599 + 2867 ], "variance": [ - 2601 + 2869 ], "__typename": [ 63 @@ -63160,37 +68082,37 @@ export default { }, "player_weapon_stats_v_aggregate_order_by": { "avg": [ - 2578 + 2846 ], "count": [ - 1736 + 2004 ], "max": [ - 2582 + 2850 ], "min": [ - 2584 + 2852 ], "stddev": [ - 2588 + 2856 ], "stddev_pop": [ - 2590 + 2858 ], "stddev_samp": [ - 2592 + 2860 ], "sum": [ - 2596 + 2864 ], "var_pop": [ - 2598 + 2866 ], "var_samp": [ - 2600 + 2868 ], "variance": [ - 2602 + 2870 ], "__typename": [ 63 @@ -63198,7 +68120,7 @@ export default { }, "player_weapon_stats_v_arr_rel_insert_input": { "data": [ - 2580 + 2848 ], "__typename": [ 63 @@ -63232,25 +68154,25 @@ export default { }, "player_weapon_stats_v_avg_order_by": { "first_bullet_hits": [ - 1736 + 2004 ], "first_bullet_shots": [ - 1736 + 2004 ], "hits": [ - 1736 + 2004 ], "hits_spotted": [ - 1736 + 2004 ], "shots": [ - 1736 + 2004 ], "shots_spotted": [ - 1736 + 2004 ], "steam_id": [ - 1736 + 2004 ], "__typename": [ 63 @@ -63258,13 +68180,13 @@ export default { }, "player_weapon_stats_v_bool_exp": { "_and": [ - 2579 + 2847 ], "_not": [ - 2579 + 2847 ], "_or": [ - 2579 + 2847 ], "first_bullet_hits": [ 35 @@ -63279,7 +68201,7 @@ export default { 35 ], "match_id": [ - 3320 + 3588 ], "shots": [ 35 @@ -63311,7 +68233,7 @@ export default { 34 ], "match_id": [ - 3319 + 3587 ], "shots": [ 34 @@ -63343,7 +68265,7 @@ export default { 34 ], "match_id": [ - 3319 + 3587 ], "shots": [ 34 @@ -63363,31 +68285,31 @@ export default { }, "player_weapon_stats_v_max_order_by": { "first_bullet_hits": [ - 1736 + 2004 ], "first_bullet_shots": [ - 1736 + 2004 ], "hits": [ - 1736 + 2004 ], "hits_spotted": [ - 1736 + 2004 ], "match_id": [ - 1736 + 2004 ], "shots": [ - 1736 + 2004 ], "shots_spotted": [ - 1736 + 2004 ], "steam_id": [ - 1736 + 2004 ], "weapon_class": [ - 1736 + 2004 ], "__typename": [ 63 @@ -63407,7 +68329,7 @@ export default { 34 ], "match_id": [ - 3319 + 3587 ], "shots": [ 34 @@ -63427,31 +68349,31 @@ export default { }, "player_weapon_stats_v_min_order_by": { "first_bullet_hits": [ - 1736 + 2004 ], "first_bullet_shots": [ - 1736 + 2004 ], "hits": [ - 1736 + 2004 ], "hits_spotted": [ - 1736 + 2004 ], "match_id": [ - 1736 + 2004 ], "shots": [ - 1736 + 2004 ], "shots_spotted": [ - 1736 + 2004 ], "steam_id": [ - 1736 + 2004 ], "weapon_class": [ - 1736 + 2004 ], "__typename": [ 63 @@ -63459,31 +68381,31 @@ export default { }, "player_weapon_stats_v_order_by": { "first_bullet_hits": [ - 1736 + 2004 ], "first_bullet_shots": [ - 1736 + 2004 ], "hits": [ - 1736 + 2004 ], "hits_spotted": [ - 1736 + 2004 ], "match_id": [ - 1736 + 2004 ], "shots": [ - 1736 + 2004 ], "shots_spotted": [ - 1736 + 2004 ], "steam_id": [ - 1736 + 2004 ], "weapon_class": [ - 1736 + 2004 ], "__typename": [ 63 @@ -63518,25 +68440,25 @@ export default { }, "player_weapon_stats_v_stddev_order_by": { "first_bullet_hits": [ - 1736 + 2004 ], "first_bullet_shots": [ - 1736 + 2004 ], "hits": [ - 1736 + 2004 ], "hits_spotted": [ - 1736 + 2004 ], "shots": [ - 1736 + 2004 ], "shots_spotted": [ - 1736 + 2004 ], "steam_id": [ - 1736 + 2004 ], "__typename": [ 63 @@ -63570,25 +68492,25 @@ export default { }, "player_weapon_stats_v_stddev_pop_order_by": { "first_bullet_hits": [ - 1736 + 2004 ], "first_bullet_shots": [ - 1736 + 2004 ], "hits": [ - 1736 + 2004 ], "hits_spotted": [ - 1736 + 2004 ], "shots": [ - 1736 + 2004 ], "shots_spotted": [ - 1736 + 2004 ], "steam_id": [ - 1736 + 2004 ], "__typename": [ 63 @@ -63622,25 +68544,25 @@ export default { }, "player_weapon_stats_v_stddev_samp_order_by": { "first_bullet_hits": [ - 1736 + 2004 ], "first_bullet_shots": [ - 1736 + 2004 ], "hits": [ - 1736 + 2004 ], "hits_spotted": [ - 1736 + 2004 ], "shots": [ - 1736 + 2004 ], "shots_spotted": [ - 1736 + 2004 ], "steam_id": [ - 1736 + 2004 ], "__typename": [ 63 @@ -63648,7 +68570,7 @@ export default { }, "player_weapon_stats_v_stream_cursor_input": { "initial_value": [ - 2594 + 2862 ], "ordering": [ 216 @@ -63671,7 +68593,7 @@ export default { 34 ], "match_id": [ - 3319 + 3587 ], "shots": [ 34 @@ -63717,25 +68639,25 @@ export default { }, "player_weapon_stats_v_sum_order_by": { "first_bullet_hits": [ - 1736 + 2004 ], "first_bullet_shots": [ - 1736 + 2004 ], "hits": [ - 1736 + 2004 ], "hits_spotted": [ - 1736 + 2004 ], "shots": [ - 1736 + 2004 ], "shots_spotted": [ - 1736 + 2004 ], "steam_id": [ - 1736 + 2004 ], "__typename": [ 63 @@ -63769,25 +68691,25 @@ export default { }, "player_weapon_stats_v_var_pop_order_by": { "first_bullet_hits": [ - 1736 + 2004 ], "first_bullet_shots": [ - 1736 + 2004 ], "hits": [ - 1736 + 2004 ], "hits_spotted": [ - 1736 + 2004 ], "shots": [ - 1736 + 2004 ], "shots_spotted": [ - 1736 + 2004 ], "steam_id": [ - 1736 + 2004 ], "__typename": [ 63 @@ -63821,25 +68743,25 @@ export default { }, "player_weapon_stats_v_var_samp_order_by": { "first_bullet_hits": [ - 1736 + 2004 ], "first_bullet_shots": [ - 1736 + 2004 ], "hits": [ - 1736 + 2004 ], "hits_spotted": [ - 1736 + 2004 ], "shots": [ - 1736 + 2004 ], "shots_spotted": [ - 1736 + 2004 ], "steam_id": [ - 1736 + 2004 ], "__typename": [ 63 @@ -63873,25 +68795,25 @@ export default { }, "player_weapon_stats_v_variance_order_by": { "first_bullet_hits": [ - 1736 + 2004 ], "first_bullet_shots": [ - 1736 + 2004 ], "hits": [ - 1736 + 2004 ], "hits_spotted": [ - 1736 + 2004 ], "shots": [ - 1736 + 2004 ], "shots_spotted": [ - 1736 + 2004 ], "steam_id": [ - 1736 + 2004 ], "__typename": [ 63 @@ -63943,10 +68865,10 @@ export default { } ], "aim_weapon_stats": [ - 1833, + 2101, { "distinct_on": [ - 1854, + 2122, "[player_aim_weapon_stats_select_column!]" ], "limit": [ @@ -63956,19 +68878,19 @@ export default { 34 ], "order_by": [ - 1852, + 2120, "[player_aim_weapon_stats_order_by!]" ], "where": [ - 1842 + 2110 ] } ], "aim_weapon_stats_aggregate": [ - 1834, + 2102, { "distinct_on": [ - 1854, + 2122, "[player_aim_weapon_stats_select_column!]" ], "limit": [ @@ -63978,19 +68900,19 @@ export default { 34 ], "order_by": [ - 1852, + 2120, "[player_aim_weapon_stats_order_by!]" ], "where": [ - 1842 + 2110 ] } ], "assists": [ - 1874, + 2142, { "distinct_on": [ - 1897, + 2165, "[player_assists_select_column!]" ], "limit": [ @@ -64000,19 +68922,19 @@ export default { 34 ], "order_by": [ - 1895, + 2163, "[player_assists_order_by!]" ], "where": [ - 1885 + 2153 ] } ], "assists_aggregate": [ - 1875, + 2143, { "distinct_on": [ - 1897, + 2165, "[player_assists_select_column!]" ], "limit": [ @@ -64022,19 +68944,19 @@ export default { 34 ], "order_by": [ - 1895, + 2163, "[player_assists_order_by!]" ], "where": [ - 1885 + 2153 ] } ], "assited_by_players": [ - 1874, + 2142, { "distinct_on": [ - 1897, + 2165, "[player_assists_select_column!]" ], "limit": [ @@ -64044,19 +68966,19 @@ export default { 34 ], "order_by": [ - 1895, + 2163, "[player_assists_order_by!]" ], "where": [ - 1885 + 2153 ] } ], "assited_by_players_aggregate": [ - 1875, + 2143, { "distinct_on": [ - 1897, + 2165, "[player_assists_select_column!]" ], "limit": [ @@ -64066,11 +68988,11 @@ export default { 34 ], "order_by": [ - 1895, + 2163, "[player_assists_order_by!]" ], "where": [ - 1885 + 2153 ] } ], @@ -64078,10 +69000,10 @@ export default { 63 ], "coach_lineups": [ - 1258, + 1499, { "distinct_on": [ - 1280, + 1521, "[match_lineups_select_column!]" ], "limit": [ @@ -64091,19 +69013,19 @@ export default { 34 ], "order_by": [ - 1278, + 1519, "[match_lineups_order_by!]" ], "where": [ - 1267 + 1508 ] } ], "coach_lineups_aggregate": [ - 1259, + 1500, { "distinct_on": [ - 1280, + 1521, "[match_lineups_select_column!]" ], "limit": [ @@ -64113,11 +69035,11 @@ export default { 34 ], "order_by": [ - 1278, + 1519, "[match_lineups_order_by!]" ], "where": [ - 1267 + 1508 ] } ], @@ -64125,19 +69047,19 @@ export default { 63 ], "created_at": [ - 2922 + 3190 ], "current_lobby_id": [ - 3319 + 3587 ], "custom_avatar_url": [ 63 ], "damage_dealt": [ - 1937, + 2205, { "distinct_on": [ - 1958, + 2226, "[player_damages_select_column!]" ], "limit": [ @@ -64147,19 +69069,19 @@ export default { 34 ], "order_by": [ - 1956, + 2224, "[player_damages_order_by!]" ], "where": [ - 1946 + 2214 ] } ], "damage_dealt_aggregate": [ - 1938, + 2206, { "distinct_on": [ - 1958, + 2226, "[player_damages_select_column!]" ], "limit": [ @@ -64169,19 +69091,19 @@ export default { 34 ], "order_by": [ - 1956, + 2224, "[player_damages_order_by!]" ], "where": [ - 1946 + 2214 ] } ], "damage_taken": [ - 1937, + 2205, { "distinct_on": [ - 1958, + 2226, "[player_damages_select_column!]" ], "limit": [ @@ -64191,19 +69113,19 @@ export default { 34 ], "order_by": [ - 1956, + 2224, "[player_damages_order_by!]" ], "where": [ - 1946 + 2214 ] } ], "damage_taken_aggregate": [ - 1938, + 2206, { "distinct_on": [ - 1958, + 2226, "[player_damages_select_column!]" ], "limit": [ @@ -64213,11 +69135,11 @@ export default { 34 ], "order_by": [ - 1956, + 2224, "[player_damages_order_by!]" ], "where": [ - 1946 + 2214 ] } ], @@ -64225,10 +69147,10 @@ export default { 34 ], "deaths": [ - 2091, + 2359, { "distinct_on": [ - 2155, + 2423, "[player_kills_select_column!]" ], "limit": [ @@ -64238,19 +69160,19 @@ export default { 34 ], "order_by": [ - 2153, + 2421, "[player_kills_order_by!]" ], "where": [ - 2102 + 2370 ] } ], "deaths_aggregate": [ - 2092, + 2360, { "distinct_on": [ - 2155, + 2423, "[player_kills_select_column!]" ], "limit": [ @@ -64260,11 +69182,11 @@ export default { 34 ], "order_by": [ - 2153, + 2421, "[player_kills_order_by!]" ], "where": [ - 2102 + 2370 ] } ], @@ -64272,7 +69194,7 @@ export default { 63 ], "elo": [ - 946, + 1187, { "path": [ 63 @@ -64280,10 +69202,10 @@ export default { } ], "elo_history": [ - 3560, + 3828, { "distinct_on": [ - 3586, + 3854, "[v_player_elo_select_column!]" ], "limit": [ @@ -64293,19 +69215,19 @@ export default { 34 ], "order_by": [ - 3585, + 3853, "[v_player_elo_order_by!]" ], "where": [ - 3579 + 3847 ] } ], "elo_history_aggregate": [ - 3561, + 3829, { "distinct_on": [ - 3586, + 3854, "[v_player_elo_select_column!]" ], "limit": [ @@ -64315,11 +69237,11 @@ export default { 34 ], "order_by": [ - 3585, + 3853, "[v_player_elo_order_by!]" ], "where": [ - 3579 + 3847 ] } ], @@ -64333,10 +69255,10 @@ export default { 63 ], "faceit_rank_history": [ - 2005, + 2273, { "distinct_on": [ - 2026, + 2294, "[player_faceit_rank_history_select_column!]" ], "limit": [ @@ -64346,19 +69268,19 @@ export default { 34 ], "order_by": [ - 2024, + 2292, "[player_faceit_rank_history_order_by!]" ], "where": [ - 2014 + 2282 ] } ], "faceit_rank_history_aggregate": [ - 2006, + 2274, { "distinct_on": [ - 2026, + 2294, "[player_faceit_rank_history_select_column!]" ], "limit": [ @@ -64368,11 +69290,11 @@ export default { 34 ], "order_by": [ - 2024, + 2292, "[player_faceit_rank_history_order_by!]" ], "where": [ - 2014 + 2282 ] } ], @@ -64380,16 +69302,16 @@ export default { 34 ], "faceit_updated_at": [ - 2922 + 3190 ], "faceit_url": [ 63 ], "flashed_by_players": [ - 2046, + 2314, { "distinct_on": [ - 2069, + 2337, "[player_flashes_select_column!]" ], "limit": [ @@ -64399,19 +69321,19 @@ export default { 34 ], "order_by": [ - 2067, + 2335, "[player_flashes_order_by!]" ], "where": [ - 2057 + 2325 ] } ], "flashed_by_players_aggregate": [ - 2047, + 2315, { "distinct_on": [ - 2069, + 2337, "[player_flashes_select_column!]" ], "limit": [ @@ -64421,19 +69343,19 @@ export default { 34 ], "order_by": [ - 2067, + 2335, "[player_flashes_order_by!]" ], "where": [ - 2057 + 2325 ] } ], "flashed_players": [ - 2046, + 2314, { "distinct_on": [ - 2069, + 2337, "[player_flashes_select_column!]" ], "limit": [ @@ -64443,19 +69365,19 @@ export default { 34 ], "order_by": [ - 2067, + 2335, "[player_flashes_order_by!]" ], "where": [ - 2057 + 2325 ] } ], "flashed_players_aggregate": [ - 2047, + 2315, { "distinct_on": [ - 2069, + 2337, "[player_flashes_select_column!]" ], "limit": [ @@ -64465,19 +69387,19 @@ export default { 34 ], "order_by": [ - 2067, + 2335, "[player_flashes_order_by!]" ], "where": [ - 2057 + 2325 ] } ], "friends": [ - 1638, + 1879, { "distinct_on": [ - 1663, + 1904, "[my_friends_select_column!]" ], "limit": [ @@ -64487,19 +69409,19 @@ export default { 34 ], "order_by": [ - 1661, + 1902, "[my_friends_order_by!]" ], "where": [ - 1650 + 1891 ] } ], "friends_aggregate": [ - 1639, + 1880, { "distinct_on": [ - 1663, + 1904, "[my_friends_select_column!]" ], "limit": [ @@ -64509,11 +69431,11 @@ export default { 34 ], "order_by": [ - 1661, + 1902, "[my_friends_order_by!]" ], "where": [ - 1650 + 1891 ] } ], @@ -64521,10 +69443,10 @@ export default { 34 ], "invited_players": [ - 2793, + 3061, { "distinct_on": [ - 2814, + 3082, "[team_invites_select_column!]" ], "limit": [ @@ -64534,19 +69456,19 @@ export default { 34 ], "order_by": [ - 2812, + 3080, "[team_invites_order_by!]" ], "where": [ - 2802 + 3070 ] } ], "invited_players_aggregate": [ - 2794, + 3062, { "distinct_on": [ - 2814, + 3082, "[team_invites_select_column!]" ], "limit": [ @@ -64556,11 +69478,11 @@ export default { 34 ], "order_by": [ - 2812, + 3080, "[team_invites_order_by!]" ], "where": [ - 2802 + 3070 ] } ], @@ -64580,10 +69502,10 @@ export default { 3 ], "kills": [ - 2091, + 2359, { "distinct_on": [ - 2155, + 2423, "[player_kills_select_column!]" ], "limit": [ @@ -64593,19 +69515,19 @@ export default { 34 ], "order_by": [ - 2153, + 2421, "[player_kills_order_by!]" ], "where": [ - 2102 + 2370 ] } ], "kills_aggregate": [ - 2092, + 2360, { "distinct_on": [ - 2155, + 2423, "[player_kills_select_column!]" ], "limit": [ @@ -64615,19 +69537,19 @@ export default { 34 ], "order_by": [ - 2153, + 2421, "[player_kills_order_by!]" ], "where": [ - 2102 + 2370 ] } ], "kills_by_weapons": [ - 2103, + 2371, { "distinct_on": [ - 2124, + 2392, "[player_kills_by_weapon_select_column!]" ], "limit": [ @@ -64637,19 +69559,19 @@ export default { 34 ], "order_by": [ - 2122, + 2390, "[player_kills_by_weapon_order_by!]" ], "where": [ - 2112 + 2380 ] } ], "kills_by_weapons_aggregate": [ - 2104, + 2372, { "distinct_on": [ - 2124, + 2392, "[player_kills_by_weapon_select_column!]" ], "limit": [ @@ -64659,25 +69581,28 @@ export default { 34 ], "order_by": [ - 2122, + 2390, "[player_kills_by_weapon_order_by!]" ], "where": [ - 2112 + 2380 ] } ], "language": [ 63 ], + "last_read_news_at": [ + 3190 + ], "last_sign_in_at": [ - 2922 + 3190 ], "lobby_players": [ - 991, + 1232, { "distinct_on": [ - 1014, + 1255, "[lobby_players_select_column!]" ], "limit": [ @@ -64687,19 +69612,19 @@ export default { 34 ], "order_by": [ - 1012, + 1253, "[lobby_players_order_by!]" ], "where": [ - 1002 + 1243 ] } ], "lobby_players_aggregate": [ - 992, + 1233, { "distinct_on": [ - 1014, + 1255, "[lobby_players_select_column!]" ], "limit": [ @@ -64709,11 +69634,11 @@ export default { 34 ], "order_by": [ - 1012, + 1253, "[lobby_players_order_by!]" ], "where": [ - 1002 + 1243 ] } ], @@ -64730,10 +69655,10 @@ export default { 34 ], "match_map_hltv": [ - 3665, + 3933, { "distinct_on": [ - 3683, + 3951, "[v_player_match_map_hltv_select_column!]" ], "limit": [ @@ -64743,19 +69668,19 @@ export default { 34 ], "order_by": [ - 3682, + 3950, "[v_player_match_map_hltv_order_by!]" ], "where": [ - 3674 + 3942 ] } ], "match_map_hltv_aggregate": [ - 3666, + 3934, { "distinct_on": [ - 3683, + 3951, "[v_player_match_map_hltv_select_column!]" ], "limit": [ @@ -64765,19 +69690,19 @@ export default { 34 ], "order_by": [ - 3682, + 3950, "[v_player_match_map_hltv_order_by!]" ], "where": [ - 3674 + 3942 ] } ], "match_map_stats": [ - 2200, + 2468, { "distinct_on": [ - 2221, + 2489, "[player_match_map_stats_select_column!]" ], "limit": [ @@ -64787,19 +69712,19 @@ export default { 34 ], "order_by": [ - 2219, + 2487, "[player_match_map_stats_order_by!]" ], "where": [ - 2209 + 2477 ] } ], "match_map_stats_aggregate": [ - 2201, + 2469, { "distinct_on": [ - 2221, + 2489, "[player_match_map_stats_select_column!]" ], "limit": [ @@ -64809,19 +69734,19 @@ export default { 34 ], "order_by": [ - 2219, + 2487, "[player_match_map_stats_order_by!]" ], "where": [ - 2209 + 2477 ] } ], "match_stats": [ - 2259, + 2527, { "distinct_on": [ - 2275, + 2543, "[player_match_stats_v_select_column!]" ], "limit": [ @@ -64831,19 +69756,19 @@ export default { 34 ], "order_by": [ - 2274, + 2542, "[player_match_stats_v_order_by!]" ], "where": [ - 2268 + 2536 ] } ], "match_stats_aggregate": [ - 2260, + 2528, { "distinct_on": [ - 2275, + 2543, "[player_match_stats_v_select_column!]" ], "limit": [ @@ -64853,19 +69778,19 @@ export default { 34 ], "order_by": [ - 2274, + 2542, "[player_match_stats_v_order_by!]" ], "where": [ - 2268 + 2536 ] } ], "matches": [ - 1578, + 1819, { "distinct_on": [ - 1600, + 1841, "[matches_select_column!]" ], "limit": [ @@ -64875,22 +69800,22 @@ export default { 34 ], "order_by": [ - 1598, + 1839, "[matches_order_by!]" ], "where": [ - 1587 + 1828 ] } ], "matchmaking_cooldown": [ - 2922 + 3190 ], "multi_kills": [ - 3756, + 4024, { "distinct_on": [ - 3772, + 4040, "[v_player_multi_kills_select_column!]" ], "limit": [ @@ -64900,19 +69825,19 @@ export default { 34 ], "order_by": [ - 3771, + 4039, "[v_player_multi_kills_order_by!]" ], "where": [ - 3765 + 4033 ] } ], "multi_kills_aggregate": [ - 3757, + 4025, { "distinct_on": [ - 3772, + 4040, "[v_player_multi_kills_select_column!]" ], "limit": [ @@ -64922,11 +69847,11 @@ export default { 34 ], "order_by": [ - 3771, + 4039, "[v_player_multi_kills_order_by!]" ], "where": [ - 3765 + 4033 ] } ], @@ -64937,10 +69862,10 @@ export default { 3 ], "notifications": [ - 1684, + 1952, { "distinct_on": [ - 1712, + 1980, "[notifications_select_column!]" ], "limit": [ @@ -64950,19 +69875,19 @@ export default { 34 ], "order_by": [ - 1709, + 1977, "[notifications_order_by!]" ], "where": [ - 1696 + 1964 ] } ], "notifications_aggregate": [ - 1685, + 1953, { "distinct_on": [ - 1712, + 1980, "[notifications_select_column!]" ], "limit": [ @@ -64972,19 +69897,19 @@ export default { 34 ], "order_by": [ - 1709, + 1977, "[notifications_order_by!]" ], "where": [ - 1696 + 1964 ] } ], "objectives": [ - 2292, + 2560, { "distinct_on": [ - 2313, + 2581, "[player_objectives_select_column!]" ], "limit": [ @@ -64994,19 +69919,19 @@ export default { 34 ], "order_by": [ - 2311, + 2579, "[player_objectives_order_by!]" ], "where": [ - 2301 + 2569 ] } ], "objectives_aggregate": [ - 2293, + 2561, { "distinct_on": [ - 2313, + 2581, "[player_objectives_select_column!]" ], "limit": [ @@ -65016,19 +69941,19 @@ export default { 34 ], "order_by": [ - 2311, + 2579, "[player_objectives_order_by!]" ], "where": [ - 2301 + 2569 ] } ], "owned_teams": [ - 2879, + 3147, { "distinct_on": [ - 2901, + 3169, "[teams_select_column!]" ], "limit": [ @@ -65038,19 +69963,19 @@ export default { 34 ], "order_by": [ - 2899, + 3167, "[teams_order_by!]" ], "where": [ - 2888 + 3156 ] } ], "owned_teams_aggregate": [ - 2880, + 3148, { "distinct_on": [ - 2901, + 3169, "[teams_select_column!]" ], "limit": [ @@ -65060,16 +69985,16 @@ export default { 34 ], "order_by": [ - 2899, + 3167, "[teams_order_by!]" ], "where": [ - 2888 + 3156 ] } ], "peak_elo": [ - 946, + 1187, { "path": [ 63 @@ -65077,10 +70002,10 @@ export default { } ], "pending_match_imports": [ - 1737, + 2005, { "distinct_on": [ - 1758, + 2026, "[pending_match_import_players_select_column!]" ], "limit": [ @@ -65090,19 +70015,19 @@ export default { 34 ], "order_by": [ - 1756, + 2024, "[pending_match_import_players_order_by!]" ], "where": [ - 1746 + 2014 ] } ], "pending_match_imports_aggregate": [ - 1738, + 2006, { "distinct_on": [ - 1758, + 2026, "[pending_match_import_players_select_column!]" ], "limit": [ @@ -65112,19 +70037,19 @@ export default { 34 ], "order_by": [ - 1756, + 2024, "[pending_match_import_players_order_by!]" ], "where": [ - 1746 + 2014 ] } ], "player_lineup": [ - 1213, + 1454, { "distinct_on": [ - 1236, + 1477, "[match_lineup_players_select_column!]" ], "limit": [ @@ -65134,19 +70059,19 @@ export default { 34 ], "order_by": [ - 1234, + 1475, "[match_lineup_players_order_by!]" ], "where": [ - 1224 + 1465 ] } ], "player_lineup_aggregate": [ - 1214, + 1455, { "distinct_on": [ - 1236, + 1477, "[match_lineup_players_select_column!]" ], "limit": [ @@ -65156,19 +70081,19 @@ export default { 34 ], "order_by": [ - 1234, + 1475, "[match_lineup_players_order_by!]" ], "where": [ - 1224 + 1465 ] } ], "player_unused_utilities": [ - 2488, + 2756, { "distinct_on": [ - 2509, + 2777, "[player_unused_utility_select_column!]" ], "limit": [ @@ -65178,19 +70103,19 @@ export default { 34 ], "order_by": [ - 2507, + 2775, "[player_unused_utility_order_by!]" ], "where": [ - 2497 + 2765 ] } ], "player_unused_utilities_aggregate": [ - 2489, + 2757, { "distinct_on": [ - 2509, + 2777, "[player_unused_utility_select_column!]" ], "limit": [ @@ -65200,11 +70125,11 @@ export default { 34 ], "order_by": [ - 2507, + 2775, "[player_unused_utility_order_by!]" ], "where": [ - 2497 + 2765 ] } ], @@ -65212,10 +70137,10 @@ export default { 34 ], "premier_rank_history": [ - 2351, + 2619, { "distinct_on": [ - 2372, + 2640, "[player_premier_rank_history_select_column!]" ], "limit": [ @@ -65225,19 +70150,19 @@ export default { 34 ], "order_by": [ - 2370, + 2638, "[player_premier_rank_history_order_by!]" ], "where": [ - 2360 + 2628 ] } ], "premier_rank_history_aggregate": [ - 2352, + 2620, { "distinct_on": [ - 2372, + 2640, "[player_premier_rank_history_select_column!]" ], "limit": [ @@ -65247,31 +70172,31 @@ export default { 34 ], "order_by": [ - 2370, + 2638, "[player_premier_rank_history_order_by!]" ], "where": [ - 2360 + 2628 ] } ], "premier_rank_updated_at": [ - 2922 + 3190 ], "profile_url": [ 63 ], "role": [ - 536 + 777 ], "roster_image_url": [ 63 ], "sanctions": [ - 2392, + 2660, { "distinct_on": [ - 2413, + 2681, "[player_sanctions_select_column!]" ], "limit": [ @@ -65281,19 +70206,19 @@ export default { 34 ], "order_by": [ - 2411, + 2679, "[player_sanctions_order_by!]" ], "where": [ - 2401 + 2669 ] } ], "sanctions_aggregate": [ - 2393, + 2661, { "distinct_on": [ - 2413, + 2681, "[player_sanctions_select_column!]" ], "limit": [ @@ -65303,11 +70228,11 @@ export default { 34 ], "order_by": [ - 2411, + 2679, "[player_sanctions_order_by!]" ], "where": [ - 2401 + 2669 ] } ], @@ -65315,19 +70240,19 @@ export default { 3 ], "stats": [ - 2433 + 2701 ], "steam_bans_checked_at": [ - 2922 + 3190 ], "steam_id": [ 162 ], "team_invites": [ - 2793, + 3061, { "distinct_on": [ - 2814, + 3082, "[team_invites_select_column!]" ], "limit": [ @@ -65337,19 +70262,19 @@ export default { 34 ], "order_by": [ - 2812, + 3080, "[team_invites_order_by!]" ], "where": [ - 2802 + 3070 ] } ], "team_invites_aggregate": [ - 2794, + 3062, { "distinct_on": [ - 2814, + 3082, "[team_invites_select_column!]" ], "limit": [ @@ -65359,19 +70284,19 @@ export default { 34 ], "order_by": [ - 2812, + 3080, "[team_invites_order_by!]" ], "where": [ - 2802 + 3070 ] } ], "team_members": [ - 2834, + 3102, { "distinct_on": [ - 2857, + 3125, "[team_roster_select_column!]" ], "limit": [ @@ -65381,19 +70306,19 @@ export default { 34 ], "order_by": [ - 2855, + 3123, "[team_roster_order_by!]" ], "where": [ - 2845 + 3113 ] } ], "team_members_aggregate": [ - 2835, + 3103, { "distinct_on": [ - 2857, + 3125, "[team_roster_select_column!]" ], "limit": [ @@ -65403,19 +70328,19 @@ export default { 34 ], "order_by": [ - 2855, + 3123, "[team_roster_order_by!]" ], "where": [ - 2845 + 3113 ] } ], "teams": [ - 2879, + 3147, { "distinct_on": [ - 2901, + 3169, "[teams_select_column!]" ], "limit": [ @@ -65425,11 +70350,11 @@ export default { 34 ], "order_by": [ - 2899, + 3167, "[teams_order_by!]" ], "where": [ - 2888 + 3156 ] } ], @@ -65437,10 +70362,10 @@ export default { 34 ], "tournament_organizers": [ - 2970, + 3238, { "distinct_on": [ - 2991, + 3259, "[tournament_organizers_select_column!]" ], "limit": [ @@ -65450,19 +70375,19 @@ export default { 34 ], "order_by": [ - 2989, + 3257, "[tournament_organizers_order_by!]" ], "where": [ - 2979 + 3247 ] } ], "tournament_organizers_aggregate": [ - 2971, + 3239, { "distinct_on": [ - 2991, + 3259, "[tournament_organizers_select_column!]" ], "limit": [ @@ -65472,19 +70397,19 @@ export default { 34 ], "order_by": [ - 2989, + 3257, "[tournament_organizers_order_by!]" ], "where": [ - 2979 + 3247 ] } ], "tournament_rosters": [ - 3103, + 3371, { "distinct_on": [ - 3124, + 3392, "[tournament_team_roster_select_column!]" ], "limit": [ @@ -65494,19 +70419,19 @@ export default { 34 ], "order_by": [ - 3122, + 3390, "[tournament_team_roster_order_by!]" ], "where": [ - 3112 + 3380 ] } ], "tournament_rosters_aggregate": [ - 3104, + 3372, { "distinct_on": [ - 3124, + 3392, "[tournament_team_roster_select_column!]" ], "limit": [ @@ -65516,19 +70441,19 @@ export default { 34 ], "order_by": [ - 3122, + 3390, "[tournament_team_roster_order_by!]" ], "where": [ - 3112 + 3380 ] } ], "tournament_trophies": [ - 3186, + 3454, { "distinct_on": [ - 3209, + 3477, "[tournament_trophies_select_column!]" ], "limit": [ @@ -65538,19 +70463,19 @@ export default { 34 ], "order_by": [ - 3207, + 3475, "[tournament_trophies_order_by!]" ], "where": [ - 3197 + 3465 ] } ], "tournament_trophies_aggregate": [ - 3187, + 3455, { "distinct_on": [ - 3209, + 3477, "[tournament_trophies_select_column!]" ], "limit": [ @@ -65560,19 +70485,19 @@ export default { 34 ], "order_by": [ - 3207, + 3475, "[tournament_trophies_order_by!]" ], "where": [ - 3197 + 3465 ] } ], "tournaments": [ - 3273, + 3541, { "distinct_on": [ - 3297, + 3565, "[tournaments_select_column!]" ], "limit": [ @@ -65582,19 +70507,19 @@ export default { 34 ], "order_by": [ - 3295, + 3563, "[tournaments_order_by!]" ], "where": [ - 3284 + 3552 ] } ], "tournaments_aggregate": [ - 3274, + 3542, { "distinct_on": [ - 3297, + 3565, "[tournaments_select_column!]" ], "limit": [ @@ -65604,19 +70529,19 @@ export default { 34 ], "order_by": [ - 3295, + 3563, "[tournaments_order_by!]" ], "where": [ - 3284 + 3552 ] } ], "utility_thrown": [ - 2529, + 2797, { "distinct_on": [ - 2550, + 2818, "[player_utility_select_column!]" ], "limit": [ @@ -65626,19 +70551,19 @@ export default { 34 ], "order_by": [ - 2548, + 2816, "[player_utility_order_by!]" ], "where": [ - 2538 + 2806 ] } ], "utility_thrown_aggregate": [ - 2530, + 2798, { "distinct_on": [ - 2550, + 2818, "[player_utility_select_column!]" ], "limit": [ @@ -65648,11 +70573,11 @@ export default { 34 ], "order_by": [ - 2548, + 2816, "[player_utility_order_by!]" ], "where": [ - 2538 + 2806 ] } ], @@ -65663,10 +70588,10 @@ export default { 3 ], "weapon_stats": [ - 2570, + 2838, { "distinct_on": [ - 2586, + 2854, "[player_weapon_stats_v_select_column!]" ], "limit": [ @@ -65676,19 +70601,19 @@ export default { 34 ], "order_by": [ - 2585, + 2853, "[player_weapon_stats_v_order_by!]" ], "where": [ - 2579 + 2847 ] } ], "weapon_stats_aggregate": [ - 2571, + 2839, { "distinct_on": [ - 2586, + 2854, "[player_weapon_stats_v_select_column!]" ], "limit": [ @@ -65698,11 +70623,11 @@ export default { 34 ], "order_by": [ - 2585, + 2853, "[player_weapon_stats_v_order_by!]" ], "where": [ - 2579 + 2847 ] } ], @@ -65724,10 +70649,10 @@ export default { }, "players_aggregate": { "aggregate": [ - 2605 + 2873 ], "nodes": [ - 2603 + 2871 ], "__typename": [ 63 @@ -65735,13 +70660,13 @@ export default { }, "players_aggregate_fields": { "avg": [ - 2606 + 2874 ], "count": [ 34, { "columns": [ - 2618, + 2886, "[players_select_column!]" ], "distinct": [ @@ -65750,31 +70675,31 @@ export default { } ], "max": [ - 2611 + 2879 ], "min": [ - 2612 + 2880 ], "stddev": [ - 2620 + 2888 ], "stddev_pop": [ - 2621 + 2889 ], "stddev_samp": [ - 2622 + 2890 ], "sum": [ - 2625 + 2893 ], "var_pop": [ - 2628 + 2896 ], "var_samp": [ - 2629 + 2897 ], "variance": [ - 2630 + 2898 ], "__typename": [ 63 @@ -65835,13 +70760,13 @@ export default { }, "players_bool_exp": { "_and": [ - 2607 + 2875 ], "_not": [ - 2607 + 2875 ], "_or": [ - 2607 + 2875 ], "abandoned_matches": [ 103 @@ -65850,76 +70775,76 @@ export default { 96 ], "aim_weapon_stats": [ - 1842 + 2110 ], "aim_weapon_stats_aggregate": [ - 1835 + 2103 ], "assists": [ - 1885 + 2153 ], "assists_aggregate": [ - 1876 + 2144 ], "assited_by_players": [ - 1885 + 2153 ], "assited_by_players_aggregate": [ - 1876 + 2144 ], "avatar_url": [ 65 ], "coach_lineups": [ - 1267 + 1508 ], "coach_lineups_aggregate": [ - 1260 + 1501 ], "country": [ 65 ], "created_at": [ - 2923 + 3191 ], "current_lobby_id": [ - 3320 + 3588 ], "custom_avatar_url": [ 65 ], "damage_dealt": [ - 1946 + 2214 ], "damage_dealt_aggregate": [ - 1939 + 2207 ], "damage_taken": [ - 1946 + 2214 ], "damage_taken_aggregate": [ - 1939 + 2207 ], "days_since_last_ban": [ 35 ], "deaths": [ - 2102 + 2370 ], "deaths_aggregate": [ - 2093 + 2361 ], "discord_id": [ 65 ], "elo": [ - 948 + 1189 ], "elo_history": [ - 3579 + 3847 ], "elo_history_aggregate": [ - 3562 + 3830 ], "faceit_elo": [ 35 @@ -65931,46 +70856,46 @@ export default { 65 ], "faceit_rank_history": [ - 2014 + 2282 ], "faceit_rank_history_aggregate": [ - 2007 + 2275 ], "faceit_skill_level": [ 35 ], "faceit_updated_at": [ - 2923 + 3191 ], "faceit_url": [ 65 ], "flashed_by_players": [ - 2057 + 2325 ], "flashed_by_players_aggregate": [ - 2048 + 2316 ], "flashed_players": [ - 2057 + 2325 ], "flashed_players_aggregate": [ - 2048 + 2316 ], "friends": [ - 1650 + 1891 ], "friends_aggregate": [ - 1640 + 1881 ], "game_ban_count": [ 35 ], "invited_players": [ - 2802 + 3070 ], "invited_players_aggregate": [ - 2795 + 3063 ], "is_banned": [ 4 @@ -65988,28 +70913,31 @@ export default { 4 ], "kills": [ - 2102 + 2370 ], "kills_aggregate": [ - 2093 + 2361 ], "kills_by_weapons": [ - 2112 + 2380 ], "kills_by_weapons_aggregate": [ - 2105 + 2373 ], "language": [ 65 ], + "last_read_news_at": [ + 3191 + ], "last_sign_in_at": [ - 2923 + 3191 ], "lobby_players": [ - 1002 + 1243 ], "lobby_players_aggregate": [ - 993 + 1234 ], "losses": [ 35 @@ -66024,34 +70952,34 @@ export default { 35 ], "match_map_hltv": [ - 3674 + 3942 ], "match_map_hltv_aggregate": [ - 3667 + 3935 ], "match_map_stats": [ - 2209 + 2477 ], "match_map_stats_aggregate": [ - 2202 + 2470 ], "match_stats": [ - 2268 + 2536 ], "match_stats_aggregate": [ - 2261 + 2529 ], "matches": [ - 1587 + 1828 ], "matchmaking_cooldown": [ - 2923 + 3191 ], "multi_kills": [ - 3765 + 4033 ], "multi_kills_aggregate": [ - 3758 + 4026 ], "name": [ 65 @@ -66060,130 +70988,130 @@ export default { 4 ], "notifications": [ - 1696 + 1964 ], "notifications_aggregate": [ - 1686 + 1954 ], "objectives": [ - 2301 + 2569 ], "objectives_aggregate": [ - 2294 + 2562 ], "owned_teams": [ - 2888 + 3156 ], "owned_teams_aggregate": [ - 2881 + 3149 ], "peak_elo": [ - 948 + 1189 ], "pending_match_imports": [ - 1746 + 2014 ], "pending_match_imports_aggregate": [ - 1739 + 2007 ], "player_lineup": [ - 1224 + 1465 ], "player_lineup_aggregate": [ - 1215 + 1456 ], "player_unused_utilities": [ - 2497 + 2765 ], "player_unused_utilities_aggregate": [ - 2490 + 2758 ], "premier_rank": [ 35 ], "premier_rank_history": [ - 2360 + 2628 ], "premier_rank_history_aggregate": [ - 2353 + 2621 ], "premier_rank_updated_at": [ - 2923 + 3191 ], "profile_url": [ 65 ], "role": [ - 537 + 778 ], "roster_image_url": [ 65 ], "sanctions": [ - 2401 + 2669 ], "sanctions_aggregate": [ - 2394 + 2662 ], "show_match_ready_modal": [ 4 ], "stats": [ - 2437 + 2705 ], "steam_bans_checked_at": [ - 2923 + 3191 ], "steam_id": [ 163 ], "team_invites": [ - 2802 + 3070 ], "team_invites_aggregate": [ - 2795 + 3063 ], "team_members": [ - 2845 + 3113 ], "team_members_aggregate": [ - 2836 + 3104 ], "teams": [ - 2888 + 3156 ], "total_matches": [ 35 ], "tournament_organizers": [ - 2979 + 3247 ], "tournament_organizers_aggregate": [ - 2972 + 3240 ], "tournament_rosters": [ - 3112 + 3380 ], "tournament_rosters_aggregate": [ - 3105 + 3373 ], "tournament_trophies": [ - 3197 + 3465 ], "tournament_trophies_aggregate": [ - 3188 + 3456 ], "tournaments": [ - 3284 + 3552 ], "tournaments_aggregate": [ - 3275 + 3543 ], "utility_thrown": [ - 2538 + 2806 ], "utility_thrown_aggregate": [ - 2531 + 2799 ], "vac_ban_count": [ 35 @@ -66192,10 +71120,10 @@ export default { 4 ], "weapon_stats": [ - 2579 + 2847 ], "weapon_stats_aggregate": [ - 2572 + 2840 ], "wins": [ 35 @@ -66245,46 +71173,46 @@ export default { 100 ], "aim_weapon_stats": [ - 1839 + 2107 ], "assists": [ - 1882 + 2150 ], "assited_by_players": [ - 1882 + 2150 ], "avatar_url": [ 63 ], "coach_lineups": [ - 1264 + 1505 ], "country": [ 63 ], "created_at": [ - 2922 + 3190 ], "custom_avatar_url": [ 63 ], "damage_dealt": [ - 1943 + 2211 ], "damage_taken": [ - 1943 + 2211 ], "days_since_last_ban": [ 34 ], "deaths": [ - 2099 + 2367 ], "discord_id": [ 63 ], "elo_history": [ - 3576 + 3844 ], "faceit_elo": [ 34 @@ -66296,58 +71224,61 @@ export default { 63 ], "faceit_rank_history": [ - 2011 + 2279 ], "faceit_skill_level": [ 34 ], "faceit_updated_at": [ - 2922 + 3190 ], "faceit_url": [ 63 ], "flashed_by_players": [ - 2054 + 2322 ], "flashed_players": [ - 2054 + 2322 ], "friends": [ - 1647 + 1888 ], "game_ban_count": [ 34 ], "invited_players": [ - 2799 + 3067 ], "kills": [ - 2099 + 2367 ], "kills_by_weapons": [ - 2109 + 2377 ], "language": [ 63 ], + "last_read_news_at": [ + 3190 + ], "last_sign_in_at": [ - 2922 + 3190 ], "lobby_players": [ - 999 + 1240 ], "match_map_hltv": [ - 3671 + 3939 ], "match_map_stats": [ - 2206 + 2474 ], "match_stats": [ - 2265 + 2533 ], "multi_kills": [ - 3762 + 4030 ], "name": [ 63 @@ -66356,76 +71287,76 @@ export default { 3 ], "notifications": [ - 1693 + 1961 ], "objectives": [ - 2298 + 2566 ], "owned_teams": [ - 2885 + 3153 ], "pending_match_imports": [ - 1743 + 2011 ], "player_lineup": [ - 1221 + 1462 ], "player_unused_utilities": [ - 2494 + 2762 ], "premier_rank": [ 34 ], "premier_rank_history": [ - 2357 + 2625 ], "premier_rank_updated_at": [ - 2922 + 3190 ], "profile_url": [ 63 ], "role": [ - 536 + 777 ], "roster_image_url": [ 63 ], "sanctions": [ - 2398 + 2666 ], "show_match_ready_modal": [ 3 ], "stats": [ - 2444 + 2712 ], "steam_bans_checked_at": [ - 2922 + 3190 ], "steam_id": [ 162 ], "team_invites": [ - 2799 + 3067 ], "team_members": [ - 2842 + 3110 ], "tournament_organizers": [ - 2976 + 3244 ], "tournament_rosters": [ - 3109 + 3377 ], "tournament_trophies": [ - 3194 + 3462 ], "tournaments": [ - 3281 + 3549 ], "utility_thrown": [ - 2535 + 2803 ], "vac_ban_count": [ 34 @@ -66434,7 +71365,7 @@ export default { 3 ], "weapon_stats": [ - 2576 + 2844 ], "__typename": [ 63 @@ -66448,10 +71379,10 @@ export default { 63 ], "created_at": [ - 2922 + 3190 ], "current_lobby_id": [ - 3319 + 3587 ], "custom_avatar_url": [ 63 @@ -66475,7 +71406,7 @@ export default { 34 ], "faceit_updated_at": [ - 2922 + 3190 ], "faceit_url": [ 63 @@ -66486,8 +71417,11 @@ export default { "language": [ 63 ], + "last_read_news_at": [ + 3190 + ], "last_sign_in_at": [ - 2922 + 3190 ], "losses": [ 34 @@ -66502,7 +71436,7 @@ export default { 34 ], "matchmaking_cooldown": [ - 2922 + 3190 ], "name": [ 63 @@ -66511,7 +71445,7 @@ export default { 34 ], "premier_rank_updated_at": [ - 2922 + 3190 ], "profile_url": [ 63 @@ -66520,7 +71454,7 @@ export default { 63 ], "steam_bans_checked_at": [ - 2922 + 3190 ], "steam_id": [ 162 @@ -66555,10 +71489,10 @@ export default { 63 ], "created_at": [ - 2922 + 3190 ], "current_lobby_id": [ - 3319 + 3587 ], "custom_avatar_url": [ 63 @@ -66582,7 +71516,7 @@ export default { 34 ], "faceit_updated_at": [ - 2922 + 3190 ], "faceit_url": [ 63 @@ -66593,8 +71527,11 @@ export default { "language": [ 63 ], + "last_read_news_at": [ + 3190 + ], "last_sign_in_at": [ - 2922 + 3190 ], "losses": [ 34 @@ -66609,7 +71546,7 @@ export default { 34 ], "matchmaking_cooldown": [ - 2922 + 3190 ], "name": [ 63 @@ -66618,7 +71555,7 @@ export default { 34 ], "premier_rank_updated_at": [ - 2922 + 3190 ], "profile_url": [ 63 @@ -66627,7 +71564,7 @@ export default { 63 ], "steam_bans_checked_at": [ - 2922 + 3190 ], "steam_id": [ 162 @@ -66659,7 +71596,7 @@ export default { 34 ], "returning": [ - 2603 + 2871 ], "__typename": [ 63 @@ -66667,10 +71604,10 @@ export default { }, "players_obj_rel_insert_input": { "data": [ - 2610 + 2878 ], "on_conflict": [ - 2615 + 2883 ], "__typename": [ 63 @@ -66678,13 +71615,13 @@ export default { }, "players_on_conflict": { "constraint": [ - 2608 + 2876 ], "update_columns": [ - 2626 + 2894 ], "where": [ - 2607 + 2875 ], "__typename": [ 63 @@ -66695,256 +71632,259 @@ export default { 99 ], "aim_weapon_stats_aggregate": [ - 1838 + 2106 ], "assists_aggregate": [ - 1881 + 2149 ], "assited_by_players_aggregate": [ - 1881 + 2149 ], "avatar_url": [ - 1736 + 2004 ], "coach_lineups_aggregate": [ - 1263 + 1504 ], "country": [ - 1736 + 2004 ], "created_at": [ - 1736 + 2004 ], "current_lobby_id": [ - 1736 + 2004 ], "custom_avatar_url": [ - 1736 + 2004 ], "damage_dealt_aggregate": [ - 1942 + 2210 ], "damage_taken_aggregate": [ - 1942 + 2210 ], "days_since_last_ban": [ - 1736 + 2004 ], "deaths_aggregate": [ - 2098 + 2366 ], "discord_id": [ - 1736 + 2004 ], "elo": [ - 1736 + 2004 ], "elo_history_aggregate": [ - 3575 + 3843 ], "faceit_elo": [ - 1736 + 2004 ], "faceit_nickname": [ - 1736 + 2004 ], "faceit_player_id": [ - 1736 + 2004 ], "faceit_rank_history_aggregate": [ - 2010 + 2278 ], "faceit_skill_level": [ - 1736 + 2004 ], "faceit_updated_at": [ - 1736 + 2004 ], "faceit_url": [ - 1736 + 2004 ], "flashed_by_players_aggregate": [ - 2053 + 2321 ], "flashed_players_aggregate": [ - 2053 + 2321 ], "friends_aggregate": [ - 1645 + 1886 ], "game_ban_count": [ - 1736 + 2004 ], "invited_players_aggregate": [ - 2798 + 3066 ], "is_banned": [ - 1736 + 2004 ], "is_gagged": [ - 1736 + 2004 ], "is_in_another_match": [ - 1736 + 2004 ], "is_in_lobby": [ - 1736 + 2004 ], "is_muted": [ - 1736 + 2004 ], "kills_aggregate": [ - 2098 + 2366 ], "kills_by_weapons_aggregate": [ - 2108 + 2376 ], "language": [ - 1736 + 2004 + ], + "last_read_news_at": [ + 2004 ], "last_sign_in_at": [ - 1736 + 2004 ], "lobby_players_aggregate": [ - 998 + 1239 ], "losses": [ - 1736 + 2004 ], "losses_competitive": [ - 1736 + 2004 ], "losses_duel": [ - 1736 + 2004 ], "losses_wingman": [ - 1736 + 2004 ], "match_map_hltv_aggregate": [ - 3670 + 3938 ], "match_map_stats_aggregate": [ - 2205 + 2473 ], "match_stats_aggregate": [ - 2264 + 2532 ], "matches_aggregate": [ - 1583 + 1824 ], "matchmaking_cooldown": [ - 1736 + 2004 ], "multi_kills_aggregate": [ - 3761 + 4029 ], "name": [ - 1736 + 2004 ], "name_registered": [ - 1736 + 2004 ], "notifications_aggregate": [ - 1691 + 1959 ], "objectives_aggregate": [ - 2297 + 2565 ], "owned_teams_aggregate": [ - 2884 + 3152 ], "peak_elo": [ - 1736 + 2004 ], "pending_match_imports_aggregate": [ - 1742 + 2010 ], "player_lineup_aggregate": [ - 1220 + 1461 ], "player_unused_utilities_aggregate": [ - 2493 + 2761 ], "premier_rank": [ - 1736 + 2004 ], "premier_rank_history_aggregate": [ - 2356 + 2624 ], "premier_rank_updated_at": [ - 1736 + 2004 ], "profile_url": [ - 1736 + 2004 ], "role": [ - 1736 + 2004 ], "roster_image_url": [ - 1736 + 2004 ], "sanctions_aggregate": [ - 2397 + 2665 ], "show_match_ready_modal": [ - 1736 + 2004 ], "stats": [ - 2446 + 2714 ], "steam_bans_checked_at": [ - 1736 + 2004 ], "steam_id": [ - 1736 + 2004 ], "team_invites_aggregate": [ - 2798 + 3066 ], "team_members_aggregate": [ - 2841 + 3109 ], "teams_aggregate": [ - 2884 + 3152 ], "total_matches": [ - 1736 + 2004 ], "tournament_organizers_aggregate": [ - 2975 + 3243 ], "tournament_rosters_aggregate": [ - 3108 + 3376 ], "tournament_trophies_aggregate": [ - 3193 + 3461 ], "tournaments_aggregate": [ - 3280 + 3548 ], "utility_thrown_aggregate": [ - 2534 + 2802 ], "vac_ban_count": [ - 1736 + 2004 ], "vac_banned": [ - 1736 + 2004 ], "weapon_stats_aggregate": [ - 2575 + 2843 ], "wins": [ - 1736 + 2004 ], "wins_competitive": [ - 1736 + 2004 ], "wins_duel": [ - 1736 + 2004 ], "wins_wingman": [ - 1736 + 2004 ], "__typename": [ 63 @@ -66967,7 +71907,7 @@ export default { 63 ], "created_at": [ - 2922 + 3190 ], "custom_avatar_url": [ 63 @@ -66991,7 +71931,7 @@ export default { 34 ], "faceit_updated_at": [ - 2922 + 3190 ], "faceit_url": [ 63 @@ -67002,8 +71942,11 @@ export default { "language": [ 63 ], + "last_read_news_at": [ + 3190 + ], "last_sign_in_at": [ - 2922 + 3190 ], "name": [ 63 @@ -67015,13 +71958,13 @@ export default { 34 ], "premier_rank_updated_at": [ - 2922 + 3190 ], "profile_url": [ 63 ], "role": [ - 536 + 777 ], "roster_image_url": [ 63 @@ -67030,7 +71973,7 @@ export default { 3 ], "steam_bans_checked_at": [ - 2922 + 3190 ], "steam_id": [ 162 @@ -67206,7 +72149,7 @@ export default { }, "players_stream_cursor_input": { "initial_value": [ - 2624 + 2892 ], "ordering": [ 216 @@ -67223,7 +72166,7 @@ export default { 63 ], "created_at": [ - 2922 + 3190 ], "custom_avatar_url": [ 63 @@ -67247,7 +72190,7 @@ export default { 34 ], "faceit_updated_at": [ - 2922 + 3190 ], "faceit_url": [ 63 @@ -67258,8 +72201,11 @@ export default { "language": [ 63 ], + "last_read_news_at": [ + 3190 + ], "last_sign_in_at": [ - 2922 + 3190 ], "name": [ 63 @@ -67271,13 +72217,13 @@ export default { 34 ], "premier_rank_updated_at": [ - 2922 + 3190 ], "profile_url": [ 63 ], "role": [ - 536 + 777 ], "roster_image_url": [ 63 @@ -67286,7 +72232,7 @@ export default { 3 ], "steam_bans_checked_at": [ - 2922 + 3190 ], "steam_id": [ 162 @@ -67357,13 +72303,13 @@ export default { "players_update_column": {}, "players_updates": { "_inc": [ - 2609 + 2877 ], "_set": [ - 2619 + 2887 ], "where": [ - 2607 + 2875 ], "__typename": [ 63 @@ -67533,7 +72479,7 @@ export default { 34 ], "published_at": [ - 2922 + 3190 ], "version": [ 63 @@ -67544,10 +72490,10 @@ export default { }, "plugin_versions_aggregate": { "aggregate": [ - 2633 + 2901 ], "nodes": [ - 2631 + 2899 ], "__typename": [ 63 @@ -67555,13 +72501,13 @@ export default { }, "plugin_versions_aggregate_fields": { "avg": [ - 2634 + 2902 ], "count": [ 34, { "columns": [ - 2645, + 2913, "[plugin_versions_select_column!]" ], "distinct": [ @@ -67570,31 +72516,31 @@ export default { } ], "max": [ - 2639 + 2907 ], "min": [ - 2640 + 2908 ], "stddev": [ - 2647 + 2915 ], "stddev_pop": [ - 2648 + 2916 ], "stddev_samp": [ - 2649 + 2917 ], "sum": [ - 2652 + 2920 ], "var_pop": [ - 2655 + 2923 ], "var_samp": [ - 2656 + 2924 ], "variance": [ - 2657 + 2925 ], "__typename": [ 63 @@ -67610,19 +72556,19 @@ export default { }, "plugin_versions_bool_exp": { "_and": [ - 2635 + 2903 ], "_not": [ - 2635 + 2903 ], "_or": [ - 2635 + 2903 ], "min_game_build_id": [ 35 ], "published_at": [ - 2923 + 3191 ], "version": [ 65 @@ -67645,7 +72591,7 @@ export default { 34 ], "published_at": [ - 2922 + 3190 ], "version": [ 63 @@ -67659,7 +72605,7 @@ export default { 34 ], "published_at": [ - 2922 + 3190 ], "version": [ 63 @@ -67673,7 +72619,7 @@ export default { 34 ], "published_at": [ - 2922 + 3190 ], "version": [ 63 @@ -67687,7 +72633,7 @@ export default { 34 ], "returning": [ - 2631 + 2899 ], "__typename": [ 63 @@ -67695,13 +72641,13 @@ export default { }, "plugin_versions_on_conflict": { "constraint": [ - 2636 + 2904 ], "update_columns": [ - 2653 + 2921 ], "where": [ - 2635 + 2903 ], "__typename": [ 63 @@ -67709,13 +72655,13 @@ export default { }, "plugin_versions_order_by": { "min_game_build_id": [ - 1736 + 2004 ], "published_at": [ - 1736 + 2004 ], "version": [ - 1736 + 2004 ], "__typename": [ 63 @@ -67735,7 +72681,7 @@ export default { 34 ], "published_at": [ - 2922 + 3190 ], "version": [ 63 @@ -67770,7 +72716,7 @@ export default { }, "plugin_versions_stream_cursor_input": { "initial_value": [ - 2651 + 2919 ], "ordering": [ 216 @@ -67784,7 +72730,7 @@ export default { 34 ], "published_at": [ - 2922 + 3190 ], "version": [ 63 @@ -67804,13 +72750,13 @@ export default { "plugin_versions_update_column": {}, "plugin_versions_updates": { "_inc": [ - 2637 + 2905 ], "_set": [ - 2646 + 2914 ], "where": [ - 2635 + 2903 ], "__typename": [ 63 @@ -67842,7 +72788,7 @@ export default { }, "recalculate_tournament_trophies_args": { "_tournament_id": [ - 3319 + 3587 ], "__typename": [ 63 @@ -67856,10 +72802,10 @@ export default { 63 ], "game_server_nodes": [ - 824, + 1065, { "distinct_on": [ - 853, + 1094, "[game_server_nodes_select_column!]" ], "limit": [ @@ -67869,19 +72815,19 @@ export default { 34 ], "order_by": [ - 850, + 1091, "[game_server_nodes_order_by!]" ], "where": [ - 836 + 1077 ] } ], "game_server_nodes_aggregate": [ - 825, + 1066, { "distinct_on": [ - 853, + 1094, "[game_server_nodes_select_column!]" ], "limit": [ @@ -67891,11 +72837,11 @@ export default { 34 ], "order_by": [ - 850, + 1091, "[game_server_nodes_order_by!]" ], "where": [ - 836 + 1077 ] } ], @@ -67923,10 +72869,10 @@ export default { }, "server_regions_aggregate": { "aggregate": [ - 2661 + 2929 ], "nodes": [ - 2659 + 2927 ], "__typename": [ 63 @@ -67934,13 +72880,13 @@ export default { }, "server_regions_aggregate_fields": { "avg": [ - 2662 + 2930 ], "count": [ 34, { "columns": [ - 2673, + 2941, "[server_regions_select_column!]" ], "distinct": [ @@ -67949,31 +72895,31 @@ export default { } ], "max": [ - 2666 + 2934 ], "min": [ - 2667 + 2935 ], "stddev": [ - 2675 + 2943 ], "stddev_pop": [ - 2676 + 2944 ], "stddev_samp": [ - 2677 + 2945 ], "sum": [ - 2680 + 2948 ], "var_pop": [ - 2683 + 2951 ], "var_samp": [ - 2684 + 2952 ], "variance": [ - 2685 + 2953 ], "__typename": [ 63 @@ -67992,13 +72938,13 @@ export default { }, "server_regions_bool_exp": { "_and": [ - 2663 + 2931 ], "_not": [ - 2663 + 2931 ], "_or": [ - 2663 + 2931 ], "available_server_count": [ 35 @@ -68007,10 +72953,10 @@ export default { 65 ], "game_server_nodes": [ - 836 + 1077 ], "game_server_nodes_aggregate": [ - 826 + 1067 ], "has_node": [ 4 @@ -68040,7 +72986,7 @@ export default { 63 ], "game_server_nodes": [ - 833 + 1074 ], "is_lan": [ 3 @@ -68100,7 +73046,7 @@ export default { 34 ], "returning": [ - 2659 + 2927 ], "__typename": [ 63 @@ -68108,10 +73054,10 @@ export default { }, "server_regions_obj_rel_insert_input": { "data": [ - 2665 + 2933 ], "on_conflict": [ - 2670 + 2938 ], "__typename": [ 63 @@ -68119,13 +73065,13 @@ export default { }, "server_regions_on_conflict": { "constraint": [ - 2664 + 2932 ], "update_columns": [ - 2681 + 2949 ], "where": [ - 2663 + 2931 ], "__typename": [ 63 @@ -68133,31 +73079,31 @@ export default { }, "server_regions_order_by": { "available_server_count": [ - 1736 + 2004 ], "description": [ - 1736 + 2004 ], "game_server_nodes_aggregate": [ - 831 + 1072 ], "has_node": [ - 1736 + 2004 ], "is_lan": [ - 1736 + 2004 ], "status": [ - 1736 + 2004 ], "steam_relay": [ - 1736 + 2004 ], "total_server_count": [ - 1736 + 2004 ], "value": [ - 1736 + 2004 ], "__typename": [ 63 @@ -68224,7 +73170,7 @@ export default { }, "server_regions_stream_cursor_input": { "initial_value": [ - 2679 + 2947 ], "ordering": [ 216 @@ -68264,10 +73210,10 @@ export default { "server_regions_update_column": {}, "server_regions_updates": { "_set": [ - 2674 + 2942 ], "where": [ - 2663 + 2931 ], "__typename": [ 63 @@ -68308,7 +73254,7 @@ export default { }, "servers": { "api_password": [ - 3319 + 3587 ], "boot_status": [ 63 @@ -68329,7 +73275,7 @@ export default { 63 ], "current_match": [ - 1578 + 1819 ], "enabled": [ 3 @@ -68338,7 +73284,7 @@ export default { 63 ], "game_server_node": [ - 824 + 1065 ], "game_server_node_id": [ 63 @@ -68347,7 +73293,7 @@ export default { 63 ], "id": [ - 3319 + 3587 ], "is_dedicated": [ 3 @@ -68356,10 +73302,10 @@ export default { 63 ], "matches": [ - 1578, + 1819, { "distinct_on": [ - 1600, + 1841, "[matches_select_column!]" ], "limit": [ @@ -68369,19 +73315,19 @@ export default { 34 ], "order_by": [ - 1598, + 1839, "[matches_order_by!]" ], "where": [ - 1587 + 1828 ] } ], "matches_aggregate": [ - 1579, + 1820, { "distinct_on": [ - 1600, + 1841, "[matches_select_column!]" ], "limit": [ @@ -68391,11 +73337,11 @@ export default { 34 ], "order_by": [ - 1598, + 1839, "[matches_order_by!]" ], "where": [ - 1587 + 1828 ] } ], @@ -68403,7 +73349,7 @@ export default { 34 ], "offline_at": [ - 2922 + 3190 ], "plugin_version": [ 63 @@ -68421,10 +73367,10 @@ export default { 63 ], "reserved_by_match_id": [ - 3319 + 3587 ], "server_region": [ - 2659 + 2927 ], "steam_relay": [ 63 @@ -68433,10 +73379,10 @@ export default { 34 ], "type": [ - 597 + 838 ], "updated_at": [ - 2922 + 3190 ], "__typename": [ 63 @@ -68444,10 +73390,10 @@ export default { }, "servers_aggregate": { "aggregate": [ - 2692 + 2960 ], "nodes": [ - 2686 + 2954 ], "__typename": [ 63 @@ -68455,13 +73401,13 @@ export default { }, "servers_aggregate_bool_exp": { "bool_and": [ - 2689 + 2957 ], "bool_or": [ - 2690 + 2958 ], "count": [ - 2691 + 2959 ], "__typename": [ 63 @@ -68469,13 +73415,13 @@ export default { }, "servers_aggregate_bool_exp_bool_and": { "arguments": [ - 2711 + 2979 ], "distinct": [ 3 ], "filter": [ - 2697 + 2965 ], "predicate": [ 4 @@ -68486,13 +73432,13 @@ export default { }, "servers_aggregate_bool_exp_bool_or": { "arguments": [ - 2712 + 2980 ], "distinct": [ 3 ], "filter": [ - 2697 + 2965 ], "predicate": [ 4 @@ -68503,13 +73449,13 @@ export default { }, "servers_aggregate_bool_exp_count": { "arguments": [ - 2710 + 2978 ], "distinct": [ 3 ], "filter": [ - 2697 + 2965 ], "predicate": [ 35 @@ -68520,13 +73466,13 @@ export default { }, "servers_aggregate_fields": { "avg": [ - 2695 + 2963 ], "count": [ 34, { "columns": [ - 2710, + 2978, "[servers_select_column!]" ], "distinct": [ @@ -68535,31 +73481,31 @@ export default { } ], "max": [ - 2701 + 2969 ], "min": [ - 2703 + 2971 ], "stddev": [ - 2714 + 2982 ], "stddev_pop": [ - 2716 + 2984 ], "stddev_samp": [ - 2718 + 2986 ], "sum": [ - 2722 + 2990 ], "var_pop": [ - 2726 + 2994 ], "var_samp": [ - 2728 + 2996 ], "variance": [ - 2730 + 2998 ], "__typename": [ 63 @@ -68567,37 +73513,37 @@ export default { }, "servers_aggregate_order_by": { "avg": [ - 2696 + 2964 ], "count": [ - 1736 + 2004 ], "max": [ - 2702 + 2970 ], "min": [ - 2704 + 2972 ], "stddev": [ - 2715 + 2983 ], "stddev_pop": [ - 2717 + 2985 ], "stddev_samp": [ - 2719 + 2987 ], "sum": [ - 2723 + 2991 ], "var_pop": [ - 2727 + 2995 ], "var_samp": [ - 2729 + 2997 ], "variance": [ - 2731 + 2999 ], "__typename": [ 63 @@ -68605,10 +73551,10 @@ export default { }, "servers_arr_rel_insert_input": { "data": [ - 2700 + 2968 ], "on_conflict": [ - 2707 + 2975 ], "__typename": [ 63 @@ -68630,13 +73576,13 @@ export default { }, "servers_avg_order_by": { "max_players": [ - 1736 + 2004 ], "port": [ - 1736 + 2004 ], "tv_port": [ - 1736 + 2004 ], "__typename": [ 63 @@ -68644,16 +73590,16 @@ export default { }, "servers_bool_exp": { "_and": [ - 2697 + 2965 ], "_not": [ - 2697 + 2965 ], "_or": [ - 2697 + 2965 ], "api_password": [ - 3320 + 3588 ], "boot_status": [ 65 @@ -68674,7 +73620,7 @@ export default { 65 ], "current_match": [ - 1587 + 1828 ], "enabled": [ 4 @@ -68683,7 +73629,7 @@ export default { 65 ], "game_server_node": [ - 836 + 1077 ], "game_server_node_id": [ 65 @@ -68692,7 +73638,7 @@ export default { 65 ], "id": [ - 3320 + 3588 ], "is_dedicated": [ 4 @@ -68701,16 +73647,16 @@ export default { 65 ], "matches": [ - 1587 + 1828 ], "matches_aggregate": [ - 1580 + 1821 ], "max_players": [ 35 ], "offline_at": [ - 2923 + 3191 ], "plugin_version": [ 65 @@ -68728,10 +73674,10 @@ export default { 65 ], "reserved_by_match_id": [ - 3320 + 3588 ], "server_region": [ - 2663 + 2931 ], "steam_relay": [ 65 @@ -68740,10 +73686,10 @@ export default { 35 ], "type": [ - 598 + 839 ], "updated_at": [ - 2923 + 3191 ], "__typename": [ 63 @@ -68766,7 +73712,7 @@ export default { }, "servers_insert_input": { "api_password": [ - 3319 + 3587 ], "boot_status": [ 63 @@ -68781,7 +73727,7 @@ export default { 3 ], "current_match": [ - 1596 + 1837 ], "enabled": [ 3 @@ -68790,7 +73736,7 @@ export default { 63 ], "game_server_node": [ - 848 + 1089 ], "game_server_node_id": [ 63 @@ -68799,7 +73745,7 @@ export default { 63 ], "id": [ - 3319 + 3587 ], "is_dedicated": [ 3 @@ -68808,13 +73754,13 @@ export default { 63 ], "matches": [ - 1584 + 1825 ], "max_players": [ 34 ], "offline_at": [ - 2922 + 3190 ], "plugin_version": [ 63 @@ -68832,10 +73778,10 @@ export default { 63 ], "reserved_by_match_id": [ - 3319 + 3587 ], "server_region": [ - 2669 + 2937 ], "steam_relay": [ 63 @@ -68844,10 +73790,10 @@ export default { 34 ], "type": [ - 597 + 838 ], "updated_at": [ - 2922 + 3190 ], "__typename": [ 63 @@ -68855,7 +73801,7 @@ export default { }, "servers_max_fields": { "api_password": [ - 3319 + 3587 ], "boot_status": [ 63 @@ -68882,7 +73828,7 @@ export default { 63 ], "id": [ - 3319 + 3587 ], "label": [ 63 @@ -68891,7 +73837,7 @@ export default { 34 ], "offline_at": [ - 2922 + 3190 ], "plugin_version": [ 63 @@ -68903,7 +73849,7 @@ export default { 63 ], "reserved_by_match_id": [ - 3319 + 3587 ], "steam_relay": [ 63 @@ -68912,7 +73858,7 @@ export default { 34 ], "updated_at": [ - 2922 + 3190 ], "__typename": [ 63 @@ -68920,58 +73866,58 @@ export default { }, "servers_max_order_by": { "api_password": [ - 1736 + 2004 ], "boot_status": [ - 1736 + 2004 ], "boot_status_detail": [ - 1736 + 2004 ], "connect_password": [ - 1736 + 2004 ], "game": [ - 1736 + 2004 ], "game_server_node_id": [ - 1736 + 2004 ], "host": [ - 1736 + 2004 ], "id": [ - 1736 + 2004 ], "label": [ - 1736 + 2004 ], "max_players": [ - 1736 + 2004 ], "offline_at": [ - 1736 + 2004 ], "plugin_version": [ - 1736 + 2004 ], "port": [ - 1736 + 2004 ], "region": [ - 1736 + 2004 ], "reserved_by_match_id": [ - 1736 + 2004 ], "steam_relay": [ - 1736 + 2004 ], "tv_port": [ - 1736 + 2004 ], "updated_at": [ - 1736 + 2004 ], "__typename": [ 63 @@ -68979,7 +73925,7 @@ export default { }, "servers_min_fields": { "api_password": [ - 3319 + 3587 ], "boot_status": [ 63 @@ -69006,7 +73952,7 @@ export default { 63 ], "id": [ - 3319 + 3587 ], "label": [ 63 @@ -69015,7 +73961,7 @@ export default { 34 ], "offline_at": [ - 2922 + 3190 ], "plugin_version": [ 63 @@ -69027,7 +73973,7 @@ export default { 63 ], "reserved_by_match_id": [ - 3319 + 3587 ], "steam_relay": [ 63 @@ -69036,7 +73982,7 @@ export default { 34 ], "updated_at": [ - 2922 + 3190 ], "__typename": [ 63 @@ -69044,58 +73990,58 @@ export default { }, "servers_min_order_by": { "api_password": [ - 1736 + 2004 ], "boot_status": [ - 1736 + 2004 ], "boot_status_detail": [ - 1736 + 2004 ], "connect_password": [ - 1736 + 2004 ], "game": [ - 1736 + 2004 ], "game_server_node_id": [ - 1736 + 2004 ], "host": [ - 1736 + 2004 ], "id": [ - 1736 + 2004 ], "label": [ - 1736 + 2004 ], "max_players": [ - 1736 + 2004 ], "offline_at": [ - 1736 + 2004 ], "plugin_version": [ - 1736 + 2004 ], "port": [ - 1736 + 2004 ], "region": [ - 1736 + 2004 ], "reserved_by_match_id": [ - 1736 + 2004 ], "steam_relay": [ - 1736 + 2004 ], "tv_port": [ - 1736 + 2004 ], "updated_at": [ - 1736 + 2004 ], "__typename": [ 63 @@ -69106,7 +74052,7 @@ export default { 34 ], "returning": [ - 2686 + 2954 ], "__typename": [ 63 @@ -69114,10 +74060,10 @@ export default { }, "servers_obj_rel_insert_input": { "data": [ - 2700 + 2968 ], "on_conflict": [ - 2707 + 2975 ], "__typename": [ 63 @@ -69125,13 +74071,13 @@ export default { }, "servers_on_conflict": { "constraint": [ - 2698 + 2966 ], "update_columns": [ - 2724 + 2992 ], "where": [ - 2697 + 2965 ], "__typename": [ 63 @@ -69139,94 +74085,94 @@ export default { }, "servers_order_by": { "api_password": [ - 1736 + 2004 ], "boot_status": [ - 1736 + 2004 ], "boot_status_detail": [ - 1736 + 2004 ], "connect_password": [ - 1736 + 2004 ], "connected": [ - 1736 + 2004 ], "connection_link": [ - 1736 + 2004 ], "connection_string": [ - 1736 + 2004 ], "current_match": [ - 1598 + 1839 ], "enabled": [ - 1736 + 2004 ], "game": [ - 1736 + 2004 ], "game_server_node": [ - 850 + 1091 ], "game_server_node_id": [ - 1736 + 2004 ], "host": [ - 1736 + 2004 ], "id": [ - 1736 + 2004 ], "is_dedicated": [ - 1736 + 2004 ], "label": [ - 1736 + 2004 ], "matches_aggregate": [ - 1583 + 1824 ], "max_players": [ - 1736 + 2004 ], "offline_at": [ - 1736 + 2004 ], "plugin_version": [ - 1736 + 2004 ], "port": [ - 1736 + 2004 ], "rcon_password": [ - 1736 + 2004 ], "rcon_status": [ - 1736 + 2004 ], "region": [ - 1736 + 2004 ], "reserved_by_match_id": [ - 1736 + 2004 ], "server_region": [ - 2671 + 2939 ], "steam_relay": [ - 1736 + 2004 ], "tv_port": [ - 1736 + 2004 ], "type": [ - 1736 + 2004 ], "updated_at": [ - 1736 + 2004 ], "__typename": [ 63 @@ -69234,7 +74180,7 @@ export default { }, "servers_pk_columns_input": { "id": [ - 3319 + 3587 ], "__typename": [ 63 @@ -69245,7 +74191,7 @@ export default { "servers_select_column_servers_aggregate_bool_exp_bool_or_arguments_columns": {}, "servers_set_input": { "api_password": [ - 3319 + 3587 ], "boot_status": [ 63 @@ -69272,7 +74218,7 @@ export default { 63 ], "id": [ - 3319 + 3587 ], "is_dedicated": [ 3 @@ -69284,7 +74230,7 @@ export default { 34 ], "offline_at": [ - 2922 + 3190 ], "plugin_version": [ 63 @@ -69302,7 +74248,7 @@ export default { 63 ], "reserved_by_match_id": [ - 3319 + 3587 ], "steam_relay": [ 63 @@ -69311,10 +74257,10 @@ export default { 34 ], "type": [ - 597 + 838 ], "updated_at": [ - 2922 + 3190 ], "__typename": [ 63 @@ -69336,13 +74282,13 @@ export default { }, "servers_stddev_order_by": { "max_players": [ - 1736 + 2004 ], "port": [ - 1736 + 2004 ], "tv_port": [ - 1736 + 2004 ], "__typename": [ 63 @@ -69364,13 +74310,13 @@ export default { }, "servers_stddev_pop_order_by": { "max_players": [ - 1736 + 2004 ], "port": [ - 1736 + 2004 ], "tv_port": [ - 1736 + 2004 ], "__typename": [ 63 @@ -69392,13 +74338,13 @@ export default { }, "servers_stddev_samp_order_by": { "max_players": [ - 1736 + 2004 ], "port": [ - 1736 + 2004 ], "tv_port": [ - 1736 + 2004 ], "__typename": [ 63 @@ -69406,7 +74352,7 @@ export default { }, "servers_stream_cursor_input": { "initial_value": [ - 2721 + 2989 ], "ordering": [ 216 @@ -69417,7 +74363,7 @@ export default { }, "servers_stream_cursor_value_input": { "api_password": [ - 3319 + 3587 ], "boot_status": [ 63 @@ -69444,7 +74390,7 @@ export default { 63 ], "id": [ - 3319 + 3587 ], "is_dedicated": [ 3 @@ -69456,7 +74402,7 @@ export default { 34 ], "offline_at": [ - 2922 + 3190 ], "plugin_version": [ 63 @@ -69474,7 +74420,7 @@ export default { 63 ], "reserved_by_match_id": [ - 3319 + 3587 ], "steam_relay": [ 63 @@ -69483,10 +74429,10 @@ export default { 34 ], "type": [ - 597 + 838 ], "updated_at": [ - 2922 + 3190 ], "__typename": [ 63 @@ -69508,13 +74454,13 @@ export default { }, "servers_sum_order_by": { "max_players": [ - 1736 + 2004 ], "port": [ - 1736 + 2004 ], "tv_port": [ - 1736 + 2004 ], "__typename": [ 63 @@ -69523,13 +74469,13 @@ export default { "servers_update_column": {}, "servers_updates": { "_inc": [ - 2699 + 2967 ], "_set": [ - 2713 + 2981 ], "where": [ - 2697 + 2965 ], "__typename": [ 63 @@ -69551,13 +74497,13 @@ export default { }, "servers_var_pop_order_by": { "max_players": [ - 1736 + 2004 ], "port": [ - 1736 + 2004 ], "tv_port": [ - 1736 + 2004 ], "__typename": [ 63 @@ -69579,13 +74525,13 @@ export default { }, "servers_var_samp_order_by": { "max_players": [ - 1736 + 2004 ], "port": [ - 1736 + 2004 ], "tv_port": [ - 1736 + 2004 ], "__typename": [ 63 @@ -69607,13 +74553,13 @@ export default { }, "servers_variance_order_by": { "max_players": [ - 1736 + 2004 ], "port": [ - 1736 + 2004 ], "tv_port": [ - 1736 + 2004 ], "__typename": [ 63 @@ -69632,10 +74578,10 @@ export default { }, "settings_aggregate": { "aggregate": [ - 2734 + 3002 ], "nodes": [ - 2732 + 3000 ], "__typename": [ 63 @@ -69646,7 +74592,7 @@ export default { 34, { "columns": [ - 2744, + 3012, "[settings_select_column!]" ], "distinct": [ @@ -69655,10 +74601,10 @@ export default { } ], "max": [ - 2738 + 3006 ], "min": [ - 2739 + 3007 ], "__typename": [ 63 @@ -69666,13 +74612,13 @@ export default { }, "settings_bool_exp": { "_and": [ - 2735 + 3003 ], "_not": [ - 2735 + 3003 ], "_or": [ - 2735 + 3003 ], "name": [ 65 @@ -69723,7 +74669,7 @@ export default { 34 ], "returning": [ - 2732 + 3000 ], "__typename": [ 63 @@ -69731,13 +74677,13 @@ export default { }, "settings_on_conflict": { "constraint": [ - 2736 + 3004 ], "update_columns": [ - 2748 + 3016 ], "where": [ - 2735 + 3003 ], "__typename": [ 63 @@ -69745,10 +74691,10 @@ export default { }, "settings_order_by": { "name": [ - 1736 + 2004 ], "value": [ - 1736 + 2004 ], "__typename": [ 63 @@ -69776,7 +74722,7 @@ export default { }, "settings_stream_cursor_input": { "initial_value": [ - 2747 + 3015 ], "ordering": [ 216 @@ -69799,10 +74745,10 @@ export default { "settings_update_column": {}, "settings_updates": { "_set": [ - 2745 + 3013 ], "where": [ - 2735 + 3003 ], "__typename": [ 63 @@ -69810,16 +74756,16 @@ export default { }, "steam_account_claims": { "created_at": [ - 2922 + 3190 ], "id": [ - 3319 + 3587 ], "k8s_job_name": [ 63 ], "node": [ - 824 + 1065 ], "node_id": [ 63 @@ -69828,10 +74774,10 @@ export default { 63 ], "steam_account": [ - 2774 + 3042 ], "steam_account_id": [ - 3319 + 3587 ], "__typename": [ 63 @@ -69839,10 +74785,10 @@ export default { }, "steam_account_claims_aggregate": { "aggregate": [ - 2754 + 3022 ], "nodes": [ - 2750 + 3018 ], "__typename": [ 63 @@ -69850,7 +74796,7 @@ export default { }, "steam_account_claims_aggregate_bool_exp": { "count": [ - 2753 + 3021 ], "__typename": [ 63 @@ -69858,13 +74804,13 @@ export default { }, "steam_account_claims_aggregate_bool_exp_count": { "arguments": [ - 2768 + 3036 ], "distinct": [ 3 ], "filter": [ - 2757 + 3025 ], "predicate": [ 35 @@ -69878,7 +74824,7 @@ export default { 34, { "columns": [ - 2768, + 3036, "[steam_account_claims_select_column!]" ], "distinct": [ @@ -69887,10 +74833,10 @@ export default { } ], "max": [ - 2760 + 3028 ], "min": [ - 2762 + 3030 ], "__typename": [ 63 @@ -69898,13 +74844,13 @@ export default { }, "steam_account_claims_aggregate_order_by": { "count": [ - 1736 + 2004 ], "max": [ - 2761 + 3029 ], "min": [ - 2763 + 3031 ], "__typename": [ 63 @@ -69912,10 +74858,10 @@ export default { }, "steam_account_claims_arr_rel_insert_input": { "data": [ - 2759 + 3027 ], "on_conflict": [ - 2765 + 3033 ], "__typename": [ 63 @@ -69923,25 +74869,25 @@ export default { }, "steam_account_claims_bool_exp": { "_and": [ - 2757 + 3025 ], "_not": [ - 2757 + 3025 ], "_or": [ - 2757 + 3025 ], "created_at": [ - 2923 + 3191 ], "id": [ - 3320 + 3588 ], "k8s_job_name": [ 65 ], "node": [ - 836 + 1077 ], "node_id": [ 65 @@ -69950,10 +74896,10 @@ export default { 65 ], "steam_account": [ - 2777 + 3045 ], "steam_account_id": [ - 3320 + 3588 ], "__typename": [ 63 @@ -69962,16 +74908,16 @@ export default { "steam_account_claims_constraint": {}, "steam_account_claims_insert_input": { "created_at": [ - 2922 + 3190 ], "id": [ - 3319 + 3587 ], "k8s_job_name": [ 63 ], "node": [ - 848 + 1089 ], "node_id": [ 63 @@ -69980,10 +74926,10 @@ export default { 63 ], "steam_account": [ - 2783 + 3051 ], "steam_account_id": [ - 3319 + 3587 ], "__typename": [ 63 @@ -69991,10 +74937,10 @@ export default { }, "steam_account_claims_max_fields": { "created_at": [ - 2922 + 3190 ], "id": [ - 3319 + 3587 ], "k8s_job_name": [ 63 @@ -70006,7 +74952,7 @@ export default { 63 ], "steam_account_id": [ - 3319 + 3587 ], "__typename": [ 63 @@ -70014,22 +74960,22 @@ export default { }, "steam_account_claims_max_order_by": { "created_at": [ - 1736 + 2004 ], "id": [ - 1736 + 2004 ], "k8s_job_name": [ - 1736 + 2004 ], "node_id": [ - 1736 + 2004 ], "purpose": [ - 1736 + 2004 ], "steam_account_id": [ - 1736 + 2004 ], "__typename": [ 63 @@ -70037,10 +74983,10 @@ export default { }, "steam_account_claims_min_fields": { "created_at": [ - 2922 + 3190 ], "id": [ - 3319 + 3587 ], "k8s_job_name": [ 63 @@ -70052,7 +74998,7 @@ export default { 63 ], "steam_account_id": [ - 3319 + 3587 ], "__typename": [ 63 @@ -70060,22 +75006,22 @@ export default { }, "steam_account_claims_min_order_by": { "created_at": [ - 1736 + 2004 ], "id": [ - 1736 + 2004 ], "k8s_job_name": [ - 1736 + 2004 ], "node_id": [ - 1736 + 2004 ], "purpose": [ - 1736 + 2004 ], "steam_account_id": [ - 1736 + 2004 ], "__typename": [ 63 @@ -70086,7 +75032,7 @@ export default { 34 ], "returning": [ - 2750 + 3018 ], "__typename": [ 63 @@ -70094,13 +75040,13 @@ export default { }, "steam_account_claims_on_conflict": { "constraint": [ - 2758 + 3026 ], "update_columns": [ - 2772 + 3040 ], "where": [ - 2757 + 3025 ], "__typename": [ 63 @@ -70108,28 +75054,28 @@ export default { }, "steam_account_claims_order_by": { "created_at": [ - 1736 + 2004 ], "id": [ - 1736 + 2004 ], "k8s_job_name": [ - 1736 + 2004 ], "node": [ - 850 + 1091 ], "node_id": [ - 1736 + 2004 ], "purpose": [ - 1736 + 2004 ], "steam_account": [ - 2785 + 3053 ], "steam_account_id": [ - 1736 + 2004 ], "__typename": [ 63 @@ -70137,7 +75083,7 @@ export default { }, "steam_account_claims_pk_columns_input": { "id": [ - 3319 + 3587 ], "__typename": [ 63 @@ -70146,10 +75092,10 @@ export default { "steam_account_claims_select_column": {}, "steam_account_claims_set_input": { "created_at": [ - 2922 + 3190 ], "id": [ - 3319 + 3587 ], "k8s_job_name": [ 63 @@ -70161,7 +75107,7 @@ export default { 63 ], "steam_account_id": [ - 3319 + 3587 ], "__typename": [ 63 @@ -70169,7 +75115,7 @@ export default { }, "steam_account_claims_stream_cursor_input": { "initial_value": [ - 2771 + 3039 ], "ordering": [ 216 @@ -70180,10 +75126,10 @@ export default { }, "steam_account_claims_stream_cursor_value_input": { "created_at": [ - 2922 + 3190 ], "id": [ - 3319 + 3587 ], "k8s_job_name": [ 63 @@ -70195,7 +75141,7 @@ export default { 63 ], "steam_account_id": [ - 3319 + 3587 ], "__typename": [ 63 @@ -70204,10 +75150,10 @@ export default { "steam_account_claims_update_column": {}, "steam_account_claims_updates": { "_set": [ - 2769 + 3037 ], "where": [ - 2757 + 3025 ], "__typename": [ 63 @@ -70215,10 +75161,10 @@ export default { }, "steam_accounts": { "claims": [ - 2750, + 3018, { "distinct_on": [ - 2768, + 3036, "[steam_account_claims_select_column!]" ], "limit": [ @@ -70228,19 +75174,19 @@ export default { 34 ], "order_by": [ - 2766, + 3034, "[steam_account_claims_order_by!]" ], "where": [ - 2757 + 3025 ] } ], "claims_aggregate": [ - 2751, + 3019, { "distinct_on": [ - 2768, + 3036, "[steam_account_claims_select_column!]" ], "limit": [ @@ -70250,22 +75196,22 @@ export default { 34 ], "order_by": [ - 2766, + 3034, "[steam_account_claims_order_by!]" ], "where": [ - 2757 + 3025 ] } ], "created_at": [ - 2922 + 3190 ], "id": [ - 3319 + 3587 ], "last_node": [ - 824 + 1065 ], "last_node_id": [ 63 @@ -70274,7 +75220,7 @@ export default { 63 ], "updated_at": [ - 2922 + 3190 ], "username": [ 63 @@ -70285,10 +75231,10 @@ export default { }, "steam_accounts_aggregate": { "aggregate": [ - 2776 + 3044 ], "nodes": [ - 2774 + 3042 ], "__typename": [ 63 @@ -70299,7 +75245,7 @@ export default { 34, { "columns": [ - 2787, + 3055, "[steam_accounts_select_column!]" ], "distinct": [ @@ -70308,10 +75254,10 @@ export default { } ], "max": [ - 2780 + 3048 ], "min": [ - 2781 + 3049 ], "__typename": [ 63 @@ -70319,28 +75265,28 @@ export default { }, "steam_accounts_bool_exp": { "_and": [ - 2777 + 3045 ], "_not": [ - 2777 + 3045 ], "_or": [ - 2777 + 3045 ], "claims": [ - 2757 + 3025 ], "claims_aggregate": [ - 2752 + 3020 ], "created_at": [ - 2923 + 3191 ], "id": [ - 3320 + 3588 ], "last_node": [ - 836 + 1077 ], "last_node_id": [ 65 @@ -70349,7 +75295,7 @@ export default { 65 ], "updated_at": [ - 2923 + 3191 ], "username": [ 65 @@ -70361,16 +75307,16 @@ export default { "steam_accounts_constraint": {}, "steam_accounts_insert_input": { "claims": [ - 2756 + 3024 ], "created_at": [ - 2922 + 3190 ], "id": [ - 3319 + 3587 ], "last_node": [ - 848 + 1089 ], "last_node_id": [ 63 @@ -70379,7 +75325,7 @@ export default { 63 ], "updated_at": [ - 2922 + 3190 ], "username": [ 63 @@ -70390,10 +75336,10 @@ export default { }, "steam_accounts_max_fields": { "created_at": [ - 2922 + 3190 ], "id": [ - 3319 + 3587 ], "last_node_id": [ 63 @@ -70402,7 +75348,7 @@ export default { 63 ], "updated_at": [ - 2922 + 3190 ], "username": [ 63 @@ -70413,10 +75359,10 @@ export default { }, "steam_accounts_min_fields": { "created_at": [ - 2922 + 3190 ], "id": [ - 3319 + 3587 ], "last_node_id": [ 63 @@ -70425,7 +75371,7 @@ export default { 63 ], "updated_at": [ - 2922 + 3190 ], "username": [ 63 @@ -70439,7 +75385,7 @@ export default { 34 ], "returning": [ - 2774 + 3042 ], "__typename": [ 63 @@ -70447,10 +75393,10 @@ export default { }, "steam_accounts_obj_rel_insert_input": { "data": [ - 2779 + 3047 ], "on_conflict": [ - 2784 + 3052 ], "__typename": [ 63 @@ -70458,13 +75404,13 @@ export default { }, "steam_accounts_on_conflict": { "constraint": [ - 2778 + 3046 ], "update_columns": [ - 2791 + 3059 ], "where": [ - 2777 + 3045 ], "__typename": [ 63 @@ -70472,28 +75418,28 @@ export default { }, "steam_accounts_order_by": { "claims_aggregate": [ - 2755 + 3023 ], "created_at": [ - 1736 + 2004 ], "id": [ - 1736 + 2004 ], "last_node": [ - 850 + 1091 ], "last_node_id": [ - 1736 + 2004 ], "password": [ - 1736 + 2004 ], "updated_at": [ - 1736 + 2004 ], "username": [ - 1736 + 2004 ], "__typename": [ 63 @@ -70501,7 +75447,7 @@ export default { }, "steam_accounts_pk_columns_input": { "id": [ - 3319 + 3587 ], "__typename": [ 63 @@ -70510,10 +75456,10 @@ export default { "steam_accounts_select_column": {}, "steam_accounts_set_input": { "created_at": [ - 2922 + 3190 ], "id": [ - 3319 + 3587 ], "last_node_id": [ 63 @@ -70522,7 +75468,7 @@ export default { 63 ], "updated_at": [ - 2922 + 3190 ], "username": [ 63 @@ -70533,7 +75479,7 @@ export default { }, "steam_accounts_stream_cursor_input": { "initial_value": [ - 2790 + 3058 ], "ordering": [ 216 @@ -70544,10 +75490,10 @@ export default { }, "steam_accounts_stream_cursor_value_input": { "created_at": [ - 2922 + 3190 ], "id": [ - 3319 + 3587 ], "last_node_id": [ 63 @@ -70556,7 +75502,7 @@ export default { 63 ], "updated_at": [ - 2922 + 3190 ], "username": [ 63 @@ -70568,10 +75514,10 @@ export default { "steam_accounts_update_column": {}, "steam_accounts_updates": { "_set": [ - 2788 + 3056 ], "where": [ - 2777 + 3045 ], "__typename": [ 63 @@ -70579,28 +75525,28 @@ export default { }, "team_invites": { "created_at": [ - 2922 + 3190 ], "id": [ - 3319 + 3587 ], "invited_by": [ - 2603 + 2871 ], "invited_by_player_steam_id": [ 162 ], "player": [ - 2603 + 2871 ], "steam_id": [ 162 ], "team": [ - 2879 + 3147 ], "team_id": [ - 3319 + 3587 ], "__typename": [ 63 @@ -70608,10 +75554,10 @@ export default { }, "team_invites_aggregate": { "aggregate": [ - 2797 + 3065 ], "nodes": [ - 2793 + 3061 ], "__typename": [ 63 @@ -70619,7 +75565,7 @@ export default { }, "team_invites_aggregate_bool_exp": { "count": [ - 2796 + 3064 ], "__typename": [ 63 @@ -70627,13 +75573,13 @@ export default { }, "team_invites_aggregate_bool_exp_count": { "arguments": [ - 2814 + 3082 ], "distinct": [ 3 ], "filter": [ - 2802 + 3070 ], "predicate": [ 35 @@ -70644,13 +75590,13 @@ export default { }, "team_invites_aggregate_fields": { "avg": [ - 2800 + 3068 ], "count": [ 34, { "columns": [ - 2814, + 3082, "[team_invites_select_column!]" ], "distinct": [ @@ -70659,31 +75605,31 @@ export default { } ], "max": [ - 2806 + 3074 ], "min": [ - 2808 + 3076 ], "stddev": [ - 2816 + 3084 ], "stddev_pop": [ - 2818 + 3086 ], "stddev_samp": [ - 2820 + 3088 ], "sum": [ - 2824 + 3092 ], "var_pop": [ - 2828 + 3096 ], "var_samp": [ - 2830 + 3098 ], "variance": [ - 2832 + 3100 ], "__typename": [ 63 @@ -70691,37 +75637,37 @@ export default { }, "team_invites_aggregate_order_by": { "avg": [ - 2801 + 3069 ], "count": [ - 1736 + 2004 ], "max": [ - 2807 + 3075 ], "min": [ - 2809 + 3077 ], "stddev": [ - 2817 + 3085 ], "stddev_pop": [ - 2819 + 3087 ], "stddev_samp": [ - 2821 + 3089 ], "sum": [ - 2825 + 3093 ], "var_pop": [ - 2829 + 3097 ], "var_samp": [ - 2831 + 3099 ], "variance": [ - 2833 + 3101 ], "__typename": [ 63 @@ -70729,10 +75675,10 @@ export default { }, "team_invites_arr_rel_insert_input": { "data": [ - 2805 + 3073 ], "on_conflict": [ - 2811 + 3079 ], "__typename": [ 63 @@ -70751,10 +75697,10 @@ export default { }, "team_invites_avg_order_by": { "invited_by_player_steam_id": [ - 1736 + 2004 ], "steam_id": [ - 1736 + 2004 ], "__typename": [ 63 @@ -70762,37 +75708,37 @@ export default { }, "team_invites_bool_exp": { "_and": [ - 2802 + 3070 ], "_not": [ - 2802 + 3070 ], "_or": [ - 2802 + 3070 ], "created_at": [ - 2923 + 3191 ], "id": [ - 3320 + 3588 ], "invited_by": [ - 2607 + 2875 ], "invited_by_player_steam_id": [ 163 ], "player": [ - 2607 + 2875 ], "steam_id": [ 163 ], "team": [ - 2888 + 3156 ], "team_id": [ - 3320 + 3588 ], "__typename": [ 63 @@ -70812,28 +75758,28 @@ export default { }, "team_invites_insert_input": { "created_at": [ - 2922 + 3190 ], "id": [ - 3319 + 3587 ], "invited_by": [ - 2614 + 2882 ], "invited_by_player_steam_id": [ 162 ], "player": [ - 2614 + 2882 ], "steam_id": [ 162 ], "team": [ - 2897 + 3165 ], "team_id": [ - 3319 + 3587 ], "__typename": [ 63 @@ -70841,10 +75787,10 @@ export default { }, "team_invites_max_fields": { "created_at": [ - 2922 + 3190 ], "id": [ - 3319 + 3587 ], "invited_by_player_steam_id": [ 162 @@ -70853,7 +75799,7 @@ export default { 162 ], "team_id": [ - 3319 + 3587 ], "__typename": [ 63 @@ -70861,19 +75807,19 @@ export default { }, "team_invites_max_order_by": { "created_at": [ - 1736 + 2004 ], "id": [ - 1736 + 2004 ], "invited_by_player_steam_id": [ - 1736 + 2004 ], "steam_id": [ - 1736 + 2004 ], "team_id": [ - 1736 + 2004 ], "__typename": [ 63 @@ -70881,10 +75827,10 @@ export default { }, "team_invites_min_fields": { "created_at": [ - 2922 + 3190 ], "id": [ - 3319 + 3587 ], "invited_by_player_steam_id": [ 162 @@ -70893,7 +75839,7 @@ export default { 162 ], "team_id": [ - 3319 + 3587 ], "__typename": [ 63 @@ -70901,19 +75847,19 @@ export default { }, "team_invites_min_order_by": { "created_at": [ - 1736 + 2004 ], "id": [ - 1736 + 2004 ], "invited_by_player_steam_id": [ - 1736 + 2004 ], "steam_id": [ - 1736 + 2004 ], "team_id": [ - 1736 + 2004 ], "__typename": [ 63 @@ -70924,7 +75870,7 @@ export default { 34 ], "returning": [ - 2793 + 3061 ], "__typename": [ 63 @@ -70932,13 +75878,13 @@ export default { }, "team_invites_on_conflict": { "constraint": [ - 2803 + 3071 ], "update_columns": [ - 2826 + 3094 ], "where": [ - 2802 + 3070 ], "__typename": [ 63 @@ -70946,28 +75892,28 @@ export default { }, "team_invites_order_by": { "created_at": [ - 1736 + 2004 ], "id": [ - 1736 + 2004 ], "invited_by": [ - 2616 + 2884 ], "invited_by_player_steam_id": [ - 1736 + 2004 ], "player": [ - 2616 + 2884 ], "steam_id": [ - 1736 + 2004 ], "team": [ - 2899 + 3167 ], "team_id": [ - 1736 + 2004 ], "__typename": [ 63 @@ -70975,7 +75921,7 @@ export default { }, "team_invites_pk_columns_input": { "id": [ - 3319 + 3587 ], "__typename": [ 63 @@ -70984,10 +75930,10 @@ export default { "team_invites_select_column": {}, "team_invites_set_input": { "created_at": [ - 2922 + 3190 ], "id": [ - 3319 + 3587 ], "invited_by_player_steam_id": [ 162 @@ -70996,7 +75942,7 @@ export default { 162 ], "team_id": [ - 3319 + 3587 ], "__typename": [ 63 @@ -71015,10 +75961,10 @@ export default { }, "team_invites_stddev_order_by": { "invited_by_player_steam_id": [ - 1736 + 2004 ], "steam_id": [ - 1736 + 2004 ], "__typename": [ 63 @@ -71037,10 +75983,10 @@ export default { }, "team_invites_stddev_pop_order_by": { "invited_by_player_steam_id": [ - 1736 + 2004 ], "steam_id": [ - 1736 + 2004 ], "__typename": [ 63 @@ -71059,10 +76005,10 @@ export default { }, "team_invites_stddev_samp_order_by": { "invited_by_player_steam_id": [ - 1736 + 2004 ], "steam_id": [ - 1736 + 2004 ], "__typename": [ 63 @@ -71070,7 +76016,7 @@ export default { }, "team_invites_stream_cursor_input": { "initial_value": [ - 2823 + 3091 ], "ordering": [ 216 @@ -71081,10 +76027,10 @@ export default { }, "team_invites_stream_cursor_value_input": { "created_at": [ - 2922 + 3190 ], "id": [ - 3319 + 3587 ], "invited_by_player_steam_id": [ 162 @@ -71093,7 +76039,7 @@ export default { 162 ], "team_id": [ - 3319 + 3587 ], "__typename": [ 63 @@ -71112,10 +76058,10 @@ export default { }, "team_invites_sum_order_by": { "invited_by_player_steam_id": [ - 1736 + 2004 ], "steam_id": [ - 1736 + 2004 ], "__typename": [ 63 @@ -71124,13 +76070,13 @@ export default { "team_invites_update_column": {}, "team_invites_updates": { "_inc": [ - 2804 + 3072 ], "_set": [ - 2815 + 3083 ], "where": [ - 2802 + 3070 ], "__typename": [ 63 @@ -71149,10 +76095,10 @@ export default { }, "team_invites_var_pop_order_by": { "invited_by_player_steam_id": [ - 1736 + 2004 ], "steam_id": [ - 1736 + 2004 ], "__typename": [ 63 @@ -71171,10 +76117,10 @@ export default { }, "team_invites_var_samp_order_by": { "invited_by_player_steam_id": [ - 1736 + 2004 ], "steam_id": [ - 1736 + 2004 ], "__typename": [ 63 @@ -71193,10 +76139,10 @@ export default { }, "team_invites_variance_order_by": { "invited_by_player_steam_id": [ - 1736 + 2004 ], "steam_id": [ - 1736 + 2004 ], "__typename": [ 63 @@ -71207,25 +76153,25 @@ export default { 3 ], "player": [ - 2603 + 2871 ], "player_steam_id": [ 162 ], "role": [ - 637 + 878 ], "roster_image_url": [ 63 ], "status": [ - 658 + 899 ], "team": [ - 2879 + 3147 ], "team_id": [ - 3319 + 3587 ], "__typename": [ 63 @@ -71233,10 +76179,10 @@ export default { }, "team_roster_aggregate": { "aggregate": [ - 2840 + 3108 ], "nodes": [ - 2834 + 3102 ], "__typename": [ 63 @@ -71244,13 +76190,13 @@ export default { }, "team_roster_aggregate_bool_exp": { "bool_and": [ - 2837 + 3105 ], "bool_or": [ - 2838 + 3106 ], "count": [ - 2839 + 3107 ], "__typename": [ 63 @@ -71258,13 +76204,13 @@ export default { }, "team_roster_aggregate_bool_exp_bool_and": { "arguments": [ - 2858 + 3126 ], "distinct": [ 3 ], "filter": [ - 2845 + 3113 ], "predicate": [ 4 @@ -71275,13 +76221,13 @@ export default { }, "team_roster_aggregate_bool_exp_bool_or": { "arguments": [ - 2859 + 3127 ], "distinct": [ 3 ], "filter": [ - 2845 + 3113 ], "predicate": [ 4 @@ -71292,13 +76238,13 @@ export default { }, "team_roster_aggregate_bool_exp_count": { "arguments": [ - 2857 + 3125 ], "distinct": [ 3 ], "filter": [ - 2845 + 3113 ], "predicate": [ 35 @@ -71309,13 +76255,13 @@ export default { }, "team_roster_aggregate_fields": { "avg": [ - 2843 + 3111 ], "count": [ 34, { "columns": [ - 2857, + 3125, "[team_roster_select_column!]" ], "distinct": [ @@ -71324,31 +76270,31 @@ export default { } ], "max": [ - 2849 + 3117 ], "min": [ - 2851 + 3119 ], "stddev": [ - 2861 + 3129 ], "stddev_pop": [ - 2863 + 3131 ], "stddev_samp": [ - 2865 + 3133 ], "sum": [ - 2869 + 3137 ], "var_pop": [ - 2873 + 3141 ], "var_samp": [ - 2875 + 3143 ], "variance": [ - 2877 + 3145 ], "__typename": [ 63 @@ -71356,37 +76302,37 @@ export default { }, "team_roster_aggregate_order_by": { "avg": [ - 2844 + 3112 ], "count": [ - 1736 + 2004 ], "max": [ - 2850 + 3118 ], "min": [ - 2852 + 3120 ], "stddev": [ - 2862 + 3130 ], "stddev_pop": [ - 2864 + 3132 ], "stddev_samp": [ - 2866 + 3134 ], "sum": [ - 2870 + 3138 ], "var_pop": [ - 2874 + 3142 ], "var_samp": [ - 2876 + 3144 ], "variance": [ - 2878 + 3146 ], "__typename": [ 63 @@ -71394,10 +76340,10 @@ export default { }, "team_roster_arr_rel_insert_input": { "data": [ - 2848 + 3116 ], "on_conflict": [ - 2854 + 3122 ], "__typename": [ 63 @@ -71413,7 +76359,7 @@ export default { }, "team_roster_avg_order_by": { "player_steam_id": [ - 1736 + 2004 ], "__typename": [ 63 @@ -71421,37 +76367,37 @@ export default { }, "team_roster_bool_exp": { "_and": [ - 2845 + 3113 ], "_not": [ - 2845 + 3113 ], "_or": [ - 2845 + 3113 ], "coach": [ 4 ], "player": [ - 2607 + 2875 ], "player_steam_id": [ 163 ], "role": [ - 638 + 879 ], "roster_image_url": [ 65 ], "status": [ - 659 + 900 ], "team": [ - 2888 + 3156 ], "team_id": [ - 3320 + 3588 ], "__typename": [ 63 @@ -71471,25 +76417,25 @@ export default { 3 ], "player": [ - 2614 + 2882 ], "player_steam_id": [ 162 ], "role": [ - 637 + 878 ], "roster_image_url": [ 63 ], "status": [ - 658 + 899 ], "team": [ - 2897 + 3165 ], "team_id": [ - 3319 + 3587 ], "__typename": [ 63 @@ -71503,7 +76449,7 @@ export default { 63 ], "team_id": [ - 3319 + 3587 ], "__typename": [ 63 @@ -71511,13 +76457,13 @@ export default { }, "team_roster_max_order_by": { "player_steam_id": [ - 1736 + 2004 ], "roster_image_url": [ - 1736 + 2004 ], "team_id": [ - 1736 + 2004 ], "__typename": [ 63 @@ -71531,7 +76477,7 @@ export default { 63 ], "team_id": [ - 3319 + 3587 ], "__typename": [ 63 @@ -71539,13 +76485,13 @@ export default { }, "team_roster_min_order_by": { "player_steam_id": [ - 1736 + 2004 ], "roster_image_url": [ - 1736 + 2004 ], "team_id": [ - 1736 + 2004 ], "__typename": [ 63 @@ -71556,7 +76502,7 @@ export default { 34 ], "returning": [ - 2834 + 3102 ], "__typename": [ 63 @@ -71564,13 +76510,13 @@ export default { }, "team_roster_on_conflict": { "constraint": [ - 2846 + 3114 ], "update_columns": [ - 2871 + 3139 ], "where": [ - 2845 + 3113 ], "__typename": [ 63 @@ -71578,28 +76524,28 @@ export default { }, "team_roster_order_by": { "coach": [ - 1736 + 2004 ], "player": [ - 2616 + 2884 ], "player_steam_id": [ - 1736 + 2004 ], "role": [ - 1736 + 2004 ], "roster_image_url": [ - 1736 + 2004 ], "status": [ - 1736 + 2004 ], "team": [ - 2899 + 3167 ], "team_id": [ - 1736 + 2004 ], "__typename": [ 63 @@ -71610,7 +76556,7 @@ export default { 162 ], "team_id": [ - 3319 + 3587 ], "__typename": [ 63 @@ -71627,16 +76573,16 @@ export default { 162 ], "role": [ - 637 + 878 ], "roster_image_url": [ 63 ], "status": [ - 658 + 899 ], "team_id": [ - 3319 + 3587 ], "__typename": [ 63 @@ -71652,7 +76598,7 @@ export default { }, "team_roster_stddev_order_by": { "player_steam_id": [ - 1736 + 2004 ], "__typename": [ 63 @@ -71668,7 +76614,7 @@ export default { }, "team_roster_stddev_pop_order_by": { "player_steam_id": [ - 1736 + 2004 ], "__typename": [ 63 @@ -71684,7 +76630,7 @@ export default { }, "team_roster_stddev_samp_order_by": { "player_steam_id": [ - 1736 + 2004 ], "__typename": [ 63 @@ -71692,7 +76638,7 @@ export default { }, "team_roster_stream_cursor_input": { "initial_value": [ - 2868 + 3136 ], "ordering": [ 216 @@ -71709,16 +76655,16 @@ export default { 162 ], "role": [ - 637 + 878 ], "roster_image_url": [ 63 ], "status": [ - 658 + 899 ], "team_id": [ - 3319 + 3587 ], "__typename": [ 63 @@ -71734,7 +76680,7 @@ export default { }, "team_roster_sum_order_by": { "player_steam_id": [ - 1736 + 2004 ], "__typename": [ 63 @@ -71743,13 +76689,13 @@ export default { "team_roster_update_column": {}, "team_roster_updates": { "_inc": [ - 2847 + 3115 ], "_set": [ - 2860 + 3128 ], "where": [ - 2845 + 3113 ], "__typename": [ 63 @@ -71765,7 +76711,7 @@ export default { }, "team_roster_var_pop_order_by": { "player_steam_id": [ - 1736 + 2004 ], "__typename": [ 63 @@ -71781,7 +76727,7 @@ export default { }, "team_roster_var_samp_order_by": { "player_steam_id": [ - 1736 + 2004 ], "__typename": [ 63 @@ -71797,7 +76743,7 @@ export default { }, "team_roster_variance_order_by": { "player_steam_id": [ - 1736 + 2004 ], "__typename": [ 63 @@ -71817,19 +76763,19 @@ export default { 3 ], "captain": [ - 2603 + 2871 ], "captain_steam_id": [ 162 ], "id": [ - 3319 + 3587 ], "invites": [ - 2793, + 3061, { "distinct_on": [ - 2814, + 3082, "[team_invites_select_column!]" ], "limit": [ @@ -71839,19 +76785,19 @@ export default { 34 ], "order_by": [ - 2812, + 3080, "[team_invites_order_by!]" ], "where": [ - 2802 + 3070 ] } ], "invites_aggregate": [ - 2794, + 3062, { "distinct_on": [ - 2814, + 3082, "[team_invites_select_column!]" ], "limit": [ @@ -71861,19 +76807,19 @@ export default { 34 ], "order_by": [ - 2812, + 3080, "[team_invites_order_by!]" ], "where": [ - 2802 + 3070 ] } ], "match_lineups": [ - 1258, + 1499, { "distinct_on": [ - 1280, + 1521, "[match_lineups_select_column!]" ], "limit": [ @@ -71883,19 +76829,19 @@ export default { 34 ], "order_by": [ - 1278, + 1519, "[match_lineups_order_by!]" ], "where": [ - 1267 + 1508 ] } ], "match_lineups_aggregate": [ - 1259, + 1500, { "distinct_on": [ - 1280, + 1521, "[match_lineups_select_column!]" ], "limit": [ @@ -71905,19 +76851,19 @@ export default { 34 ], "order_by": [ - 1278, + 1519, "[match_lineups_order_by!]" ], "where": [ - 1267 + 1508 ] } ], "matches": [ - 1578, + 1819, { "distinct_on": [ - 1600, + 1841, "[matches_select_column!]" ], "limit": [ @@ -71927,11 +76873,11 @@ export default { 34 ], "order_by": [ - 1598, + 1839, "[matches_order_by!]" ], "where": [ - 1587 + 1828 ] } ], @@ -71939,7 +76885,7 @@ export default { 63 ], "owner": [ - 2603 + 2871 ], "owner_steam_id": [ 162 @@ -71948,10 +76894,10 @@ export default { 63 ], "roster": [ - 2834, + 3102, { "distinct_on": [ - 2857, + 3125, "[team_roster_select_column!]" ], "limit": [ @@ -71961,19 +76907,19 @@ export default { 34 ], "order_by": [ - 2855, + 3123, "[team_roster_order_by!]" ], "where": [ - 2845 + 3113 ] } ], "roster_aggregate": [ - 2835, + 3103, { "distinct_on": [ - 2857, + 3125, "[team_roster_select_column!]" ], "limit": [ @@ -71983,11 +76929,11 @@ export default { 34 ], "order_by": [ - 2855, + 3123, "[team_roster_order_by!]" ], "where": [ - 2845 + 3113 ] } ], @@ -71995,10 +76941,10 @@ export default { 63 ], "tournament_teams": [ - 3144, + 3412, { "distinct_on": [ - 3166, + 3434, "[tournament_teams_select_column!]" ], "limit": [ @@ -72008,19 +76954,19 @@ export default { 34 ], "order_by": [ - 3164, + 3432, "[tournament_teams_order_by!]" ], "where": [ - 3153 + 3421 ] } ], "tournament_teams_aggregate": [ - 3145, + 3413, { "distinct_on": [ - 3166, + 3434, "[tournament_teams_select_column!]" ], "limit": [ @@ -72030,11 +76976,11 @@ export default { 34 ], "order_by": [ - 3164, + 3432, "[tournament_teams_order_by!]" ], "where": [ - 3153 + 3421 ] } ], @@ -72044,10 +76990,10 @@ export default { }, "teams_aggregate": { "aggregate": [ - 2883 + 3151 ], "nodes": [ - 2879 + 3147 ], "__typename": [ 63 @@ -72055,7 +77001,7 @@ export default { }, "teams_aggregate_bool_exp": { "count": [ - 2882 + 3150 ], "__typename": [ 63 @@ -72063,13 +77009,13 @@ export default { }, "teams_aggregate_bool_exp_count": { "arguments": [ - 2901 + 3169 ], "distinct": [ 3 ], "filter": [ - 2888 + 3156 ], "predicate": [ 35 @@ -72080,13 +77026,13 @@ export default { }, "teams_aggregate_fields": { "avg": [ - 2886 + 3154 ], "count": [ 34, { "columns": [ - 2901, + 3169, "[teams_select_column!]" ], "distinct": [ @@ -72095,31 +77041,31 @@ export default { } ], "max": [ - 2892 + 3160 ], "min": [ - 2894 + 3162 ], "stddev": [ - 2903 + 3171 ], "stddev_pop": [ - 2905 + 3173 ], "stddev_samp": [ - 2907 + 3175 ], "sum": [ - 2911 + 3179 ], "var_pop": [ - 2915 + 3183 ], "var_samp": [ - 2917 + 3185 ], "variance": [ - 2919 + 3187 ], "__typename": [ 63 @@ -72127,37 +77073,37 @@ export default { }, "teams_aggregate_order_by": { "avg": [ - 2887 + 3155 ], "count": [ - 1736 + 2004 ], "max": [ - 2893 + 3161 ], "min": [ - 2895 + 3163 ], "stddev": [ - 2904 + 3172 ], "stddev_pop": [ - 2906 + 3174 ], "stddev_samp": [ - 2908 + 3176 ], "sum": [ - 2912 + 3180 ], "var_pop": [ - 2916 + 3184 ], "var_samp": [ - 2918 + 3186 ], "variance": [ - 2920 + 3188 ], "__typename": [ 63 @@ -72165,10 +77111,10 @@ export default { }, "teams_arr_rel_insert_input": { "data": [ - 2891 + 3159 ], "on_conflict": [ - 2898 + 3166 ], "__typename": [ 63 @@ -72187,10 +77133,10 @@ export default { }, "teams_avg_order_by": { "captain_steam_id": [ - 1736 + 2004 ], "owner_steam_id": [ - 1736 + 2004 ], "__typename": [ 63 @@ -72198,13 +77144,13 @@ export default { }, "teams_bool_exp": { "_and": [ - 2888 + 3156 ], "_not": [ - 2888 + 3156 ], "_or": [ - 2888 + 3156 ], "avatar_url": [ 65 @@ -72219,34 +77165,34 @@ export default { 4 ], "captain": [ - 2607 + 2875 ], "captain_steam_id": [ 163 ], "id": [ - 3320 + 3588 ], "invites": [ - 2802 + 3070 ], "invites_aggregate": [ - 2795 + 3063 ], "match_lineups": [ - 1267 + 1508 ], "match_lineups_aggregate": [ - 1260 + 1501 ], "matches": [ - 1587 + 1828 ], "name": [ 65 ], "owner": [ - 2607 + 2875 ], "owner_steam_id": [ 163 @@ -72255,19 +77201,19 @@ export default { 65 ], "roster": [ - 2845 + 3113 ], "roster_aggregate": [ - 2836 + 3104 ], "short_name": [ 65 ], "tournament_teams": [ - 3153 + 3421 ], "tournament_teams_aggregate": [ - 3146 + 3414 ], "__typename": [ 63 @@ -72290,37 +77236,37 @@ export default { 63 ], "captain": [ - 2614 + 2882 ], "captain_steam_id": [ 162 ], "id": [ - 3319 + 3587 ], "invites": [ - 2799 + 3067 ], "match_lineups": [ - 1264 + 1505 ], "name": [ 63 ], "owner": [ - 2614 + 2882 ], "owner_steam_id": [ 162 ], "roster": [ - 2842 + 3110 ], "short_name": [ 63 ], "tournament_teams": [ - 3150 + 3418 ], "__typename": [ 63 @@ -72334,7 +77280,7 @@ export default { 162 ], "id": [ - 3319 + 3587 ], "name": [ 63 @@ -72354,22 +77300,22 @@ export default { }, "teams_max_order_by": { "avatar_url": [ - 1736 + 2004 ], "captain_steam_id": [ - 1736 + 2004 ], "id": [ - 1736 + 2004 ], "name": [ - 1736 + 2004 ], "owner_steam_id": [ - 1736 + 2004 ], "short_name": [ - 1736 + 2004 ], "__typename": [ 63 @@ -72383,7 +77329,7 @@ export default { 162 ], "id": [ - 3319 + 3587 ], "name": [ 63 @@ -72403,22 +77349,22 @@ export default { }, "teams_min_order_by": { "avatar_url": [ - 1736 + 2004 ], "captain_steam_id": [ - 1736 + 2004 ], "id": [ - 1736 + 2004 ], "name": [ - 1736 + 2004 ], "owner_steam_id": [ - 1736 + 2004 ], "short_name": [ - 1736 + 2004 ], "__typename": [ 63 @@ -72429,7 +77375,7 @@ export default { 34 ], "returning": [ - 2879 + 3147 ], "__typename": [ 63 @@ -72437,10 +77383,10 @@ export default { }, "teams_obj_rel_insert_input": { "data": [ - 2891 + 3159 ], "on_conflict": [ - 2898 + 3166 ], "__typename": [ 63 @@ -72448,13 +77394,13 @@ export default { }, "teams_on_conflict": { "constraint": [ - 2889 + 3157 ], "update_columns": [ - 2913 + 3181 ], "where": [ - 2888 + 3156 ], "__typename": [ 63 @@ -72462,55 +77408,55 @@ export default { }, "teams_order_by": { "avatar_url": [ - 1736 + 2004 ], "can_change_role": [ - 1736 + 2004 ], "can_invite": [ - 1736 + 2004 ], "can_remove": [ - 1736 + 2004 ], "captain": [ - 2616 + 2884 ], "captain_steam_id": [ - 1736 + 2004 ], "id": [ - 1736 + 2004 ], "invites_aggregate": [ - 2798 + 3066 ], "match_lineups_aggregate": [ - 1263 + 1504 ], "matches_aggregate": [ - 1583 + 1824 ], "name": [ - 1736 + 2004 ], "owner": [ - 2616 + 2884 ], "owner_steam_id": [ - 1736 + 2004 ], "role": [ - 1736 + 2004 ], "roster_aggregate": [ - 2841 + 3109 ], "short_name": [ - 1736 + 2004 ], "tournament_teams_aggregate": [ - 3149 + 3417 ], "__typename": [ 63 @@ -72518,7 +77464,7 @@ export default { }, "teams_pk_columns_input": { "id": [ - 3319 + 3587 ], "__typename": [ 63 @@ -72533,7 +77479,7 @@ export default { 162 ], "id": [ - 3319 + 3587 ], "name": [ 63 @@ -72561,10 +77507,10 @@ export default { }, "teams_stddev_order_by": { "captain_steam_id": [ - 1736 + 2004 ], "owner_steam_id": [ - 1736 + 2004 ], "__typename": [ 63 @@ -72583,10 +77529,10 @@ export default { }, "teams_stddev_pop_order_by": { "captain_steam_id": [ - 1736 + 2004 ], "owner_steam_id": [ - 1736 + 2004 ], "__typename": [ 63 @@ -72605,10 +77551,10 @@ export default { }, "teams_stddev_samp_order_by": { "captain_steam_id": [ - 1736 + 2004 ], "owner_steam_id": [ - 1736 + 2004 ], "__typename": [ 63 @@ -72616,7 +77562,7 @@ export default { }, "teams_stream_cursor_input": { "initial_value": [ - 2910 + 3178 ], "ordering": [ 216 @@ -72633,7 +77579,7 @@ export default { 162 ], "id": [ - 3319 + 3587 ], "name": [ 63 @@ -72661,10 +77607,10 @@ export default { }, "teams_sum_order_by": { "captain_steam_id": [ - 1736 + 2004 ], "owner_steam_id": [ - 1736 + 2004 ], "__typename": [ 63 @@ -72673,13 +77619,13 @@ export default { "teams_update_column": {}, "teams_updates": { "_inc": [ - 2890 + 3158 ], "_set": [ - 2902 + 3170 ], "where": [ - 2888 + 3156 ], "__typename": [ 63 @@ -72698,10 +77644,10 @@ export default { }, "teams_var_pop_order_by": { "captain_steam_id": [ - 1736 + 2004 ], "owner_steam_id": [ - 1736 + 2004 ], "__typename": [ 63 @@ -72720,10 +77666,10 @@ export default { }, "teams_var_samp_order_by": { "captain_steam_id": [ - 1736 + 2004 ], "owner_steam_id": [ - 1736 + 2004 ], "__typename": [ 63 @@ -72742,10 +77688,10 @@ export default { }, "teams_variance_order_by": { "captain_steam_id": [ - 1736 + 2004 ], "owner_steam_id": [ - 1736 + 2004 ], "__typename": [ 63 @@ -72755,31 +77701,31 @@ export default { "timestamptz": {}, "timestamptz_comparison_exp": { "_eq": [ - 2922 + 3190 ], "_gt": [ - 2922 + 3190 ], "_gte": [ - 2922 + 3190 ], "_in": [ - 2922 + 3190 ], "_is_null": [ 3 ], "_lt": [ - 2922 + 3190 ], "_lte": [ - 2922 + 3190 ], "_neq": [ - 2922 + 3190 ], "_nin": [ - 2922 + 3190 ], "__typename": [ 63 @@ -72790,13 +77736,13 @@ export default { 3 ], "created_at": [ - 2922 + 3190 ], "feeding_brackets": [ - 2924, + 3192, { "distinct_on": [ - 2948, + 3216, "[tournament_brackets_select_column!]" ], "limit": [ @@ -72806,11 +77752,11 @@ export default { 34 ], "order_by": [ - 2946, + 3214, "[tournament_brackets_order_by!]" ], "where": [ - 2935 + 3203 ] } ], @@ -72818,37 +77764,37 @@ export default { 3 ], "group": [ - 1734 + 2002 ], "id": [ - 3319 + 3587 ], "loser_bracket": [ - 2924 + 3192 ], "loser_parent_bracket_id": [ - 3319 + 3587 ], "match": [ - 1578 + 1819 ], "match_id": [ - 3319 + 3587 ], "match_number": [ 34 ], "match_options_id": [ - 3319 + 3587 ], "options": [ - 1458 + 1699 ], "parent_bracket": [ - 2924 + 3192 ], "parent_bracket_id": [ - 3319 + 3587 ], "path": [ 63 @@ -72857,34 +77803,34 @@ export default { 34 ], "scheduled_at": [ - 2922 + 3190 ], "scheduled_eta": [ - 2922 + 3190 ], "stage": [ - 3011 + 3279 ], "team_1": [ - 3144 + 3412 ], "team_1_seed": [ 34 ], "team_2": [ - 3144 + 3412 ], "team_2_seed": [ 34 ], "tournament_stage_id": [ - 3319 + 3587 ], "tournament_team_id_1": [ - 3319 + 3587 ], "tournament_team_id_2": [ - 3319 + 3587 ], "__typename": [ 63 @@ -72892,10 +77838,10 @@ export default { }, "tournament_brackets_aggregate": { "aggregate": [ - 2930 + 3198 ], "nodes": [ - 2924 + 3192 ], "__typename": [ 63 @@ -72903,13 +77849,13 @@ export default { }, "tournament_brackets_aggregate_bool_exp": { "bool_and": [ - 2927 + 3195 ], "bool_or": [ - 2928 + 3196 ], "count": [ - 2929 + 3197 ], "__typename": [ 63 @@ -72917,13 +77863,13 @@ export default { }, "tournament_brackets_aggregate_bool_exp_bool_and": { "arguments": [ - 2949 + 3217 ], "distinct": [ 3 ], "filter": [ - 2935 + 3203 ], "predicate": [ 4 @@ -72934,13 +77880,13 @@ export default { }, "tournament_brackets_aggregate_bool_exp_bool_or": { "arguments": [ - 2950 + 3218 ], "distinct": [ 3 ], "filter": [ - 2935 + 3203 ], "predicate": [ 4 @@ -72951,13 +77897,13 @@ export default { }, "tournament_brackets_aggregate_bool_exp_count": { "arguments": [ - 2948 + 3216 ], "distinct": [ 3 ], "filter": [ - 2935 + 3203 ], "predicate": [ 35 @@ -72968,13 +77914,13 @@ export default { }, "tournament_brackets_aggregate_fields": { "avg": [ - 2933 + 3201 ], "count": [ 34, { "columns": [ - 2948, + 3216, "[tournament_brackets_select_column!]" ], "distinct": [ @@ -72983,31 +77929,31 @@ export default { } ], "max": [ - 2939 + 3207 ], "min": [ - 2941 + 3209 ], "stddev": [ - 2952 + 3220 ], "stddev_pop": [ - 2954 + 3222 ], "stddev_samp": [ - 2956 + 3224 ], "sum": [ - 2960 + 3228 ], "var_pop": [ - 2964 + 3232 ], "var_samp": [ - 2966 + 3234 ], "variance": [ - 2968 + 3236 ], "__typename": [ 63 @@ -73015,37 +77961,37 @@ export default { }, "tournament_brackets_aggregate_order_by": { "avg": [ - 2934 + 3202 ], "count": [ - 1736 + 2004 ], "max": [ - 2940 + 3208 ], "min": [ - 2942 + 3210 ], "stddev": [ - 2953 + 3221 ], "stddev_pop": [ - 2955 + 3223 ], "stddev_samp": [ - 2957 + 3225 ], "sum": [ - 2961 + 3229 ], "var_pop": [ - 2965 + 3233 ], "var_samp": [ - 2967 + 3235 ], "variance": [ - 2969 + 3237 ], "__typename": [ 63 @@ -73053,10 +77999,10 @@ export default { }, "tournament_brackets_arr_rel_insert_input": { "data": [ - 2938 + 3206 ], "on_conflict": [ - 2945 + 3213 ], "__typename": [ 63 @@ -73084,19 +78030,19 @@ export default { }, "tournament_brackets_avg_order_by": { "group": [ - 1736 + 2004 ], "match_number": [ - 1736 + 2004 ], "round": [ - 1736 + 2004 ], "team_1_seed": [ - 1736 + 2004 ], "team_2_seed": [ - 1736 + 2004 ], "__typename": [ 63 @@ -73104,58 +78050,58 @@ export default { }, "tournament_brackets_bool_exp": { "_and": [ - 2935 + 3203 ], "_not": [ - 2935 + 3203 ], "_or": [ - 2935 + 3203 ], "bye": [ 4 ], "created_at": [ - 2923 + 3191 ], "feeding_brackets": [ - 2935 + 3203 ], "finished": [ 4 ], "group": [ - 1735 + 2003 ], "id": [ - 3320 + 3588 ], "loser_bracket": [ - 2935 + 3203 ], "loser_parent_bracket_id": [ - 3320 + 3588 ], "match": [ - 1587 + 1828 ], "match_id": [ - 3320 + 3588 ], "match_number": [ 35 ], "match_options_id": [ - 3320 + 3588 ], "options": [ - 1462 + 1703 ], "parent_bracket": [ - 2935 + 3203 ], "parent_bracket_id": [ - 3320 + 3588 ], "path": [ 65 @@ -73164,34 +78110,34 @@ export default { 35 ], "scheduled_at": [ - 2923 + 3191 ], "scheduled_eta": [ - 2923 + 3191 ], "stage": [ - 3023 + 3291 ], "team_1": [ - 3153 + 3421 ], "team_1_seed": [ 35 ], "team_2": [ - 3153 + 3421 ], "team_2_seed": [ 35 ], "tournament_stage_id": [ - 3320 + 3588 ], "tournament_team_id_1": [ - 3320 + 3588 ], "tournament_team_id_2": [ - 3320 + 3588 ], "__typename": [ 63 @@ -73200,7 +78146,7 @@ export default { "tournament_brackets_constraint": {}, "tournament_brackets_inc_input": { "group": [ - 1734 + 2002 ], "match_number": [ 34 @@ -73223,43 +78169,43 @@ export default { 3 ], "created_at": [ - 2922 + 3190 ], "finished": [ 3 ], "group": [ - 1734 + 2002 ], "id": [ - 3319 + 3587 ], "loser_bracket": [ - 2944 + 3212 ], "loser_parent_bracket_id": [ - 3319 + 3587 ], "match": [ - 1596 + 1837 ], "match_id": [ - 3319 + 3587 ], "match_number": [ 34 ], "match_options_id": [ - 3319 + 3587 ], "options": [ - 1469 + 1710 ], "parent_bracket": [ - 2944 + 3212 ], "parent_bracket_id": [ - 3319 + 3587 ], "path": [ 63 @@ -73268,34 +78214,34 @@ export default { 34 ], "scheduled_at": [ - 2922 + 3190 ], "scheduled_eta": [ - 2922 + 3190 ], "stage": [ - 3035 + 3303 ], "team_1": [ - 3162 + 3430 ], "team_1_seed": [ 34 ], "team_2": [ - 3162 + 3430 ], "team_2_seed": [ 34 ], "tournament_stage_id": [ - 3319 + 3587 ], "tournament_team_id_1": [ - 3319 + 3587 ], "tournament_team_id_2": [ - 3319 + 3587 ], "__typename": [ 63 @@ -73303,28 +78249,28 @@ export default { }, "tournament_brackets_max_fields": { "created_at": [ - 2922 + 3190 ], "group": [ - 1734 + 2002 ], "id": [ - 3319 + 3587 ], "loser_parent_bracket_id": [ - 3319 + 3587 ], "match_id": [ - 3319 + 3587 ], "match_number": [ 34 ], "match_options_id": [ - 3319 + 3587 ], "parent_bracket_id": [ - 3319 + 3587 ], "path": [ 63 @@ -73333,10 +78279,10 @@ export default { 34 ], "scheduled_at": [ - 2922 + 3190 ], "scheduled_eta": [ - 2922 + 3190 ], "team_1_seed": [ 34 @@ -73345,13 +78291,13 @@ export default { 34 ], "tournament_stage_id": [ - 3319 + 3587 ], "tournament_team_id_1": [ - 3319 + 3587 ], "tournament_team_id_2": [ - 3319 + 3587 ], "__typename": [ 63 @@ -73359,55 +78305,55 @@ export default { }, "tournament_brackets_max_order_by": { "created_at": [ - 1736 + 2004 ], "group": [ - 1736 + 2004 ], "id": [ - 1736 + 2004 ], "loser_parent_bracket_id": [ - 1736 + 2004 ], "match_id": [ - 1736 + 2004 ], "match_number": [ - 1736 + 2004 ], "match_options_id": [ - 1736 + 2004 ], "parent_bracket_id": [ - 1736 + 2004 ], "path": [ - 1736 + 2004 ], "round": [ - 1736 + 2004 ], "scheduled_at": [ - 1736 + 2004 ], "scheduled_eta": [ - 1736 + 2004 ], "team_1_seed": [ - 1736 + 2004 ], "team_2_seed": [ - 1736 + 2004 ], "tournament_stage_id": [ - 1736 + 2004 ], "tournament_team_id_1": [ - 1736 + 2004 ], "tournament_team_id_2": [ - 1736 + 2004 ], "__typename": [ 63 @@ -73415,28 +78361,28 @@ export default { }, "tournament_brackets_min_fields": { "created_at": [ - 2922 + 3190 ], "group": [ - 1734 + 2002 ], "id": [ - 3319 + 3587 ], "loser_parent_bracket_id": [ - 3319 + 3587 ], "match_id": [ - 3319 + 3587 ], "match_number": [ 34 ], "match_options_id": [ - 3319 + 3587 ], "parent_bracket_id": [ - 3319 + 3587 ], "path": [ 63 @@ -73445,10 +78391,10 @@ export default { 34 ], "scheduled_at": [ - 2922 + 3190 ], "scheduled_eta": [ - 2922 + 3190 ], "team_1_seed": [ 34 @@ -73457,13 +78403,13 @@ export default { 34 ], "tournament_stage_id": [ - 3319 + 3587 ], "tournament_team_id_1": [ - 3319 + 3587 ], "tournament_team_id_2": [ - 3319 + 3587 ], "__typename": [ 63 @@ -73471,55 +78417,55 @@ export default { }, "tournament_brackets_min_order_by": { "created_at": [ - 1736 + 2004 ], "group": [ - 1736 + 2004 ], "id": [ - 1736 + 2004 ], "loser_parent_bracket_id": [ - 1736 + 2004 ], "match_id": [ - 1736 + 2004 ], "match_number": [ - 1736 + 2004 ], "match_options_id": [ - 1736 + 2004 ], "parent_bracket_id": [ - 1736 + 2004 ], "path": [ - 1736 + 2004 ], "round": [ - 1736 + 2004 ], "scheduled_at": [ - 1736 + 2004 ], "scheduled_eta": [ - 1736 + 2004 ], "team_1_seed": [ - 1736 + 2004 ], "team_2_seed": [ - 1736 + 2004 ], "tournament_stage_id": [ - 1736 + 2004 ], "tournament_team_id_1": [ - 1736 + 2004 ], "tournament_team_id_2": [ - 1736 + 2004 ], "__typename": [ 63 @@ -73530,7 +78476,7 @@ export default { 34 ], "returning": [ - 2924 + 3192 ], "__typename": [ 63 @@ -73538,10 +78484,10 @@ export default { }, "tournament_brackets_obj_rel_insert_input": { "data": [ - 2938 + 3206 ], "on_conflict": [ - 2945 + 3213 ], "__typename": [ 63 @@ -73549,13 +78495,13 @@ export default { }, "tournament_brackets_on_conflict": { "constraint": [ - 2936 + 3204 ], "update_columns": [ - 2962 + 3230 ], "where": [ - 2935 + 3203 ], "__typename": [ 63 @@ -73563,85 +78509,85 @@ export default { }, "tournament_brackets_order_by": { "bye": [ - 1736 + 2004 ], "created_at": [ - 1736 + 2004 ], "feeding_brackets_aggregate": [ - 2931 + 3199 ], "finished": [ - 1736 + 2004 ], "group": [ - 1736 + 2004 ], "id": [ - 1736 + 2004 ], "loser_bracket": [ - 2946 + 3214 ], "loser_parent_bracket_id": [ - 1736 + 2004 ], "match": [ - 1598 + 1839 ], "match_id": [ - 1736 + 2004 ], "match_number": [ - 1736 + 2004 ], "match_options_id": [ - 1736 + 2004 ], "options": [ - 1471 + 1712 ], "parent_bracket": [ - 2946 + 3214 ], "parent_bracket_id": [ - 1736 + 2004 ], "path": [ - 1736 + 2004 ], "round": [ - 1736 + 2004 ], "scheduled_at": [ - 1736 + 2004 ], "scheduled_eta": [ - 1736 + 2004 ], "stage": [ - 3037 + 3305 ], "team_1": [ - 3164 + 3432 ], "team_1_seed": [ - 1736 + 2004 ], "team_2": [ - 3164 + 3432 ], "team_2_seed": [ - 1736 + 2004 ], "tournament_stage_id": [ - 1736 + 2004 ], "tournament_team_id_1": [ - 1736 + 2004 ], "tournament_team_id_2": [ - 1736 + 2004 ], "__typename": [ 63 @@ -73649,7 +78595,7 @@ export default { }, "tournament_brackets_pk_columns_input": { "id": [ - 3319 + 3587 ], "__typename": [ 63 @@ -73663,31 +78609,31 @@ export default { 3 ], "created_at": [ - 2922 + 3190 ], "finished": [ 3 ], "group": [ - 1734 + 2002 ], "id": [ - 3319 + 3587 ], "loser_parent_bracket_id": [ - 3319 + 3587 ], "match_id": [ - 3319 + 3587 ], "match_number": [ 34 ], "match_options_id": [ - 3319 + 3587 ], "parent_bracket_id": [ - 3319 + 3587 ], "path": [ 63 @@ -73696,10 +78642,10 @@ export default { 34 ], "scheduled_at": [ - 2922 + 3190 ], "scheduled_eta": [ - 2922 + 3190 ], "team_1_seed": [ 34 @@ -73708,13 +78654,13 @@ export default { 34 ], "tournament_stage_id": [ - 3319 + 3587 ], "tournament_team_id_1": [ - 3319 + 3587 ], "tournament_team_id_2": [ - 3319 + 3587 ], "__typename": [ 63 @@ -73742,19 +78688,19 @@ export default { }, "tournament_brackets_stddev_order_by": { "group": [ - 1736 + 2004 ], "match_number": [ - 1736 + 2004 ], "round": [ - 1736 + 2004 ], "team_1_seed": [ - 1736 + 2004 ], "team_2_seed": [ - 1736 + 2004 ], "__typename": [ 63 @@ -73782,19 +78728,19 @@ export default { }, "tournament_brackets_stddev_pop_order_by": { "group": [ - 1736 + 2004 ], "match_number": [ - 1736 + 2004 ], "round": [ - 1736 + 2004 ], "team_1_seed": [ - 1736 + 2004 ], "team_2_seed": [ - 1736 + 2004 ], "__typename": [ 63 @@ -73822,19 +78768,19 @@ export default { }, "tournament_brackets_stddev_samp_order_by": { "group": [ - 1736 + 2004 ], "match_number": [ - 1736 + 2004 ], "round": [ - 1736 + 2004 ], "team_1_seed": [ - 1736 + 2004 ], "team_2_seed": [ - 1736 + 2004 ], "__typename": [ 63 @@ -73842,7 +78788,7 @@ export default { }, "tournament_brackets_stream_cursor_input": { "initial_value": [ - 2959 + 3227 ], "ordering": [ 216 @@ -73856,31 +78802,31 @@ export default { 3 ], "created_at": [ - 2922 + 3190 ], "finished": [ 3 ], "group": [ - 1734 + 2002 ], "id": [ - 3319 + 3587 ], "loser_parent_bracket_id": [ - 3319 + 3587 ], "match_id": [ - 3319 + 3587 ], "match_number": [ 34 ], "match_options_id": [ - 3319 + 3587 ], "parent_bracket_id": [ - 3319 + 3587 ], "path": [ 63 @@ -73889,10 +78835,10 @@ export default { 34 ], "scheduled_at": [ - 2922 + 3190 ], "scheduled_eta": [ - 2922 + 3190 ], "team_1_seed": [ 34 @@ -73901,13 +78847,13 @@ export default { 34 ], "tournament_stage_id": [ - 3319 + 3587 ], "tournament_team_id_1": [ - 3319 + 3587 ], "tournament_team_id_2": [ - 3319 + 3587 ], "__typename": [ 63 @@ -73915,7 +78861,7 @@ export default { }, "tournament_brackets_sum_fields": { "group": [ - 1734 + 2002 ], "match_number": [ 34 @@ -73935,19 +78881,19 @@ export default { }, "tournament_brackets_sum_order_by": { "group": [ - 1736 + 2004 ], "match_number": [ - 1736 + 2004 ], "round": [ - 1736 + 2004 ], "team_1_seed": [ - 1736 + 2004 ], "team_2_seed": [ - 1736 + 2004 ], "__typename": [ 63 @@ -73956,13 +78902,13 @@ export default { "tournament_brackets_update_column": {}, "tournament_brackets_updates": { "_inc": [ - 2937 + 3205 ], "_set": [ - 2951 + 3219 ], "where": [ - 2935 + 3203 ], "__typename": [ 63 @@ -73990,19 +78936,19 @@ export default { }, "tournament_brackets_var_pop_order_by": { "group": [ - 1736 + 2004 ], "match_number": [ - 1736 + 2004 ], "round": [ - 1736 + 2004 ], "team_1_seed": [ - 1736 + 2004 ], "team_2_seed": [ - 1736 + 2004 ], "__typename": [ 63 @@ -74030,19 +78976,19 @@ export default { }, "tournament_brackets_var_samp_order_by": { "group": [ - 1736 + 2004 ], "match_number": [ - 1736 + 2004 ], "round": [ - 1736 + 2004 ], "team_1_seed": [ - 1736 + 2004 ], "team_2_seed": [ - 1736 + 2004 ], "__typename": [ 63 @@ -74070,19 +79016,19 @@ export default { }, "tournament_brackets_variance_order_by": { "group": [ - 1736 + 2004 ], "match_number": [ - 1736 + 2004 ], "round": [ - 1736 + 2004 ], "team_1_seed": [ - 1736 + 2004 ], "team_2_seed": [ - 1736 + 2004 ], "__typename": [ 63 @@ -74090,16 +79036,16 @@ export default { }, "tournament_organizers": { "organizer": [ - 2603 + 2871 ], "steam_id": [ 162 ], "tournament": [ - 3273 + 3541 ], "tournament_id": [ - 3319 + 3587 ], "__typename": [ 63 @@ -74107,10 +79053,10 @@ export default { }, "tournament_organizers_aggregate": { "aggregate": [ - 2974 + 3242 ], "nodes": [ - 2970 + 3238 ], "__typename": [ 63 @@ -74118,7 +79064,7 @@ export default { }, "tournament_organizers_aggregate_bool_exp": { "count": [ - 2973 + 3241 ], "__typename": [ 63 @@ -74126,13 +79072,13 @@ export default { }, "tournament_organizers_aggregate_bool_exp_count": { "arguments": [ - 2991 + 3259 ], "distinct": [ 3 ], "filter": [ - 2979 + 3247 ], "predicate": [ 35 @@ -74143,13 +79089,13 @@ export default { }, "tournament_organizers_aggregate_fields": { "avg": [ - 2977 + 3245 ], "count": [ 34, { "columns": [ - 2991, + 3259, "[tournament_organizers_select_column!]" ], "distinct": [ @@ -74158,31 +79104,31 @@ export default { } ], "max": [ - 2983 + 3251 ], "min": [ - 2985 + 3253 ], "stddev": [ - 2993 + 3261 ], "stddev_pop": [ - 2995 + 3263 ], "stddev_samp": [ - 2997 + 3265 ], "sum": [ - 3001 + 3269 ], "var_pop": [ - 3005 + 3273 ], "var_samp": [ - 3007 + 3275 ], "variance": [ - 3009 + 3277 ], "__typename": [ 63 @@ -74190,37 +79136,37 @@ export default { }, "tournament_organizers_aggregate_order_by": { "avg": [ - 2978 + 3246 ], "count": [ - 1736 + 2004 ], "max": [ - 2984 + 3252 ], "min": [ - 2986 + 3254 ], "stddev": [ - 2994 + 3262 ], "stddev_pop": [ - 2996 + 3264 ], "stddev_samp": [ - 2998 + 3266 ], "sum": [ - 3002 + 3270 ], "var_pop": [ - 3006 + 3274 ], "var_samp": [ - 3008 + 3276 ], "variance": [ - 3010 + 3278 ], "__typename": [ 63 @@ -74228,10 +79174,10 @@ export default { }, "tournament_organizers_arr_rel_insert_input": { "data": [ - 2982 + 3250 ], "on_conflict": [ - 2988 + 3256 ], "__typename": [ 63 @@ -74247,7 +79193,7 @@ export default { }, "tournament_organizers_avg_order_by": { "steam_id": [ - 1736 + 2004 ], "__typename": [ 63 @@ -74255,25 +79201,25 @@ export default { }, "tournament_organizers_bool_exp": { "_and": [ - 2979 + 3247 ], "_not": [ - 2979 + 3247 ], "_or": [ - 2979 + 3247 ], "organizer": [ - 2607 + 2875 ], "steam_id": [ 163 ], "tournament": [ - 3284 + 3552 ], "tournament_id": [ - 3320 + 3588 ], "__typename": [ 63 @@ -74290,16 +79236,16 @@ export default { }, "tournament_organizers_insert_input": { "organizer": [ - 2614 + 2882 ], "steam_id": [ 162 ], "tournament": [ - 3293 + 3561 ], "tournament_id": [ - 3319 + 3587 ], "__typename": [ 63 @@ -74310,7 +79256,7 @@ export default { 162 ], "tournament_id": [ - 3319 + 3587 ], "__typename": [ 63 @@ -74318,10 +79264,10 @@ export default { }, "tournament_organizers_max_order_by": { "steam_id": [ - 1736 + 2004 ], "tournament_id": [ - 1736 + 2004 ], "__typename": [ 63 @@ -74332,7 +79278,7 @@ export default { 162 ], "tournament_id": [ - 3319 + 3587 ], "__typename": [ 63 @@ -74340,10 +79286,10 @@ export default { }, "tournament_organizers_min_order_by": { "steam_id": [ - 1736 + 2004 ], "tournament_id": [ - 1736 + 2004 ], "__typename": [ 63 @@ -74354,7 +79300,7 @@ export default { 34 ], "returning": [ - 2970 + 3238 ], "__typename": [ 63 @@ -74362,13 +79308,13 @@ export default { }, "tournament_organizers_on_conflict": { "constraint": [ - 2980 + 3248 ], "update_columns": [ - 3003 + 3271 ], "where": [ - 2979 + 3247 ], "__typename": [ 63 @@ -74376,16 +79322,16 @@ export default { }, "tournament_organizers_order_by": { "organizer": [ - 2616 + 2884 ], "steam_id": [ - 1736 + 2004 ], "tournament": [ - 3295 + 3563 ], "tournament_id": [ - 1736 + 2004 ], "__typename": [ 63 @@ -74396,7 +79342,7 @@ export default { 162 ], "tournament_id": [ - 3319 + 3587 ], "__typename": [ 63 @@ -74408,7 +79354,7 @@ export default { 162 ], "tournament_id": [ - 3319 + 3587 ], "__typename": [ 63 @@ -74424,7 +79370,7 @@ export default { }, "tournament_organizers_stddev_order_by": { "steam_id": [ - 1736 + 2004 ], "__typename": [ 63 @@ -74440,7 +79386,7 @@ export default { }, "tournament_organizers_stddev_pop_order_by": { "steam_id": [ - 1736 + 2004 ], "__typename": [ 63 @@ -74456,7 +79402,7 @@ export default { }, "tournament_organizers_stddev_samp_order_by": { "steam_id": [ - 1736 + 2004 ], "__typename": [ 63 @@ -74464,7 +79410,7 @@ export default { }, "tournament_organizers_stream_cursor_input": { "initial_value": [ - 3000 + 3268 ], "ordering": [ 216 @@ -74478,7 +79424,7 @@ export default { 162 ], "tournament_id": [ - 3319 + 3587 ], "__typename": [ 63 @@ -74494,7 +79440,7 @@ export default { }, "tournament_organizers_sum_order_by": { "steam_id": [ - 1736 + 2004 ], "__typename": [ 63 @@ -74503,13 +79449,13 @@ export default { "tournament_organizers_update_column": {}, "tournament_organizers_updates": { "_inc": [ - 2981 + 3249 ], "_set": [ - 2992 + 3260 ], "where": [ - 2979 + 3247 ], "__typename": [ 63 @@ -74525,7 +79471,7 @@ export default { }, "tournament_organizers_var_pop_order_by": { "steam_id": [ - 1736 + 2004 ], "__typename": [ 63 @@ -74541,7 +79487,7 @@ export default { }, "tournament_organizers_var_samp_order_by": { "steam_id": [ - 1736 + 2004 ], "__typename": [ 63 @@ -74557,7 +79503,7 @@ export default { }, "tournament_organizers_variance_order_by": { "steam_id": [ - 1736 + 2004 ], "__typename": [ 63 @@ -74565,10 +79511,10 @@ export default { }, "tournament_stages": { "brackets": [ - 2924, + 3192, { "distinct_on": [ - 2948, + 3216, "[tournament_brackets_select_column!]" ], "limit": [ @@ -74578,19 +79524,19 @@ export default { 34 ], "order_by": [ - 2946, + 3214, "[tournament_brackets_order_by!]" ], "where": [ - 2935 + 3203 ] } ], "brackets_aggregate": [ - 2925, + 3193, { "distinct_on": [ - 2948, + 3216, "[tournament_brackets_select_column!]" ], "limit": [ @@ -74600,11 +79546,11 @@ export default { 34 ], "order_by": [ - 2946, + 3214, "[tournament_brackets_order_by!]" ], "where": [ - 2935 + 3203 ] } ], @@ -74615,16 +79561,16 @@ export default { 34 ], "e_tournament_stage_type": [ - 693 + 934 ], "groups": [ 34 ], "id": [ - 3319 + 3587 ], "match_options_id": [ - 3319 + 3587 ], "max_teams": [ 34 @@ -74633,16 +79579,16 @@ export default { 34 ], "options": [ - 1458 + 1699 ], "order": [ 34 ], "results": [ - 3867, + 4135, { "distinct_on": [ - 3899, + 4167, "[v_team_stage_results_select_column!]" ], "limit": [ @@ -74652,19 +79598,19 @@ export default { 34 ], "order_by": [ - 3897, + 4165, "[v_team_stage_results_order_by!]" ], "where": [ - 3886 + 4154 ] } ], "results_aggregate": [ - 3868, + 4136, { "distinct_on": [ - 3899, + 4167, "[v_team_stage_results_select_column!]" ], "limit": [ @@ -74674,16 +79620,16 @@ export default { 34 ], "order_by": [ - 3897, + 4165, "[v_team_stage_results_order_by!]" ], "where": [ - 3886 + 4154 ] } ], "settings": [ - 946, + 1187, { "path": [ 63 @@ -74694,13 +79640,13 @@ export default { 3 ], "tournament": [ - 3273 + 3541 ], "tournament_id": [ - 3319 + 3587 ], "type": [ - 698 + 939 ], "__typename": [ 63 @@ -74708,10 +79654,10 @@ export default { }, "tournament_stages_aggregate": { "aggregate": [ - 3017 + 3285 ], "nodes": [ - 3011 + 3279 ], "__typename": [ 63 @@ -74719,13 +79665,13 @@ export default { }, "tournament_stages_aggregate_bool_exp": { "bool_and": [ - 3014 + 3282 ], "bool_or": [ - 3015 + 3283 ], "count": [ - 3016 + 3284 ], "__typename": [ 63 @@ -74733,13 +79679,13 @@ export default { }, "tournament_stages_aggregate_bool_exp_bool_and": { "arguments": [ - 3041 + 3309 ], "distinct": [ 3 ], "filter": [ - 3023 + 3291 ], "predicate": [ 4 @@ -74750,13 +79696,13 @@ export default { }, "tournament_stages_aggregate_bool_exp_bool_or": { "arguments": [ - 3042 + 3310 ], "distinct": [ 3 ], "filter": [ - 3023 + 3291 ], "predicate": [ 4 @@ -74767,13 +79713,13 @@ export default { }, "tournament_stages_aggregate_bool_exp_count": { "arguments": [ - 3040 + 3308 ], "distinct": [ 3 ], "filter": [ - 3023 + 3291 ], "predicate": [ 35 @@ -74784,13 +79730,13 @@ export default { }, "tournament_stages_aggregate_fields": { "avg": [ - 3021 + 3289 ], "count": [ 34, { "columns": [ - 3040, + 3308, "[tournament_stages_select_column!]" ], "distinct": [ @@ -74799,31 +79745,31 @@ export default { } ], "max": [ - 3030 + 3298 ], "min": [ - 3032 + 3300 ], "stddev": [ - 3044 + 3312 ], "stddev_pop": [ - 3046 + 3314 ], "stddev_samp": [ - 3048 + 3316 ], "sum": [ - 3052 + 3320 ], "var_pop": [ - 3056 + 3324 ], "var_samp": [ - 3058 + 3326 ], "variance": [ - 3060 + 3328 ], "__typename": [ 63 @@ -74831,37 +79777,37 @@ export default { }, "tournament_stages_aggregate_order_by": { "avg": [ - 3022 + 3290 ], "count": [ - 1736 + 2004 ], "max": [ - 3031 + 3299 ], "min": [ - 3033 + 3301 ], "stddev": [ - 3045 + 3313 ], "stddev_pop": [ - 3047 + 3315 ], "stddev_samp": [ - 3049 + 3317 ], "sum": [ - 3053 + 3321 ], "var_pop": [ - 3057 + 3325 ], "var_samp": [ - 3059 + 3327 ], "variance": [ - 3061 + 3329 ], "__typename": [ 63 @@ -74869,7 +79815,7 @@ export default { }, "tournament_stages_append_input": { "settings": [ - 946 + 1187 ], "__typename": [ 63 @@ -74877,10 +79823,10 @@ export default { }, "tournament_stages_arr_rel_insert_input": { "data": [ - 3029 + 3297 ], "on_conflict": [ - 3036 + 3304 ], "__typename": [ 63 @@ -74911,22 +79857,22 @@ export default { }, "tournament_stages_avg_order_by": { "decider_best_of": [ - 1736 + 2004 ], "default_best_of": [ - 1736 + 2004 ], "groups": [ - 1736 + 2004 ], "max_teams": [ - 1736 + 2004 ], "min_teams": [ - 1736 + 2004 ], "order": [ - 1736 + 2004 ], "__typename": [ 63 @@ -74934,19 +79880,19 @@ export default { }, "tournament_stages_bool_exp": { "_and": [ - 3023 + 3291 ], "_not": [ - 3023 + 3291 ], "_or": [ - 3023 + 3291 ], "brackets": [ - 2935 + 3203 ], "brackets_aggregate": [ - 2926 + 3194 ], "decider_best_of": [ 35 @@ -74955,16 +79901,16 @@ export default { 35 ], "e_tournament_stage_type": [ - 696 + 937 ], "groups": [ 35 ], "id": [ - 3320 + 3588 ], "match_options_id": [ - 3320 + 3588 ], "max_teams": [ 35 @@ -74973,31 +79919,31 @@ export default { 35 ], "options": [ - 1462 + 1703 ], "order": [ 35 ], "results": [ - 3886 + 4154 ], "results_aggregate": [ - 3869 + 4137 ], "settings": [ - 948 + 1189 ], "third_place_match": [ 4 ], "tournament": [ - 3284 + 3552 ], "tournament_id": [ - 3320 + 3588 ], "type": [ - 699 + 940 ], "__typename": [ 63 @@ -75053,7 +79999,7 @@ export default { }, "tournament_stages_insert_input": { "brackets": [ - 2932 + 3200 ], "decider_best_of": [ 34 @@ -75062,16 +80008,16 @@ export default { 34 ], "e_tournament_stage_type": [ - 704 + 945 ], "groups": [ 34 ], "id": [ - 3319 + 3587 ], "match_options_id": [ - 3319 + 3587 ], "max_teams": [ 34 @@ -75080,28 +80026,28 @@ export default { 34 ], "options": [ - 1469 + 1710 ], "order": [ 34 ], "results": [ - 3883 + 4151 ], "settings": [ - 946 + 1187 ], "third_place_match": [ 3 ], "tournament": [ - 3293 + 3561 ], "tournament_id": [ - 3319 + 3587 ], "type": [ - 698 + 939 ], "__typename": [ 63 @@ -75118,10 +80064,10 @@ export default { 34 ], "id": [ - 3319 + 3587 ], "match_options_id": [ - 3319 + 3587 ], "max_teams": [ 34 @@ -75133,7 +80079,7 @@ export default { 34 ], "tournament_id": [ - 3319 + 3587 ], "__typename": [ 63 @@ -75141,31 +80087,31 @@ export default { }, "tournament_stages_max_order_by": { "decider_best_of": [ - 1736 + 2004 ], "default_best_of": [ - 1736 + 2004 ], "groups": [ - 1736 + 2004 ], "id": [ - 1736 + 2004 ], "match_options_id": [ - 1736 + 2004 ], "max_teams": [ - 1736 + 2004 ], "min_teams": [ - 1736 + 2004 ], "order": [ - 1736 + 2004 ], "tournament_id": [ - 1736 + 2004 ], "__typename": [ 63 @@ -75182,10 +80128,10 @@ export default { 34 ], "id": [ - 3319 + 3587 ], "match_options_id": [ - 3319 + 3587 ], "max_teams": [ 34 @@ -75197,7 +80143,7 @@ export default { 34 ], "tournament_id": [ - 3319 + 3587 ], "__typename": [ 63 @@ -75205,31 +80151,31 @@ export default { }, "tournament_stages_min_order_by": { "decider_best_of": [ - 1736 + 2004 ], "default_best_of": [ - 1736 + 2004 ], "groups": [ - 1736 + 2004 ], "id": [ - 1736 + 2004 ], "match_options_id": [ - 1736 + 2004 ], "max_teams": [ - 1736 + 2004 ], "min_teams": [ - 1736 + 2004 ], "order": [ - 1736 + 2004 ], "tournament_id": [ - 1736 + 2004 ], "__typename": [ 63 @@ -75240,7 +80186,7 @@ export default { 34 ], "returning": [ - 3011 + 3279 ], "__typename": [ 63 @@ -75248,10 +80194,10 @@ export default { }, "tournament_stages_obj_rel_insert_input": { "data": [ - 3029 + 3297 ], "on_conflict": [ - 3036 + 3304 ], "__typename": [ 63 @@ -75259,13 +80205,13 @@ export default { }, "tournament_stages_on_conflict": { "constraint": [ - 3024 + 3292 ], "update_columns": [ - 3054 + 3322 ], "where": [ - 3023 + 3291 ], "__typename": [ 63 @@ -75273,55 +80219,55 @@ export default { }, "tournament_stages_order_by": { "brackets_aggregate": [ - 2931 + 3199 ], "decider_best_of": [ - 1736 + 2004 ], "default_best_of": [ - 1736 + 2004 ], "e_tournament_stage_type": [ - 706 + 947 ], "groups": [ - 1736 + 2004 ], "id": [ - 1736 + 2004 ], "match_options_id": [ - 1736 + 2004 ], "max_teams": [ - 1736 + 2004 ], "min_teams": [ - 1736 + 2004 ], "options": [ - 1471 + 1712 ], "order": [ - 1736 + 2004 ], "results_aggregate": [ - 3882 + 4150 ], "settings": [ - 1736 + 2004 ], "third_place_match": [ - 1736 + 2004 ], "tournament": [ - 3295 + 3563 ], "tournament_id": [ - 1736 + 2004 ], "type": [ - 1736 + 2004 ], "__typename": [ 63 @@ -75329,7 +80275,7 @@ export default { }, "tournament_stages_pk_columns_input": { "id": [ - 3319 + 3587 ], "__typename": [ 63 @@ -75337,7 +80283,7 @@ export default { }, "tournament_stages_prepend_input": { "settings": [ - 946 + 1187 ], "__typename": [ 63 @@ -75357,10 +80303,10 @@ export default { 34 ], "id": [ - 3319 + 3587 ], "match_options_id": [ - 3319 + 3587 ], "max_teams": [ 34 @@ -75372,16 +80318,16 @@ export default { 34 ], "settings": [ - 946 + 1187 ], "third_place_match": [ 3 ], "tournament_id": [ - 3319 + 3587 ], "type": [ - 698 + 939 ], "__typename": [ 63 @@ -75412,22 +80358,22 @@ export default { }, "tournament_stages_stddev_order_by": { "decider_best_of": [ - 1736 + 2004 ], "default_best_of": [ - 1736 + 2004 ], "groups": [ - 1736 + 2004 ], "max_teams": [ - 1736 + 2004 ], "min_teams": [ - 1736 + 2004 ], "order": [ - 1736 + 2004 ], "__typename": [ 63 @@ -75458,22 +80404,22 @@ export default { }, "tournament_stages_stddev_pop_order_by": { "decider_best_of": [ - 1736 + 2004 ], "default_best_of": [ - 1736 + 2004 ], "groups": [ - 1736 + 2004 ], "max_teams": [ - 1736 + 2004 ], "min_teams": [ - 1736 + 2004 ], "order": [ - 1736 + 2004 ], "__typename": [ 63 @@ -75504,22 +80450,22 @@ export default { }, "tournament_stages_stddev_samp_order_by": { "decider_best_of": [ - 1736 + 2004 ], "default_best_of": [ - 1736 + 2004 ], "groups": [ - 1736 + 2004 ], "max_teams": [ - 1736 + 2004 ], "min_teams": [ - 1736 + 2004 ], "order": [ - 1736 + 2004 ], "__typename": [ 63 @@ -75527,7 +80473,7 @@ export default { }, "tournament_stages_stream_cursor_input": { "initial_value": [ - 3051 + 3319 ], "ordering": [ 216 @@ -75547,10 +80493,10 @@ export default { 34 ], "id": [ - 3319 + 3587 ], "match_options_id": [ - 3319 + 3587 ], "max_teams": [ 34 @@ -75562,16 +80508,16 @@ export default { 34 ], "settings": [ - 946 + 1187 ], "third_place_match": [ 3 ], "tournament_id": [ - 3319 + 3587 ], "type": [ - 698 + 939 ], "__typename": [ 63 @@ -75602,22 +80548,22 @@ export default { }, "tournament_stages_sum_order_by": { "decider_best_of": [ - 1736 + 2004 ], "default_best_of": [ - 1736 + 2004 ], "groups": [ - 1736 + 2004 ], "max_teams": [ - 1736 + 2004 ], "min_teams": [ - 1736 + 2004 ], "order": [ - 1736 + 2004 ], "__typename": [ 63 @@ -75626,28 +80572,28 @@ export default { "tournament_stages_update_column": {}, "tournament_stages_updates": { "_append": [ - 3019 + 3287 ], "_delete_at_path": [ - 3025 + 3293 ], "_delete_elem": [ - 3026 + 3294 ], "_delete_key": [ - 3027 + 3295 ], "_inc": [ - 3028 + 3296 ], "_prepend": [ - 3039 + 3307 ], "_set": [ - 3043 + 3311 ], "where": [ - 3023 + 3291 ], "__typename": [ 63 @@ -75678,22 +80624,22 @@ export default { }, "tournament_stages_var_pop_order_by": { "decider_best_of": [ - 1736 + 2004 ], "default_best_of": [ - 1736 + 2004 ], "groups": [ - 1736 + 2004 ], "max_teams": [ - 1736 + 2004 ], "min_teams": [ - 1736 + 2004 ], "order": [ - 1736 + 2004 ], "__typename": [ 63 @@ -75724,22 +80670,22 @@ export default { }, "tournament_stages_var_samp_order_by": { "decider_best_of": [ - 1736 + 2004 ], "default_best_of": [ - 1736 + 2004 ], "groups": [ - 1736 + 2004 ], "max_teams": [ - 1736 + 2004 ], "min_teams": [ - 1736 + 2004 ], "order": [ - 1736 + 2004 ], "__typename": [ 63 @@ -75770,22 +80716,22 @@ export default { }, "tournament_stages_variance_order_by": { "decider_best_of": [ - 1736 + 2004 ], "default_best_of": [ - 1736 + 2004 ], "groups": [ - 1736 + 2004 ], "max_teams": [ - 1736 + 2004 ], "min_teams": [ - 1736 + 2004 ], "order": [ - 1736 + 2004 ], "__typename": [ 63 @@ -75793,28 +80739,28 @@ export default { }, "tournament_team_invites": { "created_at": [ - 2922 + 3190 ], "id": [ - 3319 + 3587 ], "invited_by": [ - 2603 + 2871 ], "invited_by_player_steam_id": [ 162 ], "player": [ - 2603 + 2871 ], "steam_id": [ 162 ], "team": [ - 3144 + 3412 ], "tournament_team_id": [ - 3319 + 3587 ], "__typename": [ 63 @@ -75822,10 +80768,10 @@ export default { }, "tournament_team_invites_aggregate": { "aggregate": [ - 3066 + 3334 ], "nodes": [ - 3062 + 3330 ], "__typename": [ 63 @@ -75833,7 +80779,7 @@ export default { }, "tournament_team_invites_aggregate_bool_exp": { "count": [ - 3065 + 3333 ], "__typename": [ 63 @@ -75841,13 +80787,13 @@ export default { }, "tournament_team_invites_aggregate_bool_exp_count": { "arguments": [ - 3083 + 3351 ], "distinct": [ 3 ], "filter": [ - 3071 + 3339 ], "predicate": [ 35 @@ -75858,13 +80804,13 @@ export default { }, "tournament_team_invites_aggregate_fields": { "avg": [ - 3069 + 3337 ], "count": [ 34, { "columns": [ - 3083, + 3351, "[tournament_team_invites_select_column!]" ], "distinct": [ @@ -75873,31 +80819,31 @@ export default { } ], "max": [ - 3075 + 3343 ], "min": [ - 3077 + 3345 ], "stddev": [ - 3085 + 3353 ], "stddev_pop": [ - 3087 + 3355 ], "stddev_samp": [ - 3089 + 3357 ], "sum": [ - 3093 + 3361 ], "var_pop": [ - 3097 + 3365 ], "var_samp": [ - 3099 + 3367 ], "variance": [ - 3101 + 3369 ], "__typename": [ 63 @@ -75905,37 +80851,37 @@ export default { }, "tournament_team_invites_aggregate_order_by": { "avg": [ - 3070 + 3338 ], "count": [ - 1736 + 2004 ], "max": [ - 3076 + 3344 ], "min": [ - 3078 + 3346 ], "stddev": [ - 3086 + 3354 ], "stddev_pop": [ - 3088 + 3356 ], "stddev_samp": [ - 3090 + 3358 ], "sum": [ - 3094 + 3362 ], "var_pop": [ - 3098 + 3366 ], "var_samp": [ - 3100 + 3368 ], "variance": [ - 3102 + 3370 ], "__typename": [ 63 @@ -75943,10 +80889,10 @@ export default { }, "tournament_team_invites_arr_rel_insert_input": { "data": [ - 3074 + 3342 ], "on_conflict": [ - 3080 + 3348 ], "__typename": [ 63 @@ -75965,10 +80911,10 @@ export default { }, "tournament_team_invites_avg_order_by": { "invited_by_player_steam_id": [ - 1736 + 2004 ], "steam_id": [ - 1736 + 2004 ], "__typename": [ 63 @@ -75976,37 +80922,37 @@ export default { }, "tournament_team_invites_bool_exp": { "_and": [ - 3071 + 3339 ], "_not": [ - 3071 + 3339 ], "_or": [ - 3071 + 3339 ], "created_at": [ - 2923 + 3191 ], "id": [ - 3320 + 3588 ], "invited_by": [ - 2607 + 2875 ], "invited_by_player_steam_id": [ 163 ], "player": [ - 2607 + 2875 ], "steam_id": [ 163 ], "team": [ - 3153 + 3421 ], "tournament_team_id": [ - 3320 + 3588 ], "__typename": [ 63 @@ -76026,28 +80972,28 @@ export default { }, "tournament_team_invites_insert_input": { "created_at": [ - 2922 + 3190 ], "id": [ - 3319 + 3587 ], "invited_by": [ - 2614 + 2882 ], "invited_by_player_steam_id": [ 162 ], "player": [ - 2614 + 2882 ], "steam_id": [ 162 ], "team": [ - 3162 + 3430 ], "tournament_team_id": [ - 3319 + 3587 ], "__typename": [ 63 @@ -76055,10 +81001,10 @@ export default { }, "tournament_team_invites_max_fields": { "created_at": [ - 2922 + 3190 ], "id": [ - 3319 + 3587 ], "invited_by_player_steam_id": [ 162 @@ -76067,7 +81013,7 @@ export default { 162 ], "tournament_team_id": [ - 3319 + 3587 ], "__typename": [ 63 @@ -76075,19 +81021,19 @@ export default { }, "tournament_team_invites_max_order_by": { "created_at": [ - 1736 + 2004 ], "id": [ - 1736 + 2004 ], "invited_by_player_steam_id": [ - 1736 + 2004 ], "steam_id": [ - 1736 + 2004 ], "tournament_team_id": [ - 1736 + 2004 ], "__typename": [ 63 @@ -76095,10 +81041,10 @@ export default { }, "tournament_team_invites_min_fields": { "created_at": [ - 2922 + 3190 ], "id": [ - 3319 + 3587 ], "invited_by_player_steam_id": [ 162 @@ -76107,7 +81053,7 @@ export default { 162 ], "tournament_team_id": [ - 3319 + 3587 ], "__typename": [ 63 @@ -76115,19 +81061,19 @@ export default { }, "tournament_team_invites_min_order_by": { "created_at": [ - 1736 + 2004 ], "id": [ - 1736 + 2004 ], "invited_by_player_steam_id": [ - 1736 + 2004 ], "steam_id": [ - 1736 + 2004 ], "tournament_team_id": [ - 1736 + 2004 ], "__typename": [ 63 @@ -76138,7 +81084,7 @@ export default { 34 ], "returning": [ - 3062 + 3330 ], "__typename": [ 63 @@ -76146,13 +81092,13 @@ export default { }, "tournament_team_invites_on_conflict": { "constraint": [ - 3072 + 3340 ], "update_columns": [ - 3095 + 3363 ], "where": [ - 3071 + 3339 ], "__typename": [ 63 @@ -76160,28 +81106,28 @@ export default { }, "tournament_team_invites_order_by": { "created_at": [ - 1736 + 2004 ], "id": [ - 1736 + 2004 ], "invited_by": [ - 2616 + 2884 ], "invited_by_player_steam_id": [ - 1736 + 2004 ], "player": [ - 2616 + 2884 ], "steam_id": [ - 1736 + 2004 ], "team": [ - 3164 + 3432 ], "tournament_team_id": [ - 1736 + 2004 ], "__typename": [ 63 @@ -76189,7 +81135,7 @@ export default { }, "tournament_team_invites_pk_columns_input": { "id": [ - 3319 + 3587 ], "__typename": [ 63 @@ -76198,10 +81144,10 @@ export default { "tournament_team_invites_select_column": {}, "tournament_team_invites_set_input": { "created_at": [ - 2922 + 3190 ], "id": [ - 3319 + 3587 ], "invited_by_player_steam_id": [ 162 @@ -76210,7 +81156,7 @@ export default { 162 ], "tournament_team_id": [ - 3319 + 3587 ], "__typename": [ 63 @@ -76229,10 +81175,10 @@ export default { }, "tournament_team_invites_stddev_order_by": { "invited_by_player_steam_id": [ - 1736 + 2004 ], "steam_id": [ - 1736 + 2004 ], "__typename": [ 63 @@ -76251,10 +81197,10 @@ export default { }, "tournament_team_invites_stddev_pop_order_by": { "invited_by_player_steam_id": [ - 1736 + 2004 ], "steam_id": [ - 1736 + 2004 ], "__typename": [ 63 @@ -76273,10 +81219,10 @@ export default { }, "tournament_team_invites_stddev_samp_order_by": { "invited_by_player_steam_id": [ - 1736 + 2004 ], "steam_id": [ - 1736 + 2004 ], "__typename": [ 63 @@ -76284,7 +81230,7 @@ export default { }, "tournament_team_invites_stream_cursor_input": { "initial_value": [ - 3092 + 3360 ], "ordering": [ 216 @@ -76295,10 +81241,10 @@ export default { }, "tournament_team_invites_stream_cursor_value_input": { "created_at": [ - 2922 + 3190 ], "id": [ - 3319 + 3587 ], "invited_by_player_steam_id": [ 162 @@ -76307,7 +81253,7 @@ export default { 162 ], "tournament_team_id": [ - 3319 + 3587 ], "__typename": [ 63 @@ -76326,10 +81272,10 @@ export default { }, "tournament_team_invites_sum_order_by": { "invited_by_player_steam_id": [ - 1736 + 2004 ], "steam_id": [ - 1736 + 2004 ], "__typename": [ 63 @@ -76338,13 +81284,13 @@ export default { "tournament_team_invites_update_column": {}, "tournament_team_invites_updates": { "_inc": [ - 3073 + 3341 ], "_set": [ - 3084 + 3352 ], "where": [ - 3071 + 3339 ], "__typename": [ 63 @@ -76363,10 +81309,10 @@ export default { }, "tournament_team_invites_var_pop_order_by": { "invited_by_player_steam_id": [ - 1736 + 2004 ], "steam_id": [ - 1736 + 2004 ], "__typename": [ 63 @@ -76385,10 +81331,10 @@ export default { }, "tournament_team_invites_var_samp_order_by": { "invited_by_player_steam_id": [ - 1736 + 2004 ], "steam_id": [ - 1736 + 2004 ], "__typename": [ 63 @@ -76407,10 +81353,10 @@ export default { }, "tournament_team_invites_variance_order_by": { "invited_by_player_steam_id": [ - 1736 + 2004 ], "steam_id": [ - 1736 + 2004 ], "__typename": [ 63 @@ -76418,28 +81364,28 @@ export default { }, "tournament_team_roster": { "e_team_role": [ - 632 + 873 ], "player": [ - 2603 + 2871 ], "player_steam_id": [ 162 ], "role": [ - 637 + 878 ], "tournament": [ - 3273 + 3541 ], "tournament_id": [ - 3319 + 3587 ], "tournament_team": [ - 3144 + 3412 ], "tournament_team_id": [ - 3319 + 3587 ], "__typename": [ 63 @@ -76447,10 +81393,10 @@ export default { }, "tournament_team_roster_aggregate": { "aggregate": [ - 3107 + 3375 ], "nodes": [ - 3103 + 3371 ], "__typename": [ 63 @@ -76458,7 +81404,7 @@ export default { }, "tournament_team_roster_aggregate_bool_exp": { "count": [ - 3106 + 3374 ], "__typename": [ 63 @@ -76466,13 +81412,13 @@ export default { }, "tournament_team_roster_aggregate_bool_exp_count": { "arguments": [ - 3124 + 3392 ], "distinct": [ 3 ], "filter": [ - 3112 + 3380 ], "predicate": [ 35 @@ -76483,13 +81429,13 @@ export default { }, "tournament_team_roster_aggregate_fields": { "avg": [ - 3110 + 3378 ], "count": [ 34, { "columns": [ - 3124, + 3392, "[tournament_team_roster_select_column!]" ], "distinct": [ @@ -76498,31 +81444,31 @@ export default { } ], "max": [ - 3116 + 3384 ], "min": [ - 3118 + 3386 ], "stddev": [ - 3126 + 3394 ], "stddev_pop": [ - 3128 + 3396 ], "stddev_samp": [ - 3130 + 3398 ], "sum": [ - 3134 + 3402 ], "var_pop": [ - 3138 + 3406 ], "var_samp": [ - 3140 + 3408 ], "variance": [ - 3142 + 3410 ], "__typename": [ 63 @@ -76530,37 +81476,37 @@ export default { }, "tournament_team_roster_aggregate_order_by": { "avg": [ - 3111 + 3379 ], "count": [ - 1736 + 2004 ], "max": [ - 3117 + 3385 ], "min": [ - 3119 + 3387 ], "stddev": [ - 3127 + 3395 ], "stddev_pop": [ - 3129 + 3397 ], "stddev_samp": [ - 3131 + 3399 ], "sum": [ - 3135 + 3403 ], "var_pop": [ - 3139 + 3407 ], "var_samp": [ - 3141 + 3409 ], "variance": [ - 3143 + 3411 ], "__typename": [ 63 @@ -76568,10 +81514,10 @@ export default { }, "tournament_team_roster_arr_rel_insert_input": { "data": [ - 3115 + 3383 ], "on_conflict": [ - 3121 + 3389 ], "__typename": [ 63 @@ -76587,7 +81533,7 @@ export default { }, "tournament_team_roster_avg_order_by": { "player_steam_id": [ - 1736 + 2004 ], "__typename": [ 63 @@ -76595,37 +81541,37 @@ export default { }, "tournament_team_roster_bool_exp": { "_and": [ - 3112 + 3380 ], "_not": [ - 3112 + 3380 ], "_or": [ - 3112 + 3380 ], "e_team_role": [ - 635 + 876 ], "player": [ - 2607 + 2875 ], "player_steam_id": [ 163 ], "role": [ - 638 + 879 ], "tournament": [ - 3284 + 3552 ], "tournament_id": [ - 3320 + 3588 ], "tournament_team": [ - 3153 + 3421 ], "tournament_team_id": [ - 3320 + 3588 ], "__typename": [ 63 @@ -76642,28 +81588,28 @@ export default { }, "tournament_team_roster_insert_input": { "e_team_role": [ - 643 + 884 ], "player": [ - 2614 + 2882 ], "player_steam_id": [ 162 ], "role": [ - 637 + 878 ], "tournament": [ - 3293 + 3561 ], "tournament_id": [ - 3319 + 3587 ], "tournament_team": [ - 3162 + 3430 ], "tournament_team_id": [ - 3319 + 3587 ], "__typename": [ 63 @@ -76674,10 +81620,10 @@ export default { 162 ], "tournament_id": [ - 3319 + 3587 ], "tournament_team_id": [ - 3319 + 3587 ], "__typename": [ 63 @@ -76685,13 +81631,13 @@ export default { }, "tournament_team_roster_max_order_by": { "player_steam_id": [ - 1736 + 2004 ], "tournament_id": [ - 1736 + 2004 ], "tournament_team_id": [ - 1736 + 2004 ], "__typename": [ 63 @@ -76702,10 +81648,10 @@ export default { 162 ], "tournament_id": [ - 3319 + 3587 ], "tournament_team_id": [ - 3319 + 3587 ], "__typename": [ 63 @@ -76713,13 +81659,13 @@ export default { }, "tournament_team_roster_min_order_by": { "player_steam_id": [ - 1736 + 2004 ], "tournament_id": [ - 1736 + 2004 ], "tournament_team_id": [ - 1736 + 2004 ], "__typename": [ 63 @@ -76730,7 +81676,7 @@ export default { 34 ], "returning": [ - 3103 + 3371 ], "__typename": [ 63 @@ -76738,13 +81684,13 @@ export default { }, "tournament_team_roster_on_conflict": { "constraint": [ - 3113 + 3381 ], "update_columns": [ - 3136 + 3404 ], "where": [ - 3112 + 3380 ], "__typename": [ 63 @@ -76752,28 +81698,28 @@ export default { }, "tournament_team_roster_order_by": { "e_team_role": [ - 645 + 886 ], "player": [ - 2616 + 2884 ], "player_steam_id": [ - 1736 + 2004 ], "role": [ - 1736 + 2004 ], "tournament": [ - 3295 + 3563 ], "tournament_id": [ - 1736 + 2004 ], "tournament_team": [ - 3164 + 3432 ], "tournament_team_id": [ - 1736 + 2004 ], "__typename": [ 63 @@ -76784,7 +81730,7 @@ export default { 162 ], "tournament_id": [ - 3319 + 3587 ], "__typename": [ 63 @@ -76796,13 +81742,13 @@ export default { 162 ], "role": [ - 637 + 878 ], "tournament_id": [ - 3319 + 3587 ], "tournament_team_id": [ - 3319 + 3587 ], "__typename": [ 63 @@ -76818,7 +81764,7 @@ export default { }, "tournament_team_roster_stddev_order_by": { "player_steam_id": [ - 1736 + 2004 ], "__typename": [ 63 @@ -76834,7 +81780,7 @@ export default { }, "tournament_team_roster_stddev_pop_order_by": { "player_steam_id": [ - 1736 + 2004 ], "__typename": [ 63 @@ -76850,7 +81796,7 @@ export default { }, "tournament_team_roster_stddev_samp_order_by": { "player_steam_id": [ - 1736 + 2004 ], "__typename": [ 63 @@ -76858,7 +81804,7 @@ export default { }, "tournament_team_roster_stream_cursor_input": { "initial_value": [ - 3133 + 3401 ], "ordering": [ 216 @@ -76872,13 +81818,13 @@ export default { 162 ], "role": [ - 637 + 878 ], "tournament_id": [ - 3319 + 3587 ], "tournament_team_id": [ - 3319 + 3587 ], "__typename": [ 63 @@ -76894,7 +81840,7 @@ export default { }, "tournament_team_roster_sum_order_by": { "player_steam_id": [ - 1736 + 2004 ], "__typename": [ 63 @@ -76903,13 +81849,13 @@ export default { "tournament_team_roster_update_column": {}, "tournament_team_roster_updates": { "_inc": [ - 3114 + 3382 ], "_set": [ - 3125 + 3393 ], "where": [ - 3112 + 3380 ], "__typename": [ 63 @@ -76925,7 +81871,7 @@ export default { }, "tournament_team_roster_var_pop_order_by": { "player_steam_id": [ - 1736 + 2004 ], "__typename": [ 63 @@ -76941,7 +81887,7 @@ export default { }, "tournament_team_roster_var_samp_order_by": { "player_steam_id": [ - 1736 + 2004 ], "__typename": [ 63 @@ -76957,7 +81903,7 @@ export default { }, "tournament_team_roster_variance_order_by": { "player_steam_id": [ - 1736 + 2004 ], "__typename": [ 63 @@ -76968,28 +81914,28 @@ export default { 3 ], "captain": [ - 2603 + 2871 ], "captain_steam_id": [ 162 ], "created_at": [ - 2922 + 3190 ], "creator": [ - 2603 + 2871 ], "eligible_at": [ - 2922 + 3190 ], "id": [ - 3319 + 3587 ], "invites": [ - 3062, + 3330, { "distinct_on": [ - 3083, + 3351, "[tournament_team_invites_select_column!]" ], "limit": [ @@ -76999,19 +81945,19 @@ export default { 34 ], "order_by": [ - 3081, + 3349, "[tournament_team_invites_order_by!]" ], "where": [ - 3071 + 3339 ] } ], "invites_aggregate": [ - 3063, + 3331, { "distinct_on": [ - 3083, + 3351, "[tournament_team_invites_select_column!]" ], "limit": [ @@ -77021,11 +81967,11 @@ export default { 34 ], "order_by": [ - 3081, + 3349, "[tournament_team_invites_order_by!]" ], "where": [ - 3071 + 3339 ] } ], @@ -77036,13 +81982,13 @@ export default { 162 ], "results": [ - 3867 + 4135 ], "roster": [ - 3103, + 3371, { "distinct_on": [ - 3124, + 3392, "[tournament_team_roster_select_column!]" ], "limit": [ @@ -77052,19 +81998,19 @@ export default { 34 ], "order_by": [ - 3122, + 3390, "[tournament_team_roster_order_by!]" ], "where": [ - 3112 + 3380 ] } ], "roster_aggregate": [ - 3104, + 3372, { "distinct_on": [ - 3124, + 3392, "[tournament_team_roster_select_column!]" ], "limit": [ @@ -77074,11 +82020,11 @@ export default { 34 ], "order_by": [ - 3122, + 3390, "[tournament_team_roster_order_by!]" ], "where": [ - 3112 + 3380 ] } ], @@ -77089,16 +82035,16 @@ export default { 63 ], "team": [ - 2879 + 3147 ], "team_id": [ - 3319 + 3587 ], "tournament": [ - 3273 + 3541 ], "tournament_id": [ - 3319 + 3587 ], "__typename": [ 63 @@ -77106,10 +82052,10 @@ export default { }, "tournament_teams_aggregate": { "aggregate": [ - 3148 + 3416 ], "nodes": [ - 3144 + 3412 ], "__typename": [ 63 @@ -77117,7 +82063,7 @@ export default { }, "tournament_teams_aggregate_bool_exp": { "count": [ - 3147 + 3415 ], "__typename": [ 63 @@ -77125,13 +82071,13 @@ export default { }, "tournament_teams_aggregate_bool_exp_count": { "arguments": [ - 3166 + 3434 ], "distinct": [ 3 ], "filter": [ - 3153 + 3421 ], "predicate": [ 35 @@ -77142,13 +82088,13 @@ export default { }, "tournament_teams_aggregate_fields": { "avg": [ - 3151 + 3419 ], "count": [ 34, { "columns": [ - 3166, + 3434, "[tournament_teams_select_column!]" ], "distinct": [ @@ -77157,31 +82103,31 @@ export default { } ], "max": [ - 3157 + 3425 ], "min": [ - 3159 + 3427 ], "stddev": [ - 3168 + 3436 ], "stddev_pop": [ - 3170 + 3438 ], "stddev_samp": [ - 3172 + 3440 ], "sum": [ - 3176 + 3444 ], "var_pop": [ - 3180 + 3448 ], "var_samp": [ - 3182 + 3450 ], "variance": [ - 3184 + 3452 ], "__typename": [ 63 @@ -77189,37 +82135,37 @@ export default { }, "tournament_teams_aggregate_order_by": { "avg": [ - 3152 + 3420 ], "count": [ - 1736 + 2004 ], "max": [ - 3158 + 3426 ], "min": [ - 3160 + 3428 ], "stddev": [ - 3169 + 3437 ], "stddev_pop": [ - 3171 + 3439 ], "stddev_samp": [ - 3173 + 3441 ], "sum": [ - 3177 + 3445 ], "var_pop": [ - 3181 + 3449 ], "var_samp": [ - 3183 + 3451 ], "variance": [ - 3185 + 3453 ], "__typename": [ 63 @@ -77227,10 +82173,10 @@ export default { }, "tournament_teams_arr_rel_insert_input": { "data": [ - 3156 + 3424 ], "on_conflict": [ - 3163 + 3431 ], "__typename": [ 63 @@ -77252,13 +82198,13 @@ export default { }, "tournament_teams_avg_order_by": { "captain_steam_id": [ - 1736 + 2004 ], "owner_steam_id": [ - 1736 + 2004 ], "seed": [ - 1736 + 2004 ], "__typename": [ 63 @@ -77266,40 +82212,40 @@ export default { }, "tournament_teams_bool_exp": { "_and": [ - 3153 + 3421 ], "_not": [ - 3153 + 3421 ], "_or": [ - 3153 + 3421 ], "can_manage": [ 4 ], "captain": [ - 2607 + 2875 ], "captain_steam_id": [ 163 ], "created_at": [ - 2923 + 3191 ], "creator": [ - 2607 + 2875 ], "eligible_at": [ - 2923 + 3191 ], "id": [ - 3320 + 3588 ], "invites": [ - 3071 + 3339 ], "invites_aggregate": [ - 3064 + 3332 ], "name": [ 65 @@ -77308,13 +82254,13 @@ export default { 163 ], "results": [ - 3886 + 4154 ], "roster": [ - 3112 + 3380 ], "roster_aggregate": [ - 3105 + 3373 ], "seed": [ 35 @@ -77323,16 +82269,16 @@ export default { 65 ], "team": [ - 2888 + 3156 ], "team_id": [ - 3320 + 3588 ], "tournament": [ - 3284 + 3552 ], "tournament_id": [ - 3320 + 3588 ], "__typename": [ 63 @@ -77355,25 +82301,25 @@ export default { }, "tournament_teams_insert_input": { "captain": [ - 2614 + 2882 ], "captain_steam_id": [ 162 ], "created_at": [ - 2922 + 3190 ], "creator": [ - 2614 + 2882 ], "eligible_at": [ - 2922 + 3190 ], "id": [ - 3319 + 3587 ], "invites": [ - 3068 + 3336 ], "name": [ 63 @@ -77382,10 +82328,10 @@ export default { 162 ], "results": [ - 3895 + 4163 ], "roster": [ - 3109 + 3377 ], "seed": [ 34 @@ -77394,16 +82340,16 @@ export default { 63 ], "team": [ - 2897 + 3165 ], "team_id": [ - 3319 + 3587 ], "tournament": [ - 3293 + 3561 ], "tournament_id": [ - 3319 + 3587 ], "__typename": [ 63 @@ -77414,13 +82360,13 @@ export default { 162 ], "created_at": [ - 2922 + 3190 ], "eligible_at": [ - 2922 + 3190 ], "id": [ - 3319 + 3587 ], "name": [ 63 @@ -77435,10 +82381,10 @@ export default { 63 ], "team_id": [ - 3319 + 3587 ], "tournament_id": [ - 3319 + 3587 ], "__typename": [ 63 @@ -77446,34 +82392,34 @@ export default { }, "tournament_teams_max_order_by": { "captain_steam_id": [ - 1736 + 2004 ], "created_at": [ - 1736 + 2004 ], "eligible_at": [ - 1736 + 2004 ], "id": [ - 1736 + 2004 ], "name": [ - 1736 + 2004 ], "owner_steam_id": [ - 1736 + 2004 ], "seed": [ - 1736 + 2004 ], "short_name": [ - 1736 + 2004 ], "team_id": [ - 1736 + 2004 ], "tournament_id": [ - 1736 + 2004 ], "__typename": [ 63 @@ -77484,13 +82430,13 @@ export default { 162 ], "created_at": [ - 2922 + 3190 ], "eligible_at": [ - 2922 + 3190 ], "id": [ - 3319 + 3587 ], "name": [ 63 @@ -77505,10 +82451,10 @@ export default { 63 ], "team_id": [ - 3319 + 3587 ], "tournament_id": [ - 3319 + 3587 ], "__typename": [ 63 @@ -77516,34 +82462,34 @@ export default { }, "tournament_teams_min_order_by": { "captain_steam_id": [ - 1736 + 2004 ], "created_at": [ - 1736 + 2004 ], "eligible_at": [ - 1736 + 2004 ], "id": [ - 1736 + 2004 ], "name": [ - 1736 + 2004 ], "owner_steam_id": [ - 1736 + 2004 ], "seed": [ - 1736 + 2004 ], "short_name": [ - 1736 + 2004 ], "team_id": [ - 1736 + 2004 ], "tournament_id": [ - 1736 + 2004 ], "__typename": [ 63 @@ -77554,7 +82500,7 @@ export default { 34 ], "returning": [ - 3144 + 3412 ], "__typename": [ 63 @@ -77562,10 +82508,10 @@ export default { }, "tournament_teams_obj_rel_insert_input": { "data": [ - 3156 + 3424 ], "on_conflict": [ - 3163 + 3431 ], "__typename": [ 63 @@ -77573,13 +82519,13 @@ export default { }, "tournament_teams_on_conflict": { "constraint": [ - 3154 + 3422 ], "update_columns": [ - 3178 + 3446 ], "where": [ - 3153 + 3421 ], "__typename": [ 63 @@ -77587,58 +82533,58 @@ export default { }, "tournament_teams_order_by": { "can_manage": [ - 1736 + 2004 ], "captain": [ - 2616 + 2884 ], "captain_steam_id": [ - 1736 + 2004 ], "created_at": [ - 1736 + 2004 ], "creator": [ - 2616 + 2884 ], "eligible_at": [ - 1736 + 2004 ], "id": [ - 1736 + 2004 ], "invites_aggregate": [ - 3067 + 3335 ], "name": [ - 1736 + 2004 ], "owner_steam_id": [ - 1736 + 2004 ], "results": [ - 3897 + 4165 ], "roster_aggregate": [ - 3108 + 3376 ], "seed": [ - 1736 + 2004 ], "short_name": [ - 1736 + 2004 ], "team": [ - 2899 + 3167 ], "team_id": [ - 1736 + 2004 ], "tournament": [ - 3295 + 3563 ], "tournament_id": [ - 1736 + 2004 ], "__typename": [ 63 @@ -77646,7 +82592,7 @@ export default { }, "tournament_teams_pk_columns_input": { "id": [ - 3319 + 3587 ], "__typename": [ 63 @@ -77658,13 +82604,13 @@ export default { 162 ], "created_at": [ - 2922 + 3190 ], "eligible_at": [ - 2922 + 3190 ], "id": [ - 3319 + 3587 ], "name": [ 63 @@ -77679,10 +82625,10 @@ export default { 63 ], "team_id": [ - 3319 + 3587 ], "tournament_id": [ - 3319 + 3587 ], "__typename": [ 63 @@ -77704,13 +82650,13 @@ export default { }, "tournament_teams_stddev_order_by": { "captain_steam_id": [ - 1736 + 2004 ], "owner_steam_id": [ - 1736 + 2004 ], "seed": [ - 1736 + 2004 ], "__typename": [ 63 @@ -77732,13 +82678,13 @@ export default { }, "tournament_teams_stddev_pop_order_by": { "captain_steam_id": [ - 1736 + 2004 ], "owner_steam_id": [ - 1736 + 2004 ], "seed": [ - 1736 + 2004 ], "__typename": [ 63 @@ -77760,13 +82706,13 @@ export default { }, "tournament_teams_stddev_samp_order_by": { "captain_steam_id": [ - 1736 + 2004 ], "owner_steam_id": [ - 1736 + 2004 ], "seed": [ - 1736 + 2004 ], "__typename": [ 63 @@ -77774,7 +82720,7 @@ export default { }, "tournament_teams_stream_cursor_input": { "initial_value": [ - 3175 + 3443 ], "ordering": [ 216 @@ -77788,13 +82734,13 @@ export default { 162 ], "created_at": [ - 2922 + 3190 ], "eligible_at": [ - 2922 + 3190 ], "id": [ - 3319 + 3587 ], "name": [ 63 @@ -77809,10 +82755,10 @@ export default { 63 ], "team_id": [ - 3319 + 3587 ], "tournament_id": [ - 3319 + 3587 ], "__typename": [ 63 @@ -77834,13 +82780,13 @@ export default { }, "tournament_teams_sum_order_by": { "captain_steam_id": [ - 1736 + 2004 ], "owner_steam_id": [ - 1736 + 2004 ], "seed": [ - 1736 + 2004 ], "__typename": [ 63 @@ -77849,13 +82795,13 @@ export default { "tournament_teams_update_column": {}, "tournament_teams_updates": { "_inc": [ - 3155 + 3423 ], "_set": [ - 3167 + 3435 ], "where": [ - 3153 + 3421 ], "__typename": [ 63 @@ -77877,13 +82823,13 @@ export default { }, "tournament_teams_var_pop_order_by": { "captain_steam_id": [ - 1736 + 2004 ], "owner_steam_id": [ - 1736 + 2004 ], "seed": [ - 1736 + 2004 ], "__typename": [ 63 @@ -77905,13 +82851,13 @@ export default { }, "tournament_teams_var_samp_order_by": { "captain_steam_id": [ - 1736 + 2004 ], "owner_steam_id": [ - 1736 + 2004 ], "seed": [ - 1736 + 2004 ], "__typename": [ 63 @@ -77933,13 +82879,13 @@ export default { }, "tournament_teams_variance_order_by": { "captain_steam_id": [ - 1736 + 2004 ], "owner_steam_id": [ - 1736 + 2004 ], "seed": [ - 1736 + 2004 ], "__typename": [ 63 @@ -77947,10 +82893,10 @@ export default { }, "tournament_trophies": { "created_at": [ - 2922 + 3190 ], "id": [ - 3319 + 3587 ], "manual": [ 3 @@ -77962,31 +82908,31 @@ export default { 63 ], "player": [ - 2603 + 2871 ], "player_steam_id": [ 162 ], "team": [ - 2879 + 3147 ], "team_id": [ - 3319 + 3587 ], "tournament": [ - 3273 + 3541 ], "tournament_id": [ - 3319 + 3587 ], "tournament_team": [ - 3144 + 3412 ], "tournament_team_id": [ - 3319 + 3587 ], "trophy_config": [ - 3231 + 3499 ], "__typename": [ 63 @@ -77994,10 +82940,10 @@ export default { }, "tournament_trophies_aggregate": { "aggregate": [ - 3192 + 3460 ], "nodes": [ - 3186 + 3454 ], "__typename": [ 63 @@ -78005,13 +82951,13 @@ export default { }, "tournament_trophies_aggregate_bool_exp": { "bool_and": [ - 3189 + 3457 ], "bool_or": [ - 3190 + 3458 ], "count": [ - 3191 + 3459 ], "__typename": [ 63 @@ -78019,13 +82965,13 @@ export default { }, "tournament_trophies_aggregate_bool_exp_bool_and": { "arguments": [ - 3210 + 3478 ], "distinct": [ 3 ], "filter": [ - 3197 + 3465 ], "predicate": [ 4 @@ -78036,13 +82982,13 @@ export default { }, "tournament_trophies_aggregate_bool_exp_bool_or": { "arguments": [ - 3211 + 3479 ], "distinct": [ 3 ], "filter": [ - 3197 + 3465 ], "predicate": [ 4 @@ -78053,13 +82999,13 @@ export default { }, "tournament_trophies_aggregate_bool_exp_count": { "arguments": [ - 3209 + 3477 ], "distinct": [ 3 ], "filter": [ - 3197 + 3465 ], "predicate": [ 35 @@ -78070,13 +83016,13 @@ export default { }, "tournament_trophies_aggregate_fields": { "avg": [ - 3195 + 3463 ], "count": [ 34, { "columns": [ - 3209, + 3477, "[tournament_trophies_select_column!]" ], "distinct": [ @@ -78085,31 +83031,31 @@ export default { } ], "max": [ - 3201 + 3469 ], "min": [ - 3203 + 3471 ], "stddev": [ - 3213 + 3481 ], "stddev_pop": [ - 3215 + 3483 ], "stddev_samp": [ - 3217 + 3485 ], "sum": [ - 3221 + 3489 ], "var_pop": [ - 3225 + 3493 ], "var_samp": [ - 3227 + 3495 ], "variance": [ - 3229 + 3497 ], "__typename": [ 63 @@ -78117,37 +83063,37 @@ export default { }, "tournament_trophies_aggregate_order_by": { "avg": [ - 3196 + 3464 ], "count": [ - 1736 + 2004 ], "max": [ - 3202 + 3470 ], "min": [ - 3204 + 3472 ], "stddev": [ - 3214 + 3482 ], "stddev_pop": [ - 3216 + 3484 ], "stddev_samp": [ - 3218 + 3486 ], "sum": [ - 3222 + 3490 ], "var_pop": [ - 3226 + 3494 ], "var_samp": [ - 3228 + 3496 ], "variance": [ - 3230 + 3498 ], "__typename": [ 63 @@ -78155,10 +83101,10 @@ export default { }, "tournament_trophies_arr_rel_insert_input": { "data": [ - 3200 + 3468 ], "on_conflict": [ - 3206 + 3474 ], "__typename": [ 63 @@ -78177,10 +83123,10 @@ export default { }, "tournament_trophies_avg_order_by": { "placement": [ - 1736 + 2004 ], "player_steam_id": [ - 1736 + 2004 ], "__typename": [ 63 @@ -78188,19 +83134,19 @@ export default { }, "tournament_trophies_bool_exp": { "_and": [ - 3197 + 3465 ], "_not": [ - 3197 + 3465 ], "_or": [ - 3197 + 3465 ], "created_at": [ - 2923 + 3191 ], "id": [ - 3320 + 3588 ], "manual": [ 4 @@ -78212,31 +83158,31 @@ export default { 65 ], "player": [ - 2607 + 2875 ], "player_steam_id": [ 163 ], "team": [ - 2888 + 3156 ], "team_id": [ - 3320 + 3588 ], "tournament": [ - 3284 + 3552 ], "tournament_id": [ - 3320 + 3588 ], "tournament_team": [ - 3153 + 3421 ], "tournament_team_id": [ - 3320 + 3588 ], "trophy_config": [ - 3240 + 3508 ], "__typename": [ 63 @@ -78256,10 +83202,10 @@ export default { }, "tournament_trophies_insert_input": { "created_at": [ - 2922 + 3190 ], "id": [ - 3319 + 3587 ], "manual": [ 3 @@ -78268,31 +83214,31 @@ export default { 34 ], "player": [ - 2614 + 2882 ], "player_steam_id": [ 162 ], "team": [ - 2897 + 3165 ], "team_id": [ - 3319 + 3587 ], "tournament": [ - 3293 + 3561 ], "tournament_id": [ - 3319 + 3587 ], "tournament_team": [ - 3162 + 3430 ], "tournament_team_id": [ - 3319 + 3587 ], "trophy_config": [ - 3249 + 3517 ], "__typename": [ 63 @@ -78300,10 +83246,10 @@ export default { }, "tournament_trophies_max_fields": { "created_at": [ - 2922 + 3190 ], "id": [ - 3319 + 3587 ], "placement": [ 34 @@ -78315,13 +83261,13 @@ export default { 162 ], "team_id": [ - 3319 + 3587 ], "tournament_id": [ - 3319 + 3587 ], "tournament_team_id": [ - 3319 + 3587 ], "__typename": [ 63 @@ -78329,28 +83275,28 @@ export default { }, "tournament_trophies_max_order_by": { "created_at": [ - 1736 + 2004 ], "id": [ - 1736 + 2004 ], "placement": [ - 1736 + 2004 ], "placement_tier": [ - 1736 + 2004 ], "player_steam_id": [ - 1736 + 2004 ], "team_id": [ - 1736 + 2004 ], "tournament_id": [ - 1736 + 2004 ], "tournament_team_id": [ - 1736 + 2004 ], "__typename": [ 63 @@ -78358,10 +83304,10 @@ export default { }, "tournament_trophies_min_fields": { "created_at": [ - 2922 + 3190 ], "id": [ - 3319 + 3587 ], "placement": [ 34 @@ -78373,13 +83319,13 @@ export default { 162 ], "team_id": [ - 3319 + 3587 ], "tournament_id": [ - 3319 + 3587 ], "tournament_team_id": [ - 3319 + 3587 ], "__typename": [ 63 @@ -78387,28 +83333,28 @@ export default { }, "tournament_trophies_min_order_by": { "created_at": [ - 1736 + 2004 ], "id": [ - 1736 + 2004 ], "placement": [ - 1736 + 2004 ], "placement_tier": [ - 1736 + 2004 ], "player_steam_id": [ - 1736 + 2004 ], "team_id": [ - 1736 + 2004 ], "tournament_id": [ - 1736 + 2004 ], "tournament_team_id": [ - 1736 + 2004 ], "__typename": [ 63 @@ -78419,7 +83365,7 @@ export default { 34 ], "returning": [ - 3186 + 3454 ], "__typename": [ 63 @@ -78427,13 +83373,13 @@ export default { }, "tournament_trophies_on_conflict": { "constraint": [ - 3198 + 3466 ], "update_columns": [ - 3223 + 3491 ], "where": [ - 3197 + 3465 ], "__typename": [ 63 @@ -78441,46 +83387,46 @@ export default { }, "tournament_trophies_order_by": { "created_at": [ - 1736 + 2004 ], "id": [ - 1736 + 2004 ], "manual": [ - 1736 + 2004 ], "placement": [ - 1736 + 2004 ], "placement_tier": [ - 1736 + 2004 ], "player": [ - 2616 + 2884 ], "player_steam_id": [ - 1736 + 2004 ], "team": [ - 2899 + 3167 ], "team_id": [ - 1736 + 2004 ], "tournament": [ - 3295 + 3563 ], "tournament_id": [ - 1736 + 2004 ], "tournament_team": [ - 3164 + 3432 ], "tournament_team_id": [ - 1736 + 2004 ], "trophy_config": [ - 3251 + 3519 ], "__typename": [ 63 @@ -78488,7 +83434,7 @@ export default { }, "tournament_trophies_pk_columns_input": { "id": [ - 3319 + 3587 ], "__typename": [ 63 @@ -78499,10 +83445,10 @@ export default { "tournament_trophies_select_column_tournament_trophies_aggregate_bool_exp_bool_or_arguments_columns": {}, "tournament_trophies_set_input": { "created_at": [ - 2922 + 3190 ], "id": [ - 3319 + 3587 ], "manual": [ 3 @@ -78514,13 +83460,13 @@ export default { 162 ], "team_id": [ - 3319 + 3587 ], "tournament_id": [ - 3319 + 3587 ], "tournament_team_id": [ - 3319 + 3587 ], "__typename": [ 63 @@ -78539,10 +83485,10 @@ export default { }, "tournament_trophies_stddev_order_by": { "placement": [ - 1736 + 2004 ], "player_steam_id": [ - 1736 + 2004 ], "__typename": [ 63 @@ -78561,10 +83507,10 @@ export default { }, "tournament_trophies_stddev_pop_order_by": { "placement": [ - 1736 + 2004 ], "player_steam_id": [ - 1736 + 2004 ], "__typename": [ 63 @@ -78583,10 +83529,10 @@ export default { }, "tournament_trophies_stddev_samp_order_by": { "placement": [ - 1736 + 2004 ], "player_steam_id": [ - 1736 + 2004 ], "__typename": [ 63 @@ -78594,7 +83540,7 @@ export default { }, "tournament_trophies_stream_cursor_input": { "initial_value": [ - 3220 + 3488 ], "ordering": [ 216 @@ -78605,10 +83551,10 @@ export default { }, "tournament_trophies_stream_cursor_value_input": { "created_at": [ - 2922 + 3190 ], "id": [ - 3319 + 3587 ], "manual": [ 3 @@ -78623,13 +83569,13 @@ export default { 162 ], "team_id": [ - 3319 + 3587 ], "tournament_id": [ - 3319 + 3587 ], "tournament_team_id": [ - 3319 + 3587 ], "__typename": [ 63 @@ -78648,10 +83594,10 @@ export default { }, "tournament_trophies_sum_order_by": { "placement": [ - 1736 + 2004 ], "player_steam_id": [ - 1736 + 2004 ], "__typename": [ 63 @@ -78660,13 +83606,13 @@ export default { "tournament_trophies_update_column": {}, "tournament_trophies_updates": { "_inc": [ - 3199 + 3467 ], "_set": [ - 3212 + 3480 ], "where": [ - 3197 + 3465 ], "__typename": [ 63 @@ -78685,10 +83631,10 @@ export default { }, "tournament_trophies_var_pop_order_by": { "placement": [ - 1736 + 2004 ], "player_steam_id": [ - 1736 + 2004 ], "__typename": [ 63 @@ -78707,10 +83653,10 @@ export default { }, "tournament_trophies_var_samp_order_by": { "placement": [ - 1736 + 2004 ], "player_steam_id": [ - 1736 + 2004 ], "__typename": [ 63 @@ -78729,10 +83675,10 @@ export default { }, "tournament_trophies_variance_order_by": { "placement": [ - 1736 + 2004 ], "player_steam_id": [ - 1736 + 2004 ], "__typename": [ 63 @@ -78740,13 +83686,13 @@ export default { }, "tournament_trophy_configs": { "created_at": [ - 2922 + 3190 ], "custom_name": [ 63 ], "id": [ - 3319 + 3587 ], "image_url": [ 63 @@ -78758,13 +83704,13 @@ export default { 34 ], "tournament": [ - 3273 + 3541 ], "tournament_id": [ - 3319 + 3587 ], "updated_at": [ - 2922 + 3190 ], "__typename": [ 63 @@ -78772,10 +83718,10 @@ export default { }, "tournament_trophy_configs_aggregate": { "aggregate": [ - 3235 + 3503 ], "nodes": [ - 3231 + 3499 ], "__typename": [ 63 @@ -78783,7 +83729,7 @@ export default { }, "tournament_trophy_configs_aggregate_bool_exp": { "count": [ - 3234 + 3502 ], "__typename": [ 63 @@ -78791,13 +83737,13 @@ export default { }, "tournament_trophy_configs_aggregate_bool_exp_count": { "arguments": [ - 3253 + 3521 ], "distinct": [ 3 ], "filter": [ - 3240 + 3508 ], "predicate": [ 35 @@ -78808,13 +83754,13 @@ export default { }, "tournament_trophy_configs_aggregate_fields": { "avg": [ - 3238 + 3506 ], "count": [ 34, { "columns": [ - 3253, + 3521, "[tournament_trophy_configs_select_column!]" ], "distinct": [ @@ -78823,31 +83769,31 @@ export default { } ], "max": [ - 3244 + 3512 ], "min": [ - 3246 + 3514 ], "stddev": [ - 3255 + 3523 ], "stddev_pop": [ - 3257 + 3525 ], "stddev_samp": [ - 3259 + 3527 ], "sum": [ - 3263 + 3531 ], "var_pop": [ - 3267 + 3535 ], "var_samp": [ - 3269 + 3537 ], "variance": [ - 3271 + 3539 ], "__typename": [ 63 @@ -78855,37 +83801,37 @@ export default { }, "tournament_trophy_configs_aggregate_order_by": { "avg": [ - 3239 + 3507 ], "count": [ - 1736 + 2004 ], "max": [ - 3245 + 3513 ], "min": [ - 3247 + 3515 ], "stddev": [ - 3256 + 3524 ], "stddev_pop": [ - 3258 + 3526 ], "stddev_samp": [ - 3260 + 3528 ], "sum": [ - 3264 + 3532 ], "var_pop": [ - 3268 + 3536 ], "var_samp": [ - 3270 + 3538 ], "variance": [ - 3272 + 3540 ], "__typename": [ 63 @@ -78893,10 +83839,10 @@ export default { }, "tournament_trophy_configs_arr_rel_insert_input": { "data": [ - 3243 + 3511 ], "on_conflict": [ - 3250 + 3518 ], "__typename": [ 63 @@ -78915,10 +83861,10 @@ export default { }, "tournament_trophy_configs_avg_order_by": { "placement": [ - 1736 + 2004 ], "silhouette": [ - 1736 + 2004 ], "__typename": [ 63 @@ -78926,22 +83872,22 @@ export default { }, "tournament_trophy_configs_bool_exp": { "_and": [ - 3240 + 3508 ], "_not": [ - 3240 + 3508 ], "_or": [ - 3240 + 3508 ], "created_at": [ - 2923 + 3191 ], "custom_name": [ 65 ], "id": [ - 3320 + 3588 ], "image_url": [ 65 @@ -78953,13 +83899,13 @@ export default { 35 ], "tournament": [ - 3284 + 3552 ], "tournament_id": [ - 3320 + 3588 ], "updated_at": [ - 2923 + 3191 ], "__typename": [ 63 @@ -78979,13 +83925,13 @@ export default { }, "tournament_trophy_configs_insert_input": { "created_at": [ - 2922 + 3190 ], "custom_name": [ 63 ], "id": [ - 3319 + 3587 ], "image_url": [ 63 @@ -78997,13 +83943,13 @@ export default { 34 ], "tournament": [ - 3293 + 3561 ], "tournament_id": [ - 3319 + 3587 ], "updated_at": [ - 2922 + 3190 ], "__typename": [ 63 @@ -79011,13 +83957,13 @@ export default { }, "tournament_trophy_configs_max_fields": { "created_at": [ - 2922 + 3190 ], "custom_name": [ 63 ], "id": [ - 3319 + 3587 ], "image_url": [ 63 @@ -79029,10 +83975,10 @@ export default { 34 ], "tournament_id": [ - 3319 + 3587 ], "updated_at": [ - 2922 + 3190 ], "__typename": [ 63 @@ -79040,28 +83986,28 @@ export default { }, "tournament_trophy_configs_max_order_by": { "created_at": [ - 1736 + 2004 ], "custom_name": [ - 1736 + 2004 ], "id": [ - 1736 + 2004 ], "image_url": [ - 1736 + 2004 ], "placement": [ - 1736 + 2004 ], "silhouette": [ - 1736 + 2004 ], "tournament_id": [ - 1736 + 2004 ], "updated_at": [ - 1736 + 2004 ], "__typename": [ 63 @@ -79069,13 +84015,13 @@ export default { }, "tournament_trophy_configs_min_fields": { "created_at": [ - 2922 + 3190 ], "custom_name": [ 63 ], "id": [ - 3319 + 3587 ], "image_url": [ 63 @@ -79087,10 +84033,10 @@ export default { 34 ], "tournament_id": [ - 3319 + 3587 ], "updated_at": [ - 2922 + 3190 ], "__typename": [ 63 @@ -79098,28 +84044,28 @@ export default { }, "tournament_trophy_configs_min_order_by": { "created_at": [ - 1736 + 2004 ], "custom_name": [ - 1736 + 2004 ], "id": [ - 1736 + 2004 ], "image_url": [ - 1736 + 2004 ], "placement": [ - 1736 + 2004 ], "silhouette": [ - 1736 + 2004 ], "tournament_id": [ - 1736 + 2004 ], "updated_at": [ - 1736 + 2004 ], "__typename": [ 63 @@ -79130,7 +84076,7 @@ export default { 34 ], "returning": [ - 3231 + 3499 ], "__typename": [ 63 @@ -79138,10 +84084,10 @@ export default { }, "tournament_trophy_configs_obj_rel_insert_input": { "data": [ - 3243 + 3511 ], "on_conflict": [ - 3250 + 3518 ], "__typename": [ 63 @@ -79149,13 +84095,13 @@ export default { }, "tournament_trophy_configs_on_conflict": { "constraint": [ - 3241 + 3509 ], "update_columns": [ - 3265 + 3533 ], "where": [ - 3240 + 3508 ], "__typename": [ 63 @@ -79163,31 +84109,31 @@ export default { }, "tournament_trophy_configs_order_by": { "created_at": [ - 1736 + 2004 ], "custom_name": [ - 1736 + 2004 ], "id": [ - 1736 + 2004 ], "image_url": [ - 1736 + 2004 ], "placement": [ - 1736 + 2004 ], "silhouette": [ - 1736 + 2004 ], "tournament": [ - 3295 + 3563 ], "tournament_id": [ - 1736 + 2004 ], "updated_at": [ - 1736 + 2004 ], "__typename": [ 63 @@ -79195,7 +84141,7 @@ export default { }, "tournament_trophy_configs_pk_columns_input": { "id": [ - 3319 + 3587 ], "__typename": [ 63 @@ -79204,13 +84150,13 @@ export default { "tournament_trophy_configs_select_column": {}, "tournament_trophy_configs_set_input": { "created_at": [ - 2922 + 3190 ], "custom_name": [ 63 ], "id": [ - 3319 + 3587 ], "image_url": [ 63 @@ -79222,10 +84168,10 @@ export default { 34 ], "tournament_id": [ - 3319 + 3587 ], "updated_at": [ - 2922 + 3190 ], "__typename": [ 63 @@ -79244,10 +84190,10 @@ export default { }, "tournament_trophy_configs_stddev_order_by": { "placement": [ - 1736 + 2004 ], "silhouette": [ - 1736 + 2004 ], "__typename": [ 63 @@ -79266,10 +84212,10 @@ export default { }, "tournament_trophy_configs_stddev_pop_order_by": { "placement": [ - 1736 + 2004 ], "silhouette": [ - 1736 + 2004 ], "__typename": [ 63 @@ -79288,10 +84234,10 @@ export default { }, "tournament_trophy_configs_stddev_samp_order_by": { "placement": [ - 1736 + 2004 ], "silhouette": [ - 1736 + 2004 ], "__typename": [ 63 @@ -79299,7 +84245,7 @@ export default { }, "tournament_trophy_configs_stream_cursor_input": { "initial_value": [ - 3262 + 3530 ], "ordering": [ 216 @@ -79310,13 +84256,13 @@ export default { }, "tournament_trophy_configs_stream_cursor_value_input": { "created_at": [ - 2922 + 3190 ], "custom_name": [ 63 ], "id": [ - 3319 + 3587 ], "image_url": [ 63 @@ -79328,10 +84274,10 @@ export default { 34 ], "tournament_id": [ - 3319 + 3587 ], "updated_at": [ - 2922 + 3190 ], "__typename": [ 63 @@ -79350,10 +84296,10 @@ export default { }, "tournament_trophy_configs_sum_order_by": { "placement": [ - 1736 + 2004 ], "silhouette": [ - 1736 + 2004 ], "__typename": [ 63 @@ -79362,13 +84308,13 @@ export default { "tournament_trophy_configs_update_column": {}, "tournament_trophy_configs_updates": { "_inc": [ - 3242 + 3510 ], "_set": [ - 3254 + 3522 ], "where": [ - 3240 + 3508 ], "__typename": [ 63 @@ -79387,10 +84333,10 @@ export default { }, "tournament_trophy_configs_var_pop_order_by": { "placement": [ - 1736 + 2004 ], "silhouette": [ - 1736 + 2004 ], "__typename": [ 63 @@ -79409,10 +84355,10 @@ export default { }, "tournament_trophy_configs_var_samp_order_by": { "placement": [ - 1736 + 2004 ], "silhouette": [ - 1736 + 2004 ], "__typename": [ 63 @@ -79431,10 +84377,10 @@ export default { }, "tournament_trophy_configs_variance_order_by": { "placement": [ - 1736 + 2004 ], "silhouette": [ - 1736 + 2004 ], "__typename": [ 63 @@ -79442,7 +84388,7 @@ export default { }, "tournaments": { "admin": [ - 2603 + 2871 ], "auto_start": [ 3 @@ -79472,7 +84418,7 @@ export default { 3 ], "created_at": [ - 2922 + 3190 ], "description": [ 63 @@ -79529,13 +84475,13 @@ export default { 63 ], "e_tournament_status": [ - 714 + 955 ], "has_min_teams": [ 3 ], "id": [ - 3319 + 3587 ], "is_organizer": [ 3 @@ -79544,7 +84490,7 @@ export default { 3 ], "match_options_id": [ - 3319 + 3587 ], "max_players_per_lineup": [ 34 @@ -79556,16 +84502,16 @@ export default { 63 ], "options": [ - 1458 + 1699 ], "organizer_steam_id": [ 162 ], "organizers": [ - 2970, + 3238, { "distinct_on": [ - 2991, + 3259, "[tournament_organizers_select_column!]" ], "limit": [ @@ -79575,19 +84521,19 @@ export default { 34 ], "order_by": [ - 2989, + 3257, "[tournament_organizers_order_by!]" ], "where": [ - 2979 + 3247 ] } ], "organizers_aggregate": [ - 2971, + 3239, { "distinct_on": [ - 2991, + 3259, "[tournament_organizers_select_column!]" ], "limit": [ @@ -79597,19 +84543,19 @@ export default { 34 ], "order_by": [ - 2989, + 3257, "[tournament_organizers_order_by!]" ], "where": [ - 2979 + 3247 ] } ], "player_stats": [ - 3978, + 4246, { "distinct_on": [ - 4004, + 4272, "[v_tournament_player_stats_select_column!]" ], "limit": [ @@ -79619,19 +84565,19 @@ export default { 34 ], "order_by": [ - 4003, + 4271, "[v_tournament_player_stats_order_by!]" ], "where": [ - 3997 + 4265 ] } ], "player_stats_aggregate": [ - 3979, + 4247, { "distinct_on": [ - 4004, + 4272, "[v_tournament_player_stats_select_column!]" ], "limit": [ @@ -79641,19 +84587,19 @@ export default { 34 ], "order_by": [ - 4003, + 4271, "[v_tournament_player_stats_order_by!]" ], "where": [ - 3997 + 4265 ] } ], "results": [ - 3927, + 4195, { "distinct_on": [ - 3953, + 4221, "[v_team_tournament_results_select_column!]" ], "limit": [ @@ -79663,19 +84609,19 @@ export default { 34 ], "order_by": [ - 3952, + 4220, "[v_team_tournament_results_order_by!]" ], "where": [ - 3946 + 4214 ] } ], "results_aggregate": [ - 3928, + 4196, { "distinct_on": [ - 3953, + 4221, "[v_team_tournament_results_select_column!]" ], "limit": [ @@ -79685,19 +84631,19 @@ export default { 34 ], "order_by": [ - 3952, + 4220, "[v_team_tournament_results_order_by!]" ], "where": [ - 3946 + 4214 ] } ], "rosters": [ - 3103, + 3371, { "distinct_on": [ - 3124, + 3392, "[tournament_team_roster_select_column!]" ], "limit": [ @@ -79707,19 +84653,19 @@ export default { 34 ], "order_by": [ - 3122, + 3390, "[tournament_team_roster_order_by!]" ], "where": [ - 3112 + 3380 ] } ], "rosters_aggregate": [ - 3104, + 3372, { "distinct_on": [ - 3124, + 3392, "[tournament_team_roster_select_column!]" ], "limit": [ @@ -79729,19 +84675,19 @@ export default { 34 ], "order_by": [ - 3122, + 3390, "[tournament_team_roster_order_by!]" ], "where": [ - 3112 + 3380 ] } ], "stages": [ - 3011, + 3279, { "distinct_on": [ - 3040, + 3308, "[tournament_stages_select_column!]" ], "limit": [ @@ -79751,19 +84697,19 @@ export default { 34 ], "order_by": [ - 3037, + 3305, "[tournament_stages_order_by!]" ], "where": [ - 3023 + 3291 ] } ], "stages_aggregate": [ - 3012, + 3280, { "distinct_on": [ - 3040, + 3308, "[tournament_stages_select_column!]" ], "limit": [ @@ -79773,25 +84719,25 @@ export default { 34 ], "order_by": [ - 3037, + 3305, "[tournament_stages_order_by!]" ], "where": [ - 3023 + 3291 ] } ], "start": [ - 2922 + 3190 ], "status": [ - 719 + 960 ], "teams": [ - 3144, + 3412, { "distinct_on": [ - 3166, + 3434, "[tournament_teams_select_column!]" ], "limit": [ @@ -79801,19 +84747,19 @@ export default { 34 ], "order_by": [ - 3164, + 3432, "[tournament_teams_order_by!]" ], "where": [ - 3153 + 3421 ] } ], "teams_aggregate": [ - 3145, + 3413, { "distinct_on": [ - 3166, + 3434, "[tournament_teams_select_column!]" ], "limit": [ @@ -79823,19 +84769,19 @@ export default { 34 ], "order_by": [ - 3164, + 3432, "[tournament_teams_order_by!]" ], "where": [ - 3153 + 3421 ] } ], "trophies": [ - 3186, + 3454, { "distinct_on": [ - 3209, + 3477, "[tournament_trophies_select_column!]" ], "limit": [ @@ -79845,19 +84791,19 @@ export default { 34 ], "order_by": [ - 3207, + 3475, "[tournament_trophies_order_by!]" ], "where": [ - 3197 + 3465 ] } ], "trophies_aggregate": [ - 3187, + 3455, { "distinct_on": [ - 3209, + 3477, "[tournament_trophies_select_column!]" ], "limit": [ @@ -79867,11 +84813,11 @@ export default { 34 ], "order_by": [ - 3207, + 3475, "[tournament_trophies_order_by!]" ], "where": [ - 3197 + 3465 ] } ], @@ -79879,10 +84825,10 @@ export default { 3 ], "trophy_configs": [ - 3231, + 3499, { "distinct_on": [ - 3253, + 3521, "[tournament_trophy_configs_select_column!]" ], "limit": [ @@ -79892,19 +84838,19 @@ export default { 34 ], "order_by": [ - 3251, + 3519, "[tournament_trophy_configs_order_by!]" ], "where": [ - 3240 + 3508 ] } ], "trophy_configs_aggregate": [ - 3232, + 3500, { "distinct_on": [ - 3253, + 3521, "[tournament_trophy_configs_select_column!]" ], "limit": [ @@ -79914,11 +84860,11 @@ export default { 34 ], "order_by": [ - 3251, + 3519, "[tournament_trophy_configs_order_by!]" ], "where": [ - 3240 + 3508 ] } ], @@ -79928,10 +84874,10 @@ export default { }, "tournaments_aggregate": { "aggregate": [ - 3279 + 3547 ], "nodes": [ - 3273 + 3541 ], "__typename": [ 63 @@ -79939,13 +84885,13 @@ export default { }, "tournaments_aggregate_bool_exp": { "bool_and": [ - 3276 + 3544 ], "bool_or": [ - 3277 + 3545 ], "count": [ - 3278 + 3546 ], "__typename": [ 63 @@ -79953,13 +84899,13 @@ export default { }, "tournaments_aggregate_bool_exp_bool_and": { "arguments": [ - 3298 + 3566 ], "distinct": [ 3 ], "filter": [ - 3284 + 3552 ], "predicate": [ 4 @@ -79970,13 +84916,13 @@ export default { }, "tournaments_aggregate_bool_exp_bool_or": { "arguments": [ - 3299 + 3567 ], "distinct": [ 3 ], "filter": [ - 3284 + 3552 ], "predicate": [ 4 @@ -79987,13 +84933,13 @@ export default { }, "tournaments_aggregate_bool_exp_count": { "arguments": [ - 3297 + 3565 ], "distinct": [ 3 ], "filter": [ - 3284 + 3552 ], "predicate": [ 35 @@ -80004,13 +84950,13 @@ export default { }, "tournaments_aggregate_fields": { "avg": [ - 3282 + 3550 ], "count": [ 34, { "columns": [ - 3297, + 3565, "[tournaments_select_column!]" ], "distinct": [ @@ -80019,31 +84965,31 @@ export default { } ], "max": [ - 3288 + 3556 ], "min": [ - 3290 + 3558 ], "stddev": [ - 3301 + 3569 ], "stddev_pop": [ - 3303 + 3571 ], "stddev_samp": [ - 3305 + 3573 ], "sum": [ - 3309 + 3577 ], "var_pop": [ - 3313 + 3581 ], "var_samp": [ - 3315 + 3583 ], "variance": [ - 3317 + 3585 ], "__typename": [ 63 @@ -80051,37 +84997,37 @@ export default { }, "tournaments_aggregate_order_by": { "avg": [ - 3283 + 3551 ], "count": [ - 1736 + 2004 ], "max": [ - 3289 + 3557 ], "min": [ - 3291 + 3559 ], "stddev": [ - 3302 + 3570 ], "stddev_pop": [ - 3304 + 3572 ], "stddev_samp": [ - 3306 + 3574 ], "sum": [ - 3310 + 3578 ], "var_pop": [ - 3314 + 3582 ], "var_samp": [ - 3316 + 3584 ], "variance": [ - 3318 + 3586 ], "__typename": [ 63 @@ -80089,10 +85035,10 @@ export default { }, "tournaments_arr_rel_insert_input": { "data": [ - 3287 + 3555 ], "on_conflict": [ - 3294 + 3562 ], "__typename": [ 63 @@ -80114,7 +85060,7 @@ export default { }, "tournaments_avg_order_by": { "organizer_steam_id": [ - 1736 + 2004 ], "__typename": [ 63 @@ -80122,16 +85068,16 @@ export default { }, "tournaments_bool_exp": { "_and": [ - 3284 + 3552 ], "_not": [ - 3284 + 3552 ], "_or": [ - 3284 + 3552 ], "admin": [ - 2607 + 2875 ], "auto_start": [ 4 @@ -80161,7 +85107,7 @@ export default { 4 ], "created_at": [ - 2923 + 3191 ], "description": [ 65 @@ -80218,13 +85164,13 @@ export default { 65 ], "e_tournament_status": [ - 717 + 958 ], "has_min_teams": [ 4 ], "id": [ - 3320 + 3588 ], "is_organizer": [ 4 @@ -80233,7 +85179,7 @@ export default { 4 ], "match_options_id": [ - 3320 + 3588 ], "max_players_per_lineup": [ 35 @@ -80245,67 +85191,67 @@ export default { 65 ], "options": [ - 1462 + 1703 ], "organizer_steam_id": [ 163 ], "organizers": [ - 2979 + 3247 ], "organizers_aggregate": [ - 2972 + 3240 ], "player_stats": [ - 3997 + 4265 ], "player_stats_aggregate": [ - 3980 + 4248 ], "results": [ - 3946 + 4214 ], "results_aggregate": [ - 3929 + 4197 ], "rosters": [ - 3112 + 3380 ], "rosters_aggregate": [ - 3105 + 3373 ], "stages": [ - 3023 + 3291 ], "stages_aggregate": [ - 3013 + 3281 ], "start": [ - 2923 + 3191 ], "status": [ - 720 + 961 ], "teams": [ - 3153 + 3421 ], "teams_aggregate": [ - 3146 + 3414 ], "trophies": [ - 3197 + 3465 ], "trophies_aggregate": [ - 3188 + 3456 ], "trophies_enabled": [ 4 ], "trophy_configs": [ - 3240 + 3508 ], "trophy_configs_aggregate": [ - 3233 + 3501 ], "__typename": [ 63 @@ -80322,13 +85268,13 @@ export default { }, "tournaments_insert_input": { "admin": [ - 2614 + 2882 ], "auto_start": [ 3 ], "created_at": [ - 2922 + 3190 ], "description": [ 63 @@ -80385,55 +85331,55 @@ export default { 63 ], "e_tournament_status": [ - 725 + 966 ], "id": [ - 3319 + 3587 ], "match_options_id": [ - 3319 + 3587 ], "name": [ 63 ], "options": [ - 1469 + 1710 ], "organizer_steam_id": [ 162 ], "organizers": [ - 2976 + 3244 ], "player_stats": [ - 3994 + 4262 ], "results": [ - 3943 + 4211 ], "rosters": [ - 3109 + 3377 ], "stages": [ - 3020 + 3288 ], "start": [ - 2922 + 3190 ], "status": [ - 719 + 960 ], "teams": [ - 3150 + 3418 ], "trophies": [ - 3194 + 3462 ], "trophies_enabled": [ 3 ], "trophy_configs": [ - 3237 + 3505 ], "__typename": [ 63 @@ -80441,7 +85387,7 @@ export default { }, "tournaments_max_fields": { "created_at": [ - 2922 + 3190 ], "description": [ 63 @@ -80456,10 +85402,10 @@ export default { 63 ], "id": [ - 3319 + 3587 ], "match_options_id": [ - 3319 + 3587 ], "max_players_per_lineup": [ 34 @@ -80474,7 +85420,7 @@ export default { 162 ], "start": [ - 2922 + 3190 ], "__typename": [ 63 @@ -80482,34 +85428,34 @@ export default { }, "tournaments_max_order_by": { "created_at": [ - 1736 + 2004 ], "description": [ - 1736 + 2004 ], "discord_guild_id": [ - 1736 + 2004 ], "discord_role_id": [ - 1736 + 2004 ], "discord_webhook": [ - 1736 + 2004 ], "id": [ - 1736 + 2004 ], "match_options_id": [ - 1736 + 2004 ], "name": [ - 1736 + 2004 ], "organizer_steam_id": [ - 1736 + 2004 ], "start": [ - 1736 + 2004 ], "__typename": [ 63 @@ -80517,7 +85463,7 @@ export default { }, "tournaments_min_fields": { "created_at": [ - 2922 + 3190 ], "description": [ 63 @@ -80532,10 +85478,10 @@ export default { 63 ], "id": [ - 3319 + 3587 ], "match_options_id": [ - 3319 + 3587 ], "max_players_per_lineup": [ 34 @@ -80550,7 +85496,7 @@ export default { 162 ], "start": [ - 2922 + 3190 ], "__typename": [ 63 @@ -80558,34 +85504,34 @@ export default { }, "tournaments_min_order_by": { "created_at": [ - 1736 + 2004 ], "description": [ - 1736 + 2004 ], "discord_guild_id": [ - 1736 + 2004 ], "discord_role_id": [ - 1736 + 2004 ], "discord_webhook": [ - 1736 + 2004 ], "id": [ - 1736 + 2004 ], "match_options_id": [ - 1736 + 2004 ], "name": [ - 1736 + 2004 ], "organizer_steam_id": [ - 1736 + 2004 ], "start": [ - 1736 + 2004 ], "__typename": [ 63 @@ -80596,7 +85542,7 @@ export default { 34 ], "returning": [ - 3273 + 3541 ], "__typename": [ 63 @@ -80604,10 +85550,10 @@ export default { }, "tournaments_obj_rel_insert_input": { "data": [ - 3287 + 3555 ], "on_conflict": [ - 3294 + 3562 ], "__typename": [ 63 @@ -80615,13 +85561,13 @@ export default { }, "tournaments_on_conflict": { "constraint": [ - 3285 + 3553 ], "update_columns": [ - 3311 + 3579 ], "where": [ - 3284 + 3552 ], "__typename": [ 63 @@ -80629,157 +85575,157 @@ export default { }, "tournaments_order_by": { "admin": [ - 2616 + 2884 ], "auto_start": [ - 1736 + 2004 ], "can_cancel": [ - 1736 + 2004 ], "can_close_registration": [ - 1736 + 2004 ], "can_join": [ - 1736 + 2004 ], "can_open_registration": [ - 1736 + 2004 ], "can_pause": [ - 1736 + 2004 ], "can_resume": [ - 1736 + 2004 ], "can_setup": [ - 1736 + 2004 ], "can_start": [ - 1736 + 2004 ], "created_at": [ - 1736 + 2004 ], "description": [ - 1736 + 2004 ], "discord_guild_id": [ - 1736 + 2004 ], "discord_notifications_enabled": [ - 1736 + 2004 ], "discord_notify_Canceled": [ - 1736 + 2004 ], "discord_notify_Finished": [ - 1736 + 2004 ], "discord_notify_Forfeit": [ - 1736 + 2004 ], "discord_notify_Live": [ - 1736 + 2004 ], "discord_notify_MapPaused": [ - 1736 + 2004 ], "discord_notify_PickingPlayers": [ - 1736 + 2004 ], "discord_notify_Scheduled": [ - 1736 + 2004 ], "discord_notify_Surrendered": [ - 1736 + 2004 ], "discord_notify_Tie": [ - 1736 + 2004 ], "discord_notify_Veto": [ - 1736 + 2004 ], "discord_notify_WaitingForCheckIn": [ - 1736 + 2004 ], "discord_notify_WaitingForServer": [ - 1736 + 2004 ], "discord_role_id": [ - 1736 + 2004 ], "discord_voice_enabled": [ - 1736 + 2004 ], "discord_webhook": [ - 1736 + 2004 ], "e_tournament_status": [ - 727 + 968 ], "has_min_teams": [ - 1736 + 2004 ], "id": [ - 1736 + 2004 ], "is_organizer": [ - 1736 + 2004 ], "joined_tournament": [ - 1736 + 2004 ], "match_options_id": [ - 1736 + 2004 ], "max_players_per_lineup": [ - 1736 + 2004 ], "min_players_per_lineup": [ - 1736 + 2004 ], "name": [ - 1736 + 2004 ], "options": [ - 1471 + 1712 ], "organizer_steam_id": [ - 1736 + 2004 ], "organizers_aggregate": [ - 2975 + 3243 ], "player_stats_aggregate": [ - 3993 + 4261 ], "results_aggregate": [ - 3942 + 4210 ], "rosters_aggregate": [ - 3108 + 3376 ], "stages_aggregate": [ - 3018 + 3286 ], "start": [ - 1736 + 2004 ], "status": [ - 1736 + 2004 ], "teams_aggregate": [ - 3149 + 3417 ], "trophies_aggregate": [ - 3193 + 3461 ], "trophies_enabled": [ - 1736 + 2004 ], "trophy_configs_aggregate": [ - 3236 + 3504 ], "__typename": [ 63 @@ -80787,7 +85733,7 @@ export default { }, "tournaments_pk_columns_input": { "id": [ - 3319 + 3587 ], "__typename": [ 63 @@ -80801,7 +85747,7 @@ export default { 3 ], "created_at": [ - 2922 + 3190 ], "description": [ 63 @@ -80858,10 +85804,10 @@ export default { 63 ], "id": [ - 3319 + 3587 ], "match_options_id": [ - 3319 + 3587 ], "name": [ 63 @@ -80870,10 +85816,10 @@ export default { 162 ], "start": [ - 2922 + 3190 ], "status": [ - 719 + 960 ], "trophies_enabled": [ 3 @@ -80898,7 +85844,7 @@ export default { }, "tournaments_stddev_order_by": { "organizer_steam_id": [ - 1736 + 2004 ], "__typename": [ 63 @@ -80920,7 +85866,7 @@ export default { }, "tournaments_stddev_pop_order_by": { "organizer_steam_id": [ - 1736 + 2004 ], "__typename": [ 63 @@ -80942,7 +85888,7 @@ export default { }, "tournaments_stddev_samp_order_by": { "organizer_steam_id": [ - 1736 + 2004 ], "__typename": [ 63 @@ -80950,7 +85896,7 @@ export default { }, "tournaments_stream_cursor_input": { "initial_value": [ - 3308 + 3576 ], "ordering": [ 216 @@ -80964,7 +85910,7 @@ export default { 3 ], "created_at": [ - 2922 + 3190 ], "description": [ 63 @@ -81021,10 +85967,10 @@ export default { 63 ], "id": [ - 3319 + 3587 ], "match_options_id": [ - 3319 + 3587 ], "name": [ 63 @@ -81033,10 +85979,10 @@ export default { 162 ], "start": [ - 2922 + 3190 ], "status": [ - 719 + 960 ], "trophies_enabled": [ 3 @@ -81061,7 +86007,7 @@ export default { }, "tournaments_sum_order_by": { "organizer_steam_id": [ - 1736 + 2004 ], "__typename": [ 63 @@ -81070,13 +86016,13 @@ export default { "tournaments_update_column": {}, "tournaments_updates": { "_inc": [ - 3286 + 3554 ], "_set": [ - 3300 + 3568 ], "where": [ - 3284 + 3552 ], "__typename": [ 63 @@ -81098,7 +86044,7 @@ export default { }, "tournaments_var_pop_order_by": { "organizer_steam_id": [ - 1736 + 2004 ], "__typename": [ 63 @@ -81120,7 +86066,7 @@ export default { }, "tournaments_var_samp_order_by": { "organizer_steam_id": [ - 1736 + 2004 ], "__typename": [ 63 @@ -81142,7 +86088,7 @@ export default { }, "tournaments_variance_order_by": { "organizer_steam_id": [ - 1736 + 2004 ], "__typename": [ 63 @@ -81151,31 +86097,31 @@ export default { "uuid": {}, "uuid_comparison_exp": { "_eq": [ - 3319 + 3587 ], "_gt": [ - 3319 + 3587 ], "_gte": [ - 3319 + 3587 ], "_in": [ - 3319 + 3587 ], "_is_null": [ 3 ], "_lt": [ - 3319 + 3587 ], "_lte": [ - 3319 + 3587 ], "_neq": [ - 3319 + 3587 ], "_nin": [ - 3319 + 3587 ], "__typename": [ 63 @@ -81230,10 +86176,10 @@ export default { }, "v_gpu_pool_status_aggregate": { "aggregate": [ - 3323 + 3591 ], "nodes": [ - 3321 + 3589 ], "__typename": [ 63 @@ -81241,13 +86187,13 @@ export default { }, "v_gpu_pool_status_aggregate_fields": { "avg": [ - 3324 + 3592 ], "count": [ 34, { "columns": [ - 3329, + 3597, "[v_gpu_pool_status_select_column!]" ], "distinct": [ @@ -81256,31 +86202,31 @@ export default { } ], "max": [ - 3326 + 3594 ], "min": [ - 3327 + 3595 ], "stddev": [ - 3330 + 3598 ], "stddev_pop": [ - 3331 + 3599 ], "stddev_samp": [ - 3332 + 3600 ], "sum": [ - 3335 + 3603 ], "var_pop": [ - 3336 + 3604 ], "var_samp": [ - 3337 + 3605 ], "variance": [ - 3338 + 3606 ], "__typename": [ 63 @@ -81323,13 +86269,13 @@ export default { }, "v_gpu_pool_status_bool_exp": { "_and": [ - 3325 + 3593 ], "_not": [ - 3325 + 3593 ], "_or": [ - 3325 + 3593 ], "demo_free_gpu_nodes": [ 35 @@ -81449,46 +86395,46 @@ export default { }, "v_gpu_pool_status_order_by": { "demo_free_gpu_nodes": [ - 1736 + 2004 ], "demo_in_progress": [ - 1736 + 2004 ], "demo_total_gpu_nodes": [ - 1736 + 2004 ], "free_gpu_nodes": [ - 1736 + 2004 ], "free_gpu_nodes_for_batch": [ - 1736 + 2004 ], "highlights_in_progress": [ - 1736 + 2004 ], "id": [ - 1736 + 2004 ], "live_in_progress": [ - 1736 + 2004 ], "registered_gpu_nodes": [ - 1736 + 2004 ], "rendering_total_gpu_nodes": [ - 1736 + 2004 ], "renders_paused_for_active_match": [ - 1736 + 2004 ], "streaming_free_gpu_nodes": [ - 1736 + 2004 ], "streaming_total_gpu_nodes": [ - 1736 + 2004 ], "total_gpu_nodes": [ - 1736 + 2004 ], "__typename": [ 63 @@ -81602,7 +86548,7 @@ export default { }, "v_gpu_pool_status_stream_cursor_input": { "initial_value": [ - 3334 + 3602 ], "ordering": [ 216 @@ -81806,19 +86752,19 @@ export default { 63 ], "id": [ - 3319 + 3587 ], "lineup": [ - 1258 + 1499 ], "match_lineup_id": [ - 3319 + 3587 ], "placeholder_name": [ 63 ], "player": [ - 2603 + 2871 ], "steam_id": [ 162 @@ -81829,10 +86775,10 @@ export default { }, "v_match_captains_aggregate": { "aggregate": [ - 3341 + 3609 ], "nodes": [ - 3339 + 3607 ], "__typename": [ 63 @@ -81840,13 +86786,13 @@ export default { }, "v_match_captains_aggregate_fields": { "avg": [ - 3342 + 3610 ], "count": [ 34, { "columns": [ - 3351, + 3619, "[v_match_captains_select_column!]" ], "distinct": [ @@ -81855,31 +86801,31 @@ export default { } ], "max": [ - 3346 + 3614 ], "min": [ - 3347 + 3615 ], "stddev": [ - 3353 + 3621 ], "stddev_pop": [ - 3354 + 3622 ], "stddev_samp": [ - 3355 + 3623 ], "sum": [ - 3358 + 3626 ], "var_pop": [ - 3360 + 3628 ], "var_samp": [ - 3361 + 3629 ], "variance": [ - 3362 + 3630 ], "__typename": [ 63 @@ -81895,13 +86841,13 @@ export default { }, "v_match_captains_bool_exp": { "_and": [ - 3343 + 3611 ], "_not": [ - 3343 + 3611 ], "_or": [ - 3343 + 3611 ], "captain": [ 4 @@ -81910,19 +86856,19 @@ export default { 65 ], "id": [ - 3320 + 3588 ], "lineup": [ - 1267 + 1508 ], "match_lineup_id": [ - 3320 + 3588 ], "placeholder_name": [ 65 ], "player": [ - 2607 + 2875 ], "steam_id": [ 163 @@ -81947,19 +86893,19 @@ export default { 63 ], "id": [ - 3319 + 3587 ], "lineup": [ - 1276 + 1517 ], "match_lineup_id": [ - 3319 + 3587 ], "placeholder_name": [ 63 ], "player": [ - 2614 + 2882 ], "steam_id": [ 162 @@ -81973,10 +86919,10 @@ export default { 63 ], "id": [ - 3319 + 3587 ], "match_lineup_id": [ - 3319 + 3587 ], "placeholder_name": [ 63 @@ -81993,10 +86939,10 @@ export default { 63 ], "id": [ - 3319 + 3587 ], "match_lineup_id": [ - 3319 + 3587 ], "placeholder_name": [ 63 @@ -82013,7 +86959,7 @@ export default { 34 ], "returning": [ - 3339 + 3607 ], "__typename": [ 63 @@ -82021,7 +86967,7 @@ export default { }, "v_match_captains_obj_rel_insert_input": { "data": [ - 3345 + 3613 ], "__typename": [ 63 @@ -82029,28 +86975,28 @@ export default { }, "v_match_captains_order_by": { "captain": [ - 1736 + 2004 ], "discord_id": [ - 1736 + 2004 ], "id": [ - 1736 + 2004 ], "lineup": [ - 1278 + 1519 ], "match_lineup_id": [ - 1736 + 2004 ], "placeholder_name": [ - 1736 + 2004 ], "player": [ - 2616 + 2884 ], "steam_id": [ - 1736 + 2004 ], "__typename": [ 63 @@ -82065,10 +87011,10 @@ export default { 63 ], "id": [ - 3319 + 3587 ], "match_lineup_id": [ - 3319 + 3587 ], "placeholder_name": [ 63 @@ -82106,7 +87052,7 @@ export default { }, "v_match_captains_stream_cursor_input": { "initial_value": [ - 3357 + 3625 ], "ordering": [ 216 @@ -82123,10 +87069,10 @@ export default { 63 ], "id": [ - 3319 + 3587 ], "match_lineup_id": [ - 3319 + 3587 ], "placeholder_name": [ 63 @@ -82148,13 +87094,13 @@ export default { }, "v_match_captains_updates": { "_inc": [ - 3344 + 3612 ], "_set": [ - 3352 + 3620 ], "where": [ - 3343 + 3611 ], "__typename": [ 63 @@ -82189,7 +87135,7 @@ export default { 34 ], "clutcher": [ - 2603 + 2871 ], "clutcher_steam_id": [ 162 @@ -82198,22 +87144,22 @@ export default { 34 ], "match": [ - 1578 + 1819 ], "match_id": [ - 3319 + 3587 ], "match_lineup": [ - 1258 + 1499 ], "match_lineup_id": [ - 3319 + 3587 ], "match_map": [ - 1416 + 1657 ], "match_map_id": [ - 3319 + 3587 ], "outcome": [ 63 @@ -82230,10 +87176,10 @@ export default { }, "v_match_clutches_aggregate": { "aggregate": [ - 3367 + 3635 ], "nodes": [ - 3363 + 3631 ], "__typename": [ 63 @@ -82241,7 +87187,7 @@ export default { }, "v_match_clutches_aggregate_bool_exp": { "count": [ - 3366 + 3634 ], "__typename": [ 63 @@ -82249,13 +87195,13 @@ export default { }, "v_match_clutches_aggregate_bool_exp_count": { "arguments": [ - 3379 + 3647 ], "distinct": [ 3 ], "filter": [ - 3372 + 3640 ], "predicate": [ 35 @@ -82266,13 +87212,13 @@ export default { }, "v_match_clutches_aggregate_fields": { "avg": [ - 3370 + 3638 ], "count": [ 34, { "columns": [ - 3379, + 3647, "[v_match_clutches_select_column!]" ], "distinct": [ @@ -82281,31 +87227,31 @@ export default { } ], "max": [ - 3374 + 3642 ], "min": [ - 3376 + 3644 ], "stddev": [ - 3380 + 3648 ], "stddev_pop": [ - 3382 + 3650 ], "stddev_samp": [ - 3384 + 3652 ], "sum": [ - 3388 + 3656 ], "var_pop": [ - 3390 + 3658 ], "var_samp": [ - 3392 + 3660 ], "variance": [ - 3394 + 3662 ], "__typename": [ 63 @@ -82313,37 +87259,37 @@ export default { }, "v_match_clutches_aggregate_order_by": { "avg": [ - 3371 + 3639 ], "count": [ - 1736 + 2004 ], "max": [ - 3375 + 3643 ], "min": [ - 3377 + 3645 ], "stddev": [ - 3381 + 3649 ], "stddev_pop": [ - 3383 + 3651 ], "stddev_samp": [ - 3385 + 3653 ], "sum": [ - 3389 + 3657 ], "var_pop": [ - 3391 + 3659 ], "var_samp": [ - 3393 + 3661 ], "variance": [ - 3395 + 3663 ], "__typename": [ 63 @@ -82351,7 +87297,7 @@ export default { }, "v_match_clutches_arr_rel_insert_input": { "data": [ - 3373 + 3641 ], "__typename": [ 63 @@ -82376,16 +87322,16 @@ export default { }, "v_match_clutches_avg_order_by": { "against_count": [ - 1736 + 2004 ], "clutcher_steam_id": [ - 1736 + 2004 ], "kills_in_clutch": [ - 1736 + 2004 ], "round": [ - 1736 + 2004 ], "__typename": [ 63 @@ -82393,19 +87339,19 @@ export default { }, "v_match_clutches_bool_exp": { "_and": [ - 3372 + 3640 ], "_not": [ - 3372 + 3640 ], "_or": [ - 3372 + 3640 ], "against_count": [ 35 ], "clutcher": [ - 2607 + 2875 ], "clutcher_steam_id": [ 163 @@ -82414,22 +87360,22 @@ export default { 35 ], "match": [ - 1587 + 1828 ], "match_id": [ - 3320 + 3588 ], "match_lineup": [ - 1267 + 1508 ], "match_lineup_id": [ - 3320 + 3588 ], "match_map": [ - 1425 + 1666 ], "match_map_id": [ - 3320 + 3588 ], "outcome": [ 65 @@ -82449,7 +87395,7 @@ export default { 34 ], "clutcher": [ - 2614 + 2882 ], "clutcher_steam_id": [ 162 @@ -82458,22 +87404,22 @@ export default { 34 ], "match": [ - 1596 + 1837 ], "match_id": [ - 3319 + 3587 ], "match_lineup": [ - 1276 + 1517 ], "match_lineup_id": [ - 3319 + 3587 ], "match_map": [ - 1434 + 1675 ], "match_map_id": [ - 3319 + 3587 ], "outcome": [ 63 @@ -82499,13 +87445,13 @@ export default { 34 ], "match_id": [ - 3319 + 3587 ], "match_lineup_id": [ - 3319 + 3587 ], "match_map_id": [ - 3319 + 3587 ], "outcome": [ 63 @@ -82522,31 +87468,31 @@ export default { }, "v_match_clutches_max_order_by": { "against_count": [ - 1736 + 2004 ], "clutcher_steam_id": [ - 1736 + 2004 ], "kills_in_clutch": [ - 1736 + 2004 ], "match_id": [ - 1736 + 2004 ], "match_lineup_id": [ - 1736 + 2004 ], "match_map_id": [ - 1736 + 2004 ], "outcome": [ - 1736 + 2004 ], "round": [ - 1736 + 2004 ], "side": [ - 1736 + 2004 ], "__typename": [ 63 @@ -82563,13 +87509,13 @@ export default { 34 ], "match_id": [ - 3319 + 3587 ], "match_lineup_id": [ - 3319 + 3587 ], "match_map_id": [ - 3319 + 3587 ], "outcome": [ 63 @@ -82586,31 +87532,31 @@ export default { }, "v_match_clutches_min_order_by": { "against_count": [ - 1736 + 2004 ], "clutcher_steam_id": [ - 1736 + 2004 ], "kills_in_clutch": [ - 1736 + 2004 ], "match_id": [ - 1736 + 2004 ], "match_lineup_id": [ - 1736 + 2004 ], "match_map_id": [ - 1736 + 2004 ], "outcome": [ - 1736 + 2004 ], "round": [ - 1736 + 2004 ], "side": [ - 1736 + 2004 ], "__typename": [ 63 @@ -82618,43 +87564,43 @@ export default { }, "v_match_clutches_order_by": { "against_count": [ - 1736 + 2004 ], "clutcher": [ - 2616 + 2884 ], "clutcher_steam_id": [ - 1736 + 2004 ], "kills_in_clutch": [ - 1736 + 2004 ], "match": [ - 1598 + 1839 ], "match_id": [ - 1736 + 2004 ], "match_lineup": [ - 1278 + 1519 ], "match_lineup_id": [ - 1736 + 2004 ], "match_map": [ - 1436 + 1677 ], "match_map_id": [ - 1736 + 2004 ], "outcome": [ - 1736 + 2004 ], "round": [ - 1736 + 2004 ], "side": [ - 1736 + 2004 ], "__typename": [ 63 @@ -82680,16 +87626,16 @@ export default { }, "v_match_clutches_stddev_order_by": { "against_count": [ - 1736 + 2004 ], "clutcher_steam_id": [ - 1736 + 2004 ], "kills_in_clutch": [ - 1736 + 2004 ], "round": [ - 1736 + 2004 ], "__typename": [ 63 @@ -82714,16 +87660,16 @@ export default { }, "v_match_clutches_stddev_pop_order_by": { "against_count": [ - 1736 + 2004 ], "clutcher_steam_id": [ - 1736 + 2004 ], "kills_in_clutch": [ - 1736 + 2004 ], "round": [ - 1736 + 2004 ], "__typename": [ 63 @@ -82748,16 +87694,16 @@ export default { }, "v_match_clutches_stddev_samp_order_by": { "against_count": [ - 1736 + 2004 ], "clutcher_steam_id": [ - 1736 + 2004 ], "kills_in_clutch": [ - 1736 + 2004 ], "round": [ - 1736 + 2004 ], "__typename": [ 63 @@ -82765,7 +87711,7 @@ export default { }, "v_match_clutches_stream_cursor_input": { "initial_value": [ - 3387 + 3655 ], "ordering": [ 216 @@ -82785,13 +87731,13 @@ export default { 34 ], "match_id": [ - 3319 + 3587 ], "match_lineup_id": [ - 3319 + 3587 ], "match_map_id": [ - 3319 + 3587 ], "outcome": [ 63 @@ -82825,16 +87771,16 @@ export default { }, "v_match_clutches_sum_order_by": { "against_count": [ - 1736 + 2004 ], "clutcher_steam_id": [ - 1736 + 2004 ], "kills_in_clutch": [ - 1736 + 2004 ], "round": [ - 1736 + 2004 ], "__typename": [ 63 @@ -82859,16 +87805,16 @@ export default { }, "v_match_clutches_var_pop_order_by": { "against_count": [ - 1736 + 2004 ], "clutcher_steam_id": [ - 1736 + 2004 ], "kills_in_clutch": [ - 1736 + 2004 ], "round": [ - 1736 + 2004 ], "__typename": [ 63 @@ -82893,16 +87839,16 @@ export default { }, "v_match_clutches_var_samp_order_by": { "against_count": [ - 1736 + 2004 ], "clutcher_steam_id": [ - 1736 + 2004 ], "kills_in_clutch": [ - 1736 + 2004 ], "round": [ - 1736 + 2004 ], "__typename": [ 63 @@ -82927,16 +87873,16 @@ export default { }, "v_match_clutches_variance_order_by": { "against_count": [ - 1736 + 2004 ], "clutcher_steam_id": [ - 1736 + 2004 ], "kills_in_clutch": [ - 1736 + 2004 ], "round": [ - 1736 + 2004 ], "__typename": [ 63 @@ -82953,16 +87899,16 @@ export default { 34 ], "match": [ - 1578 + 1819 ], "match_id": [ - 3319 + 3587 ], "match_map": [ - 1416 + 1657 ], "match_map_id": [ - 3319 + 3587 ], "victim_side": [ 63 @@ -82979,10 +87925,10 @@ export default { }, "v_match_kill_pairs_aggregate": { "aggregate": [ - 3398 + 3666 ], "nodes": [ - 3396 + 3664 ], "__typename": [ 63 @@ -82990,13 +87936,13 @@ export default { }, "v_match_kill_pairs_aggregate_fields": { "avg": [ - 3399 + 3667 ], "count": [ 34, { "columns": [ - 3404, + 3672, "[v_match_kill_pairs_select_column!]" ], "distinct": [ @@ -83005,31 +87951,31 @@ export default { } ], "max": [ - 3401 + 3669 ], "min": [ - 3402 + 3670 ], "stddev": [ - 3405 + 3673 ], "stddev_pop": [ - 3406 + 3674 ], "stddev_samp": [ - 3407 + 3675 ], "sum": [ - 3410 + 3678 ], "var_pop": [ - 3411 + 3679 ], "var_samp": [ - 3412 + 3680 ], "variance": [ - 3413 + 3681 ], "__typename": [ 63 @@ -83051,13 +87997,13 @@ export default { }, "v_match_kill_pairs_bool_exp": { "_and": [ - 3400 + 3668 ], "_not": [ - 3400 + 3668 ], "_or": [ - 3400 + 3668 ], "killer_side": [ 65 @@ -83069,16 +88015,16 @@ export default { 35 ], "match": [ - 1587 + 1828 ], "match_id": [ - 3320 + 3588 ], "match_map": [ - 1425 + 1666 ], "match_map_id": [ - 3320 + 3588 ], "victim_side": [ 65 @@ -83104,10 +88050,10 @@ export default { 34 ], "match_id": [ - 3319 + 3587 ], "match_map_id": [ - 3319 + 3587 ], "victim_side": [ 63 @@ -83133,10 +88079,10 @@ export default { 34 ], "match_id": [ - 3319 + 3587 ], "match_map_id": [ - 3319 + 3587 ], "victim_side": [ 63 @@ -83153,34 +88099,34 @@ export default { }, "v_match_kill_pairs_order_by": { "killer_side": [ - 1736 + 2004 ], "killer_steam_id": [ - 1736 + 2004 ], "kills": [ - 1736 + 2004 ], "match": [ - 1598 + 1839 ], "match_id": [ - 1736 + 2004 ], "match_map": [ - 1436 + 1677 ], "match_map_id": [ - 1736 + 2004 ], "victim_side": [ - 1736 + 2004 ], "victim_steam_id": [ - 1736 + 2004 ], "weapon": [ - 1736 + 2004 ], "__typename": [ 63 @@ -83231,7 +88177,7 @@ export default { }, "v_match_kill_pairs_stream_cursor_input": { "initial_value": [ - 3409 + 3677 ], "ordering": [ 216 @@ -83251,10 +88197,10 @@ export default { 34 ], "match_id": [ - 3319 + 3587 ], "match_map_id": [ - 3319 + 3587 ], "victim_side": [ 63 @@ -83327,22 +88273,22 @@ export default { }, "v_match_lineup_buy_types": { "match": [ - 1578 + 1819 ], "match_id": [ - 3319 + 3587 ], "match_lineup": [ - 1258 + 1499 ], "match_lineup_id": [ - 3319 + 3587 ], "match_map": [ - 1416 + 1657 ], "match_map_id": [ - 3319 + 3587 ], "matchup": [ 63 @@ -83362,10 +88308,10 @@ export default { }, "v_match_lineup_buy_types_aggregate": { "aggregate": [ - 3416 + 3684 ], "nodes": [ - 3414 + 3682 ], "__typename": [ 63 @@ -83373,13 +88319,13 @@ export default { }, "v_match_lineup_buy_types_aggregate_fields": { "avg": [ - 3417 + 3685 ], "count": [ 34, { "columns": [ - 3422, + 3690, "[v_match_lineup_buy_types_select_column!]" ], "distinct": [ @@ -83388,31 +88334,31 @@ export default { } ], "max": [ - 3419 + 3687 ], "min": [ - 3420 + 3688 ], "stddev": [ - 3423 + 3691 ], "stddev_pop": [ - 3424 + 3692 ], "stddev_samp": [ - 3425 + 3693 ], "sum": [ - 3428 + 3696 ], "var_pop": [ - 3429 + 3697 ], "var_samp": [ - 3430 + 3698 ], "variance": [ - 3431 + 3699 ], "__typename": [ 63 @@ -83431,31 +88377,31 @@ export default { }, "v_match_lineup_buy_types_bool_exp": { "_and": [ - 3418 + 3686 ], "_not": [ - 3418 + 3686 ], "_or": [ - 3418 + 3686 ], "match": [ - 1587 + 1828 ], "match_id": [ - 3320 + 3588 ], "match_lineup": [ - 1267 + 1508 ], "match_lineup_id": [ - 3320 + 3588 ], "match_map": [ - 1425 + 1666 ], "match_map_id": [ - 3320 + 3588 ], "matchup": [ 65 @@ -83475,13 +88421,13 @@ export default { }, "v_match_lineup_buy_types_max_fields": { "match_id": [ - 3319 + 3587 ], "match_lineup_id": [ - 3319 + 3587 ], "match_map_id": [ - 3319 + 3587 ], "matchup": [ 63 @@ -83501,13 +88447,13 @@ export default { }, "v_match_lineup_buy_types_min_fields": { "match_id": [ - 3319 + 3587 ], "match_lineup_id": [ - 3319 + 3587 ], "match_map_id": [ - 3319 + 3587 ], "matchup": [ 63 @@ -83527,34 +88473,34 @@ export default { }, "v_match_lineup_buy_types_order_by": { "match": [ - 1598 + 1839 ], "match_id": [ - 1736 + 2004 ], "match_lineup": [ - 1278 + 1519 ], "match_lineup_id": [ - 1736 + 2004 ], "match_map": [ - 1436 + 1677 ], "match_map_id": [ - 1736 + 2004 ], "matchup": [ - 1736 + 2004 ], "rounds": [ - 1736 + 2004 ], "side": [ - 1736 + 2004 ], "wins": [ - 1736 + 2004 ], "__typename": [ 63 @@ -83596,7 +88542,7 @@ export default { }, "v_match_lineup_buy_types_stream_cursor_input": { "initial_value": [ - 3427 + 3695 ], "ordering": [ 216 @@ -83607,13 +88553,13 @@ export default { }, "v_match_lineup_buy_types_stream_cursor_value_input": { "match_id": [ - 3319 + 3587 ], "match_lineup_id": [ - 3319 + 3587 ], "match_map_id": [ - 3319 + 3587 ], "matchup": [ 63 @@ -83689,22 +88635,22 @@ export default { 34 ], "match": [ - 1578 + 1819 ], "match_id": [ - 3319 + 3587 ], "match_lineup": [ - 1258 + 1499 ], "match_lineup_id": [ - 3319 + 3587 ], "match_map": [ - 1416 + 1657 ], "match_map_id": [ - 3319 + 3587 ], "opening_attempts": [ 34 @@ -83745,10 +88691,10 @@ export default { }, "v_match_lineup_map_stats_aggregate": { "aggregate": [ - 3434 + 3702 ], "nodes": [ - 3432 + 3700 ], "__typename": [ 63 @@ -83756,13 +88702,13 @@ export default { }, "v_match_lineup_map_stats_aggregate_fields": { "avg": [ - 3435 + 3703 ], "count": [ 34, { "columns": [ - 3440, + 3708, "[v_match_lineup_map_stats_select_column!]" ], "distinct": [ @@ -83771,31 +88717,31 @@ export default { } ], "max": [ - 3437 + 3705 ], "min": [ - 3438 + 3706 ], "stddev": [ - 3441 + 3709 ], "stddev_pop": [ - 3442 + 3710 ], "stddev_samp": [ - 3443 + 3711 ], "sum": [ - 3446 + 3714 ], "var_pop": [ - 3447 + 3715 ], "var_samp": [ - 3448 + 3716 ], "variance": [ - 3449 + 3717 ], "__typename": [ 63 @@ -83850,13 +88796,13 @@ export default { }, "v_match_lineup_map_stats_bool_exp": { "_and": [ - 3436 + 3704 ], "_not": [ - 3436 + 3704 ], "_or": [ - 3436 + 3704 ], "man_adv_rounds": [ 35 @@ -83871,22 +88817,22 @@ export default { 35 ], "match": [ - 1587 + 1828 ], "match_id": [ - 3320 + 3588 ], "match_lineup": [ - 1267 + 1508 ], "match_lineup_id": [ - 3320 + 3588 ], "match_map": [ - 1425 + 1666 ], "match_map_id": [ - 3320 + 3588 ], "opening_attempts": [ 35 @@ -83939,13 +88885,13 @@ export default { 34 ], "match_id": [ - 3319 + 3587 ], "match_lineup_id": [ - 3319 + 3587 ], "match_map_id": [ - 3319 + 3587 ], "opening_attempts": [ 34 @@ -83998,13 +88944,13 @@ export default { 34 ], "match_id": [ - 3319 + 3587 ], "match_lineup_id": [ - 3319 + 3587 ], "match_map_id": [ - 3319 + 3587 ], "opening_attempts": [ 34 @@ -84045,67 +88991,67 @@ export default { }, "v_match_lineup_map_stats_order_by": { "man_adv_rounds": [ - 1736 + 2004 ], "man_adv_wins": [ - 1736 + 2004 ], "man_dis_rounds": [ - 1736 + 2004 ], "man_dis_wins": [ - 1736 + 2004 ], "match": [ - 1598 + 1839 ], "match_id": [ - 1736 + 2004 ], "match_lineup": [ - 1278 + 1519 ], "match_lineup_id": [ - 1736 + 2004 ], "match_map": [ - 1436 + 1677 ], "match_map_id": [ - 1736 + 2004 ], "opening_attempts": [ - 1736 + 2004 ], "opening_wins": [ - 1736 + 2004 ], "pistol_rounds": [ - 1736 + 2004 ], "pistol_wins": [ - 1736 + 2004 ], "round_wins": [ - 1736 + 2004 ], "rounds": [ - 1736 + 2004 ], "side": [ - 1736 + 2004 ], "won_buy_eco": [ - 1736 + 2004 ], "won_buy_force": [ - 1736 + 2004 ], "won_buy_full": [ - 1736 + 2004 ], "won_buy_pistol": [ - 1736 + 2004 ], "__typename": [ 63 @@ -84255,7 +89201,7 @@ export default { }, "v_match_lineup_map_stats_stream_cursor_input": { "initial_value": [ - 3445 + 3713 ], "ordering": [ 216 @@ -84278,13 +89224,13 @@ export default { 34 ], "match_id": [ - 3319 + 3587 ], "match_lineup_id": [ - 3319 + 3587 ], "match_map_id": [ - 3319 + 3587 ], "opening_attempts": [ 34 @@ -84516,7 +89462,7 @@ export default { 3 ], "match_map_id": [ - 3319 + 3587 ], "round": [ 34 @@ -84527,10 +89473,10 @@ export default { }, "v_match_map_backup_rounds_aggregate": { "aggregate": [ - 3452 + 3720 ], "nodes": [ - 3450 + 3718 ], "__typename": [ 63 @@ -84538,13 +89484,13 @@ export default { }, "v_match_map_backup_rounds_aggregate_fields": { "avg": [ - 3453 + 3721 ], "count": [ 34, { "columns": [ - 3461, + 3729, "[v_match_map_backup_rounds_select_column!]" ], "distinct": [ @@ -84553,31 +89499,31 @@ export default { } ], "max": [ - 3457 + 3725 ], "min": [ - 3458 + 3726 ], "stddev": [ - 3463 + 3731 ], "stddev_pop": [ - 3464 + 3732 ], "stddev_samp": [ - 3465 + 3733 ], "sum": [ - 3468 + 3736 ], "var_pop": [ - 3470 + 3738 ], "var_samp": [ - 3471 + 3739 ], "variance": [ - 3472 + 3740 ], "__typename": [ 63 @@ -84593,19 +89539,19 @@ export default { }, "v_match_map_backup_rounds_bool_exp": { "_and": [ - 3454 + 3722 ], "_not": [ - 3454 + 3722 ], "_or": [ - 3454 + 3722 ], "has_backup_file": [ 4 ], "match_map_id": [ - 3320 + 3588 ], "round": [ 35 @@ -84627,7 +89573,7 @@ export default { 3 ], "match_map_id": [ - 3319 + 3587 ], "round": [ 34 @@ -84638,7 +89584,7 @@ export default { }, "v_match_map_backup_rounds_max_fields": { "match_map_id": [ - 3319 + 3587 ], "round": [ 34 @@ -84649,7 +89595,7 @@ export default { }, "v_match_map_backup_rounds_min_fields": { "match_map_id": [ - 3319 + 3587 ], "round": [ 34 @@ -84663,7 +89609,7 @@ export default { 34 ], "returning": [ - 3450 + 3718 ], "__typename": [ 63 @@ -84671,13 +89617,13 @@ export default { }, "v_match_map_backup_rounds_order_by": { "has_backup_file": [ - 1736 + 2004 ], "match_map_id": [ - 1736 + 2004 ], "round": [ - 1736 + 2004 ], "__typename": [ 63 @@ -84689,7 +89635,7 @@ export default { 3 ], "match_map_id": [ - 3319 + 3587 ], "round": [ 34 @@ -84724,7 +89670,7 @@ export default { }, "v_match_map_backup_rounds_stream_cursor_input": { "initial_value": [ - 3467 + 3735 ], "ordering": [ 216 @@ -84738,7 +89684,7 @@ export default { 3 ], "match_map_id": [ - 3319 + 3587 ], "round": [ 34 @@ -84757,13 +89703,13 @@ export default { }, "v_match_map_backup_rounds_updates": { "_inc": [ - 3455 + 3723 ], "_set": [ - 3462 + 3730 ], "where": [ - 3454 + 3722 ], "__typename": [ 63 @@ -84801,28 +89747,28 @@ export default { 34 ], "match": [ - 1578 + 1819 ], "match_id": [ - 3319 + 3587 ], "match_lineup": [ - 1258 + 1499 ], "match_lineup_id": [ - 3319 + 3587 ], "match_map": [ - 1416 + 1657 ], "match_map_id": [ - 3319 + 3587 ], "matchup": [ 63 ], "player": [ - 2603 + 2871 ], "rounds": [ 34 @@ -84839,10 +89785,10 @@ export default { }, "v_match_player_buy_types_aggregate": { "aggregate": [ - 3475 + 3743 ], "nodes": [ - 3473 + 3741 ], "__typename": [ 63 @@ -84850,13 +89796,13 @@ export default { }, "v_match_player_buy_types_aggregate_fields": { "avg": [ - 3476 + 3744 ], "count": [ 34, { "columns": [ - 3481, + 3749, "[v_match_player_buy_types_select_column!]" ], "distinct": [ @@ -84865,31 +89811,31 @@ export default { } ], "max": [ - 3478 + 3746 ], "min": [ - 3479 + 3747 ], "stddev": [ - 3482 + 3750 ], "stddev_pop": [ - 3483 + 3751 ], "stddev_samp": [ - 3484 + 3752 ], "sum": [ - 3487 + 3755 ], "var_pop": [ - 3488 + 3756 ], "var_samp": [ - 3489 + 3757 ], "variance": [ - 3490 + 3758 ], "__typename": [ 63 @@ -84914,13 +89860,13 @@ export default { }, "v_match_player_buy_types_bool_exp": { "_and": [ - 3477 + 3745 ], "_not": [ - 3477 + 3745 ], "_or": [ - 3477 + 3745 ], "deaths": [ 35 @@ -84929,28 +89875,28 @@ export default { 35 ], "match": [ - 1587 + 1828 ], "match_id": [ - 3320 + 3588 ], "match_lineup": [ - 1267 + 1508 ], "match_lineup_id": [ - 3320 + 3588 ], "match_map": [ - 1425 + 1666 ], "match_map_id": [ - 3320 + 3588 ], "matchup": [ 65 ], "player": [ - 2607 + 2875 ], "rounds": [ 35 @@ -84973,13 +89919,13 @@ export default { 34 ], "match_id": [ - 3319 + 3587 ], "match_lineup_id": [ - 3319 + 3587 ], "match_map_id": [ - 3319 + 3587 ], "matchup": [ 63 @@ -85005,13 +89951,13 @@ export default { 34 ], "match_id": [ - 3319 + 3587 ], "match_lineup_id": [ - 3319 + 3587 ], "match_map_id": [ - 3319 + 3587 ], "matchup": [ 63 @@ -85031,43 +89977,43 @@ export default { }, "v_match_player_buy_types_order_by": { "deaths": [ - 1736 + 2004 ], "kills": [ - 1736 + 2004 ], "match": [ - 1598 + 1839 ], "match_id": [ - 1736 + 2004 ], "match_lineup": [ - 1278 + 1519 ], "match_lineup_id": [ - 1736 + 2004 ], "match_map": [ - 1436 + 1677 ], "match_map_id": [ - 1736 + 2004 ], "matchup": [ - 1736 + 2004 ], "player": [ - 2616 + 2884 ], "rounds": [ - 1736 + 2004 ], "side": [ - 1736 + 2004 ], "steam_id": [ - 1736 + 2004 ], "__typename": [ 63 @@ -85127,7 +90073,7 @@ export default { }, "v_match_player_buy_types_stream_cursor_input": { "initial_value": [ - 3486 + 3754 ], "ordering": [ 216 @@ -85144,13 +90090,13 @@ export default { 34 ], "match_id": [ - 3319 + 3587 ], "match_lineup_id": [ - 3319 + 3587 ], "match_map_id": [ - 3319 + 3587 ], "matchup": [ 63 @@ -85244,25 +90190,25 @@ export default { 34 ], "match": [ - 1578 + 1819 ], "match_id": [ - 3319 + 3587 ], "match_lineup": [ - 1258 + 1499 ], "match_lineup_id": [ - 3319 + 3587 ], "match_map": [ - 1416 + 1657 ], "match_map_id": [ - 3319 + 3587 ], "player": [ - 2603 + 2871 ], "side": [ 63 @@ -85282,10 +90228,10 @@ export default { }, "v_match_player_opening_duels_aggregate": { "aggregate": [ - 3495 + 3763 ], "nodes": [ - 3491 + 3759 ], "__typename": [ 63 @@ -85293,7 +90239,7 @@ export default { }, "v_match_player_opening_duels_aggregate_bool_exp": { "count": [ - 3494 + 3762 ], "__typename": [ 63 @@ -85301,13 +90247,13 @@ export default { }, "v_match_player_opening_duels_aggregate_bool_exp_count": { "arguments": [ - 3507 + 3775 ], "distinct": [ 3 ], "filter": [ - 3500 + 3768 ], "predicate": [ 35 @@ -85318,13 +90264,13 @@ export default { }, "v_match_player_opening_duels_aggregate_fields": { "avg": [ - 3498 + 3766 ], "count": [ 34, { "columns": [ - 3507, + 3775, "[v_match_player_opening_duels_select_column!]" ], "distinct": [ @@ -85333,31 +90279,31 @@ export default { } ], "max": [ - 3502 + 3770 ], "min": [ - 3504 + 3772 ], "stddev": [ - 3508 + 3776 ], "stddev_pop": [ - 3510 + 3778 ], "stddev_samp": [ - 3512 + 3780 ], "sum": [ - 3516 + 3784 ], "var_pop": [ - 3518 + 3786 ], "var_samp": [ - 3520 + 3788 ], "variance": [ - 3522 + 3790 ], "__typename": [ 63 @@ -85365,37 +90311,37 @@ export default { }, "v_match_player_opening_duels_aggregate_order_by": { "avg": [ - 3499 + 3767 ], "count": [ - 1736 + 2004 ], "max": [ - 3503 + 3771 ], "min": [ - 3505 + 3773 ], "stddev": [ - 3509 + 3777 ], "stddev_pop": [ - 3511 + 3779 ], "stddev_samp": [ - 3513 + 3781 ], "sum": [ - 3517 + 3785 ], "var_pop": [ - 3519 + 3787 ], "var_samp": [ - 3521 + 3789 ], "variance": [ - 3523 + 3791 ], "__typename": [ 63 @@ -85403,7 +90349,7 @@ export default { }, "v_match_player_opening_duels_arr_rel_insert_input": { "data": [ - 3501 + 3769 ], "__typename": [ 63 @@ -85431,19 +90377,19 @@ export default { }, "v_match_player_opening_duels_avg_order_by": { "attempts": [ - 1736 + 2004 ], "deaths": [ - 1736 + 2004 ], "steam_id": [ - 1736 + 2004 ], "traded_deaths": [ - 1736 + 2004 ], "wins": [ - 1736 + 2004 ], "__typename": [ 63 @@ -85451,13 +90397,13 @@ export default { }, "v_match_player_opening_duels_bool_exp": { "_and": [ - 3500 + 3768 ], "_not": [ - 3500 + 3768 ], "_or": [ - 3500 + 3768 ], "attempts": [ 35 @@ -85466,25 +90412,25 @@ export default { 35 ], "match": [ - 1587 + 1828 ], "match_id": [ - 3320 + 3588 ], "match_lineup": [ - 1267 + 1508 ], "match_lineup_id": [ - 3320 + 3588 ], "match_map": [ - 1425 + 1666 ], "match_map_id": [ - 3320 + 3588 ], "player": [ - 2607 + 2875 ], "side": [ 65 @@ -85510,25 +90456,25 @@ export default { 34 ], "match": [ - 1596 + 1837 ], "match_id": [ - 3319 + 3587 ], "match_lineup": [ - 1276 + 1517 ], "match_lineup_id": [ - 3319 + 3587 ], "match_map": [ - 1434 + 1675 ], "match_map_id": [ - 3319 + 3587 ], "player": [ - 2614 + 2882 ], "side": [ 63 @@ -85554,13 +90500,13 @@ export default { 34 ], "match_id": [ - 3319 + 3587 ], "match_lineup_id": [ - 3319 + 3587 ], "match_map_id": [ - 3319 + 3587 ], "side": [ 63 @@ -85580,31 +90526,31 @@ export default { }, "v_match_player_opening_duels_max_order_by": { "attempts": [ - 1736 + 2004 ], "deaths": [ - 1736 + 2004 ], "match_id": [ - 1736 + 2004 ], "match_lineup_id": [ - 1736 + 2004 ], "match_map_id": [ - 1736 + 2004 ], "side": [ - 1736 + 2004 ], "steam_id": [ - 1736 + 2004 ], "traded_deaths": [ - 1736 + 2004 ], "wins": [ - 1736 + 2004 ], "__typename": [ 63 @@ -85618,13 +90564,13 @@ export default { 34 ], "match_id": [ - 3319 + 3587 ], "match_lineup_id": [ - 3319 + 3587 ], "match_map_id": [ - 3319 + 3587 ], "side": [ 63 @@ -85644,31 +90590,31 @@ export default { }, "v_match_player_opening_duels_min_order_by": { "attempts": [ - 1736 + 2004 ], "deaths": [ - 1736 + 2004 ], "match_id": [ - 1736 + 2004 ], "match_lineup_id": [ - 1736 + 2004 ], "match_map_id": [ - 1736 + 2004 ], "side": [ - 1736 + 2004 ], "steam_id": [ - 1736 + 2004 ], "traded_deaths": [ - 1736 + 2004 ], "wins": [ - 1736 + 2004 ], "__typename": [ 63 @@ -85676,43 +90622,43 @@ export default { }, "v_match_player_opening_duels_order_by": { "attempts": [ - 1736 + 2004 ], "deaths": [ - 1736 + 2004 ], "match": [ - 1598 + 1839 ], "match_id": [ - 1736 + 2004 ], "match_lineup": [ - 1278 + 1519 ], "match_lineup_id": [ - 1736 + 2004 ], "match_map": [ - 1436 + 1677 ], "match_map_id": [ - 1736 + 2004 ], "player": [ - 2616 + 2884 ], "side": [ - 1736 + 2004 ], "steam_id": [ - 1736 + 2004 ], "traded_deaths": [ - 1736 + 2004 ], "wins": [ - 1736 + 2004 ], "__typename": [ 63 @@ -85741,19 +90687,19 @@ export default { }, "v_match_player_opening_duels_stddev_order_by": { "attempts": [ - 1736 + 2004 ], "deaths": [ - 1736 + 2004 ], "steam_id": [ - 1736 + 2004 ], "traded_deaths": [ - 1736 + 2004 ], "wins": [ - 1736 + 2004 ], "__typename": [ 63 @@ -85781,19 +90727,19 @@ export default { }, "v_match_player_opening_duels_stddev_pop_order_by": { "attempts": [ - 1736 + 2004 ], "deaths": [ - 1736 + 2004 ], "steam_id": [ - 1736 + 2004 ], "traded_deaths": [ - 1736 + 2004 ], "wins": [ - 1736 + 2004 ], "__typename": [ 63 @@ -85821,19 +90767,19 @@ export default { }, "v_match_player_opening_duels_stddev_samp_order_by": { "attempts": [ - 1736 + 2004 ], "deaths": [ - 1736 + 2004 ], "steam_id": [ - 1736 + 2004 ], "traded_deaths": [ - 1736 + 2004 ], "wins": [ - 1736 + 2004 ], "__typename": [ 63 @@ -85841,7 +90787,7 @@ export default { }, "v_match_player_opening_duels_stream_cursor_input": { "initial_value": [ - 3515 + 3783 ], "ordering": [ 216 @@ -85858,13 +90804,13 @@ export default { 34 ], "match_id": [ - 3319 + 3587 ], "match_lineup_id": [ - 3319 + 3587 ], "match_map_id": [ - 3319 + 3587 ], "side": [ 63 @@ -85904,19 +90850,19 @@ export default { }, "v_match_player_opening_duels_sum_order_by": { "attempts": [ - 1736 + 2004 ], "deaths": [ - 1736 + 2004 ], "steam_id": [ - 1736 + 2004 ], "traded_deaths": [ - 1736 + 2004 ], "wins": [ - 1736 + 2004 ], "__typename": [ 63 @@ -85944,19 +90890,19 @@ export default { }, "v_match_player_opening_duels_var_pop_order_by": { "attempts": [ - 1736 + 2004 ], "deaths": [ - 1736 + 2004 ], "steam_id": [ - 1736 + 2004 ], "traded_deaths": [ - 1736 + 2004 ], "wins": [ - 1736 + 2004 ], "__typename": [ 63 @@ -85984,19 +90930,19 @@ export default { }, "v_match_player_opening_duels_var_samp_order_by": { "attempts": [ - 1736 + 2004 ], "deaths": [ - 1736 + 2004 ], "steam_id": [ - 1736 + 2004 ], "traded_deaths": [ - 1736 + 2004 ], "wins": [ - 1736 + 2004 ], "__typename": [ 63 @@ -86024,19 +90970,19 @@ export default { }, "v_match_player_opening_duels_variance_order_by": { "attempts": [ - 1736 + 2004 ], "deaths": [ - 1736 + 2004 ], "steam_id": [ - 1736 + 2004 ], "traded_deaths": [ - 1736 + 2004 ], "wins": [ - 1736 + 2004 ], "__typename": [ 63 @@ -86050,10 +90996,10 @@ export default { 162 ], "nemsis": [ - 2603 + 2871 ], "player": [ - 2603 + 2871 ], "victim_id": [ 162 @@ -86064,10 +91010,10 @@ export default { }, "v_player_arch_nemesis_aggregate": { "aggregate": [ - 3526 + 3794 ], "nodes": [ - 3524 + 3792 ], "__typename": [ 63 @@ -86075,13 +91021,13 @@ export default { }, "v_player_arch_nemesis_aggregate_fields": { "avg": [ - 3527 + 3795 ], "count": [ 34, { "columns": [ - 3532, + 3800, "[v_player_arch_nemesis_select_column!]" ], "distinct": [ @@ -86090,31 +91036,31 @@ export default { } ], "max": [ - 3529 + 3797 ], "min": [ - 3530 + 3798 ], "stddev": [ - 3533 + 3801 ], "stddev_pop": [ - 3534 + 3802 ], "stddev_samp": [ - 3535 + 3803 ], "sum": [ - 3538 + 3806 ], "var_pop": [ - 3539 + 3807 ], "var_samp": [ - 3540 + 3808 ], "variance": [ - 3541 + 3809 ], "__typename": [ 63 @@ -86136,13 +91082,13 @@ export default { }, "v_player_arch_nemesis_bool_exp": { "_and": [ - 3528 + 3796 ], "_not": [ - 3528 + 3796 ], "_or": [ - 3528 + 3796 ], "attacker_id": [ 163 @@ -86151,10 +91097,10 @@ export default { 163 ], "nemsis": [ - 2607 + 2875 ], "player": [ - 2607 + 2875 ], "victim_id": [ 163 @@ -86193,19 +91139,19 @@ export default { }, "v_player_arch_nemesis_order_by": { "attacker_id": [ - 1736 + 2004 ], "kill_count": [ - 1736 + 2004 ], "nemsis": [ - 2616 + 2884 ], "player": [ - 2616 + 2884 ], "victim_id": [ - 1736 + 2004 ], "__typename": [ 63 @@ -86256,7 +91202,7 @@ export default { }, "v_player_arch_nemesis_stream_cursor_input": { "initial_value": [ - 3537 + 3805 ], "ordering": [ 216 @@ -86340,7 +91286,7 @@ export default { 162 ], "player": [ - 2603 + 2871 ], "player_steam_id": [ 162 @@ -86357,10 +91303,10 @@ export default { }, "v_player_damage_aggregate": { "aggregate": [ - 3544 + 3812 ], "nodes": [ - 3542 + 3810 ], "__typename": [ 63 @@ -86368,13 +91314,13 @@ export default { }, "v_player_damage_aggregate_fields": { "avg": [ - 3545 + 3813 ], "count": [ 34, { "columns": [ - 3550, + 3818, "[v_player_damage_select_column!]" ], "distinct": [ @@ -86383,31 +91329,31 @@ export default { } ], "max": [ - 3547 + 3815 ], "min": [ - 3548 + 3816 ], "stddev": [ - 3551 + 3819 ], "stddev_pop": [ - 3552 + 3820 ], "stddev_samp": [ - 3553 + 3821 ], "sum": [ - 3556 + 3824 ], "var_pop": [ - 3557 + 3825 ], "var_samp": [ - 3558 + 3826 ], "variance": [ - 3559 + 3827 ], "__typename": [ 63 @@ -86432,19 +91378,19 @@ export default { }, "v_player_damage_bool_exp": { "_and": [ - 3546 + 3814 ], "_not": [ - 3546 + 3814 ], "_or": [ - 3546 + 3814 ], "avg_damage_per_round": [ 163 ], "player": [ - 2607 + 2875 ], "player_steam_id": [ 163 @@ -86495,19 +91441,19 @@ export default { }, "v_player_damage_order_by": { "avg_damage_per_round": [ - 1736 + 2004 ], "player": [ - 2616 + 2884 ], "player_steam_id": [ - 1736 + 2004 ], "total_damage": [ - 1736 + 2004 ], "total_rounds": [ - 1736 + 2004 ], "__typename": [ 63 @@ -86567,7 +91513,7 @@ export default { }, "v_player_damage_stream_cursor_input": { "initial_value": [ - 3555 + 3823 ], "ordering": [ 216 @@ -86663,7 +91609,7 @@ export default { }, "v_player_elo": { "actual_score": [ - 795 + 1036 ], "assists": [ 34 @@ -86675,7 +91621,7 @@ export default { 34 ], "damage_percent": [ - 795 + 1036 ], "deaths": [ 34 @@ -86684,16 +91630,16 @@ export default { 34 ], "expected_score": [ - 795 + 1036 ], "impact": [ - 795 + 1036 ], "k_factor": [ 34 ], "kda": [ - 795 + 1036 ], "kills": [ 34 @@ -86705,22 +91651,22 @@ export default { 34 ], "match": [ - 1578 + 1819 ], "match_created_at": [ - 2922 + 3190 ], "match_id": [ - 3319 + 3587 ], "match_result": [ 63 ], "opponent_team_elo_avg": [ - 795 + 1036 ], "performance_multiplier": [ - 795 + 1036 ], "player_name": [ 63 @@ -86729,13 +91675,13 @@ export default { 162 ], "player_team_elo_avg": [ - 795 + 1036 ], "series_multiplier": [ 34 ], "team_avg_kda": [ - 795 + 1036 ], "type": [ 63 @@ -86749,10 +91695,10 @@ export default { }, "v_player_elo_aggregate": { "aggregate": [ - 3574 + 3842 ], "nodes": [ - 3560 + 3828 ], "__typename": [ 63 @@ -86760,31 +91706,31 @@ export default { }, "v_player_elo_aggregate_bool_exp": { "avg": [ - 3563 + 3831 ], "corr": [ - 3564 + 3832 ], "count": [ - 3566 + 3834 ], "covar_samp": [ - 3567 + 3835 ], "max": [ - 3569 + 3837 ], "min": [ - 3570 + 3838 ], "stddev_samp": [ - 3571 + 3839 ], "sum": [ - 3572 + 3840 ], "var_samp": [ - 3573 + 3841 ], "__typename": [ 63 @@ -86792,16 +91738,16 @@ export default { }, "v_player_elo_aggregate_bool_exp_avg": { "arguments": [ - 3587 + 3855 ], "distinct": [ 3 ], "filter": [ - 3579 + 3847 ], "predicate": [ - 796 + 1037 ], "__typename": [ 63 @@ -86809,16 +91755,16 @@ export default { }, "v_player_elo_aggregate_bool_exp_corr": { "arguments": [ - 3565 + 3833 ], "distinct": [ 3 ], "filter": [ - 3579 + 3847 ], "predicate": [ - 796 + 1037 ], "__typename": [ 63 @@ -86826,10 +91772,10 @@ export default { }, "v_player_elo_aggregate_bool_exp_corr_arguments": { "X": [ - 3588 + 3856 ], "Y": [ - 3588 + 3856 ], "__typename": [ 63 @@ -86837,13 +91783,13 @@ export default { }, "v_player_elo_aggregate_bool_exp_count": { "arguments": [ - 3586 + 3854 ], "distinct": [ 3 ], "filter": [ - 3579 + 3847 ], "predicate": [ 35 @@ -86854,16 +91800,16 @@ export default { }, "v_player_elo_aggregate_bool_exp_covar_samp": { "arguments": [ - 3568 + 3836 ], "distinct": [ 3 ], "filter": [ - 3579 + 3847 ], "predicate": [ - 796 + 1037 ], "__typename": [ 63 @@ -86871,10 +91817,10 @@ export default { }, "v_player_elo_aggregate_bool_exp_covar_samp_arguments": { "X": [ - 3589 + 3857 ], "Y": [ - 3589 + 3857 ], "__typename": [ 63 @@ -86882,16 +91828,16 @@ export default { }, "v_player_elo_aggregate_bool_exp_max": { "arguments": [ - 3590 + 3858 ], "distinct": [ 3 ], "filter": [ - 3579 + 3847 ], "predicate": [ - 796 + 1037 ], "__typename": [ 63 @@ -86899,16 +91845,16 @@ export default { }, "v_player_elo_aggregate_bool_exp_min": { "arguments": [ - 3591 + 3859 ], "distinct": [ 3 ], "filter": [ - 3579 + 3847 ], "predicate": [ - 796 + 1037 ], "__typename": [ 63 @@ -86916,16 +91862,16 @@ export default { }, "v_player_elo_aggregate_bool_exp_stddev_samp": { "arguments": [ - 3592 + 3860 ], "distinct": [ 3 ], "filter": [ - 3579 + 3847 ], "predicate": [ - 796 + 1037 ], "__typename": [ 63 @@ -86933,16 +91879,16 @@ export default { }, "v_player_elo_aggregate_bool_exp_sum": { "arguments": [ - 3593 + 3861 ], "distinct": [ 3 ], "filter": [ - 3579 + 3847 ], "predicate": [ - 796 + 1037 ], "__typename": [ 63 @@ -86950,16 +91896,16 @@ export default { }, "v_player_elo_aggregate_bool_exp_var_samp": { "arguments": [ - 3594 + 3862 ], "distinct": [ 3 ], "filter": [ - 3579 + 3847 ], "predicate": [ - 796 + 1037 ], "__typename": [ 63 @@ -86967,13 +91913,13 @@ export default { }, "v_player_elo_aggregate_fields": { "avg": [ - 3577 + 3845 ], "count": [ 34, { "columns": [ - 3586, + 3854, "[v_player_elo_select_column!]" ], "distinct": [ @@ -86982,31 +91928,31 @@ export default { } ], "max": [ - 3581 + 3849 ], "min": [ - 3583 + 3851 ], "stddev": [ - 3595 + 3863 ], "stddev_pop": [ - 3597 + 3865 ], "stddev_samp": [ - 3599 + 3867 ], "sum": [ - 3603 + 3871 ], "var_pop": [ - 3605 + 3873 ], "var_samp": [ - 3607 + 3875 ], "variance": [ - 3609 + 3877 ], "__typename": [ 63 @@ -87014,37 +91960,37 @@ export default { }, "v_player_elo_aggregate_order_by": { "avg": [ - 3578 + 3846 ], "count": [ - 1736 + 2004 ], "max": [ - 3582 + 3850 ], "min": [ - 3584 + 3852 ], "stddev": [ - 3596 + 3864 ], "stddev_pop": [ - 3598 + 3866 ], "stddev_samp": [ - 3600 + 3868 ], "sum": [ - 3604 + 3872 ], "var_pop": [ - 3606 + 3874 ], "var_samp": [ - 3608 + 3876 ], "variance": [ - 3610 + 3878 ], "__typename": [ 63 @@ -87052,7 +91998,7 @@ export default { }, "v_player_elo_arr_rel_insert_input": { "data": [ - 3580 + 3848 ], "__typename": [ 63 @@ -87128,67 +92074,67 @@ export default { }, "v_player_elo_avg_order_by": { "actual_score": [ - 1736 + 2004 ], "assists": [ - 1736 + 2004 ], "current_elo": [ - 1736 + 2004 ], "damage": [ - 1736 + 2004 ], "damage_percent": [ - 1736 + 2004 ], "deaths": [ - 1736 + 2004 ], "elo_change": [ - 1736 + 2004 ], "expected_score": [ - 1736 + 2004 ], "impact": [ - 1736 + 2004 ], "k_factor": [ - 1736 + 2004 ], "kda": [ - 1736 + 2004 ], "kills": [ - 1736 + 2004 ], "map_losses": [ - 1736 + 2004 ], "map_wins": [ - 1736 + 2004 ], "opponent_team_elo_avg": [ - 1736 + 2004 ], "performance_multiplier": [ - 1736 + 2004 ], "player_steam_id": [ - 1736 + 2004 ], "player_team_elo_avg": [ - 1736 + 2004 ], "series_multiplier": [ - 1736 + 2004 ], "team_avg_kda": [ - 1736 + 2004 ], "updated_elo": [ - 1736 + 2004 ], "__typename": [ 63 @@ -87196,16 +92142,16 @@ export default { }, "v_player_elo_bool_exp": { "_and": [ - 3579 + 3847 ], "_not": [ - 3579 + 3847 ], "_or": [ - 3579 + 3847 ], "actual_score": [ - 796 + 1037 ], "assists": [ 35 @@ -87217,7 +92163,7 @@ export default { 35 ], "damage_percent": [ - 796 + 1037 ], "deaths": [ 35 @@ -87226,16 +92172,16 @@ export default { 35 ], "expected_score": [ - 796 + 1037 ], "impact": [ - 796 + 1037 ], "k_factor": [ 35 ], "kda": [ - 796 + 1037 ], "kills": [ 35 @@ -87247,22 +92193,22 @@ export default { 35 ], "match": [ - 1587 + 1828 ], "match_created_at": [ - 2923 + 3191 ], "match_id": [ - 3320 + 3588 ], "match_result": [ 65 ], "opponent_team_elo_avg": [ - 796 + 1037 ], "performance_multiplier": [ - 796 + 1037 ], "player_name": [ 65 @@ -87271,13 +92217,13 @@ export default { 163 ], "player_team_elo_avg": [ - 796 + 1037 ], "series_multiplier": [ 35 ], "team_avg_kda": [ - 796 + 1037 ], "type": [ 65 @@ -87291,7 +92237,7 @@ export default { }, "v_player_elo_insert_input": { "actual_score": [ - 795 + 1036 ], "assists": [ 34 @@ -87303,7 +92249,7 @@ export default { 34 ], "damage_percent": [ - 795 + 1036 ], "deaths": [ 34 @@ -87312,16 +92258,16 @@ export default { 34 ], "expected_score": [ - 795 + 1036 ], "impact": [ - 795 + 1036 ], "k_factor": [ 34 ], "kda": [ - 795 + 1036 ], "kills": [ 34 @@ -87333,22 +92279,22 @@ export default { 34 ], "match": [ - 1596 + 1837 ], "match_created_at": [ - 2922 + 3190 ], "match_id": [ - 3319 + 3587 ], "match_result": [ 63 ], "opponent_team_elo_avg": [ - 795 + 1036 ], "performance_multiplier": [ - 795 + 1036 ], "player_name": [ 63 @@ -87357,13 +92303,13 @@ export default { 162 ], "player_team_elo_avg": [ - 795 + 1036 ], "series_multiplier": [ 34 ], "team_avg_kda": [ - 795 + 1036 ], "type": [ 63 @@ -87377,7 +92323,7 @@ export default { }, "v_player_elo_max_fields": { "actual_score": [ - 795 + 1036 ], "assists": [ 34 @@ -87389,7 +92335,7 @@ export default { 34 ], "damage_percent": [ - 795 + 1036 ], "deaths": [ 34 @@ -87398,16 +92344,16 @@ export default { 34 ], "expected_score": [ - 795 + 1036 ], "impact": [ - 795 + 1036 ], "k_factor": [ 34 ], "kda": [ - 795 + 1036 ], "kills": [ 34 @@ -87419,19 +92365,19 @@ export default { 34 ], "match_created_at": [ - 2922 + 3190 ], "match_id": [ - 3319 + 3587 ], "match_result": [ 63 ], "opponent_team_elo_avg": [ - 795 + 1036 ], "performance_multiplier": [ - 795 + 1036 ], "player_name": [ 63 @@ -87440,13 +92386,13 @@ export default { 162 ], "player_team_elo_avg": [ - 795 + 1036 ], "series_multiplier": [ 34 ], "team_avg_kda": [ - 795 + 1036 ], "type": [ 63 @@ -87460,82 +92406,82 @@ export default { }, "v_player_elo_max_order_by": { "actual_score": [ - 1736 + 2004 ], "assists": [ - 1736 + 2004 ], "current_elo": [ - 1736 + 2004 ], "damage": [ - 1736 + 2004 ], "damage_percent": [ - 1736 + 2004 ], "deaths": [ - 1736 + 2004 ], "elo_change": [ - 1736 + 2004 ], "expected_score": [ - 1736 + 2004 ], "impact": [ - 1736 + 2004 ], "k_factor": [ - 1736 + 2004 ], "kda": [ - 1736 + 2004 ], "kills": [ - 1736 + 2004 ], "map_losses": [ - 1736 + 2004 ], "map_wins": [ - 1736 + 2004 ], "match_created_at": [ - 1736 + 2004 ], "match_id": [ - 1736 + 2004 ], "match_result": [ - 1736 + 2004 ], "opponent_team_elo_avg": [ - 1736 + 2004 ], "performance_multiplier": [ - 1736 + 2004 ], "player_name": [ - 1736 + 2004 ], "player_steam_id": [ - 1736 + 2004 ], "player_team_elo_avg": [ - 1736 + 2004 ], "series_multiplier": [ - 1736 + 2004 ], "team_avg_kda": [ - 1736 + 2004 ], "type": [ - 1736 + 2004 ], "updated_elo": [ - 1736 + 2004 ], "__typename": [ 63 @@ -87543,7 +92489,7 @@ export default { }, "v_player_elo_min_fields": { "actual_score": [ - 795 + 1036 ], "assists": [ 34 @@ -87555,7 +92501,7 @@ export default { 34 ], "damage_percent": [ - 795 + 1036 ], "deaths": [ 34 @@ -87564,16 +92510,16 @@ export default { 34 ], "expected_score": [ - 795 + 1036 ], "impact": [ - 795 + 1036 ], "k_factor": [ 34 ], "kda": [ - 795 + 1036 ], "kills": [ 34 @@ -87585,19 +92531,19 @@ export default { 34 ], "match_created_at": [ - 2922 + 3190 ], "match_id": [ - 3319 + 3587 ], "match_result": [ 63 ], "opponent_team_elo_avg": [ - 795 + 1036 ], "performance_multiplier": [ - 795 + 1036 ], "player_name": [ 63 @@ -87606,13 +92552,13 @@ export default { 162 ], "player_team_elo_avg": [ - 795 + 1036 ], "series_multiplier": [ 34 ], "team_avg_kda": [ - 795 + 1036 ], "type": [ 63 @@ -87626,82 +92572,82 @@ export default { }, "v_player_elo_min_order_by": { "actual_score": [ - 1736 + 2004 ], "assists": [ - 1736 + 2004 ], "current_elo": [ - 1736 + 2004 ], "damage": [ - 1736 + 2004 ], "damage_percent": [ - 1736 + 2004 ], "deaths": [ - 1736 + 2004 ], "elo_change": [ - 1736 + 2004 ], "expected_score": [ - 1736 + 2004 ], "impact": [ - 1736 + 2004 ], "k_factor": [ - 1736 + 2004 ], "kda": [ - 1736 + 2004 ], "kills": [ - 1736 + 2004 ], "map_losses": [ - 1736 + 2004 ], "map_wins": [ - 1736 + 2004 ], "match_created_at": [ - 1736 + 2004 ], "match_id": [ - 1736 + 2004 ], "match_result": [ - 1736 + 2004 ], "opponent_team_elo_avg": [ - 1736 + 2004 ], "performance_multiplier": [ - 1736 + 2004 ], "player_name": [ - 1736 + 2004 ], "player_steam_id": [ - 1736 + 2004 ], "player_team_elo_avg": [ - 1736 + 2004 ], "series_multiplier": [ - 1736 + 2004 ], "team_avg_kda": [ - 1736 + 2004 ], "type": [ - 1736 + 2004 ], "updated_elo": [ - 1736 + 2004 ], "__typename": [ 63 @@ -87709,85 +92655,85 @@ export default { }, "v_player_elo_order_by": { "actual_score": [ - 1736 + 2004 ], "assists": [ - 1736 + 2004 ], "current_elo": [ - 1736 + 2004 ], "damage": [ - 1736 + 2004 ], "damage_percent": [ - 1736 + 2004 ], "deaths": [ - 1736 + 2004 ], "elo_change": [ - 1736 + 2004 ], "expected_score": [ - 1736 + 2004 ], "impact": [ - 1736 + 2004 ], "k_factor": [ - 1736 + 2004 ], "kda": [ - 1736 + 2004 ], "kills": [ - 1736 + 2004 ], "map_losses": [ - 1736 + 2004 ], "map_wins": [ - 1736 + 2004 ], "match": [ - 1598 + 1839 ], "match_created_at": [ - 1736 + 2004 ], "match_id": [ - 1736 + 2004 ], "match_result": [ - 1736 + 2004 ], "opponent_team_elo_avg": [ - 1736 + 2004 ], "performance_multiplier": [ - 1736 + 2004 ], "player_name": [ - 1736 + 2004 ], "player_steam_id": [ - 1736 + 2004 ], "player_team_elo_avg": [ - 1736 + 2004 ], "series_multiplier": [ - 1736 + 2004 ], "team_avg_kda": [ - 1736 + 2004 ], "type": [ - 1736 + 2004 ], "updated_elo": [ - 1736 + 2004 ], "__typename": [ 63 @@ -87872,67 +92818,67 @@ export default { }, "v_player_elo_stddev_order_by": { "actual_score": [ - 1736 + 2004 ], "assists": [ - 1736 + 2004 ], "current_elo": [ - 1736 + 2004 ], "damage": [ - 1736 + 2004 ], "damage_percent": [ - 1736 + 2004 ], "deaths": [ - 1736 + 2004 ], "elo_change": [ - 1736 + 2004 ], "expected_score": [ - 1736 + 2004 ], "impact": [ - 1736 + 2004 ], "k_factor": [ - 1736 + 2004 ], "kda": [ - 1736 + 2004 ], "kills": [ - 1736 + 2004 ], "map_losses": [ - 1736 + 2004 ], "map_wins": [ - 1736 + 2004 ], "opponent_team_elo_avg": [ - 1736 + 2004 ], "performance_multiplier": [ - 1736 + 2004 ], "player_steam_id": [ - 1736 + 2004 ], "player_team_elo_avg": [ - 1736 + 2004 ], "series_multiplier": [ - 1736 + 2004 ], "team_avg_kda": [ - 1736 + 2004 ], "updated_elo": [ - 1736 + 2004 ], "__typename": [ 63 @@ -88008,67 +92954,67 @@ export default { }, "v_player_elo_stddev_pop_order_by": { "actual_score": [ - 1736 + 2004 ], "assists": [ - 1736 + 2004 ], "current_elo": [ - 1736 + 2004 ], "damage": [ - 1736 + 2004 ], "damage_percent": [ - 1736 + 2004 ], "deaths": [ - 1736 + 2004 ], "elo_change": [ - 1736 + 2004 ], "expected_score": [ - 1736 + 2004 ], "impact": [ - 1736 + 2004 ], "k_factor": [ - 1736 + 2004 ], "kda": [ - 1736 + 2004 ], "kills": [ - 1736 + 2004 ], "map_losses": [ - 1736 + 2004 ], "map_wins": [ - 1736 + 2004 ], "opponent_team_elo_avg": [ - 1736 + 2004 ], "performance_multiplier": [ - 1736 + 2004 ], "player_steam_id": [ - 1736 + 2004 ], "player_team_elo_avg": [ - 1736 + 2004 ], "series_multiplier": [ - 1736 + 2004 ], "team_avg_kda": [ - 1736 + 2004 ], "updated_elo": [ - 1736 + 2004 ], "__typename": [ 63 @@ -88144,67 +93090,67 @@ export default { }, "v_player_elo_stddev_samp_order_by": { "actual_score": [ - 1736 + 2004 ], "assists": [ - 1736 + 2004 ], "current_elo": [ - 1736 + 2004 ], "damage": [ - 1736 + 2004 ], "damage_percent": [ - 1736 + 2004 ], "deaths": [ - 1736 + 2004 ], "elo_change": [ - 1736 + 2004 ], "expected_score": [ - 1736 + 2004 ], "impact": [ - 1736 + 2004 ], "k_factor": [ - 1736 + 2004 ], "kda": [ - 1736 + 2004 ], "kills": [ - 1736 + 2004 ], "map_losses": [ - 1736 + 2004 ], "map_wins": [ - 1736 + 2004 ], "opponent_team_elo_avg": [ - 1736 + 2004 ], "performance_multiplier": [ - 1736 + 2004 ], "player_steam_id": [ - 1736 + 2004 ], "player_team_elo_avg": [ - 1736 + 2004 ], "series_multiplier": [ - 1736 + 2004 ], "team_avg_kda": [ - 1736 + 2004 ], "updated_elo": [ - 1736 + 2004 ], "__typename": [ 63 @@ -88212,7 +93158,7 @@ export default { }, "v_player_elo_stream_cursor_input": { "initial_value": [ - 3602 + 3870 ], "ordering": [ 216 @@ -88223,7 +93169,7 @@ export default { }, "v_player_elo_stream_cursor_value_input": { "actual_score": [ - 795 + 1036 ], "assists": [ 34 @@ -88235,7 +93181,7 @@ export default { 34 ], "damage_percent": [ - 795 + 1036 ], "deaths": [ 34 @@ -88244,16 +93190,16 @@ export default { 34 ], "expected_score": [ - 795 + 1036 ], "impact": [ - 795 + 1036 ], "k_factor": [ 34 ], "kda": [ - 795 + 1036 ], "kills": [ 34 @@ -88265,19 +93211,19 @@ export default { 34 ], "match_created_at": [ - 2922 + 3190 ], "match_id": [ - 3319 + 3587 ], "match_result": [ 63 ], "opponent_team_elo_avg": [ - 795 + 1036 ], "performance_multiplier": [ - 795 + 1036 ], "player_name": [ 63 @@ -88286,13 +93232,13 @@ export default { 162 ], "player_team_elo_avg": [ - 795 + 1036 ], "series_multiplier": [ 34 ], "team_avg_kda": [ - 795 + 1036 ], "type": [ 63 @@ -88306,7 +93252,7 @@ export default { }, "v_player_elo_sum_fields": { "actual_score": [ - 795 + 1036 ], "assists": [ 34 @@ -88318,7 +93264,7 @@ export default { 34 ], "damage_percent": [ - 795 + 1036 ], "deaths": [ 34 @@ -88327,16 +93273,16 @@ export default { 34 ], "expected_score": [ - 795 + 1036 ], "impact": [ - 795 + 1036 ], "k_factor": [ 34 ], "kda": [ - 795 + 1036 ], "kills": [ 34 @@ -88348,22 +93294,22 @@ export default { 34 ], "opponent_team_elo_avg": [ - 795 + 1036 ], "performance_multiplier": [ - 795 + 1036 ], "player_steam_id": [ 162 ], "player_team_elo_avg": [ - 795 + 1036 ], "series_multiplier": [ 34 ], "team_avg_kda": [ - 795 + 1036 ], "updated_elo": [ 34 @@ -88374,67 +93320,67 @@ export default { }, "v_player_elo_sum_order_by": { "actual_score": [ - 1736 + 2004 ], "assists": [ - 1736 + 2004 ], "current_elo": [ - 1736 + 2004 ], "damage": [ - 1736 + 2004 ], "damage_percent": [ - 1736 + 2004 ], "deaths": [ - 1736 + 2004 ], "elo_change": [ - 1736 + 2004 ], "expected_score": [ - 1736 + 2004 ], "impact": [ - 1736 + 2004 ], "k_factor": [ - 1736 + 2004 ], "kda": [ - 1736 + 2004 ], "kills": [ - 1736 + 2004 ], "map_losses": [ - 1736 + 2004 ], "map_wins": [ - 1736 + 2004 ], "opponent_team_elo_avg": [ - 1736 + 2004 ], "performance_multiplier": [ - 1736 + 2004 ], "player_steam_id": [ - 1736 + 2004 ], "player_team_elo_avg": [ - 1736 + 2004 ], "series_multiplier": [ - 1736 + 2004 ], "team_avg_kda": [ - 1736 + 2004 ], "updated_elo": [ - 1736 + 2004 ], "__typename": [ 63 @@ -88510,67 +93456,67 @@ export default { }, "v_player_elo_var_pop_order_by": { "actual_score": [ - 1736 + 2004 ], "assists": [ - 1736 + 2004 ], "current_elo": [ - 1736 + 2004 ], "damage": [ - 1736 + 2004 ], "damage_percent": [ - 1736 + 2004 ], "deaths": [ - 1736 + 2004 ], "elo_change": [ - 1736 + 2004 ], "expected_score": [ - 1736 + 2004 ], "impact": [ - 1736 + 2004 ], "k_factor": [ - 1736 + 2004 ], "kda": [ - 1736 + 2004 ], "kills": [ - 1736 + 2004 ], "map_losses": [ - 1736 + 2004 ], "map_wins": [ - 1736 + 2004 ], "opponent_team_elo_avg": [ - 1736 + 2004 ], "performance_multiplier": [ - 1736 + 2004 ], "player_steam_id": [ - 1736 + 2004 ], "player_team_elo_avg": [ - 1736 + 2004 ], "series_multiplier": [ - 1736 + 2004 ], "team_avg_kda": [ - 1736 + 2004 ], "updated_elo": [ - 1736 + 2004 ], "__typename": [ 63 @@ -88646,67 +93592,67 @@ export default { }, "v_player_elo_var_samp_order_by": { "actual_score": [ - 1736 + 2004 ], "assists": [ - 1736 + 2004 ], "current_elo": [ - 1736 + 2004 ], "damage": [ - 1736 + 2004 ], "damage_percent": [ - 1736 + 2004 ], "deaths": [ - 1736 + 2004 ], "elo_change": [ - 1736 + 2004 ], "expected_score": [ - 1736 + 2004 ], "impact": [ - 1736 + 2004 ], "k_factor": [ - 1736 + 2004 ], "kda": [ - 1736 + 2004 ], "kills": [ - 1736 + 2004 ], "map_losses": [ - 1736 + 2004 ], "map_wins": [ - 1736 + 2004 ], "opponent_team_elo_avg": [ - 1736 + 2004 ], "performance_multiplier": [ - 1736 + 2004 ], "player_steam_id": [ - 1736 + 2004 ], "player_team_elo_avg": [ - 1736 + 2004 ], "series_multiplier": [ - 1736 + 2004 ], "team_avg_kda": [ - 1736 + 2004 ], "updated_elo": [ - 1736 + 2004 ], "__typename": [ 63 @@ -88782,67 +93728,67 @@ export default { }, "v_player_elo_variance_order_by": { "actual_score": [ - 1736 + 2004 ], "assists": [ - 1736 + 2004 ], "current_elo": [ - 1736 + 2004 ], "damage": [ - 1736 + 2004 ], "damage_percent": [ - 1736 + 2004 ], "deaths": [ - 1736 + 2004 ], "elo_change": [ - 1736 + 2004 ], "expected_score": [ - 1736 + 2004 ], "impact": [ - 1736 + 2004 ], "k_factor": [ - 1736 + 2004 ], "kda": [ - 1736 + 2004 ], "kills": [ - 1736 + 2004 ], "map_losses": [ - 1736 + 2004 ], "map_wins": [ - 1736 + 2004 ], "opponent_team_elo_avg": [ - 1736 + 2004 ], "performance_multiplier": [ - 1736 + 2004 ], "player_steam_id": [ - 1736 + 2004 ], "player_team_elo_avg": [ - 1736 + 2004 ], "series_multiplier": [ - 1736 + 2004 ], "team_avg_kda": [ - 1736 + 2004 ], "updated_elo": [ - 1736 + 2004 ], "__typename": [ 63 @@ -88850,19 +93796,19 @@ export default { }, "v_player_map_losses": { "map": [ - 1055 + 1296 ], "map_id": [ - 3319 + 3587 ], "match": [ - 1578 + 1819 ], "match_id": [ - 3319 + 3587 ], "started_at": [ - 2922 + 3190 ], "steam_id": [ 162 @@ -88873,10 +93819,10 @@ export default { }, "v_player_map_losses_aggregate": { "aggregate": [ - 3613 + 3881 ], "nodes": [ - 3611 + 3879 ], "__typename": [ 63 @@ -88884,13 +93830,13 @@ export default { }, "v_player_map_losses_aggregate_fields": { "avg": [ - 3614 + 3882 ], "count": [ 34, { "columns": [ - 3619, + 3887, "[v_player_map_losses_select_column!]" ], "distinct": [ @@ -88899,31 +93845,31 @@ export default { } ], "max": [ - 3616 + 3884 ], "min": [ - 3617 + 3885 ], "stddev": [ - 3620 + 3888 ], "stddev_pop": [ - 3621 + 3889 ], "stddev_samp": [ - 3622 + 3890 ], "sum": [ - 3625 + 3893 ], "var_pop": [ - 3626 + 3894 ], "var_samp": [ - 3627 + 3895 ], "variance": [ - 3628 + 3896 ], "__typename": [ 63 @@ -88939,28 +93885,28 @@ export default { }, "v_player_map_losses_bool_exp": { "_and": [ - 3615 + 3883 ], "_not": [ - 3615 + 3883 ], "_or": [ - 3615 + 3883 ], "map": [ - 1064 + 1305 ], "map_id": [ - 3320 + 3588 ], "match": [ - 1587 + 1828 ], "match_id": [ - 3320 + 3588 ], "started_at": [ - 2923 + 3191 ], "steam_id": [ 163 @@ -88971,13 +93917,13 @@ export default { }, "v_player_map_losses_max_fields": { "map_id": [ - 3319 + 3587 ], "match_id": [ - 3319 + 3587 ], "started_at": [ - 2922 + 3190 ], "steam_id": [ 162 @@ -88988,13 +93934,13 @@ export default { }, "v_player_map_losses_min_fields": { "map_id": [ - 3319 + 3587 ], "match_id": [ - 3319 + 3587 ], "started_at": [ - 2922 + 3190 ], "steam_id": [ 162 @@ -89005,22 +93951,22 @@ export default { }, "v_player_map_losses_order_by": { "map": [ - 1074 + 1315 ], "map_id": [ - 1736 + 2004 ], "match": [ - 1598 + 1839 ], "match_id": [ - 1736 + 2004 ], "started_at": [ - 1736 + 2004 ], "steam_id": [ - 1736 + 2004 ], "__typename": [ 63 @@ -89053,7 +93999,7 @@ export default { }, "v_player_map_losses_stream_cursor_input": { "initial_value": [ - 3624 + 3892 ], "ordering": [ 216 @@ -89064,13 +94010,13 @@ export default { }, "v_player_map_losses_stream_cursor_value_input": { "map_id": [ - 3319 + 3587 ], "match_id": [ - 3319 + 3587 ], "started_at": [ - 2922 + 3190 ], "steam_id": [ 162 @@ -89113,19 +94059,19 @@ export default { }, "v_player_map_wins": { "map": [ - 1055 + 1296 ], "map_id": [ - 3319 + 3587 ], "match": [ - 1578 + 1819 ], "match_id": [ - 3319 + 3587 ], "started_at": [ - 2922 + 3190 ], "steam_id": [ 162 @@ -89136,10 +94082,10 @@ export default { }, "v_player_map_wins_aggregate": { "aggregate": [ - 3631 + 3899 ], "nodes": [ - 3629 + 3897 ], "__typename": [ 63 @@ -89147,13 +94093,13 @@ export default { }, "v_player_map_wins_aggregate_fields": { "avg": [ - 3632 + 3900 ], "count": [ 34, { "columns": [ - 3637, + 3905, "[v_player_map_wins_select_column!]" ], "distinct": [ @@ -89162,31 +94108,31 @@ export default { } ], "max": [ - 3634 + 3902 ], "min": [ - 3635 + 3903 ], "stddev": [ - 3638 + 3906 ], "stddev_pop": [ - 3639 + 3907 ], "stddev_samp": [ - 3640 + 3908 ], "sum": [ - 3643 + 3911 ], "var_pop": [ - 3644 + 3912 ], "var_samp": [ - 3645 + 3913 ], "variance": [ - 3646 + 3914 ], "__typename": [ 63 @@ -89202,28 +94148,28 @@ export default { }, "v_player_map_wins_bool_exp": { "_and": [ - 3633 + 3901 ], "_not": [ - 3633 + 3901 ], "_or": [ - 3633 + 3901 ], "map": [ - 1064 + 1305 ], "map_id": [ - 3320 + 3588 ], "match": [ - 1587 + 1828 ], "match_id": [ - 3320 + 3588 ], "started_at": [ - 2923 + 3191 ], "steam_id": [ 163 @@ -89234,13 +94180,13 @@ export default { }, "v_player_map_wins_max_fields": { "map_id": [ - 3319 + 3587 ], "match_id": [ - 3319 + 3587 ], "started_at": [ - 2922 + 3190 ], "steam_id": [ 162 @@ -89251,13 +94197,13 @@ export default { }, "v_player_map_wins_min_fields": { "map_id": [ - 3319 + 3587 ], "match_id": [ - 3319 + 3587 ], "started_at": [ - 2922 + 3190 ], "steam_id": [ 162 @@ -89268,22 +94214,22 @@ export default { }, "v_player_map_wins_order_by": { "map": [ - 1074 + 1315 ], "map_id": [ - 1736 + 2004 ], "match": [ - 1598 + 1839 ], "match_id": [ - 1736 + 2004 ], "started_at": [ - 1736 + 2004 ], "steam_id": [ - 1736 + 2004 ], "__typename": [ 63 @@ -89316,7 +94262,7 @@ export default { }, "v_player_map_wins_stream_cursor_input": { "initial_value": [ - 3642 + 3910 ], "ordering": [ 216 @@ -89327,13 +94273,13 @@ export default { }, "v_player_map_wins_stream_cursor_value_input": { "map_id": [ - 3319 + 3587 ], "match_id": [ - 3319 + 3587 ], "started_at": [ - 2922 + 3190 ], "steam_id": [ 162 @@ -89376,13 +94322,13 @@ export default { }, "v_player_match_head_to_head": { "attacked": [ - 2603 + 2871 ], "attacked_steam_id": [ 162 ], "attacker": [ - 2603 + 2871 ], "attacker_steam_id": [ 162 @@ -89403,10 +94349,10 @@ export default { 162 ], "match": [ - 1578 + 1819 ], "match_id": [ - 3319 + 3587 ], "__typename": [ 63 @@ -89414,10 +94360,10 @@ export default { }, "v_player_match_head_to_head_aggregate": { "aggregate": [ - 3649 + 3917 ], "nodes": [ - 3647 + 3915 ], "__typename": [ 63 @@ -89425,13 +94371,13 @@ export default { }, "v_player_match_head_to_head_aggregate_fields": { "avg": [ - 3650 + 3918 ], "count": [ 34, { "columns": [ - 3655, + 3923, "[v_player_match_head_to_head_select_column!]" ], "distinct": [ @@ -89440,31 +94386,31 @@ export default { } ], "max": [ - 3652 + 3920 ], "min": [ - 3653 + 3921 ], "stddev": [ - 3656 + 3924 ], "stddev_pop": [ - 3657 + 3925 ], "stddev_samp": [ - 3658 + 3926 ], "sum": [ - 3661 + 3929 ], "var_pop": [ - 3662 + 3930 ], "var_samp": [ - 3663 + 3931 ], "variance": [ - 3664 + 3932 ], "__typename": [ 63 @@ -89498,22 +94444,22 @@ export default { }, "v_player_match_head_to_head_bool_exp": { "_and": [ - 3651 + 3919 ], "_not": [ - 3651 + 3919 ], "_or": [ - 3651 + 3919 ], "attacked": [ - 2607 + 2875 ], "attacked_steam_id": [ 163 ], "attacker": [ - 2607 + 2875 ], "attacker_steam_id": [ 163 @@ -89534,10 +94480,10 @@ export default { 163 ], "match": [ - 1587 + 1828 ], "match_id": [ - 3320 + 3588 ], "__typename": [ 63 @@ -89566,7 +94512,7 @@ export default { 162 ], "match_id": [ - 3319 + 3587 ], "__typename": [ 63 @@ -89595,7 +94541,7 @@ export default { 162 ], "match_id": [ - 3319 + 3587 ], "__typename": [ 63 @@ -89603,37 +94549,37 @@ export default { }, "v_player_match_head_to_head_order_by": { "attacked": [ - 2616 + 2884 ], "attacked_steam_id": [ - 1736 + 2004 ], "attacker": [ - 2616 + 2884 ], "attacker_steam_id": [ - 1736 + 2004 ], "damage_dealt": [ - 1736 + 2004 ], "flash_count": [ - 1736 + 2004 ], "headshot_kills": [ - 1736 + 2004 ], "hits": [ - 1736 + 2004 ], "kills": [ - 1736 + 2004 ], "match": [ - 1598 + 1839 ], "match_id": [ - 1736 + 2004 ], "__typename": [ 63 @@ -89720,7 +94666,7 @@ export default { }, "v_player_match_head_to_head_stream_cursor_input": { "initial_value": [ - 3660 + 3928 ], "ordering": [ 216 @@ -89752,7 +94698,7 @@ export default { 162 ], "match_id": [ - 3319 + 3587 ], "__typename": [ 63 @@ -89864,37 +94810,37 @@ export default { }, "v_player_match_map_hltv": { "adr": [ - 1734 + 2002 ], "apr": [ - 1734 + 2002 ], "dpr": [ - 1734 + 2002 ], "hltv_rating": [ - 1734 + 2002 ], "kast_pct": [ - 1734 + 2002 ], "kpr": [ - 1734 + 2002 ], "match": [ - 1578 + 1819 ], "match_id": [ - 3319 + 3587 ], "match_map": [ - 1416 + 1657 ], "match_map_id": [ - 3319 + 3587 ], "player": [ - 2603 + 2871 ], "rounds_played": [ 34 @@ -89908,10 +94854,10 @@ export default { }, "v_player_match_map_hltv_aggregate": { "aggregate": [ - 3669 + 3937 ], "nodes": [ - 3665 + 3933 ], "__typename": [ 63 @@ -89919,7 +94865,7 @@ export default { }, "v_player_match_map_hltv_aggregate_bool_exp": { "count": [ - 3668 + 3936 ], "__typename": [ 63 @@ -89927,13 +94873,13 @@ export default { }, "v_player_match_map_hltv_aggregate_bool_exp_count": { "arguments": [ - 3683 + 3951 ], "distinct": [ 3 ], "filter": [ - 3674 + 3942 ], "predicate": [ 35 @@ -89944,13 +94890,13 @@ export default { }, "v_player_match_map_hltv_aggregate_fields": { "avg": [ - 3672 + 3940 ], "count": [ 34, { "columns": [ - 3683, + 3951, "[v_player_match_map_hltv_select_column!]" ], "distinct": [ @@ -89959,31 +94905,31 @@ export default { } ], "max": [ - 3677 + 3945 ], "min": [ - 3679 + 3947 ], "stddev": [ - 3685 + 3953 ], "stddev_pop": [ - 3687 + 3955 ], "stddev_samp": [ - 3689 + 3957 ], "sum": [ - 3693 + 3961 ], "var_pop": [ - 3696 + 3964 ], "var_samp": [ - 3698 + 3966 ], "variance": [ - 3700 + 3968 ], "__typename": [ 63 @@ -89991,37 +94937,37 @@ export default { }, "v_player_match_map_hltv_aggregate_order_by": { "avg": [ - 3673 + 3941 ], "count": [ - 1736 + 2004 ], "max": [ - 3678 + 3946 ], "min": [ - 3680 + 3948 ], "stddev": [ - 3686 + 3954 ], "stddev_pop": [ - 3688 + 3956 ], "stddev_samp": [ - 3690 + 3958 ], "sum": [ - 3694 + 3962 ], "var_pop": [ - 3697 + 3965 ], "var_samp": [ - 3699 + 3967 ], "variance": [ - 3701 + 3969 ], "__typename": [ 63 @@ -90029,7 +94975,7 @@ export default { }, "v_player_match_map_hltv_arr_rel_insert_input": { "data": [ - 3676 + 3944 ], "__typename": [ 63 @@ -90066,28 +95012,28 @@ export default { }, "v_player_match_map_hltv_avg_order_by": { "adr": [ - 1736 + 2004 ], "apr": [ - 1736 + 2004 ], "dpr": [ - 1736 + 2004 ], "hltv_rating": [ - 1736 + 2004 ], "kast_pct": [ - 1736 + 2004 ], "kpr": [ - 1736 + 2004 ], "rounds_played": [ - 1736 + 2004 ], "steam_id": [ - 1736 + 2004 ], "__typename": [ 63 @@ -90095,46 +95041,46 @@ export default { }, "v_player_match_map_hltv_bool_exp": { "_and": [ - 3674 + 3942 ], "_not": [ - 3674 + 3942 ], "_or": [ - 3674 + 3942 ], "adr": [ - 1735 + 2003 ], "apr": [ - 1735 + 2003 ], "dpr": [ - 1735 + 2003 ], "hltv_rating": [ - 1735 + 2003 ], "kast_pct": [ - 1735 + 2003 ], "kpr": [ - 1735 + 2003 ], "match": [ - 1587 + 1828 ], "match_id": [ - 3320 + 3588 ], "match_map": [ - 1425 + 1666 ], "match_map_id": [ - 3320 + 3588 ], "player": [ - 2607 + 2875 ], "rounds_played": [ 35 @@ -90148,22 +95094,22 @@ export default { }, "v_player_match_map_hltv_inc_input": { "adr": [ - 1734 + 2002 ], "apr": [ - 1734 + 2002 ], "dpr": [ - 1734 + 2002 ], "hltv_rating": [ - 1734 + 2002 ], "kast_pct": [ - 1734 + 2002 ], "kpr": [ - 1734 + 2002 ], "rounds_played": [ 34 @@ -90177,37 +95123,37 @@ export default { }, "v_player_match_map_hltv_insert_input": { "adr": [ - 1734 + 2002 ], "apr": [ - 1734 + 2002 ], "dpr": [ - 1734 + 2002 ], "hltv_rating": [ - 1734 + 2002 ], "kast_pct": [ - 1734 + 2002 ], "kpr": [ - 1734 + 2002 ], "match": [ - 1596 + 1837 ], "match_id": [ - 3319 + 3587 ], "match_map": [ - 1434 + 1675 ], "match_map_id": [ - 3319 + 3587 ], "player": [ - 2614 + 2882 ], "rounds_played": [ 34 @@ -90221,28 +95167,28 @@ export default { }, "v_player_match_map_hltv_max_fields": { "adr": [ - 1734 + 2002 ], "apr": [ - 1734 + 2002 ], "dpr": [ - 1734 + 2002 ], "hltv_rating": [ - 1734 + 2002 ], "kast_pct": [ - 1734 + 2002 ], "kpr": [ - 1734 + 2002 ], "match_id": [ - 3319 + 3587 ], "match_map_id": [ - 3319 + 3587 ], "rounds_played": [ 34 @@ -90256,34 +95202,34 @@ export default { }, "v_player_match_map_hltv_max_order_by": { "adr": [ - 1736 + 2004 ], "apr": [ - 1736 + 2004 ], "dpr": [ - 1736 + 2004 ], "hltv_rating": [ - 1736 + 2004 ], "kast_pct": [ - 1736 + 2004 ], "kpr": [ - 1736 + 2004 ], "match_id": [ - 1736 + 2004 ], "match_map_id": [ - 1736 + 2004 ], "rounds_played": [ - 1736 + 2004 ], "steam_id": [ - 1736 + 2004 ], "__typename": [ 63 @@ -90291,28 +95237,28 @@ export default { }, "v_player_match_map_hltv_min_fields": { "adr": [ - 1734 + 2002 ], "apr": [ - 1734 + 2002 ], "dpr": [ - 1734 + 2002 ], "hltv_rating": [ - 1734 + 2002 ], "kast_pct": [ - 1734 + 2002 ], "kpr": [ - 1734 + 2002 ], "match_id": [ - 3319 + 3587 ], "match_map_id": [ - 3319 + 3587 ], "rounds_played": [ 34 @@ -90326,34 +95272,34 @@ export default { }, "v_player_match_map_hltv_min_order_by": { "adr": [ - 1736 + 2004 ], "apr": [ - 1736 + 2004 ], "dpr": [ - 1736 + 2004 ], "hltv_rating": [ - 1736 + 2004 ], "kast_pct": [ - 1736 + 2004 ], "kpr": [ - 1736 + 2004 ], "match_id": [ - 1736 + 2004 ], "match_map_id": [ - 1736 + 2004 ], "rounds_played": [ - 1736 + 2004 ], "steam_id": [ - 1736 + 2004 ], "__typename": [ 63 @@ -90364,7 +95310,7 @@ export default { 34 ], "returning": [ - 3665 + 3933 ], "__typename": [ 63 @@ -90372,43 +95318,43 @@ export default { }, "v_player_match_map_hltv_order_by": { "adr": [ - 1736 + 2004 ], "apr": [ - 1736 + 2004 ], "dpr": [ - 1736 + 2004 ], "hltv_rating": [ - 1736 + 2004 ], "kast_pct": [ - 1736 + 2004 ], "kpr": [ - 1736 + 2004 ], "match": [ - 1598 + 1839 ], "match_id": [ - 1736 + 2004 ], "match_map": [ - 1436 + 1677 ], "match_map_id": [ - 1736 + 2004 ], "player": [ - 2616 + 2884 ], "rounds_played": [ - 1736 + 2004 ], "steam_id": [ - 1736 + 2004 ], "__typename": [ 63 @@ -90417,28 +95363,28 @@ export default { "v_player_match_map_hltv_select_column": {}, "v_player_match_map_hltv_set_input": { "adr": [ - 1734 + 2002 ], "apr": [ - 1734 + 2002 ], "dpr": [ - 1734 + 2002 ], "hltv_rating": [ - 1734 + 2002 ], "kast_pct": [ - 1734 + 2002 ], "kpr": [ - 1734 + 2002 ], "match_id": [ - 3319 + 3587 ], "match_map_id": [ - 3319 + 3587 ], "rounds_played": [ 34 @@ -90481,28 +95427,28 @@ export default { }, "v_player_match_map_hltv_stddev_order_by": { "adr": [ - 1736 + 2004 ], "apr": [ - 1736 + 2004 ], "dpr": [ - 1736 + 2004 ], "hltv_rating": [ - 1736 + 2004 ], "kast_pct": [ - 1736 + 2004 ], "kpr": [ - 1736 + 2004 ], "rounds_played": [ - 1736 + 2004 ], "steam_id": [ - 1736 + 2004 ], "__typename": [ 63 @@ -90539,28 +95485,28 @@ export default { }, "v_player_match_map_hltv_stddev_pop_order_by": { "adr": [ - 1736 + 2004 ], "apr": [ - 1736 + 2004 ], "dpr": [ - 1736 + 2004 ], "hltv_rating": [ - 1736 + 2004 ], "kast_pct": [ - 1736 + 2004 ], "kpr": [ - 1736 + 2004 ], "rounds_played": [ - 1736 + 2004 ], "steam_id": [ - 1736 + 2004 ], "__typename": [ 63 @@ -90597,28 +95543,28 @@ export default { }, "v_player_match_map_hltv_stddev_samp_order_by": { "adr": [ - 1736 + 2004 ], "apr": [ - 1736 + 2004 ], "dpr": [ - 1736 + 2004 ], "hltv_rating": [ - 1736 + 2004 ], "kast_pct": [ - 1736 + 2004 ], "kpr": [ - 1736 + 2004 ], "rounds_played": [ - 1736 + 2004 ], "steam_id": [ - 1736 + 2004 ], "__typename": [ 63 @@ -90626,7 +95572,7 @@ export default { }, "v_player_match_map_hltv_stream_cursor_input": { "initial_value": [ - 3692 + 3960 ], "ordering": [ 216 @@ -90637,28 +95583,28 @@ export default { }, "v_player_match_map_hltv_stream_cursor_value_input": { "adr": [ - 1734 + 2002 ], "apr": [ - 1734 + 2002 ], "dpr": [ - 1734 + 2002 ], "hltv_rating": [ - 1734 + 2002 ], "kast_pct": [ - 1734 + 2002 ], "kpr": [ - 1734 + 2002 ], "match_id": [ - 3319 + 3587 ], "match_map_id": [ - 3319 + 3587 ], "rounds_played": [ 34 @@ -90672,22 +95618,22 @@ export default { }, "v_player_match_map_hltv_sum_fields": { "adr": [ - 1734 + 2002 ], "apr": [ - 1734 + 2002 ], "dpr": [ - 1734 + 2002 ], "hltv_rating": [ - 1734 + 2002 ], "kast_pct": [ - 1734 + 2002 ], "kpr": [ - 1734 + 2002 ], "rounds_played": [ 34 @@ -90701,28 +95647,28 @@ export default { }, "v_player_match_map_hltv_sum_order_by": { "adr": [ - 1736 + 2004 ], "apr": [ - 1736 + 2004 ], "dpr": [ - 1736 + 2004 ], "hltv_rating": [ - 1736 + 2004 ], "kast_pct": [ - 1736 + 2004 ], "kpr": [ - 1736 + 2004 ], "rounds_played": [ - 1736 + 2004 ], "steam_id": [ - 1736 + 2004 ], "__typename": [ 63 @@ -90730,13 +95676,13 @@ export default { }, "v_player_match_map_hltv_updates": { "_inc": [ - 3675 + 3943 ], "_set": [ - 3684 + 3952 ], "where": [ - 3674 + 3942 ], "__typename": [ 63 @@ -90773,28 +95719,28 @@ export default { }, "v_player_match_map_hltv_var_pop_order_by": { "adr": [ - 1736 + 2004 ], "apr": [ - 1736 + 2004 ], "dpr": [ - 1736 + 2004 ], "hltv_rating": [ - 1736 + 2004 ], "kast_pct": [ - 1736 + 2004 ], "kpr": [ - 1736 + 2004 ], "rounds_played": [ - 1736 + 2004 ], "steam_id": [ - 1736 + 2004 ], "__typename": [ 63 @@ -90831,28 +95777,28 @@ export default { }, "v_player_match_map_hltv_var_samp_order_by": { "adr": [ - 1736 + 2004 ], "apr": [ - 1736 + 2004 ], "dpr": [ - 1736 + 2004 ], "hltv_rating": [ - 1736 + 2004 ], "kast_pct": [ - 1736 + 2004 ], "kpr": [ - 1736 + 2004 ], "rounds_played": [ - 1736 + 2004 ], "steam_id": [ - 1736 + 2004 ], "__typename": [ 63 @@ -90889,28 +95835,28 @@ export default { }, "v_player_match_map_hltv_variance_order_by": { "adr": [ - 1736 + 2004 ], "apr": [ - 1736 + 2004 ], "dpr": [ - 1736 + 2004 ], "hltv_rating": [ - 1736 + 2004 ], "kast_pct": [ - 1736 + 2004 ], "kpr": [ - 1736 + 2004 ], "rounds_played": [ - 1736 + 2004 ], "steam_id": [ - 1736 + 2004 ], "__typename": [ 63 @@ -90918,52 +95864,52 @@ export default { }, "v_player_match_map_roles": { "adr": [ - 1734 + 2002 ], "awp_kills": [ 34 ], "awp_share": [ - 1734 + 2002 ], "deaths": [ 34 ], "dpr": [ - 1734 + 2002 ], "entry_rate": [ - 1734 + 2002 ], "flash_assists": [ 34 ], "hltv_rating": [ - 1734 + 2002 ], "kast_pct": [ - 1734 + 2002 ], "kills": [ 34 ], "kpr": [ - 1734 + 2002 ], "lineup_id": [ - 3319 + 3587 ], "match": [ - 1578 + 1819 ], "match_id": [ - 3319 + 3587 ], "match_map": [ - 1416 + 1657 ], "match_map_id": [ - 3319 + 3587 ], "open_deaths": [ 34 @@ -90975,7 +95921,7 @@ export default { 34 ], "player": [ - 2603 + 2871 ], "role": [ 63 @@ -90987,7 +95933,7 @@ export default { 162 ], "support_idx": [ - 1734 + 2002 ], "total_kills": [ 34 @@ -91007,10 +95953,10 @@ export default { }, "v_player_match_map_roles_aggregate": { "aggregate": [ - 3704 + 3972 ], "nodes": [ - 3702 + 3970 ], "__typename": [ 63 @@ -91018,13 +95964,13 @@ export default { }, "v_player_match_map_roles_aggregate_fields": { "avg": [ - 3705 + 3973 ], "count": [ 34, { "columns": [ - 3710, + 3978, "[v_player_match_map_roles_select_column!]" ], "distinct": [ @@ -91033,31 +95979,31 @@ export default { } ], "max": [ - 3707 + 3975 ], "min": [ - 3708 + 3976 ], "stddev": [ - 3711 + 3979 ], "stddev_pop": [ - 3712 + 3980 ], "stddev_samp": [ - 3713 + 3981 ], "sum": [ - 3716 + 3984 ], "var_pop": [ - 3717 + 3985 ], "var_samp": [ - 3718 + 3986 ], "variance": [ - 3719 + 3987 ], "__typename": [ 63 @@ -91133,61 +96079,61 @@ export default { }, "v_player_match_map_roles_bool_exp": { "_and": [ - 3706 + 3974 ], "_not": [ - 3706 + 3974 ], "_or": [ - 3706 + 3974 ], "adr": [ - 1735 + 2003 ], "awp_kills": [ 35 ], "awp_share": [ - 1735 + 2003 ], "deaths": [ 35 ], "dpr": [ - 1735 + 2003 ], "entry_rate": [ - 1735 + 2003 ], "flash_assists": [ 35 ], "hltv_rating": [ - 1735 + 2003 ], "kast_pct": [ - 1735 + 2003 ], "kills": [ 35 ], "kpr": [ - 1735 + 2003 ], "lineup_id": [ - 3320 + 3588 ], "match": [ - 1587 + 1828 ], "match_id": [ - 3320 + 3588 ], "match_map": [ - 1425 + 1666 ], "match_map_id": [ - 3320 + 3588 ], "open_deaths": [ 35 @@ -91199,7 +96145,7 @@ export default { 35 ], "player": [ - 2607 + 2875 ], "role": [ 65 @@ -91211,7 +96157,7 @@ export default { 163 ], "support_idx": [ - 1735 + 2003 ], "total_kills": [ 35 @@ -91231,46 +96177,46 @@ export default { }, "v_player_match_map_roles_max_fields": { "adr": [ - 1734 + 2002 ], "awp_kills": [ 34 ], "awp_share": [ - 1734 + 2002 ], "deaths": [ 34 ], "dpr": [ - 1734 + 2002 ], "entry_rate": [ - 1734 + 2002 ], "flash_assists": [ 34 ], "hltv_rating": [ - 1734 + 2002 ], "kast_pct": [ - 1734 + 2002 ], "kills": [ 34 ], "kpr": [ - 1734 + 2002 ], "lineup_id": [ - 3319 + 3587 ], "match_id": [ - 3319 + 3587 ], "match_map_id": [ - 3319 + 3587 ], "open_deaths": [ 34 @@ -91291,7 +96237,7 @@ export default { 162 ], "support_idx": [ - 1734 + 2002 ], "total_kills": [ 34 @@ -91311,46 +96257,46 @@ export default { }, "v_player_match_map_roles_min_fields": { "adr": [ - 1734 + 2002 ], "awp_kills": [ 34 ], "awp_share": [ - 1734 + 2002 ], "deaths": [ 34 ], "dpr": [ - 1734 + 2002 ], "entry_rate": [ - 1734 + 2002 ], "flash_assists": [ 34 ], "hltv_rating": [ - 1734 + 2002 ], "kast_pct": [ - 1734 + 2002 ], "kills": [ 34 ], "kpr": [ - 1734 + 2002 ], "lineup_id": [ - 3319 + 3587 ], "match_id": [ - 3319 + 3587 ], "match_map_id": [ - 3319 + 3587 ], "open_deaths": [ 34 @@ -91371,7 +96317,7 @@ export default { 162 ], "support_idx": [ - 1734 + 2002 ], "total_kills": [ 34 @@ -91391,88 +96337,88 @@ export default { }, "v_player_match_map_roles_order_by": { "adr": [ - 1736 + 2004 ], "awp_kills": [ - 1736 + 2004 ], "awp_share": [ - 1736 + 2004 ], "deaths": [ - 1736 + 2004 ], "dpr": [ - 1736 + 2004 ], "entry_rate": [ - 1736 + 2004 ], "flash_assists": [ - 1736 + 2004 ], "hltv_rating": [ - 1736 + 2004 ], "kast_pct": [ - 1736 + 2004 ], "kills": [ - 1736 + 2004 ], "kpr": [ - 1736 + 2004 ], "lineup_id": [ - 1736 + 2004 ], "match": [ - 1598 + 1839 ], "match_id": [ - 1736 + 2004 ], "match_map": [ - 1436 + 1677 ], "match_map_id": [ - 1736 + 2004 ], "open_deaths": [ - 1736 + 2004 ], "open_kills": [ - 1736 + 2004 ], "opening_attempts": [ - 1736 + 2004 ], "player": [ - 2616 + 2884 ], "role": [ - 1736 + 2004 ], "rounds": [ - 1736 + 2004 ], "steam_id": [ - 1736 + 2004 ], "support_idx": [ - 1736 + 2004 ], "total_kills": [ - 1736 + 2004 ], "trade_kill_successes": [ - 1736 + 2004 ], "traded_death_successes": [ - 1736 + 2004 ], "util_damage": [ - 1736 + 2004 ], "__typename": [ 63 @@ -91685,7 +96631,7 @@ export default { }, "v_player_match_map_roles_stream_cursor_input": { "initial_value": [ - 3715 + 3983 ], "ordering": [ 216 @@ -91696,46 +96642,46 @@ export default { }, "v_player_match_map_roles_stream_cursor_value_input": { "adr": [ - 1734 + 2002 ], "awp_kills": [ 34 ], "awp_share": [ - 1734 + 2002 ], "deaths": [ 34 ], "dpr": [ - 1734 + 2002 ], "entry_rate": [ - 1734 + 2002 ], "flash_assists": [ 34 ], "hltv_rating": [ - 1734 + 2002 ], "kast_pct": [ - 1734 + 2002 ], "kills": [ 34 ], "kpr": [ - 1734 + 2002 ], "lineup_id": [ - 3319 + 3587 ], "match_id": [ - 3319 + 3587 ], "match_map_id": [ - 3319 + 3587 ], "open_deaths": [ 34 @@ -91756,7 +96702,7 @@ export default { 162 ], "support_idx": [ - 1734 + 2002 ], "total_kills": [ 34 @@ -91776,37 +96722,37 @@ export default { }, "v_player_match_map_roles_sum_fields": { "adr": [ - 1734 + 2002 ], "awp_kills": [ 34 ], "awp_share": [ - 1734 + 2002 ], "deaths": [ 34 ], "dpr": [ - 1734 + 2002 ], "entry_rate": [ - 1734 + 2002 ], "flash_assists": [ 34 ], "hltv_rating": [ - 1734 + 2002 ], "kast_pct": [ - 1734 + 2002 ], "kills": [ 34 ], "kpr": [ - 1734 + 2002 ], "open_deaths": [ 34 @@ -91824,7 +96770,7 @@ export default { 162 ], "support_idx": [ - 1734 + 2002 ], "total_kills": [ 34 @@ -92057,19 +97003,19 @@ export default { 34 ], "map": [ - 1055 + 1296 ], "map_id": [ - 3319 + 3587 ], "match": [ - 1578 + 1819 ], "match_created_at": [ - 2922 + 3190 ], "match_id": [ - 3319 + 3587 ], "match_result": [ 63 @@ -92089,10 +97035,10 @@ export default { }, "v_player_match_performance_aggregate": { "aggregate": [ - 3722 + 3990 ], "nodes": [ - 3720 + 3988 ], "__typename": [ 63 @@ -92100,13 +97046,13 @@ export default { }, "v_player_match_performance_aggregate_fields": { "avg": [ - 3723 + 3991 ], "count": [ 34, { "columns": [ - 3728, + 3996, "[v_player_match_performance_select_column!]" ], "distinct": [ @@ -92115,31 +97061,31 @@ export default { } ], "max": [ - 3725 + 3993 ], "min": [ - 3726 + 3994 ], "stddev": [ - 3729 + 3997 ], "stddev_pop": [ - 3730 + 3998 ], "stddev_samp": [ - 3731 + 3999 ], "sum": [ - 3734 + 4002 ], "var_pop": [ - 3735 + 4003 ], "var_samp": [ - 3736 + 4004 ], "variance": [ - 3737 + 4005 ], "__typename": [ 63 @@ -92164,13 +97110,13 @@ export default { }, "v_player_match_performance_bool_exp": { "_and": [ - 3724 + 3992 ], "_not": [ - 3724 + 3992 ], "_or": [ - 3724 + 3992 ], "assists": [ 35 @@ -92182,19 +97128,19 @@ export default { 35 ], "map": [ - 1064 + 1305 ], "map_id": [ - 3320 + 3588 ], "match": [ - 1587 + 1828 ], "match_created_at": [ - 2923 + 3191 ], "match_id": [ - 3320 + 3588 ], "match_result": [ 65 @@ -92223,13 +97169,13 @@ export default { 34 ], "map_id": [ - 3319 + 3587 ], "match_created_at": [ - 2922 + 3190 ], "match_id": [ - 3319 + 3587 ], "match_result": [ 63 @@ -92258,13 +97204,13 @@ export default { 34 ], "map_id": [ - 3319 + 3587 ], "match_created_at": [ - 2922 + 3190 ], "match_id": [ - 3319 + 3587 ], "match_result": [ 63 @@ -92284,40 +97230,40 @@ export default { }, "v_player_match_performance_order_by": { "assists": [ - 1736 + 2004 ], "deaths": [ - 1736 + 2004 ], "kills": [ - 1736 + 2004 ], "map": [ - 1074 + 1315 ], "map_id": [ - 1736 + 2004 ], "match": [ - 1598 + 1839 ], "match_created_at": [ - 1736 + 2004 ], "match_id": [ - 1736 + 2004 ], "match_result": [ - 1736 + 2004 ], "player_steam_id": [ - 1736 + 2004 ], "source": [ - 1736 + 2004 ], "type": [ - 1736 + 2004 ], "__typename": [ 63 @@ -92377,7 +97323,7 @@ export default { }, "v_player_match_performance_stream_cursor_input": { "initial_value": [ - 3733 + 4001 ], "ordering": [ 216 @@ -92397,13 +97343,13 @@ export default { 34 ], "map_id": [ - 3319 + 3587 ], "match_created_at": [ - 2922 + 3190 ], "match_id": [ - 3319 + 3587 ], "match_result": [ 63 @@ -92491,28 +97437,28 @@ export default { }, "v_player_match_rating": { "adr": [ - 1734 + 2002 ], "dpr": [ - 1734 + 2002 ], "hltv_rating": [ - 1734 + 2002 ], "kast_pct": [ - 1734 + 2002 ], "kpr": [ - 1734 + 2002 ], "match": [ - 1578 + 1819 ], "match_id": [ - 3319 + 3587 ], "player": [ - 2603 + 2871 ], "rounds_played": [ 34 @@ -92526,10 +97472,10 @@ export default { }, "v_player_match_rating_aggregate": { "aggregate": [ - 3740 + 4008 ], "nodes": [ - 3738 + 4006 ], "__typename": [ 63 @@ -92537,13 +97483,13 @@ export default { }, "v_player_match_rating_aggregate_fields": { "avg": [ - 3741 + 4009 ], "count": [ 34, { "columns": [ - 3746, + 4014, "[v_player_match_rating_select_column!]" ], "distinct": [ @@ -92552,31 +97498,31 @@ export default { } ], "max": [ - 3743 + 4011 ], "min": [ - 3744 + 4012 ], "stddev": [ - 3747 + 4015 ], "stddev_pop": [ - 3748 + 4016 ], "stddev_samp": [ - 3749 + 4017 ], "sum": [ - 3752 + 4020 ], "var_pop": [ - 3753 + 4021 ], "var_samp": [ - 3754 + 4022 ], "variance": [ - 3755 + 4023 ], "__typename": [ 63 @@ -92610,37 +97556,37 @@ export default { }, "v_player_match_rating_bool_exp": { "_and": [ - 3742 + 4010 ], "_not": [ - 3742 + 4010 ], "_or": [ - 3742 + 4010 ], "adr": [ - 1735 + 2003 ], "dpr": [ - 1735 + 2003 ], "hltv_rating": [ - 1735 + 2003 ], "kast_pct": [ - 1735 + 2003 ], "kpr": [ - 1735 + 2003 ], "match": [ - 1587 + 1828 ], "match_id": [ - 3320 + 3588 ], "player": [ - 2607 + 2875 ], "rounds_played": [ 35 @@ -92654,22 +97600,22 @@ export default { }, "v_player_match_rating_max_fields": { "adr": [ - 1734 + 2002 ], "dpr": [ - 1734 + 2002 ], "hltv_rating": [ - 1734 + 2002 ], "kast_pct": [ - 1734 + 2002 ], "kpr": [ - 1734 + 2002 ], "match_id": [ - 3319 + 3587 ], "rounds_played": [ 34 @@ -92683,22 +97629,22 @@ export default { }, "v_player_match_rating_min_fields": { "adr": [ - 1734 + 2002 ], "dpr": [ - 1734 + 2002 ], "hltv_rating": [ - 1734 + 2002 ], "kast_pct": [ - 1734 + 2002 ], "kpr": [ - 1734 + 2002 ], "match_id": [ - 3319 + 3587 ], "rounds_played": [ 34 @@ -92712,34 +97658,34 @@ export default { }, "v_player_match_rating_order_by": { "adr": [ - 1736 + 2004 ], "dpr": [ - 1736 + 2004 ], "hltv_rating": [ - 1736 + 2004 ], "kast_pct": [ - 1736 + 2004 ], "kpr": [ - 1736 + 2004 ], "match": [ - 1598 + 1839 ], "match_id": [ - 1736 + 2004 ], "player": [ - 2616 + 2884 ], "rounds_played": [ - 1736 + 2004 ], "steam_id": [ - 1736 + 2004 ], "__typename": [ 63 @@ -92826,7 +97772,7 @@ export default { }, "v_player_match_rating_stream_cursor_input": { "initial_value": [ - 3751 + 4019 ], "ordering": [ 216 @@ -92837,22 +97783,22 @@ export default { }, "v_player_match_rating_stream_cursor_value_input": { "adr": [ - 1734 + 2002 ], "dpr": [ - 1734 + 2002 ], "hltv_rating": [ - 1734 + 2002 ], "kast_pct": [ - 1734 + 2002 ], "kpr": [ - 1734 + 2002 ], "match_id": [ - 3319 + 3587 ], "rounds_played": [ 34 @@ -92866,19 +97812,19 @@ export default { }, "v_player_match_rating_sum_fields": { "adr": [ - 1734 + 2002 ], "dpr": [ - 1734 + 2002 ], "hltv_rating": [ - 1734 + 2002 ], "kast_pct": [ - 1734 + 2002 ], "kpr": [ - 1734 + 2002 ], "rounds_played": [ 34 @@ -92976,7 +97922,7 @@ export default { 162 ], "match_id": [ - 3319 + 3587 ], "round": [ 34 @@ -92987,10 +97933,10 @@ export default { }, "v_player_multi_kills_aggregate": { "aggregate": [ - 3760 + 4028 ], "nodes": [ - 3756 + 4024 ], "__typename": [ 63 @@ -92998,7 +97944,7 @@ export default { }, "v_player_multi_kills_aggregate_bool_exp": { "count": [ - 3759 + 4027 ], "__typename": [ 63 @@ -93006,13 +97952,13 @@ export default { }, "v_player_multi_kills_aggregate_bool_exp_count": { "arguments": [ - 3772 + 4040 ], "distinct": [ 3 ], "filter": [ - 3765 + 4033 ], "predicate": [ 35 @@ -93023,13 +97969,13 @@ export default { }, "v_player_multi_kills_aggregate_fields": { "avg": [ - 3763 + 4031 ], "count": [ 34, { "columns": [ - 3772, + 4040, "[v_player_multi_kills_select_column!]" ], "distinct": [ @@ -93038,31 +97984,31 @@ export default { } ], "max": [ - 3767 + 4035 ], "min": [ - 3769 + 4037 ], "stddev": [ - 3773 + 4041 ], "stddev_pop": [ - 3775 + 4043 ], "stddev_samp": [ - 3777 + 4045 ], "sum": [ - 3781 + 4049 ], "var_pop": [ - 3783 + 4051 ], "var_samp": [ - 3785 + 4053 ], "variance": [ - 3787 + 4055 ], "__typename": [ 63 @@ -93070,37 +98016,37 @@ export default { }, "v_player_multi_kills_aggregate_order_by": { "avg": [ - 3764 + 4032 ], "count": [ - 1736 + 2004 ], "max": [ - 3768 + 4036 ], "min": [ - 3770 + 4038 ], "stddev": [ - 3774 + 4042 ], "stddev_pop": [ - 3776 + 4044 ], "stddev_samp": [ - 3778 + 4046 ], "sum": [ - 3782 + 4050 ], "var_pop": [ - 3784 + 4052 ], "var_samp": [ - 3786 + 4054 ], "variance": [ - 3788 + 4056 ], "__typename": [ 63 @@ -93108,7 +98054,7 @@ export default { }, "v_player_multi_kills_arr_rel_insert_input": { "data": [ - 3766 + 4034 ], "__typename": [ 63 @@ -93130,13 +98076,13 @@ export default { }, "v_player_multi_kills_avg_order_by": { "attacker_steam_id": [ - 1736 + 2004 ], "kills": [ - 1736 + 2004 ], "round": [ - 1736 + 2004 ], "__typename": [ 63 @@ -93144,13 +98090,13 @@ export default { }, "v_player_multi_kills_bool_exp": { "_and": [ - 3765 + 4033 ], "_not": [ - 3765 + 4033 ], "_or": [ - 3765 + 4033 ], "attacker_steam_id": [ 163 @@ -93159,7 +98105,7 @@ export default { 163 ], "match_id": [ - 3320 + 3588 ], "round": [ 35 @@ -93176,7 +98122,7 @@ export default { 162 ], "match_id": [ - 3319 + 3587 ], "round": [ 34 @@ -93193,7 +98139,7 @@ export default { 162 ], "match_id": [ - 3319 + 3587 ], "round": [ 34 @@ -93204,16 +98150,16 @@ export default { }, "v_player_multi_kills_max_order_by": { "attacker_steam_id": [ - 1736 + 2004 ], "kills": [ - 1736 + 2004 ], "match_id": [ - 1736 + 2004 ], "round": [ - 1736 + 2004 ], "__typename": [ 63 @@ -93227,7 +98173,7 @@ export default { 162 ], "match_id": [ - 3319 + 3587 ], "round": [ 34 @@ -93238,16 +98184,16 @@ export default { }, "v_player_multi_kills_min_order_by": { "attacker_steam_id": [ - 1736 + 2004 ], "kills": [ - 1736 + 2004 ], "match_id": [ - 1736 + 2004 ], "round": [ - 1736 + 2004 ], "__typename": [ 63 @@ -93255,16 +98201,16 @@ export default { }, "v_player_multi_kills_order_by": { "attacker_steam_id": [ - 1736 + 2004 ], "kills": [ - 1736 + 2004 ], "match_id": [ - 1736 + 2004 ], "round": [ - 1736 + 2004 ], "__typename": [ 63 @@ -93287,13 +98233,13 @@ export default { }, "v_player_multi_kills_stddev_order_by": { "attacker_steam_id": [ - 1736 + 2004 ], "kills": [ - 1736 + 2004 ], "round": [ - 1736 + 2004 ], "__typename": [ 63 @@ -93315,13 +98261,13 @@ export default { }, "v_player_multi_kills_stddev_pop_order_by": { "attacker_steam_id": [ - 1736 + 2004 ], "kills": [ - 1736 + 2004 ], "round": [ - 1736 + 2004 ], "__typename": [ 63 @@ -93343,13 +98289,13 @@ export default { }, "v_player_multi_kills_stddev_samp_order_by": { "attacker_steam_id": [ - 1736 + 2004 ], "kills": [ - 1736 + 2004 ], "round": [ - 1736 + 2004 ], "__typename": [ 63 @@ -93357,7 +98303,7 @@ export default { }, "v_player_multi_kills_stream_cursor_input": { "initial_value": [ - 3780 + 4048 ], "ordering": [ 216 @@ -93374,7 +98320,7 @@ export default { 162 ], "match_id": [ - 3319 + 3587 ], "round": [ 34 @@ -93399,13 +98345,13 @@ export default { }, "v_player_multi_kills_sum_order_by": { "attacker_steam_id": [ - 1736 + 2004 ], "kills": [ - 1736 + 2004 ], "round": [ - 1736 + 2004 ], "__typename": [ 63 @@ -93427,13 +98373,13 @@ export default { }, "v_player_multi_kills_var_pop_order_by": { "attacker_steam_id": [ - 1736 + 2004 ], "kills": [ - 1736 + 2004 ], "round": [ - 1736 + 2004 ], "__typename": [ 63 @@ -93455,13 +98401,13 @@ export default { }, "v_player_multi_kills_var_samp_order_by": { "attacker_steam_id": [ - 1736 + 2004 ], "kills": [ - 1736 + 2004 ], "round": [ - 1736 + 2004 ], "__typename": [ 63 @@ -93483,13 +98429,13 @@ export default { }, "v_player_multi_kills_variance_order_by": { "attacker_steam_id": [ - 1736 + 2004 ], "kills": [ - 1736 + 2004 ], "round": [ - 1736 + 2004 ], "__typename": [ 63 @@ -93520,10 +98466,10 @@ export default { }, "v_player_weapon_damage_aggregate": { "aggregate": [ - 3791 + 4059 ], "nodes": [ - 3789 + 4057 ], "__typename": [ 63 @@ -93531,13 +98477,13 @@ export default { }, "v_player_weapon_damage_aggregate_fields": { "avg": [ - 3792 + 4060 ], "count": [ 34, { "columns": [ - 3797, + 4065, "[v_player_weapon_damage_select_column!]" ], "distinct": [ @@ -93546,31 +98492,31 @@ export default { } ], "max": [ - 3794 + 4062 ], "min": [ - 3795 + 4063 ], "stddev": [ - 3798 + 4066 ], "stddev_pop": [ - 3799 + 4067 ], "stddev_samp": [ - 3800 + 4068 ], "sum": [ - 3803 + 4071 ], "var_pop": [ - 3804 + 4072 ], "var_samp": [ - 3805 + 4073 ], "variance": [ - 3806 + 4074 ], "__typename": [ 63 @@ -93592,13 +98538,13 @@ export default { }, "v_player_weapon_damage_bool_exp": { "_and": [ - 3793 + 4061 ], "_not": [ - 3793 + 4061 ], "_or": [ - 3793 + 4061 ], "damage": [ 163 @@ -93670,22 +98616,22 @@ export default { }, "v_player_weapon_damage_order_by": { "damage": [ - 1736 + 2004 ], "hits": [ - 1736 + 2004 ], "player_steam_id": [ - 1736 + 2004 ], "source": [ - 1736 + 2004 ], "type": [ - 1736 + 2004 ], "with": [ - 1736 + 2004 ], "__typename": [ 63 @@ -93736,7 +98682,7 @@ export default { }, "v_player_weapon_damage_stream_cursor_input": { "initial_value": [ - 3802 + 4070 ], "ordering": [ 216 @@ -93849,10 +98795,10 @@ export default { }, "v_player_weapon_kills_aggregate": { "aggregate": [ - 3809 + 4077 ], "nodes": [ - 3807 + 4075 ], "__typename": [ 63 @@ -93860,13 +98806,13 @@ export default { }, "v_player_weapon_kills_aggregate_fields": { "avg": [ - 3810 + 4078 ], "count": [ 34, { "columns": [ - 3815, + 4083, "[v_player_weapon_kills_select_column!]" ], "distinct": [ @@ -93875,31 +98821,31 @@ export default { } ], "max": [ - 3812 + 4080 ], "min": [ - 3813 + 4081 ], "stddev": [ - 3816 + 4084 ], "stddev_pop": [ - 3817 + 4085 ], "stddev_samp": [ - 3818 + 4086 ], "sum": [ - 3821 + 4089 ], "var_pop": [ - 3822 + 4090 ], "var_samp": [ - 3823 + 4091 ], "variance": [ - 3824 + 4092 ], "__typename": [ 63 @@ -93921,13 +98867,13 @@ export default { }, "v_player_weapon_kills_bool_exp": { "_and": [ - 3811 + 4079 ], "_not": [ - 3811 + 4079 ], "_or": [ - 3811 + 4079 ], "kill_count": [ 163 @@ -93999,22 +98945,22 @@ export default { }, "v_player_weapon_kills_order_by": { "kill_count": [ - 1736 + 2004 ], "player_steam_id": [ - 1736 + 2004 ], "rounds": [ - 1736 + 2004 ], "source": [ - 1736 + 2004 ], "type": [ - 1736 + 2004 ], "with": [ - 1736 + 2004 ], "__typename": [ 63 @@ -94065,7 +99011,7 @@ export default { }, "v_player_weapon_kills_stream_cursor_input": { "initial_value": [ - 3820 + 4088 ], "ordering": [ 216 @@ -94158,16 +99104,16 @@ export default { 3 ], "id": [ - 3319 + 3587 ], "label": [ 63 ], "map_pool": [ - 1036 + 1277 ], "map_pool_id": [ - 3319 + 3587 ], "name": [ 63 @@ -94190,10 +99136,10 @@ export default { }, "v_pool_maps_aggregate": { "aggregate": [ - 3831 + 4099 ], "nodes": [ - 3825 + 4093 ], "__typename": [ 63 @@ -94201,13 +99147,13 @@ export default { }, "v_pool_maps_aggregate_bool_exp": { "bool_and": [ - 3828 + 4096 ], "bool_or": [ - 3829 + 4097 ], "count": [ - 3830 + 4098 ], "__typename": [ 63 @@ -94215,13 +99161,13 @@ export default { }, "v_pool_maps_aggregate_bool_exp_bool_and": { "arguments": [ - 3843 + 4111 ], "distinct": [ 3 ], "filter": [ - 3834 + 4102 ], "predicate": [ 4 @@ -94232,13 +99178,13 @@ export default { }, "v_pool_maps_aggregate_bool_exp_bool_or": { "arguments": [ - 3844 + 4112 ], "distinct": [ 3 ], "filter": [ - 3834 + 4102 ], "predicate": [ 4 @@ -94249,13 +99195,13 @@ export default { }, "v_pool_maps_aggregate_bool_exp_count": { "arguments": [ - 3842 + 4110 ], "distinct": [ 3 ], "filter": [ - 3834 + 4102 ], "predicate": [ 35 @@ -94269,7 +99215,7 @@ export default { 34, { "columns": [ - 3842, + 4110, "[v_pool_maps_select_column!]" ], "distinct": [ @@ -94278,10 +99224,10 @@ export default { } ], "max": [ - 3836 + 4104 ], "min": [ - 3838 + 4106 ], "__typename": [ 63 @@ -94289,13 +99235,13 @@ export default { }, "v_pool_maps_aggregate_order_by": { "count": [ - 1736 + 2004 ], "max": [ - 3837 + 4105 ], "min": [ - 3839 + 4107 ], "__typename": [ 63 @@ -94303,7 +99249,7 @@ export default { }, "v_pool_maps_arr_rel_insert_input": { "data": [ - 3835 + 4103 ], "__typename": [ 63 @@ -94311,28 +99257,28 @@ export default { }, "v_pool_maps_bool_exp": { "_and": [ - 3834 + 4102 ], "_not": [ - 3834 + 4102 ], "_or": [ - 3834 + 4102 ], "active_pool": [ 4 ], "id": [ - 3320 + 3588 ], "label": [ 65 ], "map_pool": [ - 1039 + 1280 ], "map_pool_id": [ - 3320 + 3588 ], "name": [ 65 @@ -94358,16 +99304,16 @@ export default { 3 ], "id": [ - 3319 + 3587 ], "label": [ 63 ], "map_pool": [ - 1045 + 1286 ], "map_pool_id": [ - 3319 + 3587 ], "name": [ 63 @@ -94390,13 +99336,13 @@ export default { }, "v_pool_maps_max_fields": { "id": [ - 3319 + 3587 ], "label": [ 63 ], "map_pool_id": [ - 3319 + 3587 ], "name": [ 63 @@ -94419,28 +99365,28 @@ export default { }, "v_pool_maps_max_order_by": { "id": [ - 1736 + 2004 ], "label": [ - 1736 + 2004 ], "map_pool_id": [ - 1736 + 2004 ], "name": [ - 1736 + 2004 ], "patch": [ - 1736 + 2004 ], "poster": [ - 1736 + 2004 ], "type": [ - 1736 + 2004 ], "workshop_map_id": [ - 1736 + 2004 ], "__typename": [ 63 @@ -94448,13 +99394,13 @@ export default { }, "v_pool_maps_min_fields": { "id": [ - 3319 + 3587 ], "label": [ 63 ], "map_pool_id": [ - 3319 + 3587 ], "name": [ 63 @@ -94477,28 +99423,28 @@ export default { }, "v_pool_maps_min_order_by": { "id": [ - 1736 + 2004 ], "label": [ - 1736 + 2004 ], "map_pool_id": [ - 1736 + 2004 ], "name": [ - 1736 + 2004 ], "patch": [ - 1736 + 2004 ], "poster": [ - 1736 + 2004 ], "type": [ - 1736 + 2004 ], "workshop_map_id": [ - 1736 + 2004 ], "__typename": [ 63 @@ -94509,7 +99455,7 @@ export default { 34 ], "returning": [ - 3825 + 4093 ], "__typename": [ 63 @@ -94517,34 +99463,34 @@ export default { }, "v_pool_maps_order_by": { "active_pool": [ - 1736 + 2004 ], "id": [ - 1736 + 2004 ], "label": [ - 1736 + 2004 ], "map_pool": [ - 1047 + 1288 ], "map_pool_id": [ - 1736 + 2004 ], "name": [ - 1736 + 2004 ], "patch": [ - 1736 + 2004 ], "poster": [ - 1736 + 2004 ], "type": [ - 1736 + 2004 ], "workshop_map_id": [ - 1736 + 2004 ], "__typename": [ 63 @@ -94558,13 +99504,13 @@ export default { 3 ], "id": [ - 3319 + 3587 ], "label": [ 63 ], "map_pool_id": [ - 3319 + 3587 ], "name": [ 63 @@ -94587,7 +99533,7 @@ export default { }, "v_pool_maps_stream_cursor_input": { "initial_value": [ - 3847 + 4115 ], "ordering": [ 216 @@ -94601,13 +99547,13 @@ export default { 3 ], "id": [ - 3319 + 3587 ], "label": [ 63 ], "map_pool_id": [ - 3319 + 3587 ], "name": [ 63 @@ -94630,10 +99576,10 @@ export default { }, "v_pool_maps_updates": { "_set": [ - 3845 + 4113 ], "where": [ - 3834 + 4102 ], "__typename": [ 63 @@ -94658,10 +99604,10 @@ export default { }, "v_steam_account_pool_status_aggregate": { "aggregate": [ - 3851 + 4119 ], "nodes": [ - 3849 + 4117 ], "__typename": [ 63 @@ -94669,13 +99615,13 @@ export default { }, "v_steam_account_pool_status_aggregate_fields": { "avg": [ - 3852 + 4120 ], "count": [ 34, { "columns": [ - 3857, + 4125, "[v_steam_account_pool_status_select_column!]" ], "distinct": [ @@ -94684,31 +99630,31 @@ export default { } ], "max": [ - 3854 + 4122 ], "min": [ - 3855 + 4123 ], "stddev": [ - 3858 + 4126 ], "stddev_pop": [ - 3859 + 4127 ], "stddev_samp": [ - 3860 + 4128 ], "sum": [ - 3863 + 4131 ], "var_pop": [ - 3864 + 4132 ], "var_samp": [ - 3865 + 4133 ], "variance": [ - 3866 + 4134 ], "__typename": [ 63 @@ -94733,13 +99679,13 @@ export default { }, "v_steam_account_pool_status_bool_exp": { "_and": [ - 3853 + 4121 ], "_not": [ - 3853 + 4121 ], "_or": [ - 3853 + 4121 ], "busy_accounts": [ 35 @@ -94793,16 +99739,16 @@ export default { }, "v_steam_account_pool_status_order_by": { "busy_accounts": [ - 1736 + 2004 ], "free_accounts": [ - 1736 + 2004 ], "id": [ - 1736 + 2004 ], "total_accounts": [ - 1736 + 2004 ], "__typename": [ 63 @@ -94862,7 +99808,7 @@ export default { }, "v_steam_account_pool_status_stream_cursor_input": { "initial_value": [ - 3862 + 4130 ], "ordering": [ 216 @@ -94994,13 +99940,13 @@ export default { 34 ], "stage": [ - 3011 + 3279 ], "team": [ - 3144 + 3412 ], "team_kdr": [ - 795 + 1036 ], "total_deaths": [ 34 @@ -95009,10 +99955,10 @@ export default { 34 ], "tournament_stage_id": [ - 3319 + 3587 ], "tournament_team_id": [ - 3319 + 3587 ], "wins": [ 34 @@ -95023,10 +99969,10 @@ export default { }, "v_team_stage_results_aggregate": { "aggregate": [ - 3881 + 4149 ], "nodes": [ - 3867 + 4135 ], "__typename": [ 63 @@ -95034,31 +99980,31 @@ export default { }, "v_team_stage_results_aggregate_bool_exp": { "avg": [ - 3870 + 4138 ], "corr": [ - 3871 + 4139 ], "count": [ - 3873 + 4141 ], "covar_samp": [ - 3874 + 4142 ], "max": [ - 3876 + 4144 ], "min": [ - 3877 + 4145 ], "stddev_samp": [ - 3878 + 4146 ], "sum": [ - 3879 + 4147 ], "var_samp": [ - 3880 + 4148 ], "__typename": [ 63 @@ -95066,16 +100012,16 @@ export default { }, "v_team_stage_results_aggregate_bool_exp_avg": { "arguments": [ - 3900 + 4168 ], "distinct": [ 3 ], "filter": [ - 3886 + 4154 ], "predicate": [ - 796 + 1037 ], "__typename": [ 63 @@ -95083,16 +100029,16 @@ export default { }, "v_team_stage_results_aggregate_bool_exp_corr": { "arguments": [ - 3872 + 4140 ], "distinct": [ 3 ], "filter": [ - 3886 + 4154 ], "predicate": [ - 796 + 1037 ], "__typename": [ 63 @@ -95100,10 +100046,10 @@ export default { }, "v_team_stage_results_aggregate_bool_exp_corr_arguments": { "X": [ - 3901 + 4169 ], "Y": [ - 3901 + 4169 ], "__typename": [ 63 @@ -95111,13 +100057,13 @@ export default { }, "v_team_stage_results_aggregate_bool_exp_count": { "arguments": [ - 3899 + 4167 ], "distinct": [ 3 ], "filter": [ - 3886 + 4154 ], "predicate": [ 35 @@ -95128,16 +100074,16 @@ export default { }, "v_team_stage_results_aggregate_bool_exp_covar_samp": { "arguments": [ - 3875 + 4143 ], "distinct": [ 3 ], "filter": [ - 3886 + 4154 ], "predicate": [ - 796 + 1037 ], "__typename": [ 63 @@ -95145,10 +100091,10 @@ export default { }, "v_team_stage_results_aggregate_bool_exp_covar_samp_arguments": { "X": [ - 3902 + 4170 ], "Y": [ - 3902 + 4170 ], "__typename": [ 63 @@ -95156,16 +100102,16 @@ export default { }, "v_team_stage_results_aggregate_bool_exp_max": { "arguments": [ - 3903 + 4171 ], "distinct": [ 3 ], "filter": [ - 3886 + 4154 ], "predicate": [ - 796 + 1037 ], "__typename": [ 63 @@ -95173,16 +100119,16 @@ export default { }, "v_team_stage_results_aggregate_bool_exp_min": { "arguments": [ - 3904 + 4172 ], "distinct": [ 3 ], "filter": [ - 3886 + 4154 ], "predicate": [ - 796 + 1037 ], "__typename": [ 63 @@ -95190,16 +100136,16 @@ export default { }, "v_team_stage_results_aggregate_bool_exp_stddev_samp": { "arguments": [ - 3905 + 4173 ], "distinct": [ 3 ], "filter": [ - 3886 + 4154 ], "predicate": [ - 796 + 1037 ], "__typename": [ 63 @@ -95207,16 +100153,16 @@ export default { }, "v_team_stage_results_aggregate_bool_exp_sum": { "arguments": [ - 3906 + 4174 ], "distinct": [ 3 ], "filter": [ - 3886 + 4154 ], "predicate": [ - 796 + 1037 ], "__typename": [ 63 @@ -95224,16 +100170,16 @@ export default { }, "v_team_stage_results_aggregate_bool_exp_var_samp": { "arguments": [ - 3907 + 4175 ], "distinct": [ 3 ], "filter": [ - 3886 + 4154 ], "predicate": [ - 796 + 1037 ], "__typename": [ 63 @@ -95241,13 +100187,13 @@ export default { }, "v_team_stage_results_aggregate_fields": { "avg": [ - 3884 + 4152 ], "count": [ 34, { "columns": [ - 3899, + 4167, "[v_team_stage_results_select_column!]" ], "distinct": [ @@ -95256,31 +100202,31 @@ export default { } ], "max": [ - 3890 + 4158 ], "min": [ - 3892 + 4160 ], "stddev": [ - 3909 + 4177 ], "stddev_pop": [ - 3911 + 4179 ], "stddev_samp": [ - 3913 + 4181 ], "sum": [ - 3917 + 4185 ], "var_pop": [ - 3921 + 4189 ], "var_samp": [ - 3923 + 4191 ], "variance": [ - 3925 + 4193 ], "__typename": [ 63 @@ -95288,37 +100234,37 @@ export default { }, "v_team_stage_results_aggregate_order_by": { "avg": [ - 3885 + 4153 ], "count": [ - 1736 + 2004 ], "max": [ - 3891 + 4159 ], "min": [ - 3893 + 4161 ], "stddev": [ - 3910 + 4178 ], "stddev_pop": [ - 3912 + 4180 ], "stddev_samp": [ - 3914 + 4182 ], "sum": [ - 3918 + 4186 ], "var_pop": [ - 3922 + 4190 ], "var_samp": [ - 3924 + 4192 ], "variance": [ - 3926 + 4194 ], "__typename": [ 63 @@ -95326,10 +100272,10 @@ export default { }, "v_team_stage_results_arr_rel_insert_input": { "data": [ - 3889 + 4157 ], "on_conflict": [ - 3896 + 4164 ], "__typename": [ 63 @@ -95390,52 +100336,52 @@ export default { }, "v_team_stage_results_avg_order_by": { "group_number": [ - 1736 + 2004 ], "head_to_head_match_wins": [ - 1736 + 2004 ], "head_to_head_rounds_won": [ - 1736 + 2004 ], "losses": [ - 1736 + 2004 ], "maps_lost": [ - 1736 + 2004 ], "maps_won": [ - 1736 + 2004 ], "matches_played": [ - 1736 + 2004 ], "matches_remaining": [ - 1736 + 2004 ], "placement": [ - 1736 + 2004 ], "rank": [ - 1736 + 2004 ], "rounds_lost": [ - 1736 + 2004 ], "rounds_won": [ - 1736 + 2004 ], "team_kdr": [ - 1736 + 2004 ], "total_deaths": [ - 1736 + 2004 ], "total_kills": [ - 1736 + 2004 ], "wins": [ - 1736 + 2004 ], "__typename": [ 63 @@ -95443,13 +100389,13 @@ export default { }, "v_team_stage_results_bool_exp": { "_and": [ - 3886 + 4154 ], "_not": [ - 3886 + 4154 ], "_or": [ - 3886 + 4154 ], "group_number": [ 35 @@ -95488,13 +100434,13 @@ export default { 35 ], "stage": [ - 3023 + 3291 ], "team": [ - 3153 + 3421 ], "team_kdr": [ - 796 + 1037 ], "total_deaths": [ 35 @@ -95503,10 +100449,10 @@ export default { 35 ], "tournament_stage_id": [ - 3320 + 3588 ], "tournament_team_id": [ - 3320 + 3588 ], "wins": [ 35 @@ -95554,7 +100500,7 @@ export default { 34 ], "team_kdr": [ - 795 + 1036 ], "total_deaths": [ 34 @@ -95607,13 +100553,13 @@ export default { 34 ], "stage": [ - 3035 + 3303 ], "team": [ - 3162 + 3430 ], "team_kdr": [ - 795 + 1036 ], "total_deaths": [ 34 @@ -95622,10 +100568,10 @@ export default { 34 ], "tournament_stage_id": [ - 3319 + 3587 ], "tournament_team_id": [ - 3319 + 3587 ], "wins": [ 34 @@ -95672,7 +100618,7 @@ export default { 34 ], "team_kdr": [ - 795 + 1036 ], "total_deaths": [ 34 @@ -95681,10 +100627,10 @@ export default { 34 ], "tournament_stage_id": [ - 3319 + 3587 ], "tournament_team_id": [ - 3319 + 3587 ], "wins": [ 34 @@ -95695,58 +100641,58 @@ export default { }, "v_team_stage_results_max_order_by": { "group_number": [ - 1736 + 2004 ], "head_to_head_match_wins": [ - 1736 + 2004 ], "head_to_head_rounds_won": [ - 1736 + 2004 ], "losses": [ - 1736 + 2004 ], "maps_lost": [ - 1736 + 2004 ], "maps_won": [ - 1736 + 2004 ], "matches_played": [ - 1736 + 2004 ], "matches_remaining": [ - 1736 + 2004 ], "placement": [ - 1736 + 2004 ], "rank": [ - 1736 + 2004 ], "rounds_lost": [ - 1736 + 2004 ], "rounds_won": [ - 1736 + 2004 ], "team_kdr": [ - 1736 + 2004 ], "total_deaths": [ - 1736 + 2004 ], "total_kills": [ - 1736 + 2004 ], "tournament_stage_id": [ - 1736 + 2004 ], "tournament_team_id": [ - 1736 + 2004 ], "wins": [ - 1736 + 2004 ], "__typename": [ 63 @@ -95790,7 +100736,7 @@ export default { 34 ], "team_kdr": [ - 795 + 1036 ], "total_deaths": [ 34 @@ -95799,10 +100745,10 @@ export default { 34 ], "tournament_stage_id": [ - 3319 + 3587 ], "tournament_team_id": [ - 3319 + 3587 ], "wins": [ 34 @@ -95813,58 +100759,58 @@ export default { }, "v_team_stage_results_min_order_by": { "group_number": [ - 1736 + 2004 ], "head_to_head_match_wins": [ - 1736 + 2004 ], "head_to_head_rounds_won": [ - 1736 + 2004 ], "losses": [ - 1736 + 2004 ], "maps_lost": [ - 1736 + 2004 ], "maps_won": [ - 1736 + 2004 ], "matches_played": [ - 1736 + 2004 ], "matches_remaining": [ - 1736 + 2004 ], "placement": [ - 1736 + 2004 ], "rank": [ - 1736 + 2004 ], "rounds_lost": [ - 1736 + 2004 ], "rounds_won": [ - 1736 + 2004 ], "team_kdr": [ - 1736 + 2004 ], "total_deaths": [ - 1736 + 2004 ], "total_kills": [ - 1736 + 2004 ], "tournament_stage_id": [ - 1736 + 2004 ], "tournament_team_id": [ - 1736 + 2004 ], "wins": [ - 1736 + 2004 ], "__typename": [ 63 @@ -95875,7 +100821,7 @@ export default { 34 ], "returning": [ - 3867 + 4135 ], "__typename": [ 63 @@ -95883,10 +100829,10 @@ export default { }, "v_team_stage_results_obj_rel_insert_input": { "data": [ - 3889 + 4157 ], "on_conflict": [ - 3896 + 4164 ], "__typename": [ 63 @@ -95894,13 +100840,13 @@ export default { }, "v_team_stage_results_on_conflict": { "constraint": [ - 3887 + 4155 ], "update_columns": [ - 3919 + 4187 ], "where": [ - 3886 + 4154 ], "__typename": [ 63 @@ -95908,64 +100854,64 @@ export default { }, "v_team_stage_results_order_by": { "group_number": [ - 1736 + 2004 ], "head_to_head_match_wins": [ - 1736 + 2004 ], "head_to_head_rounds_won": [ - 1736 + 2004 ], "losses": [ - 1736 + 2004 ], "maps_lost": [ - 1736 + 2004 ], "maps_won": [ - 1736 + 2004 ], "matches_played": [ - 1736 + 2004 ], "matches_remaining": [ - 1736 + 2004 ], "placement": [ - 1736 + 2004 ], "rank": [ - 1736 + 2004 ], "rounds_lost": [ - 1736 + 2004 ], "rounds_won": [ - 1736 + 2004 ], "stage": [ - 3037 + 3305 ], "team": [ - 3164 + 3432 ], "team_kdr": [ - 1736 + 2004 ], "total_deaths": [ - 1736 + 2004 ], "total_kills": [ - 1736 + 2004 ], "tournament_stage_id": [ - 1736 + 2004 ], "tournament_team_id": [ - 1736 + 2004 ], "wins": [ - 1736 + 2004 ], "__typename": [ 63 @@ -95973,10 +100919,10 @@ export default { }, "v_team_stage_results_pk_columns_input": { "tournament_stage_id": [ - 3319 + 3587 ], "tournament_team_id": [ - 3319 + 3587 ], "__typename": [ 63 @@ -96029,7 +100975,7 @@ export default { 34 ], "team_kdr": [ - 795 + 1036 ], "total_deaths": [ 34 @@ -96038,10 +100984,10 @@ export default { 34 ], "tournament_stage_id": [ - 3319 + 3587 ], "tournament_team_id": [ - 3319 + 3587 ], "wins": [ 34 @@ -96105,52 +101051,52 @@ export default { }, "v_team_stage_results_stddev_order_by": { "group_number": [ - 1736 + 2004 ], "head_to_head_match_wins": [ - 1736 + 2004 ], "head_to_head_rounds_won": [ - 1736 + 2004 ], "losses": [ - 1736 + 2004 ], "maps_lost": [ - 1736 + 2004 ], "maps_won": [ - 1736 + 2004 ], "matches_played": [ - 1736 + 2004 ], "matches_remaining": [ - 1736 + 2004 ], "placement": [ - 1736 + 2004 ], "rank": [ - 1736 + 2004 ], "rounds_lost": [ - 1736 + 2004 ], "rounds_won": [ - 1736 + 2004 ], "team_kdr": [ - 1736 + 2004 ], "total_deaths": [ - 1736 + 2004 ], "total_kills": [ - 1736 + 2004 ], "wins": [ - 1736 + 2004 ], "__typename": [ 63 @@ -96211,52 +101157,52 @@ export default { }, "v_team_stage_results_stddev_pop_order_by": { "group_number": [ - 1736 + 2004 ], "head_to_head_match_wins": [ - 1736 + 2004 ], "head_to_head_rounds_won": [ - 1736 + 2004 ], "losses": [ - 1736 + 2004 ], "maps_lost": [ - 1736 + 2004 ], "maps_won": [ - 1736 + 2004 ], "matches_played": [ - 1736 + 2004 ], "matches_remaining": [ - 1736 + 2004 ], "placement": [ - 1736 + 2004 ], "rank": [ - 1736 + 2004 ], "rounds_lost": [ - 1736 + 2004 ], "rounds_won": [ - 1736 + 2004 ], "team_kdr": [ - 1736 + 2004 ], "total_deaths": [ - 1736 + 2004 ], "total_kills": [ - 1736 + 2004 ], "wins": [ - 1736 + 2004 ], "__typename": [ 63 @@ -96317,52 +101263,52 @@ export default { }, "v_team_stage_results_stddev_samp_order_by": { "group_number": [ - 1736 + 2004 ], "head_to_head_match_wins": [ - 1736 + 2004 ], "head_to_head_rounds_won": [ - 1736 + 2004 ], "losses": [ - 1736 + 2004 ], "maps_lost": [ - 1736 + 2004 ], "maps_won": [ - 1736 + 2004 ], "matches_played": [ - 1736 + 2004 ], "matches_remaining": [ - 1736 + 2004 ], "placement": [ - 1736 + 2004 ], "rank": [ - 1736 + 2004 ], "rounds_lost": [ - 1736 + 2004 ], "rounds_won": [ - 1736 + 2004 ], "team_kdr": [ - 1736 + 2004 ], "total_deaths": [ - 1736 + 2004 ], "total_kills": [ - 1736 + 2004 ], "wins": [ - 1736 + 2004 ], "__typename": [ 63 @@ -96370,7 +101316,7 @@ export default { }, "v_team_stage_results_stream_cursor_input": { "initial_value": [ - 3916 + 4184 ], "ordering": [ 216 @@ -96417,7 +101363,7 @@ export default { 34 ], "team_kdr": [ - 795 + 1036 ], "total_deaths": [ 34 @@ -96426,10 +101372,10 @@ export default { 34 ], "tournament_stage_id": [ - 3319 + 3587 ], "tournament_team_id": [ - 3319 + 3587 ], "wins": [ 34 @@ -96476,7 +101422,7 @@ export default { 34 ], "team_kdr": [ - 795 + 1036 ], "total_deaths": [ 34 @@ -96493,52 +101439,52 @@ export default { }, "v_team_stage_results_sum_order_by": { "group_number": [ - 1736 + 2004 ], "head_to_head_match_wins": [ - 1736 + 2004 ], "head_to_head_rounds_won": [ - 1736 + 2004 ], "losses": [ - 1736 + 2004 ], "maps_lost": [ - 1736 + 2004 ], "maps_won": [ - 1736 + 2004 ], "matches_played": [ - 1736 + 2004 ], "matches_remaining": [ - 1736 + 2004 ], "placement": [ - 1736 + 2004 ], "rank": [ - 1736 + 2004 ], "rounds_lost": [ - 1736 + 2004 ], "rounds_won": [ - 1736 + 2004 ], "team_kdr": [ - 1736 + 2004 ], "total_deaths": [ - 1736 + 2004 ], "total_kills": [ - 1736 + 2004 ], "wins": [ - 1736 + 2004 ], "__typename": [ 63 @@ -96547,13 +101493,13 @@ export default { "v_team_stage_results_update_column": {}, "v_team_stage_results_updates": { "_inc": [ - 3888 + 4156 ], "_set": [ - 3908 + 4176 ], "where": [ - 3886 + 4154 ], "__typename": [ 63 @@ -96614,52 +101560,52 @@ export default { }, "v_team_stage_results_var_pop_order_by": { "group_number": [ - 1736 + 2004 ], "head_to_head_match_wins": [ - 1736 + 2004 ], "head_to_head_rounds_won": [ - 1736 + 2004 ], "losses": [ - 1736 + 2004 ], "maps_lost": [ - 1736 + 2004 ], "maps_won": [ - 1736 + 2004 ], "matches_played": [ - 1736 + 2004 ], "matches_remaining": [ - 1736 + 2004 ], "placement": [ - 1736 + 2004 ], "rank": [ - 1736 + 2004 ], "rounds_lost": [ - 1736 + 2004 ], "rounds_won": [ - 1736 + 2004 ], "team_kdr": [ - 1736 + 2004 ], "total_deaths": [ - 1736 + 2004 ], "total_kills": [ - 1736 + 2004 ], "wins": [ - 1736 + 2004 ], "__typename": [ 63 @@ -96720,52 +101666,52 @@ export default { }, "v_team_stage_results_var_samp_order_by": { "group_number": [ - 1736 + 2004 ], "head_to_head_match_wins": [ - 1736 + 2004 ], "head_to_head_rounds_won": [ - 1736 + 2004 ], "losses": [ - 1736 + 2004 ], "maps_lost": [ - 1736 + 2004 ], "maps_won": [ - 1736 + 2004 ], "matches_played": [ - 1736 + 2004 ], "matches_remaining": [ - 1736 + 2004 ], "placement": [ - 1736 + 2004 ], "rank": [ - 1736 + 2004 ], "rounds_lost": [ - 1736 + 2004 ], "rounds_won": [ - 1736 + 2004 ], "team_kdr": [ - 1736 + 2004 ], "total_deaths": [ - 1736 + 2004 ], "total_kills": [ - 1736 + 2004 ], "wins": [ - 1736 + 2004 ], "__typename": [ 63 @@ -96826,52 +101772,52 @@ export default { }, "v_team_stage_results_variance_order_by": { "group_number": [ - 1736 + 2004 ], "head_to_head_match_wins": [ - 1736 + 2004 ], "head_to_head_rounds_won": [ - 1736 + 2004 ], "losses": [ - 1736 + 2004 ], "maps_lost": [ - 1736 + 2004 ], "maps_won": [ - 1736 + 2004 ], "matches_played": [ - 1736 + 2004 ], "matches_remaining": [ - 1736 + 2004 ], "placement": [ - 1736 + 2004 ], "rank": [ - 1736 + 2004 ], "rounds_lost": [ - 1736 + 2004 ], "rounds_won": [ - 1736 + 2004 ], "team_kdr": [ - 1736 + 2004 ], "total_deaths": [ - 1736 + 2004 ], "total_kills": [ - 1736 + 2004 ], "wins": [ - 1736 + 2004 ], "__typename": [ 63 @@ -96906,10 +101852,10 @@ export default { 34 ], "team": [ - 3144 + 3412 ], "team_kdr": [ - 795 + 1036 ], "total_deaths": [ 34 @@ -96918,13 +101864,13 @@ export default { 34 ], "tournament": [ - 3273 + 3541 ], "tournament_id": [ - 3319 + 3587 ], "tournament_team_id": [ - 3319 + 3587 ], "wins": [ 34 @@ -96935,10 +101881,10 @@ export default { }, "v_team_tournament_results_aggregate": { "aggregate": [ - 3941 + 4209 ], "nodes": [ - 3927 + 4195 ], "__typename": [ 63 @@ -96946,31 +101892,31 @@ export default { }, "v_team_tournament_results_aggregate_bool_exp": { "avg": [ - 3930 + 4198 ], "corr": [ - 3931 + 4199 ], "count": [ - 3933 + 4201 ], "covar_samp": [ - 3934 + 4202 ], "max": [ - 3936 + 4204 ], "min": [ - 3937 + 4205 ], "stddev_samp": [ - 3938 + 4206 ], "sum": [ - 3939 + 4207 ], "var_samp": [ - 3940 + 4208 ], "__typename": [ 63 @@ -96978,16 +101924,16 @@ export default { }, "v_team_tournament_results_aggregate_bool_exp_avg": { "arguments": [ - 3954 + 4222 ], "distinct": [ 3 ], "filter": [ - 3946 + 4214 ], "predicate": [ - 796 + 1037 ], "__typename": [ 63 @@ -96995,16 +101941,16 @@ export default { }, "v_team_tournament_results_aggregate_bool_exp_corr": { "arguments": [ - 3932 + 4200 ], "distinct": [ 3 ], "filter": [ - 3946 + 4214 ], "predicate": [ - 796 + 1037 ], "__typename": [ 63 @@ -97012,10 +101958,10 @@ export default { }, "v_team_tournament_results_aggregate_bool_exp_corr_arguments": { "X": [ - 3955 + 4223 ], "Y": [ - 3955 + 4223 ], "__typename": [ 63 @@ -97023,13 +101969,13 @@ export default { }, "v_team_tournament_results_aggregate_bool_exp_count": { "arguments": [ - 3953 + 4221 ], "distinct": [ 3 ], "filter": [ - 3946 + 4214 ], "predicate": [ 35 @@ -97040,16 +101986,16 @@ export default { }, "v_team_tournament_results_aggregate_bool_exp_covar_samp": { "arguments": [ - 3935 + 4203 ], "distinct": [ 3 ], "filter": [ - 3946 + 4214 ], "predicate": [ - 796 + 1037 ], "__typename": [ 63 @@ -97057,10 +102003,10 @@ export default { }, "v_team_tournament_results_aggregate_bool_exp_covar_samp_arguments": { "X": [ - 3956 + 4224 ], "Y": [ - 3956 + 4224 ], "__typename": [ 63 @@ -97068,16 +102014,16 @@ export default { }, "v_team_tournament_results_aggregate_bool_exp_max": { "arguments": [ - 3957 + 4225 ], "distinct": [ 3 ], "filter": [ - 3946 + 4214 ], "predicate": [ - 796 + 1037 ], "__typename": [ 63 @@ -97085,16 +102031,16 @@ export default { }, "v_team_tournament_results_aggregate_bool_exp_min": { "arguments": [ - 3958 + 4226 ], "distinct": [ 3 ], "filter": [ - 3946 + 4214 ], "predicate": [ - 796 + 1037 ], "__typename": [ 63 @@ -97102,16 +102048,16 @@ export default { }, "v_team_tournament_results_aggregate_bool_exp_stddev_samp": { "arguments": [ - 3959 + 4227 ], "distinct": [ 3 ], "filter": [ - 3946 + 4214 ], "predicate": [ - 796 + 1037 ], "__typename": [ 63 @@ -97119,16 +102065,16 @@ export default { }, "v_team_tournament_results_aggregate_bool_exp_sum": { "arguments": [ - 3960 + 4228 ], "distinct": [ 3 ], "filter": [ - 3946 + 4214 ], "predicate": [ - 796 + 1037 ], "__typename": [ 63 @@ -97136,16 +102082,16 @@ export default { }, "v_team_tournament_results_aggregate_bool_exp_var_samp": { "arguments": [ - 3961 + 4229 ], "distinct": [ 3 ], "filter": [ - 3946 + 4214 ], "predicate": [ - 796 + 1037 ], "__typename": [ 63 @@ -97153,13 +102099,13 @@ export default { }, "v_team_tournament_results_aggregate_fields": { "avg": [ - 3944 + 4212 ], "count": [ 34, { "columns": [ - 3953, + 4221, "[v_team_tournament_results_select_column!]" ], "distinct": [ @@ -97168,31 +102114,31 @@ export default { } ], "max": [ - 3948 + 4216 ], "min": [ - 3950 + 4218 ], "stddev": [ - 3962 + 4230 ], "stddev_pop": [ - 3964 + 4232 ], "stddev_samp": [ - 3966 + 4234 ], "sum": [ - 3970 + 4238 ], "var_pop": [ - 3972 + 4240 ], "var_samp": [ - 3974 + 4242 ], "variance": [ - 3976 + 4244 ], "__typename": [ 63 @@ -97200,37 +102146,37 @@ export default { }, "v_team_tournament_results_aggregate_order_by": { "avg": [ - 3945 + 4213 ], "count": [ - 1736 + 2004 ], "max": [ - 3949 + 4217 ], "min": [ - 3951 + 4219 ], "stddev": [ - 3963 + 4231 ], "stddev_pop": [ - 3965 + 4233 ], "stddev_samp": [ - 3967 + 4235 ], "sum": [ - 3971 + 4239 ], "var_pop": [ - 3973 + 4241 ], "var_samp": [ - 3975 + 4243 ], "variance": [ - 3977 + 4245 ], "__typename": [ 63 @@ -97238,7 +102184,7 @@ export default { }, "v_team_tournament_results_arr_rel_insert_input": { "data": [ - 3947 + 4215 ], "__typename": [ 63 @@ -97290,43 +102236,43 @@ export default { }, "v_team_tournament_results_avg_order_by": { "head_to_head_match_wins": [ - 1736 + 2004 ], "head_to_head_rounds_won": [ - 1736 + 2004 ], "losses": [ - 1736 + 2004 ], "maps_lost": [ - 1736 + 2004 ], "maps_won": [ - 1736 + 2004 ], "matches_played": [ - 1736 + 2004 ], "matches_remaining": [ - 1736 + 2004 ], "rounds_lost": [ - 1736 + 2004 ], "rounds_won": [ - 1736 + 2004 ], "team_kdr": [ - 1736 + 2004 ], "total_deaths": [ - 1736 + 2004 ], "total_kills": [ - 1736 + 2004 ], "wins": [ - 1736 + 2004 ], "__typename": [ 63 @@ -97334,13 +102280,13 @@ export default { }, "v_team_tournament_results_bool_exp": { "_and": [ - 3946 + 4214 ], "_not": [ - 3946 + 4214 ], "_or": [ - 3946 + 4214 ], "head_to_head_match_wins": [ 35 @@ -97370,10 +102316,10 @@ export default { 35 ], "team": [ - 3153 + 3421 ], "team_kdr": [ - 796 + 1037 ], "total_deaths": [ 35 @@ -97382,13 +102328,13 @@ export default { 35 ], "tournament": [ - 3284 + 3552 ], "tournament_id": [ - 3320 + 3588 ], "tournament_team_id": [ - 3320 + 3588 ], "wins": [ 35 @@ -97426,10 +102372,10 @@ export default { 34 ], "team": [ - 3162 + 3430 ], "team_kdr": [ - 795 + 1036 ], "total_deaths": [ 34 @@ -97438,13 +102384,13 @@ export default { 34 ], "tournament": [ - 3293 + 3561 ], "tournament_id": [ - 3319 + 3587 ], "tournament_team_id": [ - 3319 + 3587 ], "wins": [ 34 @@ -97482,7 +102428,7 @@ export default { 34 ], "team_kdr": [ - 795 + 1036 ], "total_deaths": [ 34 @@ -97491,10 +102437,10 @@ export default { 34 ], "tournament_id": [ - 3319 + 3587 ], "tournament_team_id": [ - 3319 + 3587 ], "wins": [ 34 @@ -97505,49 +102451,49 @@ export default { }, "v_team_tournament_results_max_order_by": { "head_to_head_match_wins": [ - 1736 + 2004 ], "head_to_head_rounds_won": [ - 1736 + 2004 ], "losses": [ - 1736 + 2004 ], "maps_lost": [ - 1736 + 2004 ], "maps_won": [ - 1736 + 2004 ], "matches_played": [ - 1736 + 2004 ], "matches_remaining": [ - 1736 + 2004 ], "rounds_lost": [ - 1736 + 2004 ], "rounds_won": [ - 1736 + 2004 ], "team_kdr": [ - 1736 + 2004 ], "total_deaths": [ - 1736 + 2004 ], "total_kills": [ - 1736 + 2004 ], "tournament_id": [ - 1736 + 2004 ], "tournament_team_id": [ - 1736 + 2004 ], "wins": [ - 1736 + 2004 ], "__typename": [ 63 @@ -97582,7 +102528,7 @@ export default { 34 ], "team_kdr": [ - 795 + 1036 ], "total_deaths": [ 34 @@ -97591,10 +102537,10 @@ export default { 34 ], "tournament_id": [ - 3319 + 3587 ], "tournament_team_id": [ - 3319 + 3587 ], "wins": [ 34 @@ -97605,49 +102551,49 @@ export default { }, "v_team_tournament_results_min_order_by": { "head_to_head_match_wins": [ - 1736 + 2004 ], "head_to_head_rounds_won": [ - 1736 + 2004 ], "losses": [ - 1736 + 2004 ], "maps_lost": [ - 1736 + 2004 ], "maps_won": [ - 1736 + 2004 ], "matches_played": [ - 1736 + 2004 ], "matches_remaining": [ - 1736 + 2004 ], "rounds_lost": [ - 1736 + 2004 ], "rounds_won": [ - 1736 + 2004 ], "team_kdr": [ - 1736 + 2004 ], "total_deaths": [ - 1736 + 2004 ], "total_kills": [ - 1736 + 2004 ], "tournament_id": [ - 1736 + 2004 ], "tournament_team_id": [ - 1736 + 2004 ], "wins": [ - 1736 + 2004 ], "__typename": [ 63 @@ -97655,55 +102601,55 @@ export default { }, "v_team_tournament_results_order_by": { "head_to_head_match_wins": [ - 1736 + 2004 ], "head_to_head_rounds_won": [ - 1736 + 2004 ], "losses": [ - 1736 + 2004 ], "maps_lost": [ - 1736 + 2004 ], "maps_won": [ - 1736 + 2004 ], "matches_played": [ - 1736 + 2004 ], "matches_remaining": [ - 1736 + 2004 ], "rounds_lost": [ - 1736 + 2004 ], "rounds_won": [ - 1736 + 2004 ], "team": [ - 3164 + 3432 ], "team_kdr": [ - 1736 + 2004 ], "total_deaths": [ - 1736 + 2004 ], "total_kills": [ - 1736 + 2004 ], "tournament": [ - 3295 + 3563 ], "tournament_id": [ - 1736 + 2004 ], "tournament_team_id": [ - 1736 + 2004 ], "wins": [ - 1736 + 2004 ], "__typename": [ 63 @@ -97764,43 +102710,43 @@ export default { }, "v_team_tournament_results_stddev_order_by": { "head_to_head_match_wins": [ - 1736 + 2004 ], "head_to_head_rounds_won": [ - 1736 + 2004 ], "losses": [ - 1736 + 2004 ], "maps_lost": [ - 1736 + 2004 ], "maps_won": [ - 1736 + 2004 ], "matches_played": [ - 1736 + 2004 ], "matches_remaining": [ - 1736 + 2004 ], "rounds_lost": [ - 1736 + 2004 ], "rounds_won": [ - 1736 + 2004 ], "team_kdr": [ - 1736 + 2004 ], "total_deaths": [ - 1736 + 2004 ], "total_kills": [ - 1736 + 2004 ], "wins": [ - 1736 + 2004 ], "__typename": [ 63 @@ -97852,43 +102798,43 @@ export default { }, "v_team_tournament_results_stddev_pop_order_by": { "head_to_head_match_wins": [ - 1736 + 2004 ], "head_to_head_rounds_won": [ - 1736 + 2004 ], "losses": [ - 1736 + 2004 ], "maps_lost": [ - 1736 + 2004 ], "maps_won": [ - 1736 + 2004 ], "matches_played": [ - 1736 + 2004 ], "matches_remaining": [ - 1736 + 2004 ], "rounds_lost": [ - 1736 + 2004 ], "rounds_won": [ - 1736 + 2004 ], "team_kdr": [ - 1736 + 2004 ], "total_deaths": [ - 1736 + 2004 ], "total_kills": [ - 1736 + 2004 ], "wins": [ - 1736 + 2004 ], "__typename": [ 63 @@ -97940,43 +102886,43 @@ export default { }, "v_team_tournament_results_stddev_samp_order_by": { "head_to_head_match_wins": [ - 1736 + 2004 ], "head_to_head_rounds_won": [ - 1736 + 2004 ], "losses": [ - 1736 + 2004 ], "maps_lost": [ - 1736 + 2004 ], "maps_won": [ - 1736 + 2004 ], "matches_played": [ - 1736 + 2004 ], "matches_remaining": [ - 1736 + 2004 ], "rounds_lost": [ - 1736 + 2004 ], "rounds_won": [ - 1736 + 2004 ], "team_kdr": [ - 1736 + 2004 ], "total_deaths": [ - 1736 + 2004 ], "total_kills": [ - 1736 + 2004 ], "wins": [ - 1736 + 2004 ], "__typename": [ 63 @@ -97984,7 +102930,7 @@ export default { }, "v_team_tournament_results_stream_cursor_input": { "initial_value": [ - 3969 + 4237 ], "ordering": [ 216 @@ -98022,7 +102968,7 @@ export default { 34 ], "team_kdr": [ - 795 + 1036 ], "total_deaths": [ 34 @@ -98031,10 +102977,10 @@ export default { 34 ], "tournament_id": [ - 3319 + 3587 ], "tournament_team_id": [ - 3319 + 3587 ], "wins": [ 34 @@ -98072,7 +103018,7 @@ export default { 34 ], "team_kdr": [ - 795 + 1036 ], "total_deaths": [ 34 @@ -98089,43 +103035,43 @@ export default { }, "v_team_tournament_results_sum_order_by": { "head_to_head_match_wins": [ - 1736 + 2004 ], "head_to_head_rounds_won": [ - 1736 + 2004 ], "losses": [ - 1736 + 2004 ], "maps_lost": [ - 1736 + 2004 ], "maps_won": [ - 1736 + 2004 ], "matches_played": [ - 1736 + 2004 ], "matches_remaining": [ - 1736 + 2004 ], "rounds_lost": [ - 1736 + 2004 ], "rounds_won": [ - 1736 + 2004 ], "team_kdr": [ - 1736 + 2004 ], "total_deaths": [ - 1736 + 2004 ], "total_kills": [ - 1736 + 2004 ], "wins": [ - 1736 + 2004 ], "__typename": [ 63 @@ -98177,43 +103123,43 @@ export default { }, "v_team_tournament_results_var_pop_order_by": { "head_to_head_match_wins": [ - 1736 + 2004 ], "head_to_head_rounds_won": [ - 1736 + 2004 ], "losses": [ - 1736 + 2004 ], "maps_lost": [ - 1736 + 2004 ], "maps_won": [ - 1736 + 2004 ], "matches_played": [ - 1736 + 2004 ], "matches_remaining": [ - 1736 + 2004 ], "rounds_lost": [ - 1736 + 2004 ], "rounds_won": [ - 1736 + 2004 ], "team_kdr": [ - 1736 + 2004 ], "total_deaths": [ - 1736 + 2004 ], "total_kills": [ - 1736 + 2004 ], "wins": [ - 1736 + 2004 ], "__typename": [ 63 @@ -98265,43 +103211,43 @@ export default { }, "v_team_tournament_results_var_samp_order_by": { "head_to_head_match_wins": [ - 1736 + 2004 ], "head_to_head_rounds_won": [ - 1736 + 2004 ], "losses": [ - 1736 + 2004 ], "maps_lost": [ - 1736 + 2004 ], "maps_won": [ - 1736 + 2004 ], "matches_played": [ - 1736 + 2004 ], "matches_remaining": [ - 1736 + 2004 ], "rounds_lost": [ - 1736 + 2004 ], "rounds_won": [ - 1736 + 2004 ], "team_kdr": [ - 1736 + 2004 ], "total_deaths": [ - 1736 + 2004 ], "total_kills": [ - 1736 + 2004 ], "wins": [ - 1736 + 2004 ], "__typename": [ 63 @@ -98353,43 +103299,43 @@ export default { }, "v_team_tournament_results_variance_order_by": { "head_to_head_match_wins": [ - 1736 + 2004 ], "head_to_head_rounds_won": [ - 1736 + 2004 ], "losses": [ - 1736 + 2004 ], "maps_lost": [ - 1736 + 2004 ], "maps_won": [ - 1736 + 2004 ], "matches_played": [ - 1736 + 2004 ], "matches_remaining": [ - 1736 + 2004 ], "rounds_lost": [ - 1736 + 2004 ], "rounds_won": [ - 1736 + 2004 ], "team_kdr": [ - 1736 + 2004 ], "total_deaths": [ - 1736 + 2004 ], "total_kills": [ - 1736 + 2004 ], "wins": [ - 1736 + 2004 ], "__typename": [ 63 @@ -98403,13 +103349,13 @@ export default { 34 ], "headshot_percentage": [ - 795 + 1036 ], "headshots": [ 34 ], "kdr": [ - 795 + 1036 ], "kills": [ 34 @@ -98418,16 +103364,16 @@ export default { 34 ], "player": [ - 2603 + 2871 ], "player_steam_id": [ 162 ], "tournament": [ - 3273 + 3541 ], "tournament_id": [ - 3319 + 3587 ], "__typename": [ 63 @@ -98435,10 +103381,10 @@ export default { }, "v_tournament_player_stats_aggregate": { "aggregate": [ - 3992 + 4260 ], "nodes": [ - 3978 + 4246 ], "__typename": [ 63 @@ -98446,31 +103392,31 @@ export default { }, "v_tournament_player_stats_aggregate_bool_exp": { "avg": [ - 3981 + 4249 ], "corr": [ - 3982 + 4250 ], "count": [ - 3984 + 4252 ], "covar_samp": [ - 3985 + 4253 ], "max": [ - 3987 + 4255 ], "min": [ - 3988 + 4256 ], "stddev_samp": [ - 3989 + 4257 ], "sum": [ - 3990 + 4258 ], "var_samp": [ - 3991 + 4259 ], "__typename": [ 63 @@ -98478,16 +103424,16 @@ export default { }, "v_tournament_player_stats_aggregate_bool_exp_avg": { "arguments": [ - 4005 + 4273 ], "distinct": [ 3 ], "filter": [ - 3997 + 4265 ], "predicate": [ - 796 + 1037 ], "__typename": [ 63 @@ -98495,16 +103441,16 @@ export default { }, "v_tournament_player_stats_aggregate_bool_exp_corr": { "arguments": [ - 3983 + 4251 ], "distinct": [ 3 ], "filter": [ - 3997 + 4265 ], "predicate": [ - 796 + 1037 ], "__typename": [ 63 @@ -98512,10 +103458,10 @@ export default { }, "v_tournament_player_stats_aggregate_bool_exp_corr_arguments": { "X": [ - 4006 + 4274 ], "Y": [ - 4006 + 4274 ], "__typename": [ 63 @@ -98523,13 +103469,13 @@ export default { }, "v_tournament_player_stats_aggregate_bool_exp_count": { "arguments": [ - 4004 + 4272 ], "distinct": [ 3 ], "filter": [ - 3997 + 4265 ], "predicate": [ 35 @@ -98540,16 +103486,16 @@ export default { }, "v_tournament_player_stats_aggregate_bool_exp_covar_samp": { "arguments": [ - 3986 + 4254 ], "distinct": [ 3 ], "filter": [ - 3997 + 4265 ], "predicate": [ - 796 + 1037 ], "__typename": [ 63 @@ -98557,10 +103503,10 @@ export default { }, "v_tournament_player_stats_aggregate_bool_exp_covar_samp_arguments": { "X": [ - 4007 + 4275 ], "Y": [ - 4007 + 4275 ], "__typename": [ 63 @@ -98568,16 +103514,16 @@ export default { }, "v_tournament_player_stats_aggregate_bool_exp_max": { "arguments": [ - 4008 + 4276 ], "distinct": [ 3 ], "filter": [ - 3997 + 4265 ], "predicate": [ - 796 + 1037 ], "__typename": [ 63 @@ -98585,16 +103531,16 @@ export default { }, "v_tournament_player_stats_aggregate_bool_exp_min": { "arguments": [ - 4009 + 4277 ], "distinct": [ 3 ], "filter": [ - 3997 + 4265 ], "predicate": [ - 796 + 1037 ], "__typename": [ 63 @@ -98602,16 +103548,16 @@ export default { }, "v_tournament_player_stats_aggregate_bool_exp_stddev_samp": { "arguments": [ - 4010 + 4278 ], "distinct": [ 3 ], "filter": [ - 3997 + 4265 ], "predicate": [ - 796 + 1037 ], "__typename": [ 63 @@ -98619,16 +103565,16 @@ export default { }, "v_tournament_player_stats_aggregate_bool_exp_sum": { "arguments": [ - 4011 + 4279 ], "distinct": [ 3 ], "filter": [ - 3997 + 4265 ], "predicate": [ - 796 + 1037 ], "__typename": [ 63 @@ -98636,16 +103582,16 @@ export default { }, "v_tournament_player_stats_aggregate_bool_exp_var_samp": { "arguments": [ - 4012 + 4280 ], "distinct": [ 3 ], "filter": [ - 3997 + 4265 ], "predicate": [ - 796 + 1037 ], "__typename": [ 63 @@ -98653,13 +103599,13 @@ export default { }, "v_tournament_player_stats_aggregate_fields": { "avg": [ - 3995 + 4263 ], "count": [ 34, { "columns": [ - 4004, + 4272, "[v_tournament_player_stats_select_column!]" ], "distinct": [ @@ -98668,31 +103614,31 @@ export default { } ], "max": [ - 3999 + 4267 ], "min": [ - 4001 + 4269 ], "stddev": [ - 4013 + 4281 ], "stddev_pop": [ - 4015 + 4283 ], "stddev_samp": [ - 4017 + 4285 ], "sum": [ - 4021 + 4289 ], "var_pop": [ - 4023 + 4291 ], "var_samp": [ - 4025 + 4293 ], "variance": [ - 4027 + 4295 ], "__typename": [ 63 @@ -98700,37 +103646,37 @@ export default { }, "v_tournament_player_stats_aggregate_order_by": { "avg": [ - 3996 + 4264 ], "count": [ - 1736 + 2004 ], "max": [ - 4000 + 4268 ], "min": [ - 4002 + 4270 ], "stddev": [ - 4014 + 4282 ], "stddev_pop": [ - 4016 + 4284 ], "stddev_samp": [ - 4018 + 4286 ], "sum": [ - 4022 + 4290 ], "var_pop": [ - 4024 + 4292 ], "var_samp": [ - 4026 + 4294 ], "variance": [ - 4028 + 4296 ], "__typename": [ 63 @@ -98738,7 +103684,7 @@ export default { }, "v_tournament_player_stats_arr_rel_insert_input": { "data": [ - 3998 + 4266 ], "__typename": [ 63 @@ -98775,28 +103721,28 @@ export default { }, "v_tournament_player_stats_avg_order_by": { "assists": [ - 1736 + 2004 ], "deaths": [ - 1736 + 2004 ], "headshot_percentage": [ - 1736 + 2004 ], "headshots": [ - 1736 + 2004 ], "kdr": [ - 1736 + 2004 ], "kills": [ - 1736 + 2004 ], "matches_played": [ - 1736 + 2004 ], "player_steam_id": [ - 1736 + 2004 ], "__typename": [ 63 @@ -98804,13 +103750,13 @@ export default { }, "v_tournament_player_stats_bool_exp": { "_and": [ - 3997 + 4265 ], "_not": [ - 3997 + 4265 ], "_or": [ - 3997 + 4265 ], "assists": [ 35 @@ -98819,13 +103765,13 @@ export default { 35 ], "headshot_percentage": [ - 796 + 1037 ], "headshots": [ 35 ], "kdr": [ - 796 + 1037 ], "kills": [ 35 @@ -98834,16 +103780,16 @@ export default { 35 ], "player": [ - 2607 + 2875 ], "player_steam_id": [ 163 ], "tournament": [ - 3284 + 3552 ], "tournament_id": [ - 3320 + 3588 ], "__typename": [ 63 @@ -98857,13 +103803,13 @@ export default { 34 ], "headshot_percentage": [ - 795 + 1036 ], "headshots": [ 34 ], "kdr": [ - 795 + 1036 ], "kills": [ 34 @@ -98872,16 +103818,16 @@ export default { 34 ], "player": [ - 2614 + 2882 ], "player_steam_id": [ 162 ], "tournament": [ - 3293 + 3561 ], "tournament_id": [ - 3319 + 3587 ], "__typename": [ 63 @@ -98895,13 +103841,13 @@ export default { 34 ], "headshot_percentage": [ - 795 + 1036 ], "headshots": [ 34 ], "kdr": [ - 795 + 1036 ], "kills": [ 34 @@ -98913,7 +103859,7 @@ export default { 162 ], "tournament_id": [ - 3319 + 3587 ], "__typename": [ 63 @@ -98921,31 +103867,31 @@ export default { }, "v_tournament_player_stats_max_order_by": { "assists": [ - 1736 + 2004 ], "deaths": [ - 1736 + 2004 ], "headshot_percentage": [ - 1736 + 2004 ], "headshots": [ - 1736 + 2004 ], "kdr": [ - 1736 + 2004 ], "kills": [ - 1736 + 2004 ], "matches_played": [ - 1736 + 2004 ], "player_steam_id": [ - 1736 + 2004 ], "tournament_id": [ - 1736 + 2004 ], "__typename": [ 63 @@ -98959,13 +103905,13 @@ export default { 34 ], "headshot_percentage": [ - 795 + 1036 ], "headshots": [ 34 ], "kdr": [ - 795 + 1036 ], "kills": [ 34 @@ -98977,7 +103923,7 @@ export default { 162 ], "tournament_id": [ - 3319 + 3587 ], "__typename": [ 63 @@ -98985,31 +103931,31 @@ export default { }, "v_tournament_player_stats_min_order_by": { "assists": [ - 1736 + 2004 ], "deaths": [ - 1736 + 2004 ], "headshot_percentage": [ - 1736 + 2004 ], "headshots": [ - 1736 + 2004 ], "kdr": [ - 1736 + 2004 ], "kills": [ - 1736 + 2004 ], "matches_played": [ - 1736 + 2004 ], "player_steam_id": [ - 1736 + 2004 ], "tournament_id": [ - 1736 + 2004 ], "__typename": [ 63 @@ -99017,37 +103963,37 @@ export default { }, "v_tournament_player_stats_order_by": { "assists": [ - 1736 + 2004 ], "deaths": [ - 1736 + 2004 ], "headshot_percentage": [ - 1736 + 2004 ], "headshots": [ - 1736 + 2004 ], "kdr": [ - 1736 + 2004 ], "kills": [ - 1736 + 2004 ], "matches_played": [ - 1736 + 2004 ], "player": [ - 2616 + 2884 ], "player_steam_id": [ - 1736 + 2004 ], "tournament": [ - 3295 + 3563 ], "tournament_id": [ - 1736 + 2004 ], "__typename": [ 63 @@ -99093,28 +104039,28 @@ export default { }, "v_tournament_player_stats_stddev_order_by": { "assists": [ - 1736 + 2004 ], "deaths": [ - 1736 + 2004 ], "headshot_percentage": [ - 1736 + 2004 ], "headshots": [ - 1736 + 2004 ], "kdr": [ - 1736 + 2004 ], "kills": [ - 1736 + 2004 ], "matches_played": [ - 1736 + 2004 ], "player_steam_id": [ - 1736 + 2004 ], "__typename": [ 63 @@ -99151,28 +104097,28 @@ export default { }, "v_tournament_player_stats_stddev_pop_order_by": { "assists": [ - 1736 + 2004 ], "deaths": [ - 1736 + 2004 ], "headshot_percentage": [ - 1736 + 2004 ], "headshots": [ - 1736 + 2004 ], "kdr": [ - 1736 + 2004 ], "kills": [ - 1736 + 2004 ], "matches_played": [ - 1736 + 2004 ], "player_steam_id": [ - 1736 + 2004 ], "__typename": [ 63 @@ -99209,28 +104155,28 @@ export default { }, "v_tournament_player_stats_stddev_samp_order_by": { "assists": [ - 1736 + 2004 ], "deaths": [ - 1736 + 2004 ], "headshot_percentage": [ - 1736 + 2004 ], "headshots": [ - 1736 + 2004 ], "kdr": [ - 1736 + 2004 ], "kills": [ - 1736 + 2004 ], "matches_played": [ - 1736 + 2004 ], "player_steam_id": [ - 1736 + 2004 ], "__typename": [ 63 @@ -99238,7 +104184,7 @@ export default { }, "v_tournament_player_stats_stream_cursor_input": { "initial_value": [ - 4020 + 4288 ], "ordering": [ 216 @@ -99255,13 +104201,13 @@ export default { 34 ], "headshot_percentage": [ - 795 + 1036 ], "headshots": [ 34 ], "kdr": [ - 795 + 1036 ], "kills": [ 34 @@ -99273,7 +104219,7 @@ export default { 162 ], "tournament_id": [ - 3319 + 3587 ], "__typename": [ 63 @@ -99287,13 +104233,13 @@ export default { 34 ], "headshot_percentage": [ - 795 + 1036 ], "headshots": [ 34 ], "kdr": [ - 795 + 1036 ], "kills": [ 34 @@ -99310,28 +104256,28 @@ export default { }, "v_tournament_player_stats_sum_order_by": { "assists": [ - 1736 + 2004 ], "deaths": [ - 1736 + 2004 ], "headshot_percentage": [ - 1736 + 2004 ], "headshots": [ - 1736 + 2004 ], "kdr": [ - 1736 + 2004 ], "kills": [ - 1736 + 2004 ], "matches_played": [ - 1736 + 2004 ], "player_steam_id": [ - 1736 + 2004 ], "__typename": [ 63 @@ -99368,28 +104314,28 @@ export default { }, "v_tournament_player_stats_var_pop_order_by": { "assists": [ - 1736 + 2004 ], "deaths": [ - 1736 + 2004 ], "headshot_percentage": [ - 1736 + 2004 ], "headshots": [ - 1736 + 2004 ], "kdr": [ - 1736 + 2004 ], "kills": [ - 1736 + 2004 ], "matches_played": [ - 1736 + 2004 ], "player_steam_id": [ - 1736 + 2004 ], "__typename": [ 63 @@ -99426,28 +104372,28 @@ export default { }, "v_tournament_player_stats_var_samp_order_by": { "assists": [ - 1736 + 2004 ], "deaths": [ - 1736 + 2004 ], "headshot_percentage": [ - 1736 + 2004 ], "headshots": [ - 1736 + 2004 ], "kdr": [ - 1736 + 2004 ], "kills": [ - 1736 + 2004 ], "matches_played": [ - 1736 + 2004 ], "player_steam_id": [ - 1736 + 2004 ], "__typename": [ 63 @@ -99484,40 +104430,365 @@ export default { }, "v_tournament_player_stats_variance_order_by": { "assists": [ - 1736 + 2004 ], "deaths": [ - 1736 + 2004 ], "headshot_percentage": [ - 1736 + 2004 + ], + "headshots": [ + 2004 + ], + "kdr": [ + 2004 + ], + "kills": [ + 2004 + ], + "matches_played": [ + 2004 + ], + "player_steam_id": [ + 2004 + ], + "__typename": [ + 63 + ] + }, + "Query": { + "_map_pool": [ + 76, + { + "distinct_on": [ + 88, + "[_map_pool_select_column!]" + ], + "limit": [ + 34 + ], + "offset": [ + 34 + ], + "order_by": [ + 86, + "[_map_pool_order_by!]" + ], + "where": [ + 79 + ] + } + ], + "_map_pool_aggregate": [ + 77, + { + "distinct_on": [ + 88, + "[_map_pool_select_column!]" + ], + "limit": [ + 34 + ], + "offset": [ + 34 + ], + "order_by": [ + 86, + "[_map_pool_order_by!]" + ], + "where": [ + 79 + ] + } + ], + "_map_pool_by_pk": [ + 76, + { + "map_id": [ + 3587, + "uuid!" + ], + "map_pool_id": [ + 3587, + "uuid!" + ] + } + ], + "abandoned_matches": [ + 94, + { + "distinct_on": [ + 115, + "[abandoned_matches_select_column!]" + ], + "limit": [ + 34 + ], + "offset": [ + 34 + ], + "order_by": [ + 113, + "[abandoned_matches_order_by!]" + ], + "where": [ + 103 + ] + } + ], + "abandoned_matches_aggregate": [ + 95, + { + "distinct_on": [ + 115, + "[abandoned_matches_select_column!]" + ], + "limit": [ + 34 + ], + "offset": [ + 34 + ], + "order_by": [ + 113, + "[abandoned_matches_order_by!]" + ], + "where": [ + 103 + ] + } + ], + "abandoned_matches_by_pk": [ + 94, + { + "id": [ + 3587, + "uuid!" + ] + } + ], + "api_keys": [ + 135, + { + "distinct_on": [ + 149, + "[api_keys_select_column!]" + ], + "limit": [ + 34 + ], + "offset": [ + 34 + ], + "order_by": [ + 147, + "[api_keys_order_by!]" + ], + "where": [ + 139 + ] + } + ], + "api_keys_aggregate": [ + 136, + { + "distinct_on": [ + 149, + "[api_keys_select_column!]" + ], + "limit": [ + 34 + ], + "offset": [ + 34 + ], + "order_by": [ + 147, + "[api_keys_order_by!]" + ], + "where": [ + 139 + ] + } + ], + "api_keys_by_pk": [ + 135, + { + "id": [ + 3587, + "uuid!" + ] + } + ], + "clip_render_jobs": [ + 166, + { + "distinct_on": [ + 194, + "[clip_render_jobs_select_column!]" + ], + "limit": [ + 34 + ], + "offset": [ + 34 + ], + "order_by": [ + 191, + "[clip_render_jobs_order_by!]" + ], + "where": [ + 178 + ] + } + ], + "clip_render_jobs_aggregate": [ + 167, + { + "distinct_on": [ + 194, + "[clip_render_jobs_select_column!]" + ], + "limit": [ + 34 + ], + "offset": [ + 34 + ], + "order_by": [ + 191, + "[clip_render_jobs_order_by!]" + ], + "where": [ + 178 + ] + } + ], + "clip_render_jobs_by_pk": [ + 166, + { + "id": [ + 3587, + "uuid!" + ] + } + ], + "dbStats": [ + 15 + ], + "db_backups": [ + 217, + { + "distinct_on": [ + 231, + "[db_backups_select_column!]" + ], + "limit": [ + 34 + ], + "offset": [ + 34 + ], + "order_by": [ + 229, + "[db_backups_order_by!]" + ], + "where": [ + 221 + ] + } ], - "headshots": [ - 1736 + "db_backups_aggregate": [ + 218, + { + "distinct_on": [ + 231, + "[db_backups_select_column!]" + ], + "limit": [ + 34 + ], + "offset": [ + 34 + ], + "order_by": [ + 229, + "[db_backups_order_by!]" + ], + "where": [ + 221 + ] + } ], - "kdr": [ - 1736 + "db_backups_by_pk": [ + 217, + { + "id": [ + 3587, + "uuid!" + ] + } ], - "kills": [ - 1736 + "draft_game_picks": [ + 244, + { + "distinct_on": [ + 267, + "[draft_game_picks_select_column!]" + ], + "limit": [ + 34 + ], + "offset": [ + 34 + ], + "order_by": [ + 265, + "[draft_game_picks_order_by!]" + ], + "where": [ + 255 + ] + } ], - "matches_played": [ - 1736 + "draft_game_picks_aggregate": [ + 245, + { + "distinct_on": [ + 267, + "[draft_game_picks_select_column!]" + ], + "limit": [ + 34 + ], + "offset": [ + 34 + ], + "order_by": [ + 265, + "[draft_game_picks_order_by!]" + ], + "where": [ + 255 + ] + } ], - "player_steam_id": [ - 1736 + "draft_game_picks_by_pk": [ + 244, + { + "id": [ + 3587, + "uuid!" + ] + } ], - "__typename": [ - 63 - ] - }, - "Query": { - "_map_pool": [ - 76, + "draft_game_players": [ + 289, { "distinct_on": [ - 88, - "[_map_pool_select_column!]" + 312, + "[draft_game_players_select_column!]" ], "limit": [ 34 @@ -99526,20 +104797,20 @@ export default { 34 ], "order_by": [ - 86, - "[_map_pool_order_by!]" + 310, + "[draft_game_players_order_by!]" ], "where": [ - 79 + 300 ] } ], - "_map_pool_aggregate": [ - 77, + "draft_game_players_aggregate": [ + 290, { "distinct_on": [ - 88, - "[_map_pool_select_column!]" + 312, + "[draft_game_players_select_column!]" ], "limit": [ 34 @@ -99548,33 +104819,33 @@ export default { 34 ], "order_by": [ - 86, - "[_map_pool_order_by!]" + 310, + "[draft_game_players_order_by!]" ], "where": [ - 79 + 300 ] } ], - "_map_pool_by_pk": [ - 76, + "draft_game_players_by_pk": [ + 289, { - "map_id": [ - 3319, + "draft_game_id": [ + 3587, "uuid!" ], - "map_pool_id": [ - 3319, - "uuid!" + "steam_id": [ + 162, + "bigint!" ] } ], - "abandoned_matches": [ - 94, + "draft_games": [ + 334, { "distinct_on": [ - 115, - "[abandoned_matches_select_column!]" + 358, + "[draft_games_select_column!]" ], "limit": [ 34 @@ -99583,20 +104854,20 @@ export default { 34 ], "order_by": [ - 113, - "[abandoned_matches_order_by!]" + 356, + "[draft_games_order_by!]" ], "where": [ - 103 + 345 ] } ], - "abandoned_matches_aggregate": [ - 95, + "draft_games_aggregate": [ + 335, { "distinct_on": [ - 115, - "[abandoned_matches_select_column!]" + 358, + "[draft_games_select_column!]" ], "limit": [ 34 @@ -99605,29 +104876,29 @@ export default { 34 ], "order_by": [ - 113, - "[abandoned_matches_order_by!]" + 356, + "[draft_games_order_by!]" ], "where": [ - 103 + 345 ] } ], - "abandoned_matches_by_pk": [ - 94, + "draft_games_by_pk": [ + 334, { "id": [ - 3319, + 3587, "uuid!" ] } ], - "api_keys": [ - 135, + "e_check_in_settings": [ + 380, { "distinct_on": [ - 149, - "[api_keys_select_column!]" + 394, + "[e_check_in_settings_select_column!]" ], "limit": [ 34 @@ -99636,20 +104907,20 @@ export default { 34 ], "order_by": [ - 147, - "[api_keys_order_by!]" + 392, + "[e_check_in_settings_order_by!]" ], "where": [ - 139 + 383 ] } ], - "api_keys_aggregate": [ - 136, + "e_check_in_settings_aggregate": [ + 381, { "distinct_on": [ - 149, - "[api_keys_select_column!]" + 394, + "[e_check_in_settings_select_column!]" ], "limit": [ 34 @@ -99658,29 +104929,29 @@ export default { 34 ], "order_by": [ - 147, - "[api_keys_order_by!]" + 392, + "[e_check_in_settings_order_by!]" ], "where": [ - 139 + 383 ] } ], - "api_keys_by_pk": [ - 135, + "e_check_in_settings_by_pk": [ + 380, { - "id": [ - 3319, - "uuid!" + "value": [ + 63, + "String!" ] } ], - "clip_render_jobs": [ - 166, + "e_draft_game_captain_selection": [ + 400, { "distinct_on": [ - 194, - "[clip_render_jobs_select_column!]" + 415, + "[e_draft_game_captain_selection_select_column!]" ], "limit": [ 34 @@ -99689,20 +104960,20 @@ export default { 34 ], "order_by": [ - 191, - "[clip_render_jobs_order_by!]" + 413, + "[e_draft_game_captain_selection_order_by!]" ], "where": [ - 178 + 403 ] } ], - "clip_render_jobs_aggregate": [ - 167, + "e_draft_game_captain_selection_aggregate": [ + 401, { "distinct_on": [ - 194, - "[clip_render_jobs_select_column!]" + 415, + "[e_draft_game_captain_selection_select_column!]" ], "limit": [ 34 @@ -99711,32 +104982,51 @@ export default { 34 ], "order_by": [ - 191, - "[clip_render_jobs_order_by!]" + 413, + "[e_draft_game_captain_selection_order_by!]" ], "where": [ - 178 + 403 ] } ], - "clip_render_jobs_by_pk": [ - 166, + "e_draft_game_captain_selection_by_pk": [ + 400, { - "id": [ - 3319, - "uuid!" + "value": [ + 63, + "String!" ] } ], - "dbStats": [ - 15 + "e_draft_game_draft_order": [ + 421, + { + "distinct_on": [ + 436, + "[e_draft_game_draft_order_select_column!]" + ], + "limit": [ + 34 + ], + "offset": [ + 34 + ], + "order_by": [ + 434, + "[e_draft_game_draft_order_order_by!]" + ], + "where": [ + 424 + ] + } ], - "db_backups": [ - 217, + "e_draft_game_draft_order_aggregate": [ + 422, { "distinct_on": [ - 231, - "[db_backups_select_column!]" + 436, + "[e_draft_game_draft_order_select_column!]" ], "limit": [ 34 @@ -99745,20 +105035,29 @@ export default { 34 ], "order_by": [ - 229, - "[db_backups_order_by!]" + 434, + "[e_draft_game_draft_order_order_by!]" ], "where": [ - 221 + 424 ] } ], - "db_backups_aggregate": [ - 218, + "e_draft_game_draft_order_by_pk": [ + 421, + { + "value": [ + 63, + "String!" + ] + } + ], + "e_draft_game_mode": [ + 442, { "distinct_on": [ - 231, - "[db_backups_select_column!]" + 457, + "[e_draft_game_mode_select_column!]" ], "limit": [ 34 @@ -99767,29 +105066,51 @@ export default { 34 ], "order_by": [ - 229, - "[db_backups_order_by!]" + 455, + "[e_draft_game_mode_order_by!]" ], "where": [ - 221 + 445 ] } ], - "db_backups_by_pk": [ - 217, + "e_draft_game_mode_aggregate": [ + 443, { - "id": [ - 3319, - "uuid!" + "distinct_on": [ + 457, + "[e_draft_game_mode_select_column!]" + ], + "limit": [ + 34 + ], + "offset": [ + 34 + ], + "order_by": [ + 455, + "[e_draft_game_mode_order_by!]" + ], + "where": [ + 445 ] } ], - "e_check_in_settings": [ - 244, + "e_draft_game_mode_by_pk": [ + 442, + { + "value": [ + 63, + "String!" + ] + } + ], + "e_draft_game_player_status": [ + 463, { "distinct_on": [ - 258, - "[e_check_in_settings_select_column!]" + 478, + "[e_draft_game_player_status_select_column!]" ], "limit": [ 34 @@ -99798,20 +105119,20 @@ export default { 34 ], "order_by": [ - 256, - "[e_check_in_settings_order_by!]" + 476, + "[e_draft_game_player_status_order_by!]" ], "where": [ - 247 + 466 ] } ], - "e_check_in_settings_aggregate": [ - 245, + "e_draft_game_player_status_aggregate": [ + 464, { "distinct_on": [ - 258, - "[e_check_in_settings_select_column!]" + 478, + "[e_draft_game_player_status_select_column!]" ], "limit": [ 34 @@ -99820,16 +105141,69 @@ export default { 34 ], "order_by": [ - 256, - "[e_check_in_settings_order_by!]" + 476, + "[e_draft_game_player_status_order_by!]" ], "where": [ - 247 + 466 ] } ], - "e_check_in_settings_by_pk": [ - 244, + "e_draft_game_player_status_by_pk": [ + 463, + { + "value": [ + 63, + "String!" + ] + } + ], + "e_draft_game_status": [ + 484, + { + "distinct_on": [ + 499, + "[e_draft_game_status_select_column!]" + ], + "limit": [ + 34 + ], + "offset": [ + 34 + ], + "order_by": [ + 497, + "[e_draft_game_status_order_by!]" + ], + "where": [ + 487 + ] + } + ], + "e_draft_game_status_aggregate": [ + 485, + { + "distinct_on": [ + 499, + "[e_draft_game_status_select_column!]" + ], + "limit": [ + 34 + ], + "offset": [ + 34 + ], + "order_by": [ + 497, + "[e_draft_game_status_order_by!]" + ], + "where": [ + 487 + ] + } + ], + "e_draft_game_status_by_pk": [ + 484, { "value": [ 63, @@ -99838,10 +105212,10 @@ export default { } ], "e_friend_status": [ - 264, + 505, { "distinct_on": [ - 279, + 520, "[e_friend_status_select_column!]" ], "limit": [ @@ -99851,19 +105225,19 @@ export default { 34 ], "order_by": [ - 277, + 518, "[e_friend_status_order_by!]" ], "where": [ - 267 + 508 ] } ], "e_friend_status_aggregate": [ - 265, + 506, { "distinct_on": [ - 279, + 520, "[e_friend_status_select_column!]" ], "limit": [ @@ -99873,16 +105247,16 @@ export default { 34 ], "order_by": [ - 277, + 518, "[e_friend_status_order_by!]" ], "where": [ - 267 + 508 ] } ], "e_friend_status_by_pk": [ - 264, + 505, { "value": [ 63, @@ -99891,10 +105265,10 @@ export default { } ], "e_game_cfg_types": [ - 285, + 526, { "distinct_on": [ - 299, + 540, "[e_game_cfg_types_select_column!]" ], "limit": [ @@ -99904,19 +105278,19 @@ export default { 34 ], "order_by": [ - 297, + 538, "[e_game_cfg_types_order_by!]" ], "where": [ - 288 + 529 ] } ], "e_game_cfg_types_aggregate": [ - 286, + 527, { "distinct_on": [ - 299, + 540, "[e_game_cfg_types_select_column!]" ], "limit": [ @@ -99926,16 +105300,16 @@ export default { 34 ], "order_by": [ - 297, + 538, "[e_game_cfg_types_order_by!]" ], "where": [ - 288 + 529 ] } ], "e_game_cfg_types_by_pk": [ - 285, + 526, { "value": [ 63, @@ -99944,10 +105318,10 @@ export default { } ], "e_game_server_node_statuses": [ - 305, + 546, { "distinct_on": [ - 320, + 561, "[e_game_server_node_statuses_select_column!]" ], "limit": [ @@ -99957,19 +105331,19 @@ export default { 34 ], "order_by": [ - 318, + 559, "[e_game_server_node_statuses_order_by!]" ], "where": [ - 308 + 549 ] } ], "e_game_server_node_statuses_aggregate": [ - 306, + 547, { "distinct_on": [ - 320, + 561, "[e_game_server_node_statuses_select_column!]" ], "limit": [ @@ -99979,16 +105353,16 @@ export default { 34 ], "order_by": [ - 318, + 559, "[e_game_server_node_statuses_order_by!]" ], "where": [ - 308 + 549 ] } ], "e_game_server_node_statuses_by_pk": [ - 305, + 546, { "value": [ 63, @@ -99997,10 +105371,10 @@ export default { } ], "e_lobby_access": [ - 326, + 567, { "distinct_on": [ - 341, + 582, "[e_lobby_access_select_column!]" ], "limit": [ @@ -100010,19 +105384,19 @@ export default { 34 ], "order_by": [ - 339, + 580, "[e_lobby_access_order_by!]" ], "where": [ - 329 + 570 ] } ], "e_lobby_access_aggregate": [ - 327, + 568, { "distinct_on": [ - 341, + 582, "[e_lobby_access_select_column!]" ], "limit": [ @@ -100032,16 +105406,16 @@ export default { 34 ], "order_by": [ - 339, + 580, "[e_lobby_access_order_by!]" ], "where": [ - 329 + 570 ] } ], "e_lobby_access_by_pk": [ - 326, + 567, { "value": [ 63, @@ -100050,10 +105424,10 @@ export default { } ], "e_lobby_player_status": [ - 347, + 588, { "distinct_on": [ - 361, + 602, "[e_lobby_player_status_select_column!]" ], "limit": [ @@ -100063,19 +105437,19 @@ export default { 34 ], "order_by": [ - 359, + 600, "[e_lobby_player_status_order_by!]" ], "where": [ - 350 + 591 ] } ], "e_lobby_player_status_aggregate": [ - 348, + 589, { "distinct_on": [ - 361, + 602, "[e_lobby_player_status_select_column!]" ], "limit": [ @@ -100085,16 +105459,16 @@ export default { 34 ], "order_by": [ - 359, + 600, "[e_lobby_player_status_order_by!]" ], "where": [ - 350 + 591 ] } ], "e_lobby_player_status_by_pk": [ - 347, + 588, { "value": [ 63, @@ -100103,10 +105477,10 @@ export default { } ], "e_map_pool_types": [ - 367, + 608, { "distinct_on": [ - 382, + 623, "[e_map_pool_types_select_column!]" ], "limit": [ @@ -100116,19 +105490,19 @@ export default { 34 ], "order_by": [ - 380, + 621, "[e_map_pool_types_order_by!]" ], "where": [ - 370 + 611 ] } ], "e_map_pool_types_aggregate": [ - 368, + 609, { "distinct_on": [ - 382, + 623, "[e_map_pool_types_select_column!]" ], "limit": [ @@ -100138,16 +105512,16 @@ export default { 34 ], "order_by": [ - 380, + 621, "[e_map_pool_types_order_by!]" ], "where": [ - 370 + 611 ] } ], "e_map_pool_types_by_pk": [ - 367, + 608, { "value": [ 63, @@ -100156,10 +105530,10 @@ export default { } ], "e_match_clip_visibility": [ - 388, + 629, { "distinct_on": [ - 402, + 643, "[e_match_clip_visibility_select_column!]" ], "limit": [ @@ -100169,19 +105543,19 @@ export default { 34 ], "order_by": [ - 400, + 641, "[e_match_clip_visibility_order_by!]" ], "where": [ - 391 + 632 ] } ], "e_match_clip_visibility_aggregate": [ - 389, + 630, { "distinct_on": [ - 402, + 643, "[e_match_clip_visibility_select_column!]" ], "limit": [ @@ -100191,16 +105565,16 @@ export default { 34 ], "order_by": [ - 400, + 641, "[e_match_clip_visibility_order_by!]" ], "where": [ - 391 + 632 ] } ], "e_match_clip_visibility_by_pk": [ - 388, + 629, { "value": [ 63, @@ -100209,10 +105583,10 @@ export default { } ], "e_match_map_status": [ - 408, + 649, { "distinct_on": [ - 423, + 664, "[e_match_map_status_select_column!]" ], "limit": [ @@ -100222,19 +105596,19 @@ export default { 34 ], "order_by": [ - 421, + 662, "[e_match_map_status_order_by!]" ], "where": [ - 411 + 652 ] } ], "e_match_map_status_aggregate": [ - 409, + 650, { "distinct_on": [ - 423, + 664, "[e_match_map_status_select_column!]" ], "limit": [ @@ -100244,16 +105618,16 @@ export default { 34 ], "order_by": [ - 421, + 662, "[e_match_map_status_order_by!]" ], "where": [ - 411 + 652 ] } ], "e_match_map_status_by_pk": [ - 408, + 649, { "value": [ 63, @@ -100262,10 +105636,10 @@ export default { } ], "e_match_mode": [ - 429, + 670, { "distinct_on": [ - 443, + 684, "[e_match_mode_select_column!]" ], "limit": [ @@ -100275,19 +105649,19 @@ export default { 34 ], "order_by": [ - 441, + 682, "[e_match_mode_order_by!]" ], "where": [ - 432 + 673 ] } ], "e_match_mode_aggregate": [ - 430, + 671, { "distinct_on": [ - 443, + 684, "[e_match_mode_select_column!]" ], "limit": [ @@ -100297,16 +105671,16 @@ export default { 34 ], "order_by": [ - 441, + 682, "[e_match_mode_order_by!]" ], "where": [ - 432 + 673 ] } ], "e_match_mode_by_pk": [ - 429, + 670, { "value": [ 63, @@ -100315,10 +105689,10 @@ export default { } ], "e_match_status": [ - 449, + 690, { "distinct_on": [ - 464, + 705, "[e_match_status_select_column!]" ], "limit": [ @@ -100328,19 +105702,19 @@ export default { 34 ], "order_by": [ - 462, + 703, "[e_match_status_order_by!]" ], "where": [ - 452 + 693 ] } ], "e_match_status_aggregate": [ - 450, + 691, { "distinct_on": [ - 464, + 705, "[e_match_status_select_column!]" ], "limit": [ @@ -100350,16 +105724,16 @@ export default { 34 ], "order_by": [ - 462, + 703, "[e_match_status_order_by!]" ], "where": [ - 452 + 693 ] } ], "e_match_status_by_pk": [ - 449, + 690, { "value": [ 63, @@ -100368,10 +105742,10 @@ export default { } ], "e_match_types": [ - 470, + 711, { "distinct_on": [ - 485, + 726, "[e_match_types_select_column!]" ], "limit": [ @@ -100381,19 +105755,19 @@ export default { 34 ], "order_by": [ - 483, + 724, "[e_match_types_order_by!]" ], "where": [ - 473 + 714 ] } ], "e_match_types_aggregate": [ - 471, + 712, { "distinct_on": [ - 485, + 726, "[e_match_types_select_column!]" ], "limit": [ @@ -100403,16 +105777,16 @@ export default { 34 ], "order_by": [ - 483, + 724, "[e_match_types_order_by!]" ], "where": [ - 473 + 714 ] } ], "e_match_types_by_pk": [ - 470, + 711, { "value": [ 63, @@ -100421,10 +105795,10 @@ export default { } ], "e_notification_types": [ - 491, + 732, { "distinct_on": [ - 505, + 746, "[e_notification_types_select_column!]" ], "limit": [ @@ -100434,19 +105808,19 @@ export default { 34 ], "order_by": [ - 503, + 744, "[e_notification_types_order_by!]" ], "where": [ - 494 + 735 ] } ], "e_notification_types_aggregate": [ - 492, + 733, { "distinct_on": [ - 505, + 746, "[e_notification_types_select_column!]" ], "limit": [ @@ -100456,16 +105830,16 @@ export default { 34 ], "order_by": [ - 503, + 744, "[e_notification_types_order_by!]" ], "where": [ - 494 + 735 ] } ], "e_notification_types_by_pk": [ - 491, + 732, { "value": [ 63, @@ -100474,10 +105848,10 @@ export default { } ], "e_objective_types": [ - 511, + 752, { "distinct_on": [ - 525, + 766, "[e_objective_types_select_column!]" ], "limit": [ @@ -100487,19 +105861,19 @@ export default { 34 ], "order_by": [ - 523, + 764, "[e_objective_types_order_by!]" ], "where": [ - 514 + 755 ] } ], "e_objective_types_aggregate": [ - 512, + 753, { "distinct_on": [ - 525, + 766, "[e_objective_types_select_column!]" ], "limit": [ @@ -100509,16 +105883,16 @@ export default { 34 ], "order_by": [ - 523, + 764, "[e_objective_types_order_by!]" ], "where": [ - 514 + 755 ] } ], "e_objective_types_by_pk": [ - 511, + 752, { "value": [ 63, @@ -100527,10 +105901,10 @@ export default { } ], "e_player_roles": [ - 531, + 772, { "distinct_on": [ - 545, + 786, "[e_player_roles_select_column!]" ], "limit": [ @@ -100540,19 +105914,19 @@ export default { 34 ], "order_by": [ - 543, + 784, "[e_player_roles_order_by!]" ], "where": [ - 534 + 775 ] } ], "e_player_roles_aggregate": [ - 532, + 773, { "distinct_on": [ - 545, + 786, "[e_player_roles_select_column!]" ], "limit": [ @@ -100562,16 +105936,16 @@ export default { 34 ], "order_by": [ - 543, + 784, "[e_player_roles_order_by!]" ], "where": [ - 534 + 775 ] } ], "e_player_roles_by_pk": [ - 531, + 772, { "value": [ 63, @@ -100580,10 +105954,10 @@ export default { } ], "e_ready_settings": [ - 551, + 792, { "distinct_on": [ - 565, + 806, "[e_ready_settings_select_column!]" ], "limit": [ @@ -100593,19 +105967,19 @@ export default { 34 ], "order_by": [ - 563, + 804, "[e_ready_settings_order_by!]" ], "where": [ - 554 + 795 ] } ], "e_ready_settings_aggregate": [ - 552, + 793, { "distinct_on": [ - 565, + 806, "[e_ready_settings_select_column!]" ], "limit": [ @@ -100615,16 +105989,16 @@ export default { 34 ], "order_by": [ - 563, + 804, "[e_ready_settings_order_by!]" ], "where": [ - 554 + 795 ] } ], "e_ready_settings_by_pk": [ - 551, + 792, { "value": [ 63, @@ -100633,10 +106007,10 @@ export default { } ], "e_sanction_types": [ - 571, + 812, { "distinct_on": [ - 586, + 827, "[e_sanction_types_select_column!]" ], "limit": [ @@ -100646,19 +106020,19 @@ export default { 34 ], "order_by": [ - 584, + 825, "[e_sanction_types_order_by!]" ], "where": [ - 574 + 815 ] } ], "e_sanction_types_aggregate": [ - 572, + 813, { "distinct_on": [ - 586, + 827, "[e_sanction_types_select_column!]" ], "limit": [ @@ -100668,16 +106042,16 @@ export default { 34 ], "order_by": [ - 584, + 825, "[e_sanction_types_order_by!]" ], "where": [ - 574 + 815 ] } ], "e_sanction_types_by_pk": [ - 571, + 812, { "value": [ 63, @@ -100686,10 +106060,10 @@ export default { } ], "e_server_types": [ - 592, + 833, { "distinct_on": [ - 606, + 847, "[e_server_types_select_column!]" ], "limit": [ @@ -100699,19 +106073,19 @@ export default { 34 ], "order_by": [ - 604, + 845, "[e_server_types_order_by!]" ], "where": [ - 595 + 836 ] } ], "e_server_types_aggregate": [ - 593, + 834, { "distinct_on": [ - 606, + 847, "[e_server_types_select_column!]" ], "limit": [ @@ -100721,16 +106095,16 @@ export default { 34 ], "order_by": [ - 604, + 845, "[e_server_types_order_by!]" ], "where": [ - 595 + 836 ] } ], "e_server_types_by_pk": [ - 592, + 833, { "value": [ 63, @@ -100739,10 +106113,10 @@ export default { } ], "e_sides": [ - 612, + 853, { "distinct_on": [ - 626, + 867, "[e_sides_select_column!]" ], "limit": [ @@ -100752,19 +106126,19 @@ export default { 34 ], "order_by": [ - 624, + 865, "[e_sides_order_by!]" ], "where": [ - 615 + 856 ] } ], "e_sides_aggregate": [ - 613, + 854, { "distinct_on": [ - 626, + 867, "[e_sides_select_column!]" ], "limit": [ @@ -100774,16 +106148,16 @@ export default { 34 ], "order_by": [ - 624, + 865, "[e_sides_order_by!]" ], "where": [ - 615 + 856 ] } ], "e_sides_by_pk": [ - 612, + 853, { "value": [ 63, @@ -100792,10 +106166,10 @@ export default { } ], "e_team_roles": [ - 632, + 873, { "distinct_on": [ - 647, + 888, "[e_team_roles_select_column!]" ], "limit": [ @@ -100805,19 +106179,19 @@ export default { 34 ], "order_by": [ - 645, + 886, "[e_team_roles_order_by!]" ], "where": [ - 635 + 876 ] } ], "e_team_roles_aggregate": [ - 633, + 874, { "distinct_on": [ - 647, + 888, "[e_team_roles_select_column!]" ], "limit": [ @@ -100827,16 +106201,16 @@ export default { 34 ], "order_by": [ - 645, + 886, "[e_team_roles_order_by!]" ], "where": [ - 635 + 876 ] } ], "e_team_roles_by_pk": [ - 632, + 873, { "value": [ 63, @@ -100845,10 +106219,10 @@ export default { } ], "e_team_roster_statuses": [ - 653, + 894, { "distinct_on": [ - 667, + 908, "[e_team_roster_statuses_select_column!]" ], "limit": [ @@ -100858,19 +106232,19 @@ export default { 34 ], "order_by": [ - 665, + 906, "[e_team_roster_statuses_order_by!]" ], "where": [ - 656 + 897 ] } ], "e_team_roster_statuses_aggregate": [ - 654, + 895, { "distinct_on": [ - 667, + 908, "[e_team_roster_statuses_select_column!]" ], "limit": [ @@ -100880,16 +106254,16 @@ export default { 34 ], "order_by": [ - 665, + 906, "[e_team_roster_statuses_order_by!]" ], "where": [ - 656 + 897 ] } ], "e_team_roster_statuses_by_pk": [ - 653, + 894, { "value": [ 63, @@ -100898,10 +106272,10 @@ export default { } ], "e_timeout_settings": [ - 673, + 914, { "distinct_on": [ - 687, + 928, "[e_timeout_settings_select_column!]" ], "limit": [ @@ -100911,19 +106285,19 @@ export default { 34 ], "order_by": [ - 685, + 926, "[e_timeout_settings_order_by!]" ], "where": [ - 676 + 917 ] } ], "e_timeout_settings_aggregate": [ - 674, + 915, { "distinct_on": [ - 687, + 928, "[e_timeout_settings_select_column!]" ], "limit": [ @@ -100933,16 +106307,16 @@ export default { 34 ], "order_by": [ - 685, + 926, "[e_timeout_settings_order_by!]" ], "where": [ - 676 + 917 ] } ], "e_timeout_settings_by_pk": [ - 673, + 914, { "value": [ 63, @@ -100951,10 +106325,10 @@ export default { } ], "e_tournament_stage_types": [ - 693, + 934, { "distinct_on": [ - 708, + 949, "[e_tournament_stage_types_select_column!]" ], "limit": [ @@ -100964,19 +106338,19 @@ export default { 34 ], "order_by": [ - 706, + 947, "[e_tournament_stage_types_order_by!]" ], "where": [ - 696 + 937 ] } ], "e_tournament_stage_types_aggregate": [ - 694, + 935, { "distinct_on": [ - 708, + 949, "[e_tournament_stage_types_select_column!]" ], "limit": [ @@ -100986,16 +106360,16 @@ export default { 34 ], "order_by": [ - 706, + 947, "[e_tournament_stage_types_order_by!]" ], "where": [ - 696 + 937 ] } ], "e_tournament_stage_types_by_pk": [ - 693, + 934, { "value": [ 63, @@ -101004,10 +106378,10 @@ export default { } ], "e_tournament_status": [ - 714, + 955, { "distinct_on": [ - 729, + 970, "[e_tournament_status_select_column!]" ], "limit": [ @@ -101017,19 +106391,19 @@ export default { 34 ], "order_by": [ - 727, + 968, "[e_tournament_status_order_by!]" ], "where": [ - 717 + 958 ] } ], "e_tournament_status_aggregate": [ - 715, + 956, { "distinct_on": [ - 729, + 970, "[e_tournament_status_select_column!]" ], "limit": [ @@ -101039,16 +106413,16 @@ export default { 34 ], "order_by": [ - 727, + 968, "[e_tournament_status_order_by!]" ], "where": [ - 717 + 958 ] } ], "e_tournament_status_by_pk": [ - 714, + 955, { "value": [ 63, @@ -101057,10 +106431,10 @@ export default { } ], "e_utility_types": [ - 735, + 976, { "distinct_on": [ - 749, + 990, "[e_utility_types_select_column!]" ], "limit": [ @@ -101070,19 +106444,19 @@ export default { 34 ], "order_by": [ - 747, + 988, "[e_utility_types_order_by!]" ], "where": [ - 738 + 979 ] } ], "e_utility_types_aggregate": [ - 736, + 977, { "distinct_on": [ - 749, + 990, "[e_utility_types_select_column!]" ], "limit": [ @@ -101092,16 +106466,16 @@ export default { 34 ], "order_by": [ - 747, + 988, "[e_utility_types_order_by!]" ], "where": [ - 738 + 979 ] } ], "e_utility_types_by_pk": [ - 735, + 976, { "value": [ 63, @@ -101110,10 +106484,10 @@ export default { } ], "e_veto_pick_types": [ - 755, + 996, { "distinct_on": [ - 769, + 1010, "[e_veto_pick_types_select_column!]" ], "limit": [ @@ -101123,19 +106497,19 @@ export default { 34 ], "order_by": [ - 767, + 1008, "[e_veto_pick_types_order_by!]" ], "where": [ - 758 + 999 ] } ], "e_veto_pick_types_aggregate": [ - 756, + 997, { "distinct_on": [ - 769, + 1010, "[e_veto_pick_types_select_column!]" ], "limit": [ @@ -101145,16 +106519,16 @@ export default { 34 ], "order_by": [ - 767, + 1008, "[e_veto_pick_types_order_by!]" ], "where": [ - 758 + 999 ] } ], "e_veto_pick_types_by_pk": [ - 755, + 996, { "value": [ 63, @@ -101163,10 +106537,10 @@ export default { } ], "e_winning_reasons": [ - 775, + 1016, { "distinct_on": [ - 789, + 1030, "[e_winning_reasons_select_column!]" ], "limit": [ @@ -101176,19 +106550,19 @@ export default { 34 ], "order_by": [ - 787, + 1028, "[e_winning_reasons_order_by!]" ], "where": [ - 778 + 1019 ] } ], "e_winning_reasons_aggregate": [ - 776, + 1017, { "distinct_on": [ - 789, + 1030, "[e_winning_reasons_select_column!]" ], "limit": [ @@ -101198,16 +106572,16 @@ export default { 34 ], "order_by": [ - 787, + 1028, "[e_winning_reasons_order_by!]" ], "where": [ - 778 + 1019 ] } ], "e_winning_reasons_by_pk": [ - 775, + 1016, { "value": [ 63, @@ -101216,10 +106590,10 @@ export default { } ], "friends": [ - 797, + 1038, { "distinct_on": [ - 811, + 1052, "[friends_select_column!]" ], "limit": [ @@ -101229,19 +106603,19 @@ export default { 34 ], "order_by": [ - 809, + 1050, "[friends_order_by!]" ], "where": [ - 801 + 1042 ] } ], "friends_aggregate": [ - 798, + 1039, { "distinct_on": [ - 811, + 1052, "[friends_select_column!]" ], "limit": [ @@ -101251,16 +106625,16 @@ export default { 34 ], "order_by": [ - 809, + 1050, "[friends_order_by!]" ], "where": [ - 801 + 1042 ] } ], "friends_by_pk": [ - 797, + 1038, { "other_player_steam_id": [ 162, @@ -101273,10 +106647,10 @@ export default { } ], "game_server_nodes": [ - 824, + 1065, { "distinct_on": [ - 853, + 1094, "[game_server_nodes_select_column!]" ], "limit": [ @@ -101286,19 +106660,19 @@ export default { 34 ], "order_by": [ - 850, + 1091, "[game_server_nodes_order_by!]" ], "where": [ - 836 + 1077 ] } ], "game_server_nodes_aggregate": [ - 825, + 1066, { "distinct_on": [ - 853, + 1094, "[game_server_nodes_select_column!]" ], "limit": [ @@ -101308,16 +106682,16 @@ export default { 34 ], "order_by": [ - 850, + 1091, "[game_server_nodes_order_by!]" ], "where": [ - 836 + 1077 ] } ], "game_server_nodes_by_pk": [ - 824, + 1065, { "id": [ 63, @@ -101326,10 +106700,10 @@ export default { } ], "game_versions": [ - 875, + 1116, { "distinct_on": [ - 895, + 1136, "[game_versions_select_column!]" ], "limit": [ @@ -101339,19 +106713,19 @@ export default { 34 ], "order_by": [ - 892, + 1133, "[game_versions_order_by!]" ], "where": [ - 880 + 1121 ] } ], "game_versions_aggregate": [ - 876, + 1117, { "distinct_on": [ - 895, + 1136, "[game_versions_select_column!]" ], "limit": [ @@ -101361,16 +106735,16 @@ export default { 34 ], "order_by": [ - 892, + 1133, "[game_versions_order_by!]" ], "where": [ - 880 + 1121 ] } ], "game_versions_by_pk": [ - 875, + 1116, { "build_id": [ 34, @@ -101379,10 +106753,10 @@ export default { } ], "gamedata_signature_validations": [ - 908, + 1149, { "distinct_on": [ - 927, + 1168, "[gamedata_signature_validations_select_column!]" ], "limit": [ @@ -101392,19 +106766,19 @@ export default { 34 ], "order_by": [ - 924, + 1165, "[gamedata_signature_validations_order_by!]" ], "where": [ - 913 + 1154 ] } ], "gamedata_signature_validations_aggregate": [ - 909, + 1150, { "distinct_on": [ - 927, + 1168, "[gamedata_signature_validations_select_column!]" ], "limit": [ @@ -101414,19 +106788,19 @@ export default { 34 ], "order_by": [ - 924, + 1165, "[gamedata_signature_validations_order_by!]" ], "where": [ - 913 + 1154 ] } ], "gamedata_signature_validations_by_pk": [ - 908, + 1149, { "id": [ - 3319, + 3587, "uuid!" ] } @@ -101462,7 +106836,7 @@ export default { 30, { "match_map_id": [ - 3319, + 3587, "uuid!" ], "target_steam_id": [ @@ -101547,14 +106921,14 @@ export default { 73 ], "get_leaderboard": [ - 949, + 1190, { "args": [ - 940, + 1181, "get_leaderboard_args!" ], "distinct_on": [ - 960, + 1201, "[leaderboard_entries_select_column!]" ], "limit": [ @@ -101564,23 +106938,23 @@ export default { 34 ], "order_by": [ - 959, + 1200, "[leaderboard_entries_order_by!]" ], "where": [ - 953 + 1194 ] } ], "get_leaderboard_aggregate": [ - 950, + 1191, { "args": [ - 940, + 1181, "get_leaderboard_args!" ], "distinct_on": [ - 960, + 1201, "[leaderboard_entries_select_column!]" ], "limit": [ @@ -101590,23 +106964,23 @@ export default { 34 ], "order_by": [ - 959, + 1200, "[leaderboard_entries_order_by!]" ], "where": [ - 953 + 1194 ] } ], "get_player_leaderboard_rank": [ - 2177, + 2445, { "args": [ - 941, + 1182, "get_player_leaderboard_rank_args!" ], "distinct_on": [ - 2188, + 2456, "[player_leaderboard_rank_select_column!]" ], "limit": [ @@ -101616,23 +106990,23 @@ export default { 34 ], "order_by": [ - 2187, + 2455, "[player_leaderboard_rank_order_by!]" ], "where": [ - 2181 + 2449 ] } ], "get_player_leaderboard_rank_aggregate": [ - 2178, + 2446, { "args": [ - 941, + 1182, "get_player_leaderboard_rank_args!" ], "distinct_on": [ - 2188, + 2456, "[player_leaderboard_rank_select_column!]" ], "limit": [ @@ -101642,19 +107016,19 @@ export default { 34 ], "order_by": [ - 2187, + 2455, "[player_leaderboard_rank_order_by!]" ], "where": [ - 2181 + 2449 ] } ], "leaderboard_entries": [ - 949, + 1190, { "distinct_on": [ - 960, + 1201, "[leaderboard_entries_select_column!]" ], "limit": [ @@ -101664,19 +107038,19 @@ export default { 34 ], "order_by": [ - 959, + 1200, "[leaderboard_entries_order_by!]" ], "where": [ - 953 + 1194 ] } ], "leaderboard_entries_aggregate": [ - 950, + 1191, { "distinct_on": [ - 960, + 1201, "[leaderboard_entries_select_column!]" ], "limit": [ @@ -101686,11 +107060,11 @@ export default { 34 ], "order_by": [ - 959, + 1200, "[leaderboard_entries_order_by!]" ], "where": [ - 953 + 1194 ] } ], @@ -101710,10 +107084,10 @@ export default { } ], "lobbies": [ - 972, + 1213, { "distinct_on": [ - 985, + 1226, "[lobbies_select_column!]" ], "limit": [ @@ -101723,19 +107097,19 @@ export default { 34 ], "order_by": [ - 983, + 1224, "[lobbies_order_by!]" ], "where": [ - 975 + 1216 ] } ], "lobbies_aggregate": [ - 973, + 1214, { "distinct_on": [ - 985, + 1226, "[lobbies_select_column!]" ], "limit": [ @@ -101745,28 +107119,28 @@ export default { 34 ], "order_by": [ - 983, + 1224, "[lobbies_order_by!]" ], "where": [ - 975 + 1216 ] } ], "lobbies_by_pk": [ - 972, + 1213, { "id": [ - 3319, + 3587, "uuid!" ] } ], "lobby_players": [ - 991, + 1232, { "distinct_on": [ - 1014, + 1255, "[lobby_players_select_column!]" ], "limit": [ @@ -101776,19 +107150,19 @@ export default { 34 ], "order_by": [ - 1012, + 1253, "[lobby_players_order_by!]" ], "where": [ - 1002 + 1243 ] } ], "lobby_players_aggregate": [ - 992, + 1233, { "distinct_on": [ - 1014, + 1255, "[lobby_players_select_column!]" ], "limit": [ @@ -101798,19 +107172,19 @@ export default { 34 ], "order_by": [ - 1012, + 1253, "[lobby_players_order_by!]" ], "where": [ - 1002 + 1243 ] } ], "lobby_players_by_pk": [ - 991, + 1232, { "lobby_id": [ - 3319, + 3587, "uuid!" ], "steam_id": [ @@ -101820,10 +107194,10 @@ export default { } ], "map_pools": [ - 1036, + 1277, { "distinct_on": [ - 1049, + 1290, "[map_pools_select_column!]" ], "limit": [ @@ -101833,19 +107207,19 @@ export default { 34 ], "order_by": [ - 1047, + 1288, "[map_pools_order_by!]" ], "where": [ - 1039 + 1280 ] } ], "map_pools_aggregate": [ - 1037, + 1278, { "distinct_on": [ - 1049, + 1290, "[map_pools_select_column!]" ], "limit": [ @@ -101855,28 +107229,28 @@ export default { 34 ], "order_by": [ - 1047, + 1288, "[map_pools_order_by!]" ], "where": [ - 1039 + 1280 ] } ], "map_pools_by_pk": [ - 1036, + 1277, { "id": [ - 3319, + 3587, "uuid!" ] } ], "maps": [ - 1055, + 1296, { "distinct_on": [ - 1076, + 1317, "[maps_select_column!]" ], "limit": [ @@ -101886,19 +107260,19 @@ export default { 34 ], "order_by": [ - 1074, + 1315, "[maps_order_by!]" ], "where": [ - 1064 + 1305 ] } ], "maps_aggregate": [ - 1056, + 1297, { "distinct_on": [ - 1076, + 1317, "[maps_select_column!]" ], "limit": [ @@ -101908,28 +107282,28 @@ export default { 34 ], "order_by": [ - 1074, + 1315, "[maps_order_by!]" ], "where": [ - 1064 + 1305 ] } ], "maps_by_pk": [ - 1055, + 1296, { "id": [ - 3319, + 3587, "uuid!" ] } ], "match_clips": [ - 1084, + 1325, { "distinct_on": [ - 1106, + 1347, "[match_clips_select_column!]" ], "limit": [ @@ -101939,19 +107313,19 @@ export default { 34 ], "order_by": [ - 1104, + 1345, "[match_clips_order_by!]" ], "where": [ - 1093 + 1334 ] } ], "match_clips_aggregate": [ - 1085, + 1326, { "distinct_on": [ - 1106, + 1347, "[match_clips_select_column!]" ], "limit": [ @@ -101961,28 +107335,28 @@ export default { 34 ], "order_by": [ - 1104, + 1345, "[match_clips_order_by!]" ], "where": [ - 1093 + 1334 ] } ], "match_clips_by_pk": [ - 1084, + 1325, { "id": [ - 3319, + 3587, "uuid!" ] } ], "match_demo_sessions": [ - 1126, + 1367, { "distinct_on": [ - 1152, + 1393, "[match_demo_sessions_select_column!]" ], "limit": [ @@ -101992,19 +107366,19 @@ export default { 34 ], "order_by": [ - 1149, + 1390, "[match_demo_sessions_order_by!]" ], "where": [ - 1136 + 1377 ] } ], "match_demo_sessions_aggregate": [ - 1127, + 1368, { "distinct_on": [ - 1152, + 1393, "[match_demo_sessions_select_column!]" ], "limit": [ @@ -102014,28 +107388,28 @@ export default { 34 ], "order_by": [ - 1149, + 1390, "[match_demo_sessions_order_by!]" ], "where": [ - 1136 + 1377 ] } ], "match_demo_sessions_by_pk": [ - 1126, + 1367, { "id": [ - 3319, + 3587, "uuid!" ] } ], "match_invites": [ - 1172, + 1413, { "distinct_on": [ - 1193, + 1434, "[match_invites_select_column!]" ], "limit": [ @@ -102045,19 +107419,19 @@ export default { 34 ], "order_by": [ - 1191, + 1432, "[match_invites_order_by!]" ], "where": [ - 1181 + 1422 ] } ], "match_invites_aggregate": [ - 1173, + 1414, { "distinct_on": [ - 1193, + 1434, "[match_invites_select_column!]" ], "limit": [ @@ -102067,28 +107441,28 @@ export default { 34 ], "order_by": [ - 1191, + 1432, "[match_invites_order_by!]" ], "where": [ - 1181 + 1422 ] } ], "match_invites_by_pk": [ - 1172, + 1413, { "id": [ - 3319, + 3587, "uuid!" ] } ], "match_lineup_players": [ - 1213, + 1454, { "distinct_on": [ - 1236, + 1477, "[match_lineup_players_select_column!]" ], "limit": [ @@ -102098,19 +107472,19 @@ export default { 34 ], "order_by": [ - 1234, + 1475, "[match_lineup_players_order_by!]" ], "where": [ - 1224 + 1465 ] } ], "match_lineup_players_aggregate": [ - 1214, + 1455, { "distinct_on": [ - 1236, + 1477, "[match_lineup_players_select_column!]" ], "limit": [ @@ -102120,28 +107494,28 @@ export default { 34 ], "order_by": [ - 1234, + 1475, "[match_lineup_players_order_by!]" ], "where": [ - 1224 + 1465 ] } ], "match_lineup_players_by_pk": [ - 1213, + 1454, { "id": [ - 3319, + 3587, "uuid!" ] } ], "match_lineups": [ - 1258, + 1499, { "distinct_on": [ - 1280, + 1521, "[match_lineups_select_column!]" ], "limit": [ @@ -102151,19 +107525,19 @@ export default { 34 ], "order_by": [ - 1278, + 1519, "[match_lineups_order_by!]" ], "where": [ - 1267 + 1508 ] } ], "match_lineups_aggregate": [ - 1259, + 1500, { "distinct_on": [ - 1280, + 1521, "[match_lineups_select_column!]" ], "limit": [ @@ -102173,28 +107547,28 @@ export default { 34 ], "order_by": [ - 1278, + 1519, "[match_lineups_order_by!]" ], "where": [ - 1267 + 1508 ] } ], "match_lineups_by_pk": [ - 1258, + 1499, { "id": [ - 3319, + 3587, "uuid!" ] } ], "match_map_demos": [ - 1300, + 1541, { "distinct_on": [ - 1329, + 1570, "[match_map_demos_select_column!]" ], "limit": [ @@ -102204,19 +107578,19 @@ export default { 34 ], "order_by": [ - 1326, + 1567, "[match_map_demos_order_by!]" ], "where": [ - 1312 + 1553 ] } ], "match_map_demos_aggregate": [ - 1301, + 1542, { "distinct_on": [ - 1329, + 1570, "[match_map_demos_select_column!]" ], "limit": [ @@ -102226,28 +107600,28 @@ export default { 34 ], "order_by": [ - 1326, + 1567, "[match_map_demos_order_by!]" ], "where": [ - 1312 + 1553 ] } ], "match_map_demos_by_pk": [ - 1300, + 1541, { "id": [ - 3319, + 3587, "uuid!" ] } ], "match_map_rounds": [ - 1351, + 1592, { "distinct_on": [ - 1372, + 1613, "[match_map_rounds_select_column!]" ], "limit": [ @@ -102257,19 +107631,19 @@ export default { 34 ], "order_by": [ - 1370, + 1611, "[match_map_rounds_order_by!]" ], "where": [ - 1360 + 1601 ] } ], "match_map_rounds_aggregate": [ - 1352, + 1593, { "distinct_on": [ - 1372, + 1613, "[match_map_rounds_select_column!]" ], "limit": [ @@ -102279,28 +107653,28 @@ export default { 34 ], "order_by": [ - 1370, + 1611, "[match_map_rounds_order_by!]" ], "where": [ - 1360 + 1601 ] } ], "match_map_rounds_by_pk": [ - 1351, + 1592, { "id": [ - 3319, + 3587, "uuid!" ] } ], "match_map_veto_picks": [ - 1392, + 1633, { "distinct_on": [ - 1410, + 1651, "[match_map_veto_picks_select_column!]" ], "limit": [ @@ -102310,19 +107684,19 @@ export default { 34 ], "order_by": [ - 1408, + 1649, "[match_map_veto_picks_order_by!]" ], "where": [ - 1399 + 1640 ] } ], "match_map_veto_picks_aggregate": [ - 1393, + 1634, { "distinct_on": [ - 1410, + 1651, "[match_map_veto_picks_select_column!]" ], "limit": [ @@ -102332,28 +107706,28 @@ export default { 34 ], "order_by": [ - 1408, + 1649, "[match_map_veto_picks_order_by!]" ], "where": [ - 1399 + 1640 ] } ], "match_map_veto_picks_by_pk": [ - 1392, + 1633, { "id": [ - 3319, + 3587, "uuid!" ] } ], "match_maps": [ - 1416, + 1657, { "distinct_on": [ - 1438, + 1679, "[match_maps_select_column!]" ], "limit": [ @@ -102363,19 +107737,19 @@ export default { 34 ], "order_by": [ - 1436, + 1677, "[match_maps_order_by!]" ], "where": [ - 1425 + 1666 ] } ], "match_maps_aggregate": [ - 1417, + 1658, { "distinct_on": [ - 1438, + 1679, "[match_maps_select_column!]" ], "limit": [ @@ -102385,28 +107759,28 @@ export default { 34 ], "order_by": [ - 1436, + 1677, "[match_maps_order_by!]" ], "where": [ - 1425 + 1666 ] } ], "match_maps_by_pk": [ - 1416, + 1657, { "id": [ - 3319, + 3587, "uuid!" ] } ], "match_options": [ - 1458, + 1699, { "distinct_on": [ - 1473, + 1714, "[match_options_select_column!]" ], "limit": [ @@ -102416,19 +107790,19 @@ export default { 34 ], "order_by": [ - 1471, + 1712, "[match_options_order_by!]" ], "where": [ - 1462 + 1703 ] } ], "match_options_aggregate": [ - 1459, + 1700, { "distinct_on": [ - 1473, + 1714, "[match_options_select_column!]" ], "limit": [ @@ -102438,28 +107812,28 @@ export default { 34 ], "order_by": [ - 1471, + 1712, "[match_options_order_by!]" ], "where": [ - 1462 + 1703 ] } ], "match_options_by_pk": [ - 1458, + 1699, { "id": [ - 3319, + 3587, "uuid!" ] } ], "match_region_veto_picks": [ - 1486, + 1727, { "distinct_on": [ - 1504, + 1745, "[match_region_veto_picks_select_column!]" ], "limit": [ @@ -102469,19 +107843,19 @@ export default { 34 ], "order_by": [ - 1502, + 1743, "[match_region_veto_picks_order_by!]" ], "where": [ - 1493 + 1734 ] } ], "match_region_veto_picks_aggregate": [ - 1487, + 1728, { "distinct_on": [ - 1504, + 1745, "[match_region_veto_picks_select_column!]" ], "limit": [ @@ -102491,28 +107865,28 @@ export default { 34 ], "order_by": [ - 1502, + 1743, "[match_region_veto_picks_order_by!]" ], "where": [ - 1493 + 1734 ] } ], "match_region_veto_picks_by_pk": [ - 1486, + 1727, { "id": [ - 3319, + 3587, "uuid!" ] } ], "match_streams": [ - 1510, + 1751, { "distinct_on": [ - 1538, + 1779, "[match_streams_select_column!]" ], "limit": [ @@ -102522,19 +107896,19 @@ export default { 34 ], "order_by": [ - 1535, + 1776, "[match_streams_order_by!]" ], "where": [ - 1522 + 1763 ] } ], "match_streams_aggregate": [ - 1511, + 1752, { "distinct_on": [ - 1538, + 1779, "[match_streams_select_column!]" ], "limit": [ @@ -102544,28 +107918,28 @@ export default { 34 ], "order_by": [ - 1535, + 1776, "[match_streams_order_by!]" ], "where": [ - 1522 + 1763 ] } ], "match_streams_by_pk": [ - 1510, + 1751, { "id": [ - 3319, + 3587, "uuid!" ] } ], "match_type_cfgs": [ - 1560, + 1801, { "distinct_on": [ - 1572, + 1813, "[match_type_cfgs_select_column!]" ], "limit": [ @@ -102575,19 +107949,19 @@ export default { 34 ], "order_by": [ - 1570, + 1811, "[match_type_cfgs_order_by!]" ], "where": [ - 1563 + 1804 ] } ], "match_type_cfgs_aggregate": [ - 1561, + 1802, { "distinct_on": [ - 1572, + 1813, "[match_type_cfgs_select_column!]" ], "limit": [ @@ -102597,28 +107971,28 @@ export default { 34 ], "order_by": [ - 1570, + 1811, "[match_type_cfgs_order_by!]" ], "where": [ - 1563 + 1804 ] } ], "match_type_cfgs_by_pk": [ - 1560, + 1801, { "type": [ - 290, + 531, "e_game_cfg_types_enum!" ] } ], "matches": [ - 1578, + 1819, { "distinct_on": [ - 1600, + 1841, "[matches_select_column!]" ], "limit": [ @@ -102628,19 +108002,19 @@ export default { 34 ], "order_by": [ - 1598, + 1839, "[matches_order_by!]" ], "where": [ - 1587 + 1828 ] } ], "matches_aggregate": [ - 1579, + 1820, { "distinct_on": [ - 1600, + 1841, "[matches_select_column!]" ], "limit": [ @@ -102650,19 +108024,19 @@ export default { 34 ], "order_by": [ - 1598, + 1839, "[matches_order_by!]" ], "where": [ - 1587 + 1828 ] } ], "matches_by_pk": [ - 1578, + 1819, { "id": [ - 3319, + 3587, "uuid!" ] } @@ -102671,10 +108045,10 @@ export default { 41 ], "migration_hashes_hashes": [ - 1620, + 1861, { "distinct_on": [ - 1632, + 1873, "[migration_hashes_hashes_select_column!]" ], "limit": [ @@ -102684,19 +108058,19 @@ export default { 34 ], "order_by": [ - 1630, + 1871, "[migration_hashes_hashes_order_by!]" ], "where": [ - 1623 + 1864 ] } ], "migration_hashes_hashes_aggregate": [ - 1621, + 1862, { "distinct_on": [ - 1632, + 1873, "[migration_hashes_hashes_select_column!]" ], "limit": [ @@ -102706,16 +108080,16 @@ export default { 34 ], "order_by": [ - 1630, + 1871, "[migration_hashes_hashes_order_by!]" ], "where": [ - 1623 + 1864 ] } ], "migration_hashes_hashes_by_pk": [ - 1620, + 1861, { "name": [ 63, @@ -102724,10 +108098,10 @@ export default { } ], "my_friends": [ - 1638, + 1879, { "distinct_on": [ - 1663, + 1904, "[my_friends_select_column!]" ], "limit": [ @@ -102737,19 +108111,19 @@ export default { 34 ], "order_by": [ - 1661, + 1902, "[my_friends_order_by!]" ], "where": [ - 1650 + 1891 ] } ], "my_friends_aggregate": [ - 1639, + 1880, { "distinct_on": [ - 1663, + 1904, "[my_friends_select_column!]" ], "limit": [ @@ -102759,19 +108133,72 @@ export default { 34 ], "order_by": [ - 1661, + 1902, "[my_friends_order_by!]" ], "where": [ - 1650 + 1891 + ] + } + ], + "news_articles": [ + 1925, + { + "distinct_on": [ + 1939, + "[news_articles_select_column!]" + ], + "limit": [ + 34 + ], + "offset": [ + 34 + ], + "order_by": [ + 1937, + "[news_articles_order_by!]" + ], + "where": [ + 1929 + ] + } + ], + "news_articles_aggregate": [ + 1926, + { + "distinct_on": [ + 1939, + "[news_articles_select_column!]" + ], + "limit": [ + 34 + ], + "offset": [ + 34 + ], + "order_by": [ + 1937, + "[news_articles_order_by!]" + ], + "where": [ + 1929 + ] + } + ], + "news_articles_by_pk": [ + 1925, + { + "id": [ + 3587, + "uuid!" ] } ], "notifications": [ - 1684, + 1952, { "distinct_on": [ - 1712, + 1980, "[notifications_select_column!]" ], "limit": [ @@ -102781,19 +108208,19 @@ export default { 34 ], "order_by": [ - 1709, + 1977, "[notifications_order_by!]" ], "where": [ - 1696 + 1964 ] } ], "notifications_aggregate": [ - 1685, + 1953, { "distinct_on": [ - 1712, + 1980, "[notifications_select_column!]" ], "limit": [ @@ -102803,28 +108230,28 @@ export default { 34 ], "order_by": [ - 1709, + 1977, "[notifications_order_by!]" ], "where": [ - 1696 + 1964 ] } ], "notifications_by_pk": [ - 1684, + 1952, { "id": [ - 3319, + 3587, "uuid!" ] } ], "pending_match_import_players": [ - 1737, + 2005, { "distinct_on": [ - 1758, + 2026, "[pending_match_import_players_select_column!]" ], "limit": [ @@ -102834,19 +108261,19 @@ export default { 34 ], "order_by": [ - 1756, + 2024, "[pending_match_import_players_order_by!]" ], "where": [ - 1746 + 2014 ] } ], "pending_match_import_players_aggregate": [ - 1738, + 2006, { "distinct_on": [ - 1758, + 2026, "[pending_match_import_players_select_column!]" ], "limit": [ @@ -102856,32 +108283,32 @@ export default { 34 ], "order_by": [ - 1756, + 2024, "[pending_match_import_players_order_by!]" ], "where": [ - 1746 + 2014 ] } ], "pending_match_import_players_by_pk": [ - 1737, + 2005, { "steam_id": [ 162, "bigint!" ], "valve_match_id": [ - 1734, + 2002, "numeric!" ] } ], "pending_match_imports": [ - 1778, + 2046, { "distinct_on": [ - 1793, + 2061, "[pending_match_imports_select_column!]" ], "limit": [ @@ -102891,19 +108318,19 @@ export default { 34 ], "order_by": [ - 1791, + 2059, "[pending_match_imports_order_by!]" ], "where": [ - 1782 + 2050 ] } ], "pending_match_imports_aggregate": [ - 1779, + 2047, { "distinct_on": [ - 1793, + 2061, "[pending_match_imports_select_column!]" ], "limit": [ @@ -102913,28 +108340,28 @@ export default { 34 ], "order_by": [ - 1791, + 2059, "[pending_match_imports_order_by!]" ], "where": [ - 1782 + 2050 ] } ], "pending_match_imports_by_pk": [ - 1778, + 2046, { "valve_match_id": [ - 1734, + 2002, "numeric!" ] } ], "player_aim_stats_demo": [ - 1806, + 2074, { "distinct_on": [ - 1820, + 2088, "[player_aim_stats_demo_select_column!]" ], "limit": [ @@ -102944,19 +108371,19 @@ export default { 34 ], "order_by": [ - 1818, + 2086, "[player_aim_stats_demo_order_by!]" ], "where": [ - 1810 + 2078 ] } ], "player_aim_stats_demo_aggregate": [ - 1807, + 2075, { "distinct_on": [ - 1820, + 2088, "[player_aim_stats_demo_select_column!]" ], "limit": [ @@ -102966,32 +108393,32 @@ export default { 34 ], "order_by": [ - 1818, + 2086, "[player_aim_stats_demo_order_by!]" ], "where": [ - 1810 + 2078 ] } ], "player_aim_stats_demo_by_pk": [ - 1806, + 2074, { "attacker_steam_id": [ 162, "bigint!" ], "match_map_id": [ - 3319, + 3587, "uuid!" ] } ], "player_aim_weapon_stats": [ - 1833, + 2101, { "distinct_on": [ - 1854, + 2122, "[player_aim_weapon_stats_select_column!]" ], "limit": [ @@ -103001,19 +108428,19 @@ export default { 34 ], "order_by": [ - 1852, + 2120, "[player_aim_weapon_stats_order_by!]" ], "where": [ - 1842 + 2110 ] } ], "player_aim_weapon_stats_aggregate": [ - 1834, + 2102, { "distinct_on": [ - 1854, + 2122, "[player_aim_weapon_stats_select_column!]" ], "limit": [ @@ -103023,19 +108450,19 @@ export default { 34 ], "order_by": [ - 1852, + 2120, "[player_aim_weapon_stats_order_by!]" ], "where": [ - 1842 + 2110 ] } ], "player_aim_weapon_stats_by_pk": [ - 1833, + 2101, { "match_map_id": [ - 3319, + 3587, "uuid!" ], "steam_id": [ @@ -103049,10 +108476,10 @@ export default { } ], "player_assists": [ - 1874, + 2142, { "distinct_on": [ - 1897, + 2165, "[player_assists_select_column!]" ], "limit": [ @@ -103062,19 +108489,19 @@ export default { 34 ], "order_by": [ - 1895, + 2163, "[player_assists_order_by!]" ], "where": [ - 1885 + 2153 ] } ], "player_assists_aggregate": [ - 1875, + 2143, { "distinct_on": [ - 1897, + 2165, "[player_assists_select_column!]" ], "limit": [ @@ -103084,16 +108511,16 @@ export default { 34 ], "order_by": [ - 1895, + 2163, "[player_assists_order_by!]" ], "where": [ - 1885 + 2153 ] } ], "player_assists_by_pk": [ - 1874, + 2142, { "attacked_steam_id": [ 162, @@ -103104,20 +108531,20 @@ export default { "bigint!" ], "match_map_id": [ - 3319, + 3587, "uuid!" ], "time": [ - 2922, + 3190, "timestamptz!" ] } ], "player_career_stats_v": [ - 1919, + 2187, { "distinct_on": [ - 1927, + 2195, "[player_career_stats_v_select_column!]" ], "limit": [ @@ -103127,19 +108554,19 @@ export default { 34 ], "order_by": [ - 1926, + 2194, "[player_career_stats_v_order_by!]" ], "where": [ - 1923 + 2191 ] } ], "player_career_stats_v_aggregate": [ - 1920, + 2188, { "distinct_on": [ - 1927, + 2195, "[player_career_stats_v_select_column!]" ], "limit": [ @@ -103149,19 +108576,19 @@ export default { 34 ], "order_by": [ - 1926, + 2194, "[player_career_stats_v_order_by!]" ], "where": [ - 1923 + 2191 ] } ], "player_damages": [ - 1937, + 2205, { "distinct_on": [ - 1958, + 2226, "[player_damages_select_column!]" ], "limit": [ @@ -103171,19 +108598,19 @@ export default { 34 ], "order_by": [ - 1956, + 2224, "[player_damages_order_by!]" ], "where": [ - 1946 + 2214 ] } ], "player_damages_aggregate": [ - 1938, + 2206, { "distinct_on": [ - 1958, + 2226, "[player_damages_select_column!]" ], "limit": [ @@ -103193,36 +108620,36 @@ export default { 34 ], "order_by": [ - 1956, + 2224, "[player_damages_order_by!]" ], "where": [ - 1946 + 2214 ] } ], "player_damages_by_pk": [ - 1937, + 2205, { "id": [ - 3319, + 3587, "uuid!" ], "match_map_id": [ - 3319, + 3587, "uuid!" ], "time": [ - 2922, + 3190, "timestamptz!" ] } ], "player_elo": [ - 1978, + 2246, { "distinct_on": [ - 1992, + 2260, "[player_elo_select_column!]" ], "limit": [ @@ -103232,19 +108659,19 @@ export default { 34 ], "order_by": [ - 1990, + 2258, "[player_elo_order_by!]" ], "where": [ - 1982 + 2250 ] } ], "player_elo_aggregate": [ - 1979, + 2247, { "distinct_on": [ - 1992, + 2260, "[player_elo_select_column!]" ], "limit": [ @@ -103254,19 +108681,19 @@ export default { 34 ], "order_by": [ - 1990, + 2258, "[player_elo_order_by!]" ], "where": [ - 1982 + 2250 ] } ], "player_elo_by_pk": [ - 1978, + 2246, { "match_id": [ - 3319, + 3587, "uuid!" ], "steam_id": [ @@ -103274,16 +108701,16 @@ export default { "bigint!" ], "type": [ - 475, + 716, "e_match_types_enum!" ] } ], "player_faceit_rank_history": [ - 2005, + 2273, { "distinct_on": [ - 2026, + 2294, "[player_faceit_rank_history_select_column!]" ], "limit": [ @@ -103293,19 +108720,19 @@ export default { 34 ], "order_by": [ - 2024, + 2292, "[player_faceit_rank_history_order_by!]" ], "where": [ - 2014 + 2282 ] } ], "player_faceit_rank_history_aggregate": [ - 2006, + 2274, { "distinct_on": [ - 2026, + 2294, "[player_faceit_rank_history_select_column!]" ], "limit": [ @@ -103315,28 +108742,28 @@ export default { 34 ], "order_by": [ - 2024, + 2292, "[player_faceit_rank_history_order_by!]" ], "where": [ - 2014 + 2282 ] } ], "player_faceit_rank_history_by_pk": [ - 2005, + 2273, { "id": [ - 3319, + 3587, "uuid!" ] } ], "player_flashes": [ - 2046, + 2314, { "distinct_on": [ - 2069, + 2337, "[player_flashes_select_column!]" ], "limit": [ @@ -103346,19 +108773,19 @@ export default { 34 ], "order_by": [ - 2067, + 2335, "[player_flashes_order_by!]" ], "where": [ - 2057 + 2325 ] } ], "player_flashes_aggregate": [ - 2047, + 2315, { "distinct_on": [ - 2069, + 2337, "[player_flashes_select_column!]" ], "limit": [ @@ -103368,16 +108795,16 @@ export default { 34 ], "order_by": [ - 2067, + 2335, "[player_flashes_order_by!]" ], "where": [ - 2057 + 2325 ] } ], "player_flashes_by_pk": [ - 2046, + 2314, { "attacked_steam_id": [ 162, @@ -103388,20 +108815,20 @@ export default { "bigint!" ], "match_map_id": [ - 3319, + 3587, "uuid!" ], "time": [ - 2922, + 3190, "timestamptz!" ] } ], "player_kills": [ - 2091, + 2359, { "distinct_on": [ - 2155, + 2423, "[player_kills_select_column!]" ], "limit": [ @@ -103411,19 +108838,19 @@ export default { 34 ], "order_by": [ - 2153, + 2421, "[player_kills_order_by!]" ], "where": [ - 2102 + 2370 ] } ], "player_kills_aggregate": [ - 2092, + 2360, { "distinct_on": [ - 2155, + 2423, "[player_kills_select_column!]" ], "limit": [ @@ -103433,16 +108860,16 @@ export default { 34 ], "order_by": [ - 2153, + 2421, "[player_kills_order_by!]" ], "where": [ - 2102 + 2370 ] } ], "player_kills_by_pk": [ - 2091, + 2359, { "attacked_steam_id": [ 162, @@ -103453,20 +108880,20 @@ export default { "bigint!" ], "match_map_id": [ - 3319, + 3587, "uuid!" ], "time": [ - 2922, + 3190, "timestamptz!" ] } ], "player_kills_by_weapon": [ - 2103, + 2371, { "distinct_on": [ - 2124, + 2392, "[player_kills_by_weapon_select_column!]" ], "limit": [ @@ -103476,19 +108903,19 @@ export default { 34 ], "order_by": [ - 2122, + 2390, "[player_kills_by_weapon_order_by!]" ], "where": [ - 2112 + 2380 ] } ], "player_kills_by_weapon_aggregate": [ - 2104, + 2372, { "distinct_on": [ - 2124, + 2392, "[player_kills_by_weapon_select_column!]" ], "limit": [ @@ -103498,16 +108925,16 @@ export default { 34 ], "order_by": [ - 2122, + 2390, "[player_kills_by_weapon_order_by!]" ], "where": [ - 2112 + 2380 ] } ], "player_kills_by_weapon_by_pk": [ - 2103, + 2371, { "player_steam_id": [ 162, @@ -103520,10 +108947,10 @@ export default { } ], "player_leaderboard_rank": [ - 2177, + 2445, { "distinct_on": [ - 2188, + 2456, "[player_leaderboard_rank_select_column!]" ], "limit": [ @@ -103533,19 +108960,19 @@ export default { 34 ], "order_by": [ - 2187, + 2455, "[player_leaderboard_rank_order_by!]" ], "where": [ - 2181 + 2449 ] } ], "player_leaderboard_rank_aggregate": [ - 2178, + 2446, { "distinct_on": [ - 2188, + 2456, "[player_leaderboard_rank_select_column!]" ], "limit": [ @@ -103555,19 +108982,19 @@ export default { 34 ], "order_by": [ - 2187, + 2455, "[player_leaderboard_rank_order_by!]" ], "where": [ - 2181 + 2449 ] } ], "player_match_map_stats": [ - 2200, + 2468, { "distinct_on": [ - 2221, + 2489, "[player_match_map_stats_select_column!]" ], "limit": [ @@ -103577,19 +109004,19 @@ export default { 34 ], "order_by": [ - 2219, + 2487, "[player_match_map_stats_order_by!]" ], "where": [ - 2209 + 2477 ] } ], "player_match_map_stats_aggregate": [ - 2201, + 2469, { "distinct_on": [ - 2221, + 2489, "[player_match_map_stats_select_column!]" ], "limit": [ @@ -103599,19 +109026,19 @@ export default { 34 ], "order_by": [ - 2219, + 2487, "[player_match_map_stats_order_by!]" ], "where": [ - 2209 + 2477 ] } ], "player_match_map_stats_by_pk": [ - 2200, + 2468, { "match_map_id": [ - 3319, + 3587, "uuid!" ], "steam_id": [ @@ -103621,10 +109048,10 @@ export default { } ], "player_match_performance_v": [ - 2241, + 2509, { "distinct_on": [ - 2249, + 2517, "[player_match_performance_v_select_column!]" ], "limit": [ @@ -103634,19 +109061,19 @@ export default { 34 ], "order_by": [ - 2248, + 2516, "[player_match_performance_v_order_by!]" ], "where": [ - 2245 + 2513 ] } ], "player_match_performance_v_aggregate": [ - 2242, + 2510, { "distinct_on": [ - 2249, + 2517, "[player_match_performance_v_select_column!]" ], "limit": [ @@ -103656,19 +109083,19 @@ export default { 34 ], "order_by": [ - 2248, + 2516, "[player_match_performance_v_order_by!]" ], "where": [ - 2245 + 2513 ] } ], "player_match_stats_v": [ - 2259, + 2527, { "distinct_on": [ - 2275, + 2543, "[player_match_stats_v_select_column!]" ], "limit": [ @@ -103678,19 +109105,19 @@ export default { 34 ], "order_by": [ - 2274, + 2542, "[player_match_stats_v_order_by!]" ], "where": [ - 2268 + 2536 ] } ], "player_match_stats_v_aggregate": [ - 2260, + 2528, { "distinct_on": [ - 2275, + 2543, "[player_match_stats_v_select_column!]" ], "limit": [ @@ -103700,19 +109127,19 @@ export default { 34 ], "order_by": [ - 2274, + 2542, "[player_match_stats_v_order_by!]" ], "where": [ - 2268 + 2536 ] } ], "player_objectives": [ - 2292, + 2560, { "distinct_on": [ - 2313, + 2581, "[player_objectives_select_column!]" ], "limit": [ @@ -103722,19 +109149,19 @@ export default { 34 ], "order_by": [ - 2311, + 2579, "[player_objectives_order_by!]" ], "where": [ - 2301 + 2569 ] } ], "player_objectives_aggregate": [ - 2293, + 2561, { "distinct_on": [ - 2313, + 2581, "[player_objectives_select_column!]" ], "limit": [ @@ -103744,19 +109171,19 @@ export default { 34 ], "order_by": [ - 2311, + 2579, "[player_objectives_order_by!]" ], "where": [ - 2301 + 2569 ] } ], "player_objectives_by_pk": [ - 2292, + 2560, { "match_map_id": [ - 3319, + 3587, "uuid!" ], "player_steam_id": [ @@ -103764,16 +109191,16 @@ export default { "bigint!" ], "time": [ - 2922, + 3190, "timestamptz!" ] } ], "player_performance_v": [ - 2333, + 2601, { "distinct_on": [ - 2341, + 2609, "[player_performance_v_select_column!]" ], "limit": [ @@ -103783,19 +109210,19 @@ export default { 34 ], "order_by": [ - 2340, + 2608, "[player_performance_v_order_by!]" ], "where": [ - 2337 + 2605 ] } ], "player_performance_v_aggregate": [ - 2334, + 2602, { "distinct_on": [ - 2341, + 2609, "[player_performance_v_select_column!]" ], "limit": [ @@ -103805,19 +109232,19 @@ export default { 34 ], "order_by": [ - 2340, + 2608, "[player_performance_v_order_by!]" ], "where": [ - 2337 + 2605 ] } ], "player_premier_rank_history": [ - 2351, + 2619, { "distinct_on": [ - 2372, + 2640, "[player_premier_rank_history_select_column!]" ], "limit": [ @@ -103827,19 +109254,19 @@ export default { 34 ], "order_by": [ - 2370, + 2638, "[player_premier_rank_history_order_by!]" ], "where": [ - 2360 + 2628 ] } ], "player_premier_rank_history_aggregate": [ - 2352, + 2620, { "distinct_on": [ - 2372, + 2640, "[player_premier_rank_history_select_column!]" ], "limit": [ @@ -103849,28 +109276,28 @@ export default { 34 ], "order_by": [ - 2370, + 2638, "[player_premier_rank_history_order_by!]" ], "where": [ - 2360 + 2628 ] } ], "player_premier_rank_history_by_pk": [ - 2351, + 2619, { "id": [ - 3319, + 3587, "uuid!" ] } ], "player_sanctions": [ - 2392, + 2660, { "distinct_on": [ - 2413, + 2681, "[player_sanctions_select_column!]" ], "limit": [ @@ -103880,19 +109307,19 @@ export default { 34 ], "order_by": [ - 2411, + 2679, "[player_sanctions_order_by!]" ], "where": [ - 2401 + 2669 ] } ], "player_sanctions_aggregate": [ - 2393, + 2661, { "distinct_on": [ - 2413, + 2681, "[player_sanctions_select_column!]" ], "limit": [ @@ -103902,32 +109329,32 @@ export default { 34 ], "order_by": [ - 2411, + 2679, "[player_sanctions_order_by!]" ], "where": [ - 2401 + 2669 ] } ], "player_sanctions_by_pk": [ - 2392, + 2660, { "created_at": [ - 2922, + 3190, "timestamptz!" ], "id": [ - 3319, + 3587, "uuid!" ] } ], "player_stats": [ - 2433, + 2701, { "distinct_on": [ - 2448, + 2716, "[player_stats_select_column!]" ], "limit": [ @@ -103937,19 +109364,19 @@ export default { 34 ], "order_by": [ - 2446, + 2714, "[player_stats_order_by!]" ], "where": [ - 2437 + 2705 ] } ], "player_stats_aggregate": [ - 2434, + 2702, { "distinct_on": [ - 2448, + 2716, "[player_stats_select_column!]" ], "limit": [ @@ -103959,16 +109386,16 @@ export default { 34 ], "order_by": [ - 2446, + 2714, "[player_stats_order_by!]" ], "where": [ - 2437 + 2705 ] } ], "player_stats_by_pk": [ - 2433, + 2701, { "player_steam_id": [ 162, @@ -103977,10 +109404,10 @@ export default { } ], "player_steam_match_auth": [ - 2461, + 2729, { "distinct_on": [ - 2475, + 2743, "[player_steam_match_auth_select_column!]" ], "limit": [ @@ -103990,19 +109417,19 @@ export default { 34 ], "order_by": [ - 2473, + 2741, "[player_steam_match_auth_order_by!]" ], "where": [ - 2465 + 2733 ] } ], "player_steam_match_auth_aggregate": [ - 2462, + 2730, { "distinct_on": [ - 2475, + 2743, "[player_steam_match_auth_select_column!]" ], "limit": [ @@ -104012,16 +109439,16 @@ export default { 34 ], "order_by": [ - 2473, + 2741, "[player_steam_match_auth_order_by!]" ], "where": [ - 2465 + 2733 ] } ], "player_steam_match_auth_by_pk": [ - 2461, + 2729, { "steam_id": [ 162, @@ -104030,10 +109457,10 @@ export default { } ], "player_unused_utility": [ - 2488, + 2756, { "distinct_on": [ - 2509, + 2777, "[player_unused_utility_select_column!]" ], "limit": [ @@ -104043,19 +109470,19 @@ export default { 34 ], "order_by": [ - 2507, + 2775, "[player_unused_utility_order_by!]" ], "where": [ - 2497 + 2765 ] } ], "player_unused_utility_aggregate": [ - 2489, + 2757, { "distinct_on": [ - 2509, + 2777, "[player_unused_utility_select_column!]" ], "limit": [ @@ -104065,19 +109492,19 @@ export default { 34 ], "order_by": [ - 2507, + 2775, "[player_unused_utility_order_by!]" ], "where": [ - 2497 + 2765 ] } ], "player_unused_utility_by_pk": [ - 2488, + 2756, { "match_map_id": [ - 3319, + 3587, "uuid!" ], "player_steam_id": [ @@ -104087,10 +109514,10 @@ export default { } ], "player_utility": [ - 2529, + 2797, { "distinct_on": [ - 2550, + 2818, "[player_utility_select_column!]" ], "limit": [ @@ -104100,19 +109527,19 @@ export default { 34 ], "order_by": [ - 2548, + 2816, "[player_utility_order_by!]" ], "where": [ - 2538 + 2806 ] } ], "player_utility_aggregate": [ - 2530, + 2798, { "distinct_on": [ - 2550, + 2818, "[player_utility_select_column!]" ], "limit": [ @@ -104122,36 +109549,36 @@ export default { 34 ], "order_by": [ - 2548, + 2816, "[player_utility_order_by!]" ], "where": [ - 2538 + 2806 ] } ], "player_utility_by_pk": [ - 2529, + 2797, { "attacker_steam_id": [ 162, "bigint!" ], "match_map_id": [ - 3319, + 3587, "uuid!" ], "time": [ - 2922, + 3190, "timestamptz!" ] } ], "player_weapon_stats_v": [ - 2570, + 2838, { "distinct_on": [ - 2586, + 2854, "[player_weapon_stats_v_select_column!]" ], "limit": [ @@ -104161,19 +109588,19 @@ export default { 34 ], "order_by": [ - 2585, + 2853, "[player_weapon_stats_v_order_by!]" ], "where": [ - 2579 + 2847 ] } ], "player_weapon_stats_v_aggregate": [ - 2571, + 2839, { "distinct_on": [ - 2586, + 2854, "[player_weapon_stats_v_select_column!]" ], "limit": [ @@ -104183,19 +109610,19 @@ export default { 34 ], "order_by": [ - 2585, + 2853, "[player_weapon_stats_v_order_by!]" ], "where": [ - 2579 + 2847 ] } ], "players": [ - 2603, + 2871, { "distinct_on": [ - 2618, + 2886, "[players_select_column!]" ], "limit": [ @@ -104205,19 +109632,19 @@ export default { 34 ], "order_by": [ - 2616, + 2884, "[players_order_by!]" ], "where": [ - 2607 + 2875 ] } ], "players_aggregate": [ - 2604, + 2872, { "distinct_on": [ - 2618, + 2886, "[players_select_column!]" ], "limit": [ @@ -104227,16 +109654,16 @@ export default { 34 ], "order_by": [ - 2616, + 2884, "[players_order_by!]" ], "where": [ - 2607 + 2875 ] } ], "players_by_pk": [ - 2603, + 2871, { "steam_id": [ 162, @@ -104245,10 +109672,10 @@ export default { } ], "plugin_versions": [ - 2631, + 2899, { "distinct_on": [ - 2645, + 2913, "[plugin_versions_select_column!]" ], "limit": [ @@ -104258,19 +109685,19 @@ export default { 34 ], "order_by": [ - 2643, + 2911, "[plugin_versions_order_by!]" ], "where": [ - 2635 + 2903 ] } ], "plugin_versions_aggregate": [ - 2632, + 2900, { "distinct_on": [ - 2645, + 2913, "[plugin_versions_select_column!]" ], "limit": [ @@ -104280,16 +109707,16 @@ export default { 34 ], "order_by": [ - 2643, + 2911, "[plugin_versions_order_by!]" ], "where": [ - 2635 + 2903 ] } ], "plugin_versions_by_pk": [ - 2631, + 2899, { "version": [ 63, @@ -104314,10 +109741,10 @@ export default { } ], "server_regions": [ - 2659, + 2927, { "distinct_on": [ - 2673, + 2941, "[server_regions_select_column!]" ], "limit": [ @@ -104327,19 +109754,19 @@ export default { 34 ], "order_by": [ - 2671, + 2939, "[server_regions_order_by!]" ], "where": [ - 2663 + 2931 ] } ], "server_regions_aggregate": [ - 2660, + 2928, { "distinct_on": [ - 2673, + 2941, "[server_regions_select_column!]" ], "limit": [ @@ -104349,16 +109776,16 @@ export default { 34 ], "order_by": [ - 2671, + 2939, "[server_regions_order_by!]" ], "where": [ - 2663 + 2931 ] } ], "server_regions_by_pk": [ - 2659, + 2927, { "value": [ 63, @@ -104367,10 +109794,10 @@ export default { } ], "servers": [ - 2686, + 2954, { "distinct_on": [ - 2710, + 2978, "[servers_select_column!]" ], "limit": [ @@ -104380,19 +109807,19 @@ export default { 34 ], "order_by": [ - 2708, + 2976, "[servers_order_by!]" ], "where": [ - 2697 + 2965 ] } ], "servers_aggregate": [ - 2687, + 2955, { "distinct_on": [ - 2710, + 2978, "[servers_select_column!]" ], "limit": [ @@ -104402,28 +109829,28 @@ export default { 34 ], "order_by": [ - 2708, + 2976, "[servers_order_by!]" ], "where": [ - 2697 + 2965 ] } ], "servers_by_pk": [ - 2686, + 2954, { "id": [ - 3319, + 3587, "uuid!" ] } ], "settings": [ - 2732, + 3000, { "distinct_on": [ - 2744, + 3012, "[settings_select_column!]" ], "limit": [ @@ -104433,19 +109860,19 @@ export default { 34 ], "order_by": [ - 2742, + 3010, "[settings_order_by!]" ], "where": [ - 2735 + 3003 ] } ], "settings_aggregate": [ - 2733, + 3001, { "distinct_on": [ - 2744, + 3012, "[settings_select_column!]" ], "limit": [ @@ -104455,16 +109882,16 @@ export default { 34 ], "order_by": [ - 2742, + 3010, "[settings_order_by!]" ], "where": [ - 2735 + 3003 ] } ], "settings_by_pk": [ - 2732, + 3000, { "name": [ 63, @@ -104473,10 +109900,10 @@ export default { } ], "steam_account_claims": [ - 2750, + 3018, { "distinct_on": [ - 2768, + 3036, "[steam_account_claims_select_column!]" ], "limit": [ @@ -104486,19 +109913,19 @@ export default { 34 ], "order_by": [ - 2766, + 3034, "[steam_account_claims_order_by!]" ], "where": [ - 2757 + 3025 ] } ], "steam_account_claims_aggregate": [ - 2751, + 3019, { "distinct_on": [ - 2768, + 3036, "[steam_account_claims_select_column!]" ], "limit": [ @@ -104508,28 +109935,28 @@ export default { 34 ], "order_by": [ - 2766, + 3034, "[steam_account_claims_order_by!]" ], "where": [ - 2757 + 3025 ] } ], "steam_account_claims_by_pk": [ - 2750, + 3018, { "id": [ - 3319, + 3587, "uuid!" ] } ], "steam_accounts": [ - 2774, + 3042, { "distinct_on": [ - 2787, + 3055, "[steam_accounts_select_column!]" ], "limit": [ @@ -104539,19 +109966,19 @@ export default { 34 ], "order_by": [ - 2785, + 3053, "[steam_accounts_order_by!]" ], "where": [ - 2777 + 3045 ] } ], "steam_accounts_aggregate": [ - 2775, + 3043, { "distinct_on": [ - 2787, + 3055, "[steam_accounts_select_column!]" ], "limit": [ @@ -104561,28 +109988,28 @@ export default { 34 ], "order_by": [ - 2785, + 3053, "[steam_accounts_order_by!]" ], "where": [ - 2777 + 3045 ] } ], "steam_accounts_by_pk": [ - 2774, + 3042, { "id": [ - 3319, + 3587, "uuid!" ] } ], "team_invites": [ - 2793, + 3061, { "distinct_on": [ - 2814, + 3082, "[team_invites_select_column!]" ], "limit": [ @@ -104592,19 +110019,19 @@ export default { 34 ], "order_by": [ - 2812, + 3080, "[team_invites_order_by!]" ], "where": [ - 2802 + 3070 ] } ], "team_invites_aggregate": [ - 2794, + 3062, { "distinct_on": [ - 2814, + 3082, "[team_invites_select_column!]" ], "limit": [ @@ -104614,28 +110041,28 @@ export default { 34 ], "order_by": [ - 2812, + 3080, "[team_invites_order_by!]" ], "where": [ - 2802 + 3070 ] } ], "team_invites_by_pk": [ - 2793, + 3061, { "id": [ - 3319, + 3587, "uuid!" ] } ], "team_roster": [ - 2834, + 3102, { "distinct_on": [ - 2857, + 3125, "[team_roster_select_column!]" ], "limit": [ @@ -104645,19 +110072,19 @@ export default { 34 ], "order_by": [ - 2855, + 3123, "[team_roster_order_by!]" ], "where": [ - 2845 + 3113 ] } ], "team_roster_aggregate": [ - 2835, + 3103, { "distinct_on": [ - 2857, + 3125, "[team_roster_select_column!]" ], "limit": [ @@ -104667,32 +110094,32 @@ export default { 34 ], "order_by": [ - 2855, + 3123, "[team_roster_order_by!]" ], "where": [ - 2845 + 3113 ] } ], "team_roster_by_pk": [ - 2834, + 3102, { "player_steam_id": [ 162, "bigint!" ], "team_id": [ - 3319, + 3587, "uuid!" ] } ], "teams": [ - 2879, + 3147, { "distinct_on": [ - 2901, + 3169, "[teams_select_column!]" ], "limit": [ @@ -104702,19 +110129,19 @@ export default { 34 ], "order_by": [ - 2899, + 3167, "[teams_order_by!]" ], "where": [ - 2888 + 3156 ] } ], "teams_aggregate": [ - 2880, + 3148, { "distinct_on": [ - 2901, + 3169, "[teams_select_column!]" ], "limit": [ @@ -104724,19 +110151,19 @@ export default { 34 ], "order_by": [ - 2899, + 3167, "[teams_order_by!]" ], "where": [ - 2888 + 3156 ] } ], "teams_by_pk": [ - 2879, + 3147, { "id": [ - 3319, + 3587, "uuid!" ] } @@ -104745,10 +110172,10 @@ export default { 70 ], "tournament_brackets": [ - 2924, + 3192, { "distinct_on": [ - 2948, + 3216, "[tournament_brackets_select_column!]" ], "limit": [ @@ -104758,19 +110185,19 @@ export default { 34 ], "order_by": [ - 2946, + 3214, "[tournament_brackets_order_by!]" ], "where": [ - 2935 + 3203 ] } ], "tournament_brackets_aggregate": [ - 2925, + 3193, { "distinct_on": [ - 2948, + 3216, "[tournament_brackets_select_column!]" ], "limit": [ @@ -104780,28 +110207,28 @@ export default { 34 ], "order_by": [ - 2946, + 3214, "[tournament_brackets_order_by!]" ], "where": [ - 2935 + 3203 ] } ], "tournament_brackets_by_pk": [ - 2924, + 3192, { "id": [ - 3319, + 3587, "uuid!" ] } ], "tournament_organizers": [ - 2970, + 3238, { "distinct_on": [ - 2991, + 3259, "[tournament_organizers_select_column!]" ], "limit": [ @@ -104811,19 +110238,19 @@ export default { 34 ], "order_by": [ - 2989, + 3257, "[tournament_organizers_order_by!]" ], "where": [ - 2979 + 3247 ] } ], "tournament_organizers_aggregate": [ - 2971, + 3239, { "distinct_on": [ - 2991, + 3259, "[tournament_organizers_select_column!]" ], "limit": [ @@ -104833,32 +110260,32 @@ export default { 34 ], "order_by": [ - 2989, + 3257, "[tournament_organizers_order_by!]" ], "where": [ - 2979 + 3247 ] } ], "tournament_organizers_by_pk": [ - 2970, + 3238, { "steam_id": [ 162, "bigint!" ], "tournament_id": [ - 3319, + 3587, "uuid!" ] } ], "tournament_stages": [ - 3011, + 3279, { "distinct_on": [ - 3040, + 3308, "[tournament_stages_select_column!]" ], "limit": [ @@ -104868,19 +110295,19 @@ export default { 34 ], "order_by": [ - 3037, + 3305, "[tournament_stages_order_by!]" ], "where": [ - 3023 + 3291 ] } ], "tournament_stages_aggregate": [ - 3012, + 3280, { "distinct_on": [ - 3040, + 3308, "[tournament_stages_select_column!]" ], "limit": [ @@ -104890,28 +110317,28 @@ export default { 34 ], "order_by": [ - 3037, + 3305, "[tournament_stages_order_by!]" ], "where": [ - 3023 + 3291 ] } ], "tournament_stages_by_pk": [ - 3011, + 3279, { "id": [ - 3319, + 3587, "uuid!" ] } ], "tournament_team_invites": [ - 3062, + 3330, { "distinct_on": [ - 3083, + 3351, "[tournament_team_invites_select_column!]" ], "limit": [ @@ -104921,19 +110348,19 @@ export default { 34 ], "order_by": [ - 3081, + 3349, "[tournament_team_invites_order_by!]" ], "where": [ - 3071 + 3339 ] } ], "tournament_team_invites_aggregate": [ - 3063, + 3331, { "distinct_on": [ - 3083, + 3351, "[tournament_team_invites_select_column!]" ], "limit": [ @@ -104943,28 +110370,28 @@ export default { 34 ], "order_by": [ - 3081, + 3349, "[tournament_team_invites_order_by!]" ], "where": [ - 3071 + 3339 ] } ], "tournament_team_invites_by_pk": [ - 3062, + 3330, { "id": [ - 3319, + 3587, "uuid!" ] } ], "tournament_team_roster": [ - 3103, + 3371, { "distinct_on": [ - 3124, + 3392, "[tournament_team_roster_select_column!]" ], "limit": [ @@ -104974,19 +110401,19 @@ export default { 34 ], "order_by": [ - 3122, + 3390, "[tournament_team_roster_order_by!]" ], "where": [ - 3112 + 3380 ] } ], "tournament_team_roster_aggregate": [ - 3104, + 3372, { "distinct_on": [ - 3124, + 3392, "[tournament_team_roster_select_column!]" ], "limit": [ @@ -104996,32 +110423,32 @@ export default { 34 ], "order_by": [ - 3122, + 3390, "[tournament_team_roster_order_by!]" ], "where": [ - 3112 + 3380 ] } ], "tournament_team_roster_by_pk": [ - 3103, + 3371, { "player_steam_id": [ 162, "bigint!" ], "tournament_id": [ - 3319, + 3587, "uuid!" ] } ], "tournament_teams": [ - 3144, + 3412, { "distinct_on": [ - 3166, + 3434, "[tournament_teams_select_column!]" ], "limit": [ @@ -105031,19 +110458,19 @@ export default { 34 ], "order_by": [ - 3164, + 3432, "[tournament_teams_order_by!]" ], "where": [ - 3153 + 3421 ] } ], "tournament_teams_aggregate": [ - 3145, + 3413, { "distinct_on": [ - 3166, + 3434, "[tournament_teams_select_column!]" ], "limit": [ @@ -105053,28 +110480,28 @@ export default { 34 ], "order_by": [ - 3164, + 3432, "[tournament_teams_order_by!]" ], "where": [ - 3153 + 3421 ] } ], "tournament_teams_by_pk": [ - 3144, + 3412, { "id": [ - 3319, + 3587, "uuid!" ] } ], "tournament_trophies": [ - 3186, + 3454, { "distinct_on": [ - 3209, + 3477, "[tournament_trophies_select_column!]" ], "limit": [ @@ -105084,19 +110511,19 @@ export default { 34 ], "order_by": [ - 3207, + 3475, "[tournament_trophies_order_by!]" ], "where": [ - 3197 + 3465 ] } ], "tournament_trophies_aggregate": [ - 3187, + 3455, { "distinct_on": [ - 3209, + 3477, "[tournament_trophies_select_column!]" ], "limit": [ @@ -105106,28 +110533,28 @@ export default { 34 ], "order_by": [ - 3207, + 3475, "[tournament_trophies_order_by!]" ], "where": [ - 3197 + 3465 ] } ], "tournament_trophies_by_pk": [ - 3186, + 3454, { "id": [ - 3319, + 3587, "uuid!" ] } ], "tournament_trophy_configs": [ - 3231, + 3499, { "distinct_on": [ - 3253, + 3521, "[tournament_trophy_configs_select_column!]" ], "limit": [ @@ -105137,19 +110564,19 @@ export default { 34 ], "order_by": [ - 3251, + 3519, "[tournament_trophy_configs_order_by!]" ], "where": [ - 3240 + 3508 ] } ], "tournament_trophy_configs_aggregate": [ - 3232, + 3500, { "distinct_on": [ - 3253, + 3521, "[tournament_trophy_configs_select_column!]" ], "limit": [ @@ -105159,28 +110586,28 @@ export default { 34 ], "order_by": [ - 3251, + 3519, "[tournament_trophy_configs_order_by!]" ], "where": [ - 3240 + 3508 ] } ], "tournament_trophy_configs_by_pk": [ - 3231, + 3499, { "id": [ - 3319, + 3587, "uuid!" ] } ], "tournaments": [ - 3273, + 3541, { "distinct_on": [ - 3297, + 3565, "[tournaments_select_column!]" ], "limit": [ @@ -105190,19 +110617,19 @@ export default { 34 ], "order_by": [ - 3295, + 3563, "[tournaments_order_by!]" ], "where": [ - 3284 + 3552 ] } ], "tournaments_aggregate": [ - 3274, + 3542, { "distinct_on": [ - 3297, + 3565, "[tournaments_select_column!]" ], "limit": [ @@ -105212,28 +110639,28 @@ export default { 34 ], "order_by": [ - 3295, + 3563, "[tournaments_order_by!]" ], "where": [ - 3284 + 3552 ] } ], "tournaments_by_pk": [ - 3273, + 3541, { "id": [ - 3319, + 3587, "uuid!" ] } ], "v_gpu_pool_status": [ - 3321, + 3589, { "distinct_on": [ - 3329, + 3597, "[v_gpu_pool_status_select_column!]" ], "limit": [ @@ -105243,19 +110670,19 @@ export default { 34 ], "order_by": [ - 3328, + 3596, "[v_gpu_pool_status_order_by!]" ], "where": [ - 3325 + 3593 ] } ], "v_gpu_pool_status_aggregate": [ - 3322, + 3590, { "distinct_on": [ - 3329, + 3597, "[v_gpu_pool_status_select_column!]" ], "limit": [ @@ -105265,19 +110692,19 @@ export default { 34 ], "order_by": [ - 3328, + 3596, "[v_gpu_pool_status_order_by!]" ], "where": [ - 3325 + 3593 ] } ], "v_match_captains": [ - 3339, + 3607, { "distinct_on": [ - 3351, + 3619, "[v_match_captains_select_column!]" ], "limit": [ @@ -105287,19 +110714,19 @@ export default { 34 ], "order_by": [ - 3350, + 3618, "[v_match_captains_order_by!]" ], "where": [ - 3343 + 3611 ] } ], "v_match_captains_aggregate": [ - 3340, + 3608, { "distinct_on": [ - 3351, + 3619, "[v_match_captains_select_column!]" ], "limit": [ @@ -105309,19 +110736,19 @@ export default { 34 ], "order_by": [ - 3350, + 3618, "[v_match_captains_order_by!]" ], "where": [ - 3343 + 3611 ] } ], "v_match_clutches": [ - 3363, + 3631, { "distinct_on": [ - 3379, + 3647, "[v_match_clutches_select_column!]" ], "limit": [ @@ -105331,19 +110758,19 @@ export default { 34 ], "order_by": [ - 3378, + 3646, "[v_match_clutches_order_by!]" ], "where": [ - 3372 + 3640 ] } ], "v_match_clutches_aggregate": [ - 3364, + 3632, { "distinct_on": [ - 3379, + 3647, "[v_match_clutches_select_column!]" ], "limit": [ @@ -105353,19 +110780,19 @@ export default { 34 ], "order_by": [ - 3378, + 3646, "[v_match_clutches_order_by!]" ], "where": [ - 3372 + 3640 ] } ], "v_match_kill_pairs": [ - 3396, + 3664, { "distinct_on": [ - 3404, + 3672, "[v_match_kill_pairs_select_column!]" ], "limit": [ @@ -105375,19 +110802,19 @@ export default { 34 ], "order_by": [ - 3403, + 3671, "[v_match_kill_pairs_order_by!]" ], "where": [ - 3400 + 3668 ] } ], "v_match_kill_pairs_aggregate": [ - 3397, + 3665, { "distinct_on": [ - 3404, + 3672, "[v_match_kill_pairs_select_column!]" ], "limit": [ @@ -105397,19 +110824,19 @@ export default { 34 ], "order_by": [ - 3403, + 3671, "[v_match_kill_pairs_order_by!]" ], "where": [ - 3400 + 3668 ] } ], "v_match_lineup_buy_types": [ - 3414, + 3682, { "distinct_on": [ - 3422, + 3690, "[v_match_lineup_buy_types_select_column!]" ], "limit": [ @@ -105419,19 +110846,19 @@ export default { 34 ], "order_by": [ - 3421, + 3689, "[v_match_lineup_buy_types_order_by!]" ], "where": [ - 3418 + 3686 ] } ], "v_match_lineup_buy_types_aggregate": [ - 3415, + 3683, { "distinct_on": [ - 3422, + 3690, "[v_match_lineup_buy_types_select_column!]" ], "limit": [ @@ -105441,19 +110868,19 @@ export default { 34 ], "order_by": [ - 3421, + 3689, "[v_match_lineup_buy_types_order_by!]" ], "where": [ - 3418 + 3686 ] } ], "v_match_lineup_map_stats": [ - 3432, + 3700, { "distinct_on": [ - 3440, + 3708, "[v_match_lineup_map_stats_select_column!]" ], "limit": [ @@ -105463,19 +110890,19 @@ export default { 34 ], "order_by": [ - 3439, + 3707, "[v_match_lineup_map_stats_order_by!]" ], "where": [ - 3436 + 3704 ] } ], "v_match_lineup_map_stats_aggregate": [ - 3433, + 3701, { "distinct_on": [ - 3440, + 3708, "[v_match_lineup_map_stats_select_column!]" ], "limit": [ @@ -105485,19 +110912,19 @@ export default { 34 ], "order_by": [ - 3439, + 3707, "[v_match_lineup_map_stats_order_by!]" ], "where": [ - 3436 + 3704 ] } ], "v_match_map_backup_rounds": [ - 3450, + 3718, { "distinct_on": [ - 3461, + 3729, "[v_match_map_backup_rounds_select_column!]" ], "limit": [ @@ -105507,19 +110934,19 @@ export default { 34 ], "order_by": [ - 3460, + 3728, "[v_match_map_backup_rounds_order_by!]" ], "where": [ - 3454 + 3722 ] } ], "v_match_map_backup_rounds_aggregate": [ - 3451, + 3719, { "distinct_on": [ - 3461, + 3729, "[v_match_map_backup_rounds_select_column!]" ], "limit": [ @@ -105529,19 +110956,19 @@ export default { 34 ], "order_by": [ - 3460, + 3728, "[v_match_map_backup_rounds_order_by!]" ], "where": [ - 3454 + 3722 ] } ], "v_match_player_buy_types": [ - 3473, + 3741, { "distinct_on": [ - 3481, + 3749, "[v_match_player_buy_types_select_column!]" ], "limit": [ @@ -105551,19 +110978,19 @@ export default { 34 ], "order_by": [ - 3480, + 3748, "[v_match_player_buy_types_order_by!]" ], "where": [ - 3477 + 3745 ] } ], "v_match_player_buy_types_aggregate": [ - 3474, + 3742, { "distinct_on": [ - 3481, + 3749, "[v_match_player_buy_types_select_column!]" ], "limit": [ @@ -105573,19 +111000,19 @@ export default { 34 ], "order_by": [ - 3480, + 3748, "[v_match_player_buy_types_order_by!]" ], "where": [ - 3477 + 3745 ] } ], "v_match_player_opening_duels": [ - 3491, + 3759, { "distinct_on": [ - 3507, + 3775, "[v_match_player_opening_duels_select_column!]" ], "limit": [ @@ -105595,19 +111022,19 @@ export default { 34 ], "order_by": [ - 3506, + 3774, "[v_match_player_opening_duels_order_by!]" ], "where": [ - 3500 + 3768 ] } ], "v_match_player_opening_duels_aggregate": [ - 3492, + 3760, { "distinct_on": [ - 3507, + 3775, "[v_match_player_opening_duels_select_column!]" ], "limit": [ @@ -105617,19 +111044,19 @@ export default { 34 ], "order_by": [ - 3506, + 3774, "[v_match_player_opening_duels_order_by!]" ], "where": [ - 3500 + 3768 ] } ], "v_player_arch_nemesis": [ - 3524, + 3792, { "distinct_on": [ - 3532, + 3800, "[v_player_arch_nemesis_select_column!]" ], "limit": [ @@ -105639,19 +111066,19 @@ export default { 34 ], "order_by": [ - 3531, + 3799, "[v_player_arch_nemesis_order_by!]" ], "where": [ - 3528 + 3796 ] } ], "v_player_arch_nemesis_aggregate": [ - 3525, + 3793, { "distinct_on": [ - 3532, + 3800, "[v_player_arch_nemesis_select_column!]" ], "limit": [ @@ -105661,19 +111088,19 @@ export default { 34 ], "order_by": [ - 3531, + 3799, "[v_player_arch_nemesis_order_by!]" ], "where": [ - 3528 + 3796 ] } ], "v_player_damage": [ - 3542, + 3810, { "distinct_on": [ - 3550, + 3818, "[v_player_damage_select_column!]" ], "limit": [ @@ -105683,19 +111110,19 @@ export default { 34 ], "order_by": [ - 3549, + 3817, "[v_player_damage_order_by!]" ], "where": [ - 3546 + 3814 ] } ], "v_player_damage_aggregate": [ - 3543, + 3811, { "distinct_on": [ - 3550, + 3818, "[v_player_damage_select_column!]" ], "limit": [ @@ -105705,19 +111132,19 @@ export default { 34 ], "order_by": [ - 3549, + 3817, "[v_player_damage_order_by!]" ], "where": [ - 3546 + 3814 ] } ], "v_player_elo": [ - 3560, + 3828, { "distinct_on": [ - 3586, + 3854, "[v_player_elo_select_column!]" ], "limit": [ @@ -105727,19 +111154,19 @@ export default { 34 ], "order_by": [ - 3585, + 3853, "[v_player_elo_order_by!]" ], "where": [ - 3579 + 3847 ] } ], "v_player_elo_aggregate": [ - 3561, + 3829, { "distinct_on": [ - 3586, + 3854, "[v_player_elo_select_column!]" ], "limit": [ @@ -105749,19 +111176,19 @@ export default { 34 ], "order_by": [ - 3585, + 3853, "[v_player_elo_order_by!]" ], "where": [ - 3579 + 3847 ] } ], "v_player_map_losses": [ - 3611, + 3879, { "distinct_on": [ - 3619, + 3887, "[v_player_map_losses_select_column!]" ], "limit": [ @@ -105771,19 +111198,19 @@ export default { 34 ], "order_by": [ - 3618, + 3886, "[v_player_map_losses_order_by!]" ], "where": [ - 3615 + 3883 ] } ], "v_player_map_losses_aggregate": [ - 3612, + 3880, { "distinct_on": [ - 3619, + 3887, "[v_player_map_losses_select_column!]" ], "limit": [ @@ -105793,19 +111220,19 @@ export default { 34 ], "order_by": [ - 3618, + 3886, "[v_player_map_losses_order_by!]" ], "where": [ - 3615 + 3883 ] } ], "v_player_map_wins": [ - 3629, + 3897, { "distinct_on": [ - 3637, + 3905, "[v_player_map_wins_select_column!]" ], "limit": [ @@ -105815,19 +111242,19 @@ export default { 34 ], "order_by": [ - 3636, + 3904, "[v_player_map_wins_order_by!]" ], "where": [ - 3633 + 3901 ] } ], "v_player_map_wins_aggregate": [ - 3630, + 3898, { "distinct_on": [ - 3637, + 3905, "[v_player_map_wins_select_column!]" ], "limit": [ @@ -105837,19 +111264,19 @@ export default { 34 ], "order_by": [ - 3636, + 3904, "[v_player_map_wins_order_by!]" ], "where": [ - 3633 + 3901 ] } ], "v_player_match_head_to_head": [ - 3647, + 3915, { "distinct_on": [ - 3655, + 3923, "[v_player_match_head_to_head_select_column!]" ], "limit": [ @@ -105859,19 +111286,19 @@ export default { 34 ], "order_by": [ - 3654, + 3922, "[v_player_match_head_to_head_order_by!]" ], "where": [ - 3651 + 3919 ] } ], "v_player_match_head_to_head_aggregate": [ - 3648, + 3916, { "distinct_on": [ - 3655, + 3923, "[v_player_match_head_to_head_select_column!]" ], "limit": [ @@ -105881,19 +111308,19 @@ export default { 34 ], "order_by": [ - 3654, + 3922, "[v_player_match_head_to_head_order_by!]" ], "where": [ - 3651 + 3919 ] } ], "v_player_match_map_hltv": [ - 3665, + 3933, { "distinct_on": [ - 3683, + 3951, "[v_player_match_map_hltv_select_column!]" ], "limit": [ @@ -105903,19 +111330,19 @@ export default { 34 ], "order_by": [ - 3682, + 3950, "[v_player_match_map_hltv_order_by!]" ], "where": [ - 3674 + 3942 ] } ], "v_player_match_map_hltv_aggregate": [ - 3666, + 3934, { "distinct_on": [ - 3683, + 3951, "[v_player_match_map_hltv_select_column!]" ], "limit": [ @@ -105925,19 +111352,19 @@ export default { 34 ], "order_by": [ - 3682, + 3950, "[v_player_match_map_hltv_order_by!]" ], "where": [ - 3674 + 3942 ] } ], "v_player_match_map_roles": [ - 3702, + 3970, { "distinct_on": [ - 3710, + 3978, "[v_player_match_map_roles_select_column!]" ], "limit": [ @@ -105947,19 +111374,19 @@ export default { 34 ], "order_by": [ - 3709, + 3977, "[v_player_match_map_roles_order_by!]" ], "where": [ - 3706 + 3974 ] } ], "v_player_match_map_roles_aggregate": [ - 3703, + 3971, { "distinct_on": [ - 3710, + 3978, "[v_player_match_map_roles_select_column!]" ], "limit": [ @@ -105969,19 +111396,19 @@ export default { 34 ], "order_by": [ - 3709, + 3977, "[v_player_match_map_roles_order_by!]" ], "where": [ - 3706 + 3974 ] } ], "v_player_match_performance": [ - 3720, + 3988, { "distinct_on": [ - 3728, + 3996, "[v_player_match_performance_select_column!]" ], "limit": [ @@ -105991,19 +111418,19 @@ export default { 34 ], "order_by": [ - 3727, + 3995, "[v_player_match_performance_order_by!]" ], "where": [ - 3724 + 3992 ] } ], "v_player_match_performance_aggregate": [ - 3721, + 3989, { "distinct_on": [ - 3728, + 3996, "[v_player_match_performance_select_column!]" ], "limit": [ @@ -106013,19 +111440,19 @@ export default { 34 ], "order_by": [ - 3727, + 3995, "[v_player_match_performance_order_by!]" ], "where": [ - 3724 + 3992 ] } ], "v_player_match_rating": [ - 3738, + 4006, { "distinct_on": [ - 3746, + 4014, "[v_player_match_rating_select_column!]" ], "limit": [ @@ -106035,19 +111462,19 @@ export default { 34 ], "order_by": [ - 3745, + 4013, "[v_player_match_rating_order_by!]" ], "where": [ - 3742 + 4010 ] } ], "v_player_match_rating_aggregate": [ - 3739, + 4007, { "distinct_on": [ - 3746, + 4014, "[v_player_match_rating_select_column!]" ], "limit": [ @@ -106057,19 +111484,19 @@ export default { 34 ], "order_by": [ - 3745, + 4013, "[v_player_match_rating_order_by!]" ], "where": [ - 3742 + 4010 ] } ], "v_player_multi_kills": [ - 3756, + 4024, { "distinct_on": [ - 3772, + 4040, "[v_player_multi_kills_select_column!]" ], "limit": [ @@ -106079,19 +111506,19 @@ export default { 34 ], "order_by": [ - 3771, + 4039, "[v_player_multi_kills_order_by!]" ], "where": [ - 3765 + 4033 ] } ], "v_player_multi_kills_aggregate": [ - 3757, + 4025, { "distinct_on": [ - 3772, + 4040, "[v_player_multi_kills_select_column!]" ], "limit": [ @@ -106101,19 +111528,19 @@ export default { 34 ], "order_by": [ - 3771, + 4039, "[v_player_multi_kills_order_by!]" ], "where": [ - 3765 + 4033 ] } ], "v_player_weapon_damage": [ - 3789, + 4057, { "distinct_on": [ - 3797, + 4065, "[v_player_weapon_damage_select_column!]" ], "limit": [ @@ -106123,19 +111550,19 @@ export default { 34 ], "order_by": [ - 3796, + 4064, "[v_player_weapon_damage_order_by!]" ], "where": [ - 3793 + 4061 ] } ], "v_player_weapon_damage_aggregate": [ - 3790, + 4058, { "distinct_on": [ - 3797, + 4065, "[v_player_weapon_damage_select_column!]" ], "limit": [ @@ -106145,19 +111572,19 @@ export default { 34 ], "order_by": [ - 3796, + 4064, "[v_player_weapon_damage_order_by!]" ], "where": [ - 3793 + 4061 ] } ], "v_player_weapon_kills": [ - 3807, + 4075, { "distinct_on": [ - 3815, + 4083, "[v_player_weapon_kills_select_column!]" ], "limit": [ @@ -106167,19 +111594,19 @@ export default { 34 ], "order_by": [ - 3814, + 4082, "[v_player_weapon_kills_order_by!]" ], "where": [ - 3811 + 4079 ] } ], "v_player_weapon_kills_aggregate": [ - 3808, + 4076, { "distinct_on": [ - 3815, + 4083, "[v_player_weapon_kills_select_column!]" ], "limit": [ @@ -106189,19 +111616,19 @@ export default { 34 ], "order_by": [ - 3814, + 4082, "[v_player_weapon_kills_order_by!]" ], "where": [ - 3811 + 4079 ] } ], "v_pool_maps": [ - 3825, + 4093, { "distinct_on": [ - 3842, + 4110, "[v_pool_maps_select_column!]" ], "limit": [ @@ -106211,19 +111638,19 @@ export default { 34 ], "order_by": [ - 3841, + 4109, "[v_pool_maps_order_by!]" ], "where": [ - 3834 + 4102 ] } ], "v_pool_maps_aggregate": [ - 3826, + 4094, { "distinct_on": [ - 3842, + 4110, "[v_pool_maps_select_column!]" ], "limit": [ @@ -106233,19 +111660,19 @@ export default { 34 ], "order_by": [ - 3841, + 4109, "[v_pool_maps_order_by!]" ], "where": [ - 3834 + 4102 ] } ], "v_steam_account_pool_status": [ - 3849, + 4117, { "distinct_on": [ - 3857, + 4125, "[v_steam_account_pool_status_select_column!]" ], "limit": [ @@ -106255,19 +111682,19 @@ export default { 34 ], "order_by": [ - 3856, + 4124, "[v_steam_account_pool_status_order_by!]" ], "where": [ - 3853 + 4121 ] } ], "v_steam_account_pool_status_aggregate": [ - 3850, + 4118, { "distinct_on": [ - 3857, + 4125, "[v_steam_account_pool_status_select_column!]" ], "limit": [ @@ -106277,19 +111704,19 @@ export default { 34 ], "order_by": [ - 3856, + 4124, "[v_steam_account_pool_status_order_by!]" ], "where": [ - 3853 + 4121 ] } ], "v_team_stage_results": [ - 3867, + 4135, { "distinct_on": [ - 3899, + 4167, "[v_team_stage_results_select_column!]" ], "limit": [ @@ -106299,19 +111726,19 @@ export default { 34 ], "order_by": [ - 3897, + 4165, "[v_team_stage_results_order_by!]" ], "where": [ - 3886 + 4154 ] } ], "v_team_stage_results_aggregate": [ - 3868, + 4136, { "distinct_on": [ - 3899, + 4167, "[v_team_stage_results_select_column!]" ], "limit": [ @@ -106321,32 +111748,32 @@ export default { 34 ], "order_by": [ - 3897, + 4165, "[v_team_stage_results_order_by!]" ], "where": [ - 3886 + 4154 ] } ], "v_team_stage_results_by_pk": [ - 3867, + 4135, { "tournament_stage_id": [ - 3319, + 3587, "uuid!" ], "tournament_team_id": [ - 3319, + 3587, "uuid!" ] } ], "v_team_tournament_results": [ - 3927, + 4195, { "distinct_on": [ - 3953, + 4221, "[v_team_tournament_results_select_column!]" ], "limit": [ @@ -106356,19 +111783,19 @@ export default { 34 ], "order_by": [ - 3952, + 4220, "[v_team_tournament_results_order_by!]" ], "where": [ - 3946 + 4214 ] } ], "v_team_tournament_results_aggregate": [ - 3928, + 4196, { "distinct_on": [ - 3953, + 4221, "[v_team_tournament_results_select_column!]" ], "limit": [ @@ -106378,19 +111805,19 @@ export default { 34 ], "order_by": [ - 3952, + 4220, "[v_team_tournament_results_order_by!]" ], "where": [ - 3946 + 4214 ] } ], "v_tournament_player_stats": [ - 3978, + 4246, { "distinct_on": [ - 4004, + 4272, "[v_tournament_player_stats_select_column!]" ], "limit": [ @@ -106400,19 +111827,19 @@ export default { 34 ], "order_by": [ - 4003, + 4271, "[v_tournament_player_stats_order_by!]" ], "where": [ - 3997 + 4265 ] } ], "v_tournament_player_stats_aggregate": [ - 3979, + 4247, { "distinct_on": [ - 4004, + 4272, "[v_tournament_player_stats_select_column!]" ], "limit": [ @@ -106422,11 +111849,11 @@ export default { 34 ], "order_by": [ - 4003, + 4271, "[v_tournament_player_stats_order_by!]" ], "where": [ - 3997 + 4265 ] } ], @@ -106439,7 +111866,7 @@ export default { 50, { "match_id": [ - 3319, + 3587, "uuid!" ] } @@ -106448,17 +111875,17 @@ export default { 66, { "match_id": [ - 3319, + 3587, "uuid!" ], "reset_status": [ 63 ], "scheduled_at": [ - 2922 + 3190 ], "winning_lineup_id": [ - 3319 + 3587 ] } ], @@ -106466,7 +111893,7 @@ export default { 66, { "invite_id": [ - 3319, + 3587, "uuid!" ], "type": [ @@ -106495,7 +111922,7 @@ export default { 66, { "game_server_node_id": [ - 3319, + 3587, "uuid!" ] } @@ -106513,7 +111940,7 @@ export default { 66, { "game_server_node_id": [ - 3319, + 3587, "uuid!" ] } @@ -106522,7 +111949,7 @@ export default { 66, { "job_id": [ - 3319, + 3587, "uuid!" ] } @@ -106531,7 +111958,7 @@ export default { 66, { "match_map_id": [ - 3319, + 3587, "uuid!" ] } @@ -106540,7 +111967,7 @@ export default { 66, { "match_id": [ - 3319, + 3587, "uuid!" ] } @@ -106552,7 +111979,7 @@ export default { 66, { "match_id": [ - 3319, + 3587, "uuid!" ] } @@ -106561,7 +111988,7 @@ export default { 66, { "match_map_id": [ - 3319, + 3587, "uuid!" ] } @@ -106594,7 +112021,7 @@ export default { 34 ], "match_map_id": [ - 3319, + 3587, "uuid!" ], "preset": [ @@ -106629,7 +112056,7 @@ export default { 66, { "match_id": [ - 3319, + 3587, "uuid!" ] } @@ -106654,7 +112081,7 @@ export default { 66, { "clip_id": [ - 3319, + 3587, "uuid!" ] } @@ -106697,7 +112124,7 @@ export default { 66, { "tournament_id": [ - 3319, + 3587, "uuid!" ] } @@ -106715,11 +112142,11 @@ export default { 76, { "map_id": [ - 3319, + 3587, "uuid!" ], "map_pool_id": [ - 3319, + 3587, "uuid!" ] } @@ -106737,7 +112164,7 @@ export default { 94, { "id": [ - 3319, + 3587, "uuid!" ] } @@ -106755,7 +112182,7 @@ export default { 135, { "id": [ - 3319, + 3587, "uuid!" ] } @@ -106773,7 +112200,7 @@ export default { 166, { "id": [ - 3319, + 3587, "uuid!" ] } @@ -106791,22 +112218,170 @@ export default { 217, { "id": [ - 3319, + 3587, + "uuid!" + ] + } + ], + "delete_draft_game_picks": [ + 263, + { + "where": [ + 255, + "draft_game_picks_bool_exp!" + ] + } + ], + "delete_draft_game_picks_by_pk": [ + 244, + { + "id": [ + 3587, + "uuid!" + ] + } + ], + "delete_draft_game_players": [ + 308, + { + "where": [ + 300, + "draft_game_players_bool_exp!" + ] + } + ], + "delete_draft_game_players_by_pk": [ + 289, + { + "draft_game_id": [ + 3587, + "uuid!" + ], + "steam_id": [ + 162, + "bigint!" + ] + } + ], + "delete_draft_games": [ + 353, + { + "where": [ + 345, + "draft_games_bool_exp!" + ] + } + ], + "delete_draft_games_by_pk": [ + 334, + { + "id": [ + 3587, "uuid!" ] } ], "delete_e_check_in_settings": [ - 254, + 390, { "where": [ - 247, + 383, "e_check_in_settings_bool_exp!" ] } ], "delete_e_check_in_settings_by_pk": [ - 244, + 380, + { + "value": [ + 63, + "String!" + ] + } + ], + "delete_e_draft_game_captain_selection": [ + 410, + { + "where": [ + 403, + "e_draft_game_captain_selection_bool_exp!" + ] + } + ], + "delete_e_draft_game_captain_selection_by_pk": [ + 400, + { + "value": [ + 63, + "String!" + ] + } + ], + "delete_e_draft_game_draft_order": [ + 431, + { + "where": [ + 424, + "e_draft_game_draft_order_bool_exp!" + ] + } + ], + "delete_e_draft_game_draft_order_by_pk": [ + 421, + { + "value": [ + 63, + "String!" + ] + } + ], + "delete_e_draft_game_mode": [ + 452, + { + "where": [ + 445, + "e_draft_game_mode_bool_exp!" + ] + } + ], + "delete_e_draft_game_mode_by_pk": [ + 442, + { + "value": [ + 63, + "String!" + ] + } + ], + "delete_e_draft_game_player_status": [ + 473, + { + "where": [ + 466, + "e_draft_game_player_status_bool_exp!" + ] + } + ], + "delete_e_draft_game_player_status_by_pk": [ + 463, + { + "value": [ + 63, + "String!" + ] + } + ], + "delete_e_draft_game_status": [ + 494, + { + "where": [ + 487, + "e_draft_game_status_bool_exp!" + ] + } + ], + "delete_e_draft_game_status_by_pk": [ + 484, { "value": [ 63, @@ -106815,16 +112390,16 @@ export default { } ], "delete_e_friend_status": [ - 274, + 515, { "where": [ - 267, + 508, "e_friend_status_bool_exp!" ] } ], "delete_e_friend_status_by_pk": [ - 264, + 505, { "value": [ 63, @@ -106833,16 +112408,16 @@ export default { } ], "delete_e_game_cfg_types": [ - 295, + 536, { "where": [ - 288, + 529, "e_game_cfg_types_bool_exp!" ] } ], "delete_e_game_cfg_types_by_pk": [ - 285, + 526, { "value": [ 63, @@ -106851,16 +112426,16 @@ export default { } ], "delete_e_game_server_node_statuses": [ - 315, + 556, { "where": [ - 308, + 549, "e_game_server_node_statuses_bool_exp!" ] } ], "delete_e_game_server_node_statuses_by_pk": [ - 305, + 546, { "value": [ 63, @@ -106869,16 +112444,16 @@ export default { } ], "delete_e_lobby_access": [ - 336, + 577, { "where": [ - 329, + 570, "e_lobby_access_bool_exp!" ] } ], "delete_e_lobby_access_by_pk": [ - 326, + 567, { "value": [ 63, @@ -106887,16 +112462,16 @@ export default { } ], "delete_e_lobby_player_status": [ - 357, + 598, { "where": [ - 350, + 591, "e_lobby_player_status_bool_exp!" ] } ], "delete_e_lobby_player_status_by_pk": [ - 347, + 588, { "value": [ 63, @@ -106905,16 +112480,16 @@ export default { } ], "delete_e_map_pool_types": [ - 377, + 618, { "where": [ - 370, + 611, "e_map_pool_types_bool_exp!" ] } ], "delete_e_map_pool_types_by_pk": [ - 367, + 608, { "value": [ 63, @@ -106923,16 +112498,16 @@ export default { } ], "delete_e_match_clip_visibility": [ - 398, + 639, { "where": [ - 391, + 632, "e_match_clip_visibility_bool_exp!" ] } ], "delete_e_match_clip_visibility_by_pk": [ - 388, + 629, { "value": [ 63, @@ -106941,16 +112516,16 @@ export default { } ], "delete_e_match_map_status": [ - 418, + 659, { "where": [ - 411, + 652, "e_match_map_status_bool_exp!" ] } ], "delete_e_match_map_status_by_pk": [ - 408, + 649, { "value": [ 63, @@ -106959,16 +112534,16 @@ export default { } ], "delete_e_match_mode": [ - 439, + 680, { "where": [ - 432, + 673, "e_match_mode_bool_exp!" ] } ], "delete_e_match_mode_by_pk": [ - 429, + 670, { "value": [ 63, @@ -106977,16 +112552,16 @@ export default { } ], "delete_e_match_status": [ - 459, + 700, { "where": [ - 452, + 693, "e_match_status_bool_exp!" ] } ], "delete_e_match_status_by_pk": [ - 449, + 690, { "value": [ 63, @@ -106995,16 +112570,16 @@ export default { } ], "delete_e_match_types": [ - 480, + 721, { "where": [ - 473, + 714, "e_match_types_bool_exp!" ] } ], "delete_e_match_types_by_pk": [ - 470, + 711, { "value": [ 63, @@ -107013,16 +112588,16 @@ export default { } ], "delete_e_notification_types": [ - 501, + 742, { "where": [ - 494, + 735, "e_notification_types_bool_exp!" ] } ], "delete_e_notification_types_by_pk": [ - 491, + 732, { "value": [ 63, @@ -107031,16 +112606,16 @@ export default { } ], "delete_e_objective_types": [ - 521, + 762, { "where": [ - 514, + 755, "e_objective_types_bool_exp!" ] } ], "delete_e_objective_types_by_pk": [ - 511, + 752, { "value": [ 63, @@ -107049,16 +112624,16 @@ export default { } ], "delete_e_player_roles": [ - 541, + 782, { "where": [ - 534, + 775, "e_player_roles_bool_exp!" ] } ], "delete_e_player_roles_by_pk": [ - 531, + 772, { "value": [ 63, @@ -107067,16 +112642,16 @@ export default { } ], "delete_e_ready_settings": [ - 561, + 802, { "where": [ - 554, + 795, "e_ready_settings_bool_exp!" ] } ], "delete_e_ready_settings_by_pk": [ - 551, + 792, { "value": [ 63, @@ -107085,16 +112660,16 @@ export default { } ], "delete_e_sanction_types": [ - 581, + 822, { "where": [ - 574, + 815, "e_sanction_types_bool_exp!" ] } ], "delete_e_sanction_types_by_pk": [ - 571, + 812, { "value": [ 63, @@ -107103,16 +112678,16 @@ export default { } ], "delete_e_server_types": [ - 602, + 843, { "where": [ - 595, + 836, "e_server_types_bool_exp!" ] } ], "delete_e_server_types_by_pk": [ - 592, + 833, { "value": [ 63, @@ -107121,16 +112696,16 @@ export default { } ], "delete_e_sides": [ - 622, + 863, { "where": [ - 615, + 856, "e_sides_bool_exp!" ] } ], "delete_e_sides_by_pk": [ - 612, + 853, { "value": [ 63, @@ -107139,16 +112714,16 @@ export default { } ], "delete_e_team_roles": [ - 642, + 883, { "where": [ - 635, + 876, "e_team_roles_bool_exp!" ] } ], "delete_e_team_roles_by_pk": [ - 632, + 873, { "value": [ 63, @@ -107157,16 +112732,16 @@ export default { } ], "delete_e_team_roster_statuses": [ - 663, + 904, { "where": [ - 656, + 897, "e_team_roster_statuses_bool_exp!" ] } ], "delete_e_team_roster_statuses_by_pk": [ - 653, + 894, { "value": [ 63, @@ -107175,16 +112750,16 @@ export default { } ], "delete_e_timeout_settings": [ - 683, + 924, { "where": [ - 676, + 917, "e_timeout_settings_bool_exp!" ] } ], "delete_e_timeout_settings_by_pk": [ - 673, + 914, { "value": [ 63, @@ -107193,16 +112768,16 @@ export default { } ], "delete_e_tournament_stage_types": [ - 703, + 944, { "where": [ - 696, + 937, "e_tournament_stage_types_bool_exp!" ] } ], "delete_e_tournament_stage_types_by_pk": [ - 693, + 934, { "value": [ 63, @@ -107211,16 +112786,16 @@ export default { } ], "delete_e_tournament_status": [ - 724, + 965, { "where": [ - 717, + 958, "e_tournament_status_bool_exp!" ] } ], "delete_e_tournament_status_by_pk": [ - 714, + 955, { "value": [ 63, @@ -107229,16 +112804,16 @@ export default { } ], "delete_e_utility_types": [ - 745, + 986, { "where": [ - 738, + 979, "e_utility_types_bool_exp!" ] } ], "delete_e_utility_types_by_pk": [ - 735, + 976, { "value": [ 63, @@ -107247,16 +112822,16 @@ export default { } ], "delete_e_veto_pick_types": [ - 765, + 1006, { "where": [ - 758, + 999, "e_veto_pick_types_bool_exp!" ] } ], "delete_e_veto_pick_types_by_pk": [ - 755, + 996, { "value": [ 63, @@ -107265,16 +112840,16 @@ export default { } ], "delete_e_winning_reasons": [ - 785, + 1026, { "where": [ - 778, + 1019, "e_winning_reasons_bool_exp!" ] } ], "delete_e_winning_reasons_by_pk": [ - 775, + 1016, { "value": [ 63, @@ -107283,16 +112858,16 @@ export default { } ], "delete_friends": [ - 807, + 1048, { "where": [ - 801, + 1042, "friends_bool_exp!" ] } ], "delete_friends_by_pk": [ - 797, + 1038, { "other_player_steam_id": [ 162, @@ -107305,16 +112880,16 @@ export default { } ], "delete_game_server_nodes": [ - 847, + 1088, { "where": [ - 836, + 1077, "game_server_nodes_bool_exp!" ] } ], "delete_game_server_nodes_by_pk": [ - 824, + 1065, { "id": [ 63, @@ -107323,16 +112898,16 @@ export default { } ], "delete_game_versions": [ - 889, + 1130, { "where": [ - 880, + 1121, "game_versions_bool_exp!" ] } ], "delete_game_versions_by_pk": [ - 875, + 1116, { "build_id": [ 34, @@ -107341,64 +112916,64 @@ export default { } ], "delete_gamedata_signature_validations": [ - 922, + 1163, { "where": [ - 913, + 1154, "gamedata_signature_validations_bool_exp!" ] } ], "delete_gamedata_signature_validations_by_pk": [ - 908, + 1149, { "id": [ - 3319, + 3587, "uuid!" ] } ], "delete_leaderboard_entries": [ - 958, + 1199, { "where": [ - 953, + 1194, "leaderboard_entries_bool_exp!" ] } ], "delete_lobbies": [ - 980, + 1221, { "where": [ - 975, + 1216, "lobbies_bool_exp!" ] } ], "delete_lobbies_by_pk": [ - 972, + 1213, { "id": [ - 3319, + 3587, "uuid!" ] } ], "delete_lobby_players": [ - 1010, + 1251, { "where": [ - 1002, + 1243, "lobby_players_bool_exp!" ] } ], "delete_lobby_players_by_pk": [ - 991, + 1232, { "lobby_id": [ - 3319, + 3587, "uuid!" ], "steam_id": [ @@ -107408,304 +112983,304 @@ export default { } ], "delete_map_pools": [ - 1044, + 1285, { "where": [ - 1039, + 1280, "map_pools_bool_exp!" ] } ], "delete_map_pools_by_pk": [ - 1036, + 1277, { "id": [ - 3319, + 3587, "uuid!" ] } ], "delete_maps": [ - 1071, + 1312, { "where": [ - 1064, + 1305, "maps_bool_exp!" ] } ], "delete_maps_by_pk": [ - 1055, + 1296, { "id": [ - 3319, + 3587, "uuid!" ] } ], "delete_match_clips": [ - 1101, + 1342, { "where": [ - 1093, + 1334, "match_clips_bool_exp!" ] } ], "delete_match_clips_by_pk": [ - 1084, + 1325, { "id": [ - 3319, + 3587, "uuid!" ] } ], "delete_match_demo_sessions": [ - 1147, + 1388, { "where": [ - 1136, + 1377, "match_demo_sessions_bool_exp!" ] } ], "delete_match_demo_sessions_by_pk": [ - 1126, + 1367, { "id": [ - 3319, + 3587, "uuid!" ] } ], "delete_match_invites": [ - 1189, + 1430, { "where": [ - 1181, + 1422, "match_invites_bool_exp!" ] } ], "delete_match_invites_by_pk": [ - 1172, + 1413, { "id": [ - 3319, + 3587, "uuid!" ] } ], "delete_match_lineup_players": [ - 1232, + 1473, { "where": [ - 1224, + 1465, "match_lineup_players_bool_exp!" ] } ], "delete_match_lineup_players_by_pk": [ - 1213, + 1454, { "id": [ - 3319, + 3587, "uuid!" ] } ], "delete_match_lineups": [ - 1275, + 1516, { "where": [ - 1267, + 1508, "match_lineups_bool_exp!" ] } ], "delete_match_lineups_by_pk": [ - 1258, + 1499, { "id": [ - 3319, + 3587, "uuid!" ] } ], "delete_match_map_demos": [ - 1323, + 1564, { "where": [ - 1312, + 1553, "match_map_demos_bool_exp!" ] } ], "delete_match_map_demos_by_pk": [ - 1300, + 1541, { "id": [ - 3319, + 3587, "uuid!" ] } ], "delete_match_map_rounds": [ - 1368, + 1609, { "where": [ - 1360, + 1601, "match_map_rounds_bool_exp!" ] } ], "delete_match_map_rounds_by_pk": [ - 1351, + 1592, { "id": [ - 3319, + 3587, "uuid!" ] } ], "delete_match_map_veto_picks": [ - 1406, + 1647, { "where": [ - 1399, + 1640, "match_map_veto_picks_bool_exp!" ] } ], "delete_match_map_veto_picks_by_pk": [ - 1392, + 1633, { "id": [ - 3319, + 3587, "uuid!" ] } ], "delete_match_maps": [ - 1433, + 1674, { "where": [ - 1425, + 1666, "match_maps_bool_exp!" ] } ], "delete_match_maps_by_pk": [ - 1416, + 1657, { "id": [ - 3319, + 3587, "uuid!" ] } ], "delete_match_options": [ - 1468, + 1709, { "where": [ - 1462, + 1703, "match_options_bool_exp!" ] } ], "delete_match_options_by_pk": [ - 1458, + 1699, { "id": [ - 3319, + 3587, "uuid!" ] } ], "delete_match_region_veto_picks": [ - 1500, + 1741, { "where": [ - 1493, + 1734, "match_region_veto_picks_bool_exp!" ] } ], "delete_match_region_veto_picks_by_pk": [ - 1486, + 1727, { "id": [ - 3319, + 3587, "uuid!" ] } ], "delete_match_streams": [ - 1533, + 1774, { "where": [ - 1522, + 1763, "match_streams_bool_exp!" ] } ], "delete_match_streams_by_pk": [ - 1510, + 1751, { "id": [ - 3319, + 3587, "uuid!" ] } ], "delete_match_type_cfgs": [ - 1568, + 1809, { "where": [ - 1563, + 1804, "match_type_cfgs_bool_exp!" ] } ], "delete_match_type_cfgs_by_pk": [ - 1560, + 1801, { "type": [ - 290, + 531, "e_game_cfg_types_enum!" ] } ], "delete_matches": [ - 1595, + 1836, { "where": [ - 1587, + 1828, "matches_bool_exp!" ] } ], "delete_matches_by_pk": [ - 1578, + 1819, { "id": [ - 3319, + 3587, "uuid!" ] } ], "delete_migration_hashes_hashes": [ - 1628, + 1869, { "where": [ - 1623, + 1864, "migration_hashes_hashes_bool_exp!" ] } ], "delete_migration_hashes_hashes_by_pk": [ - 1620, + 1861, { "name": [ 63, @@ -107714,108 +113289,126 @@ export default { } ], "delete_my_friends": [ - 1660, + 1901, { "where": [ - 1650, + 1891, "my_friends_bool_exp!" ] } ], + "delete_news_articles": [ + 1935, + { + "where": [ + 1929, + "news_articles_bool_exp!" + ] + } + ], + "delete_news_articles_by_pk": [ + 1925, + { + "id": [ + 3587, + "uuid!" + ] + } + ], "delete_notifications": [ - 1707, + 1975, { "where": [ - 1696, + 1964, "notifications_bool_exp!" ] } ], "delete_notifications_by_pk": [ - 1684, + 1952, { "id": [ - 3319, + 3587, "uuid!" ] } ], "delete_pending_match_import_players": [ - 1754, + 2022, { "where": [ - 1746, + 2014, "pending_match_import_players_bool_exp!" ] } ], "delete_pending_match_import_players_by_pk": [ - 1737, + 2005, { "steam_id": [ 162, "bigint!" ], "valve_match_id": [ - 1734, + 2002, "numeric!" ] } ], "delete_pending_match_imports": [ - 1788, + 2056, { "where": [ - 1782, + 2050, "pending_match_imports_bool_exp!" ] } ], "delete_pending_match_imports_by_pk": [ - 1778, + 2046, { "valve_match_id": [ - 1734, + 2002, "numeric!" ] } ], "delete_player_aim_stats_demo": [ - 1816, + 2084, { "where": [ - 1810, + 2078, "player_aim_stats_demo_bool_exp!" ] } ], "delete_player_aim_stats_demo_by_pk": [ - 1806, + 2074, { "attacker_steam_id": [ 162, "bigint!" ], "match_map_id": [ - 3319, + 3587, "uuid!" ] } ], "delete_player_aim_weapon_stats": [ - 1850, + 2118, { "where": [ - 1842, + 2110, "player_aim_weapon_stats_bool_exp!" ] } ], "delete_player_aim_weapon_stats_by_pk": [ - 1833, + 2101, { "match_map_id": [ - 3319, + 3587, "uuid!" ], "steam_id": [ @@ -107829,16 +113422,16 @@ export default { } ], "delete_player_assists": [ - 1893, + 2161, { "where": [ - 1885, + 2153, "player_assists_bool_exp!" ] } ], "delete_player_assists_by_pk": [ - 1874, + 2142, { "attacked_steam_id": [ 162, @@ -107849,55 +113442,55 @@ export default { "bigint!" ], "match_map_id": [ - 3319, + 3587, "uuid!" ], "time": [ - 2922, + 3190, "timestamptz!" ] } ], "delete_player_damages": [ - 1954, + 2222, { "where": [ - 1946, + 2214, "player_damages_bool_exp!" ] } ], "delete_player_damages_by_pk": [ - 1937, + 2205, { "id": [ - 3319, + 3587, "uuid!" ], "match_map_id": [ - 3319, + 3587, "uuid!" ], "time": [ - 2922, + 3190, "timestamptz!" ] } ], "delete_player_elo": [ - 1988, + 2256, { "where": [ - 1982, + 2250, "player_elo_bool_exp!" ] } ], "delete_player_elo_by_pk": [ - 1978, + 2246, { "match_id": [ - 3319, + 3587, "uuid!" ], "steam_id": [ @@ -107905,40 +113498,40 @@ export default { "bigint!" ], "type": [ - 475, + 716, "e_match_types_enum!" ] } ], "delete_player_faceit_rank_history": [ - 2022, + 2290, { "where": [ - 2014, + 2282, "player_faceit_rank_history_bool_exp!" ] } ], "delete_player_faceit_rank_history_by_pk": [ - 2005, + 2273, { "id": [ - 3319, + 3587, "uuid!" ] } ], "delete_player_flashes": [ - 2065, + 2333, { "where": [ - 2057, + 2325, "player_flashes_bool_exp!" ] } ], "delete_player_flashes_by_pk": [ - 2046, + 2314, { "attacked_steam_id": [ 162, @@ -107949,26 +113542,26 @@ export default { "bigint!" ], "match_map_id": [ - 3319, + 3587, "uuid!" ], "time": [ - 2922, + 3190, "timestamptz!" ] } ], "delete_player_kills": [ - 2151, + 2419, { "where": [ - 2102, + 2370, "player_kills_bool_exp!" ] } ], "delete_player_kills_by_pk": [ - 2091, + 2359, { "attacked_steam_id": [ 162, @@ -107979,26 +113572,26 @@ export default { "bigint!" ], "match_map_id": [ - 3319, + 3587, "uuid!" ], "time": [ - 2922, + 3190, "timestamptz!" ] } ], "delete_player_kills_by_weapon": [ - 2120, + 2388, { "where": [ - 2112, + 2380, "player_kills_by_weapon_bool_exp!" ] } ], "delete_player_kills_by_weapon_by_pk": [ - 2103, + 2371, { "player_steam_id": [ 162, @@ -108011,28 +113604,28 @@ export default { } ], "delete_player_leaderboard_rank": [ - 2186, + 2454, { "where": [ - 2181, + 2449, "player_leaderboard_rank_bool_exp!" ] } ], "delete_player_match_map_stats": [ - 2217, + 2485, { "where": [ - 2209, + 2477, "player_match_map_stats_bool_exp!" ] } ], "delete_player_match_map_stats_by_pk": [ - 2200, + 2468, { "match_map_id": [ - 3319, + 3587, "uuid!" ], "steam_id": [ @@ -108042,19 +113635,19 @@ export default { } ], "delete_player_objectives": [ - 2309, + 2577, { "where": [ - 2301, + 2569, "player_objectives_bool_exp!" ] } ], "delete_player_objectives_by_pk": [ - 2292, + 2560, { "match_map_id": [ - 3319, + 3587, "uuid!" ], "player_steam_id": [ @@ -108062,62 +113655,62 @@ export default { "bigint!" ], "time": [ - 2922, + 3190, "timestamptz!" ] } ], "delete_player_premier_rank_history": [ - 2368, + 2636, { "where": [ - 2360, + 2628, "player_premier_rank_history_bool_exp!" ] } ], "delete_player_premier_rank_history_by_pk": [ - 2351, + 2619, { "id": [ - 3319, + 3587, "uuid!" ] } ], "delete_player_sanctions": [ - 2409, + 2677, { "where": [ - 2401, + 2669, "player_sanctions_bool_exp!" ] } ], "delete_player_sanctions_by_pk": [ - 2392, + 2660, { "created_at": [ - 2922, + 3190, "timestamptz!" ], "id": [ - 3319, + 3587, "uuid!" ] } ], "delete_player_stats": [ - 2443, + 2711, { "where": [ - 2437, + 2705, "player_stats_bool_exp!" ] } ], "delete_player_stats_by_pk": [ - 2433, + 2701, { "player_steam_id": [ 162, @@ -108126,16 +113719,16 @@ export default { } ], "delete_player_steam_match_auth": [ - 2471, + 2739, { "where": [ - 2465, + 2733, "player_steam_match_auth_bool_exp!" ] } ], "delete_player_steam_match_auth_by_pk": [ - 2461, + 2729, { "steam_id": [ 162, @@ -108144,19 +113737,19 @@ export default { } ], "delete_player_unused_utility": [ - 2505, + 2773, { "where": [ - 2497, + 2765, "player_unused_utility_bool_exp!" ] } ], "delete_player_unused_utility_by_pk": [ - 2488, + 2756, { "match_map_id": [ - 3319, + 3587, "uuid!" ], "player_steam_id": [ @@ -108166,42 +113759,42 @@ export default { } ], "delete_player_utility": [ - 2546, + 2814, { "where": [ - 2538, + 2806, "player_utility_bool_exp!" ] } ], "delete_player_utility_by_pk": [ - 2529, + 2797, { "attacker_steam_id": [ 162, "bigint!" ], "match_map_id": [ - 3319, + 3587, "uuid!" ], "time": [ - 2922, + 3190, "timestamptz!" ] } ], "delete_players": [ - 2613, + 2881, { "where": [ - 2607, + 2875, "players_bool_exp!" ] } ], "delete_players_by_pk": [ - 2603, + 2871, { "steam_id": [ 162, @@ -108210,16 +113803,16 @@ export default { } ], "delete_plugin_versions": [ - 2641, + 2909, { "where": [ - 2635, + 2903, "plugin_versions_bool_exp!" ] } ], "delete_plugin_versions_by_pk": [ - 2631, + 2899, { "version": [ 63, @@ -108228,16 +113821,16 @@ export default { } ], "delete_server_regions": [ - 2668, + 2936, { "where": [ - 2663, + 2931, "server_regions_bool_exp!" ] } ], "delete_server_regions_by_pk": [ - 2659, + 2927, { "value": [ 63, @@ -108246,34 +113839,34 @@ export default { } ], "delete_servers": [ - 2705, + 2973, { "where": [ - 2697, + 2965, "servers_bool_exp!" ] } ], "delete_servers_by_pk": [ - 2686, + 2954, { "id": [ - 3319, + 3587, "uuid!" ] } ], "delete_settings": [ - 2740, + 3008, { "where": [ - 2735, + 3003, "settings_bool_exp!" ] } ], "delete_settings_by_pk": [ - 2732, + 3000, { "name": [ 63, @@ -108282,323 +113875,323 @@ export default { } ], "delete_steam_account_claims": [ - 2764, + 3032, { "where": [ - 2757, + 3025, "steam_account_claims_bool_exp!" ] } ], "delete_steam_account_claims_by_pk": [ - 2750, + 3018, { "id": [ - 3319, + 3587, "uuid!" ] } ], "delete_steam_accounts": [ - 2782, + 3050, { "where": [ - 2777, + 3045, "steam_accounts_bool_exp!" ] } ], "delete_steam_accounts_by_pk": [ - 2774, + 3042, { "id": [ - 3319, + 3587, "uuid!" ] } ], "delete_team_invites": [ - 2810, + 3078, { "where": [ - 2802, + 3070, "team_invites_bool_exp!" ] } ], "delete_team_invites_by_pk": [ - 2793, + 3061, { "id": [ - 3319, + 3587, "uuid!" ] } ], "delete_team_roster": [ - 2853, + 3121, { "where": [ - 2845, + 3113, "team_roster_bool_exp!" ] } ], "delete_team_roster_by_pk": [ - 2834, + 3102, { "player_steam_id": [ 162, "bigint!" ], "team_id": [ - 3319, + 3587, "uuid!" ] } ], "delete_teams": [ - 2896, + 3164, { "where": [ - 2888, + 3156, "teams_bool_exp!" ] } ], "delete_teams_by_pk": [ - 2879, + 3147, { "id": [ - 3319, + 3587, "uuid!" ] } ], "delete_tournament_brackets": [ - 2943, + 3211, { "where": [ - 2935, + 3203, "tournament_brackets_bool_exp!" ] } ], "delete_tournament_brackets_by_pk": [ - 2924, + 3192, { "id": [ - 3319, + 3587, "uuid!" ] } ], "delete_tournament_organizers": [ - 2987, + 3255, { "where": [ - 2979, + 3247, "tournament_organizers_bool_exp!" ] } ], "delete_tournament_organizers_by_pk": [ - 2970, + 3238, { "steam_id": [ 162, "bigint!" ], "tournament_id": [ - 3319, + 3587, "uuid!" ] } ], "delete_tournament_stages": [ - 3034, + 3302, { "where": [ - 3023, + 3291, "tournament_stages_bool_exp!" ] } ], "delete_tournament_stages_by_pk": [ - 3011, + 3279, { "id": [ - 3319, + 3587, "uuid!" ] } ], "delete_tournament_team_invites": [ - 3079, + 3347, { "where": [ - 3071, + 3339, "tournament_team_invites_bool_exp!" ] } ], "delete_tournament_team_invites_by_pk": [ - 3062, + 3330, { "id": [ - 3319, + 3587, "uuid!" ] } ], "delete_tournament_team_roster": [ - 3120, + 3388, { "where": [ - 3112, + 3380, "tournament_team_roster_bool_exp!" ] } ], "delete_tournament_team_roster_by_pk": [ - 3103, + 3371, { "player_steam_id": [ 162, "bigint!" ], "tournament_id": [ - 3319, + 3587, "uuid!" ] } ], "delete_tournament_teams": [ - 3161, + 3429, { "where": [ - 3153, + 3421, "tournament_teams_bool_exp!" ] } ], "delete_tournament_teams_by_pk": [ - 3144, + 3412, { "id": [ - 3319, + 3587, "uuid!" ] } ], "delete_tournament_trophies": [ - 3205, + 3473, { "where": [ - 3197, + 3465, "tournament_trophies_bool_exp!" ] } ], "delete_tournament_trophies_by_pk": [ - 3186, + 3454, { "id": [ - 3319, + 3587, "uuid!" ] } ], "delete_tournament_trophy_configs": [ - 3248, + 3516, { "where": [ - 3240, + 3508, "tournament_trophy_configs_bool_exp!" ] } ], "delete_tournament_trophy_configs_by_pk": [ - 3231, + 3499, { "id": [ - 3319, + 3587, "uuid!" ] } ], "delete_tournaments": [ - 3292, + 3560, { "where": [ - 3284, + 3552, "tournaments_bool_exp!" ] } ], "delete_tournaments_by_pk": [ - 3273, + 3541, { "id": [ - 3319, + 3587, "uuid!" ] } ], "delete_v_match_captains": [ - 3348, + 3616, { "where": [ - 3343, + 3611, "v_match_captains_bool_exp!" ] } ], "delete_v_match_map_backup_rounds": [ - 3459, + 3727, { "where": [ - 3454, + 3722, "v_match_map_backup_rounds_bool_exp!" ] } ], "delete_v_player_match_map_hltv": [ - 3681, + 3949, { "where": [ - 3674, + 3942, "v_player_match_map_hltv_bool_exp!" ] } ], "delete_v_pool_maps": [ - 3840, + 4108, { "where": [ - 3834, + 4102, "v_pool_maps_bool_exp!" ] } ], "delete_v_team_stage_results": [ - 3894, + 4162, { "where": [ - 3886, + 4154, "v_team_stage_results_bool_exp!" ] } ], "delete_v_team_stage_results_by_pk": [ - 3867, + 4135, { "tournament_stage_id": [ - 3319, + 3587, "uuid!" ], "tournament_team_id": [ - 3319, + 3587, "uuid!" ] } @@ -108607,7 +114200,7 @@ export default { 66, { "invite_id": [ - 3319, + 3587, "uuid!" ], "type": [ @@ -108620,11 +114213,11 @@ export default { 66, { "match_id": [ - 3319, + 3587, "uuid!" ], "winning_lineup_id": [ - 3319, + 3587, "uuid!" ] } @@ -108633,7 +114226,7 @@ export default { 39, { "match_id": [ - 3319, + 3587, "uuid!" ] } @@ -108761,2289 +114354,2505 @@ export default { ] } ], + "insert_draft_game_picks": [ + 263, + { + "objects": [ + 258, + "[draft_game_picks_insert_input!]!" + ], + "on_conflict": [ + 264 + ] + } + ], + "insert_draft_game_picks_one": [ + 244, + { + "object": [ + 258, + "draft_game_picks_insert_input!" + ], + "on_conflict": [ + 264 + ] + } + ], + "insert_draft_game_players": [ + 308, + { + "objects": [ + 303, + "[draft_game_players_insert_input!]!" + ], + "on_conflict": [ + 309 + ] + } + ], + "insert_draft_game_players_one": [ + 289, + { + "object": [ + 303, + "draft_game_players_insert_input!" + ], + "on_conflict": [ + 309 + ] + } + ], + "insert_draft_games": [ + 353, + { + "objects": [ + 348, + "[draft_games_insert_input!]!" + ], + "on_conflict": [ + 355 + ] + } + ], + "insert_draft_games_one": [ + 334, + { + "object": [ + 348, + "draft_games_insert_input!" + ], + "on_conflict": [ + 355 + ] + } + ], "insert_e_check_in_settings": [ - 254, + 390, { "objects": [ - 251, + 387, "[e_check_in_settings_insert_input!]!" ], "on_conflict": [ - 255 + 391 ] } ], "insert_e_check_in_settings_one": [ - 244, + 380, { "object": [ - 251, + 387, "e_check_in_settings_insert_input!" ], "on_conflict": [ - 255 + 391 + ] + } + ], + "insert_e_draft_game_captain_selection": [ + 410, + { + "objects": [ + 407, + "[e_draft_game_captain_selection_insert_input!]!" + ], + "on_conflict": [ + 412 + ] + } + ], + "insert_e_draft_game_captain_selection_one": [ + 400, + { + "object": [ + 407, + "e_draft_game_captain_selection_insert_input!" + ], + "on_conflict": [ + 412 + ] + } + ], + "insert_e_draft_game_draft_order": [ + 431, + { + "objects": [ + 428, + "[e_draft_game_draft_order_insert_input!]!" + ], + "on_conflict": [ + 433 + ] + } + ], + "insert_e_draft_game_draft_order_one": [ + 421, + { + "object": [ + 428, + "e_draft_game_draft_order_insert_input!" + ], + "on_conflict": [ + 433 + ] + } + ], + "insert_e_draft_game_mode": [ + 452, + { + "objects": [ + 449, + "[e_draft_game_mode_insert_input!]!" + ], + "on_conflict": [ + 454 + ] + } + ], + "insert_e_draft_game_mode_one": [ + 442, + { + "object": [ + 449, + "e_draft_game_mode_insert_input!" + ], + "on_conflict": [ + 454 + ] + } + ], + "insert_e_draft_game_player_status": [ + 473, + { + "objects": [ + 470, + "[e_draft_game_player_status_insert_input!]!" + ], + "on_conflict": [ + 475 + ] + } + ], + "insert_e_draft_game_player_status_one": [ + 463, + { + "object": [ + 470, + "e_draft_game_player_status_insert_input!" + ], + "on_conflict": [ + 475 + ] + } + ], + "insert_e_draft_game_status": [ + 494, + { + "objects": [ + 491, + "[e_draft_game_status_insert_input!]!" + ], + "on_conflict": [ + 496 + ] + } + ], + "insert_e_draft_game_status_one": [ + 484, + { + "object": [ + 491, + "e_draft_game_status_insert_input!" + ], + "on_conflict": [ + 496 ] } ], "insert_e_friend_status": [ - 274, + 515, { "objects": [ - 271, + 512, "[e_friend_status_insert_input!]!" ], "on_conflict": [ - 276 + 517 ] } ], "insert_e_friend_status_one": [ - 264, + 505, { "object": [ - 271, + 512, "e_friend_status_insert_input!" ], "on_conflict": [ - 276 + 517 ] } ], "insert_e_game_cfg_types": [ - 295, + 536, { "objects": [ - 292, + 533, "[e_game_cfg_types_insert_input!]!" ], "on_conflict": [ - 296 + 537 ] } ], "insert_e_game_cfg_types_one": [ - 285, + 526, { "object": [ - 292, + 533, "e_game_cfg_types_insert_input!" ], "on_conflict": [ - 296 + 537 ] } ], "insert_e_game_server_node_statuses": [ - 315, + 556, { "objects": [ - 312, + 553, "[e_game_server_node_statuses_insert_input!]!" ], "on_conflict": [ - 317 + 558 ] } ], "insert_e_game_server_node_statuses_one": [ - 305, + 546, { "object": [ - 312, + 553, "e_game_server_node_statuses_insert_input!" ], "on_conflict": [ - 317 + 558 ] } ], "insert_e_lobby_access": [ - 336, + 577, { "objects": [ - 333, + 574, "[e_lobby_access_insert_input!]!" ], "on_conflict": [ - 338 + 579 ] } ], "insert_e_lobby_access_one": [ - 326, + 567, { "object": [ - 333, + 574, "e_lobby_access_insert_input!" ], "on_conflict": [ - 338 + 579 ] } ], "insert_e_lobby_player_status": [ - 357, + 598, { "objects": [ - 354, + 595, "[e_lobby_player_status_insert_input!]!" ], "on_conflict": [ - 358 + 599 ] } ], "insert_e_lobby_player_status_one": [ - 347, + 588, { "object": [ - 354, + 595, "e_lobby_player_status_insert_input!" ], "on_conflict": [ - 358 + 599 ] } ], "insert_e_map_pool_types": [ - 377, + 618, { "objects": [ - 374, + 615, "[e_map_pool_types_insert_input!]!" ], "on_conflict": [ - 379 + 620 ] } ], "insert_e_map_pool_types_one": [ - 367, + 608, { "object": [ - 374, + 615, "e_map_pool_types_insert_input!" ], "on_conflict": [ - 379 + 620 ] } ], "insert_e_match_clip_visibility": [ - 398, + 639, { "objects": [ - 395, + 636, "[e_match_clip_visibility_insert_input!]!" ], "on_conflict": [ - 399 + 640 ] } ], "insert_e_match_clip_visibility_one": [ - 388, + 629, { "object": [ - 395, + 636, "e_match_clip_visibility_insert_input!" ], "on_conflict": [ - 399 + 640 ] } ], "insert_e_match_map_status": [ - 418, + 659, { "objects": [ - 415, + 656, "[e_match_map_status_insert_input!]!" ], "on_conflict": [ - 420 + 661 ] } ], "insert_e_match_map_status_one": [ - 408, + 649, { "object": [ - 415, + 656, "e_match_map_status_insert_input!" ], "on_conflict": [ - 420 + 661 ] } ], "insert_e_match_mode": [ - 439, + 680, { "objects": [ - 436, + 677, "[e_match_mode_insert_input!]!" ], "on_conflict": [ - 440 + 681 ] } ], "insert_e_match_mode_one": [ - 429, + 670, { "object": [ - 436, + 677, "e_match_mode_insert_input!" ], "on_conflict": [ - 440 + 681 ] } ], "insert_e_match_status": [ - 459, + 700, { "objects": [ - 456, + 697, "[e_match_status_insert_input!]!" ], "on_conflict": [ - 461 + 702 ] } ], "insert_e_match_status_one": [ - 449, + 690, { "object": [ - 456, + 697, "e_match_status_insert_input!" ], "on_conflict": [ - 461 + 702 ] } ], "insert_e_match_types": [ - 480, + 721, { "objects": [ - 477, + 718, "[e_match_types_insert_input!]!" ], "on_conflict": [ - 482 + 723 ] } ], "insert_e_match_types_one": [ - 470, + 711, { "object": [ - 477, + 718, "e_match_types_insert_input!" ], "on_conflict": [ - 482 + 723 ] } ], "insert_e_notification_types": [ - 501, + 742, { "objects": [ - 498, + 739, "[e_notification_types_insert_input!]!" ], "on_conflict": [ - 502 + 743 ] } ], "insert_e_notification_types_one": [ - 491, + 732, { "object": [ - 498, + 739, "e_notification_types_insert_input!" ], "on_conflict": [ - 502 + 743 ] } ], "insert_e_objective_types": [ - 521, + 762, { "objects": [ - 518, + 759, "[e_objective_types_insert_input!]!" ], "on_conflict": [ - 522 + 763 ] } ], "insert_e_objective_types_one": [ - 511, + 752, { "object": [ - 518, + 759, "e_objective_types_insert_input!" ], "on_conflict": [ - 522 + 763 ] } ], "insert_e_player_roles": [ - 541, + 782, { "objects": [ - 538, + 779, "[e_player_roles_insert_input!]!" ], "on_conflict": [ - 542 + 783 ] } ], "insert_e_player_roles_one": [ - 531, + 772, { "object": [ - 538, + 779, "e_player_roles_insert_input!" ], "on_conflict": [ - 542 + 783 ] } ], "insert_e_ready_settings": [ - 561, + 802, { "objects": [ - 558, + 799, "[e_ready_settings_insert_input!]!" ], "on_conflict": [ - 562 + 803 ] } ], "insert_e_ready_settings_one": [ - 551, + 792, { "object": [ - 558, + 799, "e_ready_settings_insert_input!" ], "on_conflict": [ - 562 + 803 ] } ], "insert_e_sanction_types": [ - 581, + 822, { "objects": [ - 578, + 819, "[e_sanction_types_insert_input!]!" ], "on_conflict": [ - 583 + 824 ] } ], "insert_e_sanction_types_one": [ - 571, + 812, { "object": [ - 578, + 819, "e_sanction_types_insert_input!" ], "on_conflict": [ - 583 + 824 ] } ], "insert_e_server_types": [ - 602, + 843, { "objects": [ - 599, + 840, "[e_server_types_insert_input!]!" ], "on_conflict": [ - 603 + 844 ] } ], "insert_e_server_types_one": [ - 592, + 833, { "object": [ - 599, + 840, "e_server_types_insert_input!" ], "on_conflict": [ - 603 + 844 ] } ], "insert_e_sides": [ - 622, + 863, { "objects": [ - 619, + 860, "[e_sides_insert_input!]!" ], "on_conflict": [ - 623 + 864 ] } ], "insert_e_sides_one": [ - 612, + 853, { "object": [ - 619, + 860, "e_sides_insert_input!" ], "on_conflict": [ - 623 + 864 ] } ], "insert_e_team_roles": [ - 642, + 883, { "objects": [ - 639, + 880, "[e_team_roles_insert_input!]!" ], "on_conflict": [ - 644 + 885 ] } ], "insert_e_team_roles_one": [ - 632, + 873, { "object": [ - 639, + 880, "e_team_roles_insert_input!" ], "on_conflict": [ - 644 + 885 ] } ], "insert_e_team_roster_statuses": [ - 663, + 904, { "objects": [ - 660, + 901, "[e_team_roster_statuses_insert_input!]!" ], "on_conflict": [ - 664 + 905 ] } ], "insert_e_team_roster_statuses_one": [ - 653, + 894, { "object": [ - 660, + 901, "e_team_roster_statuses_insert_input!" ], "on_conflict": [ - 664 + 905 ] } ], "insert_e_timeout_settings": [ - 683, + 924, { "objects": [ - 680, + 921, "[e_timeout_settings_insert_input!]!" ], "on_conflict": [ - 684 + 925 ] } ], "insert_e_timeout_settings_one": [ - 673, + 914, { "object": [ - 680, + 921, "e_timeout_settings_insert_input!" ], "on_conflict": [ - 684 + 925 ] } ], "insert_e_tournament_stage_types": [ - 703, + 944, { "objects": [ - 700, + 941, "[e_tournament_stage_types_insert_input!]!" ], "on_conflict": [ - 705 + 946 ] } ], "insert_e_tournament_stage_types_one": [ - 693, + 934, { "object": [ - 700, + 941, "e_tournament_stage_types_insert_input!" ], "on_conflict": [ - 705 + 946 ] } ], "insert_e_tournament_status": [ - 724, + 965, { "objects": [ - 721, + 962, "[e_tournament_status_insert_input!]!" ], "on_conflict": [ - 726 + 967 ] } ], "insert_e_tournament_status_one": [ - 714, + 955, { "object": [ - 721, + 962, "e_tournament_status_insert_input!" ], "on_conflict": [ - 726 + 967 ] } ], "insert_e_utility_types": [ - 745, + 986, { "objects": [ - 742, + 983, "[e_utility_types_insert_input!]!" ], "on_conflict": [ - 746 + 987 ] } ], "insert_e_utility_types_one": [ - 735, + 976, { "object": [ - 742, + 983, "e_utility_types_insert_input!" ], "on_conflict": [ - 746 + 987 ] } ], "insert_e_veto_pick_types": [ - 765, + 1006, { "objects": [ - 762, + 1003, "[e_veto_pick_types_insert_input!]!" ], "on_conflict": [ - 766 + 1007 ] } ], "insert_e_veto_pick_types_one": [ - 755, + 996, { "object": [ - 762, + 1003, "e_veto_pick_types_insert_input!" ], "on_conflict": [ - 766 + 1007 ] } ], "insert_e_winning_reasons": [ - 785, + 1026, { "objects": [ - 782, + 1023, "[e_winning_reasons_insert_input!]!" ], "on_conflict": [ - 786 + 1027 ] } ], "insert_e_winning_reasons_one": [ - 775, + 1016, { "object": [ - 782, + 1023, "e_winning_reasons_insert_input!" ], "on_conflict": [ - 786 + 1027 ] } ], "insert_friends": [ - 807, + 1048, { "objects": [ - 804, + 1045, "[friends_insert_input!]!" ], "on_conflict": [ - 808 + 1049 ] } ], "insert_friends_one": [ - 797, + 1038, { "object": [ - 804, + 1045, "friends_insert_input!" ], "on_conflict": [ - 808 + 1049 ] } ], "insert_game_server_nodes": [ - 847, + 1088, { "objects": [ - 842, + 1083, "[game_server_nodes_insert_input!]!" ], "on_conflict": [ - 849 + 1090 ] } ], "insert_game_server_nodes_one": [ - 824, + 1065, { "object": [ - 842, + 1083, "game_server_nodes_insert_input!" ], "on_conflict": [ - 849 + 1090 ] } ], "insert_game_versions": [ - 889, + 1130, { "objects": [ - 886, + 1127, "[game_versions_insert_input!]!" ], "on_conflict": [ - 891 + 1132 ] } ], "insert_game_versions_one": [ - 875, + 1116, { "object": [ - 886, + 1127, "game_versions_insert_input!" ], "on_conflict": [ - 891 + 1132 ] } ], "insert_gamedata_signature_validations": [ - 922, + 1163, { "objects": [ - 919, + 1160, "[gamedata_signature_validations_insert_input!]!" ], "on_conflict": [ - 923 + 1164 ] } ], "insert_gamedata_signature_validations_one": [ - 908, + 1149, { "object": [ - 919, + 1160, "gamedata_signature_validations_insert_input!" ], "on_conflict": [ - 923 + 1164 ] } ], "insert_leaderboard_entries": [ - 958, + 1199, { "objects": [ - 955, + 1196, "[leaderboard_entries_insert_input!]!" ] } ], "insert_leaderboard_entries_one": [ - 949, + 1190, { "object": [ - 955, + 1196, "leaderboard_entries_insert_input!" ] } ], "insert_lobbies": [ - 980, + 1221, { "objects": [ - 977, + 1218, "[lobbies_insert_input!]!" ], "on_conflict": [ - 982 + 1223 ] } ], "insert_lobbies_one": [ - 972, + 1213, { "object": [ - 977, + 1218, "lobbies_insert_input!" ], "on_conflict": [ - 982 + 1223 ] } ], "insert_lobby_players": [ - 1010, + 1251, { "objects": [ - 1005, + 1246, "[lobby_players_insert_input!]!" ], "on_conflict": [ - 1011 + 1252 ] } ], "insert_lobby_players_one": [ - 991, + 1232, { "object": [ - 1005, + 1246, "lobby_players_insert_input!" ], "on_conflict": [ - 1011 + 1252 ] } ], "insert_map_pools": [ - 1044, + 1285, { "objects": [ - 1041, + 1282, "[map_pools_insert_input!]!" ], "on_conflict": [ - 1046 + 1287 ] } ], "insert_map_pools_one": [ - 1036, + 1277, { "object": [ - 1041, + 1282, "map_pools_insert_input!" ], "on_conflict": [ - 1046 + 1287 ] } ], "insert_maps": [ - 1071, + 1312, { "objects": [ - 1066, + 1307, "[maps_insert_input!]!" ], "on_conflict": [ - 1073 + 1314 ] } ], "insert_maps_one": [ - 1055, + 1296, { "object": [ - 1066, + 1307, "maps_insert_input!" ], "on_conflict": [ - 1073 + 1314 ] } ], "insert_match_clips": [ - 1101, + 1342, { "objects": [ - 1096, + 1337, "[match_clips_insert_input!]!" ], "on_conflict": [ - 1103 + 1344 ] } ], "insert_match_clips_one": [ - 1084, + 1325, { "object": [ - 1096, + 1337, "match_clips_insert_input!" ], "on_conflict": [ - 1103 + 1344 ] } ], "insert_match_demo_sessions": [ - 1147, + 1388, { "objects": [ - 1142, + 1383, "[match_demo_sessions_insert_input!]!" ], "on_conflict": [ - 1148 + 1389 ] } ], "insert_match_demo_sessions_one": [ - 1126, + 1367, { "object": [ - 1142, + 1383, "match_demo_sessions_insert_input!" ], "on_conflict": [ - 1148 + 1389 ] } ], "insert_match_invites": [ - 1189, + 1430, { "objects": [ - 1184, + 1425, "[match_invites_insert_input!]!" ], "on_conflict": [ - 1190 + 1431 ] } ], "insert_match_invites_one": [ - 1172, + 1413, { "object": [ - 1184, + 1425, "match_invites_insert_input!" ], "on_conflict": [ - 1190 + 1431 ] } ], "insert_match_lineup_players": [ - 1232, + 1473, { "objects": [ - 1227, + 1468, "[match_lineup_players_insert_input!]!" ], "on_conflict": [ - 1233 + 1474 ] } ], "insert_match_lineup_players_one": [ - 1213, + 1454, { "object": [ - 1227, + 1468, "match_lineup_players_insert_input!" ], "on_conflict": [ - 1233 + 1474 ] } ], "insert_match_lineups": [ - 1275, + 1516, { "objects": [ - 1270, + 1511, "[match_lineups_insert_input!]!" ], "on_conflict": [ - 1277 + 1518 ] } ], "insert_match_lineups_one": [ - 1258, + 1499, { "object": [ - 1270, + 1511, "match_lineups_insert_input!" ], "on_conflict": [ - 1277 + 1518 ] } ], "insert_match_map_demos": [ - 1323, + 1564, { "objects": [ - 1318, + 1559, "[match_map_demos_insert_input!]!" ], "on_conflict": [ - 1325 + 1566 ] } ], "insert_match_map_demos_one": [ - 1300, + 1541, { "object": [ - 1318, + 1559, "match_map_demos_insert_input!" ], "on_conflict": [ - 1325 + 1566 ] } ], "insert_match_map_rounds": [ - 1368, + 1609, { "objects": [ - 1363, + 1604, "[match_map_rounds_insert_input!]!" ], "on_conflict": [ - 1369 + 1610 ] } ], "insert_match_map_rounds_one": [ - 1351, + 1592, { "object": [ - 1363, + 1604, "match_map_rounds_insert_input!" ], "on_conflict": [ - 1369 + 1610 ] } ], "insert_match_map_veto_picks": [ - 1406, + 1647, { "objects": [ - 1401, + 1642, "[match_map_veto_picks_insert_input!]!" ], "on_conflict": [ - 1407 + 1648 ] } ], "insert_match_map_veto_picks_one": [ - 1392, + 1633, { "object": [ - 1401, + 1642, "match_map_veto_picks_insert_input!" ], "on_conflict": [ - 1407 + 1648 ] } ], "insert_match_maps": [ - 1433, + 1674, { "objects": [ - 1428, + 1669, "[match_maps_insert_input!]!" ], "on_conflict": [ - 1435 + 1676 ] } ], "insert_match_maps_one": [ - 1416, + 1657, { "object": [ - 1428, + 1669, "match_maps_insert_input!" ], "on_conflict": [ - 1435 + 1676 ] } ], "insert_match_options": [ - 1468, + 1709, { "objects": [ - 1465, + 1706, "[match_options_insert_input!]!" ], "on_conflict": [ - 1470 + 1711 ] } ], "insert_match_options_one": [ - 1458, + 1699, { "object": [ - 1465, + 1706, "match_options_insert_input!" ], "on_conflict": [ - 1470 + 1711 ] } ], "insert_match_region_veto_picks": [ - 1500, + 1741, { "objects": [ - 1495, + 1736, "[match_region_veto_picks_insert_input!]!" ], "on_conflict": [ - 1501 + 1742 ] } ], "insert_match_region_veto_picks_one": [ - 1486, + 1727, { "object": [ - 1495, + 1736, "match_region_veto_picks_insert_input!" ], "on_conflict": [ - 1501 + 1742 ] } ], "insert_match_streams": [ - 1533, + 1774, { "objects": [ - 1528, + 1769, "[match_streams_insert_input!]!" ], "on_conflict": [ - 1534 + 1775 ] } ], "insert_match_streams_one": [ - 1510, + 1751, { "object": [ - 1528, + 1769, "match_streams_insert_input!" ], "on_conflict": [ - 1534 + 1775 ] } ], "insert_match_type_cfgs": [ - 1568, + 1809, { "objects": [ - 1565, + 1806, "[match_type_cfgs_insert_input!]!" ], "on_conflict": [ - 1569 + 1810 ] } ], "insert_match_type_cfgs_one": [ - 1560, + 1801, { "object": [ - 1565, + 1806, "match_type_cfgs_insert_input!" ], "on_conflict": [ - 1569 + 1810 ] } ], "insert_matches": [ - 1595, + 1836, { "objects": [ - 1590, + 1831, "[matches_insert_input!]!" ], "on_conflict": [ - 1597 + 1838 ] } ], "insert_matches_one": [ - 1578, + 1819, { "object": [ - 1590, + 1831, "matches_insert_input!" ], "on_conflict": [ - 1597 + 1838 ] } ], "insert_migration_hashes_hashes": [ - 1628, + 1869, { "objects": [ - 1625, + 1866, "[migration_hashes_hashes_insert_input!]!" ], "on_conflict": [ - 1629 + 1870 ] } ], "insert_migration_hashes_hashes_one": [ - 1620, + 1861, { "object": [ - 1625, + 1866, "migration_hashes_hashes_insert_input!" ], "on_conflict": [ - 1629 + 1870 ] } ], "insert_my_friends": [ - 1660, + 1901, { "objects": [ - 1655, + 1896, "[my_friends_insert_input!]!" ] } ], "insert_my_friends_one": [ - 1638, + 1879, { "object": [ - 1655, + 1896, "my_friends_insert_input!" ] } ], + "insert_news_articles": [ + 1935, + { + "objects": [ + 1932, + "[news_articles_insert_input!]!" + ], + "on_conflict": [ + 1936 + ] + } + ], + "insert_news_articles_one": [ + 1925, + { + "object": [ + 1932, + "news_articles_insert_input!" + ], + "on_conflict": [ + 1936 + ] + } + ], "insert_notifications": [ - 1707, + 1975, { "objects": [ - 1702, + 1970, "[notifications_insert_input!]!" ], "on_conflict": [ - 1708 + 1976 ] } ], "insert_notifications_one": [ - 1684, + 1952, { "object": [ - 1702, + 1970, "notifications_insert_input!" ], "on_conflict": [ - 1708 + 1976 ] } ], "insert_pending_match_import_players": [ - 1754, + 2022, { "objects": [ - 1749, + 2017, "[pending_match_import_players_insert_input!]!" ], "on_conflict": [ - 1755 + 2023 ] } ], "insert_pending_match_import_players_one": [ - 1737, + 2005, { "object": [ - 1749, + 2017, "pending_match_import_players_insert_input!" ], "on_conflict": [ - 1755 + 2023 ] } ], "insert_pending_match_imports": [ - 1788, + 2056, { "objects": [ - 1785, + 2053, "[pending_match_imports_insert_input!]!" ], "on_conflict": [ - 1790 + 2058 ] } ], "insert_pending_match_imports_one": [ - 1778, + 2046, { "object": [ - 1785, + 2053, "pending_match_imports_insert_input!" ], "on_conflict": [ - 1790 + 2058 ] } ], "insert_player_aim_stats_demo": [ - 1816, + 2084, { "objects": [ - 1813, + 2081, "[player_aim_stats_demo_insert_input!]!" ], "on_conflict": [ - 1817 + 2085 ] } ], "insert_player_aim_stats_demo_one": [ - 1806, + 2074, { "object": [ - 1813, + 2081, "player_aim_stats_demo_insert_input!" ], "on_conflict": [ - 1817 + 2085 ] } ], "insert_player_aim_weapon_stats": [ - 1850, + 2118, { "objects": [ - 1845, + 2113, "[player_aim_weapon_stats_insert_input!]!" ], "on_conflict": [ - 1851 + 2119 ] } ], "insert_player_aim_weapon_stats_one": [ - 1833, + 2101, { "object": [ - 1845, + 2113, "player_aim_weapon_stats_insert_input!" ], "on_conflict": [ - 1851 + 2119 ] } ], "insert_player_assists": [ - 1893, + 2161, { "objects": [ - 1888, + 2156, "[player_assists_insert_input!]!" ], "on_conflict": [ - 1894 + 2162 ] } ], "insert_player_assists_one": [ - 1874, + 2142, { "object": [ - 1888, + 2156, "player_assists_insert_input!" ], "on_conflict": [ - 1894 + 2162 ] } ], "insert_player_damages": [ - 1954, + 2222, { "objects": [ - 1949, + 2217, "[player_damages_insert_input!]!" ], "on_conflict": [ - 1955 + 2223 ] } ], "insert_player_damages_one": [ - 1937, + 2205, { "object": [ - 1949, + 2217, "player_damages_insert_input!" ], "on_conflict": [ - 1955 + 2223 ] } ], "insert_player_elo": [ - 1988, + 2256, { "objects": [ - 1985, + 2253, "[player_elo_insert_input!]!" ], "on_conflict": [ - 1989 + 2257 ] } ], "insert_player_elo_one": [ - 1978, + 2246, { "object": [ - 1985, + 2253, "player_elo_insert_input!" ], "on_conflict": [ - 1989 + 2257 ] } ], "insert_player_faceit_rank_history": [ - 2022, + 2290, { "objects": [ - 2017, + 2285, "[player_faceit_rank_history_insert_input!]!" ], "on_conflict": [ - 2023 + 2291 ] } ], "insert_player_faceit_rank_history_one": [ - 2005, + 2273, { "object": [ - 2017, + 2285, "player_faceit_rank_history_insert_input!" ], "on_conflict": [ - 2023 + 2291 ] } ], "insert_player_flashes": [ - 2065, + 2333, { "objects": [ - 2060, + 2328, "[player_flashes_insert_input!]!" ], "on_conflict": [ - 2066 + 2334 ] } ], "insert_player_flashes_one": [ - 2046, + 2314, { "object": [ - 2060, + 2328, "player_flashes_insert_input!" ], "on_conflict": [ - 2066 + 2334 ] } ], "insert_player_kills": [ - 2151, + 2419, { "objects": [ - 2146, + 2414, "[player_kills_insert_input!]!" ], "on_conflict": [ - 2152 + 2420 ] } ], "insert_player_kills_by_weapon": [ - 2120, + 2388, { "objects": [ - 2115, + 2383, "[player_kills_by_weapon_insert_input!]!" ], "on_conflict": [ - 2121 + 2389 ] } ], "insert_player_kills_by_weapon_one": [ - 2103, + 2371, { "object": [ - 2115, + 2383, "player_kills_by_weapon_insert_input!" ], "on_conflict": [ - 2121 + 2389 ] } ], "insert_player_kills_one": [ - 2091, + 2359, { "object": [ - 2146, + 2414, "player_kills_insert_input!" ], "on_conflict": [ - 2152 + 2420 ] } ], "insert_player_leaderboard_rank": [ - 2186, + 2454, { "objects": [ - 2183, + 2451, "[player_leaderboard_rank_insert_input!]!" ] } ], "insert_player_leaderboard_rank_one": [ - 2177, + 2445, { "object": [ - 2183, + 2451, "player_leaderboard_rank_insert_input!" ] } ], "insert_player_match_map_stats": [ - 2217, + 2485, { "objects": [ - 2212, + 2480, "[player_match_map_stats_insert_input!]!" ], "on_conflict": [ - 2218 + 2486 ] } ], "insert_player_match_map_stats_one": [ - 2200, + 2468, { "object": [ - 2212, + 2480, "player_match_map_stats_insert_input!" ], "on_conflict": [ - 2218 + 2486 ] } ], "insert_player_objectives": [ - 2309, + 2577, { "objects": [ - 2304, + 2572, "[player_objectives_insert_input!]!" ], "on_conflict": [ - 2310 + 2578 ] } ], "insert_player_objectives_one": [ - 2292, + 2560, { "object": [ - 2304, + 2572, "player_objectives_insert_input!" ], "on_conflict": [ - 2310 + 2578 ] } ], "insert_player_premier_rank_history": [ - 2368, + 2636, { "objects": [ - 2363, + 2631, "[player_premier_rank_history_insert_input!]!" ], "on_conflict": [ - 2369 + 2637 ] } ], "insert_player_premier_rank_history_one": [ - 2351, + 2619, { "object": [ - 2363, + 2631, "player_premier_rank_history_insert_input!" ], "on_conflict": [ - 2369 + 2637 ] } ], "insert_player_sanctions": [ - 2409, + 2677, { "objects": [ - 2404, + 2672, "[player_sanctions_insert_input!]!" ], "on_conflict": [ - 2410 + 2678 ] } ], "insert_player_sanctions_one": [ - 2392, + 2660, { "object": [ - 2404, + 2672, "player_sanctions_insert_input!" ], "on_conflict": [ - 2410 + 2678 ] } ], "insert_player_stats": [ - 2443, + 2711, { "objects": [ - 2440, + 2708, "[player_stats_insert_input!]!" ], "on_conflict": [ - 2445 + 2713 ] } ], "insert_player_stats_one": [ - 2433, + 2701, { "object": [ - 2440, + 2708, "player_stats_insert_input!" ], "on_conflict": [ - 2445 + 2713 ] } ], "insert_player_steam_match_auth": [ - 2471, + 2739, { "objects": [ - 2468, + 2736, "[player_steam_match_auth_insert_input!]!" ], "on_conflict": [ - 2472 + 2740 ] } ], "insert_player_steam_match_auth_one": [ - 2461, + 2729, { "object": [ - 2468, + 2736, "player_steam_match_auth_insert_input!" ], "on_conflict": [ - 2472 + 2740 ] } ], "insert_player_unused_utility": [ - 2505, + 2773, { "objects": [ - 2500, + 2768, "[player_unused_utility_insert_input!]!" ], "on_conflict": [ - 2506 + 2774 ] } ], "insert_player_unused_utility_one": [ - 2488, + 2756, { "object": [ - 2500, + 2768, "player_unused_utility_insert_input!" ], "on_conflict": [ - 2506 + 2774 ] } ], "insert_player_utility": [ - 2546, + 2814, { "objects": [ - 2541, + 2809, "[player_utility_insert_input!]!" ], "on_conflict": [ - 2547 + 2815 ] } ], "insert_player_utility_one": [ - 2529, + 2797, { "object": [ - 2541, + 2809, "player_utility_insert_input!" ], "on_conflict": [ - 2547 + 2815 ] } ], "insert_players": [ - 2613, + 2881, { "objects": [ - 2610, + 2878, "[players_insert_input!]!" ], "on_conflict": [ - 2615 + 2883 ] } ], "insert_players_one": [ - 2603, + 2871, { "object": [ - 2610, + 2878, "players_insert_input!" ], "on_conflict": [ - 2615 + 2883 ] } ], "insert_plugin_versions": [ - 2641, + 2909, { "objects": [ - 2638, + 2906, "[plugin_versions_insert_input!]!" ], "on_conflict": [ - 2642 + 2910 ] } ], "insert_plugin_versions_one": [ - 2631, + 2899, { "object": [ - 2638, + 2906, "plugin_versions_insert_input!" ], "on_conflict": [ - 2642 + 2910 ] } ], "insert_server_regions": [ - 2668, + 2936, { "objects": [ - 2665, + 2933, "[server_regions_insert_input!]!" ], "on_conflict": [ - 2670 + 2938 ] } ], "insert_server_regions_one": [ - 2659, + 2927, { "object": [ - 2665, + 2933, "server_regions_insert_input!" ], "on_conflict": [ - 2670 + 2938 ] } ], "insert_servers": [ - 2705, + 2973, { "objects": [ - 2700, + 2968, "[servers_insert_input!]!" ], "on_conflict": [ - 2707 + 2975 ] } ], "insert_servers_one": [ - 2686, + 2954, { "object": [ - 2700, + 2968, "servers_insert_input!" ], "on_conflict": [ - 2707 + 2975 ] } ], "insert_settings": [ - 2740, + 3008, { "objects": [ - 2737, + 3005, "[settings_insert_input!]!" ], "on_conflict": [ - 2741 + 3009 ] } ], "insert_settings_one": [ - 2732, + 3000, { "object": [ - 2737, + 3005, "settings_insert_input!" ], "on_conflict": [ - 2741 + 3009 ] } ], "insert_steam_account_claims": [ - 2764, + 3032, { "objects": [ - 2759, + 3027, "[steam_account_claims_insert_input!]!" ], "on_conflict": [ - 2765 + 3033 ] } ], "insert_steam_account_claims_one": [ - 2750, + 3018, { "object": [ - 2759, + 3027, "steam_account_claims_insert_input!" ], "on_conflict": [ - 2765 + 3033 ] } ], "insert_steam_accounts": [ - 2782, + 3050, { "objects": [ - 2779, + 3047, "[steam_accounts_insert_input!]!" ], "on_conflict": [ - 2784 + 3052 ] } ], "insert_steam_accounts_one": [ - 2774, + 3042, { "object": [ - 2779, + 3047, "steam_accounts_insert_input!" ], "on_conflict": [ - 2784 + 3052 ] } ], "insert_team_invites": [ - 2810, + 3078, { "objects": [ - 2805, + 3073, "[team_invites_insert_input!]!" ], "on_conflict": [ - 2811 + 3079 ] } ], "insert_team_invites_one": [ - 2793, + 3061, { "object": [ - 2805, + 3073, "team_invites_insert_input!" ], "on_conflict": [ - 2811 + 3079 ] } ], "insert_team_roster": [ - 2853, + 3121, { "objects": [ - 2848, + 3116, "[team_roster_insert_input!]!" ], "on_conflict": [ - 2854 + 3122 ] } ], "insert_team_roster_one": [ - 2834, + 3102, { "object": [ - 2848, + 3116, "team_roster_insert_input!" ], "on_conflict": [ - 2854 + 3122 ] } ], "insert_teams": [ - 2896, + 3164, { "objects": [ - 2891, + 3159, "[teams_insert_input!]!" ], "on_conflict": [ - 2898 + 3166 ] } ], "insert_teams_one": [ - 2879, + 3147, { "object": [ - 2891, + 3159, "teams_insert_input!" ], "on_conflict": [ - 2898 + 3166 ] } ], "insert_tournament_brackets": [ - 2943, + 3211, { "objects": [ - 2938, + 3206, "[tournament_brackets_insert_input!]!" ], "on_conflict": [ - 2945 + 3213 ] } ], "insert_tournament_brackets_one": [ - 2924, + 3192, { "object": [ - 2938, + 3206, "tournament_brackets_insert_input!" ], "on_conflict": [ - 2945 + 3213 ] } ], "insert_tournament_organizers": [ - 2987, + 3255, { "objects": [ - 2982, + 3250, "[tournament_organizers_insert_input!]!" ], "on_conflict": [ - 2988 + 3256 ] } ], "insert_tournament_organizers_one": [ - 2970, + 3238, { "object": [ - 2982, + 3250, "tournament_organizers_insert_input!" ], "on_conflict": [ - 2988 + 3256 ] } ], "insert_tournament_stages": [ - 3034, + 3302, { "objects": [ - 3029, + 3297, "[tournament_stages_insert_input!]!" ], "on_conflict": [ - 3036 + 3304 ] } ], "insert_tournament_stages_one": [ - 3011, + 3279, { "object": [ - 3029, + 3297, "tournament_stages_insert_input!" ], "on_conflict": [ - 3036 + 3304 ] } ], "insert_tournament_team_invites": [ - 3079, + 3347, { "objects": [ - 3074, + 3342, "[tournament_team_invites_insert_input!]!" ], "on_conflict": [ - 3080 + 3348 ] } ], "insert_tournament_team_invites_one": [ - 3062, + 3330, { "object": [ - 3074, + 3342, "tournament_team_invites_insert_input!" ], "on_conflict": [ - 3080 + 3348 ] } ], "insert_tournament_team_roster": [ - 3120, + 3388, { "objects": [ - 3115, + 3383, "[tournament_team_roster_insert_input!]!" ], "on_conflict": [ - 3121 + 3389 ] } ], "insert_tournament_team_roster_one": [ - 3103, + 3371, { "object": [ - 3115, + 3383, "tournament_team_roster_insert_input!" ], "on_conflict": [ - 3121 + 3389 ] } ], "insert_tournament_teams": [ - 3161, + 3429, { "objects": [ - 3156, + 3424, "[tournament_teams_insert_input!]!" ], "on_conflict": [ - 3163 + 3431 ] } ], "insert_tournament_teams_one": [ - 3144, + 3412, { "object": [ - 3156, + 3424, "tournament_teams_insert_input!" ], "on_conflict": [ - 3163 + 3431 ] } ], "insert_tournament_trophies": [ - 3205, + 3473, { "objects": [ - 3200, + 3468, "[tournament_trophies_insert_input!]!" ], "on_conflict": [ - 3206 + 3474 ] } ], "insert_tournament_trophies_one": [ - 3186, + 3454, { "object": [ - 3200, + 3468, "tournament_trophies_insert_input!" ], "on_conflict": [ - 3206 + 3474 ] } ], "insert_tournament_trophy_configs": [ - 3248, + 3516, { "objects": [ - 3243, + 3511, "[tournament_trophy_configs_insert_input!]!" ], "on_conflict": [ - 3250 + 3518 ] } ], "insert_tournament_trophy_configs_one": [ - 3231, + 3499, { "object": [ - 3243, + 3511, "tournament_trophy_configs_insert_input!" ], "on_conflict": [ - 3250 + 3518 ] } ], "insert_tournaments": [ - 3292, + 3560, { "objects": [ - 3287, + 3555, "[tournaments_insert_input!]!" ], "on_conflict": [ - 3294 + 3562 ] } ], "insert_tournaments_one": [ - 3273, + 3541, { "object": [ - 3287, + 3555, "tournaments_insert_input!" ], "on_conflict": [ - 3294 + 3562 ] } ], "insert_v_match_captains": [ - 3348, + 3616, { "objects": [ - 3345, + 3613, "[v_match_captains_insert_input!]!" ] } ], "insert_v_match_captains_one": [ - 3339, + 3607, { "object": [ - 3345, + 3613, "v_match_captains_insert_input!" ] } ], "insert_v_match_map_backup_rounds": [ - 3459, + 3727, { "objects": [ - 3456, + 3724, "[v_match_map_backup_rounds_insert_input!]!" ] } ], "insert_v_match_map_backup_rounds_one": [ - 3450, + 3718, { "object": [ - 3456, + 3724, "v_match_map_backup_rounds_insert_input!" ] } ], "insert_v_player_match_map_hltv": [ - 3681, + 3949, { "objects": [ - 3676, + 3944, "[v_player_match_map_hltv_insert_input!]!" ] } ], "insert_v_player_match_map_hltv_one": [ - 3665, + 3933, { "object": [ - 3676, + 3944, "v_player_match_map_hltv_insert_input!" ] } ], "insert_v_pool_maps": [ - 3840, + 4108, { "objects": [ - 3835, + 4103, "[v_pool_maps_insert_input!]!" ] } ], "insert_v_pool_maps_one": [ - 3825, + 4093, { "object": [ - 3835, + 4103, "v_pool_maps_insert_input!" ] } ], "insert_v_team_stage_results": [ - 3894, + 4162, { "objects": [ - 3889, + 4157, "[v_team_stage_results_insert_input!]!" ], "on_conflict": [ - 3896 + 4164 ] } ], "insert_v_team_stage_results_one": [ - 3867, + 4135, { "object": [ - 3889, + 4157, "v_team_stage_results_insert_input!" ], "on_conflict": [ - 3896 + 4164 ] } ], @@ -111134,7 +116943,7 @@ export default { 66, { "match_map_id": [ - 3319, + 3587, "uuid!" ] } @@ -111149,7 +116958,7 @@ export default { 34 ], "match_map_id": [ - 3319, + 3587, "uuid!" ], "preset": [ @@ -111175,7 +116984,7 @@ export default { 66, { "match_id": [ - 3319, + 3587, "uuid!" ] } @@ -111184,20 +116993,20 @@ export default { 66, { "match_id": [ - 3319, + 3587, "uuid!" ] } ], "recalculate_tournament_trophies": [ - 3186, + 3454, { "args": [ - 2658, + 2926, "recalculate_tournament_trophies_args!" ], "distinct_on": [ - 3209, + 3477, "[tournament_trophies_select_column!]" ], "limit": [ @@ -111207,11 +117016,11 @@ export default { 34 ], "order_by": [ - 3207, + 3475, "[tournament_trophies_order_by!]" ], "where": [ - 3197 + 3465 ] } ], @@ -111219,7 +117028,7 @@ export default { 66, { "match_id": [ - 3319, + 3587, "uuid!" ] } @@ -111240,7 +117049,7 @@ export default { 66, { "match_id": [ - 3319, + 3587, "uuid!" ] } @@ -111287,7 +117096,7 @@ export default { 66, { "match_map_id": [ - 3319, + 3587, "uuid!" ] } @@ -111296,7 +117105,7 @@ export default { 66, { "match_id": [ - 3319, + 3587, "uuid!" ] } @@ -111318,11 +117127,14 @@ export default { 66, { "job_id": [ - 3319, + 3587, "uuid!" ] } ], + "rescanTldrNews": [ + 66 + ], "restartService": [ 66, { @@ -111336,7 +117148,7 @@ export default { 66, { "match_map_id": [ - 3319, + 3587, "uuid!" ] } @@ -111345,7 +117157,7 @@ export default { 66, { "match_map_id": [ - 3319, + 3587, "uuid!" ], "only_failed": [ @@ -111394,11 +117206,11 @@ export default { 66, { "match_id": [ - 3319, + 3587, "uuid!" ], "time": [ - 2922 + 3190 ] } ], @@ -111419,7 +117231,7 @@ export default { 66, { "match_id": [ - 3319, + 3587, "uuid!" ], "mode": [ @@ -111432,15 +117244,15 @@ export default { 66, { "match_id": [ - 3319, + 3587, "uuid!" ], "match_map_id": [ - 3319, + 3587, "uuid!" ], "winning_lineup_id": [ - 3319, + 3587, "uuid!" ] } @@ -111449,11 +117261,11 @@ export default { 66, { "match_id": [ - 3319, + 3587, "uuid!" ], "winning_lineup_id": [ - 3319, + 3587, "uuid!" ] } @@ -111465,7 +117277,7 @@ export default { 66, { "match_id": [ - 3319, + 3587, "uuid!" ] } @@ -111478,7 +117290,7 @@ export default { "Boolean!" ], "match_id": [ - 3319, + 3587, "uuid!" ] } @@ -111491,7 +117303,7 @@ export default { "String!" ], "match_id": [ - 3319, + 3587, "uuid!" ] } @@ -111500,7 +117312,7 @@ export default { 66, { "match_id": [ - 3319, + 3587, "uuid!" ], "visible": [ @@ -111513,7 +117325,7 @@ export default { 66, { "match_id": [ - 3319, + 3587, "uuid!" ] } @@ -111522,7 +117334,7 @@ export default { 66, { "match_id": [ - 3319, + 3587, "uuid!" ] } @@ -111535,7 +117347,7 @@ export default { "Int!" ], "match_id": [ - 3319, + 3587, "uuid!" ] } @@ -111544,7 +117356,7 @@ export default { 66, { "match_id": [ - 3319, + 3587, "uuid!" ], "show": [ @@ -111557,7 +117369,7 @@ export default { 66, { "match_id": [ - 3319, + 3587, "uuid!" ], "slot": [ @@ -111574,7 +117386,7 @@ export default { "Boolean!" ], "match_id": [ - 3319, + 3587, "uuid!" ] } @@ -111583,7 +117395,7 @@ export default { 66, { "match_id": [ - 3319, + 3587, "uuid!" ], "mode": [ @@ -111596,11 +117408,11 @@ export default { 66, { "match_id": [ - 3319, + 3587, "uuid!" ], "server_id": [ - 3319 + 3587 ] } ], @@ -111608,7 +117420,7 @@ export default { 66, { "game_server_node_id": [ - 3319, + 3587, "uuid!" ] } @@ -111617,7 +117429,7 @@ export default { 66, { "match_id": [ - 3319, + 3587, "uuid!" ] } @@ -111626,7 +117438,7 @@ export default { 66, { "match_map_id": [ - 3319, + 3587, "uuid!" ] } @@ -111635,7 +117447,7 @@ export default { 66, { "match_id": [ - 3319, + 3587, "uuid!" ] } @@ -111653,7 +117465,7 @@ export default { 66, { "from_match_id": [ - 3319, + 3587, "uuid!" ], "mode": [ @@ -111661,7 +117473,7 @@ export default { "String!" ], "to_match_id": [ - 3319, + 3587, "uuid!" ] } @@ -111701,7 +117513,7 @@ export default { 66, { "clip_id": [ - 3319, + 3587, "uuid!" ], "target_steam_id": [ @@ -111722,7 +117534,7 @@ export default { 63 ], "game_server_node_id": [ - 3319 + 3587 ] } ], @@ -111948,3760 +117760,4641 @@ export default { ] } ], + "update_draft_game_picks": [ + 263, + { + "_inc": [ + 257 + ], + "_set": [ + 270 + ], + "where": [ + 255, + "draft_game_picks_bool_exp!" + ] + } + ], + "update_draft_game_picks_by_pk": [ + 244, + { + "_inc": [ + 257 + ], + "_set": [ + 270 + ], + "pk_columns": [ + 266, + "draft_game_picks_pk_columns_input!" + ] + } + ], + "update_draft_game_picks_many": [ + 263, + { + "updates": [ + 282, + "[draft_game_picks_updates!]!" + ] + } + ], + "update_draft_game_players": [ + 308, + { + "_inc": [ + 302 + ], + "_set": [ + 315 + ], + "where": [ + 300, + "draft_game_players_bool_exp!" + ] + } + ], + "update_draft_game_players_by_pk": [ + 289, + { + "_inc": [ + 302 + ], + "_set": [ + 315 + ], + "pk_columns": [ + 311, + "draft_game_players_pk_columns_input!" + ] + } + ], + "update_draft_game_players_many": [ + 308, + { + "updates": [ + 327, + "[draft_game_players_updates!]!" + ] + } + ], + "update_draft_games": [ + 353, + { + "_inc": [ + 347 + ], + "_set": [ + 361 + ], + "where": [ + 345, + "draft_games_bool_exp!" + ] + } + ], + "update_draft_games_by_pk": [ + 334, + { + "_inc": [ + 347 + ], + "_set": [ + 361 + ], + "pk_columns": [ + 357, + "draft_games_pk_columns_input!" + ] + } + ], + "update_draft_games_many": [ + 353, + { + "updates": [ + 373, + "[draft_games_updates!]!" + ] + } + ], "update_e_check_in_settings": [ - 254, + 390, { "_set": [ - 259 + 395 ], "where": [ - 247, + 383, "e_check_in_settings_bool_exp!" ] } ], "update_e_check_in_settings_by_pk": [ - 244, + 380, { "_set": [ - 259 + 395 ], "pk_columns": [ - 257, + 393, "e_check_in_settings_pk_columns_input!" ] } ], "update_e_check_in_settings_many": [ - 254, + 390, { "updates": [ - 263, + 399, "[e_check_in_settings_updates!]!" ] } ], + "update_e_draft_game_captain_selection": [ + 410, + { + "_set": [ + 416 + ], + "where": [ + 403, + "e_draft_game_captain_selection_bool_exp!" + ] + } + ], + "update_e_draft_game_captain_selection_by_pk": [ + 400, + { + "_set": [ + 416 + ], + "pk_columns": [ + 414, + "e_draft_game_captain_selection_pk_columns_input!" + ] + } + ], + "update_e_draft_game_captain_selection_many": [ + 410, + { + "updates": [ + 420, + "[e_draft_game_captain_selection_updates!]!" + ] + } + ], + "update_e_draft_game_draft_order": [ + 431, + { + "_set": [ + 437 + ], + "where": [ + 424, + "e_draft_game_draft_order_bool_exp!" + ] + } + ], + "update_e_draft_game_draft_order_by_pk": [ + 421, + { + "_set": [ + 437 + ], + "pk_columns": [ + 435, + "e_draft_game_draft_order_pk_columns_input!" + ] + } + ], + "update_e_draft_game_draft_order_many": [ + 431, + { + "updates": [ + 441, + "[e_draft_game_draft_order_updates!]!" + ] + } + ], + "update_e_draft_game_mode": [ + 452, + { + "_set": [ + 458 + ], + "where": [ + 445, + "e_draft_game_mode_bool_exp!" + ] + } + ], + "update_e_draft_game_mode_by_pk": [ + 442, + { + "_set": [ + 458 + ], + "pk_columns": [ + 456, + "e_draft_game_mode_pk_columns_input!" + ] + } + ], + "update_e_draft_game_mode_many": [ + 452, + { + "updates": [ + 462, + "[e_draft_game_mode_updates!]!" + ] + } + ], + "update_e_draft_game_player_status": [ + 473, + { + "_set": [ + 479 + ], + "where": [ + 466, + "e_draft_game_player_status_bool_exp!" + ] + } + ], + "update_e_draft_game_player_status_by_pk": [ + 463, + { + "_set": [ + 479 + ], + "pk_columns": [ + 477, + "e_draft_game_player_status_pk_columns_input!" + ] + } + ], + "update_e_draft_game_player_status_many": [ + 473, + { + "updates": [ + 483, + "[e_draft_game_player_status_updates!]!" + ] + } + ], + "update_e_draft_game_status": [ + 494, + { + "_set": [ + 500 + ], + "where": [ + 487, + "e_draft_game_status_bool_exp!" + ] + } + ], + "update_e_draft_game_status_by_pk": [ + 484, + { + "_set": [ + 500 + ], + "pk_columns": [ + 498, + "e_draft_game_status_pk_columns_input!" + ] + } + ], + "update_e_draft_game_status_many": [ + 494, + { + "updates": [ + 504, + "[e_draft_game_status_updates!]!" + ] + } + ], "update_e_friend_status": [ - 274, + 515, { "_set": [ - 280 + 521 ], "where": [ - 267, + 508, "e_friend_status_bool_exp!" ] } ], "update_e_friend_status_by_pk": [ - 264, + 505, { "_set": [ - 280 + 521 ], "pk_columns": [ - 278, + 519, "e_friend_status_pk_columns_input!" ] } ], "update_e_friend_status_many": [ - 274, + 515, { "updates": [ - 284, + 525, "[e_friend_status_updates!]!" ] } ], "update_e_game_cfg_types": [ - 295, + 536, { "_set": [ - 300 + 541 ], "where": [ - 288, + 529, "e_game_cfg_types_bool_exp!" ] } ], "update_e_game_cfg_types_by_pk": [ - 285, + 526, { "_set": [ - 300 + 541 ], "pk_columns": [ - 298, + 539, "e_game_cfg_types_pk_columns_input!" ] } ], "update_e_game_cfg_types_many": [ - 295, + 536, { "updates": [ - 304, + 545, "[e_game_cfg_types_updates!]!" ] } ], "update_e_game_server_node_statuses": [ - 315, + 556, { "_set": [ - 321 + 562 ], "where": [ - 308, + 549, "e_game_server_node_statuses_bool_exp!" ] } ], "update_e_game_server_node_statuses_by_pk": [ - 305, + 546, { "_set": [ - 321 + 562 ], "pk_columns": [ - 319, + 560, "e_game_server_node_statuses_pk_columns_input!" ] } ], "update_e_game_server_node_statuses_many": [ - 315, + 556, { "updates": [ - 325, + 566, "[e_game_server_node_statuses_updates!]!" ] } ], "update_e_lobby_access": [ - 336, + 577, { "_set": [ - 342 + 583 ], "where": [ - 329, + 570, "e_lobby_access_bool_exp!" ] } ], "update_e_lobby_access_by_pk": [ - 326, + 567, { "_set": [ - 342 + 583 ], "pk_columns": [ - 340, + 581, "e_lobby_access_pk_columns_input!" ] } ], "update_e_lobby_access_many": [ - 336, + 577, { "updates": [ - 346, + 587, "[e_lobby_access_updates!]!" ] } ], "update_e_lobby_player_status": [ - 357, + 598, { "_set": [ - 362 + 603 ], "where": [ - 350, + 591, "e_lobby_player_status_bool_exp!" ] } ], "update_e_lobby_player_status_by_pk": [ - 347, + 588, { "_set": [ - 362 + 603 ], "pk_columns": [ - 360, + 601, "e_lobby_player_status_pk_columns_input!" ] } ], "update_e_lobby_player_status_many": [ - 357, + 598, { "updates": [ - 366, + 607, "[e_lobby_player_status_updates!]!" ] } ], "update_e_map_pool_types": [ - 377, + 618, { "_set": [ - 383 + 624 ], "where": [ - 370, + 611, "e_map_pool_types_bool_exp!" ] } ], "update_e_map_pool_types_by_pk": [ - 367, + 608, { "_set": [ - 383 + 624 ], "pk_columns": [ - 381, + 622, "e_map_pool_types_pk_columns_input!" ] } ], "update_e_map_pool_types_many": [ - 377, + 618, { "updates": [ - 387, + 628, "[e_map_pool_types_updates!]!" ] } ], "update_e_match_clip_visibility": [ - 398, + 639, { "_set": [ - 403 + 644 ], "where": [ - 391, + 632, "e_match_clip_visibility_bool_exp!" ] } ], "update_e_match_clip_visibility_by_pk": [ - 388, + 629, { "_set": [ - 403 + 644 ], "pk_columns": [ - 401, + 642, "e_match_clip_visibility_pk_columns_input!" ] } ], "update_e_match_clip_visibility_many": [ - 398, + 639, { "updates": [ - 407, + 648, "[e_match_clip_visibility_updates!]!" ] } ], "update_e_match_map_status": [ - 418, + 659, { "_set": [ - 424 + 665 ], "where": [ - 411, + 652, "e_match_map_status_bool_exp!" ] } ], "update_e_match_map_status_by_pk": [ - 408, + 649, { "_set": [ - 424 + 665 ], "pk_columns": [ - 422, + 663, "e_match_map_status_pk_columns_input!" ] } ], "update_e_match_map_status_many": [ - 418, + 659, { "updates": [ - 428, + 669, "[e_match_map_status_updates!]!" ] } ], "update_e_match_mode": [ - 439, + 680, { "_set": [ - 444 + 685 ], "where": [ - 432, + 673, "e_match_mode_bool_exp!" ] } ], "update_e_match_mode_by_pk": [ - 429, + 670, { "_set": [ - 444 + 685 ], "pk_columns": [ - 442, + 683, "e_match_mode_pk_columns_input!" ] } ], "update_e_match_mode_many": [ - 439, + 680, { "updates": [ - 448, + 689, "[e_match_mode_updates!]!" ] } ], "update_e_match_status": [ - 459, + 700, { "_set": [ - 465 + 706 ], "where": [ - 452, + 693, "e_match_status_bool_exp!" ] } ], "update_e_match_status_by_pk": [ - 449, + 690, { "_set": [ - 465 + 706 ], "pk_columns": [ - 463, + 704, "e_match_status_pk_columns_input!" ] } ], "update_e_match_status_many": [ - 459, + 700, { "updates": [ - 469, + 710, "[e_match_status_updates!]!" ] } ], "update_e_match_types": [ - 480, + 721, { "_set": [ - 486 + 727 ], "where": [ - 473, + 714, "e_match_types_bool_exp!" ] } ], "update_e_match_types_by_pk": [ - 470, + 711, { "_set": [ - 486 + 727 ], "pk_columns": [ - 484, + 725, "e_match_types_pk_columns_input!" ] } ], "update_e_match_types_many": [ - 480, + 721, { "updates": [ - 490, + 731, "[e_match_types_updates!]!" ] } ], "update_e_notification_types": [ - 501, + 742, { "_set": [ - 506 + 747 ], "where": [ - 494, + 735, "e_notification_types_bool_exp!" ] } ], "update_e_notification_types_by_pk": [ - 491, + 732, { "_set": [ - 506 + 747 ], "pk_columns": [ - 504, + 745, "e_notification_types_pk_columns_input!" ] } ], "update_e_notification_types_many": [ - 501, + 742, { "updates": [ - 510, + 751, "[e_notification_types_updates!]!" ] } ], "update_e_objective_types": [ - 521, + 762, { "_set": [ - 526 + 767 ], "where": [ - 514, + 755, "e_objective_types_bool_exp!" ] } ], "update_e_objective_types_by_pk": [ - 511, + 752, { "_set": [ - 526 + 767 ], "pk_columns": [ - 524, + 765, "e_objective_types_pk_columns_input!" ] } ], "update_e_objective_types_many": [ - 521, + 762, { "updates": [ - 530, + 771, "[e_objective_types_updates!]!" ] } ], "update_e_player_roles": [ - 541, + 782, { "_set": [ - 546 + 787 ], "where": [ - 534, + 775, "e_player_roles_bool_exp!" ] } ], "update_e_player_roles_by_pk": [ - 531, + 772, { "_set": [ - 546 + 787 ], "pk_columns": [ - 544, + 785, "e_player_roles_pk_columns_input!" ] } ], "update_e_player_roles_many": [ - 541, + 782, { "updates": [ - 550, + 791, "[e_player_roles_updates!]!" ] } ], "update_e_ready_settings": [ - 561, + 802, { "_set": [ - 566 + 807 ], "where": [ - 554, + 795, "e_ready_settings_bool_exp!" ] } ], "update_e_ready_settings_by_pk": [ - 551, + 792, { "_set": [ - 566 + 807 ], "pk_columns": [ - 564, + 805, "e_ready_settings_pk_columns_input!" ] } ], "update_e_ready_settings_many": [ - 561, + 802, { "updates": [ - 570, + 811, "[e_ready_settings_updates!]!" ] } ], "update_e_sanction_types": [ - 581, + 822, { "_set": [ - 587 + 828 ], "where": [ - 574, + 815, "e_sanction_types_bool_exp!" ] } ], "update_e_sanction_types_by_pk": [ - 571, + 812, { "_set": [ - 587 + 828 ], "pk_columns": [ - 585, + 826, "e_sanction_types_pk_columns_input!" ] } ], "update_e_sanction_types_many": [ - 581, + 822, { "updates": [ - 591, + 832, "[e_sanction_types_updates!]!" ] } ], "update_e_server_types": [ - 602, + 843, { "_set": [ - 607 + 848 ], "where": [ - 595, + 836, "e_server_types_bool_exp!" ] } ], "update_e_server_types_by_pk": [ - 592, + 833, { "_set": [ - 607 + 848 ], "pk_columns": [ - 605, + 846, "e_server_types_pk_columns_input!" ] } ], "update_e_server_types_many": [ - 602, + 843, { "updates": [ - 611, + 852, "[e_server_types_updates!]!" ] } ], "update_e_sides": [ - 622, + 863, { "_set": [ - 627 + 868 ], "where": [ - 615, + 856, "e_sides_bool_exp!" ] } ], "update_e_sides_by_pk": [ - 612, + 853, { "_set": [ - 627 + 868 ], "pk_columns": [ - 625, + 866, "e_sides_pk_columns_input!" ] } ], "update_e_sides_many": [ - 622, + 863, { "updates": [ - 631, + 872, "[e_sides_updates!]!" ] } ], "update_e_team_roles": [ - 642, + 883, { "_set": [ - 648 + 889 ], "where": [ - 635, + 876, "e_team_roles_bool_exp!" ] } ], "update_e_team_roles_by_pk": [ - 632, + 873, { "_set": [ - 648 + 889 ], "pk_columns": [ - 646, + 887, "e_team_roles_pk_columns_input!" ] } ], "update_e_team_roles_many": [ - 642, + 883, { "updates": [ - 652, + 893, "[e_team_roles_updates!]!" ] } ], "update_e_team_roster_statuses": [ - 663, + 904, { "_set": [ - 668 + 909 ], "where": [ - 656, + 897, "e_team_roster_statuses_bool_exp!" ] } ], "update_e_team_roster_statuses_by_pk": [ - 653, + 894, { "_set": [ - 668 + 909 ], "pk_columns": [ - 666, + 907, "e_team_roster_statuses_pk_columns_input!" ] } ], "update_e_team_roster_statuses_many": [ - 663, + 904, { "updates": [ - 672, + 913, "[e_team_roster_statuses_updates!]!" ] } ], "update_e_timeout_settings": [ - 683, + 924, { "_set": [ - 688 + 929 ], "where": [ - 676, + 917, "e_timeout_settings_bool_exp!" ] } ], "update_e_timeout_settings_by_pk": [ - 673, + 914, { "_set": [ - 688 + 929 ], "pk_columns": [ - 686, + 927, "e_timeout_settings_pk_columns_input!" ] } ], "update_e_timeout_settings_many": [ - 683, + 924, { "updates": [ - 692, + 933, "[e_timeout_settings_updates!]!" ] } ], "update_e_tournament_stage_types": [ - 703, + 944, { "_set": [ - 709 + 950 ], "where": [ - 696, + 937, "e_tournament_stage_types_bool_exp!" ] } ], "update_e_tournament_stage_types_by_pk": [ - 693, + 934, { "_set": [ - 709 + 950 ], "pk_columns": [ - 707, + 948, "e_tournament_stage_types_pk_columns_input!" ] } ], "update_e_tournament_stage_types_many": [ - 703, + 944, { "updates": [ - 713, + 954, "[e_tournament_stage_types_updates!]!" ] } ], "update_e_tournament_status": [ - 724, + 965, { "_set": [ - 730 + 971 ], "where": [ - 717, + 958, "e_tournament_status_bool_exp!" ] } ], "update_e_tournament_status_by_pk": [ - 714, + 955, { "_set": [ - 730 + 971 ], "pk_columns": [ - 728, + 969, "e_tournament_status_pk_columns_input!" ] } ], "update_e_tournament_status_many": [ - 724, + 965, { "updates": [ - 734, + 975, "[e_tournament_status_updates!]!" ] } ], "update_e_utility_types": [ - 745, + 986, { "_set": [ - 750 + 991 ], "where": [ - 738, + 979, "e_utility_types_bool_exp!" ] } ], "update_e_utility_types_by_pk": [ - 735, + 976, { "_set": [ - 750 + 991 ], "pk_columns": [ - 748, + 989, "e_utility_types_pk_columns_input!" ] } ], "update_e_utility_types_many": [ - 745, + 986, { "updates": [ - 754, + 995, "[e_utility_types_updates!]!" ] } ], "update_e_veto_pick_types": [ - 765, + 1006, { "_set": [ - 770 + 1011 ], "where": [ - 758, + 999, "e_veto_pick_types_bool_exp!" ] } ], "update_e_veto_pick_types_by_pk": [ - 755, + 996, { "_set": [ - 770 + 1011 ], "pk_columns": [ - 768, + 1009, "e_veto_pick_types_pk_columns_input!" ] } ], "update_e_veto_pick_types_many": [ - 765, + 1006, { "updates": [ - 774, + 1015, "[e_veto_pick_types_updates!]!" ] } ], "update_e_winning_reasons": [ - 785, + 1026, { "_set": [ - 790 + 1031 ], "where": [ - 778, + 1019, "e_winning_reasons_bool_exp!" ] } ], "update_e_winning_reasons_by_pk": [ - 775, + 1016, { "_set": [ - 790 + 1031 ], "pk_columns": [ - 788, + 1029, "e_winning_reasons_pk_columns_input!" ] } ], "update_e_winning_reasons_many": [ - 785, + 1026, { "updates": [ - 794, + 1035, "[e_winning_reasons_updates!]!" ] } ], "update_friends": [ - 807, + 1048, { "_inc": [ - 803 + 1044 ], "_set": [ - 812 + 1053 ], "where": [ - 801, + 1042, "friends_bool_exp!" ] } ], "update_friends_by_pk": [ - 797, + 1038, { "_inc": [ - 803 + 1044 ], "_set": [ - 812 + 1053 ], "pk_columns": [ - 810, + 1051, "friends_pk_columns_input!" ] } ], "update_friends_many": [ - 807, + 1048, { "updates": [ - 820, + 1061, "[friends_updates!]!" ] } ], "update_game_server_nodes": [ - 847, + 1088, { "_append": [ - 832 + 1073 ], "_delete_at_path": [ - 838 + 1079 ], "_delete_elem": [ - 839 + 1080 ], "_delete_key": [ - 840 + 1081 ], "_inc": [ - 841 + 1082 ], "_prepend": [ - 852 + 1093 ], "_set": [ - 856 + 1097 ], "where": [ - 836, + 1077, "game_server_nodes_bool_exp!" ] } ], "update_game_server_nodes_by_pk": [ - 824, + 1065, { "_append": [ - 832 + 1073 ], "_delete_at_path": [ - 838 + 1079 ], "_delete_elem": [ - 839 + 1080 ], "_delete_key": [ - 840 + 1081 ], "_inc": [ - 841 + 1082 ], "_prepend": [ - 852 + 1093 ], "_set": [ - 856 + 1097 ], "pk_columns": [ - 851, + 1092, "game_server_nodes_pk_columns_input!" ] } ], "update_game_server_nodes_many": [ - 847, + 1088, { "updates": [ - 868, + 1109, "[game_server_nodes_updates!]!" ] } ], "update_game_versions": [ - 889, + 1130, { "_append": [ - 878 + 1119 ], "_delete_at_path": [ - 882 + 1123 ], "_delete_elem": [ - 883 + 1124 ], "_delete_key": [ - 884 + 1125 ], "_inc": [ - 885 + 1126 ], "_prepend": [ - 894 + 1135 ], "_set": [ - 896 + 1137 ], "where": [ - 880, + 1121, "game_versions_bool_exp!" ] } ], "update_game_versions_by_pk": [ - 875, + 1116, { "_append": [ - 878 + 1119 ], "_delete_at_path": [ - 882 + 1123 ], "_delete_elem": [ - 883 + 1124 ], "_delete_key": [ - 884 + 1125 ], "_inc": [ - 885 + 1126 ], "_prepend": [ - 894 + 1135 ], "_set": [ - 896 + 1137 ], "pk_columns": [ - 893, + 1134, "game_versions_pk_columns_input!" ] } ], "update_game_versions_many": [ - 889, + 1130, { "updates": [ - 904, + 1145, "[game_versions_updates!]!" ] } ], "update_gamedata_signature_validations": [ - 922, + 1163, { "_append": [ - 911 + 1152 ], "_delete_at_path": [ - 915 + 1156 ], "_delete_elem": [ - 916 + 1157 ], "_delete_key": [ - 917 + 1158 ], "_inc": [ - 918 + 1159 ], "_prepend": [ - 926 + 1167 ], "_set": [ - 928 + 1169 ], "where": [ - 913, + 1154, "gamedata_signature_validations_bool_exp!" ] } ], "update_gamedata_signature_validations_by_pk": [ - 908, + 1149, { "_append": [ - 911 + 1152 ], "_delete_at_path": [ - 915 + 1156 ], "_delete_elem": [ - 916 + 1157 ], "_delete_key": [ - 917 + 1158 ], "_inc": [ - 918 + 1159 ], "_prepend": [ - 926 + 1167 ], "_set": [ - 928 + 1169 ], "pk_columns": [ - 925, + 1166, "gamedata_signature_validations_pk_columns_input!" ] } ], "update_gamedata_signature_validations_many": [ - 922, + 1163, { "updates": [ - 936, + 1177, "[gamedata_signature_validations_updates!]!" ] } ], "update_leaderboard_entries": [ - 958, + 1199, { "_inc": [ - 954 + 1195 ], "_set": [ - 961 + 1202 ], "where": [ - 953, + 1194, "leaderboard_entries_bool_exp!" ] } ], "update_leaderboard_entries_many": [ - 958, + 1199, { "updates": [ - 968, + 1209, "[leaderboard_entries_updates!]!" ] } ], "update_lobbies": [ - 980, + 1221, { "_set": [ - 986 + 1227 ], "where": [ - 975, + 1216, "lobbies_bool_exp!" ] } ], "update_lobbies_by_pk": [ - 972, + 1213, { "_set": [ - 986 + 1227 ], "pk_columns": [ - 984, + 1225, "lobbies_pk_columns_input!" ] } ], "update_lobbies_many": [ - 980, + 1221, { "updates": [ - 990, + 1231, "[lobbies_updates!]!" ] } ], "update_lobby_players": [ - 1010, + 1251, { "_inc": [ - 1004 + 1245 ], "_set": [ - 1017 + 1258 ], "where": [ - 1002, + 1243, "lobby_players_bool_exp!" ] } ], "update_lobby_players_by_pk": [ - 991, + 1232, { "_inc": [ - 1004 + 1245 ], "_set": [ - 1017 + 1258 ], "pk_columns": [ - 1013, + 1254, "lobby_players_pk_columns_input!" ] } ], "update_lobby_players_many": [ - 1010, + 1251, { "updates": [ - 1029, + 1270, "[lobby_players_updates!]!" ] } ], "update_map_pools": [ - 1044, + 1285, { "_set": [ - 1050 + 1291 ], "where": [ - 1039, + 1280, "map_pools_bool_exp!" ] } ], "update_map_pools_by_pk": [ - 1036, + 1277, { "_set": [ - 1050 + 1291 ], "pk_columns": [ - 1048, + 1289, "map_pools_pk_columns_input!" ] } ], "update_map_pools_many": [ - 1044, + 1285, { "updates": [ - 1054, + 1295, "[map_pools_updates!]!" ] } ], "update_maps": [ - 1071, + 1312, { "_set": [ - 1079 + 1320 ], "where": [ - 1064, + 1305, "maps_bool_exp!" ] } ], "update_maps_by_pk": [ - 1055, + 1296, { "_set": [ - 1079 + 1320 ], "pk_columns": [ - 1075, + 1316, "maps_pk_columns_input!" ] } ], "update_maps_many": [ - 1071, + 1312, { "updates": [ - 1083, + 1324, "[maps_updates!]!" ] } ], "update_match_clips": [ - 1101, + 1342, { "_inc": [ - 1095 + 1336 ], "_set": [ - 1107 + 1348 ], "where": [ - 1093, + 1334, "match_clips_bool_exp!" ] } ], "update_match_clips_by_pk": [ - 1084, + 1325, { "_inc": [ - 1095 + 1336 ], "_set": [ - 1107 + 1348 ], "pk_columns": [ - 1105, + 1346, "match_clips_pk_columns_input!" ] } ], "update_match_clips_many": [ - 1101, + 1342, { "updates": [ - 1119, + 1360, "[match_clips_updates!]!" ] } ], "update_match_demo_sessions": [ - 1147, + 1388, { "_append": [ - 1132 + 1373 ], "_delete_at_path": [ - 1138 + 1379 ], "_delete_elem": [ - 1139 + 1380 ], "_delete_key": [ - 1140 + 1381 ], "_inc": [ - 1141 + 1382 ], "_prepend": [ - 1151 + 1392 ], "_set": [ - 1153 + 1394 ], "where": [ - 1136, + 1377, "match_demo_sessions_bool_exp!" ] } ], "update_match_demo_sessions_by_pk": [ - 1126, + 1367, { "_append": [ - 1132 + 1373 ], "_delete_at_path": [ - 1138 + 1379 ], "_delete_elem": [ - 1139 + 1380 ], "_delete_key": [ - 1140 + 1381 ], "_inc": [ - 1141 + 1382 ], "_prepend": [ - 1151 + 1392 ], "_set": [ - 1153 + 1394 ], "pk_columns": [ - 1150, + 1391, "match_demo_sessions_pk_columns_input!" ] } ], "update_match_demo_sessions_many": [ - 1147, + 1388, { "updates": [ - 1165, + 1406, "[match_demo_sessions_updates!]!" ] } ], "update_match_invites": [ - 1189, + 1430, { "_inc": [ - 1183 + 1424 ], "_set": [ - 1194 + 1435 ], "where": [ - 1181, + 1422, "match_invites_bool_exp!" ] } ], "update_match_invites_by_pk": [ - 1172, + 1413, { "_inc": [ - 1183 + 1424 ], "_set": [ - 1194 + 1435 ], "pk_columns": [ - 1192, + 1433, "match_invites_pk_columns_input!" ] } ], "update_match_invites_many": [ - 1189, + 1430, { "updates": [ - 1206, + 1447, "[match_invites_updates!]!" ] } ], "update_match_lineup_players": [ - 1232, + 1473, { "_inc": [ - 1226 + 1467 ], "_set": [ - 1239 + 1480 ], "where": [ - 1224, + 1465, "match_lineup_players_bool_exp!" ] } ], "update_match_lineup_players_by_pk": [ - 1213, + 1454, { "_inc": [ - 1226 + 1467 ], "_set": [ - 1239 + 1480 ], "pk_columns": [ - 1235, + 1476, "match_lineup_players_pk_columns_input!" ] } ], "update_match_lineup_players_many": [ - 1232, + 1473, { "updates": [ - 1251, + 1492, "[match_lineup_players_updates!]!" ] } ], "update_match_lineups": [ - 1275, + 1516, { "_inc": [ - 1269 + 1510 ], "_set": [ - 1281 + 1522 ], "where": [ - 1267, + 1508, "match_lineups_bool_exp!" ] } ], "update_match_lineups_by_pk": [ - 1258, + 1499, { "_inc": [ - 1269 + 1510 ], "_set": [ - 1281 + 1522 ], "pk_columns": [ - 1279, + 1520, "match_lineups_pk_columns_input!" ] } ], "update_match_lineups_many": [ - 1275, + 1516, { "updates": [ - 1293, + 1534, "[match_lineups_updates!]!" ] } ], "update_match_map_demos": [ - 1323, + 1564, { "_append": [ - 1308 + 1549 ], "_delete_at_path": [ - 1314 + 1555 ], "_delete_elem": [ - 1315 + 1556 ], "_delete_key": [ - 1316 + 1557 ], "_inc": [ - 1317 + 1558 ], "_prepend": [ - 1328 + 1569 ], "_set": [ - 1332 + 1573 ], "where": [ - 1312, + 1553, "match_map_demos_bool_exp!" ] } ], "update_match_map_demos_by_pk": [ - 1300, + 1541, { "_append": [ - 1308 + 1549 ], "_delete_at_path": [ - 1314 + 1555 ], "_delete_elem": [ - 1315 + 1556 ], "_delete_key": [ - 1316 + 1557 ], "_inc": [ - 1317 + 1558 ], "_prepend": [ - 1328 + 1569 ], "_set": [ - 1332 + 1573 ], "pk_columns": [ - 1327, + 1568, "match_map_demos_pk_columns_input!" ] } ], "update_match_map_demos_many": [ - 1323, + 1564, { "updates": [ - 1344, + 1585, "[match_map_demos_updates!]!" ] } ], "update_match_map_rounds": [ - 1368, + 1609, { "_inc": [ - 1362 + 1603 ], "_set": [ - 1373 + 1614 ], "where": [ - 1360, + 1601, "match_map_rounds_bool_exp!" ] } ], "update_match_map_rounds_by_pk": [ - 1351, + 1592, { "_inc": [ - 1362 + 1603 ], "_set": [ - 1373 + 1614 ], "pk_columns": [ - 1371, + 1612, "match_map_rounds_pk_columns_input!" ] } ], "update_match_map_rounds_many": [ - 1368, + 1609, { "updates": [ - 1385, + 1626, "[match_map_rounds_updates!]!" ] } ], "update_match_map_veto_picks": [ - 1406, + 1647, { "_set": [ - 1411 + 1652 ], "where": [ - 1399, + 1640, "match_map_veto_picks_bool_exp!" ] } ], "update_match_map_veto_picks_by_pk": [ - 1392, + 1633, { "_set": [ - 1411 + 1652 ], "pk_columns": [ - 1409, + 1650, "match_map_veto_picks_pk_columns_input!" ] } ], "update_match_map_veto_picks_many": [ - 1406, + 1647, { "updates": [ - 1415, + 1656, "[match_map_veto_picks_updates!]!" ] } ], "update_match_maps": [ - 1433, + 1674, { "_inc": [ - 1427 + 1668 ], "_set": [ - 1439 + 1680 ], "where": [ - 1425, + 1666, "match_maps_bool_exp!" ] } ], "update_match_maps_by_pk": [ - 1416, + 1657, { "_inc": [ - 1427 + 1668 ], "_set": [ - 1439 + 1680 ], "pk_columns": [ - 1437, + 1678, "match_maps_pk_columns_input!" ] } ], "update_match_maps_many": [ - 1433, + 1674, { "updates": [ - 1451, + 1692, "[match_maps_updates!]!" ] } ], "update_match_options": [ - 1468, + 1709, { "_inc": [ - 1464 + 1705 ], "_set": [ - 1474 + 1715 ], "where": [ - 1462, + 1703, "match_options_bool_exp!" ] } ], "update_match_options_by_pk": [ - 1458, + 1699, { "_inc": [ - 1464 + 1705 ], "_set": [ - 1474 + 1715 ], "pk_columns": [ - 1472, + 1713, "match_options_pk_columns_input!" ] } ], "update_match_options_many": [ - 1468, + 1709, { "updates": [ - 1482, + 1723, "[match_options_updates!]!" ] } ], "update_match_region_veto_picks": [ - 1500, + 1741, { "_set": [ - 1505 + 1746 ], "where": [ - 1493, + 1734, "match_region_veto_picks_bool_exp!" ] } ], "update_match_region_veto_picks_by_pk": [ - 1486, + 1727, { "_set": [ - 1505 + 1746 ], "pk_columns": [ - 1503, + 1744, "match_region_veto_picks_pk_columns_input!" ] } ], "update_match_region_veto_picks_many": [ - 1500, + 1741, { "updates": [ - 1509, + 1750, "[match_region_veto_picks_updates!]!" ] } ], "update_match_streams": [ - 1533, + 1774, { "_append": [ - 1518 + 1759 ], "_delete_at_path": [ - 1524 + 1765 ], "_delete_elem": [ - 1525 + 1766 ], "_delete_key": [ - 1526 + 1767 ], "_inc": [ - 1527 + 1768 ], "_prepend": [ - 1537 + 1778 ], "_set": [ - 1541 + 1782 ], "where": [ - 1522, + 1763, "match_streams_bool_exp!" ] } ], "update_match_streams_by_pk": [ - 1510, + 1751, { "_append": [ - 1518 + 1759 ], "_delete_at_path": [ - 1524 + 1765 ], "_delete_elem": [ - 1525 + 1766 ], "_delete_key": [ - 1526 + 1767 ], "_inc": [ - 1527 + 1768 ], "_prepend": [ - 1537 + 1778 ], "_set": [ - 1541 + 1782 ], "pk_columns": [ - 1536, + 1777, "match_streams_pk_columns_input!" ] } ], "update_match_streams_many": [ - 1533, + 1774, { "updates": [ - 1553, + 1794, "[match_streams_updates!]!" ] } ], "update_match_type_cfgs": [ - 1568, + 1809, { "_set": [ - 1573 + 1814 ], "where": [ - 1563, + 1804, "match_type_cfgs_bool_exp!" ] } ], "update_match_type_cfgs_by_pk": [ - 1560, + 1801, { "_set": [ - 1573 + 1814 ], "pk_columns": [ - 1571, + 1812, "match_type_cfgs_pk_columns_input!" ] } ], "update_match_type_cfgs_many": [ - 1568, + 1809, { "updates": [ - 1577, + 1818, "[match_type_cfgs_updates!]!" ] } ], "update_matches": [ - 1595, + 1836, { "_inc": [ - 1589 + 1830 ], "_set": [ - 1601 + 1842 ], "where": [ - 1587, + 1828, "matches_bool_exp!" ] } ], "update_matches_by_pk": [ - 1578, + 1819, { "_inc": [ - 1589 + 1830 ], "_set": [ - 1601 + 1842 ], "pk_columns": [ - 1599, + 1840, "matches_pk_columns_input!" ] } ], "update_matches_many": [ - 1595, + 1836, { "updates": [ - 1613, + 1854, "[matches_updates!]!" ] } ], "update_migration_hashes_hashes": [ - 1628, + 1869, { "_set": [ - 1633 + 1874 ], "where": [ - 1623, + 1864, "migration_hashes_hashes_bool_exp!" ] } ], "update_migration_hashes_hashes_by_pk": [ - 1620, + 1861, { "_set": [ - 1633 + 1874 ], "pk_columns": [ - 1631, + 1872, "migration_hashes_hashes_pk_columns_input!" ] } ], "update_migration_hashes_hashes_many": [ - 1628, + 1869, { "updates": [ - 1637, + 1878, "[migration_hashes_hashes_updates!]!" ] } ], "update_my_friends": [ - 1660, + 1901, { "_append": [ - 1646 + 1887 ], "_delete_at_path": [ - 1651 + 1892 ], "_delete_elem": [ - 1652 + 1893 ], "_delete_key": [ - 1653 + 1894 ], "_inc": [ - 1654 + 1895 ], "_prepend": [ - 1662 + 1903 ], "_set": [ - 1666 + 1907 ], "where": [ - 1650, + 1891, "my_friends_bool_exp!" ] } ], "update_my_friends_many": [ - 1660, + 1901, { "updates": [ - 1677, + 1918, "[my_friends_updates!]!" ] } ], + "update_news_articles": [ + 1935, + { + "_inc": [ + 1931 + ], + "_set": [ + 1940 + ], + "where": [ + 1929, + "news_articles_bool_exp!" + ] + } + ], + "update_news_articles_by_pk": [ + 1925, + { + "_inc": [ + 1931 + ], + "_set": [ + 1940 + ], + "pk_columns": [ + 1938, + "news_articles_pk_columns_input!" + ] + } + ], + "update_news_articles_many": [ + 1935, + { + "updates": [ + 1948, + "[news_articles_updates!]!" + ] + } + ], "update_notifications": [ - 1707, + 1975, { "_append": [ - 1692 + 1960 ], "_delete_at_path": [ - 1698 + 1966 ], "_delete_elem": [ - 1699 + 1967 ], "_delete_key": [ - 1700 + 1968 ], "_inc": [ - 1701 + 1969 ], "_prepend": [ - 1711 + 1979 ], "_set": [ - 1715 + 1983 ], "where": [ - 1696, + 1964, "notifications_bool_exp!" ] } ], "update_notifications_by_pk": [ - 1684, + 1952, { "_append": [ - 1692 + 1960 ], "_delete_at_path": [ - 1698 + 1966 ], "_delete_elem": [ - 1699 + 1967 ], "_delete_key": [ - 1700 + 1968 ], "_inc": [ - 1701 + 1969 ], "_prepend": [ - 1711 + 1979 ], "_set": [ - 1715 + 1983 ], "pk_columns": [ - 1710, + 1978, "notifications_pk_columns_input!" ] } ], "update_notifications_many": [ - 1707, + 1975, { "updates": [ - 1727, + 1995, "[notifications_updates!]!" ] } ], "update_pending_match_import_players": [ - 1754, + 2022, { "_inc": [ - 1748 + 2016 ], "_set": [ - 1759 + 2027 ], "where": [ - 1746, + 2014, "pending_match_import_players_bool_exp!" ] } ], "update_pending_match_import_players_by_pk": [ - 1737, + 2005, { "_inc": [ - 1748 + 2016 ], "_set": [ - 1759 + 2027 ], "pk_columns": [ - 1757, + 2025, "pending_match_import_players_pk_columns_input!" ] } ], "update_pending_match_import_players_many": [ - 1754, + 2022, { "updates": [ - 1771, + 2039, "[pending_match_import_players_updates!]!" ] } ], "update_pending_match_imports": [ - 1788, + 2056, { "_inc": [ - 1784 + 2052 ], "_set": [ - 1794 + 2062 ], "where": [ - 1782, + 2050, "pending_match_imports_bool_exp!" ] } ], "update_pending_match_imports_by_pk": [ - 1778, + 2046, { "_inc": [ - 1784 + 2052 ], "_set": [ - 1794 + 2062 ], "pk_columns": [ - 1792, + 2060, "pending_match_imports_pk_columns_input!" ] } ], "update_pending_match_imports_many": [ - 1788, + 2056, { "updates": [ - 1802, + 2070, "[pending_match_imports_updates!]!" ] } ], "update_player_aim_stats_demo": [ - 1816, + 2084, { "_inc": [ - 1812 + 2080 ], "_set": [ - 1821 + 2089 ], "where": [ - 1810, + 2078, "player_aim_stats_demo_bool_exp!" ] } ], "update_player_aim_stats_demo_by_pk": [ - 1806, + 2074, { "_inc": [ - 1812 + 2080 ], "_set": [ - 1821 + 2089 ], "pk_columns": [ - 1819, + 2087, "player_aim_stats_demo_pk_columns_input!" ] } ], "update_player_aim_stats_demo_many": [ - 1816, + 2084, { "updates": [ - 1829, + 2097, "[player_aim_stats_demo_updates!]!" ] } ], "update_player_aim_weapon_stats": [ - 1850, + 2118, { "_inc": [ - 1844 + 2112 ], "_set": [ - 1855 + 2123 ], "where": [ - 1842, + 2110, "player_aim_weapon_stats_bool_exp!" ] } ], "update_player_aim_weapon_stats_by_pk": [ - 1833, + 2101, { "_inc": [ - 1844 + 2112 ], "_set": [ - 1855 + 2123 ], "pk_columns": [ - 1853, + 2121, "player_aim_weapon_stats_pk_columns_input!" ] } ], "update_player_aim_weapon_stats_many": [ - 1850, + 2118, { "updates": [ - 1867, + 2135, "[player_aim_weapon_stats_updates!]!" ] } ], "update_player_assists": [ - 1893, + 2161, { "_inc": [ - 1887 + 2155 ], "_set": [ - 1900 + 2168 ], "where": [ - 1885, + 2153, "player_assists_bool_exp!" ] } ], "update_player_assists_by_pk": [ - 1874, + 2142, { "_inc": [ - 1887 + 2155 ], "_set": [ - 1900 + 2168 ], "pk_columns": [ - 1896, + 2164, "player_assists_pk_columns_input!" ] } ], "update_player_assists_many": [ - 1893, + 2161, { "updates": [ - 1912, + 2180, "[player_assists_updates!]!" ] } ], "update_player_damages": [ - 1954, + 2222, { "_inc": [ - 1948 + 2216 ], "_set": [ - 1959 + 2227 ], "where": [ - 1946, + 2214, "player_damages_bool_exp!" ] } ], "update_player_damages_by_pk": [ - 1937, + 2205, { "_inc": [ - 1948 + 2216 ], "_set": [ - 1959 + 2227 ], "pk_columns": [ - 1957, + 2225, "player_damages_pk_columns_input!" ] } ], "update_player_damages_many": [ - 1954, + 2222, { "updates": [ - 1971, + 2239, "[player_damages_updates!]!" ] } ], "update_player_elo": [ - 1988, + 2256, { "_inc": [ - 1984 + 2252 ], "_set": [ - 1993 + 2261 ], "where": [ - 1982, + 2250, "player_elo_bool_exp!" ] } ], "update_player_elo_by_pk": [ - 1978, + 2246, { "_inc": [ - 1984 + 2252 ], "_set": [ - 1993 + 2261 ], "pk_columns": [ - 1991, + 2259, "player_elo_pk_columns_input!" ] } ], "update_player_elo_many": [ - 1988, + 2256, { "updates": [ - 2001, + 2269, "[player_elo_updates!]!" ] } ], "update_player_faceit_rank_history": [ - 2022, + 2290, { "_inc": [ - 2016 + 2284 ], "_set": [ - 2027 + 2295 ], "where": [ - 2014, + 2282, "player_faceit_rank_history_bool_exp!" ] } ], "update_player_faceit_rank_history_by_pk": [ - 2005, + 2273, { "_inc": [ - 2016 + 2284 ], "_set": [ - 2027 + 2295 ], "pk_columns": [ - 2025, + 2293, "player_faceit_rank_history_pk_columns_input!" ] } ], "update_player_faceit_rank_history_many": [ - 2022, + 2290, { "updates": [ - 2039, + 2307, "[player_faceit_rank_history_updates!]!" ] } ], "update_player_flashes": [ - 2065, + 2333, { "_inc": [ - 2059 + 2327 ], "_set": [ - 2072 + 2340 ], "where": [ - 2057, + 2325, "player_flashes_bool_exp!" ] } ], "update_player_flashes_by_pk": [ - 2046, + 2314, { "_inc": [ - 2059 + 2327 ], "_set": [ - 2072 + 2340 ], "pk_columns": [ - 2068, + 2336, "player_flashes_pk_columns_input!" ] } ], "update_player_flashes_many": [ - 2065, + 2333, { "updates": [ - 2084, + 2352, "[player_flashes_updates!]!" ] } ], "update_player_kills": [ - 2151, + 2419, { "_inc": [ - 2145 + 2413 ], "_set": [ - 2158 + 2426 ], "where": [ - 2102, + 2370, "player_kills_bool_exp!" ] } ], "update_player_kills_by_pk": [ - 2091, + 2359, { "_inc": [ - 2145 + 2413 ], "_set": [ - 2158 + 2426 ], "pk_columns": [ - 2154, + 2422, "player_kills_pk_columns_input!" ] } ], "update_player_kills_by_weapon": [ - 2120, + 2388, { "_inc": [ - 2114 + 2382 ], "_set": [ - 2125 + 2393 ], "where": [ - 2112, + 2380, "player_kills_by_weapon_bool_exp!" ] } ], "update_player_kills_by_weapon_by_pk": [ - 2103, + 2371, { "_inc": [ - 2114 + 2382 ], "_set": [ - 2125 + 2393 ], "pk_columns": [ - 2123, + 2391, "player_kills_by_weapon_pk_columns_input!" ] } ], "update_player_kills_by_weapon_many": [ - 2120, + 2388, { "updates": [ - 2137, + 2405, "[player_kills_by_weapon_updates!]!" ] } ], "update_player_kills_many": [ - 2151, + 2419, { "updates": [ - 2170, + 2438, "[player_kills_updates!]!" ] } ], "update_player_leaderboard_rank": [ - 2186, + 2454, { "_inc": [ - 2182 + 2450 ], "_set": [ - 2189 + 2457 ], "where": [ - 2181, + 2449, "player_leaderboard_rank_bool_exp!" ] } ], "update_player_leaderboard_rank_many": [ - 2186, + 2454, { "updates": [ - 2196, + 2464, "[player_leaderboard_rank_updates!]!" ] } ], "update_player_match_map_stats": [ - 2217, + 2485, { "_inc": [ - 2211 + 2479 ], "_set": [ - 2222 + 2490 ], "where": [ - 2209, + 2477, "player_match_map_stats_bool_exp!" ] } ], "update_player_match_map_stats_by_pk": [ - 2200, + 2468, { "_inc": [ - 2211 + 2479 ], "_set": [ - 2222 + 2490 ], "pk_columns": [ - 2220, + 2488, "player_match_map_stats_pk_columns_input!" ] } ], "update_player_match_map_stats_many": [ - 2217, + 2485, { "updates": [ - 2234, + 2502, "[player_match_map_stats_updates!]!" ] } ], "update_player_objectives": [ - 2309, + 2577, { "_inc": [ - 2303 + 2571 ], "_set": [ - 2314 + 2582 ], "where": [ - 2301, + 2569, "player_objectives_bool_exp!" ] } ], "update_player_objectives_by_pk": [ - 2292, + 2560, { "_inc": [ - 2303 + 2571 ], "_set": [ - 2314 + 2582 ], "pk_columns": [ - 2312, + 2580, "player_objectives_pk_columns_input!" ] } ], "update_player_objectives_many": [ - 2309, + 2577, { "updates": [ - 2326, + 2594, "[player_objectives_updates!]!" ] } ], "update_player_premier_rank_history": [ - 2368, + 2636, { "_inc": [ - 2362 + 2630 ], "_set": [ - 2373 + 2641 ], "where": [ - 2360, + 2628, "player_premier_rank_history_bool_exp!" ] } ], "update_player_premier_rank_history_by_pk": [ - 2351, + 2619, { "_inc": [ - 2362 + 2630 ], "_set": [ - 2373 + 2641 ], "pk_columns": [ - 2371, + 2639, "player_premier_rank_history_pk_columns_input!" ] } ], "update_player_premier_rank_history_many": [ - 2368, + 2636, { "updates": [ - 2385, + 2653, "[player_premier_rank_history_updates!]!" ] } ], "update_player_sanctions": [ - 2409, + 2677, { "_inc": [ - 2403 + 2671 ], "_set": [ - 2414 + 2682 ], "where": [ - 2401, + 2669, "player_sanctions_bool_exp!" ] } ], "update_player_sanctions_by_pk": [ - 2392, + 2660, { "_inc": [ - 2403 + 2671 ], "_set": [ - 2414 + 2682 ], "pk_columns": [ - 2412, + 2680, "player_sanctions_pk_columns_input!" ] } ], "update_player_sanctions_many": [ - 2409, + 2677, { "updates": [ - 2426, + 2694, "[player_sanctions_updates!]!" ] } ], "update_player_stats": [ - 2443, + 2711, { "_inc": [ - 2439 + 2707 ], "_set": [ - 2449 + 2717 ], "where": [ - 2437, + 2705, "player_stats_bool_exp!" ] } ], "update_player_stats_by_pk": [ - 2433, + 2701, { "_inc": [ - 2439 + 2707 ], "_set": [ - 2449 + 2717 ], "pk_columns": [ - 2447, + 2715, "player_stats_pk_columns_input!" ] } ], "update_player_stats_many": [ - 2443, + 2711, { "updates": [ - 2457, + 2725, "[player_stats_updates!]!" ] } ], "update_player_steam_match_auth": [ - 2471, + 2739, { "_inc": [ - 2467 + 2735 ], "_set": [ - 2476 + 2744 ], "where": [ - 2465, + 2733, "player_steam_match_auth_bool_exp!" ] } ], "update_player_steam_match_auth_by_pk": [ - 2461, + 2729, { "_inc": [ - 2467 + 2735 ], "_set": [ - 2476 + 2744 ], "pk_columns": [ - 2474, + 2742, "player_steam_match_auth_pk_columns_input!" ] } ], "update_player_steam_match_auth_many": [ - 2471, + 2739, { "updates": [ - 2484, + 2752, "[player_steam_match_auth_updates!]!" ] } ], "update_player_unused_utility": [ - 2505, + 2773, { "_inc": [ - 2499 + 2767 ], "_set": [ - 2510 + 2778 ], "where": [ - 2497, + 2765, "player_unused_utility_bool_exp!" ] } ], "update_player_unused_utility_by_pk": [ - 2488, + 2756, { "_inc": [ - 2499 + 2767 ], "_set": [ - 2510 + 2778 ], "pk_columns": [ - 2508, + 2776, "player_unused_utility_pk_columns_input!" ] } ], "update_player_unused_utility_many": [ - 2505, + 2773, { "updates": [ - 2522, + 2790, "[player_unused_utility_updates!]!" ] } ], "update_player_utility": [ - 2546, + 2814, { "_inc": [ - 2540 + 2808 ], "_set": [ - 2551 + 2819 ], "where": [ - 2538, + 2806, "player_utility_bool_exp!" ] } ], "update_player_utility_by_pk": [ - 2529, + 2797, { "_inc": [ - 2540 + 2808 ], "_set": [ - 2551 + 2819 ], "pk_columns": [ - 2549, + 2817, "player_utility_pk_columns_input!" ] } ], "update_player_utility_many": [ - 2546, + 2814, { "updates": [ - 2563, + 2831, "[player_utility_updates!]!" ] } ], "update_players": [ - 2613, + 2881, { "_inc": [ - 2609 + 2877 ], "_set": [ - 2619 + 2887 ], "where": [ - 2607, + 2875, "players_bool_exp!" ] } ], "update_players_by_pk": [ - 2603, + 2871, { "_inc": [ - 2609 + 2877 ], "_set": [ - 2619 + 2887 ], "pk_columns": [ - 2617, + 2885, "players_pk_columns_input!" ] } ], "update_players_many": [ - 2613, + 2881, { "updates": [ - 2627, + 2895, "[players_updates!]!" ] } ], "update_plugin_versions": [ - 2641, + 2909, { "_inc": [ - 2637 + 2905 ], "_set": [ - 2646 + 2914 ], "where": [ - 2635, + 2903, "plugin_versions_bool_exp!" ] } ], "update_plugin_versions_by_pk": [ - 2631, + 2899, { "_inc": [ - 2637 + 2905 ], "_set": [ - 2646 + 2914 ], "pk_columns": [ - 2644, + 2912, "plugin_versions_pk_columns_input!" ] } ], "update_plugin_versions_many": [ - 2641, + 2909, { "updates": [ - 2654, + 2922, "[plugin_versions_updates!]!" ] } ], "update_server_regions": [ - 2668, + 2936, { "_set": [ - 2674 + 2942 ], "where": [ - 2663, + 2931, "server_regions_bool_exp!" ] } ], "update_server_regions_by_pk": [ - 2659, + 2927, { "_set": [ - 2674 + 2942 ], "pk_columns": [ - 2672, + 2940, "server_regions_pk_columns_input!" ] } ], "update_server_regions_many": [ - 2668, + 2936, { "updates": [ - 2682, + 2950, "[server_regions_updates!]!" ] } ], "update_servers": [ - 2705, + 2973, { "_inc": [ - 2699 + 2967 ], "_set": [ - 2713 + 2981 ], "where": [ - 2697, + 2965, "servers_bool_exp!" ] } ], "update_servers_by_pk": [ - 2686, + 2954, { "_inc": [ - 2699 + 2967 ], "_set": [ - 2713 + 2981 ], "pk_columns": [ - 2709, + 2977, "servers_pk_columns_input!" ] } ], "update_servers_many": [ - 2705, + 2973, { "updates": [ - 2725, + 2993, "[servers_updates!]!" ] } ], "update_settings": [ - 2740, + 3008, { "_set": [ - 2745 + 3013 ], "where": [ - 2735, + 3003, "settings_bool_exp!" ] } ], "update_settings_by_pk": [ - 2732, + 3000, { "_set": [ - 2745 + 3013 ], "pk_columns": [ - 2743, + 3011, "settings_pk_columns_input!" ] } ], "update_settings_many": [ - 2740, + 3008, { "updates": [ - 2749, + 3017, "[settings_updates!]!" ] } ], "update_steam_account_claims": [ - 2764, + 3032, { "_set": [ - 2769 + 3037 ], "where": [ - 2757, + 3025, "steam_account_claims_bool_exp!" ] } ], "update_steam_account_claims_by_pk": [ - 2750, + 3018, { "_set": [ - 2769 + 3037 ], "pk_columns": [ - 2767, + 3035, "steam_account_claims_pk_columns_input!" ] } ], "update_steam_account_claims_many": [ - 2764, + 3032, { "updates": [ - 2773, + 3041, "[steam_account_claims_updates!]!" ] } ], "update_steam_accounts": [ - 2782, + 3050, { "_set": [ - 2788 + 3056 ], "where": [ - 2777, + 3045, "steam_accounts_bool_exp!" ] } ], "update_steam_accounts_by_pk": [ - 2774, + 3042, { "_set": [ - 2788 + 3056 ], "pk_columns": [ - 2786, + 3054, "steam_accounts_pk_columns_input!" ] } ], "update_steam_accounts_many": [ - 2782, + 3050, { "updates": [ - 2792, + 3060, "[steam_accounts_updates!]!" ] } ], "update_team_invites": [ - 2810, + 3078, { "_inc": [ - 2804 + 3072 ], "_set": [ - 2815 + 3083 ], "where": [ - 2802, + 3070, "team_invites_bool_exp!" ] } ], "update_team_invites_by_pk": [ - 2793, + 3061, { "_inc": [ - 2804 + 3072 ], "_set": [ - 2815 + 3083 ], "pk_columns": [ - 2813, + 3081, "team_invites_pk_columns_input!" ] } ], "update_team_invites_many": [ - 2810, + 3078, { "updates": [ - 2827, + 3095, "[team_invites_updates!]!" ] } ], "update_team_roster": [ - 2853, + 3121, { "_inc": [ - 2847 + 3115 ], "_set": [ - 2860 + 3128 ], "where": [ - 2845, + 3113, "team_roster_bool_exp!" ] } ], "update_team_roster_by_pk": [ - 2834, + 3102, { "_inc": [ - 2847 + 3115 ], "_set": [ - 2860 + 3128 ], "pk_columns": [ - 2856, + 3124, "team_roster_pk_columns_input!" ] } ], "update_team_roster_many": [ - 2853, + 3121, { "updates": [ - 2872, + 3140, "[team_roster_updates!]!" ] } ], "update_teams": [ - 2896, + 3164, { "_inc": [ - 2890 + 3158 ], "_set": [ - 2902 + 3170 ], "where": [ - 2888, + 3156, "teams_bool_exp!" ] } ], "update_teams_by_pk": [ - 2879, + 3147, { "_inc": [ - 2890 + 3158 ], "_set": [ - 2902 + 3170 ], "pk_columns": [ - 2900, + 3168, "teams_pk_columns_input!" ] } ], "update_teams_many": [ - 2896, + 3164, { "updates": [ - 2914, + 3182, "[teams_updates!]!" ] } ], "update_tournament_brackets": [ - 2943, + 3211, { "_inc": [ - 2937 + 3205 ], "_set": [ - 2951 + 3219 ], "where": [ - 2935, + 3203, "tournament_brackets_bool_exp!" ] } ], "update_tournament_brackets_by_pk": [ - 2924, + 3192, { "_inc": [ - 2937 + 3205 ], "_set": [ - 2951 + 3219 ], "pk_columns": [ - 2947, + 3215, "tournament_brackets_pk_columns_input!" ] } ], "update_tournament_brackets_many": [ - 2943, + 3211, { "updates": [ - 2963, + 3231, "[tournament_brackets_updates!]!" ] } ], "update_tournament_organizers": [ - 2987, + 3255, { "_inc": [ - 2981 + 3249 ], "_set": [ - 2992 + 3260 ], "where": [ - 2979, + 3247, "tournament_organizers_bool_exp!" ] } ], "update_tournament_organizers_by_pk": [ - 2970, + 3238, { "_inc": [ - 2981 + 3249 ], "_set": [ - 2992 + 3260 ], "pk_columns": [ - 2990, + 3258, "tournament_organizers_pk_columns_input!" ] } ], "update_tournament_organizers_many": [ - 2987, + 3255, { "updates": [ - 3004, + 3272, "[tournament_organizers_updates!]!" ] } ], "update_tournament_stages": [ - 3034, + 3302, { "_append": [ - 3019 + 3287 ], "_delete_at_path": [ - 3025 + 3293 ], "_delete_elem": [ - 3026 + 3294 ], "_delete_key": [ - 3027 + 3295 ], "_inc": [ - 3028 + 3296 ], "_prepend": [ - 3039 + 3307 ], "_set": [ - 3043 + 3311 ], "where": [ - 3023, + 3291, "tournament_stages_bool_exp!" ] } ], "update_tournament_stages_by_pk": [ - 3011, + 3279, { "_append": [ - 3019 + 3287 ], "_delete_at_path": [ - 3025 + 3293 ], "_delete_elem": [ - 3026 + 3294 ], "_delete_key": [ - 3027 + 3295 ], "_inc": [ - 3028 + 3296 ], "_prepend": [ - 3039 + 3307 ], "_set": [ - 3043 + 3311 ], "pk_columns": [ - 3038, + 3306, "tournament_stages_pk_columns_input!" ] } ], "update_tournament_stages_many": [ - 3034, + 3302, { "updates": [ - 3055, + 3323, "[tournament_stages_updates!]!" ] } ], "update_tournament_team_invites": [ - 3079, + 3347, { "_inc": [ - 3073 + 3341 ], "_set": [ - 3084 + 3352 ], "where": [ - 3071, + 3339, "tournament_team_invites_bool_exp!" ] } ], "update_tournament_team_invites_by_pk": [ - 3062, + 3330, { "_inc": [ - 3073 + 3341 ], "_set": [ - 3084 + 3352 ], "pk_columns": [ - 3082, + 3350, "tournament_team_invites_pk_columns_input!" ] } ], "update_tournament_team_invites_many": [ - 3079, + 3347, { "updates": [ - 3096, + 3364, "[tournament_team_invites_updates!]!" ] } ], "update_tournament_team_roster": [ - 3120, + 3388, { "_inc": [ - 3114 + 3382 ], "_set": [ - 3125 + 3393 ], "where": [ - 3112, + 3380, "tournament_team_roster_bool_exp!" ] } ], "update_tournament_team_roster_by_pk": [ - 3103, + 3371, { "_inc": [ - 3114 + 3382 ], "_set": [ - 3125 + 3393 ], "pk_columns": [ - 3123, + 3391, "tournament_team_roster_pk_columns_input!" ] } ], "update_tournament_team_roster_many": [ - 3120, + 3388, { "updates": [ - 3137, + 3405, "[tournament_team_roster_updates!]!" ] } ], "update_tournament_teams": [ - 3161, + 3429, { "_inc": [ - 3155 + 3423 ], "_set": [ - 3167 + 3435 ], "where": [ - 3153, + 3421, "tournament_teams_bool_exp!" ] } ], "update_tournament_teams_by_pk": [ - 3144, + 3412, { "_inc": [ - 3155 + 3423 ], "_set": [ - 3167 + 3435 ], "pk_columns": [ - 3165, + 3433, "tournament_teams_pk_columns_input!" ] } ], "update_tournament_teams_many": [ - 3161, + 3429, { "updates": [ - 3179, + 3447, "[tournament_teams_updates!]!" ] } ], "update_tournament_trophies": [ - 3205, + 3473, { "_inc": [ - 3199 + 3467 ], "_set": [ - 3212 + 3480 ], "where": [ - 3197, + 3465, "tournament_trophies_bool_exp!" ] } ], "update_tournament_trophies_by_pk": [ - 3186, + 3454, { "_inc": [ - 3199 + 3467 ], "_set": [ - 3212 + 3480 ], "pk_columns": [ - 3208, + 3476, "tournament_trophies_pk_columns_input!" ] } ], "update_tournament_trophies_many": [ - 3205, + 3473, { "updates": [ - 3224, + 3492, "[tournament_trophies_updates!]!" ] } ], "update_tournament_trophy_configs": [ - 3248, + 3516, { "_inc": [ - 3242 + 3510 ], "_set": [ - 3254 + 3522 ], "where": [ - 3240, + 3508, "tournament_trophy_configs_bool_exp!" ] } ], "update_tournament_trophy_configs_by_pk": [ - 3231, + 3499, { "_inc": [ - 3242 + 3510 ], "_set": [ - 3254 + 3522 ], "pk_columns": [ - 3252, + 3520, "tournament_trophy_configs_pk_columns_input!" ] } ], "update_tournament_trophy_configs_many": [ - 3248, + 3516, { "updates": [ - 3266, + 3534, "[tournament_trophy_configs_updates!]!" ] } ], "update_tournaments": [ - 3292, + 3560, + { + "_inc": [ + 3554 + ], + "_set": [ + 3568 + ], + "where": [ + 3552, + "tournaments_bool_exp!" + ] + } + ], + "update_tournaments_by_pk": [ + 3541, + { + "_inc": [ + 3554 + ], + "_set": [ + 3568 + ], + "pk_columns": [ + 3564, + "tournaments_pk_columns_input!" + ] + } + ], + "update_tournaments_many": [ + 3560, + { + "updates": [ + 3580, + "[tournaments_updates!]!" + ] + } + ], + "update_v_match_captains": [ + 3616, + { + "_inc": [ + 3612 + ], + "_set": [ + 3620 + ], + "where": [ + 3611, + "v_match_captains_bool_exp!" + ] + } + ], + "update_v_match_captains_many": [ + 3616, + { + "updates": [ + 3627, + "[v_match_captains_updates!]!" + ] + } + ], + "update_v_match_map_backup_rounds": [ + 3727, + { + "_inc": [ + 3723 + ], + "_set": [ + 3730 + ], + "where": [ + 3722, + "v_match_map_backup_rounds_bool_exp!" + ] + } + ], + "update_v_match_map_backup_rounds_many": [ + 3727, + { + "updates": [ + 3737, + "[v_match_map_backup_rounds_updates!]!" + ] + } + ], + "update_v_player_match_map_hltv": [ + 3949, + { + "_inc": [ + 3943 + ], + "_set": [ + 3952 + ], + "where": [ + 3942, + "v_player_match_map_hltv_bool_exp!" + ] + } + ], + "update_v_player_match_map_hltv_many": [ + 3949, + { + "updates": [ + 3963, + "[v_player_match_map_hltv_updates!]!" + ] + } + ], + "update_v_pool_maps": [ + 4108, + { + "_set": [ + 4113 + ], + "where": [ + 4102, + "v_pool_maps_bool_exp!" + ] + } + ], + "update_v_pool_maps_many": [ + 4108, + { + "updates": [ + 4116, + "[v_pool_maps_updates!]!" + ] + } + ], + "update_v_team_stage_results": [ + 4162, + { + "_inc": [ + 4156 + ], + "_set": [ + 4176 + ], + "where": [ + 4154, + "v_team_stage_results_bool_exp!" + ] + } + ], + "update_v_team_stage_results_by_pk": [ + 4135, { "_inc": [ - 3286 + 4156 ], "_set": [ - 3300 + 4176 + ], + "pk_columns": [ + 4166, + "v_team_stage_results_pk_columns_input!" + ] + } + ], + "update_v_team_stage_results_many": [ + 4162, + { + "updates": [ + 4188, + "[v_team_stage_results_updates!]!" + ] + } + ], + "validateGamedata": [ + 66, + { + "game_server_node_id": [ + 3587, + "uuid!" + ] + } + ], + "watchDemo": [ + 75, + { + "match_map_demo_id": [ + 3587 + ], + "match_map_id": [ + 3587, + "uuid!" + ] + } + ], + "writeServerFile": [ + 66, + { + "content": [ + 63, + "String!" + ], + "file_path": [ + 63, + "String!" + ], + "node_id": [ + 63, + "String!" + ], + "server_id": [ + 63 + ] + } + ], + "__typename": [ + 63 + ] + }, + "Subscription": { + "_map_pool": [ + 76, + { + "distinct_on": [ + 88, + "[_map_pool_select_column!]" + ], + "limit": [ + 34 + ], + "offset": [ + 34 + ], + "order_by": [ + 86, + "[_map_pool_order_by!]" + ], + "where": [ + 79 + ] + } + ], + "_map_pool_aggregate": [ + 77, + { + "distinct_on": [ + 88, + "[_map_pool_select_column!]" + ], + "limit": [ + 34 + ], + "offset": [ + 34 + ], + "order_by": [ + 86, + "[_map_pool_order_by!]" + ], + "where": [ + 79 + ] + } + ], + "_map_pool_by_pk": [ + 76, + { + "map_id": [ + 3587, + "uuid!" + ], + "map_pool_id": [ + 3587, + "uuid!" + ] + } + ], + "_map_pool_stream": [ + 76, + { + "batch_size": [ + 34, + "Int!" + ], + "cursor": [ + 90, + "[_map_pool_stream_cursor_input]!" + ], + "where": [ + 79 + ] + } + ], + "abandoned_matches": [ + 94, + { + "distinct_on": [ + 115, + "[abandoned_matches_select_column!]" + ], + "limit": [ + 34 + ], + "offset": [ + 34 + ], + "order_by": [ + 113, + "[abandoned_matches_order_by!]" + ], + "where": [ + 103 + ] + } + ], + "abandoned_matches_aggregate": [ + 95, + { + "distinct_on": [ + 115, + "[abandoned_matches_select_column!]" + ], + "limit": [ + 34 + ], + "offset": [ + 34 + ], + "order_by": [ + 113, + "[abandoned_matches_order_by!]" + ], + "where": [ + 103 + ] + } + ], + "abandoned_matches_by_pk": [ + 94, + { + "id": [ + 3587, + "uuid!" + ] + } + ], + "abandoned_matches_stream": [ + 94, + { + "batch_size": [ + 34, + "Int!" + ], + "cursor": [ + 123, + "[abandoned_matches_stream_cursor_input]!" + ], + "where": [ + 103 + ] + } + ], + "api_keys": [ + 135, + { + "distinct_on": [ + 149, + "[api_keys_select_column!]" + ], + "limit": [ + 34 + ], + "offset": [ + 34 + ], + "order_by": [ + 147, + "[api_keys_order_by!]" + ], + "where": [ + 139 + ] + } + ], + "api_keys_aggregate": [ + 136, + { + "distinct_on": [ + 149, + "[api_keys_select_column!]" + ], + "limit": [ + 34 + ], + "offset": [ + 34 + ], + "order_by": [ + 147, + "[api_keys_order_by!]" + ], + "where": [ + 139 + ] + } + ], + "api_keys_by_pk": [ + 135, + { + "id": [ + 3587, + "uuid!" + ] + } + ], + "api_keys_stream": [ + 135, + { + "batch_size": [ + 34, + "Int!" + ], + "cursor": [ + 154, + "[api_keys_stream_cursor_input]!" + ], + "where": [ + 139 + ] + } + ], + "clip_render_jobs": [ + 166, + { + "distinct_on": [ + 194, + "[clip_render_jobs_select_column!]" + ], + "limit": [ + 34 + ], + "offset": [ + 34 + ], + "order_by": [ + 191, + "[clip_render_jobs_order_by!]" + ], + "where": [ + 178 + ] + } + ], + "clip_render_jobs_aggregate": [ + 167, + { + "distinct_on": [ + 194, + "[clip_render_jobs_select_column!]" + ], + "limit": [ + 34 + ], + "offset": [ + 34 + ], + "order_by": [ + 191, + "[clip_render_jobs_order_by!]" + ], + "where": [ + 178 + ] + } + ], + "clip_render_jobs_by_pk": [ + 166, + { + "id": [ + 3587, + "uuid!" + ] + } + ], + "clip_render_jobs_stream": [ + 166, + { + "batch_size": [ + 34, + "Int!" + ], + "cursor": [ + 204, + "[clip_render_jobs_stream_cursor_input]!" + ], + "where": [ + 178 + ] + } + ], + "db_backups": [ + 217, + { + "distinct_on": [ + 231, + "[db_backups_select_column!]" + ], + "limit": [ + 34 + ], + "offset": [ + 34 + ], + "order_by": [ + 229, + "[db_backups_order_by!]" ], "where": [ - 3284, - "tournaments_bool_exp!" + 221 ] } ], - "update_tournaments_by_pk": [ - 3273, + "db_backups_aggregate": [ + 218, { - "_inc": [ - 3286 + "distinct_on": [ + 231, + "[db_backups_select_column!]" ], - "_set": [ - 3300 + "limit": [ + 34 ], - "pk_columns": [ - 3296, - "tournaments_pk_columns_input!" + "offset": [ + 34 + ], + "order_by": [ + 229, + "[db_backups_order_by!]" + ], + "where": [ + 221 ] } ], - "update_tournaments_many": [ - 3292, + "db_backups_by_pk": [ + 217, { - "updates": [ - 3312, - "[tournaments_updates!]!" + "id": [ + 3587, + "uuid!" ] } ], - "update_v_match_captains": [ - 3348, + "db_backups_stream": [ + 217, { - "_inc": [ - 3344 + "batch_size": [ + 34, + "Int!" ], - "_set": [ - 3352 + "cursor": [ + 236, + "[db_backups_stream_cursor_input]!" ], "where": [ - 3343, - "v_match_captains_bool_exp!" + 221 ] } ], - "update_v_match_captains_many": [ - 3348, + "draft_game_picks": [ + 244, { - "updates": [ - 3359, - "[v_match_captains_updates!]!" + "distinct_on": [ + 267, + "[draft_game_picks_select_column!]" + ], + "limit": [ + 34 + ], + "offset": [ + 34 + ], + "order_by": [ + 265, + "[draft_game_picks_order_by!]" + ], + "where": [ + 255 ] } ], - "update_v_match_map_backup_rounds": [ - 3459, + "draft_game_picks_aggregate": [ + 245, { - "_inc": [ - 3455 + "distinct_on": [ + 267, + "[draft_game_picks_select_column!]" ], - "_set": [ - 3462 + "limit": [ + 34 + ], + "offset": [ + 34 + ], + "order_by": [ + 265, + "[draft_game_picks_order_by!]" ], "where": [ - 3454, - "v_match_map_backup_rounds_bool_exp!" + 255 ] } ], - "update_v_match_map_backup_rounds_many": [ - 3459, + "draft_game_picks_by_pk": [ + 244, { - "updates": [ - 3469, - "[v_match_map_backup_rounds_updates!]!" + "id": [ + 3587, + "uuid!" ] } ], - "update_v_player_match_map_hltv": [ - 3681, + "draft_game_picks_stream": [ + 244, { - "_inc": [ - 3675 + "batch_size": [ + 34, + "Int!" ], - "_set": [ - 3684 + "cursor": [ + 277, + "[draft_game_picks_stream_cursor_input]!" ], "where": [ - 3674, - "v_player_match_map_hltv_bool_exp!" + 255 ] } ], - "update_v_player_match_map_hltv_many": [ - 3681, + "draft_game_players": [ + 289, { - "updates": [ - 3695, - "[v_player_match_map_hltv_updates!]!" + "distinct_on": [ + 312, + "[draft_game_players_select_column!]" + ], + "limit": [ + 34 + ], + "offset": [ + 34 + ], + "order_by": [ + 310, + "[draft_game_players_order_by!]" + ], + "where": [ + 300 ] } ], - "update_v_pool_maps": [ - 3840, + "draft_game_players_aggregate": [ + 290, { - "_set": [ - 3845 + "distinct_on": [ + 312, + "[draft_game_players_select_column!]" + ], + "limit": [ + 34 + ], + "offset": [ + 34 + ], + "order_by": [ + 310, + "[draft_game_players_order_by!]" ], "where": [ - 3834, - "v_pool_maps_bool_exp!" + 300 ] } ], - "update_v_pool_maps_many": [ - 3840, + "draft_game_players_by_pk": [ + 289, { - "updates": [ - 3848, - "[v_pool_maps_updates!]!" + "draft_game_id": [ + 3587, + "uuid!" + ], + "steam_id": [ + 162, + "bigint!" ] } ], - "update_v_team_stage_results": [ - 3894, + "draft_game_players_stream": [ + 289, { - "_inc": [ - 3888 + "batch_size": [ + 34, + "Int!" ], - "_set": [ - 3908 + "cursor": [ + 322, + "[draft_game_players_stream_cursor_input]!" ], "where": [ - 3886, - "v_team_stage_results_bool_exp!" + 300 ] } ], - "update_v_team_stage_results_by_pk": [ - 3867, + "draft_games": [ + 334, { - "_inc": [ - 3888 + "distinct_on": [ + 358, + "[draft_games_select_column!]" ], - "_set": [ - 3908 + "limit": [ + 34 ], - "pk_columns": [ - 3898, - "v_team_stage_results_pk_columns_input!" - ] - } - ], - "update_v_team_stage_results_many": [ - 3894, - { - "updates": [ - 3920, - "[v_team_stage_results_updates!]!" + "offset": [ + 34 + ], + "order_by": [ + 356, + "[draft_games_order_by!]" + ], + "where": [ + 345 ] } ], - "validateGamedata": [ - 66, + "draft_games_aggregate": [ + 335, { - "game_server_node_id": [ - 3319, - "uuid!" + "distinct_on": [ + 358, + "[draft_games_select_column!]" + ], + "limit": [ + 34 + ], + "offset": [ + 34 + ], + "order_by": [ + 356, + "[draft_games_order_by!]" + ], + "where": [ + 345 ] } ], - "watchDemo": [ - 75, + "draft_games_by_pk": [ + 334, { - "match_map_demo_id": [ - 3319 - ], - "match_map_id": [ - 3319, + "id": [ + 3587, "uuid!" ] } ], - "writeServerFile": [ - 66, + "draft_games_stream": [ + 334, { - "content": [ - 63, - "String!" - ], - "file_path": [ - 63, - "String!" + "batch_size": [ + 34, + "Int!" ], - "node_id": [ - 63, - "String!" + "cursor": [ + 368, + "[draft_games_stream_cursor_input]!" ], - "server_id": [ - 63 + "where": [ + 345 ] } ], - "__typename": [ - 63 - ] - }, - "Subscription": { - "_map_pool": [ - 76, + "e_check_in_settings": [ + 380, { "distinct_on": [ - 88, - "[_map_pool_select_column!]" + 394, + "[e_check_in_settings_select_column!]" ], "limit": [ 34 @@ -115710,20 +122403,20 @@ export default { 34 ], "order_by": [ - 86, - "[_map_pool_order_by!]" + 392, + "[e_check_in_settings_order_by!]" ], "where": [ - 79 + 383 ] } ], - "_map_pool_aggregate": [ - 77, + "e_check_in_settings_aggregate": [ + 381, { "distinct_on": [ - 88, - "[_map_pool_select_column!]" + 394, + "[e_check_in_settings_select_column!]" ], "limit": [ 34 @@ -115732,49 +122425,45 @@ export default { 34 ], "order_by": [ - 86, - "[_map_pool_order_by!]" + 392, + "[e_check_in_settings_order_by!]" ], "where": [ - 79 + 383 ] } ], - "_map_pool_by_pk": [ - 76, + "e_check_in_settings_by_pk": [ + 380, { - "map_id": [ - 3319, - "uuid!" - ], - "map_pool_id": [ - 3319, - "uuid!" + "value": [ + 63, + "String!" ] } ], - "_map_pool_stream": [ - 76, + "e_check_in_settings_stream": [ + 380, { "batch_size": [ 34, "Int!" ], "cursor": [ - 90, - "[_map_pool_stream_cursor_input]!" + 396, + "[e_check_in_settings_stream_cursor_input]!" ], "where": [ - 79 + 383 ] } ], - "abandoned_matches": [ - 94, + "e_draft_game_captain_selection": [ + 400, { "distinct_on": [ - 115, - "[abandoned_matches_select_column!]" + 415, + "[e_draft_game_captain_selection_select_column!]" ], "limit": [ 34 @@ -115783,20 +122472,20 @@ export default { 34 ], "order_by": [ - 113, - "[abandoned_matches_order_by!]" + 413, + "[e_draft_game_captain_selection_order_by!]" ], "where": [ - 103 + 403 ] } ], - "abandoned_matches_aggregate": [ - 95, + "e_draft_game_captain_selection_aggregate": [ + 401, { "distinct_on": [ - 115, - "[abandoned_matches_select_column!]" + 415, + "[e_draft_game_captain_selection_select_column!]" ], "limit": [ 34 @@ -115805,45 +122494,45 @@ export default { 34 ], "order_by": [ - 113, - "[abandoned_matches_order_by!]" + 413, + "[e_draft_game_captain_selection_order_by!]" ], "where": [ - 103 + 403 ] } ], - "abandoned_matches_by_pk": [ - 94, + "e_draft_game_captain_selection_by_pk": [ + 400, { - "id": [ - 3319, - "uuid!" + "value": [ + 63, + "String!" ] } ], - "abandoned_matches_stream": [ - 94, + "e_draft_game_captain_selection_stream": [ + 400, { "batch_size": [ 34, "Int!" ], "cursor": [ - 123, - "[abandoned_matches_stream_cursor_input]!" + 417, + "[e_draft_game_captain_selection_stream_cursor_input]!" ], "where": [ - 103 + 403 ] } ], - "api_keys": [ - 135, + "e_draft_game_draft_order": [ + 421, { "distinct_on": [ - 149, - "[api_keys_select_column!]" + 436, + "[e_draft_game_draft_order_select_column!]" ], "limit": [ 34 @@ -115852,20 +122541,20 @@ export default { 34 ], "order_by": [ - 147, - "[api_keys_order_by!]" + 434, + "[e_draft_game_draft_order_order_by!]" ], "where": [ - 139 + 424 ] } ], - "api_keys_aggregate": [ - 136, + "e_draft_game_draft_order_aggregate": [ + 422, { "distinct_on": [ - 149, - "[api_keys_select_column!]" + 436, + "[e_draft_game_draft_order_select_column!]" ], "limit": [ 34 @@ -115874,45 +122563,45 @@ export default { 34 ], "order_by": [ - 147, - "[api_keys_order_by!]" + 434, + "[e_draft_game_draft_order_order_by!]" ], "where": [ - 139 + 424 ] } ], - "api_keys_by_pk": [ - 135, + "e_draft_game_draft_order_by_pk": [ + 421, { - "id": [ - 3319, - "uuid!" + "value": [ + 63, + "String!" ] } ], - "api_keys_stream": [ - 135, + "e_draft_game_draft_order_stream": [ + 421, { "batch_size": [ 34, "Int!" ], "cursor": [ - 154, - "[api_keys_stream_cursor_input]!" + 438, + "[e_draft_game_draft_order_stream_cursor_input]!" ], "where": [ - 139 + 424 ] } ], - "clip_render_jobs": [ - 166, + "e_draft_game_mode": [ + 442, { "distinct_on": [ - 194, - "[clip_render_jobs_select_column!]" + 457, + "[e_draft_game_mode_select_column!]" ], "limit": [ 34 @@ -115921,20 +122610,20 @@ export default { 34 ], "order_by": [ - 191, - "[clip_render_jobs_order_by!]" + 455, + "[e_draft_game_mode_order_by!]" ], "where": [ - 178 + 445 ] } ], - "clip_render_jobs_aggregate": [ - 167, + "e_draft_game_mode_aggregate": [ + 443, { "distinct_on": [ - 194, - "[clip_render_jobs_select_column!]" + 457, + "[e_draft_game_mode_select_column!]" ], "limit": [ 34 @@ -115943,45 +122632,45 @@ export default { 34 ], "order_by": [ - 191, - "[clip_render_jobs_order_by!]" + 455, + "[e_draft_game_mode_order_by!]" ], "where": [ - 178 + 445 ] } ], - "clip_render_jobs_by_pk": [ - 166, + "e_draft_game_mode_by_pk": [ + 442, { - "id": [ - 3319, - "uuid!" + "value": [ + 63, + "String!" ] } ], - "clip_render_jobs_stream": [ - 166, + "e_draft_game_mode_stream": [ + 442, { "batch_size": [ 34, "Int!" ], "cursor": [ - 204, - "[clip_render_jobs_stream_cursor_input]!" + 459, + "[e_draft_game_mode_stream_cursor_input]!" ], "where": [ - 178 + 445 ] } ], - "db_backups": [ - 217, + "e_draft_game_player_status": [ + 463, { "distinct_on": [ - 231, - "[db_backups_select_column!]" + 478, + "[e_draft_game_player_status_select_column!]" ], "limit": [ 34 @@ -115990,20 +122679,20 @@ export default { 34 ], "order_by": [ - 229, - "[db_backups_order_by!]" + 476, + "[e_draft_game_player_status_order_by!]" ], "where": [ - 221 + 466 ] } ], - "db_backups_aggregate": [ - 218, + "e_draft_game_player_status_aggregate": [ + 464, { "distinct_on": [ - 231, - "[db_backups_select_column!]" + 478, + "[e_draft_game_player_status_select_column!]" ], "limit": [ 34 @@ -116012,45 +122701,45 @@ export default { 34 ], "order_by": [ - 229, - "[db_backups_order_by!]" + 476, + "[e_draft_game_player_status_order_by!]" ], "where": [ - 221 + 466 ] } ], - "db_backups_by_pk": [ - 217, + "e_draft_game_player_status_by_pk": [ + 463, { - "id": [ - 3319, - "uuid!" + "value": [ + 63, + "String!" ] } ], - "db_backups_stream": [ - 217, + "e_draft_game_player_status_stream": [ + 463, { "batch_size": [ 34, "Int!" ], "cursor": [ - 236, - "[db_backups_stream_cursor_input]!" + 480, + "[e_draft_game_player_status_stream_cursor_input]!" ], "where": [ - 221 + 466 ] } ], - "e_check_in_settings": [ - 244, + "e_draft_game_status": [ + 484, { "distinct_on": [ - 258, - "[e_check_in_settings_select_column!]" + 499, + "[e_draft_game_status_select_column!]" ], "limit": [ 34 @@ -116059,20 +122748,20 @@ export default { 34 ], "order_by": [ - 256, - "[e_check_in_settings_order_by!]" + 497, + "[e_draft_game_status_order_by!]" ], "where": [ - 247 + 487 ] } ], - "e_check_in_settings_aggregate": [ - 245, + "e_draft_game_status_aggregate": [ + 485, { "distinct_on": [ - 258, - "[e_check_in_settings_select_column!]" + 499, + "[e_draft_game_status_select_column!]" ], "limit": [ 34 @@ -116081,16 +122770,16 @@ export default { 34 ], "order_by": [ - 256, - "[e_check_in_settings_order_by!]" + 497, + "[e_draft_game_status_order_by!]" ], "where": [ - 247 + 487 ] } ], - "e_check_in_settings_by_pk": [ - 244, + "e_draft_game_status_by_pk": [ + 484, { "value": [ 63, @@ -116098,27 +122787,27 @@ export default { ] } ], - "e_check_in_settings_stream": [ - 244, + "e_draft_game_status_stream": [ + 484, { "batch_size": [ 34, "Int!" ], "cursor": [ - 260, - "[e_check_in_settings_stream_cursor_input]!" + 501, + "[e_draft_game_status_stream_cursor_input]!" ], "where": [ - 247 + 487 ] } ], "e_friend_status": [ - 264, + 505, { "distinct_on": [ - 279, + 520, "[e_friend_status_select_column!]" ], "limit": [ @@ -116128,19 +122817,19 @@ export default { 34 ], "order_by": [ - 277, + 518, "[e_friend_status_order_by!]" ], "where": [ - 267 + 508 ] } ], "e_friend_status_aggregate": [ - 265, + 506, { "distinct_on": [ - 279, + 520, "[e_friend_status_select_column!]" ], "limit": [ @@ -116150,16 +122839,16 @@ export default { 34 ], "order_by": [ - 277, + 518, "[e_friend_status_order_by!]" ], "where": [ - 267 + 508 ] } ], "e_friend_status_by_pk": [ - 264, + 505, { "value": [ 63, @@ -116168,26 +122857,26 @@ export default { } ], "e_friend_status_stream": [ - 264, + 505, { "batch_size": [ 34, "Int!" ], "cursor": [ - 281, + 522, "[e_friend_status_stream_cursor_input]!" ], "where": [ - 267 + 508 ] } ], "e_game_cfg_types": [ - 285, + 526, { "distinct_on": [ - 299, + 540, "[e_game_cfg_types_select_column!]" ], "limit": [ @@ -116197,19 +122886,19 @@ export default { 34 ], "order_by": [ - 297, + 538, "[e_game_cfg_types_order_by!]" ], "where": [ - 288 + 529 ] } ], "e_game_cfg_types_aggregate": [ - 286, + 527, { "distinct_on": [ - 299, + 540, "[e_game_cfg_types_select_column!]" ], "limit": [ @@ -116219,16 +122908,16 @@ export default { 34 ], "order_by": [ - 297, + 538, "[e_game_cfg_types_order_by!]" ], "where": [ - 288 + 529 ] } ], "e_game_cfg_types_by_pk": [ - 285, + 526, { "value": [ 63, @@ -116237,26 +122926,26 @@ export default { } ], "e_game_cfg_types_stream": [ - 285, + 526, { "batch_size": [ 34, "Int!" ], "cursor": [ - 301, + 542, "[e_game_cfg_types_stream_cursor_input]!" ], "where": [ - 288 + 529 ] } ], "e_game_server_node_statuses": [ - 305, + 546, { "distinct_on": [ - 320, + 561, "[e_game_server_node_statuses_select_column!]" ], "limit": [ @@ -116266,19 +122955,19 @@ export default { 34 ], "order_by": [ - 318, + 559, "[e_game_server_node_statuses_order_by!]" ], "where": [ - 308 + 549 ] } ], "e_game_server_node_statuses_aggregate": [ - 306, + 547, { "distinct_on": [ - 320, + 561, "[e_game_server_node_statuses_select_column!]" ], "limit": [ @@ -116288,16 +122977,16 @@ export default { 34 ], "order_by": [ - 318, + 559, "[e_game_server_node_statuses_order_by!]" ], "where": [ - 308 + 549 ] } ], "e_game_server_node_statuses_by_pk": [ - 305, + 546, { "value": [ 63, @@ -116306,26 +122995,26 @@ export default { } ], "e_game_server_node_statuses_stream": [ - 305, + 546, { "batch_size": [ 34, "Int!" ], "cursor": [ - 322, + 563, "[e_game_server_node_statuses_stream_cursor_input]!" ], "where": [ - 308 + 549 ] } ], "e_lobby_access": [ - 326, + 567, { "distinct_on": [ - 341, + 582, "[e_lobby_access_select_column!]" ], "limit": [ @@ -116335,19 +123024,19 @@ export default { 34 ], "order_by": [ - 339, + 580, "[e_lobby_access_order_by!]" ], "where": [ - 329 + 570 ] } ], "e_lobby_access_aggregate": [ - 327, + 568, { "distinct_on": [ - 341, + 582, "[e_lobby_access_select_column!]" ], "limit": [ @@ -116357,16 +123046,16 @@ export default { 34 ], "order_by": [ - 339, + 580, "[e_lobby_access_order_by!]" ], "where": [ - 329 + 570 ] } ], "e_lobby_access_by_pk": [ - 326, + 567, { "value": [ 63, @@ -116375,26 +123064,26 @@ export default { } ], "e_lobby_access_stream": [ - 326, + 567, { "batch_size": [ 34, "Int!" ], "cursor": [ - 343, + 584, "[e_lobby_access_stream_cursor_input]!" ], "where": [ - 329 + 570 ] } ], "e_lobby_player_status": [ - 347, + 588, { "distinct_on": [ - 361, + 602, "[e_lobby_player_status_select_column!]" ], "limit": [ @@ -116404,19 +123093,19 @@ export default { 34 ], "order_by": [ - 359, + 600, "[e_lobby_player_status_order_by!]" ], "where": [ - 350 + 591 ] } ], "e_lobby_player_status_aggregate": [ - 348, + 589, { "distinct_on": [ - 361, + 602, "[e_lobby_player_status_select_column!]" ], "limit": [ @@ -116426,16 +123115,16 @@ export default { 34 ], "order_by": [ - 359, + 600, "[e_lobby_player_status_order_by!]" ], "where": [ - 350 + 591 ] } ], "e_lobby_player_status_by_pk": [ - 347, + 588, { "value": [ 63, @@ -116444,26 +123133,26 @@ export default { } ], "e_lobby_player_status_stream": [ - 347, + 588, { "batch_size": [ 34, "Int!" ], "cursor": [ - 363, + 604, "[e_lobby_player_status_stream_cursor_input]!" ], "where": [ - 350 + 591 ] } ], "e_map_pool_types": [ - 367, + 608, { "distinct_on": [ - 382, + 623, "[e_map_pool_types_select_column!]" ], "limit": [ @@ -116473,19 +123162,19 @@ export default { 34 ], "order_by": [ - 380, + 621, "[e_map_pool_types_order_by!]" ], "where": [ - 370 + 611 ] } ], "e_map_pool_types_aggregate": [ - 368, + 609, { "distinct_on": [ - 382, + 623, "[e_map_pool_types_select_column!]" ], "limit": [ @@ -116495,16 +123184,16 @@ export default { 34 ], "order_by": [ - 380, + 621, "[e_map_pool_types_order_by!]" ], "where": [ - 370 + 611 ] } ], "e_map_pool_types_by_pk": [ - 367, + 608, { "value": [ 63, @@ -116513,26 +123202,26 @@ export default { } ], "e_map_pool_types_stream": [ - 367, + 608, { "batch_size": [ 34, "Int!" ], "cursor": [ - 384, + 625, "[e_map_pool_types_stream_cursor_input]!" ], "where": [ - 370 + 611 ] } ], "e_match_clip_visibility": [ - 388, + 629, { "distinct_on": [ - 402, + 643, "[e_match_clip_visibility_select_column!]" ], "limit": [ @@ -116542,19 +123231,19 @@ export default { 34 ], "order_by": [ - 400, + 641, "[e_match_clip_visibility_order_by!]" ], "where": [ - 391 + 632 ] } ], "e_match_clip_visibility_aggregate": [ - 389, + 630, { "distinct_on": [ - 402, + 643, "[e_match_clip_visibility_select_column!]" ], "limit": [ @@ -116564,16 +123253,16 @@ export default { 34 ], "order_by": [ - 400, + 641, "[e_match_clip_visibility_order_by!]" ], "where": [ - 391 + 632 ] } ], "e_match_clip_visibility_by_pk": [ - 388, + 629, { "value": [ 63, @@ -116582,26 +123271,26 @@ export default { } ], "e_match_clip_visibility_stream": [ - 388, + 629, { "batch_size": [ 34, "Int!" ], "cursor": [ - 404, + 645, "[e_match_clip_visibility_stream_cursor_input]!" ], "where": [ - 391 + 632 ] } ], "e_match_map_status": [ - 408, + 649, { "distinct_on": [ - 423, + 664, "[e_match_map_status_select_column!]" ], "limit": [ @@ -116611,19 +123300,19 @@ export default { 34 ], "order_by": [ - 421, + 662, "[e_match_map_status_order_by!]" ], "where": [ - 411 + 652 ] } ], "e_match_map_status_aggregate": [ - 409, + 650, { "distinct_on": [ - 423, + 664, "[e_match_map_status_select_column!]" ], "limit": [ @@ -116633,16 +123322,16 @@ export default { 34 ], "order_by": [ - 421, + 662, "[e_match_map_status_order_by!]" ], "where": [ - 411 + 652 ] } ], "e_match_map_status_by_pk": [ - 408, + 649, { "value": [ 63, @@ -116651,26 +123340,26 @@ export default { } ], "e_match_map_status_stream": [ - 408, + 649, { "batch_size": [ 34, "Int!" ], "cursor": [ - 425, + 666, "[e_match_map_status_stream_cursor_input]!" ], "where": [ - 411 + 652 ] } ], "e_match_mode": [ - 429, + 670, { "distinct_on": [ - 443, + 684, "[e_match_mode_select_column!]" ], "limit": [ @@ -116680,19 +123369,19 @@ export default { 34 ], "order_by": [ - 441, + 682, "[e_match_mode_order_by!]" ], "where": [ - 432 + 673 ] } ], "e_match_mode_aggregate": [ - 430, + 671, { "distinct_on": [ - 443, + 684, "[e_match_mode_select_column!]" ], "limit": [ @@ -116702,16 +123391,16 @@ export default { 34 ], "order_by": [ - 441, + 682, "[e_match_mode_order_by!]" ], "where": [ - 432 + 673 ] } ], "e_match_mode_by_pk": [ - 429, + 670, { "value": [ 63, @@ -116720,26 +123409,26 @@ export default { } ], "e_match_mode_stream": [ - 429, + 670, { "batch_size": [ 34, "Int!" ], "cursor": [ - 445, + 686, "[e_match_mode_stream_cursor_input]!" ], "where": [ - 432 + 673 ] } ], "e_match_status": [ - 449, + 690, { "distinct_on": [ - 464, + 705, "[e_match_status_select_column!]" ], "limit": [ @@ -116749,19 +123438,19 @@ export default { 34 ], "order_by": [ - 462, + 703, "[e_match_status_order_by!]" ], "where": [ - 452 + 693 ] } ], "e_match_status_aggregate": [ - 450, + 691, { "distinct_on": [ - 464, + 705, "[e_match_status_select_column!]" ], "limit": [ @@ -116771,16 +123460,16 @@ export default { 34 ], "order_by": [ - 462, + 703, "[e_match_status_order_by!]" ], "where": [ - 452 + 693 ] } ], "e_match_status_by_pk": [ - 449, + 690, { "value": [ 63, @@ -116789,26 +123478,26 @@ export default { } ], "e_match_status_stream": [ - 449, + 690, { "batch_size": [ 34, "Int!" ], "cursor": [ - 466, + 707, "[e_match_status_stream_cursor_input]!" ], "where": [ - 452 + 693 ] } ], "e_match_types": [ - 470, + 711, { "distinct_on": [ - 485, + 726, "[e_match_types_select_column!]" ], "limit": [ @@ -116818,19 +123507,19 @@ export default { 34 ], "order_by": [ - 483, + 724, "[e_match_types_order_by!]" ], "where": [ - 473 + 714 ] } ], "e_match_types_aggregate": [ - 471, + 712, { "distinct_on": [ - 485, + 726, "[e_match_types_select_column!]" ], "limit": [ @@ -116840,16 +123529,16 @@ export default { 34 ], "order_by": [ - 483, + 724, "[e_match_types_order_by!]" ], "where": [ - 473 + 714 ] } ], "e_match_types_by_pk": [ - 470, + 711, { "value": [ 63, @@ -116858,26 +123547,26 @@ export default { } ], "e_match_types_stream": [ - 470, + 711, { "batch_size": [ 34, "Int!" ], "cursor": [ - 487, + 728, "[e_match_types_stream_cursor_input]!" ], "where": [ - 473 + 714 ] } ], "e_notification_types": [ - 491, + 732, { "distinct_on": [ - 505, + 746, "[e_notification_types_select_column!]" ], "limit": [ @@ -116887,19 +123576,19 @@ export default { 34 ], "order_by": [ - 503, + 744, "[e_notification_types_order_by!]" ], "where": [ - 494 + 735 ] } ], "e_notification_types_aggregate": [ - 492, + 733, { "distinct_on": [ - 505, + 746, "[e_notification_types_select_column!]" ], "limit": [ @@ -116909,16 +123598,16 @@ export default { 34 ], "order_by": [ - 503, + 744, "[e_notification_types_order_by!]" ], "where": [ - 494 + 735 ] } ], "e_notification_types_by_pk": [ - 491, + 732, { "value": [ 63, @@ -116927,26 +123616,26 @@ export default { } ], "e_notification_types_stream": [ - 491, + 732, { "batch_size": [ 34, "Int!" ], "cursor": [ - 507, + 748, "[e_notification_types_stream_cursor_input]!" ], "where": [ - 494 + 735 ] } ], "e_objective_types": [ - 511, + 752, { "distinct_on": [ - 525, + 766, "[e_objective_types_select_column!]" ], "limit": [ @@ -116956,19 +123645,19 @@ export default { 34 ], "order_by": [ - 523, + 764, "[e_objective_types_order_by!]" ], "where": [ - 514 + 755 ] } ], "e_objective_types_aggregate": [ - 512, + 753, { "distinct_on": [ - 525, + 766, "[e_objective_types_select_column!]" ], "limit": [ @@ -116978,16 +123667,16 @@ export default { 34 ], "order_by": [ - 523, + 764, "[e_objective_types_order_by!]" ], "where": [ - 514 + 755 ] } ], "e_objective_types_by_pk": [ - 511, + 752, { "value": [ 63, @@ -116996,26 +123685,26 @@ export default { } ], "e_objective_types_stream": [ - 511, + 752, { "batch_size": [ 34, "Int!" ], "cursor": [ - 527, + 768, "[e_objective_types_stream_cursor_input]!" ], "where": [ - 514 + 755 ] } ], "e_player_roles": [ - 531, + 772, { "distinct_on": [ - 545, + 786, "[e_player_roles_select_column!]" ], "limit": [ @@ -117025,19 +123714,19 @@ export default { 34 ], "order_by": [ - 543, + 784, "[e_player_roles_order_by!]" ], "where": [ - 534 + 775 ] } ], "e_player_roles_aggregate": [ - 532, + 773, { "distinct_on": [ - 545, + 786, "[e_player_roles_select_column!]" ], "limit": [ @@ -117047,16 +123736,16 @@ export default { 34 ], "order_by": [ - 543, + 784, "[e_player_roles_order_by!]" ], "where": [ - 534 + 775 ] } ], "e_player_roles_by_pk": [ - 531, + 772, { "value": [ 63, @@ -117065,26 +123754,26 @@ export default { } ], "e_player_roles_stream": [ - 531, + 772, { "batch_size": [ 34, "Int!" ], "cursor": [ - 547, + 788, "[e_player_roles_stream_cursor_input]!" ], "where": [ - 534 + 775 ] } ], "e_ready_settings": [ - 551, + 792, { "distinct_on": [ - 565, + 806, "[e_ready_settings_select_column!]" ], "limit": [ @@ -117094,19 +123783,19 @@ export default { 34 ], "order_by": [ - 563, + 804, "[e_ready_settings_order_by!]" ], "where": [ - 554 + 795 ] } ], "e_ready_settings_aggregate": [ - 552, + 793, { "distinct_on": [ - 565, + 806, "[e_ready_settings_select_column!]" ], "limit": [ @@ -117116,16 +123805,16 @@ export default { 34 ], "order_by": [ - 563, + 804, "[e_ready_settings_order_by!]" ], "where": [ - 554 + 795 ] } ], "e_ready_settings_by_pk": [ - 551, + 792, { "value": [ 63, @@ -117134,26 +123823,26 @@ export default { } ], "e_ready_settings_stream": [ - 551, + 792, { "batch_size": [ 34, "Int!" ], "cursor": [ - 567, + 808, "[e_ready_settings_stream_cursor_input]!" ], "where": [ - 554 + 795 ] } ], "e_sanction_types": [ - 571, + 812, { "distinct_on": [ - 586, + 827, "[e_sanction_types_select_column!]" ], "limit": [ @@ -117163,19 +123852,19 @@ export default { 34 ], "order_by": [ - 584, + 825, "[e_sanction_types_order_by!]" ], "where": [ - 574 + 815 ] } ], "e_sanction_types_aggregate": [ - 572, + 813, { "distinct_on": [ - 586, + 827, "[e_sanction_types_select_column!]" ], "limit": [ @@ -117185,16 +123874,16 @@ export default { 34 ], "order_by": [ - 584, + 825, "[e_sanction_types_order_by!]" ], "where": [ - 574 + 815 ] } ], "e_sanction_types_by_pk": [ - 571, + 812, { "value": [ 63, @@ -117203,26 +123892,26 @@ export default { } ], "e_sanction_types_stream": [ - 571, + 812, { "batch_size": [ 34, "Int!" ], "cursor": [ - 588, + 829, "[e_sanction_types_stream_cursor_input]!" ], "where": [ - 574 + 815 ] } ], "e_server_types": [ - 592, + 833, { "distinct_on": [ - 606, + 847, "[e_server_types_select_column!]" ], "limit": [ @@ -117232,19 +123921,19 @@ export default { 34 ], "order_by": [ - 604, + 845, "[e_server_types_order_by!]" ], "where": [ - 595 + 836 ] } ], "e_server_types_aggregate": [ - 593, + 834, { "distinct_on": [ - 606, + 847, "[e_server_types_select_column!]" ], "limit": [ @@ -117254,16 +123943,16 @@ export default { 34 ], "order_by": [ - 604, + 845, "[e_server_types_order_by!]" ], "where": [ - 595 + 836 ] } ], "e_server_types_by_pk": [ - 592, + 833, { "value": [ 63, @@ -117272,26 +123961,26 @@ export default { } ], "e_server_types_stream": [ - 592, + 833, { "batch_size": [ 34, "Int!" ], "cursor": [ - 608, + 849, "[e_server_types_stream_cursor_input]!" ], "where": [ - 595 + 836 ] } ], "e_sides": [ - 612, + 853, { "distinct_on": [ - 626, + 867, "[e_sides_select_column!]" ], "limit": [ @@ -117301,19 +123990,19 @@ export default { 34 ], "order_by": [ - 624, + 865, "[e_sides_order_by!]" ], "where": [ - 615 + 856 ] } ], "e_sides_aggregate": [ - 613, + 854, { "distinct_on": [ - 626, + 867, "[e_sides_select_column!]" ], "limit": [ @@ -117323,16 +124012,16 @@ export default { 34 ], "order_by": [ - 624, + 865, "[e_sides_order_by!]" ], "where": [ - 615 + 856 ] } ], "e_sides_by_pk": [ - 612, + 853, { "value": [ 63, @@ -117341,26 +124030,26 @@ export default { } ], "e_sides_stream": [ - 612, + 853, { "batch_size": [ 34, "Int!" ], "cursor": [ - 628, + 869, "[e_sides_stream_cursor_input]!" ], "where": [ - 615 + 856 ] } ], "e_team_roles": [ - 632, + 873, { "distinct_on": [ - 647, + 888, "[e_team_roles_select_column!]" ], "limit": [ @@ -117370,19 +124059,19 @@ export default { 34 ], "order_by": [ - 645, + 886, "[e_team_roles_order_by!]" ], "where": [ - 635 + 876 ] } ], "e_team_roles_aggregate": [ - 633, + 874, { "distinct_on": [ - 647, + 888, "[e_team_roles_select_column!]" ], "limit": [ @@ -117392,16 +124081,16 @@ export default { 34 ], "order_by": [ - 645, + 886, "[e_team_roles_order_by!]" ], "where": [ - 635 + 876 ] } ], "e_team_roles_by_pk": [ - 632, + 873, { "value": [ 63, @@ -117410,26 +124099,26 @@ export default { } ], "e_team_roles_stream": [ - 632, + 873, { "batch_size": [ 34, "Int!" ], "cursor": [ - 649, + 890, "[e_team_roles_stream_cursor_input]!" ], "where": [ - 635 + 876 ] } ], "e_team_roster_statuses": [ - 653, + 894, { "distinct_on": [ - 667, + 908, "[e_team_roster_statuses_select_column!]" ], "limit": [ @@ -117439,19 +124128,19 @@ export default { 34 ], "order_by": [ - 665, + 906, "[e_team_roster_statuses_order_by!]" ], "where": [ - 656 + 897 ] } ], "e_team_roster_statuses_aggregate": [ - 654, + 895, { "distinct_on": [ - 667, + 908, "[e_team_roster_statuses_select_column!]" ], "limit": [ @@ -117461,16 +124150,16 @@ export default { 34 ], "order_by": [ - 665, + 906, "[e_team_roster_statuses_order_by!]" ], "where": [ - 656 + 897 ] } ], "e_team_roster_statuses_by_pk": [ - 653, + 894, { "value": [ 63, @@ -117479,26 +124168,26 @@ export default { } ], "e_team_roster_statuses_stream": [ - 653, + 894, { "batch_size": [ 34, "Int!" ], "cursor": [ - 669, + 910, "[e_team_roster_statuses_stream_cursor_input]!" ], "where": [ - 656 + 897 ] } ], "e_timeout_settings": [ - 673, + 914, { "distinct_on": [ - 687, + 928, "[e_timeout_settings_select_column!]" ], "limit": [ @@ -117508,19 +124197,19 @@ export default { 34 ], "order_by": [ - 685, + 926, "[e_timeout_settings_order_by!]" ], "where": [ - 676 + 917 ] } ], "e_timeout_settings_aggregate": [ - 674, + 915, { "distinct_on": [ - 687, + 928, "[e_timeout_settings_select_column!]" ], "limit": [ @@ -117530,16 +124219,16 @@ export default { 34 ], "order_by": [ - 685, + 926, "[e_timeout_settings_order_by!]" ], "where": [ - 676 + 917 ] } ], "e_timeout_settings_by_pk": [ - 673, + 914, { "value": [ 63, @@ -117548,26 +124237,26 @@ export default { } ], "e_timeout_settings_stream": [ - 673, + 914, { "batch_size": [ 34, "Int!" ], "cursor": [ - 689, + 930, "[e_timeout_settings_stream_cursor_input]!" ], "where": [ - 676 + 917 ] } ], "e_tournament_stage_types": [ - 693, + 934, { "distinct_on": [ - 708, + 949, "[e_tournament_stage_types_select_column!]" ], "limit": [ @@ -117577,19 +124266,19 @@ export default { 34 ], "order_by": [ - 706, + 947, "[e_tournament_stage_types_order_by!]" ], "where": [ - 696 + 937 ] } ], "e_tournament_stage_types_aggregate": [ - 694, + 935, { "distinct_on": [ - 708, + 949, "[e_tournament_stage_types_select_column!]" ], "limit": [ @@ -117599,16 +124288,16 @@ export default { 34 ], "order_by": [ - 706, + 947, "[e_tournament_stage_types_order_by!]" ], "where": [ - 696 + 937 ] } ], "e_tournament_stage_types_by_pk": [ - 693, + 934, { "value": [ 63, @@ -117617,26 +124306,26 @@ export default { } ], "e_tournament_stage_types_stream": [ - 693, + 934, { "batch_size": [ 34, "Int!" ], "cursor": [ - 710, + 951, "[e_tournament_stage_types_stream_cursor_input]!" ], "where": [ - 696 + 937 ] } ], "e_tournament_status": [ - 714, + 955, { "distinct_on": [ - 729, + 970, "[e_tournament_status_select_column!]" ], "limit": [ @@ -117646,19 +124335,19 @@ export default { 34 ], "order_by": [ - 727, + 968, "[e_tournament_status_order_by!]" ], "where": [ - 717 + 958 ] } ], "e_tournament_status_aggregate": [ - 715, + 956, { "distinct_on": [ - 729, + 970, "[e_tournament_status_select_column!]" ], "limit": [ @@ -117668,16 +124357,16 @@ export default { 34 ], "order_by": [ - 727, + 968, "[e_tournament_status_order_by!]" ], "where": [ - 717 + 958 ] } ], "e_tournament_status_by_pk": [ - 714, + 955, { "value": [ 63, @@ -117686,26 +124375,26 @@ export default { } ], "e_tournament_status_stream": [ - 714, + 955, { "batch_size": [ 34, "Int!" ], "cursor": [ - 731, + 972, "[e_tournament_status_stream_cursor_input]!" ], "where": [ - 717 + 958 ] } ], "e_utility_types": [ - 735, + 976, { "distinct_on": [ - 749, + 990, "[e_utility_types_select_column!]" ], "limit": [ @@ -117715,19 +124404,19 @@ export default { 34 ], "order_by": [ - 747, + 988, "[e_utility_types_order_by!]" ], "where": [ - 738 + 979 ] } ], "e_utility_types_aggregate": [ - 736, + 977, { "distinct_on": [ - 749, + 990, "[e_utility_types_select_column!]" ], "limit": [ @@ -117737,16 +124426,16 @@ export default { 34 ], "order_by": [ - 747, + 988, "[e_utility_types_order_by!]" ], "where": [ - 738 + 979 ] } ], "e_utility_types_by_pk": [ - 735, + 976, { "value": [ 63, @@ -117755,26 +124444,26 @@ export default { } ], "e_utility_types_stream": [ - 735, + 976, { "batch_size": [ 34, "Int!" ], "cursor": [ - 751, + 992, "[e_utility_types_stream_cursor_input]!" ], "where": [ - 738 + 979 ] } ], "e_veto_pick_types": [ - 755, + 996, { "distinct_on": [ - 769, + 1010, "[e_veto_pick_types_select_column!]" ], "limit": [ @@ -117784,19 +124473,19 @@ export default { 34 ], "order_by": [ - 767, + 1008, "[e_veto_pick_types_order_by!]" ], "where": [ - 758 + 999 ] } ], "e_veto_pick_types_aggregate": [ - 756, + 997, { "distinct_on": [ - 769, + 1010, "[e_veto_pick_types_select_column!]" ], "limit": [ @@ -117806,16 +124495,16 @@ export default { 34 ], "order_by": [ - 767, + 1008, "[e_veto_pick_types_order_by!]" ], "where": [ - 758 + 999 ] } ], "e_veto_pick_types_by_pk": [ - 755, + 996, { "value": [ 63, @@ -117824,26 +124513,26 @@ export default { } ], "e_veto_pick_types_stream": [ - 755, + 996, { "batch_size": [ 34, "Int!" ], "cursor": [ - 771, + 1012, "[e_veto_pick_types_stream_cursor_input]!" ], "where": [ - 758 + 999 ] } ], "e_winning_reasons": [ - 775, + 1016, { "distinct_on": [ - 789, + 1030, "[e_winning_reasons_select_column!]" ], "limit": [ @@ -117853,19 +124542,19 @@ export default { 34 ], "order_by": [ - 787, + 1028, "[e_winning_reasons_order_by!]" ], "where": [ - 778 + 1019 ] } ], "e_winning_reasons_aggregate": [ - 776, + 1017, { "distinct_on": [ - 789, + 1030, "[e_winning_reasons_select_column!]" ], "limit": [ @@ -117875,16 +124564,16 @@ export default { 34 ], "order_by": [ - 787, + 1028, "[e_winning_reasons_order_by!]" ], "where": [ - 778 + 1019 ] } ], "e_winning_reasons_by_pk": [ - 775, + 1016, { "value": [ 63, @@ -117893,26 +124582,26 @@ export default { } ], "e_winning_reasons_stream": [ - 775, + 1016, { "batch_size": [ 34, "Int!" ], "cursor": [ - 791, + 1032, "[e_winning_reasons_stream_cursor_input]!" ], "where": [ - 778 + 1019 ] } ], "friends": [ - 797, + 1038, { "distinct_on": [ - 811, + 1052, "[friends_select_column!]" ], "limit": [ @@ -117922,19 +124611,19 @@ export default { 34 ], "order_by": [ - 809, + 1050, "[friends_order_by!]" ], "where": [ - 801 + 1042 ] } ], "friends_aggregate": [ - 798, + 1039, { "distinct_on": [ - 811, + 1052, "[friends_select_column!]" ], "limit": [ @@ -117944,16 +124633,16 @@ export default { 34 ], "order_by": [ - 809, + 1050, "[friends_order_by!]" ], "where": [ - 801 + 1042 ] } ], "friends_by_pk": [ - 797, + 1038, { "other_player_steam_id": [ 162, @@ -117966,26 +124655,26 @@ export default { } ], "friends_stream": [ - 797, + 1038, { "batch_size": [ 34, "Int!" ], "cursor": [ - 816, + 1057, "[friends_stream_cursor_input]!" ], "where": [ - 801 + 1042 ] } ], "game_server_nodes": [ - 824, + 1065, { "distinct_on": [ - 853, + 1094, "[game_server_nodes_select_column!]" ], "limit": [ @@ -117995,19 +124684,19 @@ export default { 34 ], "order_by": [ - 850, + 1091, "[game_server_nodes_order_by!]" ], "where": [ - 836 + 1077 ] } ], "game_server_nodes_aggregate": [ - 825, + 1066, { "distinct_on": [ - 853, + 1094, "[game_server_nodes_select_column!]" ], "limit": [ @@ -118017,16 +124706,16 @@ export default { 34 ], "order_by": [ - 850, + 1091, "[game_server_nodes_order_by!]" ], "where": [ - 836 + 1077 ] } ], "game_server_nodes_by_pk": [ - 824, + 1065, { "id": [ 63, @@ -118035,26 +124724,26 @@ export default { } ], "game_server_nodes_stream": [ - 824, + 1065, { "batch_size": [ 34, "Int!" ], "cursor": [ - 863, + 1104, "[game_server_nodes_stream_cursor_input]!" ], "where": [ - 836 + 1077 ] } ], "game_versions": [ - 875, + 1116, { "distinct_on": [ - 895, + 1136, "[game_versions_select_column!]" ], "limit": [ @@ -118064,19 +124753,19 @@ export default { 34 ], "order_by": [ - 892, + 1133, "[game_versions_order_by!]" ], "where": [ - 880 + 1121 ] } ], "game_versions_aggregate": [ - 876, + 1117, { "distinct_on": [ - 895, + 1136, "[game_versions_select_column!]" ], "limit": [ @@ -118086,16 +124775,16 @@ export default { 34 ], "order_by": [ - 892, + 1133, "[game_versions_order_by!]" ], "where": [ - 880 + 1121 ] } ], "game_versions_by_pk": [ - 875, + 1116, { "build_id": [ 34, @@ -118104,26 +124793,26 @@ export default { } ], "game_versions_stream": [ - 875, + 1116, { "batch_size": [ 34, "Int!" ], "cursor": [ - 900, + 1141, "[game_versions_stream_cursor_input]!" ], "where": [ - 880 + 1121 ] } ], "gamedata_signature_validations": [ - 908, + 1149, { "distinct_on": [ - 927, + 1168, "[gamedata_signature_validations_select_column!]" ], "limit": [ @@ -118133,19 +124822,19 @@ export default { 34 ], "order_by": [ - 924, + 1165, "[gamedata_signature_validations_order_by!]" ], "where": [ - 913 + 1154 ] } ], "gamedata_signature_validations_aggregate": [ - 909, + 1150, { "distinct_on": [ - 927, + 1168, "[gamedata_signature_validations_select_column!]" ], "limit": [ @@ -118155,48 +124844,48 @@ export default { 34 ], "order_by": [ - 924, + 1165, "[gamedata_signature_validations_order_by!]" ], "where": [ - 913 + 1154 ] } ], "gamedata_signature_validations_by_pk": [ - 908, + 1149, { "id": [ - 3319, + 3587, "uuid!" ] } ], "gamedata_signature_validations_stream": [ - 908, + 1149, { "batch_size": [ 34, "Int!" ], "cursor": [ - 932, + 1173, "[gamedata_signature_validations_stream_cursor_input]!" ], "where": [ - 913 + 1154 ] } ], "get_leaderboard": [ - 949, + 1190, { "args": [ - 940, + 1181, "get_leaderboard_args!" ], "distinct_on": [ - 960, + 1201, "[leaderboard_entries_select_column!]" ], "limit": [ @@ -118206,23 +124895,23 @@ export default { 34 ], "order_by": [ - 959, + 1200, "[leaderboard_entries_order_by!]" ], "where": [ - 953 + 1194 ] } ], "get_leaderboard_aggregate": [ - 950, + 1191, { "args": [ - 940, + 1181, "get_leaderboard_args!" ], "distinct_on": [ - 960, + 1201, "[leaderboard_entries_select_column!]" ], "limit": [ @@ -118232,23 +124921,23 @@ export default { 34 ], "order_by": [ - 959, + 1200, "[leaderboard_entries_order_by!]" ], "where": [ - 953 + 1194 ] } ], "get_player_leaderboard_rank": [ - 2177, + 2445, { "args": [ - 941, + 1182, "get_player_leaderboard_rank_args!" ], "distinct_on": [ - 2188, + 2456, "[player_leaderboard_rank_select_column!]" ], "limit": [ @@ -118258,23 +124947,23 @@ export default { 34 ], "order_by": [ - 2187, + 2455, "[player_leaderboard_rank_order_by!]" ], "where": [ - 2181 + 2449 ] } ], "get_player_leaderboard_rank_aggregate": [ - 2178, + 2446, { "args": [ - 941, + 1182, "get_player_leaderboard_rank_args!" ], "distinct_on": [ - 2188, + 2456, "[player_leaderboard_rank_select_column!]" ], "limit": [ @@ -118284,19 +124973,19 @@ export default { 34 ], "order_by": [ - 2187, + 2455, "[player_leaderboard_rank_order_by!]" ], "where": [ - 2181 + 2449 ] } ], "leaderboard_entries": [ - 949, + 1190, { "distinct_on": [ - 960, + 1201, "[leaderboard_entries_select_column!]" ], "limit": [ @@ -118306,19 +124995,19 @@ export default { 34 ], "order_by": [ - 959, + 1200, "[leaderboard_entries_order_by!]" ], "where": [ - 953 + 1194 ] } ], "leaderboard_entries_aggregate": [ - 950, + 1191, { "distinct_on": [ - 960, + 1201, "[leaderboard_entries_select_column!]" ], "limit": [ @@ -118328,35 +125017,35 @@ export default { 34 ], "order_by": [ - 959, + 1200, "[leaderboard_entries_order_by!]" ], "where": [ - 953 + 1194 ] } ], "leaderboard_entries_stream": [ - 949, + 1190, { "batch_size": [ 34, "Int!" ], "cursor": [ - 965, + 1206, "[leaderboard_entries_stream_cursor_input]!" ], "where": [ - 953 + 1194 ] } ], "lobbies": [ - 972, + 1213, { "distinct_on": [ - 985, + 1226, "[lobbies_select_column!]" ], "limit": [ @@ -118366,19 +125055,19 @@ export default { 34 ], "order_by": [ - 983, + 1224, "[lobbies_order_by!]" ], "where": [ - 975 + 1216 ] } ], "lobbies_aggregate": [ - 973, + 1214, { "distinct_on": [ - 985, + 1226, "[lobbies_select_column!]" ], "limit": [ @@ -118388,44 +125077,44 @@ export default { 34 ], "order_by": [ - 983, + 1224, "[lobbies_order_by!]" ], "where": [ - 975 + 1216 ] } ], "lobbies_by_pk": [ - 972, + 1213, { "id": [ - 3319, + 3587, "uuid!" ] } ], "lobbies_stream": [ - 972, + 1213, { "batch_size": [ 34, "Int!" ], "cursor": [ - 987, + 1228, "[lobbies_stream_cursor_input]!" ], "where": [ - 975 + 1216 ] } ], "lobby_players": [ - 991, + 1232, { "distinct_on": [ - 1014, + 1255, "[lobby_players_select_column!]" ], "limit": [ @@ -118435,19 +125124,19 @@ export default { 34 ], "order_by": [ - 1012, + 1253, "[lobby_players_order_by!]" ], "where": [ - 1002 + 1243 ] } ], "lobby_players_aggregate": [ - 992, + 1233, { "distinct_on": [ - 1014, + 1255, "[lobby_players_select_column!]" ], "limit": [ @@ -118457,19 +125146,19 @@ export default { 34 ], "order_by": [ - 1012, + 1253, "[lobby_players_order_by!]" ], "where": [ - 1002 + 1243 ] } ], "lobby_players_by_pk": [ - 991, + 1232, { "lobby_id": [ - 3319, + 3587, "uuid!" ], "steam_id": [ @@ -118479,26 +125168,26 @@ export default { } ], "lobby_players_stream": [ - 991, + 1232, { "batch_size": [ 34, "Int!" ], "cursor": [ - 1024, + 1265, "[lobby_players_stream_cursor_input]!" ], "where": [ - 1002 + 1243 ] } ], "map_pools": [ - 1036, + 1277, { "distinct_on": [ - 1049, + 1290, "[map_pools_select_column!]" ], "limit": [ @@ -118508,19 +125197,19 @@ export default { 34 ], "order_by": [ - 1047, + 1288, "[map_pools_order_by!]" ], "where": [ - 1039 + 1280 ] } ], "map_pools_aggregate": [ - 1037, + 1278, { "distinct_on": [ - 1049, + 1290, "[map_pools_select_column!]" ], "limit": [ @@ -118530,44 +125219,44 @@ export default { 34 ], "order_by": [ - 1047, + 1288, "[map_pools_order_by!]" ], "where": [ - 1039 + 1280 ] } ], "map_pools_by_pk": [ - 1036, + 1277, { "id": [ - 3319, + 3587, "uuid!" ] } ], "map_pools_stream": [ - 1036, + 1277, { "batch_size": [ 34, "Int!" ], "cursor": [ - 1051, + 1292, "[map_pools_stream_cursor_input]!" ], "where": [ - 1039 + 1280 ] } ], "maps": [ - 1055, + 1296, { "distinct_on": [ - 1076, + 1317, "[maps_select_column!]" ], "limit": [ @@ -118577,19 +125266,19 @@ export default { 34 ], "order_by": [ - 1074, + 1315, "[maps_order_by!]" ], "where": [ - 1064 + 1305 ] } ], "maps_aggregate": [ - 1056, + 1297, { "distinct_on": [ - 1076, + 1317, "[maps_select_column!]" ], "limit": [ @@ -118599,44 +125288,44 @@ export default { 34 ], "order_by": [ - 1074, + 1315, "[maps_order_by!]" ], "where": [ - 1064 + 1305 ] } ], "maps_by_pk": [ - 1055, + 1296, { "id": [ - 3319, + 3587, "uuid!" ] } ], "maps_stream": [ - 1055, + 1296, { "batch_size": [ 34, "Int!" ], "cursor": [ - 1080, + 1321, "[maps_stream_cursor_input]!" ], "where": [ - 1064 + 1305 ] } ], "match_clips": [ - 1084, + 1325, { "distinct_on": [ - 1106, + 1347, "[match_clips_select_column!]" ], "limit": [ @@ -118646,19 +125335,19 @@ export default { 34 ], "order_by": [ - 1104, + 1345, "[match_clips_order_by!]" ], "where": [ - 1093 + 1334 ] } ], "match_clips_aggregate": [ - 1085, + 1326, { "distinct_on": [ - 1106, + 1347, "[match_clips_select_column!]" ], "limit": [ @@ -118668,44 +125357,44 @@ export default { 34 ], "order_by": [ - 1104, + 1345, "[match_clips_order_by!]" ], "where": [ - 1093 + 1334 ] } ], "match_clips_by_pk": [ - 1084, + 1325, { "id": [ - 3319, + 3587, "uuid!" ] } ], "match_clips_stream": [ - 1084, + 1325, { "batch_size": [ 34, "Int!" ], "cursor": [ - 1114, + 1355, "[match_clips_stream_cursor_input]!" ], "where": [ - 1093 + 1334 ] } ], "match_demo_sessions": [ - 1126, + 1367, { "distinct_on": [ - 1152, + 1393, "[match_demo_sessions_select_column!]" ], "limit": [ @@ -118715,19 +125404,19 @@ export default { 34 ], "order_by": [ - 1149, + 1390, "[match_demo_sessions_order_by!]" ], "where": [ - 1136 + 1377 ] } ], "match_demo_sessions_aggregate": [ - 1127, + 1368, { "distinct_on": [ - 1152, + 1393, "[match_demo_sessions_select_column!]" ], "limit": [ @@ -118737,44 +125426,44 @@ export default { 34 ], "order_by": [ - 1149, + 1390, "[match_demo_sessions_order_by!]" ], "where": [ - 1136 + 1377 ] } ], "match_demo_sessions_by_pk": [ - 1126, + 1367, { "id": [ - 3319, + 3587, "uuid!" ] } ], "match_demo_sessions_stream": [ - 1126, + 1367, { "batch_size": [ 34, "Int!" ], "cursor": [ - 1160, + 1401, "[match_demo_sessions_stream_cursor_input]!" ], "where": [ - 1136 + 1377 ] } ], "match_invites": [ - 1172, + 1413, { "distinct_on": [ - 1193, + 1434, "[match_invites_select_column!]" ], "limit": [ @@ -118784,19 +125473,19 @@ export default { 34 ], "order_by": [ - 1191, + 1432, "[match_invites_order_by!]" ], "where": [ - 1181 + 1422 ] } ], "match_invites_aggregate": [ - 1173, + 1414, { "distinct_on": [ - 1193, + 1434, "[match_invites_select_column!]" ], "limit": [ @@ -118806,44 +125495,44 @@ export default { 34 ], "order_by": [ - 1191, + 1432, "[match_invites_order_by!]" ], "where": [ - 1181 + 1422 ] } ], "match_invites_by_pk": [ - 1172, + 1413, { "id": [ - 3319, + 3587, "uuid!" ] } ], "match_invites_stream": [ - 1172, + 1413, { "batch_size": [ 34, "Int!" ], "cursor": [ - 1201, + 1442, "[match_invites_stream_cursor_input]!" ], "where": [ - 1181 + 1422 ] } ], "match_lineup_players": [ - 1213, + 1454, { "distinct_on": [ - 1236, + 1477, "[match_lineup_players_select_column!]" ], "limit": [ @@ -118853,19 +125542,19 @@ export default { 34 ], "order_by": [ - 1234, + 1475, "[match_lineup_players_order_by!]" ], "where": [ - 1224 + 1465 ] } ], "match_lineup_players_aggregate": [ - 1214, + 1455, { "distinct_on": [ - 1236, + 1477, "[match_lineup_players_select_column!]" ], "limit": [ @@ -118875,44 +125564,44 @@ export default { 34 ], "order_by": [ - 1234, + 1475, "[match_lineup_players_order_by!]" ], "where": [ - 1224 + 1465 ] } ], "match_lineup_players_by_pk": [ - 1213, + 1454, { "id": [ - 3319, + 3587, "uuid!" ] } ], "match_lineup_players_stream": [ - 1213, + 1454, { "batch_size": [ 34, "Int!" ], "cursor": [ - 1246, + 1487, "[match_lineup_players_stream_cursor_input]!" ], "where": [ - 1224 + 1465 ] } ], "match_lineups": [ - 1258, + 1499, { "distinct_on": [ - 1280, + 1521, "[match_lineups_select_column!]" ], "limit": [ @@ -118922,19 +125611,19 @@ export default { 34 ], "order_by": [ - 1278, + 1519, "[match_lineups_order_by!]" ], "where": [ - 1267 + 1508 ] } ], "match_lineups_aggregate": [ - 1259, + 1500, { "distinct_on": [ - 1280, + 1521, "[match_lineups_select_column!]" ], "limit": [ @@ -118944,44 +125633,44 @@ export default { 34 ], "order_by": [ - 1278, + 1519, "[match_lineups_order_by!]" ], "where": [ - 1267 + 1508 ] } ], "match_lineups_by_pk": [ - 1258, + 1499, { "id": [ - 3319, + 3587, "uuid!" ] } ], "match_lineups_stream": [ - 1258, + 1499, { "batch_size": [ 34, "Int!" ], "cursor": [ - 1288, + 1529, "[match_lineups_stream_cursor_input]!" ], "where": [ - 1267 + 1508 ] } ], "match_map_demos": [ - 1300, + 1541, { "distinct_on": [ - 1329, + 1570, "[match_map_demos_select_column!]" ], "limit": [ @@ -118991,19 +125680,19 @@ export default { 34 ], "order_by": [ - 1326, + 1567, "[match_map_demos_order_by!]" ], "where": [ - 1312 + 1553 ] } ], "match_map_demos_aggregate": [ - 1301, + 1542, { "distinct_on": [ - 1329, + 1570, "[match_map_demos_select_column!]" ], "limit": [ @@ -119013,44 +125702,44 @@ export default { 34 ], "order_by": [ - 1326, + 1567, "[match_map_demos_order_by!]" ], "where": [ - 1312 + 1553 ] } ], "match_map_demos_by_pk": [ - 1300, + 1541, { "id": [ - 3319, + 3587, "uuid!" ] } ], "match_map_demos_stream": [ - 1300, + 1541, { "batch_size": [ 34, "Int!" ], "cursor": [ - 1339, + 1580, "[match_map_demos_stream_cursor_input]!" ], "where": [ - 1312 + 1553 ] } ], "match_map_rounds": [ - 1351, + 1592, { "distinct_on": [ - 1372, + 1613, "[match_map_rounds_select_column!]" ], "limit": [ @@ -119060,19 +125749,19 @@ export default { 34 ], "order_by": [ - 1370, + 1611, "[match_map_rounds_order_by!]" ], "where": [ - 1360 + 1601 ] } ], "match_map_rounds_aggregate": [ - 1352, + 1593, { "distinct_on": [ - 1372, + 1613, "[match_map_rounds_select_column!]" ], "limit": [ @@ -119082,44 +125771,44 @@ export default { 34 ], "order_by": [ - 1370, + 1611, "[match_map_rounds_order_by!]" ], "where": [ - 1360 + 1601 ] } ], "match_map_rounds_by_pk": [ - 1351, + 1592, { "id": [ - 3319, + 3587, "uuid!" ] } ], "match_map_rounds_stream": [ - 1351, + 1592, { "batch_size": [ 34, "Int!" ], "cursor": [ - 1380, + 1621, "[match_map_rounds_stream_cursor_input]!" ], "where": [ - 1360 + 1601 ] } ], "match_map_veto_picks": [ - 1392, + 1633, { "distinct_on": [ - 1410, + 1651, "[match_map_veto_picks_select_column!]" ], "limit": [ @@ -119129,19 +125818,19 @@ export default { 34 ], "order_by": [ - 1408, + 1649, "[match_map_veto_picks_order_by!]" ], "where": [ - 1399 + 1640 ] } ], "match_map_veto_picks_aggregate": [ - 1393, + 1634, { "distinct_on": [ - 1410, + 1651, "[match_map_veto_picks_select_column!]" ], "limit": [ @@ -119151,44 +125840,44 @@ export default { 34 ], "order_by": [ - 1408, + 1649, "[match_map_veto_picks_order_by!]" ], "where": [ - 1399 + 1640 ] } ], "match_map_veto_picks_by_pk": [ - 1392, + 1633, { "id": [ - 3319, + 3587, "uuid!" ] } ], "match_map_veto_picks_stream": [ - 1392, + 1633, { "batch_size": [ 34, "Int!" ], "cursor": [ - 1412, + 1653, "[match_map_veto_picks_stream_cursor_input]!" ], "where": [ - 1399 + 1640 ] } ], "match_maps": [ - 1416, + 1657, { "distinct_on": [ - 1438, + 1679, "[match_maps_select_column!]" ], "limit": [ @@ -119198,19 +125887,19 @@ export default { 34 ], "order_by": [ - 1436, + 1677, "[match_maps_order_by!]" ], "where": [ - 1425 + 1666 ] } ], "match_maps_aggregate": [ - 1417, + 1658, { "distinct_on": [ - 1438, + 1679, "[match_maps_select_column!]" ], "limit": [ @@ -119220,44 +125909,44 @@ export default { 34 ], "order_by": [ - 1436, + 1677, "[match_maps_order_by!]" ], "where": [ - 1425 + 1666 ] } ], "match_maps_by_pk": [ - 1416, + 1657, { "id": [ - 3319, + 3587, "uuid!" ] } ], "match_maps_stream": [ - 1416, + 1657, { "batch_size": [ 34, "Int!" ], "cursor": [ - 1446, + 1687, "[match_maps_stream_cursor_input]!" ], "where": [ - 1425 + 1666 ] } ], "match_options": [ - 1458, + 1699, { "distinct_on": [ - 1473, + 1714, "[match_options_select_column!]" ], "limit": [ @@ -119267,19 +125956,19 @@ export default { 34 ], "order_by": [ - 1471, + 1712, "[match_options_order_by!]" ], "where": [ - 1462 + 1703 ] } ], "match_options_aggregate": [ - 1459, + 1700, { "distinct_on": [ - 1473, + 1714, "[match_options_select_column!]" ], "limit": [ @@ -119289,44 +125978,44 @@ export default { 34 ], "order_by": [ - 1471, + 1712, "[match_options_order_by!]" ], "where": [ - 1462 + 1703 ] } ], "match_options_by_pk": [ - 1458, + 1699, { "id": [ - 3319, + 3587, "uuid!" ] } ], "match_options_stream": [ - 1458, + 1699, { "batch_size": [ 34, "Int!" ], "cursor": [ - 1478, + 1719, "[match_options_stream_cursor_input]!" ], "where": [ - 1462 + 1703 ] } ], "match_region_veto_picks": [ - 1486, + 1727, { "distinct_on": [ - 1504, + 1745, "[match_region_veto_picks_select_column!]" ], "limit": [ @@ -119336,19 +126025,19 @@ export default { 34 ], "order_by": [ - 1502, + 1743, "[match_region_veto_picks_order_by!]" ], "where": [ - 1493 + 1734 ] } ], "match_region_veto_picks_aggregate": [ - 1487, + 1728, { "distinct_on": [ - 1504, + 1745, "[match_region_veto_picks_select_column!]" ], "limit": [ @@ -119358,44 +126047,44 @@ export default { 34 ], "order_by": [ - 1502, + 1743, "[match_region_veto_picks_order_by!]" ], "where": [ - 1493 + 1734 ] } ], "match_region_veto_picks_by_pk": [ - 1486, + 1727, { "id": [ - 3319, + 3587, "uuid!" ] } ], "match_region_veto_picks_stream": [ - 1486, + 1727, { "batch_size": [ 34, "Int!" ], "cursor": [ - 1506, + 1747, "[match_region_veto_picks_stream_cursor_input]!" ], "where": [ - 1493 + 1734 ] } ], "match_streams": [ - 1510, + 1751, { "distinct_on": [ - 1538, + 1779, "[match_streams_select_column!]" ], "limit": [ @@ -119405,19 +126094,19 @@ export default { 34 ], "order_by": [ - 1535, + 1776, "[match_streams_order_by!]" ], "where": [ - 1522 + 1763 ] } ], "match_streams_aggregate": [ - 1511, + 1752, { "distinct_on": [ - 1538, + 1779, "[match_streams_select_column!]" ], "limit": [ @@ -119427,44 +126116,44 @@ export default { 34 ], "order_by": [ - 1535, + 1776, "[match_streams_order_by!]" ], "where": [ - 1522 + 1763 ] } ], "match_streams_by_pk": [ - 1510, + 1751, { "id": [ - 3319, + 3587, "uuid!" ] } ], "match_streams_stream": [ - 1510, + 1751, { "batch_size": [ 34, "Int!" ], "cursor": [ - 1548, + 1789, "[match_streams_stream_cursor_input]!" ], "where": [ - 1522 + 1763 ] } ], "match_type_cfgs": [ - 1560, + 1801, { "distinct_on": [ - 1572, + 1813, "[match_type_cfgs_select_column!]" ], "limit": [ @@ -119474,19 +126163,19 @@ export default { 34 ], "order_by": [ - 1570, + 1811, "[match_type_cfgs_order_by!]" ], "where": [ - 1563 + 1804 ] } ], "match_type_cfgs_aggregate": [ - 1561, + 1802, { "distinct_on": [ - 1572, + 1813, "[match_type_cfgs_select_column!]" ], "limit": [ @@ -119496,44 +126185,44 @@ export default { 34 ], "order_by": [ - 1570, + 1811, "[match_type_cfgs_order_by!]" ], "where": [ - 1563 + 1804 ] } ], "match_type_cfgs_by_pk": [ - 1560, + 1801, { "type": [ - 290, + 531, "e_game_cfg_types_enum!" ] } ], "match_type_cfgs_stream": [ - 1560, + 1801, { "batch_size": [ 34, "Int!" ], "cursor": [ - 1574, + 1815, "[match_type_cfgs_stream_cursor_input]!" ], "where": [ - 1563 + 1804 ] } ], "matches": [ - 1578, + 1819, { "distinct_on": [ - 1600, + 1841, "[matches_select_column!]" ], "limit": [ @@ -119543,19 +126232,19 @@ export default { 34 ], "order_by": [ - 1598, + 1839, "[matches_order_by!]" ], "where": [ - 1587 + 1828 ] } ], "matches_aggregate": [ - 1579, + 1820, { "distinct_on": [ - 1600, + 1841, "[matches_select_column!]" ], "limit": [ @@ -119565,44 +126254,44 @@ export default { 34 ], "order_by": [ - 1598, + 1839, "[matches_order_by!]" ], "where": [ - 1587 + 1828 ] } ], "matches_by_pk": [ - 1578, + 1819, { "id": [ - 3319, + 3587, "uuid!" ] } ], "matches_stream": [ - 1578, + 1819, { "batch_size": [ 34, "Int!" ], "cursor": [ - 1608, + 1849, "[matches_stream_cursor_input]!" ], "where": [ - 1587 + 1828 ] } ], "migration_hashes_hashes": [ - 1620, + 1861, { "distinct_on": [ - 1632, + 1873, "[migration_hashes_hashes_select_column!]" ], "limit": [ @@ -119612,19 +126301,19 @@ export default { 34 ], "order_by": [ - 1630, + 1871, "[migration_hashes_hashes_order_by!]" ], "where": [ - 1623 + 1864 ] } ], "migration_hashes_hashes_aggregate": [ - 1621, + 1862, { "distinct_on": [ - 1632, + 1873, "[migration_hashes_hashes_select_column!]" ], "limit": [ @@ -119634,16 +126323,16 @@ export default { 34 ], "order_by": [ - 1630, + 1871, "[migration_hashes_hashes_order_by!]" ], "where": [ - 1623 + 1864 ] } ], "migration_hashes_hashes_by_pk": [ - 1620, + 1861, { "name": [ 63, @@ -119652,26 +126341,26 @@ export default { } ], "migration_hashes_hashes_stream": [ - 1620, + 1861, { "batch_size": [ 34, "Int!" ], "cursor": [ - 1634, + 1875, "[migration_hashes_hashes_stream_cursor_input]!" ], "where": [ - 1623 + 1864 ] } ], "my_friends": [ - 1638, + 1879, { "distinct_on": [ - 1663, + 1904, "[my_friends_select_column!]" ], "limit": [ @@ -119681,19 +126370,19 @@ export default { 34 ], "order_by": [ - 1661, + 1902, "[my_friends_order_by!]" ], "where": [ - 1650 + 1891 ] } ], "my_friends_aggregate": [ - 1639, + 1880, { "distinct_on": [ - 1663, + 1904, "[my_friends_select_column!]" ], "limit": [ @@ -119703,35 +126392,104 @@ export default { 34 ], "order_by": [ - 1661, + 1902, "[my_friends_order_by!]" ], "where": [ - 1650 + 1891 ] } ], "my_friends_stream": [ - 1638, + 1879, { "batch_size": [ 34, "Int!" ], "cursor": [ - 1673, + 1914, "[my_friends_stream_cursor_input]!" ], "where": [ - 1650 + 1891 + ] + } + ], + "news_articles": [ + 1925, + { + "distinct_on": [ + 1939, + "[news_articles_select_column!]" + ], + "limit": [ + 34 + ], + "offset": [ + 34 + ], + "order_by": [ + 1937, + "[news_articles_order_by!]" + ], + "where": [ + 1929 + ] + } + ], + "news_articles_aggregate": [ + 1926, + { + "distinct_on": [ + 1939, + "[news_articles_select_column!]" + ], + "limit": [ + 34 + ], + "offset": [ + 34 + ], + "order_by": [ + 1937, + "[news_articles_order_by!]" + ], + "where": [ + 1929 + ] + } + ], + "news_articles_by_pk": [ + 1925, + { + "id": [ + 3587, + "uuid!" + ] + } + ], + "news_articles_stream": [ + 1925, + { + "batch_size": [ + 34, + "Int!" + ], + "cursor": [ + 1944, + "[news_articles_stream_cursor_input]!" + ], + "where": [ + 1929 ] } ], "notifications": [ - 1684, + 1952, { "distinct_on": [ - 1712, + 1980, "[notifications_select_column!]" ], "limit": [ @@ -119741,19 +126499,19 @@ export default { 34 ], "order_by": [ - 1709, + 1977, "[notifications_order_by!]" ], "where": [ - 1696 + 1964 ] } ], "notifications_aggregate": [ - 1685, + 1953, { "distinct_on": [ - 1712, + 1980, "[notifications_select_column!]" ], "limit": [ @@ -119763,44 +126521,44 @@ export default { 34 ], "order_by": [ - 1709, + 1977, "[notifications_order_by!]" ], "where": [ - 1696 + 1964 ] } ], "notifications_by_pk": [ - 1684, + 1952, { "id": [ - 3319, + 3587, "uuid!" ] } ], "notifications_stream": [ - 1684, + 1952, { "batch_size": [ 34, "Int!" ], "cursor": [ - 1722, + 1990, "[notifications_stream_cursor_input]!" ], "where": [ - 1696 + 1964 ] } ], "pending_match_import_players": [ - 1737, + 2005, { "distinct_on": [ - 1758, + 2026, "[pending_match_import_players_select_column!]" ], "limit": [ @@ -119810,19 +126568,19 @@ export default { 34 ], "order_by": [ - 1756, + 2024, "[pending_match_import_players_order_by!]" ], "where": [ - 1746 + 2014 ] } ], "pending_match_import_players_aggregate": [ - 1738, + 2006, { "distinct_on": [ - 1758, + 2026, "[pending_match_import_players_select_column!]" ], "limit": [ @@ -119832,48 +126590,48 @@ export default { 34 ], "order_by": [ - 1756, + 2024, "[pending_match_import_players_order_by!]" ], "where": [ - 1746 + 2014 ] } ], "pending_match_import_players_by_pk": [ - 1737, + 2005, { "steam_id": [ 162, "bigint!" ], "valve_match_id": [ - 1734, + 2002, "numeric!" ] } ], "pending_match_import_players_stream": [ - 1737, + 2005, { "batch_size": [ 34, "Int!" ], "cursor": [ - 1766, + 2034, "[pending_match_import_players_stream_cursor_input]!" ], "where": [ - 1746 + 2014 ] } ], "pending_match_imports": [ - 1778, + 2046, { "distinct_on": [ - 1793, + 2061, "[pending_match_imports_select_column!]" ], "limit": [ @@ -119883,19 +126641,19 @@ export default { 34 ], "order_by": [ - 1791, + 2059, "[pending_match_imports_order_by!]" ], "where": [ - 1782 + 2050 ] } ], "pending_match_imports_aggregate": [ - 1779, + 2047, { "distinct_on": [ - 1793, + 2061, "[pending_match_imports_select_column!]" ], "limit": [ @@ -119905,44 +126663,44 @@ export default { 34 ], "order_by": [ - 1791, + 2059, "[pending_match_imports_order_by!]" ], "where": [ - 1782 + 2050 ] } ], "pending_match_imports_by_pk": [ - 1778, + 2046, { "valve_match_id": [ - 1734, + 2002, "numeric!" ] } ], "pending_match_imports_stream": [ - 1778, + 2046, { "batch_size": [ 34, "Int!" ], "cursor": [ - 1798, + 2066, "[pending_match_imports_stream_cursor_input]!" ], "where": [ - 1782 + 2050 ] } ], "player_aim_stats_demo": [ - 1806, + 2074, { "distinct_on": [ - 1820, + 2088, "[player_aim_stats_demo_select_column!]" ], "limit": [ @@ -119952,19 +126710,19 @@ export default { 34 ], "order_by": [ - 1818, + 2086, "[player_aim_stats_demo_order_by!]" ], "where": [ - 1810 + 2078 ] } ], "player_aim_stats_demo_aggregate": [ - 1807, + 2075, { "distinct_on": [ - 1820, + 2088, "[player_aim_stats_demo_select_column!]" ], "limit": [ @@ -119974,48 +126732,48 @@ export default { 34 ], "order_by": [ - 1818, + 2086, "[player_aim_stats_demo_order_by!]" ], "where": [ - 1810 + 2078 ] } ], "player_aim_stats_demo_by_pk": [ - 1806, + 2074, { "attacker_steam_id": [ 162, "bigint!" ], "match_map_id": [ - 3319, + 3587, "uuid!" ] } ], "player_aim_stats_demo_stream": [ - 1806, + 2074, { "batch_size": [ 34, "Int!" ], "cursor": [ - 1825, + 2093, "[player_aim_stats_demo_stream_cursor_input]!" ], "where": [ - 1810 + 2078 ] } ], "player_aim_weapon_stats": [ - 1833, + 2101, { "distinct_on": [ - 1854, + 2122, "[player_aim_weapon_stats_select_column!]" ], "limit": [ @@ -120025,19 +126783,19 @@ export default { 34 ], "order_by": [ - 1852, + 2120, "[player_aim_weapon_stats_order_by!]" ], "where": [ - 1842 + 2110 ] } ], "player_aim_weapon_stats_aggregate": [ - 1834, + 2102, { "distinct_on": [ - 1854, + 2122, "[player_aim_weapon_stats_select_column!]" ], "limit": [ @@ -120047,19 +126805,19 @@ export default { 34 ], "order_by": [ - 1852, + 2120, "[player_aim_weapon_stats_order_by!]" ], "where": [ - 1842 + 2110 ] } ], "player_aim_weapon_stats_by_pk": [ - 1833, + 2101, { "match_map_id": [ - 3319, + 3587, "uuid!" ], "steam_id": [ @@ -120073,26 +126831,26 @@ export default { } ], "player_aim_weapon_stats_stream": [ - 1833, + 2101, { "batch_size": [ 34, "Int!" ], "cursor": [ - 1862, + 2130, "[player_aim_weapon_stats_stream_cursor_input]!" ], "where": [ - 1842 + 2110 ] } ], "player_assists": [ - 1874, + 2142, { "distinct_on": [ - 1897, + 2165, "[player_assists_select_column!]" ], "limit": [ @@ -120102,19 +126860,19 @@ export default { 34 ], "order_by": [ - 1895, + 2163, "[player_assists_order_by!]" ], "where": [ - 1885 + 2153 ] } ], "player_assists_aggregate": [ - 1875, + 2143, { "distinct_on": [ - 1897, + 2165, "[player_assists_select_column!]" ], "limit": [ @@ -120124,16 +126882,16 @@ export default { 34 ], "order_by": [ - 1895, + 2163, "[player_assists_order_by!]" ], "where": [ - 1885 + 2153 ] } ], "player_assists_by_pk": [ - 1874, + 2142, { "attacked_steam_id": [ 162, @@ -120144,36 +126902,36 @@ export default { "bigint!" ], "match_map_id": [ - 3319, + 3587, "uuid!" ], "time": [ - 2922, + 3190, "timestamptz!" ] } ], "player_assists_stream": [ - 1874, + 2142, { "batch_size": [ 34, "Int!" ], "cursor": [ - 1907, + 2175, "[player_assists_stream_cursor_input]!" ], "where": [ - 1885 + 2153 ] } ], "player_career_stats_v": [ - 1919, + 2187, { "distinct_on": [ - 1927, + 2195, "[player_career_stats_v_select_column!]" ], "limit": [ @@ -120183,19 +126941,19 @@ export default { 34 ], "order_by": [ - 1926, + 2194, "[player_career_stats_v_order_by!]" ], "where": [ - 1923 + 2191 ] } ], "player_career_stats_v_aggregate": [ - 1920, + 2188, { "distinct_on": [ - 1927, + 2195, "[player_career_stats_v_select_column!]" ], "limit": [ @@ -120205,35 +126963,35 @@ export default { 34 ], "order_by": [ - 1926, + 2194, "[player_career_stats_v_order_by!]" ], "where": [ - 1923 + 2191 ] } ], "player_career_stats_v_stream": [ - 1919, + 2187, { "batch_size": [ 34, "Int!" ], "cursor": [ - 1931, + 2199, "[player_career_stats_v_stream_cursor_input]!" ], "where": [ - 1923 + 2191 ] } ], "player_damages": [ - 1937, + 2205, { "distinct_on": [ - 1958, + 2226, "[player_damages_select_column!]" ], "limit": [ @@ -120243,19 +127001,19 @@ export default { 34 ], "order_by": [ - 1956, + 2224, "[player_damages_order_by!]" ], "where": [ - 1946 + 2214 ] } ], "player_damages_aggregate": [ - 1938, + 2206, { "distinct_on": [ - 1958, + 2226, "[player_damages_select_column!]" ], "limit": [ @@ -120265,52 +127023,52 @@ export default { 34 ], "order_by": [ - 1956, + 2224, "[player_damages_order_by!]" ], "where": [ - 1946 + 2214 ] } ], "player_damages_by_pk": [ - 1937, + 2205, { "id": [ - 3319, + 3587, "uuid!" ], "match_map_id": [ - 3319, + 3587, "uuid!" ], "time": [ - 2922, + 3190, "timestamptz!" ] } ], "player_damages_stream": [ - 1937, + 2205, { "batch_size": [ 34, "Int!" ], "cursor": [ - 1966, + 2234, "[player_damages_stream_cursor_input]!" ], "where": [ - 1946 + 2214 ] } ], "player_elo": [ - 1978, + 2246, { "distinct_on": [ - 1992, + 2260, "[player_elo_select_column!]" ], "limit": [ @@ -120320,19 +127078,19 @@ export default { 34 ], "order_by": [ - 1990, + 2258, "[player_elo_order_by!]" ], "where": [ - 1982 + 2250 ] } ], "player_elo_aggregate": [ - 1979, + 2247, { "distinct_on": [ - 1992, + 2260, "[player_elo_select_column!]" ], "limit": [ @@ -120342,19 +127100,19 @@ export default { 34 ], "order_by": [ - 1990, + 2258, "[player_elo_order_by!]" ], "where": [ - 1982 + 2250 ] } ], "player_elo_by_pk": [ - 1978, + 2246, { "match_id": [ - 3319, + 3587, "uuid!" ], "steam_id": [ @@ -120362,32 +127120,32 @@ export default { "bigint!" ], "type": [ - 475, + 716, "e_match_types_enum!" ] } ], "player_elo_stream": [ - 1978, + 2246, { "batch_size": [ 34, "Int!" ], "cursor": [ - 1997, + 2265, "[player_elo_stream_cursor_input]!" ], "where": [ - 1982 + 2250 ] } ], "player_faceit_rank_history": [ - 2005, + 2273, { "distinct_on": [ - 2026, + 2294, "[player_faceit_rank_history_select_column!]" ], "limit": [ @@ -120397,19 +127155,19 @@ export default { 34 ], "order_by": [ - 2024, + 2292, "[player_faceit_rank_history_order_by!]" ], "where": [ - 2014 + 2282 ] } ], "player_faceit_rank_history_aggregate": [ - 2006, + 2274, { "distinct_on": [ - 2026, + 2294, "[player_faceit_rank_history_select_column!]" ], "limit": [ @@ -120419,44 +127177,44 @@ export default { 34 ], "order_by": [ - 2024, + 2292, "[player_faceit_rank_history_order_by!]" ], "where": [ - 2014 + 2282 ] } ], "player_faceit_rank_history_by_pk": [ - 2005, + 2273, { "id": [ - 3319, + 3587, "uuid!" ] } ], "player_faceit_rank_history_stream": [ - 2005, + 2273, { "batch_size": [ 34, "Int!" ], "cursor": [ - 2034, + 2302, "[player_faceit_rank_history_stream_cursor_input]!" ], "where": [ - 2014 + 2282 ] } ], "player_flashes": [ - 2046, + 2314, { "distinct_on": [ - 2069, + 2337, "[player_flashes_select_column!]" ], "limit": [ @@ -120466,19 +127224,19 @@ export default { 34 ], "order_by": [ - 2067, + 2335, "[player_flashes_order_by!]" ], "where": [ - 2057 + 2325 ] } ], "player_flashes_aggregate": [ - 2047, + 2315, { "distinct_on": [ - 2069, + 2337, "[player_flashes_select_column!]" ], "limit": [ @@ -120488,16 +127246,16 @@ export default { 34 ], "order_by": [ - 2067, + 2335, "[player_flashes_order_by!]" ], "where": [ - 2057 + 2325 ] } ], "player_flashes_by_pk": [ - 2046, + 2314, { "attacked_steam_id": [ 162, @@ -120508,36 +127266,36 @@ export default { "bigint!" ], "match_map_id": [ - 3319, + 3587, "uuid!" ], "time": [ - 2922, + 3190, "timestamptz!" ] } ], "player_flashes_stream": [ - 2046, + 2314, { "batch_size": [ 34, "Int!" ], "cursor": [ - 2079, + 2347, "[player_flashes_stream_cursor_input]!" ], "where": [ - 2057 + 2325 ] } ], "player_kills": [ - 2091, + 2359, { "distinct_on": [ - 2155, + 2423, "[player_kills_select_column!]" ], "limit": [ @@ -120547,19 +127305,19 @@ export default { 34 ], "order_by": [ - 2153, + 2421, "[player_kills_order_by!]" ], "where": [ - 2102 + 2370 ] } ], "player_kills_aggregate": [ - 2092, + 2360, { "distinct_on": [ - 2155, + 2423, "[player_kills_select_column!]" ], "limit": [ @@ -120569,16 +127327,16 @@ export default { 34 ], "order_by": [ - 2153, + 2421, "[player_kills_order_by!]" ], "where": [ - 2102 + 2370 ] } ], "player_kills_by_pk": [ - 2091, + 2359, { "attacked_steam_id": [ 162, @@ -120589,20 +127347,20 @@ export default { "bigint!" ], "match_map_id": [ - 3319, + 3587, "uuid!" ], "time": [ - 2922, + 3190, "timestamptz!" ] } ], "player_kills_by_weapon": [ - 2103, + 2371, { "distinct_on": [ - 2124, + 2392, "[player_kills_by_weapon_select_column!]" ], "limit": [ @@ -120612,19 +127370,19 @@ export default { 34 ], "order_by": [ - 2122, + 2390, "[player_kills_by_weapon_order_by!]" ], "where": [ - 2112 + 2380 ] } ], "player_kills_by_weapon_aggregate": [ - 2104, + 2372, { "distinct_on": [ - 2124, + 2392, "[player_kills_by_weapon_select_column!]" ], "limit": [ @@ -120634,16 +127392,16 @@ export default { 34 ], "order_by": [ - 2122, + 2390, "[player_kills_by_weapon_order_by!]" ], "where": [ - 2112 + 2380 ] } ], "player_kills_by_weapon_by_pk": [ - 2103, + 2371, { "player_steam_id": [ 162, @@ -120656,42 +127414,42 @@ export default { } ], "player_kills_by_weapon_stream": [ - 2103, + 2371, { "batch_size": [ 34, "Int!" ], "cursor": [ - 2132, + 2400, "[player_kills_by_weapon_stream_cursor_input]!" ], "where": [ - 2112 + 2380 ] } ], "player_kills_stream": [ - 2091, + 2359, { "batch_size": [ 34, "Int!" ], "cursor": [ - 2165, + 2433, "[player_kills_stream_cursor_input]!" ], "where": [ - 2102 + 2370 ] } ], "player_leaderboard_rank": [ - 2177, + 2445, { "distinct_on": [ - 2188, + 2456, "[player_leaderboard_rank_select_column!]" ], "limit": [ @@ -120701,19 +127459,19 @@ export default { 34 ], "order_by": [ - 2187, + 2455, "[player_leaderboard_rank_order_by!]" ], "where": [ - 2181 + 2449 ] } ], "player_leaderboard_rank_aggregate": [ - 2178, + 2446, { "distinct_on": [ - 2188, + 2456, "[player_leaderboard_rank_select_column!]" ], "limit": [ @@ -120723,35 +127481,35 @@ export default { 34 ], "order_by": [ - 2187, + 2455, "[player_leaderboard_rank_order_by!]" ], "where": [ - 2181 + 2449 ] } ], "player_leaderboard_rank_stream": [ - 2177, + 2445, { "batch_size": [ 34, "Int!" ], "cursor": [ - 2193, + 2461, "[player_leaderboard_rank_stream_cursor_input]!" ], "where": [ - 2181 + 2449 ] } ], "player_match_map_stats": [ - 2200, + 2468, { "distinct_on": [ - 2221, + 2489, "[player_match_map_stats_select_column!]" ], "limit": [ @@ -120761,19 +127519,19 @@ export default { 34 ], "order_by": [ - 2219, + 2487, "[player_match_map_stats_order_by!]" ], "where": [ - 2209 + 2477 ] } ], "player_match_map_stats_aggregate": [ - 2201, + 2469, { "distinct_on": [ - 2221, + 2489, "[player_match_map_stats_select_column!]" ], "limit": [ @@ -120783,19 +127541,19 @@ export default { 34 ], "order_by": [ - 2219, + 2487, "[player_match_map_stats_order_by!]" ], "where": [ - 2209 + 2477 ] } ], "player_match_map_stats_by_pk": [ - 2200, + 2468, { "match_map_id": [ - 3319, + 3587, "uuid!" ], "steam_id": [ @@ -120805,26 +127563,26 @@ export default { } ], "player_match_map_stats_stream": [ - 2200, + 2468, { "batch_size": [ 34, "Int!" ], "cursor": [ - 2229, + 2497, "[player_match_map_stats_stream_cursor_input]!" ], "where": [ - 2209 + 2477 ] } ], "player_match_performance_v": [ - 2241, + 2509, { "distinct_on": [ - 2249, + 2517, "[player_match_performance_v_select_column!]" ], "limit": [ @@ -120834,19 +127592,19 @@ export default { 34 ], "order_by": [ - 2248, + 2516, "[player_match_performance_v_order_by!]" ], "where": [ - 2245 + 2513 ] } ], "player_match_performance_v_aggregate": [ - 2242, + 2510, { "distinct_on": [ - 2249, + 2517, "[player_match_performance_v_select_column!]" ], "limit": [ @@ -120856,35 +127614,35 @@ export default { 34 ], "order_by": [ - 2248, + 2516, "[player_match_performance_v_order_by!]" ], "where": [ - 2245 + 2513 ] } ], "player_match_performance_v_stream": [ - 2241, + 2509, { "batch_size": [ 34, "Int!" ], "cursor": [ - 2253, + 2521, "[player_match_performance_v_stream_cursor_input]!" ], "where": [ - 2245 + 2513 ] } ], "player_match_stats_v": [ - 2259, + 2527, { "distinct_on": [ - 2275, + 2543, "[player_match_stats_v_select_column!]" ], "limit": [ @@ -120894,19 +127652,19 @@ export default { 34 ], "order_by": [ - 2274, + 2542, "[player_match_stats_v_order_by!]" ], "where": [ - 2268 + 2536 ] } ], "player_match_stats_v_aggregate": [ - 2260, + 2528, { "distinct_on": [ - 2275, + 2543, "[player_match_stats_v_select_column!]" ], "limit": [ @@ -120916,35 +127674,35 @@ export default { 34 ], "order_by": [ - 2274, + 2542, "[player_match_stats_v_order_by!]" ], "where": [ - 2268 + 2536 ] } ], "player_match_stats_v_stream": [ - 2259, + 2527, { "batch_size": [ 34, "Int!" ], "cursor": [ - 2282, + 2550, "[player_match_stats_v_stream_cursor_input]!" ], "where": [ - 2268 + 2536 ] } ], "player_objectives": [ - 2292, + 2560, { "distinct_on": [ - 2313, + 2581, "[player_objectives_select_column!]" ], "limit": [ @@ -120954,19 +127712,19 @@ export default { 34 ], "order_by": [ - 2311, + 2579, "[player_objectives_order_by!]" ], "where": [ - 2301 + 2569 ] } ], "player_objectives_aggregate": [ - 2293, + 2561, { "distinct_on": [ - 2313, + 2581, "[player_objectives_select_column!]" ], "limit": [ @@ -120976,19 +127734,19 @@ export default { 34 ], "order_by": [ - 2311, + 2579, "[player_objectives_order_by!]" ], "where": [ - 2301 + 2569 ] } ], "player_objectives_by_pk": [ - 2292, + 2560, { "match_map_id": [ - 3319, + 3587, "uuid!" ], "player_steam_id": [ @@ -120996,32 +127754,32 @@ export default { "bigint!" ], "time": [ - 2922, + 3190, "timestamptz!" ] } ], "player_objectives_stream": [ - 2292, + 2560, { "batch_size": [ 34, "Int!" ], "cursor": [ - 2321, + 2589, "[player_objectives_stream_cursor_input]!" ], "where": [ - 2301 + 2569 ] } ], "player_performance_v": [ - 2333, + 2601, { "distinct_on": [ - 2341, + 2609, "[player_performance_v_select_column!]" ], "limit": [ @@ -121031,19 +127789,19 @@ export default { 34 ], "order_by": [ - 2340, + 2608, "[player_performance_v_order_by!]" ], "where": [ - 2337 + 2605 ] } ], "player_performance_v_aggregate": [ - 2334, + 2602, { "distinct_on": [ - 2341, + 2609, "[player_performance_v_select_column!]" ], "limit": [ @@ -121053,35 +127811,35 @@ export default { 34 ], "order_by": [ - 2340, + 2608, "[player_performance_v_order_by!]" ], "where": [ - 2337 + 2605 ] } ], "player_performance_v_stream": [ - 2333, + 2601, { "batch_size": [ 34, "Int!" ], "cursor": [ - 2345, + 2613, "[player_performance_v_stream_cursor_input]!" ], "where": [ - 2337 + 2605 ] } ], "player_premier_rank_history": [ - 2351, + 2619, { "distinct_on": [ - 2372, + 2640, "[player_premier_rank_history_select_column!]" ], "limit": [ @@ -121091,19 +127849,19 @@ export default { 34 ], "order_by": [ - 2370, + 2638, "[player_premier_rank_history_order_by!]" ], "where": [ - 2360 + 2628 ] } ], "player_premier_rank_history_aggregate": [ - 2352, + 2620, { "distinct_on": [ - 2372, + 2640, "[player_premier_rank_history_select_column!]" ], "limit": [ @@ -121113,44 +127871,44 @@ export default { 34 ], "order_by": [ - 2370, + 2638, "[player_premier_rank_history_order_by!]" ], "where": [ - 2360 + 2628 ] } ], "player_premier_rank_history_by_pk": [ - 2351, + 2619, { "id": [ - 3319, + 3587, "uuid!" ] } ], "player_premier_rank_history_stream": [ - 2351, + 2619, { "batch_size": [ 34, "Int!" ], "cursor": [ - 2380, + 2648, "[player_premier_rank_history_stream_cursor_input]!" ], "where": [ - 2360 + 2628 ] } ], "player_sanctions": [ - 2392, + 2660, { "distinct_on": [ - 2413, + 2681, "[player_sanctions_select_column!]" ], "limit": [ @@ -121160,19 +127918,19 @@ export default { 34 ], "order_by": [ - 2411, + 2679, "[player_sanctions_order_by!]" ], "where": [ - 2401 + 2669 ] } ], "player_sanctions_aggregate": [ - 2393, + 2661, { "distinct_on": [ - 2413, + 2681, "[player_sanctions_select_column!]" ], "limit": [ @@ -121182,48 +127940,48 @@ export default { 34 ], "order_by": [ - 2411, + 2679, "[player_sanctions_order_by!]" ], "where": [ - 2401 + 2669 ] } ], "player_sanctions_by_pk": [ - 2392, + 2660, { "created_at": [ - 2922, + 3190, "timestamptz!" ], "id": [ - 3319, + 3587, "uuid!" ] } ], "player_sanctions_stream": [ - 2392, + 2660, { "batch_size": [ 34, "Int!" ], "cursor": [ - 2421, + 2689, "[player_sanctions_stream_cursor_input]!" ], "where": [ - 2401 + 2669 ] } ], "player_stats": [ - 2433, + 2701, { "distinct_on": [ - 2448, + 2716, "[player_stats_select_column!]" ], "limit": [ @@ -121233,19 +127991,19 @@ export default { 34 ], "order_by": [ - 2446, + 2714, "[player_stats_order_by!]" ], "where": [ - 2437 + 2705 ] } ], "player_stats_aggregate": [ - 2434, + 2702, { "distinct_on": [ - 2448, + 2716, "[player_stats_select_column!]" ], "limit": [ @@ -121255,16 +128013,16 @@ export default { 34 ], "order_by": [ - 2446, + 2714, "[player_stats_order_by!]" ], "where": [ - 2437 + 2705 ] } ], "player_stats_by_pk": [ - 2433, + 2701, { "player_steam_id": [ 162, @@ -121273,26 +128031,26 @@ export default { } ], "player_stats_stream": [ - 2433, + 2701, { "batch_size": [ 34, "Int!" ], "cursor": [ - 2453, + 2721, "[player_stats_stream_cursor_input]!" ], "where": [ - 2437 + 2705 ] } ], "player_steam_match_auth": [ - 2461, + 2729, { "distinct_on": [ - 2475, + 2743, "[player_steam_match_auth_select_column!]" ], "limit": [ @@ -121302,19 +128060,19 @@ export default { 34 ], "order_by": [ - 2473, + 2741, "[player_steam_match_auth_order_by!]" ], "where": [ - 2465 + 2733 ] } ], "player_steam_match_auth_aggregate": [ - 2462, + 2730, { "distinct_on": [ - 2475, + 2743, "[player_steam_match_auth_select_column!]" ], "limit": [ @@ -121324,16 +128082,16 @@ export default { 34 ], "order_by": [ - 2473, + 2741, "[player_steam_match_auth_order_by!]" ], "where": [ - 2465 + 2733 ] } ], "player_steam_match_auth_by_pk": [ - 2461, + 2729, { "steam_id": [ 162, @@ -121342,26 +128100,26 @@ export default { } ], "player_steam_match_auth_stream": [ - 2461, + 2729, { "batch_size": [ 34, "Int!" ], "cursor": [ - 2480, + 2748, "[player_steam_match_auth_stream_cursor_input]!" ], "where": [ - 2465 + 2733 ] } ], "player_unused_utility": [ - 2488, + 2756, { "distinct_on": [ - 2509, + 2777, "[player_unused_utility_select_column!]" ], "limit": [ @@ -121371,19 +128129,19 @@ export default { 34 ], "order_by": [ - 2507, + 2775, "[player_unused_utility_order_by!]" ], "where": [ - 2497 + 2765 ] } ], "player_unused_utility_aggregate": [ - 2489, + 2757, { "distinct_on": [ - 2509, + 2777, "[player_unused_utility_select_column!]" ], "limit": [ @@ -121393,19 +128151,19 @@ export default { 34 ], "order_by": [ - 2507, + 2775, "[player_unused_utility_order_by!]" ], "where": [ - 2497 + 2765 ] } ], "player_unused_utility_by_pk": [ - 2488, + 2756, { "match_map_id": [ - 3319, + 3587, "uuid!" ], "player_steam_id": [ @@ -121415,26 +128173,26 @@ export default { } ], "player_unused_utility_stream": [ - 2488, + 2756, { "batch_size": [ 34, "Int!" ], "cursor": [ - 2517, + 2785, "[player_unused_utility_stream_cursor_input]!" ], "where": [ - 2497 + 2765 ] } ], "player_utility": [ - 2529, + 2797, { "distinct_on": [ - 2550, + 2818, "[player_utility_select_column!]" ], "limit": [ @@ -121444,19 +128202,19 @@ export default { 34 ], "order_by": [ - 2548, + 2816, "[player_utility_order_by!]" ], "where": [ - 2538 + 2806 ] } ], "player_utility_aggregate": [ - 2530, + 2798, { "distinct_on": [ - 2550, + 2818, "[player_utility_select_column!]" ], "limit": [ @@ -121466,52 +128224,52 @@ export default { 34 ], "order_by": [ - 2548, + 2816, "[player_utility_order_by!]" ], "where": [ - 2538 + 2806 ] } ], "player_utility_by_pk": [ - 2529, + 2797, { "attacker_steam_id": [ 162, "bigint!" ], "match_map_id": [ - 3319, + 3587, "uuid!" ], "time": [ - 2922, + 3190, "timestamptz!" ] } ], "player_utility_stream": [ - 2529, + 2797, { "batch_size": [ 34, "Int!" ], "cursor": [ - 2558, + 2826, "[player_utility_stream_cursor_input]!" ], "where": [ - 2538 + 2806 ] } ], "player_weapon_stats_v": [ - 2570, + 2838, { "distinct_on": [ - 2586, + 2854, "[player_weapon_stats_v_select_column!]" ], "limit": [ @@ -121521,19 +128279,19 @@ export default { 34 ], "order_by": [ - 2585, + 2853, "[player_weapon_stats_v_order_by!]" ], "where": [ - 2579 + 2847 ] } ], "player_weapon_stats_v_aggregate": [ - 2571, + 2839, { "distinct_on": [ - 2586, + 2854, "[player_weapon_stats_v_select_column!]" ], "limit": [ @@ -121543,35 +128301,35 @@ export default { 34 ], "order_by": [ - 2585, + 2853, "[player_weapon_stats_v_order_by!]" ], "where": [ - 2579 + 2847 ] } ], "player_weapon_stats_v_stream": [ - 2570, + 2838, { "batch_size": [ 34, "Int!" ], "cursor": [ - 2593, + 2861, "[player_weapon_stats_v_stream_cursor_input]!" ], "where": [ - 2579 + 2847 ] } ], "players": [ - 2603, + 2871, { "distinct_on": [ - 2618, + 2886, "[players_select_column!]" ], "limit": [ @@ -121581,19 +128339,19 @@ export default { 34 ], "order_by": [ - 2616, + 2884, "[players_order_by!]" ], "where": [ - 2607 + 2875 ] } ], "players_aggregate": [ - 2604, + 2872, { "distinct_on": [ - 2618, + 2886, "[players_select_column!]" ], "limit": [ @@ -121603,16 +128361,16 @@ export default { 34 ], "order_by": [ - 2616, + 2884, "[players_order_by!]" ], "where": [ - 2607 + 2875 ] } ], "players_by_pk": [ - 2603, + 2871, { "steam_id": [ 162, @@ -121621,26 +128379,26 @@ export default { } ], "players_stream": [ - 2603, + 2871, { "batch_size": [ 34, "Int!" ], "cursor": [ - 2623, + 2891, "[players_stream_cursor_input]!" ], "where": [ - 2607 + 2875 ] } ], "plugin_versions": [ - 2631, + 2899, { "distinct_on": [ - 2645, + 2913, "[plugin_versions_select_column!]" ], "limit": [ @@ -121650,19 +128408,19 @@ export default { 34 ], "order_by": [ - 2643, + 2911, "[plugin_versions_order_by!]" ], "where": [ - 2635 + 2903 ] } ], "plugin_versions_aggregate": [ - 2632, + 2900, { "distinct_on": [ - 2645, + 2913, "[plugin_versions_select_column!]" ], "limit": [ @@ -121672,16 +128430,16 @@ export default { 34 ], "order_by": [ - 2643, + 2911, "[plugin_versions_order_by!]" ], "where": [ - 2635 + 2903 ] } ], "plugin_versions_by_pk": [ - 2631, + 2899, { "version": [ 63, @@ -121690,26 +128448,26 @@ export default { } ], "plugin_versions_stream": [ - 2631, + 2899, { "batch_size": [ 34, "Int!" ], "cursor": [ - 2650, + 2918, "[plugin_versions_stream_cursor_input]!" ], "where": [ - 2635 + 2903 ] } ], "server_regions": [ - 2659, + 2927, { "distinct_on": [ - 2673, + 2941, "[server_regions_select_column!]" ], "limit": [ @@ -121719,19 +128477,19 @@ export default { 34 ], "order_by": [ - 2671, + 2939, "[server_regions_order_by!]" ], "where": [ - 2663 + 2931 ] } ], "server_regions_aggregate": [ - 2660, + 2928, { "distinct_on": [ - 2673, + 2941, "[server_regions_select_column!]" ], "limit": [ @@ -121741,16 +128499,16 @@ export default { 34 ], "order_by": [ - 2671, + 2939, "[server_regions_order_by!]" ], "where": [ - 2663 + 2931 ] } ], "server_regions_by_pk": [ - 2659, + 2927, { "value": [ 63, @@ -121759,26 +128517,26 @@ export default { } ], "server_regions_stream": [ - 2659, + 2927, { "batch_size": [ 34, "Int!" ], "cursor": [ - 2678, + 2946, "[server_regions_stream_cursor_input]!" ], "where": [ - 2663 + 2931 ] } ], "servers": [ - 2686, + 2954, { "distinct_on": [ - 2710, + 2978, "[servers_select_column!]" ], "limit": [ @@ -121788,19 +128546,19 @@ export default { 34 ], "order_by": [ - 2708, + 2976, "[servers_order_by!]" ], "where": [ - 2697 + 2965 ] } ], "servers_aggregate": [ - 2687, + 2955, { "distinct_on": [ - 2710, + 2978, "[servers_select_column!]" ], "limit": [ @@ -121810,44 +128568,44 @@ export default { 34 ], "order_by": [ - 2708, + 2976, "[servers_order_by!]" ], "where": [ - 2697 + 2965 ] } ], "servers_by_pk": [ - 2686, + 2954, { "id": [ - 3319, + 3587, "uuid!" ] } ], "servers_stream": [ - 2686, + 2954, { "batch_size": [ 34, "Int!" ], "cursor": [ - 2720, + 2988, "[servers_stream_cursor_input]!" ], "where": [ - 2697 + 2965 ] } ], "settings": [ - 2732, + 3000, { "distinct_on": [ - 2744, + 3012, "[settings_select_column!]" ], "limit": [ @@ -121857,19 +128615,19 @@ export default { 34 ], "order_by": [ - 2742, + 3010, "[settings_order_by!]" ], "where": [ - 2735 + 3003 ] } ], "settings_aggregate": [ - 2733, + 3001, { "distinct_on": [ - 2744, + 3012, "[settings_select_column!]" ], "limit": [ @@ -121879,16 +128637,16 @@ export default { 34 ], "order_by": [ - 2742, + 3010, "[settings_order_by!]" ], "where": [ - 2735 + 3003 ] } ], "settings_by_pk": [ - 2732, + 3000, { "name": [ 63, @@ -121897,26 +128655,26 @@ export default { } ], "settings_stream": [ - 2732, + 3000, { "batch_size": [ 34, "Int!" ], "cursor": [ - 2746, + 3014, "[settings_stream_cursor_input]!" ], "where": [ - 2735 + 3003 ] } ], "steam_account_claims": [ - 2750, + 3018, { "distinct_on": [ - 2768, + 3036, "[steam_account_claims_select_column!]" ], "limit": [ @@ -121926,19 +128684,19 @@ export default { 34 ], "order_by": [ - 2766, + 3034, "[steam_account_claims_order_by!]" ], "where": [ - 2757 + 3025 ] } ], "steam_account_claims_aggregate": [ - 2751, + 3019, { "distinct_on": [ - 2768, + 3036, "[steam_account_claims_select_column!]" ], "limit": [ @@ -121948,44 +128706,44 @@ export default { 34 ], "order_by": [ - 2766, + 3034, "[steam_account_claims_order_by!]" ], "where": [ - 2757 + 3025 ] } ], "steam_account_claims_by_pk": [ - 2750, + 3018, { "id": [ - 3319, + 3587, "uuid!" ] } ], "steam_account_claims_stream": [ - 2750, + 3018, { "batch_size": [ 34, "Int!" ], "cursor": [ - 2770, + 3038, "[steam_account_claims_stream_cursor_input]!" ], "where": [ - 2757 + 3025 ] } ], "steam_accounts": [ - 2774, + 3042, { "distinct_on": [ - 2787, + 3055, "[steam_accounts_select_column!]" ], "limit": [ @@ -121995,19 +128753,19 @@ export default { 34 ], "order_by": [ - 2785, + 3053, "[steam_accounts_order_by!]" ], "where": [ - 2777 + 3045 ] } ], "steam_accounts_aggregate": [ - 2775, + 3043, { "distinct_on": [ - 2787, + 3055, "[steam_accounts_select_column!]" ], "limit": [ @@ -122017,44 +128775,44 @@ export default { 34 ], "order_by": [ - 2785, + 3053, "[steam_accounts_order_by!]" ], "where": [ - 2777 + 3045 ] } ], "steam_accounts_by_pk": [ - 2774, + 3042, { "id": [ - 3319, + 3587, "uuid!" ] } ], "steam_accounts_stream": [ - 2774, + 3042, { "batch_size": [ 34, "Int!" ], "cursor": [ - 2789, + 3057, "[steam_accounts_stream_cursor_input]!" ], "where": [ - 2777 + 3045 ] } ], "team_invites": [ - 2793, + 3061, { "distinct_on": [ - 2814, + 3082, "[team_invites_select_column!]" ], "limit": [ @@ -122064,19 +128822,19 @@ export default { 34 ], "order_by": [ - 2812, + 3080, "[team_invites_order_by!]" ], "where": [ - 2802 + 3070 ] } ], "team_invites_aggregate": [ - 2794, + 3062, { "distinct_on": [ - 2814, + 3082, "[team_invites_select_column!]" ], "limit": [ @@ -122086,44 +128844,44 @@ export default { 34 ], "order_by": [ - 2812, + 3080, "[team_invites_order_by!]" ], "where": [ - 2802 + 3070 ] } ], "team_invites_by_pk": [ - 2793, + 3061, { "id": [ - 3319, + 3587, "uuid!" ] } ], "team_invites_stream": [ - 2793, + 3061, { "batch_size": [ 34, "Int!" ], "cursor": [ - 2822, + 3090, "[team_invites_stream_cursor_input]!" ], "where": [ - 2802 + 3070 ] } ], "team_roster": [ - 2834, + 3102, { "distinct_on": [ - 2857, + 3125, "[team_roster_select_column!]" ], "limit": [ @@ -122133,19 +128891,19 @@ export default { 34 ], "order_by": [ - 2855, + 3123, "[team_roster_order_by!]" ], "where": [ - 2845 + 3113 ] } ], "team_roster_aggregate": [ - 2835, + 3103, { "distinct_on": [ - 2857, + 3125, "[team_roster_select_column!]" ], "limit": [ @@ -122155,48 +128913,48 @@ export default { 34 ], "order_by": [ - 2855, + 3123, "[team_roster_order_by!]" ], "where": [ - 2845 + 3113 ] } ], "team_roster_by_pk": [ - 2834, + 3102, { "player_steam_id": [ 162, "bigint!" ], "team_id": [ - 3319, + 3587, "uuid!" ] } ], "team_roster_stream": [ - 2834, + 3102, { "batch_size": [ 34, "Int!" ], "cursor": [ - 2867, + 3135, "[team_roster_stream_cursor_input]!" ], "where": [ - 2845 + 3113 ] } ], "teams": [ - 2879, + 3147, { "distinct_on": [ - 2901, + 3169, "[teams_select_column!]" ], "limit": [ @@ -122206,19 +128964,19 @@ export default { 34 ], "order_by": [ - 2899, + 3167, "[teams_order_by!]" ], "where": [ - 2888 + 3156 ] } ], "teams_aggregate": [ - 2880, + 3148, { "distinct_on": [ - 2901, + 3169, "[teams_select_column!]" ], "limit": [ @@ -122228,44 +128986,44 @@ export default { 34 ], "order_by": [ - 2899, + 3167, "[teams_order_by!]" ], "where": [ - 2888 + 3156 ] } ], "teams_by_pk": [ - 2879, + 3147, { "id": [ - 3319, + 3587, "uuid!" ] } ], "teams_stream": [ - 2879, + 3147, { "batch_size": [ 34, "Int!" ], "cursor": [ - 2909, + 3177, "[teams_stream_cursor_input]!" ], "where": [ - 2888 + 3156 ] } ], "tournament_brackets": [ - 2924, + 3192, { "distinct_on": [ - 2948, + 3216, "[tournament_brackets_select_column!]" ], "limit": [ @@ -122275,19 +129033,19 @@ export default { 34 ], "order_by": [ - 2946, + 3214, "[tournament_brackets_order_by!]" ], "where": [ - 2935 + 3203 ] } ], "tournament_brackets_aggregate": [ - 2925, + 3193, { "distinct_on": [ - 2948, + 3216, "[tournament_brackets_select_column!]" ], "limit": [ @@ -122297,44 +129055,44 @@ export default { 34 ], "order_by": [ - 2946, + 3214, "[tournament_brackets_order_by!]" ], "where": [ - 2935 + 3203 ] } ], "tournament_brackets_by_pk": [ - 2924, + 3192, { "id": [ - 3319, + 3587, "uuid!" ] } ], "tournament_brackets_stream": [ - 2924, + 3192, { "batch_size": [ 34, "Int!" ], "cursor": [ - 2958, + 3226, "[tournament_brackets_stream_cursor_input]!" ], "where": [ - 2935 + 3203 ] } ], "tournament_organizers": [ - 2970, + 3238, { "distinct_on": [ - 2991, + 3259, "[tournament_organizers_select_column!]" ], "limit": [ @@ -122344,19 +129102,19 @@ export default { 34 ], "order_by": [ - 2989, + 3257, "[tournament_organizers_order_by!]" ], "where": [ - 2979 + 3247 ] } ], "tournament_organizers_aggregate": [ - 2971, + 3239, { "distinct_on": [ - 2991, + 3259, "[tournament_organizers_select_column!]" ], "limit": [ @@ -122366,48 +129124,48 @@ export default { 34 ], "order_by": [ - 2989, + 3257, "[tournament_organizers_order_by!]" ], "where": [ - 2979 + 3247 ] } ], "tournament_organizers_by_pk": [ - 2970, + 3238, { "steam_id": [ 162, "bigint!" ], "tournament_id": [ - 3319, + 3587, "uuid!" ] } ], "tournament_organizers_stream": [ - 2970, + 3238, { "batch_size": [ 34, "Int!" ], "cursor": [ - 2999, + 3267, "[tournament_organizers_stream_cursor_input]!" ], "where": [ - 2979 + 3247 ] } ], "tournament_stages": [ - 3011, + 3279, { "distinct_on": [ - 3040, + 3308, "[tournament_stages_select_column!]" ], "limit": [ @@ -122417,19 +129175,19 @@ export default { 34 ], "order_by": [ - 3037, + 3305, "[tournament_stages_order_by!]" ], "where": [ - 3023 + 3291 ] } ], "tournament_stages_aggregate": [ - 3012, + 3280, { "distinct_on": [ - 3040, + 3308, "[tournament_stages_select_column!]" ], "limit": [ @@ -122439,44 +129197,44 @@ export default { 34 ], "order_by": [ - 3037, + 3305, "[tournament_stages_order_by!]" ], "where": [ - 3023 + 3291 ] } ], "tournament_stages_by_pk": [ - 3011, + 3279, { "id": [ - 3319, + 3587, "uuid!" ] } ], "tournament_stages_stream": [ - 3011, + 3279, { "batch_size": [ 34, "Int!" ], "cursor": [ - 3050, + 3318, "[tournament_stages_stream_cursor_input]!" ], "where": [ - 3023 + 3291 ] } ], "tournament_team_invites": [ - 3062, + 3330, { "distinct_on": [ - 3083, + 3351, "[tournament_team_invites_select_column!]" ], "limit": [ @@ -122486,19 +129244,19 @@ export default { 34 ], "order_by": [ - 3081, + 3349, "[tournament_team_invites_order_by!]" ], "where": [ - 3071 + 3339 ] } ], "tournament_team_invites_aggregate": [ - 3063, + 3331, { "distinct_on": [ - 3083, + 3351, "[tournament_team_invites_select_column!]" ], "limit": [ @@ -122508,44 +129266,44 @@ export default { 34 ], "order_by": [ - 3081, + 3349, "[tournament_team_invites_order_by!]" ], "where": [ - 3071 + 3339 ] } ], "tournament_team_invites_by_pk": [ - 3062, + 3330, { "id": [ - 3319, + 3587, "uuid!" ] } ], "tournament_team_invites_stream": [ - 3062, + 3330, { "batch_size": [ 34, "Int!" ], "cursor": [ - 3091, + 3359, "[tournament_team_invites_stream_cursor_input]!" ], "where": [ - 3071 + 3339 ] } ], "tournament_team_roster": [ - 3103, + 3371, { "distinct_on": [ - 3124, + 3392, "[tournament_team_roster_select_column!]" ], "limit": [ @@ -122555,19 +129313,19 @@ export default { 34 ], "order_by": [ - 3122, + 3390, "[tournament_team_roster_order_by!]" ], "where": [ - 3112 + 3380 ] } ], "tournament_team_roster_aggregate": [ - 3104, + 3372, { "distinct_on": [ - 3124, + 3392, "[tournament_team_roster_select_column!]" ], "limit": [ @@ -122577,48 +129335,48 @@ export default { 34 ], "order_by": [ - 3122, + 3390, "[tournament_team_roster_order_by!]" ], "where": [ - 3112 + 3380 ] } ], "tournament_team_roster_by_pk": [ - 3103, + 3371, { "player_steam_id": [ 162, "bigint!" ], "tournament_id": [ - 3319, + 3587, "uuid!" ] } ], "tournament_team_roster_stream": [ - 3103, + 3371, { "batch_size": [ 34, "Int!" ], "cursor": [ - 3132, + 3400, "[tournament_team_roster_stream_cursor_input]!" ], "where": [ - 3112 + 3380 ] } ], "tournament_teams": [ - 3144, + 3412, { "distinct_on": [ - 3166, + 3434, "[tournament_teams_select_column!]" ], "limit": [ @@ -122628,19 +129386,19 @@ export default { 34 ], "order_by": [ - 3164, + 3432, "[tournament_teams_order_by!]" ], "where": [ - 3153 + 3421 ] } ], "tournament_teams_aggregate": [ - 3145, + 3413, { "distinct_on": [ - 3166, + 3434, "[tournament_teams_select_column!]" ], "limit": [ @@ -122650,44 +129408,44 @@ export default { 34 ], "order_by": [ - 3164, + 3432, "[tournament_teams_order_by!]" ], "where": [ - 3153 + 3421 ] } ], "tournament_teams_by_pk": [ - 3144, + 3412, { "id": [ - 3319, + 3587, "uuid!" ] } ], "tournament_teams_stream": [ - 3144, + 3412, { "batch_size": [ 34, "Int!" ], "cursor": [ - 3174, + 3442, "[tournament_teams_stream_cursor_input]!" ], "where": [ - 3153 + 3421 ] } ], "tournament_trophies": [ - 3186, + 3454, { "distinct_on": [ - 3209, + 3477, "[tournament_trophies_select_column!]" ], "limit": [ @@ -122697,19 +129455,19 @@ export default { 34 ], "order_by": [ - 3207, + 3475, "[tournament_trophies_order_by!]" ], "where": [ - 3197 + 3465 ] } ], "tournament_trophies_aggregate": [ - 3187, + 3455, { "distinct_on": [ - 3209, + 3477, "[tournament_trophies_select_column!]" ], "limit": [ @@ -122719,44 +129477,44 @@ export default { 34 ], "order_by": [ - 3207, + 3475, "[tournament_trophies_order_by!]" ], "where": [ - 3197 + 3465 ] } ], "tournament_trophies_by_pk": [ - 3186, + 3454, { "id": [ - 3319, + 3587, "uuid!" ] } ], "tournament_trophies_stream": [ - 3186, + 3454, { "batch_size": [ 34, "Int!" ], "cursor": [ - 3219, + 3487, "[tournament_trophies_stream_cursor_input]!" ], "where": [ - 3197 + 3465 ] } ], "tournament_trophy_configs": [ - 3231, + 3499, { "distinct_on": [ - 3253, + 3521, "[tournament_trophy_configs_select_column!]" ], "limit": [ @@ -122766,19 +129524,19 @@ export default { 34 ], "order_by": [ - 3251, + 3519, "[tournament_trophy_configs_order_by!]" ], "where": [ - 3240 + 3508 ] } ], "tournament_trophy_configs_aggregate": [ - 3232, + 3500, { "distinct_on": [ - 3253, + 3521, "[tournament_trophy_configs_select_column!]" ], "limit": [ @@ -122788,44 +129546,44 @@ export default { 34 ], "order_by": [ - 3251, + 3519, "[tournament_trophy_configs_order_by!]" ], "where": [ - 3240 + 3508 ] } ], "tournament_trophy_configs_by_pk": [ - 3231, + 3499, { "id": [ - 3319, + 3587, "uuid!" ] } ], "tournament_trophy_configs_stream": [ - 3231, + 3499, { "batch_size": [ 34, "Int!" ], "cursor": [ - 3261, + 3529, "[tournament_trophy_configs_stream_cursor_input]!" ], "where": [ - 3240 + 3508 ] } ], "tournaments": [ - 3273, + 3541, { "distinct_on": [ - 3297, + 3565, "[tournaments_select_column!]" ], "limit": [ @@ -122835,19 +129593,19 @@ export default { 34 ], "order_by": [ - 3295, + 3563, "[tournaments_order_by!]" ], "where": [ - 3284 + 3552 ] } ], "tournaments_aggregate": [ - 3274, + 3542, { "distinct_on": [ - 3297, + 3565, "[tournaments_select_column!]" ], "limit": [ @@ -122857,44 +129615,44 @@ export default { 34 ], "order_by": [ - 3295, + 3563, "[tournaments_order_by!]" ], "where": [ - 3284 + 3552 ] } ], "tournaments_by_pk": [ - 3273, + 3541, { "id": [ - 3319, + 3587, "uuid!" ] } ], "tournaments_stream": [ - 3273, + 3541, { "batch_size": [ 34, "Int!" ], "cursor": [ - 3307, + 3575, "[tournaments_stream_cursor_input]!" ], "where": [ - 3284 + 3552 ] } ], "v_gpu_pool_status": [ - 3321, + 3589, { "distinct_on": [ - 3329, + 3597, "[v_gpu_pool_status_select_column!]" ], "limit": [ @@ -122904,19 +129662,19 @@ export default { 34 ], "order_by": [ - 3328, + 3596, "[v_gpu_pool_status_order_by!]" ], "where": [ - 3325 + 3593 ] } ], "v_gpu_pool_status_aggregate": [ - 3322, + 3590, { "distinct_on": [ - 3329, + 3597, "[v_gpu_pool_status_select_column!]" ], "limit": [ @@ -122926,35 +129684,35 @@ export default { 34 ], "order_by": [ - 3328, + 3596, "[v_gpu_pool_status_order_by!]" ], "where": [ - 3325 + 3593 ] } ], "v_gpu_pool_status_stream": [ - 3321, + 3589, { "batch_size": [ 34, "Int!" ], "cursor": [ - 3333, + 3601, "[v_gpu_pool_status_stream_cursor_input]!" ], "where": [ - 3325 + 3593 ] } ], "v_match_captains": [ - 3339, + 3607, { "distinct_on": [ - 3351, + 3619, "[v_match_captains_select_column!]" ], "limit": [ @@ -122964,19 +129722,19 @@ export default { 34 ], "order_by": [ - 3350, + 3618, "[v_match_captains_order_by!]" ], "where": [ - 3343 + 3611 ] } ], "v_match_captains_aggregate": [ - 3340, + 3608, { "distinct_on": [ - 3351, + 3619, "[v_match_captains_select_column!]" ], "limit": [ @@ -122986,35 +129744,35 @@ export default { 34 ], "order_by": [ - 3350, + 3618, "[v_match_captains_order_by!]" ], "where": [ - 3343 + 3611 ] } ], "v_match_captains_stream": [ - 3339, + 3607, { "batch_size": [ 34, "Int!" ], "cursor": [ - 3356, + 3624, "[v_match_captains_stream_cursor_input]!" ], "where": [ - 3343 + 3611 ] } ], "v_match_clutches": [ - 3363, + 3631, { "distinct_on": [ - 3379, + 3647, "[v_match_clutches_select_column!]" ], "limit": [ @@ -123024,19 +129782,19 @@ export default { 34 ], "order_by": [ - 3378, + 3646, "[v_match_clutches_order_by!]" ], "where": [ - 3372 + 3640 ] } ], "v_match_clutches_aggregate": [ - 3364, + 3632, { "distinct_on": [ - 3379, + 3647, "[v_match_clutches_select_column!]" ], "limit": [ @@ -123046,35 +129804,35 @@ export default { 34 ], "order_by": [ - 3378, + 3646, "[v_match_clutches_order_by!]" ], "where": [ - 3372 + 3640 ] } ], "v_match_clutches_stream": [ - 3363, + 3631, { "batch_size": [ 34, "Int!" ], "cursor": [ - 3386, + 3654, "[v_match_clutches_stream_cursor_input]!" ], "where": [ - 3372 + 3640 ] } ], "v_match_kill_pairs": [ - 3396, + 3664, { "distinct_on": [ - 3404, + 3672, "[v_match_kill_pairs_select_column!]" ], "limit": [ @@ -123084,19 +129842,19 @@ export default { 34 ], "order_by": [ - 3403, + 3671, "[v_match_kill_pairs_order_by!]" ], "where": [ - 3400 + 3668 ] } ], "v_match_kill_pairs_aggregate": [ - 3397, + 3665, { "distinct_on": [ - 3404, + 3672, "[v_match_kill_pairs_select_column!]" ], "limit": [ @@ -123106,35 +129864,35 @@ export default { 34 ], "order_by": [ - 3403, + 3671, "[v_match_kill_pairs_order_by!]" ], "where": [ - 3400 + 3668 ] } ], "v_match_kill_pairs_stream": [ - 3396, + 3664, { "batch_size": [ 34, "Int!" ], "cursor": [ - 3408, + 3676, "[v_match_kill_pairs_stream_cursor_input]!" ], "where": [ - 3400 + 3668 ] } ], "v_match_lineup_buy_types": [ - 3414, + 3682, { "distinct_on": [ - 3422, + 3690, "[v_match_lineup_buy_types_select_column!]" ], "limit": [ @@ -123144,19 +129902,19 @@ export default { 34 ], "order_by": [ - 3421, + 3689, "[v_match_lineup_buy_types_order_by!]" ], "where": [ - 3418 + 3686 ] } ], "v_match_lineup_buy_types_aggregate": [ - 3415, + 3683, { "distinct_on": [ - 3422, + 3690, "[v_match_lineup_buy_types_select_column!]" ], "limit": [ @@ -123166,35 +129924,35 @@ export default { 34 ], "order_by": [ - 3421, + 3689, "[v_match_lineup_buy_types_order_by!]" ], "where": [ - 3418 + 3686 ] } ], "v_match_lineup_buy_types_stream": [ - 3414, + 3682, { "batch_size": [ 34, "Int!" ], "cursor": [ - 3426, + 3694, "[v_match_lineup_buy_types_stream_cursor_input]!" ], "where": [ - 3418 + 3686 ] } ], "v_match_lineup_map_stats": [ - 3432, + 3700, { "distinct_on": [ - 3440, + 3708, "[v_match_lineup_map_stats_select_column!]" ], "limit": [ @@ -123204,19 +129962,19 @@ export default { 34 ], "order_by": [ - 3439, + 3707, "[v_match_lineup_map_stats_order_by!]" ], "where": [ - 3436 + 3704 ] } ], "v_match_lineup_map_stats_aggregate": [ - 3433, + 3701, { "distinct_on": [ - 3440, + 3708, "[v_match_lineup_map_stats_select_column!]" ], "limit": [ @@ -123226,35 +129984,35 @@ export default { 34 ], "order_by": [ - 3439, + 3707, "[v_match_lineup_map_stats_order_by!]" ], "where": [ - 3436 + 3704 ] } ], "v_match_lineup_map_stats_stream": [ - 3432, + 3700, { "batch_size": [ 34, "Int!" ], "cursor": [ - 3444, + 3712, "[v_match_lineup_map_stats_stream_cursor_input]!" ], "where": [ - 3436 + 3704 ] } ], "v_match_map_backup_rounds": [ - 3450, + 3718, { "distinct_on": [ - 3461, + 3729, "[v_match_map_backup_rounds_select_column!]" ], "limit": [ @@ -123264,19 +130022,19 @@ export default { 34 ], "order_by": [ - 3460, + 3728, "[v_match_map_backup_rounds_order_by!]" ], "where": [ - 3454 + 3722 ] } ], "v_match_map_backup_rounds_aggregate": [ - 3451, + 3719, { "distinct_on": [ - 3461, + 3729, "[v_match_map_backup_rounds_select_column!]" ], "limit": [ @@ -123286,35 +130044,35 @@ export default { 34 ], "order_by": [ - 3460, + 3728, "[v_match_map_backup_rounds_order_by!]" ], "where": [ - 3454 + 3722 ] } ], "v_match_map_backup_rounds_stream": [ - 3450, + 3718, { "batch_size": [ 34, "Int!" ], "cursor": [ - 3466, + 3734, "[v_match_map_backup_rounds_stream_cursor_input]!" ], "where": [ - 3454 + 3722 ] } ], "v_match_player_buy_types": [ - 3473, + 3741, { "distinct_on": [ - 3481, + 3749, "[v_match_player_buy_types_select_column!]" ], "limit": [ @@ -123324,19 +130082,19 @@ export default { 34 ], "order_by": [ - 3480, + 3748, "[v_match_player_buy_types_order_by!]" ], "where": [ - 3477 + 3745 ] } ], "v_match_player_buy_types_aggregate": [ - 3474, + 3742, { "distinct_on": [ - 3481, + 3749, "[v_match_player_buy_types_select_column!]" ], "limit": [ @@ -123346,35 +130104,35 @@ export default { 34 ], "order_by": [ - 3480, + 3748, "[v_match_player_buy_types_order_by!]" ], "where": [ - 3477 + 3745 ] } ], "v_match_player_buy_types_stream": [ - 3473, + 3741, { "batch_size": [ 34, "Int!" ], "cursor": [ - 3485, + 3753, "[v_match_player_buy_types_stream_cursor_input]!" ], "where": [ - 3477 + 3745 ] } ], "v_match_player_opening_duels": [ - 3491, + 3759, { "distinct_on": [ - 3507, + 3775, "[v_match_player_opening_duels_select_column!]" ], "limit": [ @@ -123384,19 +130142,19 @@ export default { 34 ], "order_by": [ - 3506, + 3774, "[v_match_player_opening_duels_order_by!]" ], "where": [ - 3500 + 3768 ] } ], "v_match_player_opening_duels_aggregate": [ - 3492, + 3760, { "distinct_on": [ - 3507, + 3775, "[v_match_player_opening_duels_select_column!]" ], "limit": [ @@ -123406,35 +130164,35 @@ export default { 34 ], "order_by": [ - 3506, + 3774, "[v_match_player_opening_duels_order_by!]" ], "where": [ - 3500 + 3768 ] } ], "v_match_player_opening_duels_stream": [ - 3491, + 3759, { "batch_size": [ 34, "Int!" ], "cursor": [ - 3514, + 3782, "[v_match_player_opening_duels_stream_cursor_input]!" ], "where": [ - 3500 + 3768 ] } ], "v_player_arch_nemesis": [ - 3524, + 3792, { "distinct_on": [ - 3532, + 3800, "[v_player_arch_nemesis_select_column!]" ], "limit": [ @@ -123444,19 +130202,19 @@ export default { 34 ], "order_by": [ - 3531, + 3799, "[v_player_arch_nemesis_order_by!]" ], "where": [ - 3528 + 3796 ] } ], "v_player_arch_nemesis_aggregate": [ - 3525, + 3793, { "distinct_on": [ - 3532, + 3800, "[v_player_arch_nemesis_select_column!]" ], "limit": [ @@ -123466,35 +130224,35 @@ export default { 34 ], "order_by": [ - 3531, + 3799, "[v_player_arch_nemesis_order_by!]" ], "where": [ - 3528 + 3796 ] } ], "v_player_arch_nemesis_stream": [ - 3524, + 3792, { "batch_size": [ 34, "Int!" ], "cursor": [ - 3536, + 3804, "[v_player_arch_nemesis_stream_cursor_input]!" ], "where": [ - 3528 + 3796 ] } ], "v_player_damage": [ - 3542, + 3810, { "distinct_on": [ - 3550, + 3818, "[v_player_damage_select_column!]" ], "limit": [ @@ -123504,19 +130262,19 @@ export default { 34 ], "order_by": [ - 3549, + 3817, "[v_player_damage_order_by!]" ], "where": [ - 3546 + 3814 ] } ], "v_player_damage_aggregate": [ - 3543, + 3811, { "distinct_on": [ - 3550, + 3818, "[v_player_damage_select_column!]" ], "limit": [ @@ -123526,35 +130284,35 @@ export default { 34 ], "order_by": [ - 3549, + 3817, "[v_player_damage_order_by!]" ], "where": [ - 3546 + 3814 ] } ], "v_player_damage_stream": [ - 3542, + 3810, { "batch_size": [ 34, "Int!" ], "cursor": [ - 3554, + 3822, "[v_player_damage_stream_cursor_input]!" ], "where": [ - 3546 + 3814 ] } ], "v_player_elo": [ - 3560, + 3828, { "distinct_on": [ - 3586, + 3854, "[v_player_elo_select_column!]" ], "limit": [ @@ -123564,19 +130322,19 @@ export default { 34 ], "order_by": [ - 3585, + 3853, "[v_player_elo_order_by!]" ], "where": [ - 3579 + 3847 ] } ], "v_player_elo_aggregate": [ - 3561, + 3829, { "distinct_on": [ - 3586, + 3854, "[v_player_elo_select_column!]" ], "limit": [ @@ -123586,35 +130344,35 @@ export default { 34 ], "order_by": [ - 3585, + 3853, "[v_player_elo_order_by!]" ], "where": [ - 3579 + 3847 ] } ], "v_player_elo_stream": [ - 3560, + 3828, { "batch_size": [ 34, "Int!" ], "cursor": [ - 3601, + 3869, "[v_player_elo_stream_cursor_input]!" ], "where": [ - 3579 + 3847 ] } ], "v_player_map_losses": [ - 3611, + 3879, { "distinct_on": [ - 3619, + 3887, "[v_player_map_losses_select_column!]" ], "limit": [ @@ -123624,19 +130382,19 @@ export default { 34 ], "order_by": [ - 3618, + 3886, "[v_player_map_losses_order_by!]" ], "where": [ - 3615 + 3883 ] } ], "v_player_map_losses_aggregate": [ - 3612, + 3880, { "distinct_on": [ - 3619, + 3887, "[v_player_map_losses_select_column!]" ], "limit": [ @@ -123646,35 +130404,35 @@ export default { 34 ], "order_by": [ - 3618, + 3886, "[v_player_map_losses_order_by!]" ], "where": [ - 3615 + 3883 ] } ], "v_player_map_losses_stream": [ - 3611, + 3879, { "batch_size": [ 34, "Int!" ], "cursor": [ - 3623, + 3891, "[v_player_map_losses_stream_cursor_input]!" ], "where": [ - 3615 + 3883 ] } ], "v_player_map_wins": [ - 3629, + 3897, { "distinct_on": [ - 3637, + 3905, "[v_player_map_wins_select_column!]" ], "limit": [ @@ -123684,19 +130442,19 @@ export default { 34 ], "order_by": [ - 3636, + 3904, "[v_player_map_wins_order_by!]" ], "where": [ - 3633 + 3901 ] } ], "v_player_map_wins_aggregate": [ - 3630, + 3898, { "distinct_on": [ - 3637, + 3905, "[v_player_map_wins_select_column!]" ], "limit": [ @@ -123706,35 +130464,35 @@ export default { 34 ], "order_by": [ - 3636, + 3904, "[v_player_map_wins_order_by!]" ], "where": [ - 3633 + 3901 ] } ], "v_player_map_wins_stream": [ - 3629, + 3897, { "batch_size": [ 34, "Int!" ], "cursor": [ - 3641, + 3909, "[v_player_map_wins_stream_cursor_input]!" ], "where": [ - 3633 + 3901 ] } ], "v_player_match_head_to_head": [ - 3647, + 3915, { "distinct_on": [ - 3655, + 3923, "[v_player_match_head_to_head_select_column!]" ], "limit": [ @@ -123744,19 +130502,19 @@ export default { 34 ], "order_by": [ - 3654, + 3922, "[v_player_match_head_to_head_order_by!]" ], "where": [ - 3651 + 3919 ] } ], "v_player_match_head_to_head_aggregate": [ - 3648, + 3916, { "distinct_on": [ - 3655, + 3923, "[v_player_match_head_to_head_select_column!]" ], "limit": [ @@ -123766,35 +130524,35 @@ export default { 34 ], "order_by": [ - 3654, + 3922, "[v_player_match_head_to_head_order_by!]" ], "where": [ - 3651 + 3919 ] } ], "v_player_match_head_to_head_stream": [ - 3647, + 3915, { "batch_size": [ 34, "Int!" ], "cursor": [ - 3659, + 3927, "[v_player_match_head_to_head_stream_cursor_input]!" ], "where": [ - 3651 + 3919 ] } ], "v_player_match_map_hltv": [ - 3665, + 3933, { "distinct_on": [ - 3683, + 3951, "[v_player_match_map_hltv_select_column!]" ], "limit": [ @@ -123804,19 +130562,19 @@ export default { 34 ], "order_by": [ - 3682, + 3950, "[v_player_match_map_hltv_order_by!]" ], "where": [ - 3674 + 3942 ] } ], "v_player_match_map_hltv_aggregate": [ - 3666, + 3934, { "distinct_on": [ - 3683, + 3951, "[v_player_match_map_hltv_select_column!]" ], "limit": [ @@ -123826,35 +130584,35 @@ export default { 34 ], "order_by": [ - 3682, + 3950, "[v_player_match_map_hltv_order_by!]" ], "where": [ - 3674 + 3942 ] } ], "v_player_match_map_hltv_stream": [ - 3665, + 3933, { "batch_size": [ 34, "Int!" ], "cursor": [ - 3691, + 3959, "[v_player_match_map_hltv_stream_cursor_input]!" ], "where": [ - 3674 + 3942 ] } ], "v_player_match_map_roles": [ - 3702, + 3970, { "distinct_on": [ - 3710, + 3978, "[v_player_match_map_roles_select_column!]" ], "limit": [ @@ -123864,19 +130622,19 @@ export default { 34 ], "order_by": [ - 3709, + 3977, "[v_player_match_map_roles_order_by!]" ], "where": [ - 3706 + 3974 ] } ], "v_player_match_map_roles_aggregate": [ - 3703, + 3971, { "distinct_on": [ - 3710, + 3978, "[v_player_match_map_roles_select_column!]" ], "limit": [ @@ -123886,35 +130644,35 @@ export default { 34 ], "order_by": [ - 3709, + 3977, "[v_player_match_map_roles_order_by!]" ], "where": [ - 3706 + 3974 ] } ], "v_player_match_map_roles_stream": [ - 3702, + 3970, { "batch_size": [ 34, "Int!" ], "cursor": [ - 3714, + 3982, "[v_player_match_map_roles_stream_cursor_input]!" ], "where": [ - 3706 + 3974 ] } ], "v_player_match_performance": [ - 3720, + 3988, { "distinct_on": [ - 3728, + 3996, "[v_player_match_performance_select_column!]" ], "limit": [ @@ -123924,19 +130682,19 @@ export default { 34 ], "order_by": [ - 3727, + 3995, "[v_player_match_performance_order_by!]" ], "where": [ - 3724 + 3992 ] } ], "v_player_match_performance_aggregate": [ - 3721, + 3989, { "distinct_on": [ - 3728, + 3996, "[v_player_match_performance_select_column!]" ], "limit": [ @@ -123946,35 +130704,35 @@ export default { 34 ], "order_by": [ - 3727, + 3995, "[v_player_match_performance_order_by!]" ], "where": [ - 3724 + 3992 ] } ], "v_player_match_performance_stream": [ - 3720, + 3988, { "batch_size": [ 34, "Int!" ], "cursor": [ - 3732, + 4000, "[v_player_match_performance_stream_cursor_input]!" ], "where": [ - 3724 + 3992 ] } ], "v_player_match_rating": [ - 3738, + 4006, { "distinct_on": [ - 3746, + 4014, "[v_player_match_rating_select_column!]" ], "limit": [ @@ -123984,19 +130742,19 @@ export default { 34 ], "order_by": [ - 3745, + 4013, "[v_player_match_rating_order_by!]" ], "where": [ - 3742 + 4010 ] } ], "v_player_match_rating_aggregate": [ - 3739, + 4007, { "distinct_on": [ - 3746, + 4014, "[v_player_match_rating_select_column!]" ], "limit": [ @@ -124006,35 +130764,35 @@ export default { 34 ], "order_by": [ - 3745, + 4013, "[v_player_match_rating_order_by!]" ], "where": [ - 3742 + 4010 ] } ], "v_player_match_rating_stream": [ - 3738, + 4006, { "batch_size": [ 34, "Int!" ], "cursor": [ - 3750, + 4018, "[v_player_match_rating_stream_cursor_input]!" ], "where": [ - 3742 + 4010 ] } ], "v_player_multi_kills": [ - 3756, + 4024, { "distinct_on": [ - 3772, + 4040, "[v_player_multi_kills_select_column!]" ], "limit": [ @@ -124044,19 +130802,19 @@ export default { 34 ], "order_by": [ - 3771, + 4039, "[v_player_multi_kills_order_by!]" ], "where": [ - 3765 + 4033 ] } ], "v_player_multi_kills_aggregate": [ - 3757, + 4025, { "distinct_on": [ - 3772, + 4040, "[v_player_multi_kills_select_column!]" ], "limit": [ @@ -124066,35 +130824,35 @@ export default { 34 ], "order_by": [ - 3771, + 4039, "[v_player_multi_kills_order_by!]" ], "where": [ - 3765 + 4033 ] } ], "v_player_multi_kills_stream": [ - 3756, + 4024, { "batch_size": [ 34, "Int!" ], "cursor": [ - 3779, + 4047, "[v_player_multi_kills_stream_cursor_input]!" ], "where": [ - 3765 + 4033 ] } ], "v_player_weapon_damage": [ - 3789, + 4057, { "distinct_on": [ - 3797, + 4065, "[v_player_weapon_damage_select_column!]" ], "limit": [ @@ -124104,19 +130862,19 @@ export default { 34 ], "order_by": [ - 3796, + 4064, "[v_player_weapon_damage_order_by!]" ], "where": [ - 3793 + 4061 ] } ], "v_player_weapon_damage_aggregate": [ - 3790, + 4058, { "distinct_on": [ - 3797, + 4065, "[v_player_weapon_damage_select_column!]" ], "limit": [ @@ -124126,35 +130884,35 @@ export default { 34 ], "order_by": [ - 3796, + 4064, "[v_player_weapon_damage_order_by!]" ], "where": [ - 3793 + 4061 ] } ], "v_player_weapon_damage_stream": [ - 3789, + 4057, { "batch_size": [ 34, "Int!" ], "cursor": [ - 3801, + 4069, "[v_player_weapon_damage_stream_cursor_input]!" ], "where": [ - 3793 + 4061 ] } ], "v_player_weapon_kills": [ - 3807, + 4075, { "distinct_on": [ - 3815, + 4083, "[v_player_weapon_kills_select_column!]" ], "limit": [ @@ -124164,19 +130922,19 @@ export default { 34 ], "order_by": [ - 3814, + 4082, "[v_player_weapon_kills_order_by!]" ], "where": [ - 3811 + 4079 ] } ], "v_player_weapon_kills_aggregate": [ - 3808, + 4076, { "distinct_on": [ - 3815, + 4083, "[v_player_weapon_kills_select_column!]" ], "limit": [ @@ -124186,35 +130944,35 @@ export default { 34 ], "order_by": [ - 3814, + 4082, "[v_player_weapon_kills_order_by!]" ], "where": [ - 3811 + 4079 ] } ], "v_player_weapon_kills_stream": [ - 3807, + 4075, { "batch_size": [ 34, "Int!" ], "cursor": [ - 3819, + 4087, "[v_player_weapon_kills_stream_cursor_input]!" ], "where": [ - 3811 + 4079 ] } ], "v_pool_maps": [ - 3825, + 4093, { "distinct_on": [ - 3842, + 4110, "[v_pool_maps_select_column!]" ], "limit": [ @@ -124224,19 +130982,19 @@ export default { 34 ], "order_by": [ - 3841, + 4109, "[v_pool_maps_order_by!]" ], "where": [ - 3834 + 4102 ] } ], "v_pool_maps_aggregate": [ - 3826, + 4094, { "distinct_on": [ - 3842, + 4110, "[v_pool_maps_select_column!]" ], "limit": [ @@ -124246,35 +131004,35 @@ export default { 34 ], "order_by": [ - 3841, + 4109, "[v_pool_maps_order_by!]" ], "where": [ - 3834 + 4102 ] } ], "v_pool_maps_stream": [ - 3825, + 4093, { "batch_size": [ 34, "Int!" ], "cursor": [ - 3846, + 4114, "[v_pool_maps_stream_cursor_input]!" ], "where": [ - 3834 + 4102 ] } ], "v_steam_account_pool_status": [ - 3849, + 4117, { "distinct_on": [ - 3857, + 4125, "[v_steam_account_pool_status_select_column!]" ], "limit": [ @@ -124284,19 +131042,19 @@ export default { 34 ], "order_by": [ - 3856, + 4124, "[v_steam_account_pool_status_order_by!]" ], "where": [ - 3853 + 4121 ] } ], "v_steam_account_pool_status_aggregate": [ - 3850, + 4118, { "distinct_on": [ - 3857, + 4125, "[v_steam_account_pool_status_select_column!]" ], "limit": [ @@ -124306,35 +131064,35 @@ export default { 34 ], "order_by": [ - 3856, + 4124, "[v_steam_account_pool_status_order_by!]" ], "where": [ - 3853 + 4121 ] } ], "v_steam_account_pool_status_stream": [ - 3849, + 4117, { "batch_size": [ 34, "Int!" ], "cursor": [ - 3861, + 4129, "[v_steam_account_pool_status_stream_cursor_input]!" ], "where": [ - 3853 + 4121 ] } ], "v_team_stage_results": [ - 3867, + 4135, { "distinct_on": [ - 3899, + 4167, "[v_team_stage_results_select_column!]" ], "limit": [ @@ -124344,19 +131102,19 @@ export default { 34 ], "order_by": [ - 3897, + 4165, "[v_team_stage_results_order_by!]" ], "where": [ - 3886 + 4154 ] } ], "v_team_stage_results_aggregate": [ - 3868, + 4136, { "distinct_on": [ - 3899, + 4167, "[v_team_stage_results_select_column!]" ], "limit": [ @@ -124366,48 +131124,48 @@ export default { 34 ], "order_by": [ - 3897, + 4165, "[v_team_stage_results_order_by!]" ], "where": [ - 3886 + 4154 ] } ], "v_team_stage_results_by_pk": [ - 3867, + 4135, { "tournament_stage_id": [ - 3319, + 3587, "uuid!" ], "tournament_team_id": [ - 3319, + 3587, "uuid!" ] } ], "v_team_stage_results_stream": [ - 3867, + 4135, { "batch_size": [ 34, "Int!" ], "cursor": [ - 3915, + 4183, "[v_team_stage_results_stream_cursor_input]!" ], "where": [ - 3886 + 4154 ] } ], "v_team_tournament_results": [ - 3927, + 4195, { "distinct_on": [ - 3953, + 4221, "[v_team_tournament_results_select_column!]" ], "limit": [ @@ -124417,19 +131175,19 @@ export default { 34 ], "order_by": [ - 3952, + 4220, "[v_team_tournament_results_order_by!]" ], "where": [ - 3946 + 4214 ] } ], "v_team_tournament_results_aggregate": [ - 3928, + 4196, { "distinct_on": [ - 3953, + 4221, "[v_team_tournament_results_select_column!]" ], "limit": [ @@ -124439,35 +131197,35 @@ export default { 34 ], "order_by": [ - 3952, + 4220, "[v_team_tournament_results_order_by!]" ], "where": [ - 3946 + 4214 ] } ], "v_team_tournament_results_stream": [ - 3927, + 4195, { "batch_size": [ 34, "Int!" ], "cursor": [ - 3968, + 4236, "[v_team_tournament_results_stream_cursor_input]!" ], "where": [ - 3946 + 4214 ] } ], "v_tournament_player_stats": [ - 3978, + 4246, { "distinct_on": [ - 4004, + 4272, "[v_tournament_player_stats_select_column!]" ], "limit": [ @@ -124477,19 +131235,19 @@ export default { 34 ], "order_by": [ - 4003, + 4271, "[v_tournament_player_stats_order_by!]" ], "where": [ - 3997 + 4265 ] } ], "v_tournament_player_stats_aggregate": [ - 3979, + 4247, { "distinct_on": [ - 4004, + 4272, "[v_tournament_player_stats_select_column!]" ], "limit": [ @@ -124499,27 +131257,27 @@ export default { 34 ], "order_by": [ - 4003, + 4271, "[v_tournament_player_stats_order_by!]" ], "where": [ - 3997 + 4265 ] } ], "v_tournament_player_stats_stream": [ - 3978, + 4246, { "batch_size": [ 34, "Int!" ], "cursor": [ - 4019, + 4287, "[v_tournament_player_stats_stream_cursor_input]!" ], "where": [ - 3997 + 4265 ] } ], diff --git a/hasura/enums/draft-game-captain-selection.sql b/hasura/enums/draft-game-captain-selection.sql new file mode 100644 index 00000000..fb946ddd --- /dev/null +++ b/hasura/enums/draft-game-captain-selection.sql @@ -0,0 +1,5 @@ +insert into e_draft_game_captain_selection ("value", "description") values + ('TopEloTwo', 'Top 2 by Rank'), + ('HostAndNext', 'Host and Next Highest'), + ('RandomTwo', 'Random Two') +on conflict(value) do update set "description" = EXCLUDED."description" diff --git a/hasura/enums/draft-game-draft-order.sql b/hasura/enums/draft-game-draft-order.sql new file mode 100644 index 00000000..9ffd839f --- /dev/null +++ b/hasura/enums/draft-game-draft-order.sql @@ -0,0 +1,4 @@ +insert into e_draft_game_draft_order ("value", "description") values + ('Snake', 'Snake (1-2-2-2-1)'), + ('Alternating', 'Alternating') +on conflict(value) do update set "description" = EXCLUDED."description" diff --git a/hasura/enums/draft-game-modes.sql b/hasura/enums/draft-game-modes.sql new file mode 100644 index 00000000..86a03039 --- /dev/null +++ b/hasura/enums/draft-game-modes.sql @@ -0,0 +1,6 @@ +insert into e_draft_game_mode ("value", "description") values + ('Captains', 'Two Captains Draft'), + ('Host', 'Host Assigns Teams'), + ('Pug', 'Auto-Split Teams'), + ('Teams', 'Pre-Made Teams') +on conflict(value) do update set "description" = EXCLUDED."description" diff --git a/hasura/enums/draft-game-statuses.sql b/hasura/enums/draft-game-statuses.sql new file mode 100644 index 00000000..a8b7ce44 --- /dev/null +++ b/hasura/enums/draft-game-statuses.sql @@ -0,0 +1,9 @@ +insert into e_draft_game_status ("value", "description") values + ('Open', 'Accepting Players'), + ('Filled', 'Lobby Full'), + ('SelectingCaptains', 'Selecting Captains'), + ('Drafting', 'Drafting Players'), + ('CreatingMatch', 'Creating Match'), + ('Completed', 'Completed'), + ('Canceled', 'Canceled') +on conflict(value) do update set "description" = EXCLUDED."description" diff --git a/hasura/metadata/actions.graphql b/hasura/metadata/actions.graphql index 753a6480..69d40628 100644 --- a/hasura/metadata/actions.graphql +++ b/hasura/metadata/actions.graphql @@ -453,6 +453,10 @@ type Mutation { scanOrphanedDemos: ScanStartedOutput } +type Mutation { + rescanTldrNews: SuccessOutput +} + type Mutation { orphanedDemosScanResult: OrphanScanResultOutput } diff --git a/hasura/metadata/actions.yaml b/hasura/metadata/actions.yaml index 2083050c..85cb1672 100644 --- a/hasura/metadata/actions.yaml +++ b/hasura/metadata/actions.yaml @@ -598,6 +598,14 @@ actions: permissions: - role: administrator comment: Scan S3 for objects not referenced in the database (admin only). Runs in the background; results land in the logs and orphanedDemosScanResult. + - name: rescanTldrNews + definition: + kind: synchronous + handler: '{{HASURA_GRAPHQL_ACTIONS_HOOK}}' + forward_client_headers: true + permissions: + - role: administrator + comment: Re-scan tl;dr for new news articles (admin only). Enqueues a background scrape job; no-op if the integration is disabled. - name: orphanedDemosScanResult definition: kind: synchronous diff --git a/hasura/metadata/databases/default/tables/public_draft_game_picks.yaml b/hasura/metadata/databases/default/tables/public_draft_game_picks.yaml new file mode 100644 index 00000000..d388e175 --- /dev/null +++ b/hasura/metadata/databases/default/tables/public_draft_game_picks.yaml @@ -0,0 +1,58 @@ +table: + name: draft_game_picks + schema: public +object_relationships: + - name: draft_game + using: + foreign_key_constraint_on: draft_game_id + - name: captain + using: + foreign_key_constraint_on: captain_steam_id + - name: picked + using: + foreign_key_constraint_on: picked_steam_id +select_permissions: + - role: user + permission: + columns: + - id + - draft_game_id + - captain_steam_id + - picked_steam_id + - lineup + - auto_picked + - created_at + filter: + draft_game: + _or: + - access: + _eq: Open + - host_steam_id: + _eq: X-Hasura-User-Id + - players: + steam_id: + _eq: X-Hasura-User-Id + - _and: + - access: + _eq: Friends + - players: + player: + friends: + steam_id: + _eq: X-Hasura-User-Id + comment: "" + - role: guest + permission: + columns: + - id + - draft_game_id + - captain_steam_id + - picked_steam_id + - lineup + - auto_picked + - created_at + filter: + draft_game: + access: + _eq: Open + comment: "" diff --git a/hasura/metadata/databases/default/tables/public_draft_game_players.yaml b/hasura/metadata/databases/default/tables/public_draft_game_players.yaml new file mode 100644 index 00000000..a7611a77 --- /dev/null +++ b/hasura/metadata/databases/default/tables/public_draft_game_players.yaml @@ -0,0 +1,63 @@ +table: + name: draft_game_players + schema: public +object_relationships: + - name: draft_game + using: + foreign_key_constraint_on: draft_game_id + - name: e_draft_game_player_status + using: + foreign_key_constraint_on: status + - name: player + using: + foreign_key_constraint_on: steam_id +select_permissions: + - role: user + permission: + columns: + - draft_game_id + - steam_id + - status + - joined_at + - elo_snapshot + - is_captain + - lineup + - pick_order + filter: + _or: + - steam_id: + _eq: X-Hasura-User-Id + - draft_game: + _or: + - access: + _eq: Open + - host_steam_id: + _eq: X-Hasura-User-Id + - players: + steam_id: + _eq: X-Hasura-User-Id + - _and: + - access: + _eq: Friends + - players: + player: + friends: + steam_id: + _eq: X-Hasura-User-Id + comment: "" + - role: guest + permission: + columns: + - draft_game_id + - steam_id + - status + - joined_at + - elo_snapshot + - is_captain + - lineup + - pick_order + filter: + draft_game: + access: + _eq: Open + comment: "" diff --git a/hasura/metadata/databases/default/tables/public_draft_games.yaml b/hasura/metadata/databases/default/tables/public_draft_games.yaml new file mode 100644 index 00000000..fc3b7ff0 --- /dev/null +++ b/hasura/metadata/databases/default/tables/public_draft_games.yaml @@ -0,0 +1,130 @@ +table: + name: draft_games + schema: public +object_relationships: + - name: host + using: + foreign_key_constraint_on: host_steam_id + - name: match + using: + foreign_key_constraint_on: match_id + - name: map_pool + using: + foreign_key_constraint_on: map_pool_id + - name: e_draft_game_status + using: + foreign_key_constraint_on: status + - name: e_draft_game_captain_selection + using: + foreign_key_constraint_on: captain_selection + - name: e_draft_game_draft_order + using: + foreign_key_constraint_on: draft_order + - name: e_draft_game_mode + using: + foreign_key_constraint_on: mode + - name: e_lobby_access + using: + foreign_key_constraint_on: access + - name: options + using: + foreign_key_constraint_on: match_options_id + - name: team_1 + using: + foreign_key_constraint_on: team_1_id + - name: team_2 + using: + foreign_key_constraint_on: team_2_id +array_relationships: + - name: players + using: + foreign_key_constraint_on: + column: draft_game_id + table: + name: draft_game_players + schema: public + - name: picks + using: + foreign_key_constraint_on: + column: draft_game_id + table: + name: draft_game_picks + schema: public +select_permissions: + - role: user + permission: + columns: + - id + - host_steam_id + - status + - type + - access + - invite_code + - regions + - map_pool_id + - match_options_id + - team_1_id + - team_2_id + - captain_selection + - draft_order + - mode + - require_approval + - min_elo + - max_elo + - capacity + - inner_squad + - match_id + - current_pick_lineup + - pick_deadline + - created_at + - updated_at + filter: + _or: + - access: + _eq: Open + - host_steam_id: + _eq: X-Hasura-User-Id + - players: + steam_id: + _eq: X-Hasura-User-Id + - _and: + - access: + _eq: Friends + - players: + player: + friends: + steam_id: + _eq: X-Hasura-User-Id + allow_aggregations: true + comment: "" + - role: guest + permission: + columns: + - id + - host_steam_id + - status + - type + - access + - regions + - map_pool_id + - match_options_id + - team_1_id + - team_2_id + - captain_selection + - draft_order + - mode + - require_approval + - min_elo + - max_elo + - capacity + - inner_squad + - match_id + - current_pick_lineup + - pick_deadline + - created_at + - updated_at + filter: + access: + _eq: Open + allow_aggregations: true + comment: "" diff --git a/hasura/metadata/databases/default/tables/public_e_draft_game_captain_selection.yaml b/hasura/metadata/databases/default/tables/public_e_draft_game_captain_selection.yaml new file mode 100644 index 00000000..888559cd --- /dev/null +++ b/hasura/metadata/databases/default/tables/public_e_draft_game_captain_selection.yaml @@ -0,0 +1,12 @@ +table: + name: e_draft_game_captain_selection + schema: public +is_enum: true +select_permissions: + - role: guest + permission: + columns: + - description + - value + filter: {} + comment: "" diff --git a/hasura/metadata/databases/default/tables/public_e_draft_game_draft_order.yaml b/hasura/metadata/databases/default/tables/public_e_draft_game_draft_order.yaml new file mode 100644 index 00000000..62eb8867 --- /dev/null +++ b/hasura/metadata/databases/default/tables/public_e_draft_game_draft_order.yaml @@ -0,0 +1,12 @@ +table: + name: e_draft_game_draft_order + schema: public +is_enum: true +select_permissions: + - role: guest + permission: + columns: + - description + - value + filter: {} + comment: "" diff --git a/hasura/metadata/databases/default/tables/public_e_draft_game_mode.yaml b/hasura/metadata/databases/default/tables/public_e_draft_game_mode.yaml new file mode 100644 index 00000000..fdf120aa --- /dev/null +++ b/hasura/metadata/databases/default/tables/public_e_draft_game_mode.yaml @@ -0,0 +1,12 @@ +table: + name: e_draft_game_mode + schema: public +is_enum: true +select_permissions: + - role: guest + permission: + columns: + - description + - value + filter: {} + comment: "" diff --git a/hasura/metadata/databases/default/tables/public_e_draft_game_player_status.yaml b/hasura/metadata/databases/default/tables/public_e_draft_game_player_status.yaml new file mode 100644 index 00000000..88695d8c --- /dev/null +++ b/hasura/metadata/databases/default/tables/public_e_draft_game_player_status.yaml @@ -0,0 +1,12 @@ +table: + name: e_draft_game_player_status + schema: public +is_enum: true +select_permissions: + - role: guest + permission: + columns: + - description + - value + filter: {} + comment: "" diff --git a/hasura/metadata/databases/default/tables/public_e_draft_game_status.yaml b/hasura/metadata/databases/default/tables/public_e_draft_game_status.yaml new file mode 100644 index 00000000..d1038498 --- /dev/null +++ b/hasura/metadata/databases/default/tables/public_e_draft_game_status.yaml @@ -0,0 +1,12 @@ +table: + name: e_draft_game_status + schema: public +is_enum: true +select_permissions: + - role: guest + permission: + columns: + - description + - value + filter: {} + comment: "" diff --git a/hasura/metadata/databases/default/tables/public_match_clips.yaml b/hasura/metadata/databases/default/tables/public_match_clips.yaml index 3a80bab0..2a65af9a 100644 --- a/hasura/metadata/databases/default/tables/public_match_clips.yaml +++ b/hasura/metadata/databases/default/tables/public_match_clips.yaml @@ -123,4 +123,5 @@ select_permissions: lineup_players: steam_id: _eq: X-Hasura-User-Id + allow_aggregations: true comment: "" diff --git a/hasura/metadata/databases/default/tables/public_matches.yaml b/hasura/metadata/databases/default/tables/public_matches.yaml index f3b69434..b3a35e8c 100644 --- a/hasura/metadata/databases/default/tables/public_matches.yaml +++ b/hasura/metadata/databases/default/tables/public_matches.yaml @@ -64,6 +64,13 @@ array_relationships: remote_table: name: v_player_elo schema: public + - name: draft_games + using: + foreign_key_constraint_on: + column: match_id + table: + name: draft_games + schema: public - name: invites using: foreign_key_constraint_on: diff --git a/hasura/metadata/databases/default/tables/public_news_articles.yaml b/hasura/metadata/databases/default/tables/public_news_articles.yaml new file mode 100644 index 00000000..680f977f --- /dev/null +++ b/hasura/metadata/databases/default/tables/public_news_articles.yaml @@ -0,0 +1,24 @@ +table: + name: news_articles + schema: public +select_permissions: + - role: guest + permission: + columns: + - id + - source + - issue_number + - slug + - url + - title + - teaser + - content_html + - cover_image_url + - author + - published_at + - scraped_at + - created_at + - updated_at + filter: {} + allow_aggregations: true + comment: "" diff --git a/hasura/metadata/databases/default/tables/public_player_sanctions.yaml b/hasura/metadata/databases/default/tables/public_player_sanctions.yaml index 608bea0e..1f4858b0 100644 --- a/hasura/metadata/databases/default/tables/public_player_sanctions.yaml +++ b/hasura/metadata/databases/default/tables/public_player_sanctions.yaml @@ -58,6 +58,7 @@ event_triggers: - player_steam_id - remove_sanction_date - type + - deleted_at retry_conf: interval_sec: 10 num_retries: 6 diff --git a/hasura/metadata/databases/default/tables/public_players.yaml b/hasura/metadata/databases/default/tables/public_players.yaml index 144f9d2f..cdc7470a 100644 --- a/hasura/metadata/databases/default/tables/public_players.yaml +++ b/hasura/metadata/databases/default/tables/public_players.yaml @@ -447,6 +447,7 @@ select_permissions: - faceit_updated_at - faceit_url - language + - last_read_news_at - last_sign_in_at - name - name_registered @@ -487,6 +488,7 @@ select_permissions: columns: - avatar_url - country + - last_read_news_at - custom_avatar_url - faceit_elo - faceit_nickname @@ -538,6 +540,7 @@ update_permissions: - country - discord_id - language + - last_read_news_at - name - profile_url - role @@ -550,6 +553,7 @@ update_permissions: columns: - country - language + - last_read_news_at - show_match_ready_modal filter: steam_id: diff --git a/hasura/metadata/databases/default/tables/tables.yaml b/hasura/metadata/databases/default/tables/tables.yaml index ec7eb2da..fc67dfa3 100644 --- a/hasura/metadata/databases/default/tables/tables.yaml +++ b/hasura/metadata/databases/default/tables/tables.yaml @@ -4,7 +4,15 @@ - "!include public_api_keys.yaml" - "!include public_clip_render_jobs.yaml" - "!include public_db_backups.yaml" +- "!include public_draft_game_picks.yaml" +- "!include public_draft_game_players.yaml" +- "!include public_draft_games.yaml" - "!include public_e_check_in_settings.yaml" +- "!include public_e_draft_game_captain_selection.yaml" +- "!include public_e_draft_game_draft_order.yaml" +- "!include public_e_draft_game_mode.yaml" +- "!include public_e_draft_game_player_status.yaml" +- "!include public_e_draft_game_status.yaml" - "!include public_e_friend_status.yaml" - "!include public_e_game_cfg_types.yaml" - "!include public_e_game_server_node_statuses.yaml" @@ -54,6 +62,7 @@ - "!include public_match_streams.yaml" - "!include public_match_type_cfgs.yaml" - "!include public_matches.yaml" +- "!include public_news_articles.yaml" - "!include public_notifications.yaml" - "!include public_pending_match_import_players.yaml" - "!include public_pending_match_imports.yaml" diff --git a/hasura/migrations/default/1860000000100_draft_rooms/down.sql b/hasura/migrations/default/1860000000100_draft_rooms/down.sql new file mode 100644 index 00000000..23e3dc21 --- /dev/null +++ b/hasura/migrations/default/1860000000100_draft_rooms/down.sql @@ -0,0 +1,15 @@ +DROP TABLE "public"."draft_game_picks"; + +DROP TABLE "public"."draft_game_players"; + +DROP TABLE "public"."draft_games"; + +DROP TABLE "public"."e_draft_game_player_status"; + +DROP TABLE "public"."e_draft_game_mode"; + +DROP TABLE "public"."e_draft_game_draft_order"; + +DROP TABLE "public"."e_draft_game_captain_selection"; + +DROP TABLE "public"."e_draft_game_status"; diff --git a/hasura/migrations/default/1860000000100_draft_rooms/up.sql b/hasura/migrations/default/1860000000100_draft_rooms/up.sql new file mode 100644 index 00000000..a4be7102 --- /dev/null +++ b/hasura/migrations/default/1860000000100_draft_rooms/up.sql @@ -0,0 +1,176 @@ +CREATE TABLE "public"."e_draft_game_status" ("value" text NOT NULL, "description" text NOT NULL, PRIMARY KEY ("value"), UNIQUE ("value")); + +INSERT INTO "public"."e_draft_game_status" ("value", "description") VALUES + ('Open', 'Accepting Players'), + ('Filled', 'Lobby Full'), + ('SelectingCaptains', 'Selecting Captains'), + ('Drafting', 'Drafting Players'), + ('CreatingMatch', 'Creating Match'), + ('Completed', 'Completed'), + ('Canceled', 'Canceled') +ON CONFLICT (value) DO NOTHING; + +CREATE TABLE "public"."e_draft_game_captain_selection" ("value" text NOT NULL, "description" text NOT NULL, PRIMARY KEY ("value"), UNIQUE ("value")); + +INSERT INTO "public"."e_draft_game_captain_selection" ("value", "description") VALUES + ('TopEloTwo', 'Top 2 by Rank'), + ('HostAndNext', 'Host and Next Highest'), + ('RandomTwo', 'Random Two') +ON CONFLICT (value) DO NOTHING; + +CREATE TABLE "public"."e_draft_game_draft_order" ("value" text NOT NULL, "description" text NOT NULL, PRIMARY KEY ("value"), UNIQUE ("value")); + +INSERT INTO "public"."e_draft_game_draft_order" ("value", "description") VALUES + ('Snake', 'Snake (1-2-2-2-1)'), + ('Alternating', 'Alternating') +ON CONFLICT (value) DO NOTHING; + +CREATE TABLE "public"."e_draft_game_mode" ("value" text NOT NULL, "description" text NOT NULL, PRIMARY KEY ("value"), UNIQUE ("value")); + +INSERT INTO "public"."e_draft_game_mode" ("value", "description") VALUES + ('Captains', 'Two Captains Draft'), + ('Host', 'Host Assigns Teams'), + ('Pug', 'Auto-Split Teams'), + ('Teams', 'Pre-Made Teams') +ON CONFLICT (value) DO NOTHING; + +CREATE TABLE "public"."e_draft_game_player_status" ("value" text NOT NULL, "description" text NOT NULL, PRIMARY KEY ("value"), UNIQUE ("value")); + +INSERT INTO "public"."e_draft_game_player_status" ("value", "description") VALUES + ('Accepted', 'Player Accepted Into Game'), + ('Requested', 'Player Requested To Join'), + ('Waitlist', 'Player On Waitlist') +ON CONFLICT (value) DO NOTHING; + +CREATE TABLE "public"."draft_games" ( + "id" uuid NOT NULL DEFAULT gen_random_uuid(), + "host_steam_id" bigint NOT NULL, + "status" text NOT NULL DEFAULT 'Open', + "type" text NOT NULL, + "mode" text NOT NULL DEFAULT 'Captains', + "access" text NOT NULL DEFAULT 'Open', + "invite_code" uuid NOT NULL DEFAULT gen_random_uuid(), + "regions" text[] NOT NULL DEFAULT '{}', + "map_pool_id" uuid, + "match_options_id" uuid, + "captain_selection" text NOT NULL DEFAULT 'TopEloTwo', + "draft_order" text NOT NULL DEFAULT 'Snake', + "min_elo" integer, + "max_elo" integer, + "capacity" integer NOT NULL, + "require_approval" boolean NOT NULL DEFAULT false, + "match_id" uuid, + "team_1_id" uuid, + "team_2_id" uuid, + "inner_squad" boolean NOT NULL DEFAULT false, + "current_pick_lineup" integer, + "pick_deadline" timestamptz, + "created_at" timestamptz NOT NULL DEFAULT now(), + "updated_at" timestamptz NOT NULL DEFAULT now(), + PRIMARY KEY ("id") +); + +alter table "public"."draft_games" + add constraint "draft_games_host_steam_id_fkey" + foreign key ("host_steam_id") + references "public"."players" ("steam_id") on update cascade on delete cascade; + +alter table "public"."draft_games" + add constraint "draft_games_status_fkey" + foreign key ("status") + references "public"."e_draft_game_status" ("value") on update cascade on delete restrict; + +alter table "public"."draft_games" + add constraint "draft_games_type_fkey" + foreign key ("type") + references "public"."e_match_types" ("value") on update cascade on delete restrict; + +alter table "public"."draft_games" + add constraint "draft_games_mode_fkey" + foreign key ("mode") + references "public"."e_draft_game_mode" ("value") on update cascade on delete restrict; + +alter table "public"."draft_games" + add constraint "draft_games_access_fkey" + foreign key ("access") + references "public"."e_lobby_access" ("value") on update cascade on delete restrict; + +alter table "public"."draft_games" + add constraint "draft_games_captain_selection_fkey" + foreign key ("captain_selection") + references "public"."e_draft_game_captain_selection" ("value") on update cascade on delete restrict; + +alter table "public"."draft_games" + add constraint "draft_games_draft_order_fkey" + foreign key ("draft_order") + references "public"."e_draft_game_draft_order" ("value") on update cascade on delete restrict; + +alter table "public"."draft_games" + add constraint "draft_games_map_pool_id_fkey" + foreign key ("map_pool_id") + references "public"."map_pools" ("id") on update cascade on delete set null; + +alter table "public"."draft_games" + add constraint "draft_games_match_options_id_fkey" + foreign key ("match_options_id") + references "public"."match_options" ("id") on update cascade on delete set null; + +alter table "public"."draft_games" + add constraint "draft_games_match_id_fkey" + foreign key ("match_id") + references "public"."matches" ("id") on update cascade on delete set null; + +alter table "public"."draft_games" + add constraint "draft_games_team_1_id_fkey" + foreign key ("team_1_id") + references "public"."teams" ("id") on update cascade on delete set null; + +alter table "public"."draft_games" + add constraint "draft_games_team_2_id_fkey" + foreign key ("team_2_id") + references "public"."teams" ("id") on update cascade on delete set null; + +CREATE INDEX "draft_games_status_idx" ON "public"."draft_games" ("status"); +CREATE INDEX "draft_games_host_steam_id_idx" ON "public"."draft_games" ("host_steam_id"); +CREATE INDEX "draft_games_map_pool_id_idx" ON "public"."draft_games" ("map_pool_id"); +CREATE INDEX "draft_games_match_options_id_idx" ON "public"."draft_games" ("match_options_id"); +CREATE INDEX "draft_games_match_id_idx" ON "public"."draft_games" ("match_id"); +CREATE INDEX "draft_games_team_1_id_idx" ON "public"."draft_games" ("team_1_id"); +CREATE INDEX "draft_games_team_2_id_idx" ON "public"."draft_games" ("team_2_id"); +CREATE UNIQUE INDEX "draft_games_invite_code_key" ON "public"."draft_games" ("invite_code"); + +CREATE TABLE "public"."draft_game_players" ( + "draft_game_id" uuid NOT NULL, + "steam_id" bigint NOT NULL, + "status" text NOT NULL DEFAULT 'Accepted', + "joined_at" timestamptz NOT NULL DEFAULT now(), + "elo_snapshot" integer, + "is_captain" boolean NOT NULL DEFAULT false, + "lineup" integer, + "pick_order" integer, + PRIMARY KEY ("draft_game_id", "steam_id"), + FOREIGN KEY ("draft_game_id") REFERENCES "public"."draft_games" ("id") ON UPDATE cascade ON DELETE cascade, + FOREIGN KEY ("steam_id") REFERENCES "public"."players" ("steam_id") ON UPDATE cascade ON DELETE cascade, + FOREIGN KEY ("status") REFERENCES "public"."e_draft_game_player_status" ("value") ON UPDATE cascade ON DELETE restrict +); + +CREATE INDEX "draft_game_players_steam_id_idx" ON "public"."draft_game_players" ("steam_id"); +CREATE UNIQUE INDEX "draft_game_players_captain_lineup_key" ON "public"."draft_game_players" ("draft_game_id", "lineup") WHERE "is_captain"; + +CREATE TABLE "public"."draft_game_picks" ( + "id" uuid NOT NULL DEFAULT gen_random_uuid(), + "draft_game_id" uuid NOT NULL, + "captain_steam_id" bigint NOT NULL, + "picked_steam_id" bigint NOT NULL, + "lineup" integer NOT NULL, + "auto_picked" boolean NOT NULL DEFAULT false, + "created_at" timestamptz NOT NULL DEFAULT now(), + PRIMARY KEY ("id"), + FOREIGN KEY ("draft_game_id") REFERENCES "public"."draft_games" ("id") ON UPDATE cascade ON DELETE cascade, + FOREIGN KEY ("captain_steam_id") REFERENCES "public"."players" ("steam_id") ON UPDATE cascade ON DELETE cascade, + FOREIGN KEY ("picked_steam_id") REFERENCES "public"."players" ("steam_id") ON UPDATE cascade ON DELETE cascade +); + +CREATE INDEX "draft_game_picks_draft_game_id_idx" ON "public"."draft_game_picks" ("draft_game_id"); +CREATE INDEX "draft_game_picks_captain_steam_id_idx" ON "public"."draft_game_picks" ("captain_steam_id"); +CREATE INDEX "draft_game_picks_picked_steam_id_idx" ON "public"."draft_game_picks" ("picked_steam_id"); diff --git a/hasura/migrations/default/1860000000200_news/down.sql b/hasura/migrations/default/1860000000200_news/down.sql new file mode 100644 index 00000000..bf196895 --- /dev/null +++ b/hasura/migrations/default/1860000000200_news/down.sql @@ -0,0 +1,3 @@ +ALTER TABLE "public"."players" DROP COLUMN IF EXISTS "last_read_news_at"; + +DROP TABLE IF EXISTS "public"."news_articles"; diff --git a/hasura/migrations/default/1860000000200_news/up.sql b/hasura/migrations/default/1860000000200_news/up.sql new file mode 100644 index 00000000..bc70ea4a --- /dev/null +++ b/hasura/migrations/default/1860000000200_news/up.sql @@ -0,0 +1,23 @@ +CREATE TABLE IF NOT EXISTS "public"."news_articles" ( + "id" uuid NOT NULL DEFAULT gen_random_uuid(), + "source" text NOT NULL DEFAULT 'tldr', + "issue_number" integer, + "slug" text, + "url" text NOT NULL, + "title" text NOT NULL, + "teaser" text, + "content_html" text, + "cover_image_url" text, + "author" text, + "published_at" timestamptz, + "scraped_at" timestamptz NOT NULL DEFAULT now(), + "created_at" timestamptz NOT NULL DEFAULT now(), + "updated_at" timestamptz NOT NULL DEFAULT now(), + PRIMARY KEY ("id"), + CONSTRAINT "news_articles_url_key" UNIQUE ("url") +); + +CREATE INDEX IF NOT EXISTS "news_articles_published_at_idx" ON "public"."news_articles" ("published_at" DESC); +CREATE INDEX IF NOT EXISTS "news_articles_source_idx" ON "public"."news_articles" ("source"); + +ALTER TABLE "public"."players" ADD COLUMN IF NOT EXISTS "last_read_news_at" timestamptz; diff --git a/hasura/triggers/matches.sql b/hasura/triggers/matches.sql index 01595c7a..abd84cff 100644 --- a/hasura/triggers/matches.sql +++ b/hasura/triggers/matches.sql @@ -131,17 +131,17 @@ BEGIN VALUES (NEW.lineup_2_id, member.player_steam_id); END LOOP; END IF; - + SELECT l.id INTO _lobby_id FROM lobbies l INNER JOIN lobby_players lp ON lp.lobby_id = l.id WHERE lp.steam_id = (current_setting('hasura.user', true)::jsonb ->> 'x-hasura-user-id')::bigint - AND lp.status = 'Accepted'; + AND lp.status = 'Accepted'; IF (_lobby_id IS NOT NULL AND (lineup_1_team_id IS NULL OR lineup_2_team_id IS NULL)) THEN - SELECT array_agg(lp.steam_id) INTO lobby_players + SELECT array_agg(lp.steam_id) INTO lobby_players FROM lobby_players lp WHERE lp.lobby_id = _lobby_id AND lp.status = 'Accepted'; @@ -153,7 +153,7 @@ BEGIN ELSIF array_length(lobby_players, 1) > _max_players_per_lineup * 2 THEN RAISE EXCEPTION USING ERRCODE = '22000', MESSAGE = 'Too many players in lobby - maximum ' || (_max_players_per_lineup * 2) || ' players allowed'; END IF; - + FOR i IN SELECT steam_id, row_number() OVER () as rn, count(*) OVER () as total diff --git a/hasura/triggers/player_sanctions.sql b/hasura/triggers/player_sanctions.sql new file mode 100644 index 00000000..a7de120c --- /dev/null +++ b/hasura/triggers/player_sanctions.sql @@ -0,0 +1,19 @@ +CREATE OR REPLACE FUNCTION public.tau_player_sanctions() RETURNS TRIGGER + LANGUAGE plpgsql + AS $$ +BEGIN + IF NEW.type = 'ban' + AND NEW.sanctioned_by_steam_id IS NULL + AND OLD.deleted_at IS NULL + AND NEW.deleted_at IS NOT NULL THEN + UPDATE public.players + SET vac_banned = false + WHERE steam_id = NEW.player_steam_id; + END IF; + + RETURN NEW; +END; +$$; + +DROP TRIGGER IF EXISTS tau_player_sanctions ON public.player_sanctions; +CREATE TRIGGER tau_player_sanctions AFTER UPDATE ON public.player_sanctions FOR EACH ROW EXECUTE FUNCTION public.tau_player_sanctions(); diff --git a/package.json b/package.json index 0e91dfc0..4b7d8a4a 100644 --- a/package.json +++ b/package.json @@ -52,6 +52,7 @@ "bullmq": "^5.56.0", "cache-manager": "^7.0.1", "cache-manager-redis-store": "^3.0.1", + "cheerio": "^1.0.0", "connect-redis": "^7.1.0", "discord.js": "^14.14.1", "express-session": "^1.18.0", @@ -71,6 +72,7 @@ "rcon-client": "^4.2.4", "reflect-metadata": "^0.2.0", "rxjs": "^7.8.1", + "sanitize-html": "^2.13.0", "sharp": "^0.33.5", "steam-user": "^5.2.2", "turndown": "^7.2.0", @@ -97,6 +99,7 @@ "@types/passport-steam": "^1.0.5", "@types/pg": "^8.11.5", "@types/pg-cursor": "^2.7.2", + "@types/sanitize-html": "^2.13.0", "@types/supertest": "^6.0.2", "@types/turndown": "^5.0.5", "@typescript-eslint/eslint-plugin": "^8.1.0", diff --git a/src/app.module.ts b/src/app.module.ts index 94fc59e7..a1d712d0 100644 --- a/src/app.module.ts +++ b/src/app.module.ts @@ -26,6 +26,7 @@ import { SocketsModule } from "./sockets/sockets.module"; import { TailscaleModule } from "./tailscale/tailscale.module"; import { GameServerNodeModule } from "./game-server-node/game-server-node.module"; import { MatchMaking } from "./matchmaking/matchmaking.module"; +import { DraftGamesModule } from "./draft-games/draft-games.module"; import { SystemModule } from "./system/system.module"; import { NotificationsModule } from "./notifications/notifications.module"; import { ChatModule } from "./chat/chat.module"; @@ -50,6 +51,7 @@ import { FixturesModule } from "./fixtures/fixtures.module"; import { TournamentsModule } from "./tournaments/tournaments.module"; import { FaceitModule } from "./faceit/faceit.module"; import { SteamMatchHistoryModule } from "./steam-match-history/steam-match-history.module"; +import { NewsModule } from "./news/news.module"; @Module({ imports: [ @@ -61,6 +63,7 @@ import { SteamMatchHistoryModule } from "./steam-match-history/steam-match-histo TypeSenseModule, MatchesModule, MatchMaking, + DraftGamesModule, EncryptionModule, CacheModule, S3Module, @@ -140,6 +143,7 @@ import { SteamMatchHistoryModule } from "./steam-match-history/steam-match-histo TournamentsModule, FaceitModule, SteamMatchHistoryModule, + NewsModule, ], providers: [loggerFactory()], controllers: [AppController, QuickConnectController], diff --git a/src/chat/chat.service.ts b/src/chat/chat.service.ts index 08c104d8..7870f745 100644 --- a/src/chat/chat.service.ts +++ b/src/chat/chat.service.ts @@ -128,6 +128,29 @@ export class ChatService { return; } break; + case ChatLobbyType.Draft: { + const { draft_games } = await this.hasuraService.query({ + draft_games: { + __args: { + where: { + id: { _eq: id }, + _or: [ + { access: { _eq: "Open" } }, + { host_steam_id: { _eq: user.steam_id } }, + { players: { steam_id: { _eq: user.steam_id } } }, + ], + }, + }, + id: true, + }, + }); + + if (draft_games.length === 0) { + return; + } + + break; + } case ChatLobbyType.Organizer: if (!isRoleAbove(user.role, "match_organizer")) { return; diff --git a/src/chat/enums/ChatLobbyTypes.ts b/src/chat/enums/ChatLobbyTypes.ts index 8ca631f4..00550df0 100644 --- a/src/chat/enums/ChatLobbyTypes.ts +++ b/src/chat/enums/ChatLobbyTypes.ts @@ -4,4 +4,5 @@ export enum ChatLobbyType { MatchMaking = "matchmaking", Tournament = "tournament", Organizer = "organizers", + Draft = "draft", } diff --git a/src/draft-games/draft-game.service.ts b/src/draft-games/draft-game.service.ts new file mode 100644 index 00000000..36e8d046 --- /dev/null +++ b/src/draft-games/draft-game.service.ts @@ -0,0 +1,2148 @@ +import Redis from "ioredis"; +import { Queue } from "bullmq"; +import { Logger } from "@nestjs/common"; +import { User } from "../auth/types/User"; +import { InjectQueue } from "@nestjs/bullmq"; +import { forwardRef, Inject, Injectable } from "@nestjs/common"; +import { + e_match_types_enum, + e_lobby_access_enum, + e_draft_game_mode_enum, + e_draft_game_draft_order_enum, + e_draft_game_captain_selection_enum, +} from "generated"; +import { HasuraService } from "src/hasura/hasura.service"; +import { CacheService } from "src/cache/cache.service"; +import { RedisManagerService } from "../redis/redis-manager/redis-manager.service"; +import { ExpectedPlayers } from "src/discord-bot/enums/ExpectedPlayers"; +import { isRoleAbove } from "src/utilities/isRoleAbove"; +import { DraftGame, DraftGamePlayer } from "./types/DraftGame"; +import { DraftGameError } from "./types/DraftGameError"; +import { DraftGameQueues } from "./enums/DraftGameQueues"; +import { DraftService } from "./draft.service"; + +export interface CreateDraftGameSettings { + type: e_match_types_enum; + mode?: e_draft_game_mode_enum; + access?: string; + require_approval?: boolean; + regions: Array; + map_pool_id?: string; + captain_selection: e_draft_game_captain_selection_enum; + draft_order: e_draft_game_draft_order_enum; + min_elo?: number; + max_elo?: number; + team_1_id?: string; + team_2_id?: string; + inner_squad?: boolean; + roster?: Array; + keep_lobby_together?: boolean; + options?: Record; +} + +export interface DraftRosterEntry { + steam_id: string; + lineup: number | null; +} + +@Injectable() +export class DraftGameService { + public redis: Redis; + + public static readonly DRAFTABLE_TYPES: e_match_types_enum[] = [ + "Competitive", + "Wingman", + "Duel", + ]; + + public static readonly DEFAULT_ELO = 5000; + + public static readonly FILL_TIMEOUT_MINUTES = 30; + public static readonly EXTEND_THRESHOLD_MINUTES = 5; + public static readonly EXTEND_GRACE_MINUTES = 10; + public static readonly MAX_LIFETIME_MINUTES = 120; + + constructor( + public readonly logger: Logger, + public readonly hasura: HasuraService, + public readonly cache: CacheService, + public readonly redisManager: RedisManagerService, + @Inject(forwardRef(() => DraftService)) + private readonly draftService: DraftService, + @InjectQueue(DraftGameQueues.DraftGames) private queue: Queue, + ) { + this.redis = this.redisManager.getConnection(); + } + + public static lockKey(draftGameId: string): string { + return `draft-game:${draftGameId}`; + } + + private draftLock(draftGameId: string, callback: () => Promise) { + return this.cache.lock( + DraftGameService.lockKey(draftGameId), + callback, + ) as Promise; + } + + private playerLock(steamId: string, callback: () => Promise) { + return this.cache.lock( + `draft-game:player:${steamId}`, + callback, + ) as Promise; + } + + public async createDraftGame(user: User, settings: CreateDraftGameSettings) { + if (!DraftGameService.DRAFTABLE_TYPES.includes(settings.type)) { + throw new DraftGameError("Invalid draft game type"); + } + + if (settings.mode === "Teams") { + await this.verifyTeamAccess(user, [ + settings.team_1_id, + settings.team_2_id, + ]); + } + + const draftGameId = await this.playerLock(user.steam_id, async () => { + await this.verifyPlayerEligible(user.steam_id); + + const existing = await this.getPlayerActiveDraftGame(user.steam_id); + if (existing) { + await this.notifyExisting(user.steam_id, existing); + throw new DraftGameError("You are already in a draft game"); + } + + const capacity = ExpectedPlayers[settings.type]; + const elo = await this.getPlayerElo(user.steam_id, settings.type); + + const matchOptionsId = await this.createMatchOptions(user, settings); + + // Both teams set => fixed lineup => the lobby is locked to Private. + const bothTeams = + settings.mode === "Teams" && + !!settings.team_1_id && + !!settings.team_2_id; + const access = ( + bothTeams ? "Private" : settings.access || "Open" + ) as e_lobby_access_enum; + + let inserted; + try { + const { insert_draft_games_one } = await this.hasura.mutation({ + insert_draft_games_one: { + __args: { + object: { + host_steam_id: user.steam_id, + type: settings.type, + mode: settings.mode || "Captains", + access, + match_options_id: matchOptionsId, + team_1_id: settings.team_1_id, + team_2_id: settings.team_2_id, + inner_squad: settings.inner_squad || false, + require_approval: settings.require_approval || false, + regions: settings.regions || [], + map_pool_id: settings.map_pool_id, + captain_selection: settings.captain_selection, + draft_order: settings.draft_order, + min_elo: settings.min_elo, + max_elo: settings.max_elo, + capacity, + players: { + data: [ + { + steam_id: user.steam_id, + elo_snapshot: elo, + status: "Accepted", + }, + ], + }, + }, + }, + id: true, + }, + }); + inserted = insert_draft_games_one; + } catch (error) { + if (matchOptionsId) { + await this.hasura.mutation({ + delete_match_options_by_pk: { + __args: { id: matchOptionsId }, + __typename: true, + }, + }); + } + throw error; + } + + await this.clearOtherRequests(user.steam_id, inserted.id); + + if (settings.mode === "Teams") { + await this.seedDraftPlayers( + inserted.id, + user.steam_id, + settings.roster || [], + settings.type, + ); + } else { + await this.addLobbyMembersToDraft( + user.steam_id, + inserted.id, + settings, + capacity, + ); + } + + return inserted.id; + }); + + await this.queue.add( + "DraftFillTimeout", + { + draftGameId, + }, + { + delay: DraftGameService.FILL_TIMEOUT_MINUTES * 60 * 1000, + jobId: `draft.fill.${draftGameId}`, + }, + ); + + await this.broadcastRoom(draftGameId); + + return draftGameId; + } + + private async getFillDeadline(draftGameId: string): Promise { + const job = await this.queue.getJob(`draft.fill.${draftGameId}`); + if (!job || job.delay == null || job.timestamp == null) { + return null; + } + return job.timestamp + job.delay; + } + + private cappedDeadline(createdAt: string | undefined, desired: number) { + if (!createdAt) { + return desired; + } + const maxLifetime = + new Date(createdAt).getTime() + + DraftGameService.MAX_LIFETIME_MINUTES * 60 * 1000; + return Math.min(desired, maxLifetime); + } + + public async extendDraftGame(user: User, draftGameId: string) { + return this.draftLock(draftGameId, async () => { + const draftGame = await this.getDraftGame(draftGameId); + + if (!draftGame) { + throw new DraftGameError("Draft game not found"); + } + + if (user.steam_id !== draftGame.host_steam_id) { + throw new DraftGameError("Only the host can extend the lobby"); + } + + if (draftGame.status !== "Open" || draftGame.match_id) { + throw new DraftGameError("This lobby can no longer be extended"); + } + + const deadline = this.cappedDeadline( + draftGame.created_at, + Date.now() + DraftGameService.FILL_TIMEOUT_MINUTES * 60 * 1000, + ); + + await this.scheduleFillTimeout(draftGameId, deadline, draftGame.players); + }); + } + + private async bumpFillTimeout(draftGame: DraftGame) { + const current = await this.getFillDeadline(draftGame.id); + if (current === null) { + return; + } + + const threshold = DraftGameService.EXTEND_THRESHOLD_MINUTES * 60 * 1000; + if (current - Date.now() > threshold) { + return; + } + + const deadline = this.cappedDeadline( + draftGame.created_at, + Date.now() + DraftGameService.EXTEND_GRACE_MINUTES * 60 * 1000, + ); + + if (deadline <= current) { + return; + } + + await this.scheduleFillTimeout(draftGame.id, deadline, draftGame.players); + } + + private async scheduleFillTimeout( + draftGameId: string, + deadline: number, + players: DraftGamePlayer[], + ) { + try { + await this.queue.remove(`draft.fill.${draftGameId}`); + } catch { + this.logger.debug(`fill-timeout job ${draftGameId} not found`); + } + await this.queue.add( + "DraftFillTimeout", + { draftGameId }, + { + delay: Math.max(0, deadline - Date.now()), + jobId: `draft.fill.${draftGameId}`, + }, + ); + + await this.publishToMembers(players, "draft-games:extended", { + draftGameId, + expiresAt: new Date(deadline).toISOString(), + }); + } + + public async joinDraftGame( + user: User, + draftGameId: string, + inviteCode?: string, + ) { + return this.draftLock(draftGameId, async () => { + const draftGame = await this.getDraftGame(draftGameId); + + if (!draftGame) { + throw new DraftGameError("Draft game not found"); + } + + const terminal = + !!draftGame.match_id || + ["CreatingMatch", "Completed", "Canceled"].includes(draftGame.status); + if (terminal) { + throw new DraftGameError( + "This draft game is no longer accepting players", + ); + } + + if ( + draftGame.players.find((player) => player.steam_id === user.steam_id) + ) { + return; + } + + await this.verifyJoinAccess(user, draftGame, inviteCode); + + const requiresApproval = + draftGame.require_approval && user.steam_id !== draftGame.host_steam_id; + + const started = draftGame.status !== "Open"; + const acceptedCount = this.acceptedPlayers(draftGame).length; + const isFull = acceptedCount >= draftGame.capacity; + + const status = + !started && requiresApproval + ? "Requested" + : started || isFull + ? "Waitlist" + : "Accepted"; + + await this.playerLock(user.steam_id, async () => { + await this.verifyPlayerEligible(user.steam_id); + + if (status !== "Requested") { + const existing = await this.getPlayerActiveDraftGame(user.steam_id); + if (existing) { + await this.notifyExisting(user.steam_id, existing); + throw new DraftGameError("You are already in a draft game"); + } + } + + const elo = await this.getPlayerElo(user.steam_id, draftGame.type); + + if (draftGame.min_elo && elo < draftGame.min_elo) { + throw new DraftGameError("Your rank is too low for this draft game"); + } + + if (draftGame.max_elo && elo > draftGame.max_elo) { + throw new DraftGameError("Your rank is too high for this draft game"); + } + + await this.hasura.mutation({ + insert_draft_game_players_one: { + __args: { + object: { + draft_game_id: draftGameId, + steam_id: user.steam_id, + elo_snapshot: elo, + status, + }, + }, + __typename: true, + }, + }); + + if (status === "Accepted") { + await this.clearOtherRequests(user.steam_id, draftGameId); + } + }); + + if ( + status === "Accepted" && + draftGame.status === "Open" && + !draftGame.match_id + ) { + const updated = await this.getDraftGame(draftGameId); + if (updated) { + await this.bumpFillTimeout(updated); + } + } + + await this.broadcastRoom(draftGameId); + }); + } + + private async verifyJoinAccess( + user: User, + draftGame: DraftGame, + inviteCode?: string, + ) { + if (user.steam_id === draftGame.host_steam_id) { + return; + } + if (draftGame.players.find((player) => player.steam_id === user.steam_id)) { + return; + } + + switch (draftGame.access) { + case "Open": + return; + case "Invite": + if (inviteCode !== draftGame.invite_code) { + throw new DraftGameError("A valid invite is required to join"); + } + return; + case "Friends": { + const memberIds = draftGame.players + .map((player) => player.steam_id) + .concat(draftGame.host_steam_id); + + const { my_friends } = await this.hasura.query({ + my_friends: { + __args: { + where: { + steam_id: { _eq: user.steam_id }, + friend_steam_id: { _in: memberIds }, + status: { _eq: "Accepted" }, + }, + }, + friend_steam_id: true, + }, + }); + + if (!my_friends || my_friends.length === 0) { + throw new DraftGameError("This lobby is friends-only"); + } + return; + } + case "Private": + throw new DraftGameError("This lobby is private"); + default: + throw new DraftGameError("This lobby cannot be joined"); + } + } + + private async addLobbyMembersToDraft( + hostSteamId: string, + draftGameId: string, + settings: CreateDraftGameSettings, + capacity: number, + ) { + if (settings.mode === "Teams") { + return; + } + + const members = await this.getPartyMembers(hostSteamId); + const others = members.filter((steamId) => steamId !== hostSteamId); + + if (others.length === 0) { + return; + } + + const candidates = await this.getDraftCandidates(others, settings.type); + + const perTeam = capacity / 2; + const keepTogether = + !!settings.keep_lobby_together && + members.length <= perTeam && + ["Host", "Pug"].includes(settings.mode || ""); + + if (keepTogether) { + await this.hasura.mutation({ + update_draft_game_players_by_pk: { + __args: { + pk_columns: { draft_game_id: draftGameId, steam_id: hostSteamId }, + _set: { lineup: 1, pick_order: 1 }, + }, + __typename: true, + }, + }); + } + + let accepted = 1; + let teamCount = 1; + + for (const steamId of others) { + if (accepted >= capacity) { + break; + } + + const candidate = candidates.get(steamId); + if (!candidate || !candidate.eligible) { + continue; + } + + const elo = candidate.elo; + if (settings.min_elo && elo < settings.min_elo) { + continue; + } + if (settings.max_elo && elo > settings.max_elo) { + continue; + } + + const nextPickOrder = teamCount + 1; + + const inserted = await this.playerLock(steamId, async () => { + const elsewhere = await this.getPlayerActiveDraftGame(steamId); + if (elsewhere) { + return false; + } + + await this.hasura.mutation({ + insert_draft_game_players_one: { + __args: { + object: { + draft_game_id: draftGameId, + steam_id: steamId, + elo_snapshot: elo, + status: "Accepted", + lineup: keepTogether ? 1 : null, + pick_order: keepTogether ? nextPickOrder : null, + }, + }, + __typename: true, + }, + }); + + await this.clearOtherRequests(steamId, draftGameId); + await this.pushActiveDraft(steamId); + + return true; + }); + + if (!inserted) { + continue; + } + + teamCount++; + accepted++; + } + } + + /** + * Seeds a Teams-mode lobby with the explicit lineup the host built in the + * wizard. Each entry's `lineup` is 1, 2, or null (a backup on the Waitlist); + * `pick_order` is assigned by order within each lineup. + */ + private async seedDraftPlayers( + draftGameId: string, + hostSteamId: string, + roster: Array, + type: e_match_types_enum, + ) { + const pickOrders: Record = { 1: 0, 2: 0 }; + const seen = new Set(); + + for (const entry of roster) { + const steamId = String(entry.steam_id); + // A player on both rosters is only seeded once (first assignment wins). + if (seen.has(steamId)) { + continue; + } + seen.add(steamId); + const lineup = + entry.lineup === 1 || entry.lineup === 2 ? entry.lineup : null; + const status = lineup === null ? "Waitlist" : "Accepted"; + const pickOrder = lineup === null ? null : ++pickOrders[lineup]; + const elo = await this.getPlayerElo(steamId, type); + + // The host already exists as a player; just set their lineup. + if (steamId === hostSteamId) { + await this.hasura.mutation({ + update_draft_game_players_by_pk: { + __args: { + pk_columns: { draft_game_id: draftGameId, steam_id: steamId }, + _set: { status, lineup, pick_order: pickOrder }, + }, + __typename: true, + }, + }); + continue; + } + + await this.playerLock(steamId, async () => { + // Starters claim the player; backups can sit on multiple waitlists. + if (status === "Accepted") { + const elsewhere = await this.getPlayerActiveDraftGame(steamId); + if (elsewhere && elsewhere !== draftGameId) { + return; + } + } + + await this.hasura.mutation({ + insert_draft_game_players_one: { + __args: { + object: { + draft_game_id: draftGameId, + steam_id: steamId, + elo_snapshot: elo, + status, + lineup, + pick_order: pickOrder, + }, + on_conflict: { + constraint: "draft_game_players_pkey", + update_columns: ["status", "lineup", "pick_order"], + }, + }, + __typename: true, + }, + }); + + if (status === "Accepted") { + await this.clearOtherRequests(steamId, draftGameId); + await this.pushActiveDraft(steamId); + } + }); + } + } + + private async reseedDraftPlayers( + draftGameId: string, + hostSteamId: string, + roster: Array, + type: e_match_types_enum, + ) { + // Drop everyone but the host, reset the host, then re-seed from scratch. + await this.hasura.mutation({ + delete_draft_game_players: { + __args: { + where: { + draft_game_id: { _eq: draftGameId }, + steam_id: { _neq: hostSteamId }, + }, + }, + __typename: true, + }, + }); + + await this.hasura.mutation({ + update_draft_game_players_by_pk: { + __args: { + pk_columns: { draft_game_id: draftGameId, steam_id: hostSteamId }, + _set: { + status: "Accepted", + lineup: null, + pick_order: null, + is_captain: false, + }, + }, + __typename: true, + }, + }); + + await this.seedDraftPlayers(draftGameId, hostSteamId, roster, type); + } + + private teamForLineup( + draftGame: DraftGame, + lineup?: number | null, + ): string | undefined { + if (lineup === 1) { + return draftGame.team_1_id; + } + if (lineup === 2) { + return ( + draftGame.team_2_id || + (draftGame.inner_squad ? draftGame.team_1_id : undefined) + ); + } + return undefined; + } + + private async isTeamMember( + teamId: string, + steamId: string, + ): Promise { + const { team_roster } = await this.hasura.query({ + team_roster: { + __args: { + where: { + team_id: { _eq: teamId }, + player_steam_id: { _eq: steamId }, + }, + limit: 1, + }, + player_steam_id: true, + }, + }); + + return team_roster.length > 0; + } + + /** + * Swaps a team member between the starting lineup and the bench. Allowed for + * the host (either side) or any member of the team that owns the side being + * changed. `lineup` of null benches the player; 1 or 2 starts them. + */ + public async teamAssign( + user: User, + draftGameId: string, + steamId: string, + lineup: number | null, + ) { + return this.draftLock(draftGameId, async () => { + const draftGame = await this.getDraftGame(draftGameId); + + if (!draftGame) { + throw new DraftGameError("Draft game not found"); + } + + if (draftGame.mode !== "Teams") { + throw new DraftGameError("Only team lobbies support swaps"); + } + + if (draftGame.status !== "Open" || draftGame.match_id) { + throw new DraftGameError("This lobby can no longer be changed"); + } + + const target = draftGame.players.find( + (player) => player.steam_id === steamId, + ); + + if (!target) { + throw new DraftGameError("Player is not in this lobby"); + } + + // Already benched and asked to bench again — nothing to do. + if (lineup === null && (target.lineup === null || target.lineup === undefined)) { + return; + } + + // The side we're changing decides which team must authorize it. + const sideLineup = lineup === 1 || lineup === 2 ? lineup : target.lineup; + const teamId = this.teamForLineup(draftGame, sideLineup); + + if (!teamId) { + throw new DraftGameError("That side has no team"); + } + + const isHost = user.steam_id === draftGame.host_steam_id; + if (!isHost && !(await this.isTeamMember(teamId, user.steam_id))) { + throw new DraftGameError( + "Only the host or a team member can swap players", + ); + } + + if (lineup === null) { + await this.hasura.mutation({ + update_draft_game_players_by_pk: { + __args: { + pk_columns: { draft_game_id: draftGameId, steam_id: steamId }, + _set: { status: "Waitlist", lineup: null, pick_order: null }, + }, + __typename: true, + }, + }); + await this.broadcastRoom(draftGameId); + return; + } + + if (lineup !== 1 && lineup !== 2) { + throw new DraftGameError("Invalid team"); + } + + // A starter has to actually be on the team that owns the side. + if (!(await this.isTeamMember(teamId, steamId))) { + throw new DraftGameError("That player is not on this team"); + } + + const perTeam = draftGame.capacity / 2; + const teamCount = draftGame.players.filter( + (player) => player.lineup === lineup && player.steam_id !== steamId, + ).length; + + if (teamCount >= perTeam) { + throw new DraftGameError("That side is full"); + } + + await this.hasura.mutation({ + update_draft_game_players_by_pk: { + __args: { + pk_columns: { draft_game_id: draftGameId, steam_id: steamId }, + _set: { status: "Accepted", lineup, pick_order: teamCount + 1 }, + }, + __typename: true, + }, + }); + + await this.broadcastRoom(draftGameId); + }); + } + + private async getDraftCandidates( + steamIds: Array, + type: e_match_types_enum, + ): Promise> { + const candidates = new Map(); + + if (steamIds.length === 0) { + return candidates; + } + + const { players } = await this.hasura.query({ + players: { + __args: { where: { steam_id: { _in: steamIds } } }, + steam_id: true, + is_banned: true, + matchmaking_cooldown: true, + is_in_another_match: true, + elo: true, + }, + }); + + for (const player of players) { + const eligible = + !player.is_banned && + !player.matchmaking_cooldown && + !player.is_in_another_match; + + const eloMap = player.elo as Record | null | undefined; + const raw = eloMap ? eloMap[type.toLowerCase()] : undefined; + const parsed = raw != null ? Number(raw) : NaN; + const elo = Number.isFinite(parsed) + ? parsed + : DraftGameService.DEFAULT_ELO; + + candidates.set(player.steam_id, { eligible, elo }); + } + + return candidates; + } + + private async getPartyMembers(steamId: string): Promise { + const { players_by_pk } = await this.hasura.query({ + players_by_pk: { + __args: { steam_id: steamId }, + current_lobby_id: true, + }, + }); + + const lobbyId = players_by_pk?.current_lobby_id; + if (!lobbyId) { + return [steamId]; + } + + const { lobbies_by_pk } = await this.hasura.query({ + lobbies_by_pk: { + __args: { id: lobbyId }, + players: { + __args: { where: { status: { _eq: "Accepted" } } }, + steam_id: true, + }, + }, + }); + + const members = (lobbies_by_pk?.players || []).map( + (player) => player.steam_id, + ); + + if (!members.includes(steamId)) { + members.unshift(steamId); + } + + return members; + } + + public async joinDraftGameAsParty( + user: User, + draftGameId: string, + inviteCode?: string, + ) { + return this.draftLock(draftGameId, async () => { + const draftGame = await this.getDraftGame(draftGameId); + + if (!draftGame || draftGame.status !== "Open" || draftGame.match_id) { + throw new DraftGameError("This lobby is not open"); + } + + await this.verifyJoinAccess(user, draftGame, inviteCode); + + const members = await this.getPartyMembers(user.steam_id); + const requiresApproval = + draftGame.require_approval && user.steam_id !== draftGame.host_steam_id; + + let acceptedCount = this.acceptedPlayers(draftGame).length; + const joined: string[] = []; + + for (const steamId of members) { + if (draftGame.players.find((player) => player.steam_id === steamId)) { + continue; + } + + const status = requiresApproval + ? "Requested" + : acceptedCount < draftGame.capacity + ? "Accepted" + : "Waitlist"; + + const inserted = await this.playerLock(steamId, async () => { + const elsewhere = await this.getPlayerActiveDraftGame(steamId); + if (elsewhere && elsewhere !== draftGameId) { + return false; + } + + const elo = await this.getPlayerElo(steamId, draftGame.type); + if (draftGame.min_elo && elo < draftGame.min_elo) { + return false; + } + if (draftGame.max_elo && elo > draftGame.max_elo) { + return false; + } + + await this.hasura.mutation({ + insert_draft_game_players_one: { + __args: { + object: { + draft_game_id: draftGameId, + steam_id: steamId, + elo_snapshot: elo, + status, + }, + }, + __typename: true, + }, + }); + + if (status === "Accepted") { + await this.clearOtherRequests(steamId, draftGameId); + await this.pushActiveDraft(steamId); + } + + return true; + }); + + if (!inserted) { + continue; + } + + if (status === "Accepted") { + acceptedCount++; + } + + joined.push(steamId); + } + + if (joined.length === 0) { + throw new DraftGameError("No one in your party could join this lobby"); + } + + await this.broadcastRoom(draftGameId); + }); + } + + public acceptedPlayers(draftGame: DraftGame) { + return draftGame.players.filter((player) => player.status === "Accepted"); + } + + public waitlistPlayers(draftGame: DraftGame) { + return draftGame.players + .filter((player) => player.status === "Waitlist") + .sort((a, b) => + String(a.joined_at || "").localeCompare(String(b.joined_at || "")), + ); + } + + private async promoteFromWaitlist(draftGameId: string) { + const draftGame = await this.getDraftGame(draftGameId); + if (!draftGame || draftGame.match_id || draftGame.status !== "Open") { + return; + } + + while (this.acceptedPlayers(draftGame).length < draftGame.capacity) { + const next = this.waitlistPlayers(draftGame)[0]; + if (!next) { + return; + } + + const elsewhere = await this.getPlayerActiveDraftGame(next.steam_id); + if (elsewhere && elsewhere !== draftGameId) { + await this.hasura.mutation({ + delete_draft_game_players_by_pk: { + __args: { + draft_game_id: draftGameId, + steam_id: next.steam_id, + }, + __typename: true, + }, + }); + draftGame.players = draftGame.players.filter( + (player) => player.steam_id !== next.steam_id, + ); + continue; + } + + await this.hasura.mutation({ + update_draft_game_players_by_pk: { + __args: { + pk_columns: { + draft_game_id: draftGameId, + steam_id: next.steam_id, + }, + _set: { status: "Accepted" }, + }, + __typename: true, + }, + }); + + await this.clearOtherRequests(next.steam_id, draftGameId); + await this.pushActiveDraft(next.steam_id); + await this.redis.publish( + "send-message-to-steam-id", + JSON.stringify({ + steamId: next.steam_id, + event: "draft-games:accepted", + data: { draftGameId }, + }), + ); + + next.status = "Accepted"; + } + } + + public async kickPlayer(user: User, draftGameId: string, steamId: string) { + return this.draftLock(draftGameId, async () => { + const draftGame = await this.getDraftGame(draftGameId); + + if (!draftGame || draftGame.match_id) { + return; + } + + if (user.steam_id !== draftGame.host_steam_id) { + throw new DraftGameError("Only the host can kick players"); + } + + if (steamId === draftGame.host_steam_id) { + throw new DraftGameError("You cannot kick yourself"); + } + + await this.hasura.mutation({ + delete_draft_game_players_by_pk: { + __args: { draft_game_id: draftGameId, steam_id: steamId }, + __typename: true, + }, + }); + + await this.redis.publish( + "send-message-to-steam-id", + JSON.stringify({ + steamId, + event: "draft-games:canceled", + data: { draftGameId }, + }), + ); + + await this.pushActiveDraft(steamId); + + await this.promoteFromWaitlist(draftGameId); + + await this.broadcastRoom(draftGameId); + }); + } + + public async addPlayer(user: User, draftGameId: string, steamId: string) { + return this.draftLock(draftGameId, async () => { + const draftGame = await this.getDraftGame(draftGameId); + + if (!draftGame) { + throw new DraftGameError("Draft game not found"); + } + + if (user.steam_id !== draftGame.host_steam_id) { + throw new DraftGameError("Only the host can add players"); + } + + if (draftGame.match_id) { + throw new DraftGameError("Players can only be added before the match"); + } + + if (["Completed", "Canceled"].includes(draftGame.status)) { + throw new DraftGameError("This draft game is no longer active"); + } + + if (draftGame.players.find((player) => player.steam_id === steamId)) { + return; + } + + if (this.acceptedPlayers(draftGame).length >= draftGame.capacity) { + throw new DraftGameError("This draft game is full"); + } + + await this.verifyPlayerEligible(steamId); + + const existing = await this.getPlayerActiveDraftGame(steamId); + if (existing) { + throw new DraftGameError("That player is already in a draft game"); + } + + const elo = await this.getPlayerElo(steamId, draftGame.type); + + await this.hasura.mutation({ + insert_draft_game_players_one: { + __args: { + object: { + draft_game_id: draftGameId, + steam_id: steamId, + elo_snapshot: elo, + status: "Accepted", + }, + }, + __typename: true, + }, + }); + + await this.clearOtherRequests(steamId, draftGameId); + + await this.redis.publish( + "send-message-to-steam-id", + JSON.stringify({ + steamId, + event: "draft-games:added", + data: { draftGameId }, + }), + ); + + await this.broadcastRoom(draftGameId); + }); + } + + private async resolveMapPoolId( + settings: Partial, + draftGame: DraftGame, + ): Promise { + if (settings.map_pool_id) { + return settings.map_pool_id; + } + + const customMaps = (settings.options as Record)?.map_pool?.data + ?.maps?.data as Array | undefined; + + if (!customMaps?.length) { + return null; + } + + const mapIds = customMaps.filter((map) => map?.id).map((map) => map.id); + + if (draftGame.match_options_id) { + const { match_options_by_pk } = await this.hasura.query({ + match_options_by_pk: { + __args: { id: draftGame.match_options_id }, + map_pool: { + id: true, + type: true, + }, + }, + }); + + const existing = match_options_by_pk?.map_pool; + if (existing?.type === "Custom") { + await this.hasura.mutation({ + delete__map_pool: { + __args: { where: { map_pool_id: { _eq: existing.id } } }, + affected_rows: true, + }, + }); + await this.hasura.mutation({ + insert__map_pool: { + __args: { + objects: mapIds.map((map_id) => ({ + map_pool_id: existing.id, + map_id, + })), + }, + affected_rows: true, + }, + }); + return existing.id; + } + } + + const { insert_map_pools_one } = await this.hasura.mutation({ + insert_map_pools_one: { + __args: { + object: { + type: "Custom", + maps: { + data: mapIds.map((id) => ({ id })), + }, + }, + }, + id: true, + }, + }); + + return insert_map_pools_one.id; + } + + private matchOptionScalars( + user: User, + options: Record, + ): Record { + const source = options as Record; + + const object: Record = { + lobby_access: "Private", + mr: source.mr, + best_of: source.best_of, + knife_round: source.knife_round, + default_models: source.default_models, + overtime: source.overtime, + map_veto: source.map_veto, + coaches: source.coaches, + region_veto: source.region_veto, + regions: Array.isArray(source.regions) ? source.regions : [], + number_of_substitutes: source.number_of_substitutes, + timeout_setting: source.timeout_setting, + ready_setting: source.ready_setting, + tech_timeout_setting: source.tech_timeout_setting, + tv_delay: source.tv_delay, + }; + + if (source.map_pool_id) { + object.map_pool_id = source.map_pool_id; + } + + if (isRoleAbove(user.role, "tournament_organizer")) { + object.auto_cancellation = source.auto_cancellation; + object.match_mode = source.match_mode; + object.auto_cancel_duration = source.auto_cancel_duration ?? null; + object.live_match_timeout = source.live_match_timeout ?? null; + } + + return object; + } + + private async createMatchOptions( + user: User, + settings: CreateDraftGameSettings, + ): Promise { + if (!settings.options) { + return undefined; + } + + const source = settings.options as Record; + + const object: Record = { + ...this.matchOptionScalars(user, source), + type: settings.type, + }; + + if (!source.map_pool_id && source.map_pool?.data?.maps?.data) { + object.map_pool = { + data: { + type: "Custom", + maps: { + data: (source.map_pool.data.maps.data as Array) + .filter((map) => map?.id) + .map((map) => ({ id: map.id })), + }, + }, + }; + } + + const { insert_match_options_one } = await this.hasura.mutation({ + insert_match_options_one: { + __args: { + object, + }, + id: true, + }, + }); + + return insert_match_options_one.id; + } + + private async deleteMatchOptions(matchOptionsId?: string | null) { + if (!matchOptionsId) { + return; + } + + await this.hasura.mutation({ + delete_match_options_by_pk: { + __args: { id: matchOptionsId }, + __typename: true, + }, + }); + } + + private async verifyTeamAccess( + user: User, + teamIds: Array, + ) { + const ids = teamIds.filter((id): id is string => !!id); + + if (ids.length === 0) { + return; + } + + if (ids.length === 2 && ids[0] === ids[1]) { + throw new DraftGameError("Team 1 and Team 2 cannot be the same"); + } + + if (isRoleAbove(user.role, "match_organizer")) { + return; + } + + const { team_roster } = await this.hasura.query({ + team_roster: { + __args: { + where: { + team_id: { _in: ids }, + player_steam_id: { _eq: user.steam_id }, + }, + }, + team_id: true, + }, + }); + + const owned = new Set(team_roster.map((row) => row.team_id)); + + for (const id of ids) { + if (!owned.has(id)) { + throw new DraftGameError("You are not a member of that team"); + } + } + } + + public async updateDraftSettings( + user: User, + draftGameId: string, + settings: Partial, + ) { + return this.draftLock(draftGameId, async () => { + const draftGame = await this.getDraftGame(draftGameId); + + if (!draftGame) { + throw new DraftGameError("Draft game not found"); + } + + if (user.steam_id !== draftGame.host_steam_id) { + throw new DraftGameError("Only the host can edit settings"); + } + + if (draftGame.status !== "Open") { + throw new DraftGameError( + "Settings can only be changed before the draft", + ); + } + + const nextMode = (settings.mode || + draftGame.mode) as e_draft_game_mode_enum; + + if (nextMode === "Teams") { + await this.verifyTeamAccess(user, [ + settings.team_1_id, + settings.team_2_id, + ]); + } + + let capacity = draftGame.capacity; + if (settings.type && settings.type !== draftGame.type) { + if (!DraftGameService.DRAFTABLE_TYPES.includes(settings.type)) { + throw new DraftGameError("Invalid draft game type"); + } + capacity = ExpectedPlayers[settings.type]; + } + + const _set: Record = {}; + if (settings.type) { + _set.type = settings.type; + _set.capacity = capacity; + } + if (settings.regions) { + _set.regions = settings.regions; + } + if (settings.mode) { + _set.mode = settings.mode; + } + if (settings.access) { + _set.access = settings.access; + } + if (settings.captain_selection) { + _set.captain_selection = settings.captain_selection; + } + if (settings.draft_order) { + _set.draft_order = settings.draft_order; + } + if (settings.require_approval !== undefined) { + _set.require_approval = settings.require_approval; + } + const mapPoolId = await this.resolveMapPoolId(settings, draftGame); + + const nextTeam1 = nextMode === "Teams" ? settings.team_1_id : undefined; + const nextTeam2 = nextMode === "Teams" ? settings.team_2_id : undefined; + const nextInnerSquad = + nextMode === "Teams" ? !!settings.inner_squad : false; + + _set.team_1_id = nextTeam1 ?? null; + _set.team_2_id = nextTeam2 ?? null; + _set.inner_squad = nextInnerSquad; + _set.map_pool_id = mapPoolId; + _set.min_elo = settings.min_elo ?? null; + _set.max_elo = settings.max_elo ?? null; + + // Both teams set => fixed lineup => the lobby is locked to Private. + if (nextMode === "Teams" && nextTeam1 && nextTeam2) { + _set.access = "Private"; + } + + await this.hasura.mutation({ + update_draft_games_by_pk: { + __args: { + pk_columns: { id: draftGameId }, + _set, + }, + __typename: true, + }, + }); + + await this.reconcileAfterSettingsChange(draftGame, nextMode, capacity); + + // The wizard sends the explicit lineup; reseed to match what was saved. + if (nextMode === "Teams" && settings.roster) { + await this.reseedDraftPlayers( + draftGameId, + draftGame.host_steam_id, + settings.roster, + settings.type || draftGame.type, + ); + } + + if (settings.options && draftGame.match_options_id) { + const optionSet = this.matchOptionScalars(user, settings.options); + if (mapPoolId) { + optionSet.map_pool_id = mapPoolId; + } + await this.hasura.mutation({ + update_match_options_by_pk: { + __args: { + pk_columns: { id: draftGame.match_options_id }, + _set: optionSet, + }, + __typename: true, + }, + }); + } + + await this.broadcastRoom(draftGameId); + }); + } + + private async reconcileAfterSettingsChange( + previous: DraftGame, + nextMode: e_draft_game_mode_enum, + capacity: number, + ) { + const perTeam = capacity / 2; + + if (nextMode === "Captains") { + await this.clearAssignedTeams(previous.id); + } else if (capacity !== previous.capacity) { + const overfilled = [1, 2].some( + (lineup) => + previous.players.filter((player) => player.lineup === lineup).length > + perTeam, + ); + if (overfilled) { + await this.clearAssignedTeams(previous.id); + } + } + + if (capacity < previous.capacity) { + await this.demoteOverflowToWaitlist(previous, capacity); + } + } + + private async clearAssignedTeams(draftGameId: string) { + await this.hasura.mutation({ + update_draft_game_players: { + __args: { + where: { draft_game_id: { _eq: draftGameId } }, + _set: { lineup: null, pick_order: null, is_captain: false }, + }, + __typename: true, + }, + }); + } + + private async demoteOverflowToWaitlist( + draftGame: DraftGame, + capacity: number, + ) { + if (this.acceptedPlayers(draftGame).length <= capacity) { + return; + } + + const { draft_game_players } = await this.hasura.query({ + draft_game_players: { + __args: { + where: { + draft_game_id: { _eq: draftGame.id }, + status: { _eq: "Accepted" }, + steam_id: { _neq: draftGame.host_steam_id }, + }, + order_by: [{ joined_at: "asc" }], + }, + steam_id: true, + }, + }); + + const overflow = draft_game_players.slice(capacity - 1); + + for (const player of overflow) { + await this.hasura.mutation({ + update_draft_game_players_by_pk: { + __args: { + pk_columns: { + draft_game_id: draftGame.id, + steam_id: player.steam_id, + }, + _set: { + status: "Waitlist", + lineup: null, + pick_order: null, + is_captain: false, + }, + }, + __typename: true, + }, + }); + } + } + + public async approveRequest( + user: User, + draftGameId: string, + steamId: string, + ) { + return this.draftLock(draftGameId, async () => { + const draftGame = await this.getDraftGame(draftGameId); + + if (!draftGame) { + throw new DraftGameError("Draft game not found"); + } + + if (user.steam_id !== draftGame.host_steam_id) { + throw new DraftGameError("Only the host can approve requests"); + } + + const request = draftGame.players.find( + (player) => + player.steam_id === steamId && player.status === "Requested", + ); + + if (!request) { + throw new DraftGameError("Request not found"); + } + + const acceptedCount = this.acceptedPlayers(draftGame).length; + const status = + acceptedCount >= draftGame.capacity ? "Waitlist" : "Accepted"; + + const elsewhere = await this.getPlayerActiveDraftGame(steamId); + if (elsewhere && elsewhere !== draftGameId) { + throw new DraftGameError("That player already joined another draft"); + } + + await this.hasura.mutation({ + update_draft_game_players_by_pk: { + __args: { + pk_columns: { draft_game_id: draftGameId, steam_id: steamId }, + _set: { status }, + }, + __typename: true, + }, + }); + + if (status === "Accepted") { + await this.clearOtherRequests(steamId, draftGameId); + } + + await this.pushActiveDraft(steamId); + + await this.redis.publish( + "send-message-to-steam-id", + JSON.stringify({ + steamId, + event: "draft-games:accepted", + data: { draftGameId }, + }), + ); + + if (status === "Accepted" && !draftGame.match_id) { + const updated = await this.getDraftGame(draftGameId); + if (updated) { + await this.bumpFillTimeout(updated); + } + } + + await this.broadcastRoom(draftGameId); + }); + } + + public async denyRequest(user: User, draftGameId: string, steamId: string) { + return this.draftLock(draftGameId, async () => { + const draftGame = await this.getDraftGame(draftGameId); + + if (!draftGame) { + return; + } + + if (user.steam_id !== draftGame.host_steam_id) { + throw new DraftGameError("Only the host can deny requests"); + } + + const request = draftGame.players.find( + (player) => + player.steam_id === steamId && player.status === "Requested", + ); + + if (!request) { + throw new DraftGameError("That player has not requested to join"); + } + + await this.hasura.mutation({ + delete_draft_game_players_by_pk: { + __args: { draft_game_id: draftGameId, steam_id: steamId }, + __typename: true, + }, + }); + + await this.redis.publish( + "send-message-to-steam-id", + JSON.stringify({ + steamId, + event: "draft-games:canceled", + data: { draftGameId }, + }), + ); + + await this.broadcastRoom(draftGameId); + }); + } + + public async leaveDraftGame(user: User, draftGameId: string) { + return this.draftLock(draftGameId, async () => { + const draftGame = await this.getDraftGame(draftGameId); + + if (!draftGame) { + return; + } + + if ( + !draftGame.players.find((player) => player.steam_id === user.steam_id) + ) { + return; + } + + if (draftGame.status === "Completed") { + return; + } + + if (draftGame.status !== "Open") { + await this.cancelDraftGame( + draftGameId, + "A player left during the draft", + ); + return; + } + + await this.hasura.mutation({ + delete_draft_game_players_by_pk: { + __args: { + draft_game_id: draftGameId, + steam_id: user.steam_id, + }, + __typename: true, + }, + }); + + await this.pushActiveDraft(user.steam_id); + + const hostLeaving = draftGame.host_steam_id === user.steam_id; + + await this.promoteFromWaitlist(draftGameId); + + const updated = await this.getDraftGame(draftGameId); + if (!updated) { + return; + } + + const remainingAccepted = this.acceptedPlayers(updated); + + if ( + updated.players.length === 0 || + (hostLeaving && remainingAccepted.length === 0) + ) { + await this.hasura.mutation({ + delete_draft_games_by_pk: { + __args: { + id: draftGameId, + }, + __typename: true, + }, + }); + + await this.deleteMatchOptions(updated.match_options_id); + + await this.publishToMembers(updated.players, "draft-games:canceled", { + draftGameId, + }); + return; + } + + if (hostLeaving) { + await this.hasura.mutation({ + update_draft_games_by_pk: { + __args: { + pk_columns: { id: draftGameId }, + _set: { host_steam_id: remainingAccepted[0].steam_id }, + }, + __typename: true, + }, + }); + } + + await this.broadcastRoom(draftGameId); + }); + } + + public async cancelDraftGame(draftGameId: string, reason?: string) { + const draftGame = await this.getDraftGame(draftGameId); + + if (!draftGame) { + return; + } + + if (draftGame.status === "Completed" || draftGame.match_id) { + return; + } + + await this.hasura.mutation({ + delete_draft_games_by_pk: { + __args: { id: draftGameId }, + __typename: true, + }, + }); + + await this.deleteMatchOptions(draftGame.match_options_id); + + try { + await this.queue.remove(`draft.fill.${draftGameId}`); + } catch { + this.logger.debug(`fill-timeout job ${draftGameId} not found`); + } + + await this.draftService.removeAllPickTimers(draftGameId); + + await this.publishToMembers(draftGame.players, "draft-games:canceled", { + draftGameId, + reason, + }); + + await Promise.all( + draftGame.players.map((player) => + this.pushActiveDraft(player.steam_id), + ), + ); + } + + public async expireFillTimeout(draftGameId: string) { + return this.draftLock(draftGameId, async () => { + const draftGame = await this.getDraftGame(draftGameId); + + if (!draftGame || draftGame.status !== "Open") { + return; + } + + if (this.acceptedPlayers(draftGame).length >= draftGame.capacity) { + return; + } + + await this.cancelDraftGame( + draftGameId, + "Draft game expired before filling", + ); + }); + } + + public async cancelByHost(user: User, draftGameId: string) { + return this.draftLock(draftGameId, async () => { + const draftGame = await this.getDraftGame(draftGameId); + + if (!draftGame) { + await this.redis.publish( + "send-message-to-steam-id", + JSON.stringify({ + steamId: user.steam_id, + event: "draft-games:canceled", + data: { draftGameId }, + }), + ); + return; + } + + if (user.steam_id !== draftGame.host_steam_id) { + throw new DraftGameError("Only the host can cancel the draft"); + } + + if (draftGame.match_id) { + throw new DraftGameError("A match has already been created"); + } + + await this.cancelDraftGame(draftGameId, "Canceled by the host"); + }); + } + + public async getDraftGame( + draftGameId: string, + ): Promise { + const { draft_games_by_pk } = await this.hasura.query({ + draft_games_by_pk: { + __args: { + id: draftGameId, + }, + id: true, + host_steam_id: true, + status: true, + type: true, + mode: true, + access: true, + invite_code: true, + regions: true, + map_pool_id: true, + match_options_id: true, + team_1_id: true, + team_2_id: true, + inner_squad: true, + captain_selection: true, + draft_order: true, + min_elo: true, + max_elo: true, + capacity: true, + require_approval: true, + match_id: true, + current_pick_lineup: true, + pick_deadline: true, + created_at: true, + players: { + steam_id: true, + status: true, + elo_snapshot: true, + is_captain: true, + lineup: true, + pick_order: true, + joined_at: true, + player: { + name: true, + avatar_url: true, + }, + }, + }, + }); + + if (!draft_games_by_pk) { + return undefined; + } + + const fillDeadline = await this.getFillDeadline(draftGameId); + + return { + id: draft_games_by_pk.id, + host_steam_id: draft_games_by_pk.host_steam_id, + status: draft_games_by_pk.status, + type: draft_games_by_pk.type, + mode: draft_games_by_pk.mode as e_draft_game_mode_enum, + access: draft_games_by_pk.access, + invite_code: draft_games_by_pk.invite_code, + regions: draft_games_by_pk.regions, + map_pool_id: draft_games_by_pk.map_pool_id, + match_options_id: draft_games_by_pk.match_options_id, + team_1_id: draft_games_by_pk.team_1_id, + team_2_id: draft_games_by_pk.team_2_id, + captain_selection: draft_games_by_pk.captain_selection, + draft_order: draft_games_by_pk.draft_order, + min_elo: draft_games_by_pk.min_elo, + max_elo: draft_games_by_pk.max_elo, + capacity: draft_games_by_pk.capacity, + require_approval: draft_games_by_pk.require_approval, + match_id: draft_games_by_pk.match_id, + current_pick_lineup: draft_games_by_pk.current_pick_lineup, + pick_deadline: draft_games_by_pk.pick_deadline, + created_at: draft_games_by_pk.created_at, + fill_deadline: + fillDeadline === null + ? undefined + : new Date(fillDeadline).toISOString(), + players: draft_games_by_pk.players.map((player) => { + return { + steam_id: player.steam_id, + name: player.player.name, + avatar_url: player.player.avatar_url, + elo_snapshot: player.elo_snapshot, + is_captain: player.is_captain, + status: player.status, + lineup: player.lineup, + pick_order: player.pick_order, + joined_at: player.joined_at, + }; + }), + }; + } + + public async broadcastRoom(draftGameId: string) { + const draftGame = await this.getDraftGame(draftGameId); + + if (!draftGame) { + return; + } + + for (const player of draftGame.players) { + const canSeeInvite = + player.status === "Accepted" || + player.steam_id === draftGame.host_steam_id; + + await this.redis.publish( + "send-message-to-steam-id", + JSON.stringify({ + steamId: player.steam_id, + event: "draft-games:room", + data: { + draftGame: canSeeInvite + ? draftGame + : { ...draftGame, invite_code: undefined }, + }, + }), + ); + } + + const accepted = this.acceptedPlayers(draftGame); + const summary = ["Completed", "Canceled"].includes(draftGame.status) + ? null + : { + id: draftGame.id, + type: draftGame.type, + mode: draftGame.mode, + status: draftGame.status, + capacity: draftGame.capacity, + accepted: accepted.length, + }; + + for (const player of accepted) { + await this.publishActiveDraft(player.steam_id, summary); + } + } + + private async publishActiveDraft(steamId: string, draftGame: unknown) { + await this.redis.publish( + "send-message-to-steam-id", + JSON.stringify({ + steamId, + event: "draft-games:active", + data: { draftGame }, + }), + ); + } + + public async pushActiveDraft(steamId: string) { + const draftGameId = await this.getPlayerActiveDraftGame(steamId); + + let summary: unknown = null; + if (draftGameId) { + const draftGame = await this.getDraftGame(draftGameId); + if (draftGame && !["Completed", "Canceled"].includes(draftGame.status)) { + summary = { + id: draftGame.id, + type: draftGame.type, + mode: draftGame.mode, + status: draftGame.status, + capacity: draftGame.capacity, + accepted: this.acceptedPlayers(draftGame).length, + }; + } + } + + await this.publishActiveDraft(steamId, summary); + } + + public async publishToMembers( + players: Array, + event: string, + data: Record, + ) { + await Promise.all( + players.map((player) => + this.redis.publish( + "send-message-to-steam-id", + JSON.stringify({ + steamId: player.steam_id, + event, + data, + }), + ), + ), + ); + } + + private async getPlayerActiveDraftGame( + steamId: string, + ): Promise { + const { draft_game_players } = await this.hasura.query({ + draft_game_players: { + __args: { + where: { + steam_id: { _eq: steamId }, + status: { _eq: "Accepted" }, + draft_game: { + status: { + _nin: ["Completed", "Canceled"], + }, + }, + }, + order_by: [{ joined_at: "desc" }], + limit: 1, + }, + draft_game_id: true, + }, + }); + + return draft_game_players.at(0)?.draft_game_id; + } + + private async notifyExisting(steamId: string, draftGameId: string) { + await this.redis.publish( + "send-message-to-steam-id", + JSON.stringify({ + steamId, + event: "draft-games:existing", + data: { draftGameId }, + }), + ); + } + + private async clearOtherRequests(steamId: string, keepDraftGameId: string) { + const { draft_game_players } = await this.hasura.query({ + draft_game_players: { + __args: { + where: { + steam_id: { _eq: steamId }, + draft_game_id: { _neq: keepDraftGameId }, + draft_game: { + status: { _nin: ["Completed", "Canceled"] }, + host_steam_id: { _neq: steamId }, + }, + }, + }, + draft_game_id: true, + }, + }); + + const affected = Array.from( + new Set(draft_game_players.map((row) => row.draft_game_id)), + ); + + if (affected.length === 0) { + return; + } + + await this.hasura.mutation({ + delete_draft_game_players: { + __args: { + where: { + steam_id: { _eq: steamId }, + draft_game_id: { _in: affected }, + }, + }, + __typename: true, + }, + }); + + for (const draftGameId of affected) { + await this.broadcastRoom(draftGameId); + } + } + + private async verifyPlayerEligible(steamId: string) { + const { players_by_pk: player } = await this.hasura.query({ + players_by_pk: { + __args: { + steam_id: steamId, + }, + name: true, + is_banned: true, + matchmaking_cooldown: true, + is_in_another_match: true, + }, + }); + + if (!player) { + throw new DraftGameError("Player not found"); + } + + if (player.is_in_another_match) { + throw new DraftGameError(`${player.name} is already in a match`); + } + + if (player.matchmaking_cooldown) { + throw new DraftGameError(`${player.name} is in matchmaking cooldown`); + } + + if (player.is_banned) { + throw new DraftGameError(`${player.name} is banned`); + } + } + + public async getPlayerElo( + steamId: string, + type: e_match_types_enum, + ): Promise { + const { players_by_pk: player } = await this.hasura.query({ + players_by_pk: { + __args: { + steam_id: steamId, + }, + elo: true, + }, + }); + + const elo = player?.elo as Record | null | undefined; + const value = elo ? elo[type.toLowerCase()] : undefined; + const parsed = value != null ? Number(value) : NaN; + + if (!Number.isFinite(parsed)) { + return DraftGameService.DEFAULT_ELO; + } + + return parsed; + } +} diff --git a/src/draft-games/draft-games.gateway.ts b/src/draft-games/draft-games.gateway.ts new file mode 100644 index 00000000..c06bff82 --- /dev/null +++ b/src/draft-games/draft-games.gateway.ts @@ -0,0 +1,423 @@ +import Redis from "ioredis"; +import { Logger } from "@nestjs/common"; +import { + ConnectedSocket, + MessageBody, + SubscribeMessage, + WebSocketGateway, +} from "@nestjs/websockets"; +import { FiveStackWebSocketClient } from "src/sockets/types/FiveStackWebSocketClient"; +import { RedisManagerService } from "../redis/redis-manager/redis-manager.service"; +import { DraftGameService, CreateDraftGameSettings } from "./draft-game.service"; +import { DraftService } from "./draft.service"; +import { DraftGame } from "./types/DraftGame"; +import { DraftGameError } from "./types/DraftGameError"; + +@WebSocketGateway({ + path: "/ws/web", +}) +export class DraftGamesGateway { + public redis: Redis; + + constructor( + public readonly logger: Logger, + public readonly redisManager: RedisManagerService, + public readonly draftGameService: DraftGameService, + public readonly draftService: DraftService, + ) { + this.redis = this.redisManager.getConnection(); + } + + @SubscribeMessage("draft-games:create") + async create( + @MessageBody() data: CreateDraftGameSettings, + @ConnectedSocket() client: FiveStackWebSocketClient, + ) { + const user = client.user; + if (!user) { + return; + } + + try { + const draftGameId = await this.draftGameService.createDraftGame( + user, + data, + ); + + await this.redis.publish( + "send-message-to-steam-id", + JSON.stringify({ + steamId: user.steam_id, + event: "draft-games:created", + data: { draftGameId }, + }), + ); + } catch (error) { + await this.handleError(client, error); + } + } + + @SubscribeMessage("draft-games:update") + async update( + @MessageBody() data: { draftGameId: string; settings: CreateDraftGameSettings }, + @ConnectedSocket() client: FiveStackWebSocketClient, + ) { + const user = client.user; + if (!user) { + return; + } + + try { + await this.draftGameService.updateDraftSettings( + user, + data.draftGameId, + data.settings, + ); + } catch (error) { + await this.handleError(client, error); + } + } + + @SubscribeMessage("draft-games:join") + async join( + @MessageBody() data: { draftGameId: string; inviteCode?: string }, + @ConnectedSocket() client: FiveStackWebSocketClient, + ) { + const user = client.user; + if (!user) { + return; + } + + try { + await this.draftGameService.joinDraftGame( + user, + data.draftGameId, + data.inviteCode, + ); + } catch (error) { + await this.handleError(client, error); + } + } + + @SubscribeMessage("draft-games:join-party") + async joinParty( + @MessageBody() data: { draftGameId: string; inviteCode?: string }, + @ConnectedSocket() client: FiveStackWebSocketClient, + ) { + const user = client.user; + if (!user) { + return; + } + + try { + await this.draftGameService.joinDraftGameAsParty( + user, + data.draftGameId, + data.inviteCode, + ); + } catch (error) { + await this.handleError(client, error); + } + } + + @SubscribeMessage("draft-games:watch") + async watch(@ConnectedSocket() client: FiveStackWebSocketClient) { + const user = client.user; + if (!user) { + return; + } + await this.draftGameService.pushActiveDraft(user.steam_id); + } + + @SubscribeMessage("draft-games:cancel") + async cancel( + @MessageBody() data: { draftGameId: string }, + @ConnectedSocket() client: FiveStackWebSocketClient, + ) { + const user = client.user; + if (!user) { + return; + } + + try { + await this.draftGameService.cancelByHost(user, data.draftGameId); + } catch (error) { + await this.handleError(client, error); + } + } + + @SubscribeMessage("draft-games:extend") + async extend( + @MessageBody() data: { draftGameId: string }, + @ConnectedSocket() client: FiveStackWebSocketClient, + ) { + const user = client.user; + if (!user) { + return; + } + + try { + await this.draftGameService.extendDraftGame(user, data.draftGameId); + } catch (error) { + await this.handleError(client, error); + } + } + + @SubscribeMessage("draft-games:leave") + async leave( + @MessageBody() data: { draftGameId: string }, + @ConnectedSocket() client: FiveStackWebSocketClient, + ) { + const user = client.user; + if (!user) { + return; + } + + try { + await this.draftGameService.leaveDraftGame(user, data.draftGameId); + } catch (error) { + await this.handleError(client, error); + } + } + + @SubscribeMessage("draft-games:pick") + async pick( + @MessageBody() + data: { draftGameId: string; steamId: string; lineup?: number }, + @ConnectedSocket() client: FiveStackWebSocketClient, + ) { + const user = client.user; + if (!user) { + return; + } + + try { + await this.draftService.pick( + user, + data.draftGameId, + data.steamId, + data.lineup, + ); + } catch (error) { + await this.handleError(client, error); + } + } + + @SubscribeMessage("draft-games:team-assign") + async teamAssign( + @MessageBody() + data: { draftGameId: string; steamId: string; lineup: number | null }, + @ConnectedSocket() client: FiveStackWebSocketClient, + ) { + const user = client.user; + if (!user) { + return; + } + + try { + await this.draftGameService.teamAssign( + user, + data.draftGameId, + data.steamId, + data.lineup, + ); + } catch (error) { + await this.handleError(client, error); + } + } + + @SubscribeMessage("draft-games:add") + async add( + @MessageBody() data: { draftGameId: string; steamId: string }, + @ConnectedSocket() client: FiveStackWebSocketClient, + ) { + const user = client.user; + if (!user) { + return; + } + + try { + await this.draftGameService.addPlayer( + user, + data.draftGameId, + data.steamId, + ); + } catch (error) { + await this.handleError(client, error); + } + } + + @SubscribeMessage("draft-games:kick") + async kick( + @MessageBody() data: { draftGameId: string; steamId: string }, + @ConnectedSocket() client: FiveStackWebSocketClient, + ) { + const user = client.user; + if (!user) { + return; + } + + try { + await this.draftGameService.kickPlayer( + user, + data.draftGameId, + data.steamId, + ); + } catch (error) { + await this.handleError(client, error); + } + } + + @SubscribeMessage("draft-games:approve") + async approve( + @MessageBody() data: { draftGameId: string; steamId: string }, + @ConnectedSocket() client: FiveStackWebSocketClient, + ) { + const user = client.user; + if (!user) { + return; + } + + try { + await this.draftGameService.approveRequest( + user, + data.draftGameId, + data.steamId, + ); + } catch (error) { + await this.handleError(client, error); + } + } + + @SubscribeMessage("draft-games:deny") + async deny( + @MessageBody() data: { draftGameId: string; steamId: string }, + @ConnectedSocket() client: FiveStackWebSocketClient, + ) { + const user = client.user; + if (!user) { + return; + } + + try { + await this.draftGameService.denyRequest( + user, + data.draftGameId, + data.steamId, + ); + } catch (error) { + await this.handleError(client, error); + } + } + + @SubscribeMessage("draft-games:start") + async start( + @MessageBody() data: { draftGameId: string }, + @ConnectedSocket() client: FiveStackWebSocketClient, + ) { + const user = client.user; + if (!user) { + return; + } + + try { + await this.draftService.startGame(user, data.draftGameId); + } catch (error) { + await this.handleError(client, error); + } + } + + @SubscribeMessage("draft-games:draft-room:join") + async joinRoom( + @MessageBody() data: { draftGameId: string }, + @ConnectedSocket() client: FiveStackWebSocketClient, + ) { + const user = client.user; + if (!user) { + return; + } + + const draftGame = await this.draftGameService.getDraftGame( + data.draftGameId, + ); + + if (!draftGame) { + return; + } + + const isMember = draftGame.players.some( + (player: { steam_id: string }) => player.steam_id === user.steam_id, + ); + const isHost = draftGame.host_steam_id === user.steam_id; + + if (!isMember && !isHost && draftGame.access !== "Open") { + return; + } + + const payload = + isHost || isMember + ? draftGame + : this.sanitizeOpenLobby(draftGame); + + await this.redis.publish( + "send-message-to-steam-id", + JSON.stringify({ + steamId: user.steam_id, + event: "draft-games:room", + data: { draftGame: payload }, + }), + ); + } + + @SubscribeMessage("draft-games:draft-room:leave") + async leaveRoom() { + return; + } + + private sanitizeOpenLobby(draftGame: DraftGame) { + const accepted = this.draftGameService.acceptedPlayers(draftGame); + + return { + id: draftGame.id, + type: draftGame.type, + mode: draftGame.mode, + access: draftGame.access, + status: draftGame.status, + capacity: draftGame.capacity, + require_approval: draftGame.require_approval, + min_elo: draftGame.min_elo, + max_elo: draftGame.max_elo, + regions: draftGame.regions, + accepted: accepted.length, + players: accepted.map((player) => { + return { + name: player.name, + avatar_url: player.avatar_url, + }; + }), + }; + } + + private async handleError( + client: FiveStackWebSocketClient, + error: unknown, + ) { + const isExpected = error instanceof DraftGameError; + if (!isExpected) { + this.logger.error("draft games error", error); + } + + await this.redis.publish( + "send-message-to-steam-id", + JSON.stringify({ + steamId: client.user.steam_id, + event: "draft-games:error", + data: { + message: isExpected + ? (error as DraftGameError).message + : "Something went wrong — please try again.", + }, + }), + ); + } +} diff --git a/src/draft-games/draft-games.module.ts b/src/draft-games/draft-games.module.ts new file mode 100644 index 00000000..b1cf2163 --- /dev/null +++ b/src/draft-games/draft-games.module.ts @@ -0,0 +1,45 @@ +import { forwardRef, Module } from "@nestjs/common"; +import { loggerFactory } from "../utilities/LoggerFactory"; +import { HasuraModule } from "src/hasura/hasura.module"; +import { RedisModule } from "src/redis/redis.module"; +import { CacheModule } from "src/cache/cache.module"; +import { MatchesModule } from "src/matches/matches.module"; +import { BullMQAdapter } from "@bull-board/api/bullMQAdapter"; +import { BullBoardModule } from "@bull-board/nestjs"; +import { BullModule } from "@nestjs/bullmq"; +import { getQueuesProcessors } from "src/utilities/QueueProcessors"; +import { DraftGameQueues } from "./enums/DraftGameQueues"; +import { DraftGamesGateway } from "./draft-games.gateway"; +import { DraftGameService } from "./draft-game.service"; +import { DraftService } from "./draft.service"; +import { DraftMatchService } from "./draft-match.service"; +import { DraftPickTimeout } from "./jobs/DraftPickTimeout"; +import { DraftFillTimeout } from "./jobs/DraftFillTimeout"; + +@Module({ + imports: [ + RedisModule, + HasuraModule, + CacheModule, + forwardRef(() => MatchesModule), + BullModule.registerQueue({ + name: DraftGameQueues.DraftGames, + }), + BullBoardModule.forFeature({ + name: DraftGameQueues.DraftGames, + adapter: BullMQAdapter, + }), + ], + exports: [DraftGameService], + providers: [ + DraftGamesGateway, + DraftGameService, + DraftService, + DraftMatchService, + DraftPickTimeout, + DraftFillTimeout, + ...getQueuesProcessors("DraftGames"), + loggerFactory(), + ], +}) +export class DraftGamesModule {} diff --git a/src/draft-games/draft-match.service.ts b/src/draft-games/draft-match.service.ts new file mode 100644 index 00000000..93faef50 --- /dev/null +++ b/src/draft-games/draft-match.service.ts @@ -0,0 +1,322 @@ +import { Logger } from "@nestjs/common"; +import { forwardRef, Inject, Injectable } from "@nestjs/common"; +import { e_map_pool_types_enum } from "generated"; +import { HasuraService } from "src/hasura/hasura.service"; +import { CacheService } from "src/cache/cache.service"; +import { MatchAssistantService } from "src/matches/match-assistant/match-assistant.service"; +import { DraftGameService } from "./draft-game.service"; +import { DraftGame } from "./types/DraftGame"; + +@Injectable() +export class DraftMatchService { + constructor( + public readonly logger: Logger, + public readonly hasura: HasuraService, + public readonly cache: CacheService, + public readonly matchAssistant: MatchAssistantService, + @Inject(forwardRef(() => DraftGameService)) + private readonly draftGameService: DraftGameService, + ) {} + + public async finalize(draftGameId: string) { + const draftGame = await this.draftGameService.getDraftGame(draftGameId); + + if (!draftGame || draftGame.status === "Completed") { + return; + } + + let match = await this.findExistingMatch(draftGame); + + if (!match) { + await this.hasura.mutation({ + update_draft_games_by_pk: { + __args: { + pk_columns: { id: draftGameId }, + _set: { status: "CreatingMatch" }, + }, + __typename: true, + }, + }); + + const beforeCreate = + await this.draftGameService.getDraftGame(draftGameId); + if ( + !beforeCreate || + beforeCreate.status === "Canceled" || + beforeCreate.status === "Completed" + ) { + return; + } + + match = await this.findExistingMatch(beforeCreate); + + if (!match) { + match = await this.createMatch(beforeCreate); + + await this.hasura.mutation({ + update_draft_games_by_pk: { + __args: { + pk_columns: { id: draftGameId }, + _set: { match_id: match.id }, + }, + __typename: true, + }, + }); + } + } + + // Starters (lineup 1/2) become the match lineup; Waitlist backups stay + // benched. For Teams mode the lineups are also linked to the team_id for + // identity, but the explicit starters drive who actually plays. + await this.ensureLineups(draftGame, match); + + const beforeComplete = + await this.draftGameService.getDraftGame(draftGameId); + if (!beforeComplete || beforeComplete.status === "Canceled") { + return; + } + + await this.hasura.mutation({ + update_draft_games_by_pk: { + __args: { + pk_columns: { id: draftGameId }, + _set: { + status: "Completed", + match_id: match.id, + match_options_id: null, + }, + }, + __typename: true, + }, + }); + + await this.matchAssistant.updateMatchStatus(match.id, "Live"); + + await this.draftGameService.publishToMembers( + draftGame.players, + "draft-games:completed", + { + draftGameId, + matchId: match.id, + }, + ); + + for (const player of draftGame.players) { + await this.draftGameService.pushActiveDraft(player.steam_id); + } + } + + private async ensureLineups( + draftGame: DraftGame, + match: { lineup_1_id?: string | null; lineup_2_id?: string | null }, + ) { + const lineupIds = [match.lineup_1_id, match.lineup_2_id].filter( + (id): id is string => !!id, + ); + + if (lineupIds.length === 0) { + return; + } + + const { match_lineup_players } = await this.hasura.query({ + match_lineup_players: { + __args: { + where: { match_lineup_id: { _in: lineupIds } }, + limit: 1, + }, + steam_id: true, + }, + }); + + if (match_lineup_players.length > 0) { + return; + } + + const { team1, team2 } = this.buildTeams(draftGame); + const captain1 = this.captainSteamId(team1); + const captain2 = this.captainSteamId(team2); + + await this.hasura.mutation({ + insert_match_lineup_players: { + __args: { + objects: team1.map((player) => ({ + steam_id: player.steam_id, + match_lineup_id: match.lineup_1_id, + captain: player.steam_id === captain1, + })), + }, + __typename: true, + }, + }); + + await this.hasura.mutation({ + insert_match_lineup_players: { + __args: { + objects: team2.map((player) => ({ + steam_id: player.steam_id, + match_lineup_id: match.lineup_2_id, + captain: player.steam_id === captain2, + })), + }, + __typename: true, + }, + }); + } + + private buildTeams(draftGame: DraftGame) { + return { + team1: draftGame.players.filter((player) => player.lineup === 1), + team2: draftGame.players.filter((player) => player.lineup === 2), + }; + } + + private async findExistingMatch(draftGame: DraftGame): Promise<{ + id: string; + lineup_1_id?: string | null; + lineup_2_id?: string | null; + } | null> { + if (draftGame.match_id) { + const { matches_by_pk } = await this.hasura.query({ + matches_by_pk: { + __args: { id: draftGame.match_id }, + id: true, + lineup_1_id: true, + lineup_2_id: true, + }, + }); + + if (matches_by_pk) { + return matches_by_pk; + } + } + + if (draftGame.match_options_id) { + const { matches } = await this.hasura.query({ + matches: { + __args: { + where: { match_options_id: { _eq: draftGame.match_options_id } }, + limit: 1, + }, + id: true, + lineup_1_id: true, + lineup_2_id: true, + }, + }); + + if (matches.length > 0) { + return matches[0]; + } + } + + return null; + } + + private async createMatch(draftGame: DraftGame) { + if (draftGame.match_options_id) { + const { insert_matches_one } = await this.hasura.mutation({ + insert_matches_one: { + __args: { + object: { + match_options_id: draftGame.match_options_id, + organizer_steam_id: draftGame.host_steam_id, + ...(draftGame.mode === "Teams" + ? { + lineup_1: { data: { team_id: draftGame.team_1_id } }, + lineup_2: { data: { team_id: draftGame.team_2_id } }, + } + : {}), + }, + }, + id: true, + lineup_1_id: true, + lineup_2_id: true, + }, + }); + + return insert_matches_one; + } + + const mapPoolType: e_map_pool_types_enum = + draftGame.type === "Premier" || draftGame.type === "Faceit" + ? "Competitive" + : draftGame.type; + + const maps = await this.getMapPoolMaps(draftGame.map_pool_id); + + const match = await this.matchAssistant.createMatchBasedOnType( + draftGame.type, + mapPoolType, + { + mr: draftGame.type === "Competitive" ? 12 : 8, + best_of: 1, + knife: true, + overtime: true, + timeout_setting: "Admin", + ...(maps.length > 0 && { maps }), + }, + ); + + await this.setMatchOptionsRegions(match.id, draftGame.regions); + + return match; + } + + private captainSteamId( + team: Array<{ steam_id: string; pick_order?: number }>, + ) { + return [...team].sort( + (a, b) => (a.pick_order ?? 0) - (b.pick_order ?? 0), + )[0]?.steam_id; + } + + private async getMapPoolMaps(mapPoolId?: string): Promise> { + if (!mapPoolId) { + return []; + } + + const { _map_pool } = await this.hasura.query({ + _map_pool: { + __args: { + where: { + map_pool_id: { _eq: mapPoolId }, + }, + }, + map_id: true, + }, + }); + + return _map_pool.map((row) => row.map_id); + } + + private async setMatchOptionsRegions( + matchId: string, + regions: Array, + ) { + if (!regions || regions.length === 0) { + return; + } + + const { matches_by_pk: match } = await this.hasura.query({ + matches_by_pk: { + __args: { + id: matchId, + }, + match_options_id: true, + }, + }); + + if (!match?.match_options_id) { + return; + } + + await this.hasura.mutation({ + update_match_options_by_pk: { + __args: { + pk_columns: { id: match.match_options_id }, + _set: { regions }, + }, + __typename: true, + }, + }); + } +} diff --git a/src/draft-games/draft.service.ts b/src/draft-games/draft.service.ts new file mode 100644 index 00000000..3dcaecef --- /dev/null +++ b/src/draft-games/draft.service.ts @@ -0,0 +1,711 @@ +import Redis from "ioredis"; +import { Queue } from "bullmq"; +import { Logger } from "@nestjs/common"; +import { User } from "../auth/types/User"; +import { InjectQueue } from "@nestjs/bullmq"; +import { forwardRef, Inject, Injectable } from "@nestjs/common"; +import { e_draft_game_draft_order_enum } from "generated"; +import { HasuraService } from "src/hasura/hasura.service"; +import { CacheService } from "src/cache/cache.service"; +import { RedisManagerService } from "../redis/redis-manager/redis-manager.service"; +import { DraftGame, DraftGamePlayer } from "./types/DraftGame"; +import { DraftGameError } from "./types/DraftGameError"; +import { DraftGameQueues } from "./enums/DraftGameQueues"; +import { DraftGameService } from "./draft-game.service"; +import { DraftMatchService } from "./draft-match.service"; + +@Injectable() +export class DraftService { + public redis: Redis; + + public static readonly PICK_SECONDS = 30; + + private static getDraftPickDeadlineKey(draftGameId: string): string { + return `draft-games:v1:${draftGameId}:deadline`; + } + + constructor( + public readonly logger: Logger, + public readonly hasura: HasuraService, + public readonly cache: CacheService, + public readonly redisManager: RedisManagerService, + @Inject(forwardRef(() => DraftGameService)) + private readonly draftGameService: DraftGameService, + private readonly draftMatchService: DraftMatchService, + @InjectQueue(DraftGameQueues.DraftGames) private queue: Queue, + ) { + this.redis = this.redisManager.getConnection(); + } + + public async beginDraft(draftGameId: string) { + return this.cache.lock(DraftGameService.lockKey(draftGameId), async () => { + await this.runDraftStart(draftGameId); + }); + } + + private async runDraftStart(draftGameId: string) { + let draftGame = await this.draftGameService.getDraftGame(draftGameId); + + if (!draftGame || draftGame.status !== "Open") { + return; + } + + const requested = draftGame.players.filter( + (player) => player.status === "Requested", + ); + + if (requested.length > 0) { + await this.hasura.mutation({ + delete_draft_game_players: { + __args: { + where: { + draft_game_id: { _eq: draftGameId }, + status: { _eq: "Requested" }, + }, + }, + __typename: true, + }, + }); + + await this.draftGameService.publishToMembers( + requested, + "draft-games:canceled", + { draftGameId }, + ); + + draftGame = await this.draftGameService.getDraftGame(draftGameId); + + if (!draftGame || draftGame.status !== "Open") { + return; + } + } + + if (draftGame.mode === "Host") { + await this.hasura.mutation({ + update_draft_games_by_pk: { + __args: { + pk_columns: { id: draftGameId }, + _set: { status: "Drafting", current_pick_lineup: null }, + }, + __typename: true, + }, + }); + return; + } + + if (draftGame.mode === "Pug") { + await this.autoSplit(draftGame); + await this.draftMatchService.finalize(draftGameId); + return; + } + + await this.hasura.mutation({ + update_draft_games_by_pk: { + __args: { + pk_columns: { id: draftGameId }, + _set: { status: "SelectingCaptains" }, + }, + __typename: true, + }, + }); + + await this.hasura.mutation({ + update_draft_game_players: { + __args: { + where: { draft_game_id: { _eq: draftGameId } }, + _set: { lineup: null, pick_order: null, is_captain: false }, + }, + __typename: true, + }, + }); + + const [captain1, captain2] = this.selectCaptains(draftGame); + + await this.hasura.mutation({ + update_draft_game_players_by_pk: { + __args: { + pk_columns: { draft_game_id: draftGameId, steam_id: captain1 }, + _set: { is_captain: true, lineup: 1, pick_order: 0 }, + }, + __typename: true, + }, + }); + + await this.hasura.mutation({ + update_draft_game_players_by_pk: { + __args: { + pk_columns: { draft_game_id: draftGameId, steam_id: captain2 }, + _set: { is_captain: true, lineup: 2, pick_order: 0 }, + }, + __typename: true, + }, + }); + + await this.beginDrafting(draftGameId); + } + + private selectCaptains(draftGame: DraftGame): [string, string] { + switch (draftGame.captain_selection) { + case "HostAndNext": + return this.selectCaptainsHostAndNext(draftGame); + case "RandomTwo": + return this.selectCaptainsRandomTwo(draftGame); + case "TopEloTwo": + default: + return this.selectCaptainsTopEloTwo(draftGame); + } + } + + private selectCaptainsTopEloTwo(draftGame: DraftGame): [string, string] { + const accepted = this.draftGameService.acceptedPlayers(draftGame); + + if (accepted.length < 2) { + throw new DraftGameError( + "At least two accepted players are required to select captains", + ); + } + + const sorted = [...accepted].sort( + (a, b) => (b.elo_snapshot || 0) - (a.elo_snapshot || 0), + ); + return [sorted[0].steam_id, sorted[1].steam_id]; + } + + private selectCaptainsHostAndNext(draftGame: DraftGame): [string, string] { + const accepted = this.draftGameService.acceptedPlayers(draftGame); + + if (accepted.length < 2) { + throw new DraftGameError( + "At least two accepted players are required to select captains", + ); + } + + const others = accepted + .filter((player) => player.steam_id !== draftGame.host_steam_id) + .sort((a, b) => (b.elo_snapshot || 0) - (a.elo_snapshot || 0)); + + if (others.length === 0) { + throw new DraftGameError( + "At least two accepted players are required to select captains", + ); + } + + return [draftGame.host_steam_id, others[0].steam_id]; + } + + private selectCaptainsRandomTwo(draftGame: DraftGame): [string, string] { + const accepted = this.draftGameService.acceptedPlayers(draftGame); + + if (accepted.length < 2) { + throw new DraftGameError( + "At least two accepted players are required to select captains", + ); + } + + const shuffled = this.shuffle(accepted); + return [shuffled[0].steam_id, shuffled[1].steam_id]; + } + + private shuffle(items: Array): Array { + const result = [...items]; + for (let index = result.length - 1; index > 0; index--) { + const swap = Math.floor(Math.random() * (index + 1)); + const temp = result[index]; + result[index] = result[swap]; + result[swap] = temp; + } + return result; + } + + public async startGame(user: User, draftGameId: string) { + return this.cache.lock(DraftGameService.lockKey(draftGameId), async () => { + const draftGame = await this.draftGameService.getDraftGame(draftGameId); + + if (!draftGame || draftGame.match_id) { + return; + } + + if (user.steam_id !== draftGame.host_steam_id) { + throw new DraftGameError("Only the host can start the match"); + } + + const perTeam = draftGame.capacity / 2; + const accepted = this.draftGameService.acceptedPlayers(draftGame); + + if (draftGame.mode === "Teams") { + if (!draftGame.team_1_id) { + throw new DraftGameError("Select at least one team first"); + } + await this.draftMatchService.finalize(draftGameId); + return; + } + + if (draftGame.mode === "Host") { + const team1 = accepted.filter((player) => player.lineup === 1).length; + const team2 = accepted.filter((player) => player.lineup === 2).length; + if (team1 !== perTeam || team2 !== perTeam) { + throw new DraftGameError( + "Assign all players into balanced teams first", + ); + } + await this.draftMatchService.finalize(draftGameId); + return; + } + + if (draftGame.mode === "Pug") { + if (accepted.length !== draftGame.capacity) { + throw new DraftGameError("The lobby must be full to start"); + } + await this.autoSplit(draftGame); + await this.draftMatchService.finalize(draftGameId); + return; + } + + if (draftGame.mode === "Captains") { + if (accepted.length !== draftGame.capacity) { + throw new DraftGameError("The lobby must be full to start"); + } + await this.runDraftStart(draftGameId); + return; + } + + throw new DraftGameError("Unable to start this draft game"); + }); + } + + private async autoSplit(draftGame: DraftGame) { + const accepted = this.draftGameService.acceptedPlayers(draftGame); + const counts: Record = { 1: 0, 2: 0 }; + + for (const player of accepted) { + if (player.lineup === 1 || player.lineup === 2) { + counts[player.lineup]++; + } + } + + const unassigned = accepted + .filter((player) => player.lineup !== 1 && player.lineup !== 2) + .sort((a, b) => (b.elo_snapshot || 0) - (a.elo_snapshot || 0)); + + for (const player of unassigned) { + const lineup = counts[1] <= counts[2] ? 1 : 2; + counts[lineup]++; + + await this.hasura.mutation({ + update_draft_game_players_by_pk: { + __args: { + pk_columns: { + draft_game_id: draftGame.id, + steam_id: player.steam_id, + }, + _set: { lineup, pick_order: counts[lineup] }, + }, + __typename: true, + }, + }); + } + } + + private async beginDrafting(draftGameId: string) { + const draftGame = await this.draftGameService.getDraftGame(draftGameId); + + if (!draftGame) { + return; + } + + await this.hasura.mutation({ + update_draft_games_by_pk: { + __args: { + pk_columns: { id: draftGameId }, + _set: { status: "Drafting" }, + }, + __typename: true, + }, + }); + + const undrafted = draftGame.players.filter( + (player) => player.lineup === null || player.lineup === undefined, + ); + + if (undrafted.length === 0) { + await this.draftMatchService.finalize(draftGameId); + return; + } + + const lineup = this.nextLineup(draftGame, 0); + await this.setCurrentPick(draftGameId, lineup); + await this.startPickTimer(draftGameId, 0); + await this.draftGameService.broadcastRoom(draftGameId); + } + + public async pick( + user: User, + draftGameId: string, + pickedSteamId: string, + lineup?: number, + ) { + return this.cache.lock(DraftGameService.lockKey(draftGameId), async () => { + const draftGame = await this.draftGameService.getDraftGame(draftGameId); + + if (!draftGame || draftGame.match_id) { + throw new DraftGameError("Draft is not in progress"); + } + + if (draftGame.mode === "Host") { + if (draftGame.status !== "Open") { + throw new DraftGameError("Draft is not in progress"); + } + await this.hostAssign(draftGame, user, pickedSteamId, lineup); + return; + } + + if (draftGame.status !== "Drafting") { + throw new DraftGameError("Draft is not in progress"); + } + + const currentLineup = draftGame.current_pick_lineup; + const captain = draftGame.players.find( + (player) => player.is_captain && player.lineup === currentLineup, + ); + + if (!captain || captain.steam_id !== user.steam_id) { + throw new DraftGameError("It is not your turn to pick"); + } + + const target = draftGame.players.find( + (player) => player.steam_id === pickedSteamId, + ); + + if (!target) { + throw new DraftGameError("Player is not in this draft game"); + } + + if (target.lineup !== null && target.lineup !== undefined) { + throw new DraftGameError("Player has already been drafted"); + } + + await this.performPick(draftGame, target, false); + }); + } + + private async hostAssign( + draftGame: DraftGame, + user: User, + pickedSteamId: string, + lineup?: number, + ) { + if (user.steam_id !== draftGame.host_steam_id) { + throw new DraftGameError("Only the host can assign players"); + } + + const target = draftGame.players.find( + (player) => player.steam_id === pickedSteamId, + ); + + if (!target) { + throw new DraftGameError("Player is not in this draft game"); + } + + if (lineup === undefined || lineup === null) { + await this.hasura.mutation({ + update_draft_game_players_by_pk: { + __args: { + pk_columns: { + draft_game_id: draftGame.id, + steam_id: pickedSteamId, + }, + _set: { lineup: null, pick_order: null }, + }, + __typename: true, + }, + }); + return; + } + + if (lineup !== 1 && lineup !== 2) { + throw new DraftGameError("Invalid team"); + } + + const perTeam = draftGame.capacity / 2; + const teamCount = draftGame.players.filter( + (player) => player.lineup === lineup && player.steam_id !== pickedSteamId, + ).length; + + if (teamCount >= perTeam) { + throw new DraftGameError("That team is full"); + } + + await this.hasura.mutation({ + update_draft_game_players_by_pk: { + __args: { + pk_columns: { + draft_game_id: draftGame.id, + steam_id: pickedSteamId, + }, + _set: { lineup, pick_order: teamCount + 1 }, + }, + __typename: true, + }, + }); + } + + public async autoPick(draftGameId: string, pickCount: number) { + return this.cache.lock(DraftGameService.lockKey(draftGameId), async () => { + const draftGame = await this.draftGameService.getDraftGame(draftGameId); + + if (!draftGame || draftGame.status !== "Drafting" || draftGame.match_id) { + return; + } + + if (this.draftedCount(draftGame) !== pickCount) { + return; + } + + const undrafted = draftGame.players + .filter( + (player) => player.lineup === null || player.lineup === undefined, + ) + .sort((a, b) => (b.elo_snapshot || 0) - (a.elo_snapshot || 0)); + + if (undrafted.length === 0) { + return; + } + + await this.performPick(draftGame, undrafted[0], true); + }); + } + + private async performPick( + draftGame: DraftGame, + target: DraftGamePlayer, + autoPicked: boolean, + ) { + const currentLineup = draftGame.current_pick_lineup; + const captain = draftGame.players.find( + (player) => player.is_captain && player.lineup === currentLineup, + ); + + if (!captain) { + return; + } + + const pickCount = this.draftedCount(draftGame); + const currentLineupCount = draftGame.players.filter( + (player) => player.lineup === currentLineup, + ).length; + + await this.hasura.mutation({ + update_draft_game_players_by_pk: { + __args: { + pk_columns: { + draft_game_id: draftGame.id, + steam_id: target.steam_id, + }, + _set: { lineup: currentLineup, pick_order: currentLineupCount }, + }, + __typename: true, + }, + }); + + await this.hasura.mutation({ + insert_draft_game_picks_one: { + __args: { + object: { + draft_game_id: draftGame.id, + captain_steam_id: captain.steam_id, + picked_steam_id: target.steam_id, + lineup: currentLineup, + auto_picked: autoPicked, + }, + }, + __typename: true, + }, + }); + + await this.removePickTimer(draftGame.id); + + const undrafted = draftGame.players.filter( + (player) => + player.steam_id !== target.steam_id && + (player.lineup === null || player.lineup === undefined), + ); + + if (undrafted.length === 1) { + const updated = await this.draftGameService.getDraftGame(draftGame.id); + + if (!updated) { + await this.removeAllPickTimers(draftGame.id); + return; + } + + const lineup = this.nextLineup(updated, pickCount + 1); + const lineupCount = updated.players.filter( + (player) => player.lineup === lineup, + ).length; + await this.hasura.mutation({ + update_draft_game_players_by_pk: { + __args: { + pk_columns: { + draft_game_id: draftGame.id, + steam_id: undrafted[0].steam_id, + }, + _set: { lineup, pick_order: lineupCount }, + }, + __typename: true, + }, + }); + + await this.removeAllPickTimers(draftGame.id); + await this.draftMatchService.finalize(draftGame.id); + return; + } + + if (undrafted.length === 0) { + await this.removeAllPickTimers(draftGame.id); + await this.draftMatchService.finalize(draftGame.id); + return; + } + + const updated = await this.draftGameService.getDraftGame(draftGame.id); + + if (!updated) { + await this.removeAllPickTimers(draftGame.id); + return; + } + + const nextLineup = this.nextLineup(updated, pickCount + 1); + await this.setCurrentPick(draftGame.id, nextLineup); + await this.startPickTimer(draftGame.id, pickCount + 1); + await this.draftGameService.broadcastRoom(draftGame.id); + } + + private draftedCount(draftGame: DraftGame): number { + return draftGame.players.filter( + (player) => + !player.is_captain && + player.lineup !== null && + player.lineup !== undefined, + ).length; + } + + private nextLineup(draftGame: DraftGame, pickCount: number): number { + const perTeam = draftGame.capacity / 2; + + const counts = { 1: 0, 2: 0 }; + for (const player of draftGame.players) { + if (player.lineup === 1) { + counts[1]++; + } + if (player.lineup === 2) { + counts[2]++; + } + } + + if (counts[1] >= perTeam) { + return 2; + } + + if (counts[2] >= perTeam) { + return 1; + } + + const order = this.getDraftOrder( + draftGame.draft_order, + draftGame.capacity - 2, + ); + + return order[pickCount] || 1; + } + + private getDraftOrder( + draftOrder: e_draft_game_draft_order_enum, + picks: number, + ): Array { + if (picks <= 0) { + return []; + } + + if (draftOrder === "Alternating") { + return Array.from({ length: picks }, (_, index) => + index % 2 === 0 ? 1 : 2, + ); + } + + const order: Array = [1]; + let next = 2; + while (order.length < picks) { + order.push(next); + if (order.length < picks) { + order.push(next); + } + next = next === 1 ? 2 : 1; + } + return order; + } + + private async setCurrentPick(draftGameId: string, lineup: number) { + await this.hasura.mutation({ + update_draft_games_by_pk: { + __args: { + pk_columns: { id: draftGameId }, + _set: { current_pick_lineup: lineup }, + }, + __typename: true, + }, + }); + } + + private async startPickTimer(draftGameId: string, pickCount: number) { + const deadline = new Date(Date.now() + DraftService.PICK_SECONDS * 1000); + + await this.redis.set( + DraftService.getDraftPickDeadlineKey(draftGameId), + deadline.toISOString(), + "EX", + DraftService.PICK_SECONDS + 10, + ); + + await this.hasura.mutation({ + update_draft_games_by_pk: { + __args: { + pk_columns: { id: draftGameId }, + _set: { pick_deadline: deadline.toISOString() }, + }, + __typename: true, + }, + }); + + await this.removePickTimer(draftGameId); + + await this.queue.add( + "DraftPickTimeout", + { + draftGameId, + pickCount, + }, + { + delay: DraftService.PICK_SECONDS * 1000, + jobId: `draft.pick.${draftGameId}.${pickCount}`, + }, + ); + } + + private async removePickTimer(draftGameId: string) { + const prefix = `draft.pick.${draftGameId}.`; + try { + const delayed = await this.queue.getDelayed(); + for (const job of delayed) { + if (job.id?.startsWith(prefix)) { + await job.remove(); + } + } + } catch { + this.logger.debug(`pick-timer jobs ${draftGameId} not found`); + } + } + + public async removeAllPickTimers(draftGameId: string) { + await this.removePickTimer(draftGameId); + await this.redis.del(DraftService.getDraftPickDeadlineKey(draftGameId)); + } +} diff --git a/src/draft-games/enums/DraftGameQueues.ts b/src/draft-games/enums/DraftGameQueues.ts new file mode 100644 index 00000000..58c64279 --- /dev/null +++ b/src/draft-games/enums/DraftGameQueues.ts @@ -0,0 +1,3 @@ +export enum DraftGameQueues { + DraftGames = "draft-games", +} diff --git a/src/draft-games/jobs/DraftFillTimeout.ts b/src/draft-games/jobs/DraftFillTimeout.ts new file mode 100644 index 00000000..fc96b292 --- /dev/null +++ b/src/draft-games/jobs/DraftFillTimeout.ts @@ -0,0 +1,21 @@ +import { Job } from "bullmq"; +import { WorkerHost } from "@nestjs/bullmq"; +import { DraftGameQueues } from "../enums/DraftGameQueues"; +import { UseQueue } from "../../utilities/QueueProcessors"; +import { DraftGameService } from "../draft-game.service"; + +@UseQueue("DraftGames", DraftGameQueues.DraftGames) +export class DraftFillTimeout extends WorkerHost { + constructor(private readonly draftGameService: DraftGameService) { + super(); + } + + async process( + job: Job<{ + draftGameId: string; + }>, + ): Promise { + const { draftGameId } = job.data; + await this.draftGameService.expireFillTimeout(draftGameId); + } +} diff --git a/src/draft-games/jobs/DraftPickTimeout.ts b/src/draft-games/jobs/DraftPickTimeout.ts new file mode 100644 index 00000000..61255ad3 --- /dev/null +++ b/src/draft-games/jobs/DraftPickTimeout.ts @@ -0,0 +1,22 @@ +import { Job } from "bullmq"; +import { WorkerHost } from "@nestjs/bullmq"; +import { DraftGameQueues } from "../enums/DraftGameQueues"; +import { UseQueue } from "../../utilities/QueueProcessors"; +import { DraftService } from "../draft.service"; + +@UseQueue("DraftGames", DraftGameQueues.DraftGames) +export class DraftPickTimeout extends WorkerHost { + constructor(private readonly draftService: DraftService) { + super(); + } + + async process( + job: Job<{ + draftGameId: string; + pickCount: number; + }>, + ): Promise { + const { draftGameId, pickCount } = job.data; + await this.draftService.autoPick(draftGameId, pickCount); + } +} diff --git a/src/draft-games/types/DraftGame.ts b/src/draft-games/types/DraftGame.ts new file mode 100644 index 00000000..56cca8dd --- /dev/null +++ b/src/draft-games/types/DraftGame.ts @@ -0,0 +1,47 @@ +import { + e_match_types_enum, + e_draft_game_mode_enum, + e_draft_game_status_enum, + e_draft_game_draft_order_enum, + e_draft_game_captain_selection_enum, +} from "generated"; + +export interface DraftGamePlayer { + steam_id: string; + name: string; + avatar_url?: string; + elo_snapshot?: number; + is_captain: boolean; + lineup?: number; + pick_order?: number; + status?: string; + joined_at?: string; +} + +export interface DraftGame { + id: string; + host_steam_id: string; + status: e_draft_game_status_enum; + type: e_match_types_enum; + mode: e_draft_game_mode_enum; + access: string; + invite_code?: string; + regions: Array; + map_pool_id?: string; + match_options_id?: string; + team_1_id?: string; + team_2_id?: string; + inner_squad?: boolean; + captain_selection: e_draft_game_captain_selection_enum; + draft_order: e_draft_game_draft_order_enum; + min_elo?: number; + max_elo?: number; + capacity: number; + require_approval: boolean; + match_id?: string; + current_pick_lineup?: number; + pick_deadline?: string; + created_at?: string; + fill_deadline?: string; + players: Array; +} diff --git a/src/draft-games/types/DraftGameError.ts b/src/draft-games/types/DraftGameError.ts new file mode 100644 index 00000000..8f6a3dec --- /dev/null +++ b/src/draft-games/types/DraftGameError.ts @@ -0,0 +1,6 @@ +export class DraftGameError extends Error { + constructor(message: string) { + super(message); + this.name = "DraftGameError"; + } +} diff --git a/src/news/enums/NewsQueues.ts b/src/news/enums/NewsQueues.ts new file mode 100644 index 00000000..51eca1cd --- /dev/null +++ b/src/news/enums/NewsQueues.ts @@ -0,0 +1,3 @@ +export enum NewsQueues { + "ScrapeTldrNews" = "scrape-tldr-news", +} diff --git a/src/news/jobs/ScrapeTldrNews.ts b/src/news/jobs/ScrapeTldrNews.ts new file mode 100644 index 00000000..34f8a085 --- /dev/null +++ b/src/news/jobs/ScrapeTldrNews.ts @@ -0,0 +1,16 @@ +import { Job } from "bullmq"; +import { WorkerHost } from "@nestjs/bullmq"; +import { UseQueue } from "../../utilities/QueueProcessors"; +import { NewsQueues } from "../enums/NewsQueues"; +import { NewsService } from "../news.service"; + +@UseQueue("News", NewsQueues.ScrapeTldrNews) +export class ScrapeTldrNews extends WorkerHost { + constructor(private readonly newsService: NewsService) { + super(); + } + + async process(job: Job<{ force?: boolean }>): Promise { + await this.newsService.scrape(job.data?.force ?? false); + } +} diff --git a/src/news/news.controller.ts b/src/news/news.controller.ts new file mode 100644 index 00000000..9888bb35 --- /dev/null +++ b/src/news/news.controller.ts @@ -0,0 +1,40 @@ +import { Controller } from "@nestjs/common"; +import { InjectQueue } from "@nestjs/bullmq"; +import { Queue } from "bullmq"; +import { HasuraAction } from "../hasura/hasura.controller"; +import { SystemService } from "src/system/system.service"; +import { SystemSettingName } from "src/system/enums/SystemSettingName"; +import { NewsQueues } from "./enums/NewsQueues"; +import { ScrapeTldrNews } from "./jobs/ScrapeTldrNews"; + +@Controller("news") +export class NewsController { + constructor( + private readonly system: SystemService, + @InjectQueue(NewsQueues.ScrapeTldrNews) private readonly scrapeQueue: Queue, + ) {} + + @HasuraAction() + public async rescanTldrNews() { + const enabled = await this.system.getSetting( + SystemSettingName.TldrNewsEnabled, + false, + ); + + if (!enabled) { + throw Error("tl;dr news integration is not enabled"); + } + + await this.scrapeQueue.add( + ScrapeTldrNews.name, + { force: true }, + { + jobId: "tldr-news.manual", + removeOnComplete: true, + removeOnFail: true, + }, + ); + + return { success: true }; + } +} diff --git a/src/news/news.module.ts b/src/news/news.module.ts new file mode 100644 index 00000000..74709073 --- /dev/null +++ b/src/news/news.module.ts @@ -0,0 +1,58 @@ +import { Module } from "@nestjs/common"; +import { BullModule, InjectQueue } from "@nestjs/bullmq"; +import { BullBoardModule } from "@bull-board/nestjs"; +import { BullMQAdapter } from "@bull-board/api/bullMQAdapter"; +import { Queue } from "bullmq"; +import { HasuraModule } from "src/hasura/hasura.module"; +import { PostgresModule } from "src/postgres/postgres.module"; +import { SystemModule } from "src/system/system.module"; +import { loggerFactory } from "src/utilities/LoggerFactory"; +import { getQueuesProcessors } from "src/utilities/QueueProcessors"; +import { NewsQueues } from "./enums/NewsQueues"; +import { NewsService } from "./news.service"; +import { NewsController } from "./news.controller"; +import { ScrapeTldrNews } from "./jobs/ScrapeTldrNews"; + +@Module({ + imports: [ + BullModule.registerQueue({ + name: NewsQueues.ScrapeTldrNews, + }), + BullBoardModule.forFeature({ + name: NewsQueues.ScrapeTldrNews, + adapter: BullMQAdapter, + }), + HasuraModule, + PostgresModule, + SystemModule, + ], + controllers: [NewsController], + providers: [ + NewsService, + ScrapeTldrNews, + ...getQueuesProcessors("News"), + loggerFactory(), + ], + exports: [NewsService], +}) +export class NewsModule { + constructor( + @InjectQueue(NewsQueues.ScrapeTldrNews) + queue: Queue, + ) { + if (process.env.RUN_MIGRATIONS) { + return; + } + + void queue.add( + ScrapeTldrNews.name, + {}, + { + repeat: { + pattern: "0 * * * *", + jobId: ScrapeTldrNews.name, + }, + }, + ); + } +} diff --git a/src/news/news.service.ts b/src/news/news.service.ts new file mode 100644 index 00000000..d952cbfb --- /dev/null +++ b/src/news/news.service.ts @@ -0,0 +1,479 @@ +import fetch from "node-fetch"; +import * as cheerio from "cheerio"; +import sanitizeHtml from "sanitize-html"; +import { Injectable, Logger } from "@nestjs/common"; +import { PostgresService } from "src/postgres/postgres.service"; +import { SystemService } from "src/system/system.service"; +import { SystemSettingName } from "src/system/enums/SystemSettingName"; + +interface ScrapedArticle { + source: string; + issueNumber: number | null; + slug: string | null; + url: string; + title: string; + teaser: string | null; + contentHtml: string | null; + coverImageUrl: string | null; + author: string | null; + publishedAt: Date | null; +} + +@Injectable() +export class NewsService { + private static readonly SOURCE = "tldr"; + private static readonly BASE_URL = "https://readtldr.gg"; + private static readonly ARCHIVE_PATH = "/csgo-archive"; + private static readonly MAX_ARTICLES = 12; + private static readonly FETCH_TIMEOUT_MS = 15_000; + private static readonly MAX_RESPONSE_BYTES = 8 * 1024 * 1024; + private static readonly ALLOWED_HOSTS = [ + "readtldr.gg", + "web.archive.org", + "website-files.com", + ]; + private static readonly USER_AGENT = + "5stack-news-bot/1.0 (+https://5stack.gg; caches readtldr.gg CS news with attribution)"; + + constructor( + private readonly logger: Logger, + private readonly postgres: PostgresService, + private readonly system: SystemService, + ) {} + + public async scrape(force = false): Promise { + const enabled = await this.system.getSetting( + SystemSettingName.TldrNewsEnabled, + false, + ); + + if (!enabled) { + return; + } + + const links = await this.discoverArticleLinks(); + + if (links.length === 0) { + this.logger.warn("[tldr-news] no article links discovered"); + return; + } + + const newLinks = force ? links : await this.filterUncachedLinks(links); + + if (newLinks.length === 0) { + return; + } + + this.logger.log(`[tldr-news] scraping ${newLinks.length} new article(s)`); + + let saved = 0; + for (const url of newLinks) { + try { + const article = await this.scrapeArticle(url); + if (article) { + await this.upsertArticle(article); + saved++; + } + } catch (error) { + this.logger.warn(`[tldr-news] failed to scrape ${url}`, error); + } + } + + this.logger.log(`[tldr-news] cached ${saved} article(s)`); + } + + private async discoverArticleLinks(): Promise { + const html = await this.fetchHtml( + `${NewsService.BASE_URL}${NewsService.ARCHIVE_PATH}`, + ); + + if (!html) { + return []; + } + + return this.extractArticleLinks(html).slice(0, NewsService.MAX_ARTICLES); + } + + private extractArticleLinks(html: string): string[] { + const $ = cheerio.load(html); + const links = new Set(); + + $(`a[href*="${NewsService.ARCHIVE_PATH}/"]`).each((_, el) => { + const href = $(el).attr("href"); + if (!href) { + return; + } + + const absolute = this.absoluteUrl(href); + if (/\/csgo-archive\/\d+-/.test(absolute)) { + links.add(absolute.split("?")[0].split("#")[0]); + } + }); + + return Array.from(links); + } + + private async filterUncachedLinks(links: string[]): Promise { + const existing = await this.postgres.query< + Array<{ url: string; content_html: string | null }> + >( + `SELECT url, content_html FROM public.news_articles WHERE url = ANY($1::text[])`, + [links], + ); + + const settled = new Set( + existing + .filter((row) => (row.content_html ?? "").trim().length > 0) + .map((row) => row.url), + ); + return links.filter((url) => !settled.has(url)); + } + + private async scrapeArticle(url: string): Promise { + const html = await this.fetchHtml(url); + if (!html) { + return null; + } + + const $ = cheerio.load(html); + + const meta = (property: string) => + $(`meta[property="${property}"]`).attr("content") || + $(`meta[name="${property}"]`).attr("content") || + null; + + const { issueNumber, slug } = this.parseIssueAndSlug(url); + + const title = + this.cleanText(meta("og:title")) || + this.cleanText($("h1").first().text()) || + this.cleanText($("title").text()) || + `Issue #${issueNumber ?? ""}`.trim(); + + const teaser = + this.cleanText(meta("og:description")) || + this.cleanText(meta("description")) || + this.cleanText($(".archive-intro").first().text()); + + const coverImageUrl = this.sanitizeImageUrl(meta("og:image")); + const author = this.cleanText(meta("author") || meta("article:author")); + + const publishedRaw = + meta("article:published_time") || + meta("article:modified_time") || + $("time[datetime]").first().attr("datetime") || + null; + const publishedAt = this.parseDate(publishedRaw); + + const contentHtml = await this.fetchArticleBody(html); + if (!contentHtml) { + this.logger.warn( + `[tldr-news] not storing ${url}: full article body unavailable`, + ); + return null; + } + + return { + source: NewsService.SOURCE, + issueNumber, + slug, + url, + title, + teaser, + contentHtml, + coverImageUrl, + author, + publishedAt, + }; + } + + private async fetchArticleBody(pageHtml: string): Promise { + const webArchiveUrl = this.extractWebArchiveUrl(pageHtml); + + if (!webArchiveUrl) { + this.logger.warn( + "[tldr-news] no article body url found on page; skipping (only the teaser is available)", + ); + return null; + } + + if (!this.isAllowedUrl(webArchiveUrl)) { + const host = this.hostnameOf(webArchiveUrl); + this.logger.warn( + `[tldr-news] article body hosted on non-allowlisted host "${host}" (${webArchiveUrl}); add it to ALLOWED_HOSTS to cache the full article`, + ); + return null; + } + + const raw = await this.fetchHtml(webArchiveUrl); + const cleaned = raw ? this.cleanHtml(raw, webArchiveUrl) : ""; + if (cleaned.length === 0) { + this.logger.warn( + `[tldr-news] failed to fetch full article body from ${webArchiveUrl}; skipping`, + ); + return null; + } + + return cleaned; + } + + private extractWebArchiveUrl(pageHtml: string): string | null { + const match = pageHtml.match(/webArchivePath\s*=\s*["']([^"']+)["']/); + const url = match?.[1]?.trim(); + return url && url.length > 0 ? url : null; + } + + private cleanHtml(rawHtml: string, baseUrl: string): string { + const $ = cheerio.load(rawHtml, null, false); + + $("a[href^='/']").each((_, el) => { + $(el).attr("href", this.absoluteUrl($(el).attr("href") as string, baseUrl)); + }); + $("img[src^='/']").each((_, el) => { + $(el).attr("src", this.absoluteUrl($(el).attr("src") as string, baseUrl)); + }); + + const sanitized = sanitizeHtml($.html() || "", { + allowedTags: [ + "p", + "br", + "hr", + "a", + "ul", + "ol", + "li", + "h1", + "h2", + "h3", + "h4", + "h5", + "h6", + "blockquote", + "strong", + "b", + "em", + "i", + "u", + "s", + "span", + "div", + "code", + "pre", + "img", + "figure", + "figcaption", + "table", + "thead", + "tbody", + "tr", + "th", + "td", + ], + allowedAttributes: { + "*": [ + "style", + "class", + "align", + "valign", + "width", + "height", + "bgcolor", + "border", + "cellpadding", + "cellspacing", + "role", + ], + a: ["href", "title", "rel", "target"], + img: ["src", "alt", "title", "width", "height"], + }, + allowedSchemes: ["http", "https"], + allowedSchemesByTag: { + a: ["http", "https"], + img: ["http", "https"], + }, + allowProtocolRelative: false, + transformTags: { + a: sanitizeHtml.simpleTransform("a", { + rel: "noopener noreferrer", + target: "_blank", + }), + }, + }); + + return sanitized.trim(); + } + + private async upsertArticle(article: ScrapedArticle): Promise { + await this.postgres.query( + `INSERT INTO public.news_articles + (source, issue_number, slug, url, title, teaser, content_html, cover_image_url, author, published_at, scraped_at, updated_at) + VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, coalesce($10, now()), now(), now()) + ON CONFLICT (url) DO UPDATE SET + title = EXCLUDED.title, + teaser = EXCLUDED.teaser, + content_html = EXCLUDED.content_html, + cover_image_url = EXCLUDED.cover_image_url, + author = EXCLUDED.author, + published_at = EXCLUDED.published_at, + scraped_at = now(), + updated_at = now() + WHERE coalesce(trim(public.news_articles.content_html), '') = ''`, + [ + article.source, + article.issueNumber, + article.slug, + article.url, + article.title, + article.teaser, + article.contentHtml, + article.coverImageUrl, + article.author, + article.publishedAt, + ] as Array, + ); + } + + private async fetchHtml(url: string): Promise { + if (!this.isAllowedUrl(url)) { + this.logger.warn(`[tldr-news] refusing to fetch disallowed url ${url}`); + return null; + } + + for (let attempt = 1; attempt <= 3; attempt++) { + try { + const response = await fetch(url, { + headers: { + "User-Agent": NewsService.USER_AGENT, + Accept: "text/html", + "Accept-Encoding": "identity", + }, + redirect: "manual", + size: NewsService.MAX_RESPONSE_BYTES, + signal: AbortSignal.timeout(NewsService.FETCH_TIMEOUT_MS), + }); + + if (response.status >= 300 && response.status < 400) { + this.logger.warn( + `[tldr-news] refusing to follow redirect ${response.status} for ${url}`, + ); + return null; + } + + if (!response.ok) { + this.logger.warn(`[tldr-news] http ${response.status} for ${url}`); + return null; + } + + return await response.text(); + } catch (error) { + if (attempt === 3) { + this.logger.warn( + `[tldr-news] fetch failed for ${url} after ${attempt} attempts`, + error, + ); + return null; + } + await new Promise((resolve) => setTimeout(resolve, 500 * attempt)); + } + } + + return null; + } + + private absoluteUrl( + href: string, + baseUrl: string = NewsService.BASE_URL, + ): string { + const trimmed = href.trim(); + + if (/^https?:\/\//i.test(trimmed)) { + try { + return new URL(trimmed).toString(); + } catch { + return baseUrl; + } + } + + if (/^[a-z][a-z0-9+.-]*:/i.test(trimmed) || trimmed.startsWith("//")) { + return baseUrl; + } + + try { + return new URL(trimmed, `${baseUrl}/`).toString(); + } catch { + return baseUrl; + } + } + + private sanitizeImageUrl(url: string | null | undefined): string | null { + if (!url) { + return null; + } + + let parsed: URL; + try { + parsed = new URL(url); + } catch { + return null; + } + + if (parsed.protocol !== "http:" && parsed.protocol !== "https:") { + return null; + } + + return parsed.toString(); + } + + private hostnameOf(url: string): string { + try { + return new URL(url).hostname.toLowerCase(); + } catch { + return "unknown"; + } + } + + private isAllowedUrl(url: string): boolean { + let parsed: URL; + try { + parsed = new URL(url); + } catch { + return false; + } + + if (parsed.protocol !== "https:") { + return false; + } + + const hostname = parsed.hostname.toLowerCase(); + return NewsService.ALLOWED_HOSTS.some( + (allowed) => hostname === allowed || hostname.endsWith(`.${allowed}`), + ); + } + + private parseIssueAndSlug(url: string): { + issueNumber: number | null; + slug: string | null; + } { + const match = url.match(/\/csgo-archive\/(\d+)-([^/?#]+)/); + if (!match) { + return { issueNumber: null, slug: null }; + } + return { issueNumber: Number(match[1]), slug: match[2] }; + } + + private parseDate(value: string | null): Date | null { + if (!value) { + return null; + } + const date = new Date(value); + return isNaN(date.getTime()) ? null : date; + } + + private cleanText(value: string | null | undefined): string | null { + if (!value) { + return null; + } + const trimmed = value.replace(/\s+/g, " ").trim(); + return trimmed.length > 0 ? trimmed : null; + } +} diff --git a/src/steam-match-history/steam-bans.service.ts b/src/steam-match-history/steam-bans.service.ts index c2811995..fec576aa 100644 --- a/src/steam-match-history/steam-bans.service.ts +++ b/src/steam-match-history/steam-bans.service.ts @@ -129,9 +129,7 @@ export class SteamBansService { await this.storeBans(bans); await this.expireLiftedAutoBans( - bans - .filter((ban) => ban.NumberOfVACBans === 0) - .map((ban) => ban.SteamId), + bans.filter((ban) => ban.NumberOfVACBans === 0).map((ban) => ban.SteamId), ); const flagged = bans.filter((ban) => ban.NumberOfVACBans > 0); @@ -321,7 +319,18 @@ export class SteamBansService { await this.postgres.query( `UPDATE public.players AS p - SET vac_banned = v.vac_banned, + SET vac_banned = CASE + WHEN EXISTS ( + SELECT 1 + FROM public.player_sanctions ps + WHERE ps.player_steam_id = p.steam_id + AND ps.type = 'ban' + AND ps.sanctioned_by_steam_id IS NULL + AND ps.deleted_at IS NOT NULL + AND ps.deleted_at::date >= (now() - (v.days_since_last_ban || ' days')::interval)::date + ) THEN p.vac_banned + ELSE v.vac_banned + END, vac_ban_count = v.vac_ban_count, game_ban_count = v.game_ban_count, days_since_last_ban = v.days_since_last_ban, @@ -340,12 +349,14 @@ export class SteamBansService { private async applyAutoBans(bans: SteamBan[]): Promise { const flaggedIds = bans.map((ban) => ban.SteamId); + const flaggedDays = bans.map((ban) => ban.DaysSinceLastBan ?? 0); const needsBan = await this.postgres.query>( `SELECT p.steam_id::text AS steam_id FROM public.players p - WHERE p.steam_id = ANY($1::bigint[]) - AND p.role <> 'administrator' + JOIN UNNEST($1::bigint[], $2::int[]) AS f(steam_id, days_since_last_ban) + ON p.steam_id = f.steam_id + WHERE p.role <> 'administrator' AND NOT EXISTS ( SELECT 1 FROM public.player_sanctions ps @@ -361,8 +372,9 @@ export class SteamBansService { AND ps.type = 'ban' AND ps.sanctioned_by_steam_id IS NULL AND ps.deleted_at IS NOT NULL + AND ps.deleted_at::date >= (now() - (f.days_since_last_ban || ' days')::interval)::date )`, - [flaggedIds], + [flaggedIds, flaggedDays], ); if (needsBan.length === 0) { @@ -373,9 +385,7 @@ export class SteamBansService { const ids = needsBan.map((row) => row.steam_id); const reasons = ids.map((id) => SteamBansService.banReason(byId.get(id))); - const reactivated = await this.postgres.query< - Array<{ steam_id: string }> - >( + const reactivated = await this.postgres.query>( `UPDATE public.player_sanctions ps SET remove_sanction_date = NULL, reason = v.reason FROM UNNEST($1::bigint[], $2::text[]) AS v(steam_id, reason) diff --git a/src/system/enums/SystemSettingName.ts b/src/system/enums/SystemSettingName.ts index c6fc1bab..ee7a94ca 100644 --- a/src/system/enums/SystemSettingName.ts +++ b/src/system/enums/SystemSettingName.ts @@ -6,4 +6,5 @@ export enum SystemSettingName { SupportsDiscordBot = "public.supports_discord_bot", SupportsGameServerNodes = "supports_game_server_nodes", SupportsGameServerVersionPinning = "supports_game_server_version_pinning", + TldrNewsEnabled = "public.tldr_news_enabled", } diff --git a/src/type-sense/type-sense.controller.ts b/src/type-sense/type-sense.controller.ts index a47f3644..8e6b49a0 100644 --- a/src/type-sense/type-sense.controller.ts +++ b/src/type-sense/type-sense.controller.ts @@ -93,6 +93,21 @@ export class TypeSenseController { return; } + const wasSoftDeleted = + data.op === "UPDATE" && + !(data.old as { deleted_at?: string }).deleted_at && + !!(data.new as { deleted_at?: string }).deleted_at; + + if (wasSoftDeleted) { + const jobId = `player-sanctions.${data.new.type}.${data.new.player_steam_id}`; + await this.queue.remove(jobId); + + await this.queue.add(RefreshPlayerJob.name, { + steamId: data.new.player_steam_id, + }); + return; + } + if (data.op === "INSERT") { try { await this.notifications.queueSanctionNotification({ diff --git a/src/utilities/QueueProcessors.ts b/src/utilities/QueueProcessors.ts index 744d49fb..4aea0abd 100644 --- a/src/utilities/QueueProcessors.ts +++ b/src/utilities/QueueProcessors.ts @@ -24,10 +24,12 @@ type Modules = | "Notifications" | "TypeSense" | "Matchmaking" + | "DraftGames" | "Telemetry" | "DedicatedServers" | "SteamMatchHistory" | "Faceit" + | "News" | "S3Scan"; export type UseQueueOptions = { diff --git a/yarn.lock b/yarn.lock index f38df7ef..96bd1bd7 100644 --- a/yarn.lock +++ b/yarn.lock @@ -2017,6 +2017,13 @@ dependencies: "@types/node" "*" +"@types/sanitize-html@^2.13.0": + version "2.16.1" + resolved "https://registry.yarnpkg.com/@types/sanitize-html/-/sanitize-html-2.16.1.tgz#27b9ac6cc29838f7a048bfec0113e8ad00918d0a" + integrity sha512-n9wjs8bCOTyN/ynwD8s/nTcTreIHB1vf31vhLMGqUPNHaweKC4/fAl4Dj+hUlCTKYgm4P3k83fmiFfzkZ6sgMA== + dependencies: + htmlparser2 "^10.1" + "@types/send@*": version "1.2.1" resolved "https://registry.yarnpkg.com/@types/send/-/send-1.2.1.tgz#6a784e45543c18c774c049bff6d3dbaf045c9c74" @@ -2859,6 +2866,11 @@ body-parser@^2.2.1: raw-body "^3.0.1" type-is "^2.0.1" +boolbase@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/boolbase/-/boolbase-1.0.0.tgz#68dff5fbe60c51eb37725ea9e3ed310dcc1e776e" + integrity sha512-JZOSA7Mo9sNGB8+UjSgzdLtokWAky1zbztM3WRLCbZ70/3cTANmQmOdR7y2g+J0e2WXywy1yS468tY+IruqEww== + brace-expansion@^1.1.7: version "1.1.14" resolved "https://registry.yarnpkg.com/brace-expansion/-/brace-expansion-1.1.14.tgz#d9de602370d91347cd9ddad1224d4fd701eb348b" @@ -3059,6 +3071,35 @@ chardet@^2.1.1: resolved "https://registry.yarnpkg.com/chardet/-/chardet-2.1.1.tgz#5c75593704a642f71ee53717df234031e65373c8" integrity sha512-PsezH1rqdV9VvyNhxxOW32/d75r01NY7TQCmOqomRo15ZSOKbpTFVsfjghxo6JloQUCGnH4k1LGu0R4yCLlWQQ== +cheerio-select@^2.1.0: + version "2.1.0" + resolved "https://registry.yarnpkg.com/cheerio-select/-/cheerio-select-2.1.0.tgz#4d8673286b8126ca2a8e42740d5e3c4884ae21b4" + integrity sha512-9v9kG0LvzrlcungtnJtpGNxY+fzECQKhK4EGJX2vByejiMX84MFNQw4UxPJl3bFbTMw+Dfs37XaIkCwTZfLh4g== + dependencies: + boolbase "^1.0.0" + css-select "^5.1.0" + css-what "^6.1.0" + domelementtype "^2.3.0" + domhandler "^5.0.3" + domutils "^3.0.1" + +cheerio@^1.0.0: + version "1.2.0" + resolved "https://registry.yarnpkg.com/cheerio/-/cheerio-1.2.0.tgz#f23b777c49021ead7475dcf3390d3535a7f896d6" + integrity sha512-WDrybc/gKFpTYQutKIK6UvfcuxijIZfMfXaYm8NMsPQxSYvf+13fXUJ4rztGGbJcBQ/GF55gvrZ0Bc0bj/mqvg== + dependencies: + cheerio-select "^2.1.0" + dom-serializer "^2.0.0" + domhandler "^5.0.3" + domutils "^3.2.2" + encoding-sniffer "^0.2.1" + htmlparser2 "^10.1.0" + parse5 "^7.3.0" + parse5-htmlparser2-tree-adapter "^7.1.0" + parse5-parser-stream "^7.1.2" + undici "^7.19.0" + whatwg-mimetype "^4.0.0" + chokidar@4.0.3, chokidar@^4.0.1: version "4.0.3" resolved "https://registry.yarnpkg.com/chokidar/-/chokidar-4.0.3.tgz#7be37a4c03c9aee1ecfe862a4a23b2c70c205d30" @@ -3356,11 +3397,32 @@ cross-spawn@^7.0.3, cross-spawn@^7.0.6: shebang-command "^2.0.0" which "^2.0.1" +css-select@^5.1.0: + version "5.2.2" + resolved "https://registry.yarnpkg.com/css-select/-/css-select-5.2.2.tgz#01b6e8d163637bb2dd6c982ca4ed65863682786e" + integrity sha512-TizTzUddG/xYLA3NXodFM0fSbNizXjOKhqiQQwvhlspadZokn1KDy0NZFS0wuEubIYAV5/c1/lAr0TaaFXEXzw== + dependencies: + boolbase "^1.0.0" + css-what "^6.1.0" + domhandler "^5.0.2" + domutils "^3.0.1" + nth-check "^2.0.1" + +css-what@^6.1.0: + version "6.2.2" + resolved "https://registry.yarnpkg.com/css-what/-/css-what-6.2.2.tgz#cdcc8f9b6977719fdfbd1de7aec24abf756b9dea" + integrity sha512-u/O3vwbptzhMs3L1fQE82ZSLHQQfto5gyZzwteVIEyeaY5Fc7R4dapF/BvRoSYFeqfBk4m0V1Vafq5Pjv25wvA== + cuint@^0.2.1: version "0.2.2" resolved "https://registry.yarnpkg.com/cuint/-/cuint-0.2.2.tgz#408086d409550c2631155619e9fa7bcadc3b991b" integrity sha512-d4ZVpCW31eWwCMe1YT3ur7mUDnTXbgwyzaL320DrcRT45rfjYxkt5QWLrmOJ+/UEAI2+fQgKe/fCjR8l4TpRgw== +dayjs@^1.11.7: + version "1.11.21" + resolved "https://registry.yarnpkg.com/dayjs/-/dayjs-1.11.21.tgz#57f87562e62de76f3c704bd2b8d522fc33068eb2" + integrity sha512-98IT+HOahAisibz/yjKbzuOBwYcjJ7BCLPzARyHiyEBmRz4fatF+KPJszEHXsGYjUG234aH/cOjW1wwTbKUZlA== + debug@4, debug@^4.1.0, debug@^4.1.1, debug@^4.3.1, debug@^4.3.2, debug@^4.3.3, debug@^4.3.4, debug@^4.3.7, debug@^4.4.0, debug@^4.4.3: version "4.4.3" resolved "https://registry.yarnpkg.com/debug/-/debug-4.4.3.tgz#c6ae432d9bd9662582fce08709b038c58e9e3d6a" @@ -3485,6 +3547,36 @@ discord.js@^14.14.1: tslib "^2.6.3" undici "6.24.1" +dom-serializer@^2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/dom-serializer/-/dom-serializer-2.0.0.tgz#e41b802e1eedf9f6cae183ce5e622d789d7d8e53" + integrity sha512-wIkAryiqt/nV5EQKqQpo3SToSOV9J0DnbJqwK7Wv/Trc92zIAYZ4FlMu+JPFW1DfGFt81ZTCGgDEabffXeLyJg== + dependencies: + domelementtype "^2.3.0" + domhandler "^5.0.2" + entities "^4.2.0" + +domelementtype@^2.3.0: + version "2.3.0" + resolved "https://registry.yarnpkg.com/domelementtype/-/domelementtype-2.3.0.tgz#5c45e8e869952626331d7aab326d01daf65d589d" + integrity sha512-OLETBj6w0OsagBwdXnPdN0cnMfF9opN69co+7ZrbfPGrdpPVNBUj02spi6B1N7wChLQiPn4CSH/zJvXw56gmHw== + +domhandler@^5.0.2, domhandler@^5.0.3: + version "5.0.3" + resolved "https://registry.yarnpkg.com/domhandler/-/domhandler-5.0.3.tgz#cc385f7f751f1d1fc650c21374804254538c7d31" + integrity sha512-cgwlv/1iFQiFnU96XXgROh8xTeetsnJiDsTc7TYCLFd9+/WNkIqPTxiM/8pSd8VIrhXGTf1Ny1q1hquVqDJB5w== + dependencies: + domelementtype "^2.3.0" + +domutils@^3.0.1, domutils@^3.2.2: + version "3.2.2" + resolved "https://registry.yarnpkg.com/domutils/-/domutils-3.2.2.tgz#edbfe2b668b0c1d97c24baf0f1062b132221bc78" + integrity sha512-6kZKyUajlDuqlHKVX1w7gyslj9MPIXzIFiz/rGu35uC1wMi+kMhQwGhl4lt9unC9Vb9INnY9Z3/ZA3+FhASLaw== + dependencies: + dom-serializer "^2.0.0" + domelementtype "^2.3.0" + domhandler "^5.0.3" + dotenv-expand@12.0.3: version "12.0.3" resolved "https://registry.yarnpkg.com/dotenv-expand/-/dotenv-expand-12.0.3.tgz#6323ceca51ca0c1b1f0055e2aba39c79781739a6" @@ -3558,6 +3650,14 @@ encodeurl@^2.0.0: resolved "https://registry.yarnpkg.com/encodeurl/-/encodeurl-2.0.0.tgz#7b8ea898077d7e409d3ac45474ea38eaf0857a58" integrity sha512-Q0n9HRi4m6JuGIV1eFlmvJB7ZEVxu93IrMyiMsGC0lrMJMWzRgx6WGquyfQgZVb31vhGgXnfmPNNXmxnOkRBrg== +encoding-sniffer@^0.2.1: + version "0.2.1" + resolved "https://registry.yarnpkg.com/encoding-sniffer/-/encoding-sniffer-0.2.1.tgz#396ec97ac22ce5a037ba44af1992ac9d46a7b819" + integrity sha512-5gvq20T6vfpekVtqrYQsSCFZ1wEg5+wW0/QaZMWkFr6BqD3NfKs0rLCx4rrVlSWJeZb5NBJgVLswK/w2MWU+Gw== + dependencies: + iconv-lite "^0.6.3" + whatwg-encoding "^3.1.1" + end-of-stream@^1.1.0: version "1.4.5" resolved "https://registry.yarnpkg.com/end-of-stream/-/end-of-stream-1.4.5.tgz#7344d711dea40e0b74abc2ed49778743ccedb08c" @@ -3573,6 +3673,21 @@ enhanced-resolve@^5.0.0, enhanced-resolve@^5.20.0, enhanced-resolve@^5.7.0: graceful-fs "^4.2.4" tapable "^2.3.3" +entities@^4.2.0: + version "4.5.0" + resolved "https://registry.yarnpkg.com/entities/-/entities-4.5.0.tgz#5d268ea5e7113ec74c4d033b79ea5a35a488fb48" + integrity sha512-V0hjH4dGPh9Ao5p0MoRY6BVqtwCjhz6vI5LT8AJ55H+4g9/4vbHx1I54fS0XuclLhDHArPQCiMjDxjaL8fPxhw== + +entities@^6.0.0: + version "6.0.1" + resolved "https://registry.yarnpkg.com/entities/-/entities-6.0.1.tgz#c28c34a43379ca7f61d074130b2f5f7020a30694" + integrity sha512-aN97NXWF6AWBTahfVOIrB/NShkzi5H7F9r1s9mD3cDj4Ko5f2qhhVoYMibXF7GlLveb/D2ioWay8lxI97Ven3g== + +entities@^7.0.1: + version "7.0.1" + resolved "https://registry.yarnpkg.com/entities/-/entities-7.0.1.tgz#26e8a88889db63417dcb9a1e79a3f1bc92b5976b" + integrity sha512-TWrgLOFUQTH994YUyl1yT4uyavY5nNB5muff+RtWaqNVCAK408b5ZnnbNAUEWLTCpum9w6arT70i1XdQ4UeOPA== + error-ex@^1.3.1: version "1.3.4" resolved "https://registry.yarnpkg.com/error-ex/-/error-ex-1.3.4.tgz#b3a8d8bb6f92eecc1629e3e27d3c8607a8a32414" @@ -4339,6 +4454,16 @@ html-escaper@^2.0.0: resolved "https://registry.yarnpkg.com/html-escaper/-/html-escaper-2.0.2.tgz#dfd60027da36a36dfcbe236262c00a5822681453" integrity sha512-H2iMtd0I4Mt5eYiapRdIDjp+XzelXQ0tFE4JS7YFwFevXXMmOp9myNrUvCg0D6ws8iqkRPBfKHgbwig1SmlLfg== +htmlparser2@^10.1, htmlparser2@^10.1.0: + version "10.1.0" + resolved "https://registry.yarnpkg.com/htmlparser2/-/htmlparser2-10.1.0.tgz#fe3f2e12c73b6e462d4e10395db9c1119e4d6ae4" + integrity sha512-VTZkM9GWRAtEpveh7MSF6SjjrpNVNNVJfFup7xTY3UpFtm67foy9HDVXneLtFVt4pMz5kZtgNcvCniNFb1hlEQ== + dependencies: + domelementtype "^2.3.0" + domhandler "^5.0.3" + domutils "^3.2.2" + entities "^7.0.1" + http-errors@^2.0.0, http-errors@^2.0.1, http-errors@~2.0.1: version "2.0.1" resolved "https://registry.yarnpkg.com/http-errors/-/http-errors-2.0.1.tgz#36d2f65bc909c8790018dd36fb4d93da6caae06b" @@ -4355,6 +4480,13 @@ human-signals@^2.1.0: resolved "https://registry.yarnpkg.com/human-signals/-/human-signals-2.1.0.tgz#dc91fcba42e4d06e4abaed33b3e7a3c02f514ea0" integrity sha512-B4FFZ6q/T2jhhksgkbEW3HBvWIfDW85snkQgawt07S7J5QXTk6BkNV+0yAeZrM5QpMAdYlocGoljn0sJ/WQkFw== +iconv-lite@0.6.3, iconv-lite@^0.6.3: + version "0.6.3" + resolved "https://registry.yarnpkg.com/iconv-lite/-/iconv-lite-0.6.3.tgz#a52f80bf38da1952eb5c681790719871a1a72501" + integrity sha512-4fCk79wshMdzMp2rH06qWrJE4iolqLhCUH+OiuIgU++RB0+94NlDL81atO7GX55uUKueo0txHNtvEyI6D7WdMw== + dependencies: + safer-buffer ">= 2.1.2 < 3.0.0" + iconv-lite@^0.7.0, iconv-lite@~0.7.0: version "0.7.2" resolved "https://registry.yarnpkg.com/iconv-lite/-/iconv-lite-0.7.2.tgz#d0bdeac3f12b4835b7359c2ad89c422a4d1cc72e" @@ -4493,6 +4625,11 @@ is-number@^7.0.0: resolved "https://registry.yarnpkg.com/is-number/-/is-number-7.0.0.tgz#7535345b896734d5f80c4d06c50955527a14f12b" integrity sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng== +is-plain-object@^5.0.0: + version "5.0.0" + resolved "https://registry.yarnpkg.com/is-plain-object/-/is-plain-object-5.0.0.tgz#4427f50ab3429e9025ea7d52e9043a9ef4159344" + integrity sha512-VRSzKkbMm5jMDoKLbltAkFQ5Qr7VDiTFGXxYFXXowVj387GeGNOCsOH6Msy00SGZ3Fp84b1Naa1psqgcCIEP5Q== + is-promise@^4.0.0: version "4.0.0" resolved "https://registry.yarnpkg.com/is-promise/-/is-promise-4.0.0.tgz#42ff9f84206c1991d26debf520dd5c01042dd2f3" @@ -5123,6 +5260,13 @@ kvparser@^1.0.1: resolved "https://registry.yarnpkg.com/kvparser/-/kvparser-1.0.2.tgz#1d1cbec693410c3242e49ba667ca6949866fa134" integrity sha512-5P/5qpTAHjVYWqcI55B3yQwSY2FUrYYrJj5i65V1Wmg7/4W4OnBcaodaEvLyVuugeOnS+BAaKm9LbPazGJcRyA== +launder@^1.7.1: + version "1.7.1" + resolved "https://registry.yarnpkg.com/launder/-/launder-1.7.1.tgz#ef7155ab0c3ddec2323089c961d2e9a249aa5b0d" + integrity sha512-mU6WRz5EusL9ZZuiZ5SO4Y6C0P9PAUR9iwdb6bzj4KDihm28DiHFw+/yk9DBH4f+Pv1wuzQ4e2jV3oQ7mkIqvw== + dependencies: + dayjs "^1.11.7" + lazystream@^1.0.0: version "1.0.1" resolved "https://registry.yarnpkg.com/lazystream/-/lazystream-1.0.1.tgz#494c831062f1f9408251ec44db1cba29242a2638" @@ -5545,6 +5689,11 @@ mute-stream@^2.0.0: resolved "https://registry.yarnpkg.com/mute-stream/-/mute-stream-2.0.0.tgz#a5446fc0c512b71c83c44d908d5c7b7b4c493b2b" integrity sha512-WWdIxpyjEn+FhQJQQv9aQAYlHoNVdzIzUySNV1gHUPDSdZJ3yZn7pAAbQcV7B56Mvu881q9FZV+0Vx2xC44VWA== +nanoid@^3.3.12: + version "3.3.14" + resolved "https://registry.yarnpkg.com/nanoid/-/nanoid-3.3.14.tgz#02d7e019f05dd8eeee2779c6f42206c06542ab33" + integrity sha512-U9kYi5bpVMEI31yC8iw4bJJp0avcHXA0W8/wNfLfnvJYzihQo2ZRPYPvpAAd570HAcCBjCTN7vnr+v4StKl1IQ== + napi-postinstall@^0.3.0: version "0.3.4" resolved "https://registry.yarnpkg.com/napi-postinstall/-/napi-postinstall-0.3.4.tgz#7af256d6588b5f8e952b9190965d6b019653bbb9" @@ -5630,6 +5779,13 @@ npm-run-path@^4.0.1: dependencies: path-key "^3.0.0" +nth-check@^2.0.1: + version "2.1.1" + resolved "https://registry.yarnpkg.com/nth-check/-/nth-check-2.1.1.tgz#c9eab428effce36cd6b92c924bdb000ef1f1ed1d" + integrity sha512-lqjrjmaOoAnWfMmBPL+XNnynZh2+swxiX3WUE0s4yEHI6m+AwrK2UZOimIRl3X/4QctVqS8AiZjFqyOGrMXb/w== + dependencies: + boolbase "^1.0.0" + oauth4webapi@^3.8.5: version "3.8.6" resolved "https://registry.yarnpkg.com/oauth4webapi/-/oauth4webapi-3.8.6.tgz#0ede466d8be8774db38558a90612c8b6186abba4" @@ -5797,6 +5953,33 @@ parse-json@^5.2.0: json-parse-even-better-errors "^2.3.0" lines-and-columns "^1.1.6" +parse-srcset@^1.0.2: + version "1.0.2" + resolved "https://registry.yarnpkg.com/parse-srcset/-/parse-srcset-1.0.2.tgz#f2bd221f6cc970a938d88556abc589caaaa2bde1" + integrity sha512-/2qh0lav6CmI15FzA3i/2Bzk2zCgQhGMkvhOhKNcBVQ1ldgpbfiNTVslmooUmWJcADi1f1kIeynbDRVzNlfR6Q== + +parse5-htmlparser2-tree-adapter@^7.1.0: + version "7.1.0" + resolved "https://registry.yarnpkg.com/parse5-htmlparser2-tree-adapter/-/parse5-htmlparser2-tree-adapter-7.1.0.tgz#b5a806548ed893a43e24ccb42fbb78069311e81b" + integrity sha512-ruw5xyKs6lrpo9x9rCZqZZnIUntICjQAd0Wsmp396Ul9lN/h+ifgVV1x1gZHi8euej6wTfpqX8j+BFQxF0NS/g== + dependencies: + domhandler "^5.0.3" + parse5 "^7.0.0" + +parse5-parser-stream@^7.1.2: + version "7.1.2" + resolved "https://registry.yarnpkg.com/parse5-parser-stream/-/parse5-parser-stream-7.1.2.tgz#d7c20eadc37968d272e2c02660fff92dd27e60e1" + integrity sha512-JyeQc9iwFLn5TbvvqACIF/VXG6abODeB3Fwmv/TGdLk2LfbWkaySGY72at4+Ty7EkPZj854u4CrICqNk2qIbow== + dependencies: + parse5 "^7.0.0" + +parse5@^7.0.0, parse5@^7.3.0: + version "7.3.0" + resolved "https://registry.yarnpkg.com/parse5/-/parse5-7.3.0.tgz#d7e224fa72399c7a175099f45fc2ad024b05ec05" + integrity sha512-IInvU7fabl34qmi9gY8XOVxhYyMyuH2xUNpb2q8/Y+7552KlejkRvqvD19nMoUW/uQGGbqNpA6Tufu5FL5BZgw== + dependencies: + entities "^6.0.0" + parseurl@^1.3.3, parseurl@~1.3.3: version "1.3.3" resolved "https://registry.yarnpkg.com/parseurl/-/parseurl-1.3.3.tgz#9da19e7bee8d12dff0513ed5b76957793bc2e8d4" @@ -6013,6 +6196,15 @@ pluralize@8.0.0: resolved "https://registry.yarnpkg.com/pluralize/-/pluralize-8.0.0.tgz#1a6fa16a38d12a1901e0320fa017051c539ce3b1" integrity sha512-Nc3IT5yHzflTfbjgqWcCPpo7DaKy4FnpB0l/zCAW0Tc7jxAiuqSxHasntB3D7887LSrA93kDJ9IXovxJYxyLCA== +postcss@^8.3.11: + version "8.5.15" + resolved "https://registry.yarnpkg.com/postcss/-/postcss-8.5.15.tgz#d1eaf677a324e9ec02196da2d3fecf4a0b9a735c" + integrity sha512-FfR8sjd4em2T6fb3I2MwAJU7HWVMr9zba+enmQeeWFfCbm+UOC/0X4DS8XtpUTMwWMGbjKYP7xjfNekzyGmB3A== + dependencies: + nanoid "^3.3.12" + picocolors "^1.1.1" + source-map-js "^1.2.1" + postgres-array@~2.0.0: version "2.0.0" resolved "https://registry.yarnpkg.com/postgres-array/-/postgres-array-2.0.0.tgz#48f8fce054fbc69671999329b8834b772652d82e" @@ -6408,6 +6600,19 @@ safe-buffer@~5.1.0, safe-buffer@~5.1.1: resolved "https://registry.yarnpkg.com/safer-buffer/-/safer-buffer-2.1.2.tgz#44fa161b0187b9549dd84bb91802f9bd8385cd6a" integrity sha512-YZo3K82SD7Riyi0E1EQPojLz7kpepnSQI9IyPbHHg1XXXevb5dJI7tpyN2ADxGcQbHG7vcyRHk0cbwqcQriUtg== +sanitize-html@^2.13.0: + version "2.17.5" + resolved "https://registry.yarnpkg.com/sanitize-html/-/sanitize-html-2.17.5.tgz#bef1d103773760e1c52a01b1f58178bee9c10556" + integrity sha512-ZmU1joGRrvoyctKIiuwUxqR6moLoU2Wk+2bMccN6f7UwhAmwYDvWziqPxRDDN2Qip62NqnIrVrT9akbL6Wretg== + dependencies: + deepmerge "^4.2.2" + escape-string-regexp "^4.0.0" + htmlparser2 "^10.1.0" + is-plain-object "^5.0.0" + launder "^1.7.1" + parse-srcset "^1.0.2" + postcss "^8.3.11" + sax@>=0.6.0: version "1.6.0" resolved "https://registry.yarnpkg.com/sax/-/sax-1.6.0.tgz#da59637629307b97e7c4cb28e080a7bc38560d5b" @@ -6651,6 +6856,11 @@ socks@^2.8.3: ip-address "^10.1.1" smart-buffer "^4.2.0" +source-map-js@^1.2.1: + version "1.2.1" + resolved "https://registry.yarnpkg.com/source-map-js/-/source-map-js-1.2.1.tgz#1ce5650fddd87abc099eda37dcff024c2667ae46" + integrity sha512-UXWMKhLOwVKb728IUtQPXxfYU+usdybtUrK/8uGE8CQMvrhOpwvzDBwj0QhSL7MQc7vIsISBG8VQ8+IDQxpfQA== + source-map-support@0.5.13: version "0.5.13" resolved "https://registry.yarnpkg.com/source-map-support/-/source-map-support-0.5.13.tgz#31b24a9c2e73c2de85066c0feb7d44767ed52932" @@ -7311,6 +7521,11 @@ undici@^5.22.0: dependencies: "@fastify/busboy" "^2.0.0" +undici@^7.19.0: + version "7.28.0" + resolved "https://registry.yarnpkg.com/undici/-/undici-7.28.0.tgz#97d64564198b285bc281f0e8e29597e3d11fe7ec" + integrity sha512-cRZYrTDwWznlnRiPjggAGxZXanty6M8RV1ff8Wm4LWXBp7/IG8v5DnOm74DtUBp9OONpK75YlPnIjQqX0dBDtA== + universalify@^2.0.0: version "2.0.1" resolved "https://registry.yarnpkg.com/universalify/-/universalify-2.0.1.tgz#168efc2180964e6386d061e094df61afe239b18d" @@ -7493,6 +7708,18 @@ websocket13@^4.0.0: tiny-typed-emitter "^2.1.0" websocket-extensions "^0.1.4" +whatwg-encoding@^3.1.1: + version "3.1.1" + resolved "https://registry.yarnpkg.com/whatwg-encoding/-/whatwg-encoding-3.1.1.tgz#d0f4ef769905d426e1688f3e34381a99b60b76e5" + integrity sha512-6qN4hJdMwfYBtE3YBTTHhoeuUrDBPZmbQaxWAqSALV/MeEnR5z1xd8UKud2RAkFoPkmB+hli1TZSnyi84xz1vQ== + dependencies: + iconv-lite "0.6.3" + +whatwg-mimetype@^4.0.0: + version "4.0.0" + resolved "https://registry.yarnpkg.com/whatwg-mimetype/-/whatwg-mimetype-4.0.0.tgz#bc1bf94a985dc50388d54a9258ac405c3ca2fc0a" + integrity sha512-QaKxh0eNIi2mE9p2vEdzfagOKHCcj1pJ56EEHGQOVxp8r9/iszLUUV7v89x9O1p/T+NlTM5W7jW6+cz4Fq1YVg== + whatwg-url@^5.0.0: version "5.0.0" resolved "https://registry.yarnpkg.com/whatwg-url/-/whatwg-url-5.0.0.tgz#966454e8765462e37644d3626f6742ce8b70965d"